@charset "UTF-8";
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base // format form ada disini
    1.3. Variable
02. Reset // nice dropdown ada di sini
    2.3. Input
    2.4. nice
03. Utilities // button animasi
    3.2. Buttons

04. Template Style // booking form
    4.00. Booking

05. custom nice-booking

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #271b99;
  --primary-color: #271b99;
  --title-color: #191161;
  --body-color: #6E7070;
  --smoke-color: #E9F6F9;
  --smoke-color2: #F3F4F6;
  --black-color: #000000;
  --black-color2: #0D0D0C;
  --gray-color: #E1E4E5;
  --white-color: #ffffff;
  --light-color: #E1E4E5;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E9EDF5;
  --title-font: "Manrope", sans-serif;
  --body-font: "Inter", sans-serif;
  --style-font: "Montez", cursive;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1320px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 2s;
}

/*=================================
    02. Reset
==================================*/
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 50px;
  border: 1px solid var(--gray-color);
  color: var(--body-color);
  /* background-color: var(--white-color); */
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  font-family: var(--body-font);
  font-weight: 400;
  border-radius: 8px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  /* background-color: var(--white-color); */
  background-color: transparent;
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: var(--body-color);
}

select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select.style2,
select.style2 {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E");
}

textarea.form-control,
textarea {
  min-height: 154px;
  padding-top: 16px;
  padding-bottom: 17px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i,
.form-group > img {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 17px;
  font-size: 14px;
  color: var(--body-color);
}

.form-group > i.fa-envelope,
.form-group > img.fa-envelope {
  padding-top: 1px;
}

.form-group > i.fa-comment,
.form-group > img.fa-comment {
  margin-top: -2px;
}

.form-group > i.fa-chevron-down,
.form-group > img.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color2);
}

.form-group.has-label > i {
  top: 50px;
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

.form-rounded-10 .form-control,
.form-rounded-10 .form-select {
  border-radius: 10px !important;
}

.form-rounded-10 .th-btn {
  border-radius: 10px;
}

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"] ~ label:before {
  content: '';
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"] ~ label::before {
  content: '\f111';
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

input[type=date] {
  padding: 0 25px 0 25px;
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

[class*="col-"].form-group .form-icon-left {
  left: calc((var(--bs-gutter-x) / 2) + 30px);
  right: auto;
}

input[type=time] {
  padding: 0 30px;
  position: relative;
}

input[type=time]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

/*------------------- 2.4. nice-select -------------------*/
:root {
  --input-height: 56px;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  position: relative;
  line-height: calc(var(--input-height) - 2px);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.nice-select:after {
  content: '';
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 16px;
  pointer-events: none;
  /* border-bottom: 1px solid var(--body-color);
  border-right: 1px solid var(--body-color); */
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  position: absolute;
  right: 20px;
  line-height: calc(var(--input-height) - 2px);
  top: 21px;
  height: 8px;
  width: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  border-radius: 0;
  pointer-events: auto;
  display: block;
  -webkit-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  border-bottom: 1px solid var(--theme-color);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 250px;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scale(0.75) translateY(-28px);
      -ms-transform: scale(0.75) translateY(-28px);
          transform: scale(0.75) translateY(-28px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: var(--smoke-color);
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: capitalize;
  border: none;
  font-size: 16px;
  font-weight: 400;
  padding: 18.8px 35px;
  border-radius: 48px;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  gap: 8px;
}

.th-btn.th-icon:after {
  content: '';
  position: relative;
  -webkit-mask-image: url(../img/icon/arrow-right.svg);
          mask-image: url(../img/icon/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: var(--white-color);
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn:before {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: var(--title-color);
  -webkit-transition: .5s ease;
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.th-btn:hover, .th-btn.active {
  color: var(--white-color);
  box-shadow: none;
}

.th-btn:hover.th-icon i, .th-btn.active.th-icon i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.th-btn:hover:before, .th-btn.active:before {
  width: 110%;
}

.th-btn.style1:before, .th-btn.style1:after {
  background-color: var(--white-color);
}

.th-btn.style1:hover {
  color: var(--title-color);
}

.th-btn.style1:hover.th-icon:after {
  background-color: var(--title-color);
}

.th-btn.style1:hover:before, .th-btn.style1:hover:after {
  background-color: var(--white-color);
}

.th-btn.style2 {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.th-btn.style2:hover {
  color: var(--black-color2);
  border: 1px solid var(--white-color);
}

.th-btn.style2:hover:after {
  background-color: var(--title-color);
}

.th-btn.style2:before {
  background-color: var(--white-color);
}

.th-btn.style3 {
  background-color: var(--title-color);
  color: var(--white-color);
  box-shadow: none;
  border: none;
}

.th-btn.style3:before {
  background-color: var(--theme-color);
}

.th-btn.style4 {
  background-color: transparent;
  color: var(--title-color);
  border: 1px solid var(--title-color);
  padding: 14px 25px;
}

.th-btn.style4.th-icon:after {
  background-color: var(--title-color);
}

.th-btn.style4:hover {
  color: var(--white-color);
  border: 1px solid var(--theme-color);
}

.th-btn.style4:hover.th-icon:after {
  background-color: var(--white-color);
}

.th-btn.style4:before {
  background-color: var(--theme-color);
}

.th-btn.style5 {
  background-color: var(--title-color);
  color: var(--white-color);
  box-shadow: none;
  border: none;
}

.th-btn.style5:before {
  background-color: var(--white-color);
}

.th-btn.style5:hover {
  color: var(--title-color);
}

.th-btn.style6 {
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: none;
  border: none;
}

.th-btn.style6:before {
  background-color: var(--theme-color);
}

.th-btn.style6:after {
  background-color: var(--title-color);
}

.th-btn.style6:hover {
  color: var(--white-color);
}

.th-btn.style6:hover:after {
  background-color: var(--white-color);
}

.th-btn.style7:before, .th-btn.style7:after {
  background-color: var(--white-color);
}

.th-btn.style7:hover {
  color: var(--title-color);
}

.th-btn.style7:hover:before, .th-btn.style7:hover:after {
  background-color: var(--white-color);
}

.th-btn.style7:hover:after {
  background-color: var(--title-color);
}

.th-btn.white-btn {
  background-color: var(--white-color);
  color: var(--black-color2);
}

.th-btn.th-radius {
  border-radius: 0;
}

.th-btn.th-radius2 {
  border-radius: 8px;
}

.th-btn.btn-fw {
  width: 100%;
  padding: 18px 30px;
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.00. Booking -------------------*/
/* booking area  start --------------------*/
.booking-form {
  /* bawah sini */
  position: relative;
  /* background-color: var(--white-color); */
  background-color: rgba(255, 255, 255, 0.5);
  /* backdrop-filter: blur(10px); */
  border: 2px solid var(--theme-color);
  box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
  border-radius: 16px;
  padding: 21px 32px;
  z-index: 3;
  margin-top: 0px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form {
    padding: 20px 20px;
  }
}

.booking-form.style2 {
  position: relative;
  left: 0;
  bottom: 0;
  margin-top: 0;
  padding: 27px 32px;
  border-radius: 16px 0px 0px 0px;
  box-shadow: none;
  border: none;
  min-width: 896px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1399px) {
  .booking-form.style2 {
    min-width: 849px;
  }
}

@media (max-width: 1299px) {
  .booking-form.style2 {
    min-width: 780px;
  }
}

@media (max-width: 1199px) {
  .booking-form.style2 {
    min-width: 640px;
  }
}

@media (max-width: 991px) {
  .booking-form.style2 {
    min-width: 100%;
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.15);
    border-radius: 16px;
  }
}

.booking-form.style2 .input-wrap .form-group {
  margin-bottom: 0;
  height: 41px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style2 .input-wrap .form-group {
    height: 100%;
    padding-bottom: 20px;
    padding-left: 13px;
  }
}

.booking-form.style2 .input-wrap .form-group .search-input {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style2 .input-wrap .form-group .search-input {
    min-width: 95%;
  }
}

.booking-form.style2 .input-wrap .form-group:not(:first-child) {
  border-left: 1px solid #E1E4E5;
  padding-left: 25px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style2 .input-wrap .form-group:not(:first-child) {
    border-left: none;
    padding-left: 12px;
  }
}

.booking-form.style2 .input-wrap .form-group .nice-select:after {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style2 .input-wrap .form-group .nice-select:after {
    right: 20px;
  }
}

.booking-form.style2 .input-wrap .form-btn .th-btn {
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .booking-form.style2 .input-wrap .form-btn .th-btn {
    padding: 15px 35px;
  }
}

@media (max-width: 1199px) {
  .booking-form.style2 .input-wrap .form-btn .th-btn {
    width: 100%;
  }
}

.booking-form.style5 {
  position: relative;
  background: #E9F6F9;
  border-radius: 16px 0px 0px 0px;
  border: none;
  box-shadow: none;
  overflow: initial;
  z-index: 9;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 {
    margin-top: -125px;
  }
}

@media (max-width: 991px) {
  .booking-form.style5 {
    margin-top: 65px;
    border-radius: 0;
  }
}

.booking-form.style5 .input-wrap .form-group select,
.booking-form.style5 .input-wrap .form-group .form-control,
.booking-form.style5 .input-wrap .form-group .form-select,
.booking-form.style5 .input-wrap .form-group textarea,
.booking-form.style5 .input-wrap .form-group .nice-select,
.booking-form.style5 .input-wrap .form-group input {
  background: transparent;
}

.booking-form.style5 .th-btn {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 .th-btn {
    width: 100%;
  }
}

.booking-form.style5 .input-wrap .form-group {
  margin-bottom: 0;
  height: 41px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 .input-wrap .form-group {
    height: 100%;
    padding-bottom: 20px;
    padding-left: 13px;
  }
}

.booking-form.style5 .input-wrap .form-group .search-input {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 .input-wrap .form-group .search-input {
    min-width: 95%;
  }
}

.booking-form.style5 .input-wrap .form-group:not(:first-child) {
  border-left: 1px solid #E1E4E5;
  padding-left: 25px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 .input-wrap .form-group:not(:first-child) {
    border-left: none;
    padding-left: 12px;
  }
}

.booking-form.style5 .input-wrap .form-group .nice-select:after {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style5 .input-wrap .form-group .nice-select:after {
    right: 20px;
  }
}

.booking-form.style5 .input-wrap .form-btn .th-btn {
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .booking-form.style5 .input-wrap .form-btn .th-btn {
    padding: 15px 35px;
  }
}

@media (max-width: 1199px) {
  .booking-form.style5 .input-wrap .form-btn .th-btn {
    width: 100%;
  }
}

.form_wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.input-wrap.style2 .form-group:not(:first-child) {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .input-wrap.style2 .form-group:not(:first-child) {
    border-left: transparent;
  }
}

.input-wrap .form-group {
  margin-bottom: 0;
  height: 41px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  /* Medium devices */
  /* Small devices */
  /* Medium devices */
}

@media (max-width: 991px) {
  .input-wrap .form-group {
    margin-bottom: 15px;
    padding-left: 25px;
  }
  .input-wrap .form-group .search-input {
    min-width: 160px;
  }
}

@media (max-width: 767px) {
  .input-wrap .form-group .search-input {
    min-width: 95%;
  }
}

.input-wrap .form-group:not(:first-child) {
  border-left: 1px solid #E1E4E5;
  padding-left: 25px;
}

@media (max-width: 991px) {
  .input-wrap .form-group:not(:last-child) {
    border: none;
  }
}

.input-wrap .form-group .icon i {
  font-size: 24px;
  color: var(--theme-color);
  /* Large devices */
}

@media (max-width: 1199px) {
  .input-wrap .form-group .icon i {
    font-size: 18px;
  }
}

.input-wrap .form-group label {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: var(--black-color);
  margin: 0;
}

.input-wrap .form-group input {
  padding: 0 0 0 37px;
  font-size: 16px;
  font-weight: 600;
}

.input-wrap .form-group .nice-select {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.input-wrap .form-group .nice-select:after {
  top: 10px;
  right: -20px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .input-wrap .form-group .nice-select:after {
    right: 20px;
  }
}

.input-wrap .form-group .nice-select.open .list {
  -webkit-animation: fade-down .3s linear;
          animation: fade-down .3s linear;
}

.input-wrap .form-group .nice-select .list {
  overflow-y: scroll;
  z-index: 9;
}

.input-wrap .form-group .nice-select .list {
  width: 200px;
}

.input-wrap .form-group select,
.input-wrap .form-group .form-control,
.input-wrap .form-group .form-select,
.input-wrap .form-group textarea,
.input-wrap .form-group .nice-select,
.input-wrap .form-group input {
  height: 30px;
  line-height: 30px;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color2);
  /* Large devices */
}

@media (max-width: 1199px) {
  .input-wrap .form-group select,
  .input-wrap .form-group .form-control,
  .input-wrap .form-group .form-select,
  .input-wrap .form-group textarea,
  .input-wrap .form-group .nice-select,
  .input-wrap .form-group input {
    font-size: 14px;
  }
}

.input-wrap .form-group .nice-select .option {
  color: var(--title-color);
  display: block;
}

.input-wrap .form-group .nice-select .option p {
  display: block;
}

.input-wrap .form-group .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
  font-weight: 400;
}

.input-wrap .form-group .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.input-wrap .form-group .nice-select .option:hover, .input-wrap .form-group .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.input-wrap .form-group .nice-select.open .list {
  border-bottom: 3px solid var(--theme-color);
}

.input-wrap .form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* Medium devices */
}

@media (max-width: 991px) {
  .input-wrap .form-btn {
    display: block;
  }
  .input-wrap .form-btn .th-btn {
    width: 100%;
  }
}

.input-wrap .form-btn .th-btn {
  padding: 15px 45px;
  /* Small devices */
}

@media (max-width: 767px) {
  .input-wrap .form-btn .th-btn {
    width: 100%;
  }
}

/* booking area  end --------------------*/
/* booking style2  start --------------------*/
.booking-form.style3 {
  border-radius: 100px;
  border: none;
  border-bottom: 2px solid var(--theme-color);
  box-shadow: none;
  /* Small devices */
}

@media (max-width: 767px) {
  .booking-form.style3 {
    border-radius: 20px;
  }
}

.booking-form.style3 .th-btn {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style3 .th-btn {
    display: none;
  }
}

.booking-form.style4 {
  border-radius: 100px;
  border: none;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  margin: 60px 0 0 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .booking-form.style4 {
    border-radius: 20px;
  }
}

.booking-form.style4 .th-btn {
  /* Large devices */
}

@media (max-width: 1199px) {
  .booking-form.style4 .th-btn {
    display: none;
  }
}

.booking-client-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.booking-client-box .client-thumb-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Extra small devices */
}

.booking-client-box .client-thumb-group .thumb {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.booking-client-box .client-thumb-group .thumb:not(:first-child) {
  margin-left: -30px;
}

.booking-client-box .client-thumb-group .thumb img {
  border-radius: 50%;
  height: 60px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .booking-client-box .client-thumb-group .thumb img {
    height: 50px;
  }
}

.booking-client-box .client-thumb-group .thumb.icon {
  background: var(--theme-color);
  border: 1px solid var(--white-color);
  font-size: 16px;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  margin-left: -30px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .booking-client-box .client-thumb-group .thumb.icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}

.booking-client-box .client-thumb-group .thumb.icon i {
  color: var(--white-color);
}

.booking-client-box .cilent-box_counter {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: var(--black-color2);
  margin-bottom: 0;
}

/* booking style2  end --------------------*/
/* booking wp area start -----------------------*/
.wpte-trip-sfilter-wrapper {
  position: relative;
  background-color: var(--white-color);
  border: 2px solid var(--theme-color);
  box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
  border-radius: 16px;
  padding: 25px 32px;
  z-index: 3;
}

.wpte-trip-sfilter-wrapper .wpte-trip__adv-field {
  border: none;
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-submit {
  width: 100%;
  text-align: center;
  height: 50px;
  padding: 20px 52px;
  border-radius: 48px !important;
  background-color: var(--theme-color);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-submit:before {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: var(--title-color);
  -webkit-transition: .5s ease;
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-submit:hover, .wpte-trip-sfilter-wrapper .wpte-trip__search-submit.active {
  color: var(--white-color);
  box-shadow: none;
  background-color: var(--theme-color);
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-submit:hover.th-icon i, .wpte-trip-sfilter-wrapper .wpte-trip__search-submit.active.th-icon i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-submit:hover:before, .wpte-trip-sfilter-wrapper .wpte-trip__search-submit.active:before {
  width: 110%;
}

.wpte-trip__adv-field.wpte__select-field.options-open .wpte__select-options ul li {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--title-color);
  padding: 5px 10px;
}

.wpte-trip__adv-field.wpte__select-field.options-open .wpte__select-options ul li:hover > span {
  color: var(--theme-color) !important;
}

.wpte-trip__adv-field .icon {
  color: var(--theme-color);
  font-size: 20px;
}

.wpte-trip-sfilter-wrapper .wpte-trip__adv-field {
  border: none;
  border-right: 1px solid #E1E4E5 !important;
  padding-right: 25px;
  margin-right: 25px;
  /* Small devices */
}

@media (max-width: 767px) {
  .wpte-trip-sfilter-wrapper .wpte-trip__adv-field {
    border-right: none !important;
    padding-right: 0;
    margin-right: 0;
  }
}

.wpte-trip-sfilter-wrapper .wpte-trip__adv-field:after {
  right: 25px !important;
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-fields {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpte-trip-sfilter-wrapper .wpte-trip__search-fields .wpte__select-field {
  height: 41px;
}

.wpte-trip__adv-field.wpte__select-field .wpte__select-options {
  border-bottom: 3px solid var(--theme-color);
}

/* booking wp area start -----------------------*/
.hero-booking {
  position: relative;
  background-color: var(--white-color);
  z-index: 9;
  padding: 27px 32px;
  border-radius: 16px 0px 0px 0px;
  box-shadow: none;
  border: none;
  min-width: 896px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

.hero-booking.style2 {
  padding: 0;
}

@media (max-width: 1399px) {
  .hero-booking {
    min-width: 849px;
  }
}

@media (max-width: 1299px) {
  .hero-booking {
    min-width: 780px;
  }
}

@media (max-width: 1199px) {
  .hero-booking {
    min-width: 640px;
  }
}

@media (max-width: 991px) {
  .hero-booking {
    min-width: 100%;
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.15);
    border-radius: 16px;
  }
}

.hero-booking .advanced-search-field strong {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
  display: block;
}

.hero-booking .advanced-search-field .nice-select {
  line-height: 40px !important;
  width: 100%;
}

.hero-booking .advanced-search-field .nice-select:after {
  top: 19px;
}

.hero-booking input {
  position: relative;
  padding: 20px 52px;
  font-size: 16px;
  border-radius: 48px;
  line-height: 16px !important;
}

.hero-booking .class-wte-advanced-search-wrapper {
  margin: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Extra small devices */
}

@media (max-width: 1024px) {
  .hero-booking .class-wte-advanced-search-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
  }
}

@media (max-width: 375px) {
  .hero-booking .class-wte-advanced-search-wrapper {
    grid-template-columns: auto;
  }
}

.hero-3 h3 {
  display: none;
}

/*------------------- 4.00. _color-plate -------------------*/
/* color scheme ---------------------------------- */
.color-scheme-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99;
  background: var(--white-color);
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
}

.color-scheme-wrap .switchIcon {
  position: absolute;
  left: 0;
  top: 10px;
  border: 0;
  background: var(--theme-color);
  color: var(--white-color);
  height: 45px;
  width: 45px;
  border-radius: 5px 0 0 5px;
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.color-scheme-wrap .color-scheme-wrap-title {
  font-size: 22px;
  border-bottom: 1px solid var(--th-border-color);
  padding-bottom: 6px;
  color: var(--title-color);
  margin-bottom: 30px;
}

.color-scheme-wrap .color-scheme-wrap-title i {
  font-size: 18px;
  margin-right: 3px;
}

.color-scheme-wrap .color-switch-btns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}

.color-scheme-wrap .color-switch-btns button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 34px;
  color: var(--theme-color);
  text-align: left;
}

.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
