@charset "UTF-8";
#cartIcon {
  position: fixed;
  left: 20px !important;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #818181;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cartCount {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #b80000;
  color: white;
  font-size: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

/* Hidden cart box */
#cartBox {
  position: fixed;
  left: 20px;
  bottom: 80px;
  width: 450px;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 15px;
  border-radius: 30px;
  z-index: 1000;
  display: none; /* initially hidden */
}

#cartBox h4 {
  margin-top: 0;
  font-size: 18px;
}

#cartItems {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

#cartItems li {
  font-size: 18px;
  margin-bottom: 5px;
}

#closeCart {
  float: left;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  #cartBox {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}
.color-amount {
  color: #00a34e;
  font-weight: bold;
}

.admin-panel {
  color: #e40422;
}

.color-primary {
  color: #005eb8;
}

.color-info {
  color: #be0687;
}

.color-danger {
  color: #b80000;
}

.color-warning {
  color: yellow;
}

.color-white {
  color: white;
}

.color-success {
  color: #00a34e;
}

.color-info-light {
  color: rgba(41, 157, 219, 0.8235294118);
}

.color-warning-light {
  color: rgba(247, 184, 75, 0.8235294118);
}

.color-danger-light {
  color: rgba(240, 101, 72, 0.8235294118);
}

.color-success-light {
  color: rgba(10, 179, 156, 0.8235294118);
}

.gradient-card {
  background: linear-gradient(-120deg, #0e2c6b, #405189);
  color: white;
}

.gradient-card-agency {
  background: -webkit-gradient(linear, right top, left top, from(#405189), to(rgba(17, 7, 0, 0.8784313725)));
  background: linear-gradient(-90deg, #405189, rgba(17, 7, 0, 0.8784313725));
  color: white;
}

.bg-primary-dark {
  background-color: #002344;
}

.bg-success-subtle {
  background-color: #69cfc2;
}

.bg-indigo {
  background-color: #2a4088;
}

.bg-success-dark {
  background-color: #014e26;
}

.bg-success-light {
  background-color: #78c49d;
}

.bg-primary-light {
  background-color: #cdddec;
}

.bg-info-light {
  background-color: rgba(41, 156, 219, 0.8235294118);
}

.bg-warning-light {
  background-color: #f7b84b;
}

.bg-danger-light {
  background-color: #f06548;
}

.tab-title {
  font-size: 15px; /* Default for large screens */
}

.bold {
  font-weight: bold;
}

.test-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Horizontal center */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Vertical center */
  height: 100vh;
}

.center-absolute {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 70%;
}

.dashed-hr {
  border: none;
  border-top: 2px dashed #999;
  margin: 1rem 0;
}

#convai-widget {
  -webkit-transform: scale(1);
          transform: scale(1); /* Makes widget visually larger */
  -webkit-transform-origin: top center;
          transform-origin: top center;
  display: block;
  margin: 0 auto;
}

.sorry-text {
  font-weight: 500;
  font-size: 50px;
  color: #c3c1c1;
}

.error-text {
  font-weight: 500;
  font-size: 50px;
  color: #f15353;
}

.back-button {
  font-size: larger;
}

.flight-amount {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
}

.plane-duration {
  margin-right: 30px;
  margin-left: 30px;
}

.email-size {
  font-size: 15px; /* Default for large screens */
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  color: #005eb8;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

/* Dropdown Content (hidden by default) */
.dropdown-content {
  display: none;
  font-size: 12px;
  padding: 5px 5px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
}

/* Hover effect on links */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown menu on button hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.transition-rotate {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.rotate-180 {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.show {
  display: block;
}

/* Row container */
.row-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px; /* Optional: adjust spacing */
}

/* Columns inside */
.col-mobile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  min-width: 300px; /* Prevent columns from being too narrow */
}

.pointer {
  cursor: pointer;
}

.plane-destinations {
  font-size: 18px;
}

.segment-extra {
  margin-right: 20%;
  font-size: 15px !important;
}

.sement-baggage {
  font-size: 15px !important;
}

.segment-details {
  margin-right: 10%;
  font-size: 15px;
}

.flight-exetensions {
  text-align: right;
}

.flight-offer-header {
  text-align: center;
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.flight-offer-amount {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 8px;
}

.flight-offers {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 8px;
}

.rounded-top-only {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media (max-width: 1200px) {
  .flight-offer-header {
    text-align: right;
  }
  .flight-offers {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
  }
  .sement-header {
    display: block;
  }
  .plane-destinations {
    font-size: 18px;
  }
  .sement-baggage {
    font-size: 15px !important;
  }
  .segment-extra {
    margin-right: 5px;
    text-align: center;
  }
  .segment-details {
    margin-right: 0;
    font-size: 15px;
    text-align: center;
  }
  .plane-duration {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  #convai-widget {
    -webkit-transform: scale(1);
            transform: scale(1); /* Even bigger on small screens */
  }
  .flight-exetensions {
    text-align: center;
    font-size: small;
  }
  .sorry-text {
    font-weight: 500;
    font-size: 2.6vh;
  }
  .error-text {
    font-weight: 500;
    font-size: 2.6vh;
  }
  .center-absolute {
    font-size: 1.5vh;
    text-align: center;
    width: 50%;
  }
  .flight-amount {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
  }
  .back-button {
    font-size: 2vh;
  }
}
@media (max-width: 768px) {
  .tab-title {
    font-size: 12px; /* Smaller for mobile or tablets */
  }
}
@media (max-width: 768px) {
  .email-size {
    font-size: 12px; /* Smaller for mobile or tablets */
  }
}
/* Responsive: On small screens, make columns stack vertically */
@media (max-width: 768px) {
  .row-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.swal-responsive {
  width: 50% !important;
  max-width: none;
  border-radius: 20px !important;
}

@media (max-width: 1200px) {
  .swal-responsive {
    width: 100% !important;
    border-radius: 20px !important;
  }
}
.swal2-validation-message {
  background-color: #f8d7da;
  color: #842029;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.9rem;
  z-index: 9999;
}

/* Prevent modal content from overlapping with the message */
.swal2-html-container {
  margin-top: 40px !important;
}

.form-label {
  font-size: 0.95rem;
}

.accordion-button.collapsed {
  background-color: #f8f9fa;
}

.accordion-body {
  background-color: #ffffff;
  border-radius: 0 0 12px 12px;
}

.passenger-block {
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.passenger-block:hover {
  -webkit-box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.1);
          box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.1);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card-grid {
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}
.modern-card {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.modern-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modern-card .header {
  margin-bottom: 1rem;
}

.modern-card .header h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.modern-card .header p {
  font-size: 0.8rem;
  color: #666;
  margin: 4px 0 0 0;
}

.modal-header.bg-primary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content {
  border-radius: 1rem;
}

.modal-body {
  padding: 1.5rem;
}

.body-login {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Centered Logo */
.brand-login {
  text-align: center;
  margin-bottom: 10px;
}

.brand-login img {
  max-width: 150px;
  height: auto;
}

.login-container {
  background: #eaeaea;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 15px;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 380px;
  max-width: 90%;
}

.login-container h2 {
  margin-bottom: 15px;
  color: white;
  font-size: 24px;
  font-weight: 500;
}

/* Flash Messages Styling */
.messages {
  color: #ce0058;
  padding: 0;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}

.input-group i {
  color: #333;
  margin-left: 12px;
  font-size: 16px;
}

.login-container input {
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  color: #333;
  outline: none;
  font-size: 14px;
}

.login-container input::-webkit-input-placeholder {
  color: #333;
}

.login-container input::-moz-placeholder {
  color: #333;
}

.login-container input:-ms-input-placeholder {
  color: #333;
}

.login-container input::-ms-input-placeholder {
  color: #333;
}

.login-container input::placeholder {
  color: #333;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background: #005eb8;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 10px;
}

.login-container button:hover {
  background: #ddd;
}

/* Make Responsive */
@media screen and (max-width: 1200px) {
  .login-container {
    width: 60%;
    height: auto;
    font-size: 1.8vh;
  }
  .brand img {
    max-width: 20vh;
    height: auto;
  }
  .login-container input {
    font-size: 1.3vh;
  }
  .login-container button {
    font-size: 1.4vh;
  }
  .login-container input {
    font-size: 1.4vh;
  }
  .messages {
    font-size: 1.4vh;
  }
}
/* Remove all default borders from nav-tabs */
.nav-tabs.custom-tabs {
  border-bottom: none;
}

.nav-tabs.custom-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding-bottom: 8px;
}

/* Underline only on active tab */
.nav-tabs.custom-tabs .nav-link.active {
  border-bottom: 2px solid #1a1a1a; /* Bootstrap primary color */
  color: #0f0f0f;
  font-weight: bold;
  background-color: transparent;
}

.empty-state {
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: #6c757d;
}

.empty-state i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fee-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.border-dashed {
  border-style: dashed !important;
}

.view-mode .js-edit-only {
  display: none !important;
}

.fee-card {
  font-size: 1rem; /* default for the card */
  line-height: 1.4;
}

.fee-card .card-title {
  font-size: 1.25rem; /* headings larger */
  font-weight: 600;
}

.fee-card .card-text {
  font-size: 1rem; /* body text slightly bigger */
  color: #333;
}

.fee-card .small {
  font-size: 0.8rem !important; /* make "small" text still readable */
}

/* Multi-select selected items (tags) */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #ffffff !important; /* White background */
  color: #000000 !important; /* Black text */
  border: 1px solid #ccc !important; /* Light border for separation */
}

/* Remove the blue hover background */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: transparent !important;
  color: red !important; /* Keep the remove X visible */
}

/* Input field inside multi select */
.select2-container--default .select2-selection--multiple {
  background-color: white !important;
}

/* cosmetic: read-only look + no “x” on pills */
.select2-container.s2-readonly .select2-selection {
  background-color: #c0c3c6;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: block !important;
}