.thehands-reservation {
  padding-top: clamp(20 / 10 * 1rem, 55 * (100vw - 375px) / 905 + 20px, 75 / 10 * 1rem);
  padding-bottom: clamp(2 / 10 * 1rem, 28 * (100vw - 375px) / 905 + 2px, 30 / 10 * 1rem);
}
.thehands-reservation .inner-block {
  position: relative;
  padding: 8rem clamp(25 / 10 * 1rem, 55 * (100vw - 375px) / 905 + 25px, 80 / 10 * 1rem);
}
.thehands-reservation .inner-block .background-cover {
  position: absolute;
  z-index: -1;
  border-radius: 1.2rem;
}
.thehands-reservation .inner-block .title {
  margin-bottom: 7px;
  font-family: var(--font-boldonse);
  font-size: clamp(30 / 10 * 1rem, 34 * (100vw - 375px) / 905 + 30px, 64 / 10 * 1rem);
  line-height: 130%;
  text-align: center;
  color: var(--color-orange);
  text-transform: uppercase;
}
.thehands-reservation .inner-block .content {
  margin: 0 auto clamp(40 / 10 * 1rem, 40 * (100vw - 375px) / 905 + 40px, 80 / 10 * 1rem);
  font-family: var(--font-manrope);
  font-size: clamp(16 / 10 * 1rem, 16 * (100vw - 375px) / 905 + 16px, 32 / 10 * 1rem);
  line-height: 170%;
  text-align: center;
  color: var(--color-orange);
  text-transform: uppercase;
  width: 99.6rem;
  max-width: 100%;
}
.thehands-reservation .inner-block .content strong {
  font-weight: 700;
}
.thehands-reservation .inner-block .form {
  padding: 2.3rem clamp(30 / 10 * 1rem, 5 * (100vw - 375px) / 905 + 30px, 35 / 10 * 1rem);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 1.2rem;
}
.thehands-reservation .inner-block .form .row {
  align-items: center;
}
.thehands-reservation .inner-block .form .row > .col {
  flex: 0 0 auto;
  width: 20%;
}
.thehands-reservation .inner-block .form .row > .col:first-child {
  padding-right: 7.2rem;
}
.thehands-reservation .inner-block .form .row > .col:nth-child(2) {
  padding-left: 7.2rem;
  padding-right: 3rem;
}
.thehands-reservation .inner-block .form .row > .col:nth-child(3) {
  padding-left: 3rem;
  padding-right: 7.2rem;
}
.thehands-reservation .inner-block .form .row > .col:nth-child(4) {
  padding-left: 7.2rem;
  padding-right: 6rem;
}
.thehands-reservation .inner-block .form .row .theme-label {
  padding-top: 1rem;
  font-family: var(--font-manrope);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(12 / 10 * 1rem, 2 * (100vw - 375px) / 905 + 12px, 14 / 10 * 1rem);
  line-height: 150%;
  color: rgba(244, 244, 244, 0.6);
  margin-bottom: 4px;
  transition: color var(--transition);
}
.thehands-reservation .inner-block .form .row .theme-label svg {
  position: relative;
  top: 2px;
  margin-right: 0.8rem;
}
.thehands-reservation .inner-block .form .row .col:has(.custom-select-wrap.open) .theme-label,
.thehands-reservation .inner-block .form .row .col:has(.custom-phone input:focus) .theme-label,
.thehands-reservation .inner-block .form .row .col:has(input.date-piker:focus) .theme-label {
  color: var(--color-orange);
}
.thehands-reservation .inner-block .form .row .col:has(input.wpcf7-not-valid) .theme-label,
.thehands-reservation .inner-block .form .row .col:has(select.wpcf7-not-valid) .theme-label {
  color: red;
}
.thehands-reservation .inner-block .form .row input[type=text] {
  display: block;
  width: 100%;
  height: 2.8rem;
  padding: 0;
  border: none;
  border-radius: 0.8rem;
  background-color: transparent;
  outline: none;
  font-family: var(--font-manrope);
  font-size: 18px;
  line-height: 2.5rem;
  color: rgb(244, 244, 244);
}
.thehands-reservation .inner-block .form .row input[type=text]::-moz-placeholder {
  color: white;
}
.thehands-reservation .inner-block .form .row input[type=text]::placeholder {
  color: white;
}
.thehands-reservation .inner-block .form .row .wpcf7-spinner {
  display: none;
  font-size: 1.8rem;
  line-height: 2.5rem;
}

.custom-date .wpcf7-form-control-wrap {
  display: block;
  max-width: 100%;
  position: relative;
}
.custom-date .wpcf7-form-control-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background: url("/wp-content/themes/thehands/assets/img/select.svg") no-repeat center;
  transition: transform var(--transition);
  pointer-events: none;
}
.custom-date .wpcf7-form-control-wrap:has(input.date-piker:focus):after {
  transform: translateY(-50%) rotate(180deg);
}
.custom-date .wpcf7-form-control-wrap input.date-piker {
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 2.7rem;
  padding-bottom: 1rem;
  color: white;
  font-family: var(--font-manrope);
  font-size: 1.8rem;
  line-height: 2.7rem;
  border: none;
  background-color: transparent;
  outline: none;
  padding-top: 6px;
}
.custom-date .wpcf7-form-control-wrap input.date-piker::-moz-placeholder {
  color: white;
  opacity: 1;
}
.custom-date .wpcf7-form-control-wrap input.date-piker::placeholder {
  color: white;
  opacity: 1;
}

@media all and (max-width: 1600px) {
  .thehands-reservation .inner-block .form .row > .col:first-child {
    padding-right: 1.2rem;
  }
  .thehands-reservation .inner-block .form .row > .col:nth-child(2), .thehands-reservation .inner-block .form .row > .col:nth-child(3), .thehands-reservation .inner-block .form .row > .col:nth-child(4) {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .thehands-reservation .inner-block .form .row .theme-button {
    max-width: 100%;
    min-width: 100%;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
  .thehands-reservation .inner-block .form .row .custom-select.has-border:after,
  .thehands-reservation .inner-block .form .row .custom-date::after {
    right: -1.2rem;
  }
  .thehands-reservation .inner-block .form .row .custom-select-current,
  .thehands-reservation .inner-block .form .row .custom-select-wrap {
    width: 100%;
  }
}
@media all and (max-width: 1199px) {
  .thehands-reservation .inner-block {
    padding: 8rem 2.5rem;
  }
  .thehands-reservation .inner-block .form .row > .col:first-child, .thehands-reservation .inner-block .form .row > .col:nth-child(2), .thehands-reservation .inner-block .form .row > .col:nth-child(3), .thehands-reservation .inner-block .form .row > .col:nth-child(4) {
    width: 25%;
  }
  .thehands-reservation .inner-block .form .row > .col:nth-child(5) {
    margin-top: 3rem;
    width: 100%;
    text-align: center;
  }
  .thehands-reservation .inner-block .form .row > .col:nth-child(5) .theme-button {
    min-width: clamp(210 / 10 * 1rem, 50 * (100vw - 375px) / 905 + 210px, 260 / 10 * 1rem);
  }
}
@media all and (max-width: 991px) {
  .thehands-reservation .inner-block .form .row > .col:first-child, .thehands-reservation .inner-block .form .row > .col:nth-child(2), .thehands-reservation .inner-block .form .row > .col:nth-child(3), .thehands-reservation .inner-block .form .row > .col:nth-child(4) {
    width: 50%;
  }
  .thehands-reservation .inner-block .form .row > .col:first-child, .thehands-reservation .inner-block .form .row > .col:nth-child(2) {
    margin-bottom: 3rem;
  }
}
@media all and (max-width: 767px) {
  .thehands-reservation .inner-block .form .row > .col:first-child, .thehands-reservation .inner-block .form .row > .col:nth-child(2), .thehands-reservation .inner-block .form .row > .col:nth-child(3), .thehands-reservation .inner-block .form .row > .col:nth-child(4) {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 2rem;
    margin-top: 0;
    padding-top: 0;
    position: relative;
  }
  .thehands-reservation .inner-block .form .row > .col:first-child:after, .thehands-reservation .inner-block .form .row > .col:nth-child(2):after, .thehands-reservation .inner-block .form .row > .col:nth-child(3):after, .thehands-reservation .inner-block .form .row > .col:nth-child(4):after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: white;
    left: 0;
    bottom: 0;
  }
  .thehands-reservation .inner-block .form .row > .col:nth-child(4):after {
    display: none;
    margin-bottom: 0;
  }
  .thehands-reservation .inner-block .form .row > .col:nth-child(5) {
    margin-top: 0;
  }
  .thehands-reservation .inner-block .form .row .custom-select.has-border:after,
  .thehands-reservation .inner-block .form .row .custom-date:after {
    display: none;
  }
}
/*# sourceMappingURL=reservation.css.map */
