@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --card-line-height: 1.2em;
  --card-padding: 1em;
  --card-radius: 0.5em;
  --color-green: #995e6d;
  --color-gray: #e2ebf6;
  --color-dark-gray: #c4d1e1;
  --radio-border-width: 2px;
  --radio-size: 1.5em;
  --bs-primary: 153, 94, 109;
  --bs-primary-rgb: 153, 94, 109;
}

.btn-outline-primary {
  color: var(--color-green) !important;
  border: 1px solid var(--color-green) !important;
}

.btn-outline-primary:hover {
  background-color: var(--color-green) !important;
  color: white !important;
}

.formbold-steps li span.cart {
  position: relative;
  background: none;
  font-size: 30px;
  color: #995e6d;
  cursor: pointer;
  text-align: right;
  display: block;
}

.cart-counter {
  background: #e1a9b3;
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 10px;
  line-height: 17px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #e1a9b3;
  color: #fbfbf8;
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 1;
}

.ui-state-default {
  background: #7c7375 !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.ui-widget-header {
  background-color: #c8c6c7 !important;
  color: #fff !important;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  margin: 3px !important;
  text-align: center !important;
  padding: 3px 0 !important;
}

.ui-menu-item-wrapper {
  border: none !important;
}

.ui-state-active {
  background: #444444 !important;
  border: none !important;
}

.ui-datepicker-today .ui-state-highlight {
  border: none !important;
}

.btn-primary {
  background-color: #995e6d !important;
  outline: none;
  border: 1px solid #995e6d !important;
  box-shadow: none;
  outline: none;
}

.grid {
  display: grid;
  grid-gap: var(--card-padding);
  margin: 0 auto;
  max-width: 60em;
  padding: 0;
}

.card-custom {
  background-color: #fff;
  border-radius: var(--card-radius);
  position: relative;

  &:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  }
}

.radio {
  font-size: inherit;
  margin: 0;
  position: absolute;
  right: calc(var(--card-padding) + var(--radio-border-width));
  top: calc(var(--card-padding) + var(--radio-border-width));
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: var(--radio-border-width) solid var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
    height: var(--radio-size);
    outline: none;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
    width: var(--radio-size);

    &::after {
      border: var(--radio-border-width) solid #fff;
      border-top: 0;
      border-left: 0;
      content: "";
      display: block;
      height: 0.75rem;
      left: 25%;
      position: absolute;
      top: 50%;
      transform: rotate(45deg) translate(-50%, -50%);
      width: 0.375rem;
    }

    &:checked {
      background: var(--color-green);
      border-color: var(--color-green);
    }
  }

  .card-custom:hover .radio {
    border-color: var(--color-dark-gray);

    &:checked {
      border-color: var(--color-green);
    }
  }
}

.travel-details {
  border: var(--radio-border-width) solid var(--color-gray);
  border-radius: var(--card-radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0px;
  padding: 10px;
  transition: border-color 0.2s ease-out;
  position: relative;
}

input:checked + .card-custom .travel-details {
  border: var(--radio-border-width) solid #3d6678;
  background: #f8f9f8;
}

input:checked + .card-custom .airport_info {
  background: #3d6678 !important;
}

input:checked + .card-custom .travel-details .travel-type {
  color: #3d6678;
}

input:checked + .card-custom .travel-details .travel-type::after {
  content: "Selected";
  display: inline-block;
  background-color: #3d6678;
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  margin-left: 5px;
  border-radius: 3px;
  vertical-align: middle;
}

.travel-details .radio-btn {
  border: var(--radio-border-width) solid var(--color-gray);
  height: var(--radio-size);
  width: var(--radio-size);
  display: block;
  line-height: 17px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 9px;
}

.travel-details input {
  display: none;
}

.travel-details .radio-btn i {
  font-size: 12px;
}

input:checked + .card-custom .travel-details .radio-btn {
  background: #3d6678;
  border-color: #3d6678;
}

.btn-container {
  background: #3d6678 !important;
  border-color: #3d6678 !important;
}

input:checked + .card-custom .travel-details .radio-btn i {
  color: #fff;
}

.card-custom:hover .travel-details {
  border-color: var(--color-dark-gray);
}

.radio:checked ~ .travel-details {
  border-color: var(--color-green);
}

.radio:focus ~ .travel-details {
  box-shadow: 0 0 0 2px var(--color-dark-gray);
}

.radio:disabled ~ .travel-details {
  color: var(--color-dark-gray);
  cursor: default;
}

.radio:disabled ~ .travel-details .travel-type {
  color: var(--color-dark-gray);
}

.card-custom:hover .radio:disabled ~ .travel-details {
  border-color: var(--color-gray);
  box-shadow: none;
}

.card-custom:hover .radio:disabled {
  border-color: var(--color-gray);
}

.travel-type {
  color: var(--color-green);
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
}

.iata_code {
  font-size: 25px;
  font-weight: bold;
}

.flight_time {
  font-weight: normal;
  float: inline-end;
}

.plan-cycle {
  font-size: 2rem;
  font-variant: none;
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
}

.hidden-visually {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.airport_name {
  font-size: 11px;
}

.service_image {
  object-fit: cover;
}

.border-underline {
  border-bottom: 1px solid #3e6777;
}

.service_label .selected_icon {
  display: none;
}

input:checked + .service_label .selected_icon {
  display: block;
  color: #fff !important;
  left: -29px;
  top: 6px;
  font-size: 26px !important;
  background: #985c6c;
}

input:checked + .service_label {
  border: 3px solid #3d6678 !important;
}

.services_area {
  max-height: calc(100vh - 230px);
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0 15px;
}

label {
  cursor: pointer;
}

.counter {
  display: flex;
  align-items: center;
}

.counter button {
  width: 30px;
  height: 30px;
  border: none;
  background-color: #007bff;
  color: white;
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter input {
  width: 42px;
  height: 40px;
  text-align: center;
  border: 0px solid #ced4da;
  border-radius: 0;
  background: none !important;
}

.counter-input:focus {
  box-shadow: none !important;
}

.service_label p:empty {
  display: none !important;
}

.service_image.w-100.img-fluid.rounded-start {
  height: 180px !important;
  background: #ddd;
}

.desc_ul {
  list-style: none;
}

.desc_ul li::before {
  content: "✓";
  padding-right: 5px;
}

.wait {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999999;
  opacity: 0.85;
  transition-duration: 2s;
}

.wait .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.wait .wrapper .icon {
  min-height: 85px;
  height: 85px;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  text-align: center;
  color: #995e6d;
}

.add_porters_in_service {
  font-size: 12px !important;
  padding: 3px 6px !important;
  font-weight: 600;
}

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

.fixedHeight {
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}

.img-ovr-icon {
  left: 42%;
  top: 31%;
  position: absolute;
}

.services-cart-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  padding: 0px 15px;
  border-left: 1px solid #eee;
  box-shadow: 0 0 25px 0;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

.services-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 12px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #995e6d;
  margin-left: -15px;
  margin-right: -15px;
  line-height: 1;
  text-transform: uppercase;
}

.cart-metadata li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 7px 0px;
  font-size: 13px;
}

.cart-item {
  border-bottom: 1px solid #eee;
}

.cart-item h4 {
  max-width: 85%;
}

.remove-items {
  position: absolute;
  right: -7px;
  width: auto !important;
  padding: 0;
  font-size: 14px;
  color: #995e6d;
}

.list-properties {
  font-size: 13px;
}

.cart-metadata {
  padding: 0;
  margin: 0;
  list-style: none;
}

.app-download {
  padding: 50px 0;
  text-align: center;
}

.app-download h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.app-download p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.app-download img {
  max-width: 200px;
  margin: 10px;
}

/* Checkout Cart Preview Styles */
.checkout-cart-preview {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkout-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #995e6d;
  border-radius: 8px 8px 0 0;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-cart-inner {
  padding: 20px;
  max-height: 500px;
  min-height: 200px;
  overflow-y: auto;
  position: relative;
}

.checkout-cart-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  min-height: 200px;
}

.checkout-cart-loader .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
}

.text-main-color {
  color: #995e6d;
}

.checkout-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.cart-items-checkout {
  padding: 0;
}

.cart-items-checkout .cart-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  position: relative;
}

/* Collapsible cart item styles */
.cart-items-checkout .cart-item-collapsible {
  padding: 0;
  border-bottom: 1px solid #eee;
}

.cart-items-checkout .cart-item-collapsible:last-child {
  border-bottom: none;
}

.cart-items-checkout .cart-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 0;
  transition: background-color 0.2s ease;
  user-select: none;
}

.cart-items-checkout .cart-item-header:hover {
  background: #e9ecef;
}

.cart-items-checkout .cart-item-header-content {
  display: flex;
  align-items: center;
  flex: 1;
  cursor: pointer;
}

.cart-items-checkout .cart-item-title {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  flex: 1;
  line-height: 1.4;
}

.cart-items-checkout .cart-item-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-items-checkout .cart-item-toggle {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  color: #495057;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.cart-items-checkout .cart-item-toggle:hover {
  color: #995e6d;
}

.cart-items-checkout .remove-items-header {
  padding: 5px 10px;
  cursor: pointer;
  color: #dc3545;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  text-decoration: none;
}

.cart-items-checkout .remove-items-header:hover {
  color: #c82333;
}

.cart-items-checkout .cart-item-content {
  padding: 20px;
  background: #fff;
}

.cart-items-checkout .cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-items-checkout .cart-item-img {
  height: 150px;
  min-height: 150px;
  width: 100%;
  border-radius: 4px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: block;
  object-fit: cover;
}

.cart-items-checkout .cart-item .col-4 {
  padding-right: 15px;
  padding-left: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cart-items-checkout .cart-item .col-8 {
  padding-left: 15px;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.cart-items-checkout .cart-item-metadata {
  padding-left: 15px;
}

.cart-items-checkout .cart-item h4 {
  margin-bottom: 10px;
  line-height: 1.4;
}

.cart-items-checkout .cart-item .remove-items {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 10;
  font-size: 16px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-items-checkout .cart-item .remove-items:hover {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cart-items-checkout .cart-item-meta {
  margin-bottom: 5px;
  color: #495057;
}

.checkout-cart-footer .cart-metadata {
  margin-bottom: 15px;
}

.checkout-cart-footer .cart-metadata li {
  padding: 10px 0;
  font-size: 14px;
}

.checkout-cart-footer .cart-metadata li:last-child {
  font-size: 16px;
  font-weight: 700;
  border-top: 2px solid #ddd;
  padding-top: 15px;
  margin-top: 10px;
}

.checkout-cart-footer [data-discount="code_checkout"] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.checkout-cart-footer [data-discount="code_checkout"] input {
  flex: 1;
  margin: 0;
}

.checkout-cart-footer [data-discount="code_checkout"] .coupen_btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 40px;
  flex-shrink: 0;
}

.add_more_services_btn {
  background-color: #995e6d !important;
  border-color: #995e6d !important;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.add_more_services_btn:hover {
  background-color: #7a4a56 !important;
  border-color: #7a4a56 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(153, 94, 109, 0.3);
}

/* Improve cart item layout in checkout */
.checkout-cart-inner .cart-item .row {
  margin: 0;
  align-items: center;
}

.checkout-cart-inner .cart-item .col-4 {
  padding-right: 15px;
  padding-left: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.checkout-cart-inner .cart-item .col-8 {
  padding-left: 15px;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.checkout-cart-inner .cart-item-img {
  height: 150px;
  min-height: 150px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: block;
  object-fit: cover;
}

.checkout-cart-inner .cart-item-metadata h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.checkout-cart-inner .cart-item-metadata h4 small {
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
}

.checkout-cart-inner .cart-item-metadata ul {
  margin-top: 10px;
}

#currency_checkout {
  width: 76px;
  height: 25px;
  padding: 0px 6px;
  font-size: 12px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  outline: navajowhite;
  border-color: #fff;
  border-radius: 0;
  appearance: auto;
}

#currency_checkout option {
  background-color: #fff;
  color: #000;
  padding: 8px;
}

#currency_checkout option:hover {
  background-color: #f0f0f0;
}

#currency_checkout option:checked {
  background-color: #0d6efd;
  color: #fff;
}

#currency {
  width: 76px;
  height: 25px;
  padding: 0px 6px;
  font-size: 12px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  outline: navajowhite;
  border-color: #fff;
  border-radius: 0;
  appearance: auto;
}

#currency:focus {
  color: #000 !important;
  border-color: #000 !important;
}

.services-cart-inner {
  margin-left: -15px;
  margin-right: -15px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 1px solid #eee;
}

.cart-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 15px;
}

.cart-item-meta {
  padding: 3px;
  font-size: 11px;
}

.cart-item h4 {
  max-width: 85%;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.formbold-step-menu2,
.formbold-step-menu3 {
  cursor: pointer;
}

.form-control {
  font-size: 14px;
  outline: none !important;
  box-shadow: none !important;
  color: #536387 !important;
  font-weight: 500 !important;
}

.form-control:focus {
  border-color: var(--color-green) !important;
}

.coupen_btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}

#coupen_code {
  border-radius: 0 !important;
}

.login-with-google-btn {
  transition: background-color 0.3s, box-shadow 0.3s;

  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);

  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;

  &:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
      0 0 0 3px #995e6d;
  }

  &:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
  }
}

.seperator {
  width: 100%;
  height: 1px;
  background: #eee;
  position: relative;
  margin: 25px 0px;

  &:after {
    content: "OR";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0px 6px;
    z-index: 1;
  }
}

/* dark logo */
.w-20 {
  width: 20%;
}

.fa-solid.fa-cart-shopping {
  color: #414141;
  font-size: 20px;
}

.cat_icon i {
  border: 1px solid #995e6d;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 30px;
  color: #995e6d;
}

.choices__inner {
  border-radius: 0.375rem !important;
  background: white !important;
  font-size: 16px !important;
  color: #536387 !important;
  font-weight: 500 !important;
  padding: 3px !important;
  min-height: 38px !important;
  line-height: 22px !important;
}

.is-open .choices__inner {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.top_left {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.choices__placeholder {
  opacity: 1 !important;
}

.form-check-input:checked {
  background-color: #985c6c !important;
  border-color: #985c6c !important;
}

.form-check-input:focus {
  box-shadow: none !important;
}

.form-check-input:active {
  box-shadow: none !important;
}

.password-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 7px;
}

/* Eye icon styling */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
}

.airport_info {
  font-size: 10px !important;
  margin: 0px !important;
  line-height: 11px !important;
  width: 15px !important;
  height: 15px !important;
  display: inline-block !important;
  text-align: center !important;
  color: #fff !important;
  background: #995e6d !important;
  border-radius: 50% !important;
  cursor: help !important;
  padding-top: 1px;
}

#name_airport {
  font-weight: 600;
  text-align: center;
  display: inline;
}

.cross-data {
  float: right;
  font-size: 15px;
  border: 1px solid;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-top: 5px;
}

#image_airport {
  width: 100%;
  height: 220px;
}

#desc_airport {
  margin: 17px 10px;
}

.cc_modal_dialog {
  margin: 0 31% !important;
}

div:where(.swal2-icon) .swal2-icon-content {
  display: flex;
  align-items: center;
  /* font-size: 0.75em !important; */
}

.swal2-popup .swal2-styled {
  margin-top: 0px !important;
}

.description-wrapper {
  transition: 0.7s;
  overflow: hidden;
  height: 61px;
  display: block;
}

.rating.list-inline li {
  letter-spacing: -2px;
}

.review-title {
  font-size: 12.5px !important;
}

/* #airport_name_selected {
  font-size: 24px !important;
} */

/* #travel_type_selected {
  font-size: 20px !important;
} */

.download-btn {
  cursor: pointer;
}

.download-btn:hover {
  background-color: white !important;
  color: black !important;
}

.form-btn {
  cursor: pointer;
}

.form-btn:hover {
  background-color: black !important;
  color: white !important;
}

.app_link {
  width: 26%;
}
.open-icon {
  position: absolute;
  top: 30%;
  bottom: 50%;
  right: -14px;
  display: none;
  z-index: 999999999;
  transition: ease-out 0.56s;
  height: 40px;
  box-shadow: -7px 0px 17px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -7px 0px 17px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -7px 0px 17px -6px rgba(0, 0, 0, 0.75);
  border-radius: 50%;
}
.open-icon.opened {
  right: 335px;
  transform: rotate3d(0, -1, 0, 180deg);
  box-shadow: 9px 0px 17px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 9px 0px 17px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 9px 0px 17px -6px rgba(0, 0, 0, 0.75);
}

.open-icon i {
  background: #000;
  color: white;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}
.close-icon {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: -18px;
}
.close-icon i {
  background: #995e6d;
  color: white;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

/* header css */

.tlvvip-navbar a {
  font-family: "Montserrat", serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #282828;
}
.tlvvip-navbar .mobile-nav a {
}

.tlvvip-navbar .close-arrow {
  transform: rotateZ(-180deg);
  display: block;
  width: 14px;
  height: 14px;
  display: none;
}
.tlvvip-navbar .close-arrow svg {
  max-width: 100%;
}

/* upgrade header */
.book-now--btn {
  font-family: "Lato", Sans-serif;
  font-weight: 600;
  padding: 18px 44px 18px 44px;
  background: #aa3f44;
  color: #fff !important;
  border-radius: 30px;
  text-decoration: none;
  transaction: all 0.3s ease;
}
.book-now--btn:hover {
  background: #7e2d31;
}
.upgrade-navbar a {
  font-family: "Roboto", serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.upgrade-navbar .navbar-toggler {
  background: #aa3f44;
}
.upgrade-navbar .navbar-toggler[aria-expanded="false"] .fa-times {
  display: none;
}
.upgrade-navbar .navbar-toggler[aria-expanded="true"] .fa-bars {
  display: none;
}

.upgrade-navbar .navbar-collapse .mobile-nav a:hover {
  background-color: #aa3f44;
  color: #fff;
}

.section_footer {
  background-image: url("https://upgradevip.com/wp-content/uploads/2021/08/Rectangle-23.png");
  background-repeat: no-repeat;
  background-color: #1e1f2d;
}
/* 
.section_footer p, a, .h4{
  color: #fff !important;
} */

.section_footer ul {
  padding: 0;
  margin-top: 20px;
}
.section_footer ul li {
  margin-top: calc(10px / 2);
  padding-bottom: calc(10px / 2);
}

.section_footer p {
  color: #ffffff;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  max-width: 450px;
}

.section_footer .h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.footer_copyright p {
  font-size: 14px;
  font-weight: 400;
}

.footer_copyright {
  background-color: #171723;
}

.upgrade_desc {
  margin-top: 20px;
}
.section_footer a:hover,
a:active {
  color: #a5a4a4;
}
.section_footer a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.section_footer li {
  list-style: none;
}
.upgrade_inner {
  border-bottom: 1px solid;
  border-top: 1px solid;
}
.upgrade_inner_text {
  padding: 7px;
}
.upgrade_inner_content {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54.23px;
  color: #000000;
}
.upgrade_inner_title {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #aa3f44;
  margin-bottom: 10px;
}

.upgrade-footer-logo {
  width: 225px;
  height: 62px;
}

@media (max-width: 992px) {
  .tlvvip-navbar .navbar-toggler {
    display: block !important;
  }
  .tlvvip-navbar:not(.upgrade-navbar) .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    transition: left 0.3s ease;
    height: 100vh;
    z-index: 999999;
    padding: 20px 30px;
  }

  .navbar-toggler[aria-expanded="true"]:not(.upgrade-navbar) {
    position: relative;
    z-index: 9999999;
  }
  .navbar-toggler[aria-expanded="true"] .close-arrow {
    display: block;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    display: none;
  }
  .tlvvip-navbar .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }
  .tlvvip-navbar .navbar-collapse.show {
    left: 0;
  }
}

.cross-data {
  float: right;
  font-size: 15px;
  border: 1px solid;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-top: 5px;
}

.cross-data i {
  font-size: 10px;
  position: relative;
  bottom: 6px;
  left: 3px;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100% !important;
}
.upgrade_footer_social {
  display: flex;
  justify-content: end;
  align-items: center;
}
/* #custom_airport_offer{
  height: 50px;
} */
#offers_page .select3{
  height: 38px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0px !important;
}
.select3-container .form-select-icon{
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    background: #aa3f44;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
#chat_with_agent {
  white-space: normal;
  word-break: keep-all;
  text-decoration:none;
  color: #fff;
  font-size: 14px;
  background-color: #3e993e;
  padding: 11px;
  border: 1px solid #999;
  border-radius: 5px;

}

#chat_with_agent i{
  color: #fff;
}

