@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  box-sizing: border-box;
}

strong {
  font-weight: 600 !important;
}

button {
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

input, textarea {
  font-size: 16px !important;
}

.banner_customize {
  background-image: url("/themes/web/img/banner-customize-v2.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 337px;
}

.banner_customize h1 {
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  margin-bottom: 35px;
}

.customize_form {
  width: 776px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  top: -90px;
}

.container_cus {
  background-color: #F4F4F4;
  display: block;
  font-family: "Poppins", sans-serif;
}

.process_step {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process_step .process_step_item {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.process_step .process_step_item span {
  color: #C4C4C4;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid #C4C4C4;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process_step .process_step_item p {
  font-weight: 400;
  color: #C4C4C4;
}
.process_step .process_step_item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 14px; /* căn giữa chiều cao số */
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  z-index: 0;
}
.process_step .process_step_item.active span {
  color: #11A04A;
  border: 2px solid #11A04A;
}
.process_step .process_step_item.active p {
  font-weight: 700;
  color: #11A04A;
  font-size: 15px;
}
.process_step .process_step_item.done span {
  background-color: #11A04A;
  border: none;
}
.process_step .process_step_item.done p {
  color: #11A04A;
}
.process_step .process_step_item.active:not(:first-child)::before {
  background-color: #11A04A;
}

.box_start {
  margin-top: 10px;
  background-color: #EBFFF3;
  border-radius: 10px;
  padding: 20px;
  gap: 10px;
  display: flex;
  border: 1px solid #96E2B8;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
.box_start h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  margin: 0;
}
.box_start p {
  margin: 0;
}

.field-customizeformv2-stage #customizeformv2-stage {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field-customizeformv2-stage #customizeformv2-stage label {
  font-weight: 400;
  margin-bottom: 5px;
}

.control-label {
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.action_btn {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #CFCFCF;
  margin-top: 10px;
  padding-top: 25px;
}
.action_btn button {
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  padding: 13px 25px;
  border-radius: 5px;
  font-size: 15px;
}
.action_btn button:focus {
  outline: none;
  border: none;
}

#next-step {
  float: right;
  background-color: #11A04A;
  color: #fff;
  transition: 0.3s;
}
#next-step:hover {
  background-color: #097434;
  transition: 0.3s;
}

#prev-step {
  float: left;
  border: 1px solid #11A04A;
  color: #11A04A;
  background-color: #fff;
}

.custom-radio {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 1px solid #CFCFCF;
  border-radius: 50%;
}

.custom-radio input:checked ~ .checkmark {
  background-color: white;
  border: 2px solid #11A04A;
}

.custom-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11A04A;
}

.help-block {
  color: red !important;
}

#customizeformv2-profile_id {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.custom-radio {
  font-weight: 400;
}

.form-group {
  margin-bottom: 30px !important;
  position: relative;
}

.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: 400;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid #11A04A;
  border-radius: 50%; /* hình tròn */
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  width: 100%;
  background-image: url(/themes/web/img/checkbox.svg) !important;
  position: absolute;
  left: 0;
  top: 0 !important;
  font-size: 14px;
  display: none;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
}

.custom-checkbox .checkmark:after {
  background-image: url(/themes/web/img/checkbox.svg);
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 14px;
  color: #11A04A;
  display: none;
  background: #11A04A;
  width: 100%;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 1px solid #9E9E9E;
  border-radius: 2px; /* hình tròn */
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.guest-box {
  display: flex;
  flex-direction: column;
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
}
.guest-box .guest-box-child {
  display: flex;
  justify-content: space-around;
}

.guest-item {
  text-align: center;
}

.guest-label strong {
  color: #000;
}

.guest-label span {
  display: block;
  font-size: 12px;
  color: #6A6A6A;
}

.counter {
  margin-top: 15px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  gap: 20px;
}

.counter .btn-minus,
.counter .btn-plus {
  background: none;
  border: 1px solid #11A04A;
  color: #11A04A;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  align-items: center;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.counter .btn-minus:hover,
.counter .btn-plus:hover {
  background: #11A04A;
  color: #fff;
}

.counter .count {
  font-size: 18px;
  font-weight: bold;
  min-width: 20px;
}

.guest-label {
  display: flex;
  gap: 5px;
  align-items: center;
}

.select-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.select-group select {
  height: 50px;
  border: 1px solid #ABABAB;
}

.form-section {
  display: flex;
  justify-content: center;
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  flex-direction: column;
  gap: 10px;
}
.form-section .form-group {
  margin-bottom: 0 !important;
}

.date-range-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 20px;
  max-width: 100%;
  margin: 0;
  gap: 20px;
}

.date-field {
  flex: 1;
  position: relative;
}

.date-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
  padding: 3px 14px;
  background: #fff;
  position: relative;
}

.input-wrapper .icon-calendar {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23666" width="20" height="20" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14a2 2 0 002-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z"/></svg>') no-repeat center center;
  background-size: 20px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.input-wrapper input {
  border: none !important;
  outline: none;
  font-size: 14px;
  color: #6A6A6A;
  flex: 1;
}

.arrow-icon {
  font-size: 22px;
  color: #999;
  margin-bottom: 12px;
}
.arrow-icon img {
  position: relative;
  top: 35px;
}

#customizeformv2-profile_group_type, #customizeformv2-typeacc, #customizeformv2-type_support, #customizeformv2-how_did_id, #customizeformv2-departure_time, #customizeformv2-contact, #customizeformv2-chosen_themes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

textarea {
  max-width: 100%;
}

.budget-wrapper {
  display: grid;
  grid-template-columns: 450px auto;
  align-items: center;
}
.budget-wrapper .control-label {
  width: 100%;
}

.budget-input-box {
  position: relative;
  display: inline-block;
  width: 450px;
}

.budget-input-box input {
  padding-right: 30px;
  border-radius: 6px;
  height: 50px;
}

.currency-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.note {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  color: #6A6A6A;
  font-size: 12px;
}

.fancy-form-group {
  position: relative;
}
.fancy-form-group input, .fancy-form-group select {
  width: 100%;
  padding: 16px 12px 8px 12px;
  border: 1px solid #ABABAB;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: white;
  height: 50px;
}

.fancy-form-group label {
  position: absolute;
  top: -10px;
  left: 12px;
  background: white;
  padding: 0 5px;
  font-size: 14px;
  color: #777;
  z-index: 1;
  font-weight: 400;
}

.fancy-form-group input:focus, .fancy-form-group select:focus {
  border-color: #4CAF50;
  box-shadow: unset;
}

.fancy-form-group input:focus + label {
  box-shadow: unset;
  color: #4CAF50;
}

.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.text-danger, .color-red {
  color: red;
}

span.input-group-addon {
  display: none;
}

.datepicker {
  box-shadow: unset !important;
}

.field-customizeformv2-date_from .help-block, .field-customizeformv2-date_to .help-block {
  display: none;
}

#customizeformv2-date_from {
  background-color: #fff;
}

.select2-search--dropdown .select2-search__field {
  padding: 10px !important;
}
.select2-search--dropdown .select2-search__field:focus-visible {
  outline: none !important;
}

.select2-container {
  width: 100% !important;
}

.group_child_form {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-top: 10px;
}
.group_child_form .group_child_grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 0 auto;
}
.group_child_form .form-group {
  margin: 0 !important;
}
.group_child_form .child-label {
  font-weight: 500;
}

.field-customizeformv2-maxbudget {
  display: flex;
  flex-direction: column;
}

.select2-container .select2-selection--single {
  height: 50px !important;
  line-height: 50px !important;
  padding: 10px 12px;
  border-radius: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
}

.select2-selection__clear {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  #customizeformv2-profile_group_type, #customizeformv2-typeacc, #customizeformv2-type_support, #customizeformv2-how_did_id, #customizeformv2-departure_time, #customizeformv2-contact {
    gap: 10px;
  }
  .select-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .group_child_form .group_child_grid {
    width: 100%;
  }
  button.uk-modal-close-full.uk-close-medium {
    top: 0;
    right: 0;
    padding: 10px;
    background: #fff;
    position: absolute;
    z-index: 1010;
    color: #999;
    transition: 0.1s ease-in-out;
    transition-property: color, opacity;
  }
  button.uk-modal-close-full.uk-close-medium:hover {
    box-shadow: unset;
  }
  button.uk-modal-close-full.uk-close-medium::before {
    content: "×";
    font-size: 25px;
    font-weight: 400;
    color: #999;
    display: inline-block;
    transition: color 0.2s ease-in-out;
  }
  .uk-modal.uk-open {
    opacity: 1;
    display: block;
  }
  .uk-modal-dialog {
    width: 100vw;
    margin: 0;
    max-width: 100vw;
  }
  .uk-position-center {
    top: 0 !important;
    left: 0 !important;
    transform: unset !important;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
  }
  #apply-date {
    position: fixed !important;
    bottom: 10px !important;
    background: #0d6efd !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: white !important;
  }
  .rmdp-wrapper,
  .rmdp-calendar {
    width: 100% !important;
  }
  .rmdp-day {
    width: 40px !important;
    height: 40px !important;
  }
  .rmdp-day > span {
    font-size: 15px !important;
  }
  .rmdp-week > span {
    font-size: 20px !important;
    color: #000;
    padding-top: 10px;
  }
  .sd,
  .rmdp-week-day {
    font-size: 14px !important;
  }
  .rmdp-header > div {
    font-size: 22px !important;
    padding: 15px 0px;
  }
  #apply-date {
    position: absolute;
    bottom: 100px;
    left: 43%;
    z-index: 99999;
  }
  #full-screen-modal {
    overflow-y: visible;
  }
  .input-wrapper .datepicker {
    z-index: 999 !important;
  }
  .arrow-icon img {
    top: 45px;
  }
  .date-range-box {
    gap: 5px;
  }
  h1 {
    padding: 0 12px;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin: 0 0 15px !important;
  }
  .container_cus {
    padding: 0 12px 30px;
    background-color: #fff;
  }
  .hide {
    display: none;
  }
  .customize_form {
    width: 100%;
  }
  .customize_form {
    top: 0;
    display: inline-block;
    padding: 0;
  }
  .breadcrumb {
    width: 100%;
    display: inline-block;
    padding: 0 12px !important;
  }
  #customizeformv2-profile_id {
    flex-direction: column;
    gap: 10px;
  }
  .custom-radio .checkmark:after {
    left: 4px;
    top: 4px;
  }
  .select-group select {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
  }
  .date-range-box {
    display: grid;
    grid-template-columns: auto max-content auto;
  }
  .input-wrapper input {
    width: 100%;
  }
  textarea {
    max-width: 100%;
    width: calc(100% - 4px);
  }
  .budget-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .budget-input-box input {
    width: 100%;
    padding: 10px;
  }
  .budget-input-box {
    width: 100%;
  }
  .form-group input, .form-group select {
    border: 1px solid #ABABAB;
    font-size: 16px;
    color: #2a2a2a;
  }
  .field-customizeformv2-budgettxt {
    margin-bottom: 0 !important;
  }
  .grid_3, .grid_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner_customize {
    display: none;
  }
}/*# sourceMappingURL=tour-customize.css.map */