.coachEdit .file-upload {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border: 2px dashed #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.coachEdit .file-upload:hover {
  border-color: #ff1563;
}
.coachEdit .upload-icon {
  font-size: 24px;
  color: #757575;
  margin-bottom: 10px;
}
.coachEdit .file-input,.coachEdit .file-input-new {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.coachEdit .upload-text {
  display: block;
  margin-bottom: 5px;
}
.coachEdit .upload-hint {
  display: block;
  font-size: 12px;
  color: #757575;
}
.coachEdit .uploaded-file {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 10px;
}
.coachEdit .file-name {
  flex: 1;
  font-size: 14px;
}
.coachEdit .file-remove {
  color: #F44336;
  cursor: pointer;
}

@media (max-width: 1599px) {
  .dashboardPage .staticCard h5 {
    font-size: 18px;
  }
  .dashboardPage .staticCard h4 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .dashboardPage .staticCard {
    margin-bottom: 10px;
  }
  .dashboardPage .staticCard h5 {
    font-size: 16px;
  }
  .dashboardPage .staticCard h4 {
    font-size: 14px;
  }
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.imgPreview_remove {
  width: 16px;
  height: 16px;
  background-color: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  border: 0;
  box-shadow: none;
}
.imgPreview_remove svg {
  width: 10px;
  height: 10px;
  stroke-width: 2px;
  stroke: #fff;
  flex-shrink: 0;
}
.imgPreview_box {
  position: relative;
  border: 1px solid #eee;
  padding: 8px;
  width: 75px;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgPreview_box img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  align-items: center;
}
.imgPreview-document img {
  width: 35px;
}
