.coach-profile-page {
  margin-bottom: 120px;
}

.coach-cat-img {
  width: 20px;
}

.coach-item-img {
  width: 20px;
}

.coach-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.coach-product-card {
  width: 80px;
  height: 100px;
  font-size: 12px;
  border: 1px solid;
}

.coach-product-img {
  display: block;
  margin: 0 auto;
  width: 20px;
}

.coach-product-remove {
  color: red;
}

.hidden {
  display: none !important;
}

.coach-competences {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.coach-competence-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coach-competence-input {
  flex: 1;
}

.coach-competence-del {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.coach-trial-banner {
  margin-top: 12px;
  border-radius: 18px;
  padding: 28px 18px;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
  background: #33D469;
}

.coach-respond-btn {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 800;
  font-size: 20px;
  background: #33D469;
  color: #fff;
}

.coach-respond-btn:disabled {
  opacity: .45;
}

.coach-respond-hint {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0, 0, 0, .45);
  text-align: center;
}

.coach-like {
  position: absolute;
  right: 10px;
  width: 34px;
  height: 34px;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}

.coach-like .like-ico {
  width: 18px;
  height: 18px;
  display: block;
  background: rgba(0, 0, 0, .35);
  -webkit-mask: url("/static/coach/icons/like.svg") no-repeat center / contain;
  mask: url("/static/coach/icons/like.svg") no-repeat center / contain;
}

.coach-like.is-liked .like-ico {
  background: #fff;
}

.coach-like.is-liked {
  background: #ff0000;
}

.coach-main-photo {
  width: 100px;
}

.avatar-cell img {
  width: 200px;
}

.coach-rules-text {
  max-height: 55vh;
  overflow: auto;
  padding-right: 6px;
}

#coachModerationModal.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#coachModerationModal .modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#coachModerationModal .modal-dialog {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100vw - 24px));
  max-height: calc(100vh - 80px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
}