* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 300ms;
  color: #000;
}

button {
  cursor: pointer;
  transition: all 300ms;
}

button[disabled] {
  cursor: not-allowed;
}

body {
  font-family: "Instrument Sans", serif;
}

.fb-active-loader {
    height: 100vh;
    overflow: hidden;
}
.fb-main-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 100vh;
    width: 100%;
        position: fixed;
    z-index: 99;
}

.LoaderBalls {
  width: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.LoaderBalls__item {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #012D2C;
}

.LoaderBalls__item:nth-child(1) {
  animation: bouncing 0.4s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95);
}

.LoaderBalls__item:nth-child(2) {
  animation: bouncing 0.4s 0.1s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}

.LoaderBalls__item:nth-child(3) {
  animation: bouncing 0.4s 0.2s alternate infinite cubic-bezier(0.6, 0.05, 0.15, 0.95) backwards;
}

@keyframes bouncing {
  0% {
    transform: translate3d(0, 10px, 0) scale(1.2, 0.85);
  }
  100% {
    transform: translate3d(0, -20px, 0) scale(0.9, 1.1);
  }
}

.fb-container {
  max-width: 1310px;
  padding: 0px 15px;
  margin: 0 auto;
}

/* header css */
.fb-header {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  top: 0;
}

.fb-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  height: 90px;
}

.fb-header-navigation>ul,
.fd-header-action>ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fb-header-navigation>ul>li>a {
  font-size: 16px;
  line-height: 20px;
  padding: 5px 15px;
  border-radius: 999px;
  font-weight: 500;
}

.fb-header-navigation>ul>li>a:hover {
  background: rgb(255 255 255 / 40%);
}

.fb-header-navigation ul a.fb-active {
  background: #fff;
}

.fb-btn {
  font-size: 16px;
  background: #012D2C;
  color: #fff;
  font-weight: 600;
  padding: 13px 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 300ms;
          box-shadow: none;
        outline: none !important;
        border: 0;
        white-space: nowrap;
}

.fb-btn:hover {
  background: rgb(2 90 88);
}

.fb-filter-banner {
  background: url(../images/banner.png);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 154px;
  padding-bottom: 50px;
}

.fb-h1 {
  font-size: 50px;
  line-height: 61px;
  color: #012D2C;
  font-weight: 700;
}

.fb-section-header p {
  font-size: 20px;
  line-height: 24px;
  color: rgb(1 45 44 / 90%);
  margin-top: 5px;
}

.fb-filter-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  margin-top: 32px;
}

.fb-radio-switch {
  display: flex;
  gap: 5px;
  text-align: center;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(45deg, rgb(1 45 44 / 10%), rgb(3 147 144 / 10%));
  width: fit-content;
}


.fb-radio-check input[type="radio"] {
  display: none;
}

.fb-form-check-label {
  position: relative;
  font-size: 14px;
  color: rgb(0 0 0 / 40%);
  line-height: 17px;
  display: flex;
  padding: 9px 12px;
  cursor: pointer;
}

input#oneWay[type="radio"]+.fb-form-check-label:before {
  content: "";
  position: absolute;
  left: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 10px);
  height: 100%;
  border-radius: 25px;
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  transition: all 300ms;
}

input#oneWay[type="radio"]:checked+.fb-form-check-label:before {
  left: 0;
  width: 100%;
}

.fb-form-check-label span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  border: 1px solid rgb(0 0 0 / 40%);
  background: none;
}

.fb-radio-check input[type="radio"]:checked+.fb-form-check-label span {
  background-color: #ffff;
  border-color: #012d2c;
  border-width: 5px;
}

.fb-travel-message .fb-message {
  display: flex;
  align-items: center;
  background: #012d2c;
  padding: 8px 10px 8px 6px;
  border-radius: 50px;
  gap: 5px;
}

.fb-radio-check input[type="radio"]:checked+.fb-form-check-label p {
  color: #012D2C;
  font-weight: 600;
}

label.fb-form-check-label p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 17px;
  color: rgb(0 0 0 / 40%);
  font-weight: 500;
}

.fb-travel-message .fb-message {
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, rgb(1 45 44 / 10%), rgb(3 147 144 / 10%));
  padding: 8px 10px 8px 6px;
  border-radius: 50px;
  gap: 5px;
}

.fb-message p {
  font-size: 12px;
  line-height: 15px;
  color: #012d2c;
  font-weight: 500;
}

.fb-filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.return-label {
  font-size: 14px;
  line-height: 17px;
  color: rgb(0 0 0 / 60%);
  font-weight: 100;
}

.fb-filter-items {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
}

.fb-filter-item {
  padding: 15px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 10px;
  position: relative;
  transition: all 300ms;
}

.fb-filter-date .fb-filter-item {
  min-width: 175px;
  max-width: 175px;
}

.fb-filter-item label:first-child {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  padding: 0px 5px;
  position: absolute;
  top: -10px;
  left: 20px;
  background: #fff;
}

.fb-filter-input input {
  width: 100%;
}

.fb-filter-input input,
.fb-filter-date-input h3 {
  font-size: 28px;
  line-height: 34px;
  color: #000;
  font-weight: 700;
}

.fb-filter-input input::placeholder {
  color: #000;
}

.fb-filter-date-input input {
  font-size: 16px;
  line-height: 20px !important;
  color: rgb(0 0 0 / 70%);
  font-weight: 400;
}

.fb-filter-input input {
  height: 34px;
  border: none;
  outline: none;
}

.fb-filter-input {
  position: relative;
}

.fb-filter-input img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fb-filter-item span,
.fb-filter-item label:last-child {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.fb-swipe-btn button {
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: none;
  background: #D9DFDF;
  cursor: pointer;
}

.fb-swipe-btn svg {
  width: 20px;
  height: 20px;
  transition: all 300ms;
}

.fb-swipe-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.fb-filter-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
}

.fb-filter-date-input {
  display: flex !important;
  align-items: center;
  gap: 5px;
  margin-top: 0px !important;
}

.fb-filter-date {
  gap: 0px;
}

.fb-filter-date .fb-filter-item:nth-child(2) {
  border-radius: 0 10px 10px 0;
  border-left: 0px;
}

.fb-filter-date .fb-filter-item:first-child {
  border-radius: 10px 0px 0px 10px;
}

.fb-filter-bottom a.fb-btn img {
  width: 24px;
  height: 24px;
}

.fb-filter-bottom .fb-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  max-width: 165px;
  min-width: 165px;
  width: 100%;
  align-items: center;
  border: none;
}

.fb-filter-bottom .fb-filter-items:first-child .fb-filter-item {
  max-width: 221px;
  min-width: 221px;
  width: 100% !important;
  height: 100%;
}

.fb-filter-bottom .fb-filter-items:first-child .fb-filter-item:first-child {
  padding-right: 25px;
}

.fb-filter-bottom .fb-filter-items:first-child .fb-filter-item:last-child {
  padding-left: 25px;
}

.fb-list-inner-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 12px 0px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.fb-hidden {
  display: none !important;
}

.fb-flights-icon {
  height: 48px;
  min-width: 48px;
  background: rgb(1 45 44 / 10%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border: 1px solid rgb(0 0 0 / 10%);
}

.fb-list-inner-info p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

p.fb-airport-location {
  font-size: 14px;
  line-height: 16px;
  margin-top: 5px;
  color: rgb(0 0 0 / 60%);
}

.fb-filter-dropdown {
  position: absolute;
  background: #fff;
  padding: 15px;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 10px;
  width: 320px;
  z-index: 2;
  left: 0px;
  top: 100%;
  margin-top: 10px;
  height: 220px;
  overflow: auto;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
}

.fb-filter-dropdown h4 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.fb-filter-dropdown::-webkit-scrollbar,
.fb-search-filter::-webkit-scrollbar,
.fb-airlines::-webkit-scrollbar,
.fb-flight-detail-pop::-webkit-scrollbar,
.filterWrapper-inr::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.fb-filter-dropdown::-webkit-scrollbar-thumb,
.fb-search-filter::-webkit-scrollbar-thumb,
.fb-airlines::-webkit-scrollbar-thumb,
.fb-flight-detail-pop::-webkit-scrollbar-thumb,
.filterWrapper-inr::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgb(1 45 44 / 10%);
  background-color: rgb(1 45 44 / 30%);
}

.fb-flight-code span {
  font-size: 12px;
  color: rgb(0 0 0 / 60%);
}

/* date picker css */

.flatpickr-calendar {
  padding: 15px !important;
  border-radius: 10px !important;
  width: fit-content !important;
}

.flatpickr-day {
  color: #000000 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.flatpickr-days .dayContainer {
  justify-content: flex-start !important;
  gap: 4px !important;
}

.dayContainer+.dayContainer {
  box-shadow: -1px 0 0 #e6e6e6 !important;
  padding-left: 10px !important;
}

.flatpickr-weekdays {
  gap: 20px !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 12px !important;
  height: 12px !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  position: inherit !important;
}

.flatpickr-calendar .flatpickr-months {
  padding-bottom: 15px !important;
}

.flatpickr-calendar .flatpickr-weekday {
  font-weight: 100 !important;
  color: rgb(0 0 0 / 80%) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #012d2c !important;
  border-color: #012d2c !important;
  color: #fff !important;
}

.flatpickr-current-month span.cur-month,
.flatpickr-current-month input.cur-year {
  font-weight: 600 !important;
  color: #000 !important;
}

.flatpickr-day.today {
  border-color: #012d2c !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background: rgb(1 45 44 / 10%) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 600 !important;
}

option.flatpickr-monthDropdown-month {
  font-size: 14px !important;
}

/* date picker css end */
.fb-traveller-row .fb-person-label p,
.fb-traveller-class p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.fb-traveller-row .fb-person-label span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 3px;
  color: rgb(0 0 0 / 60%);
}

.fb-traveller-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 10px 0px;
}

.fb-traveller-row .fb-counter button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 16px;
}

.fb-traveller-row .fb-counter {
  display: flex;
  align-items: center;
  gap: 0px;
}

.fb-traveller-row .fb-counter button.active {
  background: #012d2c;
  color: #fff;
}

.fb-traveller-class-selector {
  width: 440px;
  left: -62px !important;
  height: fit-content;
}

.fb-person-label {
  max-width: 100px;
  width: 100%;
}

.fb-class-selector button {
  font-size: 14px;
  padding: 5px 12px;
  line-height: 20px;
  border-radius: 50px;
  border: 1px solid rgb(0 0 0 / 20%);
  background: transparent;
}

.fb-class-selector {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.fb-class-selector button.active,
#fb-owlCarousel .active.fb-filter-item {
  background: rgb(1 45 44 / 100%);
  border-color: rgb(1 45 44 / 100%);
  color: #ffffff;
}

#fb-owlCarousel .fb-item-label {
  width: fit-content;
}

.fb-summary button.fb-btn {
  width: auto;
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
  padding: 10px 22px;
}

.fb-summary {
  padding-top: 15px;
  text-align: right;
  border-top: 1px solid rgb(0 0 0 / 20%);
  margin-top: 20px;
}

.fb-traveller-class {
  margin-top: 8px;
}

.fb-error-message {
  font-size: 12px !important;
  line-height: 16px !important;
  color: #c10000;
  /* background: rgb(193 0 0 / 12%);  */
  padding: 4px 10px;
  position: absolute;
  width: fit-content;
  left: 0px;
  top: 94%;
  border-radius: 4px;
  white-space: nowrap;
}

.fb-filter-date .fb-filter-item {
  height: 100%;
}

/* .fb-filter-item {
  height: 100%;
  min-height: 86px;
} */

/* Flight Listing Page  css*/
li.fb-login-res {
  display: none;
}

.fb-swipe-btn .active svg {
  transform: rotate(-180deg);
}

.fb-listing-banner {
  padding-top: 95px;
  height: fit-content;
  padding-bottom: 0px;
}

.fb-date-filter-slide {
  padding: 20px 85px;
}

.fb-date-filter-slide .fb-filter-item {
  background: #fff;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
}

.fb-date-filter-slide .fb-filter-item .fb-item-label {
  text-align: center;
  margin-top: 5px;
  font-weight: 600;
}

.fb-date-filter-slide .fb-item-date {
  font-weight: 500;
}

.fb-date-filter-slide .fb-day-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

.fb-date-filter-slide .owl-nav {
  width: calc(100% + 170px);
  position: absolute;
  top: 50%;
  margin: 0px !important;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: -85px;
  z-index: -1;
}

.fb-date-filter-slide .owl-nav button {
  width: 65px;
  height: 85px;
  background: #fff !important;
  border-radius: 12px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.owl-nav button span {
  font-size: 0;
  background: url(../images/owl-arrow.svg);
  height: 22px !important;
  width: 11px !important;
  background-size: 11px;
  display: block;
  background-repeat: no-repeat;
}

.owl-nav button.owl-next span {
  transform: rotate(180deg);
}

/* filter css */
.fb-listing-wrapper {
  display: flex;
  gap: 0px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 70px 0px 0;
}

.fb-search-filter {
  max-width: 320px;
  margin-right: 40px;
  width: 100%;
  border-right: 1px solid rgb(0 0 0 / 20%);
}

.filterWrapper-inr {
  position: sticky;
  top: 20px;
  overflow: auto;
  max-height: 100dvh;
  padding: 20px 40px 20px 20px;
}

body.filter-active {
  overflow: hidden;
}

.fb-search-list {
  flex: 1;
  padding-bottom: 50px;
}

.fb-filter-heading h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.fb-filter-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 5px 15px;
  background: none;
  border: 1px solid rgb(0 0 0 / 30%);
  border-radius: 5px;
  transition: all 300ms;
}

.fb-filter-toggle .fb-filter-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.fb-filter-toggle {
  display: none;
}

.fb-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0px;
  background: rgb(0 0 0 / 80%);
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
}

.filter-active .fb-overlay,
.active-menu .fb-overlay {
  opacity: 1;
  visibility: visible;
}

.fb-filter-btn:hover {
  background: rgb(1 45 44 / 20%);
}

.fb-filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.fb-search-item h5,
.fb-searchlist-heading h5 {
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 16px;
}

.fb-searchlist-heading h5 {
  padding-bottom: 0px;
}

.fb-form-group.price-high-filter {
    width: 100%;
    max-width: 160px;
}

.fb-search-item {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  padding: 20px 0px;
}

label.fb-filter-customchek {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fb-filter-customchek input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0;
}

.fb-stops {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fb-checkbox-label {
  font-weight: 500;
}

.fb-make-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:5px;
}

.fb-airlines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 150px;
  overflow: auto;
  min-height: 88px;
  padding-right: 8px;
}

.fb-airline-price {
  font-size: 14px;
  font-weight: 500;
  color: rgb(0 0 0 / 70%);
  white-space: nowrap;
}

.icon12 {
  height: 18px !important;
  width: 18px !important;
  display: block;
  background-repeat: no-repeat;
  border-radius: 4px;
  background-size: cover;
  min-width: 18px;
}

.fb-airlines .fb-checkbox-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.fb-time-options {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.fb-time-options img {
  width: 35px;
  height: 35px;
}

.fb-time-options .time-option {
  padding: 12px 6px;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 5px;
  flex: 1;
}

.fb-filter-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: #fff;
  display: none;
  height: 32px;
  width: 32px;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}

.fb-time-options .time-option p {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.fb-time-options .time-option {
  padding: 12px 6px;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 5px;
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.fb-time-options .time-option.active {
  border-color: #000;
  background: rgb(1 45 44 / 20%);
}

.fb-flightcard-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 300ms;
  gap:5px;
}

.fb-flight-icon img {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  object-fit: cover;
}

.fb-flightcard-main .fb-flight-icon img {
  width: auto;
}

.fb-flight-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-flight-name {
  font-weight: 600;
}

.fb-airport-part {
  display: flex;
  gap: 32px;
  align-items: center;
}

.fb-airport-name h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: rgb(0 0 0 / 80%);
}

.fb-airport-name h6 {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  color: rgb(0 0 0 / 80%);
  margin-top: 5px;
}

.fb-airport-name {
  max-width: 175px;
  text-align: left;
}

.fb-airport-progress .fb-duration p,
.fb-flight-stop {
  font-size: 14px;
  line-height: 20px;
  color: rgb(0 0 0 / 60%);
}

.fb-airport-progress {
  max-width: 80px;
  width: 100%;
  text-align: center;
}

.fb-duration-arrow {
  width: 100%;
  display: block;
  height: 1.5px;
  background: #D9D9D9;
  margin: 5px 0px;
  position: relative;
}

.fb-duration-arrow:after {
  content: '';
  width: 7px;
  position: absolute;
  height: 7px;
  background: #D9D9D9;
  left: 0px;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.fb-duration-arrow:before {
  content: '';
  width: 7px;
  position: absolute;
  height: 7px;
  right: 0px;
  border-top: 1.5px solid #D9D9D9;
  border-right: 1.5px solid #D9D9D9;
  transform: rotate(45deg);
  top: -3.5px;
}

.fb-searchlist-heading .fb-list-show {
  font-weight: 500;
}

.fb-searchlist-heading {
  border-bottom: none;
}

.fb-price-upto p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: rgb(0 0 0 / 50%);
  margin-bottom: 10px;
}

.fb-price-wrapper input {
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 20px;
  width: 41px;
}

.fb-price-wrapper div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}

.fb-price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb-pricerange-slider input {
  width: 100%;
}

/* Round Trip page  */

.fb-roundtrip-wrapper {
  display: flex;
  gap: 15px;
  position: relative;
}

.fb-roundtrip-wrapper .fb-flightcard-wrapper {
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fb-roundtrip-wrapper .fb-flight-img {
  width: 100%;
  margin-bottom: 12px;
}

.fb-roundtrip-wrapper .fb-flight-icon img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.fb-roundtrip-wrapper .fb-btn {
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 92px;
}

.fb-roundtrip-wrapper .fb-airport-name h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.fb-roundtrip-wrapper .fb-duration-arrow {
  margin: 3px 0px;
}

.fb-roundtrip-wrapper .fb-airport-progress .fb-duration p,
.fb-roundtrip-wrapper .fb-flight-stop {
  font-size: 12px;
  line-height: 16px;
  color: rgb(0 0 0 / 60%);
}

.fb-airport-progress .fb-duration p {
  color: rgb(0 0 0 / 80%);
  font-weight: 500;
}

.fb-roundtrip-wrapper .fb-airport-part {
  gap: 24px;
}

.fb-flight-card.border-selected .fb-flightcard-wrapper {
  background: linear-gradient(45deg, rgb(1 45 44 / 10%), rgb(3 147 144 / 10%));
}

.fb-continue-booking {
position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 12px 18px rgb(0 0 0 / 5%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-continue-booking .fb-btn {
  padding: 16px 31px;
}

.fb-roundtrip-wrapper .fb-airport-progress {
  width: 64px;
}

.fb-list-item {
  cursor: pointer;
}

/* login page css */
.fb-login-banner {
  height: 100vh;
}

.fb-login-form {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin: 0 auto;
}

.fb-login-wrapper input {
  font-size: 14px;
  line-height: 20px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 8px;
  width: 100%;
  margin-top: 5px;
}

.fb-login-wrapper .fb-btn {
  border: none;
  font-weight: 500;
  margin-top: 24px;
}

.fb-login-wrapper label {
  font-size: 14px;
  font-weight: 500;
}

.fb-login-form h2 {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 38px;
}

.fb-login-form .fb-error-message {
  top: inherit;
  width: fit-content;
  right: 20px;
  bottom: 20px;
  font-size: 14px !important;
  padding: 12px 20px;
}

.fb-logout {
  background: rgb(202 0 7 / 15%) !important;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* profile page css */
.fb-profile-banner .fb-h1 {
  text-align: center;
}

.fb-profile-banner {
  height: fit-content;
  padding-bottom: 80px;
}

.fb-user-profile-wrapper {
  display: flex;
  gap: 50px;
}

.fb-user-details {
  max-width: 280px;
  width: 100%;
}

.fb-profile-cart {
  padding: 15px;
  border-radius: 12px;
  /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); */
  background: #fff;
  border: 1px solid rgb(0, 0, 0, 0.1);
  position: sticky;
  top: 30px;
}

.fb-profile-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(0deg, #EDE0F1, #C1D2F0);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fb-profile-cart h2 {
  margin-top: 10px;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}

.fb-profile-img span {
  width: 80px;
  height: 80px;
  background: rgb(255 255 255);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #000;
  border: 1px solid rgb(0, 0, 0, 0.1);
}

.fb-sm-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
}

.fb-chips+.fb-chips {
  margin-top: 5px;
}

button#download-pdf {
  border: none;
}

.fb-sm-wrapper img {
  width: 20px;
  height: 20px;
}

.fb-user-history {
  flex: 1;
}

.fb-history-wrapper {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.fb-history-wrapper th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

.fb-history-wrapper td {
  padding: 15px;
}

/* .fb-history-wrapper tr {
  border: 1px solid rgb(0 0 0 / 20%);
} */

.fb-user-info-wrapper h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 20px;
}

.fb-history-wrapper .fb-btn {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 5px;
}

.fb-booking-details h3 {
  font-size: 20px;
  padding-bottom: 12px;
}

.fb-chips {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
}

.fb-positive {
  background: rgb(0 128 0 / 20%);
  color: rgb(0 128 0 / 100%);
}

.fb-negavite {
  background: rgb(181 0 0 / 20%);
  color: rgb(181 0 0 / 100%);
}


/* Price range slider */

.fb-range {
  background: rgb(0 0 0 / 20%);
  height: 4px;
  max-width: 99%;
  width: 100%;
  position: relative;
  border: none;
  border-radius: 20px;
  margin: 20px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fb-range input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 18px;
}

.fb-range input[type=range]:focus {
  outline: none;
}

.fb-range input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
}

.fb-range input[type=range]::-moz-range-track {
  background: transparent;
}

.fb-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 2px 20px rgb(1 45 44 / 40%);
  cursor: pointer;
  border: none;
}

.fb-range input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: none;
}

.fb-range input[type=range]::-ms-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  border: none;
}

.fb-range input[type=range]::-ms-fill-lower {
  background: #423089;
}

.fb-range input[type=range]::-ms-fill-upper {
  background: #e2e2ea;
}

.fb-range input[type=range]::-ms-track {
  color: transparent;
  border: 0 solid transparent;
  background: transparent;
}

.fb-range input[type=range]::-ms-tooltip {
  display: none;
}


/* body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10%;
  flex-direction: column;
} */
.fb-filter-customchek .commonCheckbox {
  height: 18px;
  position: relative;
}

.fb-filter-customchek span.box {
  /* background-color: #012d2c !important; */
  border-color: rgb(0 0 0 / 20%) !important;
  width: 18px;
  border: 1px solid;
  height: 18px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9999;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
}

.fb-filter-customchek input[type="checkbox"]:checked+span.box {
  border-color: #012d2c !important;
  background-color: #012d2c !important;
}

.fb-filter-customchek span.check {
  width: 10px;
  height: 8px;
  display: inline-block;
  background: url(../images/checkbox-tick.svg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}

.fb-filter-customchek input[type="checkbox"]:checked+span.box span.check {
  opacity: 1;
}

.fb-loader {
  text-align: center;
}

.fb-roundtrip-wrapper>div {
  flex: 1;
}

.fb-roundtrip-wrapper .fb-flight-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.fb-roundtrip-wrapper .fb-flight-code span {
  font-size: 12px;
  color: rgb(0 0 0 / 70%);
  padding: 4px 10px;
  background: rgb(0 0 0 / 10%);
  border-radius: 4px;
}

.fb-error-alert {
  position: fixed;
  right: 20px;
  bottom: 10px;
  color: #D8000C;
  border-radius: 8px;
  background: url(../images/alert-circle.svg) no-repeat 15px center / 20px;
  border: 1px solid #f5c6cb;
  margin: 10px 0px;
  padding: 15px 15px 15px 40px;
  z-index: 999999;
  max-width: 600px;
  box-shadow: 0 5px 10px rgb(216 0 12 / 10%);
  background-color: #f8d7da;
  font-size: 15px;
}

.fb-success-alert {
  position: fixed;
  right: 20px;
  bottom: 10px;
  background: url(../images/check-circle.svg) no-repeat 15px center / 20px;
  border-radius: 8px;
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 15px 15px 40px;
  z-index: 999999;
  max-width: 600px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.fb-error-alert:empty,
.fb-success-alert:empty {
  display: none;
}

li.head-menu {
  display: none;
}

.toggle span {
  width: 24px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  box-shadow: 0 7px 0 #000, 0 -7px 0 #000;
  transition: 0.5s;
}

.active-menu .toggle span {
  transform: rotate(45deg);
  box-shadow: none;
}

.active-menu .toggle span::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 5px;
  position: absolute;
  transform: rotate(90deg);
  background: #000;
}

.list-view .fb-list-inner-info {
  border: none;
  padding: 6px 12px;
}

ul.list-view {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.list-view .fb-list-inner-info {
  border: 1px solid rgb(0 0 0 / 20%);
  padding: 6px 12px;
  border-radius: 6px;
}

.list-view .fb-list-inner-info p {
  font-size: 14px;
  color: rgb(0 0 0 / 70%);
}

.fb-custom-btn {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin: 40px 0px 0;
}

.fb-custom-btn .fb-btn {
  padding: 15px 24px;
  border: none;
}

.fb-custom-btn .fb-btn:focus {
  color: #fff;
  background-color: rgb(1 45 44);
  box-shadow: 0 0 0 .2rem rgba(1, 45, 44, .5);
}

.fb-history-main {
  width: 100%;
  overflow: auto;
}

.fb-profile-img h4 {
  padding-bottom: 0px !important;
}

.fb-menu-toggle {
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255 255 255 / 40%);
  border-radius: 12px;
}

.active-menu .fb-menu-toggle {
  background: rgb(255 255 255 / 100%);
  position: relative;
  /* z-index: 9; */
}

.fb-menu-toggle img {
  transition: all 300ms;
}

.fb-menu-toggle .fb-closemenu {
  position: absolute;
  opacity: 0;
}

.active-menu .fb-menubar {
  opacity: 0;
}

.active-menu .fb-closemenu {
  opacity: 1;
}

.fb-filter-item:has(input:focus) {
  border-color: #000;
}

.fb-error {
  font-size: 12px;
  line-height: 16px;
  color: #c10000;
  margin-top: 5px;
}

.fb-success {
  font-size: 12px;
  line-height: 16px;
  color: #4F8A10;
  margin-top: 5px;
}

.custom-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.custom-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

.custom-close-button {
  float: right;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  line-height: 18px;
  color: #fff;
}

.custom-close-button img {
  filter: invert(1);
}

.custom-show-modal {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.fb-login-wrapper.otp-form input {
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  text-align: center;
  line-height: 40px;
  box-shadow: 0 0 5px #a4a4a4;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  margin-right: 5px;
}

.fb-login-wrapper.otp-form input:focus {
  border-bottom: 2px solid #777;
}

/* .fb-search-filter + div + .fb-search-list {
  border-left: 1px solid rgb(0 0 0 / 20%);
  padding: 0;
} */
.fb-custom-section {
  padding: 90px 0px;
}

.fb-heaing-wrapper {
  margin-bottom: 20px;
}

.fb-promo-offers .fb-promo-item img {
  border-radius: 12px;
  width: calc(100% + 4px);
  margin-left: -2px;
  transition: 300ms all;
}

.fb-promo-offers .owl-item {
  padding: 0px 10px 10px 10px;
  display: flex;
  flex: 1 0 auto;
}

.fb-promo-item {
  border-radius: 12px;
  border: 1px solid rgb(0 0 0 / 15%);
  transition: all 300ms;
  background: #fff;
  overflow: hidden;
  width: 100%;
}

.fb-promo-item:hover {
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
}

.fb-promo-item a:hover .fb-promo-content h5 {
  color: #012d2c;
}

.fb-promo-item a:hover img {
  transform: scale(1.05);
}

.fb-promo-content {
  padding: 16px 12px;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.fb-h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.fb-promo-content .fb-h5 {
  margin-top: 5px;
  margin-bottom: 2px;
  transition: 300ms all;
}

.fb-promo-label,
.fb-small {
  font-size: 14px;
  line-height: 17px;
  color: #000;
}

.fb-promo-content .fb-small {
  color: rgb(0 0 0 / 70%);
}

.fb-promo-wrapper .owl-nav button,
.fb-recommendations-items .owl-nav button {
  width: 44px;
  height: 44px;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 10px rgb(0 0 0 / 25%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0px !important;
}

.fb-promo-wrapper .owl-nav button,
.fb-recommendations-items .owl-nav button {
  top: 28%;
  transform: translateY(-28%);
  position: absolute;
}

.fb-promo-wrapper .owl-nav button.owl-prev,
.fb-recommendations-items .owl-nav button.owl-prev {
  left: 0;
}

.fb-promo-wrapper .owl-nav button.owl-next,
.fb-recommendations-items .owl-nav button.owl-next {
  right: 0;
}

.fb-promo-wrapper .owl-nav button span,
.fb-recommendations-items .owl-nav button span {
  height: 16px !important;
  width: 8px !important;
  background-size: 8px;
}

.fb-promo-offers {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.fb-promo-offers .owl-stage-outer {
  overflow: unset;
}

.fb-Promo {
  overflow: hidden;
}

.fb-promo-wrapper button.disabled,
.fb-recommendations-items button.disabled {
  opacity: 0 !important;
}

.fb-limited-time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.fb-limited-time img {
  width: 14px !important;
  height: 14px;
}

.fb-promo-content .fb-limited-time {
  color: #FF1515 !important;
  font-weight: 500;
}

/* Flight Recommendations */

.fb-flight-recommendations {
  background: #012D2C;
  color: #fff;
}

.fb-recommendations-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.fb-recommendations-outer {
  flex: 1;
  background: #001F1E;
  height: 410px;
  border-radius: 132px;
  padding: 20px;
}

.fb-swipe-btn svg path {
  fill: #000;
}

.fb-recommendations-item {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 114px;
  padding: 4px;
  background: linear-gradient(to bottom, #ffffff, #005F5D);
  overflow: hidden;
}

.fb-recommendations-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 108px;
}

.fb-recommendations-content:after {
  content: '__';
  position: absolute;
  bottom: 86%;
  left: 0px;
  width: 100%;
  height: 98%;
  background: rgb(255 255 255 / 20%);
  border-radius: 109px;
  backdrop-filter: blur(28px);
  transition: all 300ms;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 18px;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -4px;
}

.fb-city, .fb-h4.fb-h4-price {
  transform: translateY(40px);
  transition: 300ms all;
}

.fb-recommendations-outer:hover .fb-city, .fb-recommendations-outer:hover .fb-h4.fb-h4-price {
  transform: translateY(0px);
}

img.fb-place-image {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 108px;
}

.fb-img-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 60%);
  z-index: -1;
  border-radius: 110px;
}

.fb-recommendations-content .fb-btn,
.fb-recommendations-content p {
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
  transform: translateY(20px);
}

.fb-recommendations-outer:hover .fb-recommendations-content .fb-btn,
.fb-recommendations-outer:hover .fb-recommendations-content p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.fb-recommendations-outer:hover .fb-recommendations-content:after {
  bottom: 0%;
  left: 0px;
}

.fb-recommendations-content p {
  font-size: 14px;
  line-height: 17px;
  color: rgb(255 255 255 / 90%);
}

.fb-h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.fb-h4.fb-h4-price {
  font-size: 32px;
}

.fb-h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}





.fb-support-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 100px;
}

.service-box .fb-h4 {
  margin: 16px 0px;
}

.fb-support .service-box div {
  border-radius: 12px;
  background: rgb(1 45 44 / 5%);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fb-support .service-box {
  max-width: 276px;
}

/* Service Section */
.fb-services {
  background: rgb(1 45 44 / 5%);
}

.fb-services-wrapper {
  gap: 20px;
}

.fb-services .service-box {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgb(0 0 0 / 15%);
  flex: 1;
}

.fb-services .service-box .fb-h4 {
  margin: 16px 0px 12px 0px;
}

.fb-recommendations-items .owl-nav button {
  top: 50%;
}

/* History page */
.fb-download-pdf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.fb-history-wrapper {
  border-collapse: collapse;
  border: none;
}

.fb-table-wrap {
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 12px;
  overflow: hidden;
}

.fb-history-wrapper thead {
  background: rgb(1 45 44 / 8%);
}

.fb-booking-details {
  margin-bottom: 24px;
}

tr+tr {
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.fb-table-wrap .fb-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-table-wrap .fb-time span {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-size: 13px;
  align-items: center;
}

.fb-table-wrap .fb-time span img {
  width: 14px;
  opacity: 0.8;
}

.fb-user-history .fb-h2,
.fb-user-details .fb-h2 {
  margin-bottom: 20px;
}

.fb-logout-wrap {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(0 0 0 / 20%);
}


.fb-logout-wrap .fb-btn img {
  filter: invert(1);
}

/* Details Page css */
.fb-flight-details-wrapper .fb-flight-right {
  max-width: 320px;
  width: 100%;
}

.fb-flight-details-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.fb-flight-details-wrapper .fb-flight-left {
  flex: 1;
}

.fb-flight-details-wrapper .fb-h4,
.fb-passener-wrapper .fb-h4 {
  margin-bottom: 12px;
}

.fb-flightcard-main .fb-flight-icon span {
  font-size: 12px;
  color: rgb(0 0 0 / 70%);
}

.fb-fare-rule {
  margin-top: 25px;
}

.fb-fare-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.fb-fare-wrapper,
.fb-flightcard-main,
.fb-passenger-main,
.fb-fare-rule {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgb(0 0 0 / 8%);
}

.fb-passenger-main+.fb-passenger-main {
  margin-top: 25px;
}

.fb-fare-rule+.fb-fare-rule {
  margin-top: 20px;
}

.fb-flightcard-main .fb-flightcard-wrapper {
  margin: 0px;
}

.fb-form-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.fb-form-group input,
.fb-form-group select {
    background-color: #fff;
  padding: 12px;
  outline: none;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 8px;
  height: 40px;
  color: #000;
}

.fb-form-group {
  max-width: calc(100% / 4 - 15px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.fb-form-group .select2-container {
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 8px;
  height: 40px;
  width: 100% !important;
}

.fb-form-group .select2-container span {
  height: 100%;
}

.fb-form-group label {
  font-size: 14px;
  font-weight: 500;
}

.fb-note {
  padding: 12px;
  background: rgb(1 45 44 / 8%);
  color: #012d2c;
  border-radius: 8px;
  margin-bottom: 15px;
}

.fb-note .fb-h6 {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 24px;
}

.fb-card {
  margin-top: 24px;
}

.fb-modal-header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  padding: 15px;
}

.fb-modal-header button.close {
  background: none;
  border: none;
}

.fb-h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.fb-details-pop {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: calc(100% / 3 - 14px);
  width: 100%;
}

.fb-details-pop .fb-key-title {
  font-weight: 600;
}

.fb-details-pop p {
  font-size: 12px;
}

.fb-flex-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.fb-flex-row .fb-title {
  max-width: 100%;
  width: 100%;
}

.fb-details-mash {
  padding: 15px;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 12px;
}

.fb-title .fb-h4 {
  margin-bottom: 15px;
}

.fb-departure-head {
  padding-bottom: 30px;
}


/* booking page css */
.fb-form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fb-form-group select {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" stroke="black"%3E%3Cpath d="M4 6L8 10L12 6"%3E%3C/path%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 20px;
  min-width: 90px;
  padding: 0px 8px !important;
}

.fb-selected-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb-selected-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-selected-details p:first-child {
  font-size: 14px;
  color: rgb(0 0 0 / 70%);
  font-weight: 500;
}

.fb-departure-date {
  font-size: 12px;
  color: rgb(0 0 0 / 50%);
  font-weight: 500;
}

.fb-secoundary-btn {
  padding: 10px 16px;
  border: 1px solid #012d2c;
  border-radius: 8px;
  color: #012d2c;
  font-weight: 500;
  font-size: 14px;
}

.fb-secoundary-btn:hover {
  color: #fff;
  background-color: #012d2c;
}

.fb-flightcard-main .fb-flightcard-wrapper {
  padding: 0px;
  border: none;
  align-items: inherit;
  margin-top: 32px;
}

.fb-airports-wrapper {
  max-width: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fb-flightcard-main .fb-airport-box p,
.fb-baggage-box p {
  font-size: 12px;
  color: rgb(0 0 0 / 85%);
  line-height: 16px;
}

.fb-flightcard-main .fb-duration,
.fb-baggage-box {
  display: flex;
  gap: 4px;
}

.fb-flightcard-main .fb-duration img,
.fb-baggage-box img {
  width: 13px;
  opacity: 0.5;
}

.fb-baggage-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fb-flightcard-main .fb-flight-icon {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}

.fb-flight-time {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 32px;
  border-left: 1px solid rgb(0 0 0 / 20%);
  position: relative;
}

.fb-flight-time:after {
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: 10px;
  background: #fff;
  position: absolute;
  top: 0;
  left: -4px;
}

.fb-flight-time:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: -5px;
}

.fb-airport-box h4,
.fb-flightcard-main .fb-airport-name h4 {
  margin-bottom: 6px;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.fb-departure-title {
  display: flex;
  gap: 8px;
}

.fb-departure-title .fb-h5 {
  font-weight: 600;
}

.fb-flightcard-main .fb-flightcard-wrapper:hover {
  background: #fff;
}

.fb-flightcard-main .fb-flight-img {
  max-width: 100px;
  width: 100%;
}

.fb-total-box {
  margin: 0px;
  padding-top: 15px;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.fb-non {
  opacity: 0.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  right: 6px;
}

.fb-form-group .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: none;
  border-radius: 8px;
}

.fb-form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000;
  line-height: 36px;
  font-size: 14px;
}

.fb-preview-model .custom-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 650px;
  width: 92%;
  height: 82%;
  padding-bottom: 12px;
}

.fb-preview-model .fb-flightcard-main {
  border: 1px solid rgb(0 0 0 / 20%);
  box-shadow: none;
  padding: 15px;
}

.fb-preview-model .fb-airports-wrapper {
  max-width: 180px;
}

.fb-preview-model .fb-flight-time {
  max-width: 95px;
  width: 100%;
}

.fb-preview-model .fb-flight-detail-pop {
  max-height: calc(100% - 53px);
  overflow: auto;
  padding: 15px 15px 3px 15px;
}

.fb-flight-detail-pop .fb-h5 {
  padding-bottom: 12px;
  font-size: 18px;
}

.fb-flight-detail-pop .fb-h4 {
  font-size: 16px;
}

.fb-details-mash+.fb-details-mash {
  margin-top: 20px;
}

.fb-preview-model div#flight-detail {
  margin-bottom: 20px;
}

.fb-preview-model .fb-departure-title .fb-h5 {
  padding: 0px !important;
  font-size: 16px;
}

.fb-preview-model .fb-flightcard-main .fb-flight-img {
  max-width: 60px;
}

.fb-preview-model .fb-flight-time {
  gap: 24px;
  padding-left: 20px;
}

.fb-preview-model .fb-secoundary-btn {
  padding: 8px 10px;
  font-size: 12px;
}

.fb-preview-model .fb-flightcard-main .fb-airport-box p,
.fb-preview-model .fb-baggage-box p {
  font-size: 11px;
  line-height: 15px;
}

.fb-preview-model .fb-baggage-details {
  gap: 4px;
}

.fb-total-box p {
  font-weight: 600;
}

.fb-fare-rule li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 6px;
}

.fb-fare-rule .fb-h4 {
  padding-bottom: 10px;
}

.fb-booking-box .fb-btn {
  width: 100%;
  margin-top: 12px;
  padding: 15px 24px;
  border: none;
  border-radius: 8px;
}

.fb-loading-modal .custom-modal-content {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}

.fb-loading-modal .fb-h5 {
  padding-bottom: 12px;
}

/* 07-01 */
.fb-loading-modal .fb-modal-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fb-dropdown {
  position: relative;
}

.fb-dropdown-content {
  position: absolute;
  flex-direction: column;
  display: flex;
  align-items: self-start;
  background: #fff;
  border-radius: 10px;
  right: 0;
  gap: 0;
  transform: translateY(30px);
  transition: 300ms all;
  visibility: hidden;
  opacity: 0;
  margin-top: 5px;
  min-width: 140px;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  z-index: 91;
}

/* .fb-dropdown-content:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  display: block;
  transform: rotate(45deg) translateY(-50%);
} */

.fb-dropdown:hover .fb-dropdown-content {
  opacity: 1;
  visibility: inherit;
  transform: translate(0);
}

.fb-dropdown-content li+li {
  border-top: 1px solid rgb(0 0 0 / 10%);
  width: 100%;
}

.fb-dropdown .fb-btn {
  padding: 12px;
}

.fb-dropdown-content a,
.fb-dropdown-content p {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  white-space: nowrap;
}

.fb-login.fb-dropdown .fb-dropdown-content a,
.fb-login.fb-dropdown .fb-dropdown-content p {
  font-size: 13px;
}

.fb-dropdown-content a:hover {
  background: rgb(1 45 44 / 6%);
}

.fb-dropdown-content li img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.fb-login.fb-dropdown>a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-user-icon {
  font-size: 18px;
  background: #012D2C;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 45px;
  height: 45px;
}

.fb-dropdown-content li {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.fb-dropdown-content li:first-child {
  border-radius: 10px 10px 0 0;
}

.fb-dropdown-content li:last-child {
  border-radius: 0 0 10px 10px;
}

.fb-btn.fb-button--loading {
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.fb-button--loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
  position: absolute;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.border-selected .fb-btn {
  font-size: 0 !important;
  transition: none;
  gap: 0;
}

.border-selected .fb-btn:after {
  content: "Selected";
  font-size: 16px;
}

.fb-notfound-flight .fb-flightcard-wrapper {
  justify-content: start;
  gap: 25px;
  background: linear-gradient(45deg, rgb(1 45 44 / 10%), rgb(3 147 144 / 10%));
  cursor: default;
}

.fb-notfound-flight .fb-flightcard-wrapper h3 {
  font-size: 28px;
}

.fb-search-item:last-child {
  border-bottom: 0;
}

.fb-flightcard-main+.fb-flightcard-main {
  margin-top: 20px;
}

.fb-promo-items .owl-stage {
  display: flex;
}

/* / skeleton css / */
.skeleton-text {
  width: 100%;
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-box .skeleton-text {
  width: 50%;
}

.skeleton-text-box {
  width: 100%;
  height: 160px;
  background: #e0e0e0;
  border-radius: 12px;
  animation: shimmer 1.5s infinite linear;
  margin-bottom: 25px;
}

.skeleton-flight-card {
  width: 100%;
  height: 120px;
  background: #e0e0e0;
  border-radius: 12px;
  animation: shimmer 1.5s infinite linear;
  margin-bottom: 20px;
}

.skeleton-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.skeleton-heading .skeleton-text {
  width: 30%;
  height: 28px;
}

.skeleton-box .skeleton-text {
  margin-bottom: 12px;
}

.fb-skeleton-filter {
  padding-right: 40px;
}

.fb-fare-details {
  position: sticky;
  top: 30px;
}

@keyframes shimmer {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}

.skeleton-image,
.skeleton-text,
.skeleton-text-box,
.skeleton-flight-card {
  background: linear-gradient(90deg,
      #e0e0e0 25%,
      #f5f5f5 50%,
      #e0e0e0 75%);
  background-size: 200% 100%;
}

.fb-user-profile,
.fb-booking-information, .fb-details-page {
  background: rgb(1 45 44 / 5%);
  margin-top: 91px;
  padding: 0 0 70px;
  min-height: calc(100dvh - 91px);
}

.fb-user-profile > .fb-container,
.fb-booking-information> .fb-container, .fb-details-page> .fb-container {
  padding: 70px 15px 0;
}

.my-trip-price-box {
  text-align: right;
}

.my-trip-price-box+.my-trip-price-box {
  margin-top: 20px;
}

.my-trip-price-box p {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  font-size: 14px;
  color: rgb(0 0 0 / 85%);
  line-height: 20px;
}

.fb-sm-wrapper>a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  padding: 5px 0;
}

.fb-sm-wrapper p {
  word-break: break-all;
}

.fb-booking-details-wrap {
  display: flex;
  gap: 20px;
}

.fb-booking-details-wrap .fb-booking-details {
  flex: 1;
}

.fb-booking-details-wrap .fb-booking-details .fb-flex-row {
  flex-direction: column;
}

.fb-booking-details-wrap .fb-booking-details .fb-flex-row .fb-details-pop {
  flex-direction: row;
  width: 100%;
  max-width: 100%;
}

.fb-booking-details-wrap .fb-booking-details .fb-flex-row .fb-details-pop p {
  flex: 1;
}

.fb-booking-information .fb-details-mash, .fb-user-profile-detail .fb-details-mash {
  border: 0;
  background: #fff;
}

.fb-download-pdf h2.fb-h2 {
  margin-bottom: 0;
}

.fb-passenger-info-details .fb-details-mash .fb-h5 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.fb-booking-information .fb-details-pop p {
  font-size: 14px;
}

.fb-view-icon {
  display: none;
}

.fb-user-profile-detail .fb-form-group {
  max-width: calc(100% / 2 - 15px);
}

.fb-passenger-main .fb-card-body h4.fb-h4 {
  font-size: 20px;
}

.fb-passenger-main > .fb-card:first-child {
  margin-top: 0;
}

.fb-custom-btn input.fb-btn.btn.btn-primary.btn-orange.border-0 {
  display: none;
}

.error-message {
  font-size: 14px;
}

.fb-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  font-size: 14px;
}

.fb-breadcrumb-wrapper li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.fb-breadcrumb-wrapper li+li:before {
  content: "\276F";
  color: #000;
  font-size: 12px;
}

.fb-breadcrumb-wrapper li span {
  font-weight: 500;
}

.fb-breadcrumb-wrapper li a:hover {
  color: #012d2c;
}

.fb-breadcrumb {
  border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.fb-flex-row + .fb-flex-row {
  margin-top: 25px;
}

.fb-flight-info-details > p {
  font-weight: bold;
  color: #012d2c;
  font-size: 18px;
}

.fb-passenger-info-details + .fb-separator {
  margin-bottom: 25px;
  display: block;
  border-color: rgb(0 0 0 / 10%);
}

.ticket-booking-error {
  padding: 12px;
  background: rgb(255 0 0 / 8%);
  border-radius: 8px;
  margin-bottom: 15px;
  color: #bf0202;
}

.fb-fare-rule table {
    width: 100%;
    border: 1px solid rgb(0 0 0 / 20%);
    border-collapse: collapse;
    margin: 10px 0;
    white-space: nowrap;
}

.fb-fare-rule {
    overflow: auto;
}

.fb-fare-rule table th, .fb-fare-rule table td {
    border: 1px solid rgb(0 0 0 / 20%);
    padding: 10px 15px;
    text-align:left;
}

.fb-fare-rule fieldset {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(0 0 0 / 20%);
}

.fb-fare-rule ul, .fb-fare-rule ol {
    margin-left: 20px;
}

.fb-fare-rule ul + ul, .fb-fare-rule ol + ol {
    margin-top: 15px;
}

.fb-fare-rule ul li {
    list-style: disc;
}

.fb-fare-rule ol li {
    list-style: decimal;
}

.fb-h4.fare-rule-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    background: rgb(0 0 0 / 10%);
    padding: 10px 15px 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.fb-h4.fare-rule-btn img {
    width: 20px;
    display: block;
        margin-top: -5px;
}

.active-fare img.fb-arrow-icon {
    transform: rotate(180deg);
    margin: 0 0 -10px !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.fb-filter-heading.fb-searchlist-heading {
    gap: 10px;
}

.fb-pdf-logo {
    margin-bottom: 20px;
    display: none;
}

span.flatpickr-day.disabled {
   color: rgba(57, 57, 57, 0.3) !important;
   pointer-events: none;
}

span.flatpickr-day.today.disabled {
    border-color: transparent !important;
}

.fb-user-profile-wrapper .fb-baggage-details {
    flex: 0 0 120px;
}
body span.flatpickr-day.today.disabled {
    border: none;
}
.fb-login.fb-dropdown>a p {
    text-transform: capitalize;
}
.fb-Journey-list.fb-notfound-flight {
    display: block !important;
}
.fb-Journey-list.fb-notfound-flight + .responsive-tab {
    display: none !important;
}