.booking-modal .modal-dialog {
  max-width: 854px;
  z-index: 1050;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
}
.booking-modal .overlay {
  bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}
.booking-modal .modal-dialog .modal-content {
  height: auto;
  background: transparent;
  flex-direction: row;
  gap: 20px;
  border-radius: 0;
  color: #FFFFFF;
  border: none;
}
.booking-modal .actions {
  display: none;
}
.booking-modal .modal-dialog .modal-content .right-side {
  width: 100%;
  background: #fff;
  border-radius: 0;
  padding: 100px 120px;
  position: relative;
}
.booking-modal .modal-dialog .modal-content .right-side .close-button {
  width: 44px;
  height: 44px;
  background: #fff;
  box-shadow: none;
  outline: none;
  display: block;
  margin-left: auto;
  position: absolute;
  right: 30px;
  top: 15px;
  opacity: 1;
}
.booking-modal .modal-dialog .modal-content .right-side .desc {
  font-size: 16px;
  line-height: 24px;
  color: #8C959F;
  margin-bottom: 20px;
  text-align: center;
}
.booking-modal .modal-dialog .modal-content .right-side .title {
  font-size: 50px;
  color: #252525;
  margin-bottom: 0;
  font-family: "Cera CY Bold", sans-serif!important;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
}
.booking-modal .modal-dialog .modal-content .right-side .booking-form {
  display: flex;
  justify-content: center;
}
.booking-modal .modal-dialog .modal-content .right-side .booking-form .booking-form-container {
  max-width: 500px;
  width: 100%;
}
.booking-modal .modal-dialog .modal-content .right-side .apt-info-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.booking-modal .modal-dialog .modal-content .right-side .apt-info-container .apt-info {
  border: 1px solid #252525;
  color: #252525;
  font-size: 18px;
  line-height: 27px;
  padding: 7px 10px;
  text-transform: uppercase;
}
.booking-modal .modal-dialog .modal-content .right-side .apt-info-container .apt-info span {
  color: #E74F24;
  text-transform: none;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox]) {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 15px 30px;
  font-size: 16px;
  color: #e74f244d;
  outline: none;
  box-shadow: none;
  border: 1px solid #E74F24;
  font-family: "Helvetica Neue Medium", sans-serif!important;
  border-radius: 2px;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox])::-webkit-input-placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox]):-moz-placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox])::-moz-placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox]):-ms-input-placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox])::-ms-input-placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox])::placeholder {
  color: #e74f244d;
}
.booking-modal .modal-dialog .modal-content .right-side form .phone-input {
  width: 100%;
  position: relative;
}
.booking-modal .modal-dialog .modal-content .right-side form .phone-input .prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
  width: 70px;
  height: 40px;
  font-size: 16px;
  line-height: 28px;
  color: #8C959F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-modal .modal-dialog .modal-content .right-side form .phone-input input {
  padding-left: 96px;
  margin-bottom: 0;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label {
  font-size: 14px;
  line-height: 22px;
  color: #8C959F;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label .custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #6A6A6A;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.15s ease-in-out;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label .custom-checkbox:after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #E74F24;
  border-radius: 4px;
  transition: transform 0.15s ease-in-out;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label span {
  font-size: 14px;
  line-height: 21px;
  color: #6A6A6A;
  text-transform: uppercase;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label span a {
  color: #E74F24;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label input {
  display: none;
}
.booking-modal .modal-dialog .modal-content .right-side form .checkbox-label input:checked ~ .custom-checkbox:after {
  transform: translate(-50%, -50%) scale(1) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid #E74F24;
  border-width: 0 3px 3px 0;
  background: transparent;
}
.booking-modal .modal-dialog .modal-content .right-side form .submit-button {
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  height: 45px;
  background: #1B1B1B;
  margin-top: 40px;
  border: unset;
  text-transform: uppercase;
  padding: 10px 60px;
  border-radius: 2px;
  margin-bottom: 0;
  box-shadow: 2px 3px 4px #00000059;
  width: 100%;
}
.booking-modal .modal-dialog .modal-content .right-side form .submit-button:hover {
  box-shadow: 0 2px 5px #0000004d;
  color: #E74F24;
}
.error_booking_checkbox .custom-checkbox {
  border-color: red!important;
}
.error_booking_checkbox {
  color: red!important;
}
.phone-input .iti {
  width: 100%;
}
.booking-modal .modal-dialog .modal-content .right-side form .input_block {
  margin-bottom: 10px;
}
.booking-error {
  font-size: 12px;
}
.success-modal {
  padding: 20px;
}
.success-modal .overlay {
  bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}
.success-modal .modal-dialog {
  z-index: 1090;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-modal .modal-content {
    background-color: #fff;
    background-image: url("/images/success_modal_icon.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    height: 606px;
    width: 640px;
    max-height: 606px;
    min-height: 400px;
}

.success-modal .modal-content .modal-body {
  padding: 48px 40px;
}
.success-modal .modal-content .modal-body .liner {
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
}

.success-modal .modal-content .modal-body .btn-close {
  width: 44px;
  height: 44px;
  background: #fff;
  box-shadow: none;
  outline: none;
  display: block;
  margin-left: auto;
  position: absolute;
  right: 30px;
  top: 15px;
  opacity: 1;
}



.success-modal .modal-content .modal-body .login .top-side {
  display: flex;
  flex-direction: column;
}
.success-modal .modal-content .modal-body .login {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-modal .modal-content .modal-body .login .top-side .title {
  color: #E74F24;
  font-family: "Cera CY Bold", sans-serif!important;
  font-size: 50px;
  line-height: 62.85px;
  text-align: center;

}

.success-modal .modal-content .modal-body .login .top-side .desc {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #6A6A6A;
}

.success-modal .modal-content .modal-body .login .top-side .desc .password-message {
  max-width: 400px;
}

.success-modal .modal-content .modal-body .login .top-side .desc .login-btn {
  width: 233px;
  height: 58px;
  font-size: 16px;
  background-color: #E74F24;
  text-align: center;
  color: white;
  border: none;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .booking-modal .modal-dialog .modal-content {
    padding: 0;
    border: 0;
    min-height: 100vh;
  }

  .booking-modal .actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 50px 0;
    padding: 0 20px;
  }

  .booking-modal .actions .buttons_block {
    display: flex;
    gap: 10px;
  }
  .booking-modal .actions .log-in {
    background: transparent;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #F1ECE7;
    border: 1px solid #121212;
    outline: none;
    padding: 8px 16px;
    border-radius: 2px;
  }
  .booking-modal .actions .close-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 32px;
    padding: 0;
  }
  .booking-modal .actions .close-menu img {
    width: 24px;
    height: 24px;
  }
  .booking-modal .actions .language .dropdown-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 36px;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 8px 16px;
    border-radius: 2px;
  }
  .booking-modal .actions .language .dropdown-toggle:focus {
    box-shadow: none;
  }
  .booking-modal .actions .language .dropdown-toggle:focus-visible {
    outline: none;
  }
  .booking-modal .actions .language .dropdown-toggle::after {
    display: none;
  }
  .booking-modal .actions .language .dropdown-menu {
    background: #101010;
    padding: 0;
  }
  .booking-modal .actions .language .dropdown-menu .dropdown-item {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 20px;
    color: #ABABAB;
    cursor: pointer;
  }
  .booking-modal .actions .language .dropdown-menu .dropdown-item:hover {
    background: #202021;
  }
  .booking-modal .actions .btn-close-media {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 36px;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 8px 16px;
    border-radius: 2px;
    height: 100%;
    width: 56px;
    background: transparent;
  }
  .booking-modal .modal-dialog .modal-content .right-side {
    padding: 24px 20px;
    height: 100%;
  }
  .booking-modal .modal-dialog .modal-content .right-side .close-button {
   display: none;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .input_block {
    margin-bottom: 12px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form input:not([type=checkbox]) {
    height: 40px;
    font-size: 12px;
    line-height: 20px;
    padding: 10px 16px;
    margin-bottom: 16px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .input_block input {
    margin-bottom: 0;
  }
  .booking-modal .modal-dialog .modal-content .right-side .desc {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 16px;
    margin-top: 10px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .phone-input {
    margin-bottom: 10px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .phone-input .prefix {
    width: 46px;
    height: 26px;
    font-size: 12px;
    line-height: 20px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .phone-input input {
    padding-left: 64px;
    margin-bottom: 0;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .checkbox-label {
    font-size: 12px;
    line-height: 20px;
    gap: 8px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .checkbox-label .custom-checkbox {
    width: 16px;
    height: 16px;
  }
  .booking-modal .modal-dialog .modal-content .right-side form .submit-button {
    margin-top: 40px;
    height: 44px;
    font-size: 14px;
    line-height: 22px;
  }
  .success-modal .modal-dialog {
    min-height: 100vh;
  }
  .success-modal .modal-content {
    height: 100%;
    min-height: 100vh;
    border: none;
    border-radius: 0;
  }
}