/* ===============================

   Base Setup

=============================== */

*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  font-family: 'TT Hoves Pro Trial', serif;

  /* color: #212529; */

  background-color: #F8FAFC;

  font-weight: 400;

}







:root {





--primary-color: #ED7232;

--secondarys-color: #191B41;

--generic-White: #FFFFFF;

--black: #000000;

--gray-50: #F8FAFC;

--gray-100: #F1F5F9;

--gray-200: #E2E8F0;

--gray-300: #CBD5E1;

--gray-500: #64748B;

--gray-600: #424F57;

--gray-700: #2B2B2A;

--gray-800: #1E293B;

--gray-900: #0F172A;

--gray-dark-400: #94A3B8;

--success-500:#22C55E;



--primary-colors-3: #1D0C04;

--fillColor-light-tertiary: #7676801F;



--linear-gradient-success:#22C55E33;

--linear-gradient-success1:#22C55E0D;

--linear-gradient1: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, #000000 82.08%);

--linear-gradient2: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.47%, #000000 78.45%);

--linear-gradient3: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.85%, #000000 79.07%);

--linear-gradient4: linear-gradient(270deg, #191B41 0%, rgba(255, 255, 255, 0.64) 56%, #191B41 100%);

--linear-gradient5: linear-gradient(360deg, #F8FAFC 0%, rgba(255, 255, 255, 0) 100%);



--background: #3B3B3B1F;

--background: #0000000A;



--background: #3B3B3B1A;

--background: #F9F9FB;

--background: #FFFFFFB2;





  --default-b: lightgrey;

  --default-c: black;

  --active-b: purple;

  --active-c: white;

  --circle: 3.5em; /* size of circle */

  --b: 5px; /* line thickness */







  --avail: #E6EDF2;

  --booked: var(--primary-color);

  --selected: var(--secondarys-color);

}



.bg-theme,

.primary-bg{background-color: var(--primary-color);}

.primary-color{color: var(--primary-color);}

.secondary-bg{background-color: var(--secondarys-color);}

.secondary-color{color: var(--secondarys-color);}

.bg-gray-500{background-color: var(--gray-500);}



.gray-100{color: var(--gray-100);}

.gray-200{color: var(--gray-200);}

.gray-300{color: var(--gray-300);}

.gray-400{color: var(--gray-400);}

.gray-dark-400{color: var(--gray-dark-400);}

.gray-500{color: var(--gray-500);}

.gray-600{color: var(--gray-600);}

.gray-700{color: var(--gray-700);}

.gray-800{color: var(--gray-800);}

.gray-900{color: var(--gray-900);}



.bg-theme-gray-100{background-color: var(--gray-100);}

.bg-theme-gray-200{background-color: var(--gray-200);}

.bg-theme-gray-300{background-color: var(--gray-300);}

.bg-theme-gray-400{background-color: var(--gray-400);}

.bg-theme-gray-dark-400{background-color: var(--gray-dark-400);}

.bg-theme-gray-500{background-color: var(--gray-500);}

.bg-theme-gray-600{background-color: var(--gray-600);}

.bg-theme-gray-700{background-color: var(--gray-700);}

.bg-theme-gray-800{background-color: var(--gray-800);}

.bg-theme-gray-900{background-color: var(--gray-900);}



/* Auth Styles */

.auth-bg {

  background-size: cover;

  background-position: center;

  min-height: 100vh;

  display: flex;

  align-items: center;

}



.auth-card {

  backdrop-filter: blur(10px);

  padding: 2rem;

  border-radius: 12px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

}



.auth-input {

  height: 48px;

  border: 1px solid var(--gray-200);

  border-radius: 6px;

  padding: 0.75rem 1rem;

  font-size: 1rem;

  transition: all 0.3s ease;

}



.auth-input:focus {

  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(237, 114, 50, 0.1);

  outline: none;

}



.password-eye {

  position: absolute;

  right: 1rem;

  top: 50%;

  transform: translateY(-50%);

  cursor: pointer;

  color: var(--gray-500);

}



.password-eye:hover {

  color: var(--primary-color);

}



.btn-primary-custom {

  background-color: var(--primary-color);

  border: none;

  padding: 0.75rem 1.5rem;

  transition: all 0.3s ease;

  display: inline-block;

}



.btn-primary-custom:hover {

  background-color: var(--secondarys-color);

  transform: translateY(-1px);

}



/* Social Login Buttons */

.bg-light-think-gray {

  background-color: #F8F9FA;

  transition: all 0.3s ease;

}



.bg-light-think-gray:hover {

  background-color: var(--gray-100);

  border-color: var(--gray-300) !important;

}



/* Responsive Styles */

@media (max-width: 768px) {

  .auth-card {

    padding: 1.5rem;

  }

  

  .auth-bg {

    padding-top: 2rem;

    padding-bottom: 2rem;

    min-height: auto;

  }



  .helicopter-image {

    margin-top: 2rem;

  }

}



/* Text Styles for Auth */

.text-theme {

  color: var(--primary-color);

  transition: color 0.3s ease;

}



.text-theme:hover {

  color: var(--secondarys-color);

}



.text-semi-title {

  color: var(--gray-600);

}



/* Form Label Styles */

.form-label {

  color: var(--gray-800);

  margin-bottom: 0.5rem;

  font-weight: 500;

}



.text-danger {

  color: #dc3545;

  font-size: 0.875rem;

  margin-top: 0.25rem;

}



/* Link Styles */

a.primary-color {

  text-decoration: none;

  transition: all 0.3s ease;

}



a.primary-color:hover {

  color: var(--secondarys-color) !important;

  text-decoration: underline;

}



.fw-100{font-weight: 100;}

.fw-200{font-weight: 200;}

.fw-300{font-weight: 300;}

.fw-400{font-weight: 400;}

.fw-500{font-weight: 500;}

.fw-600{font-weight: 600;}

.fw-700{font-weight: 700;}

.fw-800{font-weight: 800;}

.fw-900{font-weight: 900;}



.fs-6c {font-size: 6px;}

.fs-7 {font-size: 7px;}

.fs-8 {font-size: 8px;}

.fs-9 {font-size: 9px;}

.fs-10 {font-size: 10px;}



.fs-11 {font-size: 11px;}

.fs-12 {font-size: 12px;}

.fs-14 {font-size: 14px;}

.fs-15 {font-size: 15px;}

.fs-16 {font-size: 16px;}

.fs-17 {font-size: 17px;}

.fs-18 {font-size: 18px;}

.fs-19 {font-size: 19px;}

.fs-20 {font-size: 20px;}

.fs-21 {font-size: 21px;}

.fs-22 {font-size: 22px;}

.fs-23 {font-size: 23px;}

.fs-24 {font-size: 24px;}

.fs-25 {font-size: 25px;}

.fs-26 {font-size: 26px;}

.fs-27 {font-size: 27px;}

.fs-28 {font-size: 28px;}

.fs-29 {font-size: 29px;}

.fs-30 {font-size: 30px;}

.fss-30 {font-size: 30px;}

.fs-38 {font-size: 38px;}

.fs-42 {font-size: 42px;}

.fs-48 {font-size: 48px;}

.fs-64 {font-size: 64px;}





@media screen and (max-width: 992px) {

  .fs-11 {font-size: clamp(11px, 1.00vw, 11px);}

  .fs-12 {font-size: clamp(12px, 1.01vw, 12px);}

  .fs-13 {font-size: clamp(12px, 1.02vw, 13px);}

  .fs-14 {font-size: clamp(12px, 1.03vw, 14px);}

  .fs-15 {font-size: clamp(12px, 1.04vw, 15px);}

  .fs-16 {font-size: clamp(13px, 1.05vw, 16px);}

  .fs-17 {font-size: clamp(13px, 1.06vw, 17px);}

  .fs-18 {font-size: clamp(14px, 1.08vw, 18px);}

  .fs-19 {font-size: clamp(14px, 1.1vw, 19px);}

  .fs-20 {font-size: clamp(15px, 1.2vw, 20px);}

  .fs-21 {font-size: clamp(15px, 1.3vw, 21px);}

  .fs-22 {font-size: clamp(16px, 1.4vw, 22px);}

  .fs-23 {font-size: clamp(17px, 1.5vw, 23px);}

  .fs-24 {font-size: clamp(17px, 1.6vw, 24px);}

  .fs-25 {font-size: clamp(17px, 1.7vw, 25px);}

  .fs-26 {font-size: clamp(18px, 1.8vw, 26px);}

  .fs-27 {font-size: clamp(18px, 1.9vw, 27px);}

  .fs-28 {font-size: clamp(19px, 2vw, 28px);}

  .fs-29 {font-size: clamp(19px, 2.1vw, 29px);}

  .fs-30 {font-size: clamp(20px, 2.2vw, 30px);}

  .fs-38 {font-size: clamp(20px, 2.2vw, 38px);}

  .fs-42 {font-size: clamp(20px, 2.2vw, 42px);}

  .fs-48 {font-size: clamp(20px, 2.2vw, 48px);}

  .fs-64 {font-size: clamp(22px, 2.2vw, 64px);}

}





.border-r4{border-radius: 4px;}

.border-r6{border-radius: 6px;}

.border-r8{border-radius: 8px;}

.border-r10{border-radius: 10px;}

.border-r12{border-radius: 12px;}

.border-r14{border-radius: 14px;}

.border-r16{border-radius: 16px;}

.border-r18{border-radius: 18px;}

.border-r20{border-radius: 20px;}

.border-r22{border-radius: 22px;}





.border-rr6{border-radius: 0px 6px 6px 0px;}

.line-height-normal{line-height: normal;}



.green-color{color: var(--success-500);}

.green-bg{background: #DCFCE7;}

.green-dark{color: #16A34A;}

.warning{

  background: #FFFBEB;

border: 1px solid #FCD34D

}

.warning-color{color: #D97706;}

.bg-waryellow{background: #FEF3C7;}

.warning-shape{width: 32px;height: 32px;background: #FEF3C7;border-radius: 10%;}

.dark-worning{

  background: #F59E0B;

}

.card-bengal{

  border: 1px solid #F0ABFC;

  background: #FDF5FF;

}

/* input[type="checkbox"],

input[type="radio"],

input[type="text"],

input[type="email"],

input[type="password"],

input[type="number"],

input[type="search"],

input[type="tel"],

input[type="url"],

input[type="date"],

input[type="time"],

input[type="datetime"],

input[type="datetime-local"],

input[type="month"],

input[type="week"],

input[type="color"] {

border: 1px solid #CBD5E1;

  outline: none;

  border-radius: 6px;  

} */



input[type="checkbox"]{display: none;}

.input-check > input:first-child:checked + label::before, 

.input-check > input:first-child:checked + input[type="hidden"] + label::before {

    background-color: var(--primary-color);

    border-color: var(--primary-color);

}

.input-check > input:first-child + label::before, 

.input-check > input:first-child + input[type="hidden"] + label::before {

    content: "";

    display: inline-block;

    position: absolute;

    width: 18px;

    height: 18px;

    border: 2px solid var(--primary-color);

    border-radius: 3px;

    margin-left: -29px;

    box-sizing: border-box;

}

[class*="input-check"] > label {

    padding-left: 29px !important;

    min-height: 18px;

    line-height: 18px;

    display: inline-block;

    position: relative;

    vertical-align: top;

    margin-bottom: 0; 

    cursor: pointer;

}

[class*="input-check"] > input[type="checkbox"]:first-child:checked + label::after, 

[class*="input-check"] > input[type="checkbox"]:first-child:checked + input[type="hidden"] + label::after {

    width: 6px;

    height: 11px;

    transform: translate(7px, 2px) rotate(45deg);

    -ms-transform: translate(7px, 2px) rotate(45deg);

}

[class*="input-check"] > input:first-child:checked + label::after, 

[class*="input-check"] > input:first-child:checked + input[type="hidden"] + label::after {

    content: "";

    display: inline-block;

    position: absolute;

    top: 0;

    left: 0;

    width: 7px;

    height: 10px;

    border: solid 2px #fff;

    border-left: none;

    border-top: none;

    transform: translate(7.75px, 4.5px) rotate(45deg);

    -ms-transform: translate(7.75px, 4.5px) rotate(45deg);

    box-sizing: border-box;

}

@media (min-width: 1200px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl {

        max-width: 1320px;

    }

}









    /* @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 100;

    src: local('TT Hoves Pro Trial Regular'), 

    url('../fonts/font/TT Hoves Pro Trial Regular.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Regular.woff') format('woff');

    } */



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 100;

    src: local('TT Hoves Pro Trial Hairline'), 

    url('../fonts/font/TT Hoves Pro Trial Hairline.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Hairline.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 200;

    src: local('TT Hoves Pro Trial Thin'), 

    url('../fonts/font/TT Hoves Pro Trial Thin.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Thin.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 300;

    src: local('TT Hoves Pro Trial ExtraLight'), 

    url('../fonts/font/TT Hoves Pro Trial ExtraLight.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial ExtraLight.woff') format('woff');

    }

    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 400;

    src: local('TT Hoves Pro Trial Light'), 

    url('../fonts/font/TT Hoves Pro Trial Light.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Light.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 500;

    src: local('TT Hoves Pro Trial Medium'), 

    url('../fonts/font/TT Hoves Pro Trial Medium.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Medium.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 600;

    src: local('TT Hoves Pro Trial DemiBold'), 

    url('../fonts/font/TT Hoves Pro Trial DemiBold.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial DemiBold.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 700;

    src: local('TT Hoves Pro Trial Bold'), 

    url('../fonts/font/TT Hoves Pro Trial Bold.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Bold.woff') format('woff');

    }



    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 800;

    src: local('TT Hoves Pro Trial ExtraBold'), 

    url('../fonts/font/TT Hoves Pro Trial ExtraBold.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial ExtraBold.woff') format('woff');

    }

    

    @font-face {

    font-family: 'TT Hoves Pro Trial';

    font-style: normal;

    font-weight: 900;

    src: local('TT Hoves Pro Trial Black'), 

    url('../fonts/font/TT Hoves Pro Trial Black.ttf') format('truetype'),

    url('../fonts/font/TT Hoves Pro Trial Black.woff') format('woff');

    }

    





    /* button css */

.btn-select{

  background-color: var(--primary-color);

  border: 1px solid var(--primary-color);

  color: var(--generic-White);

}

.btn-unselect{

  background-color: var(--generic-White);

  border: 1px solid var(--primary-color);

  color: var(--primary-color);

}

.btn-primary-custom{

    background-color: var(--primary-color);

    border-color: var(--primary-color);

}

.btn-primary-custom-border{

    border: 1px solid var(--primary-color);

}

.btn-primary-custom:focus, .btn-primary-custom:active{

    background-color: var(--primary-color);

    border-color: var(--primary-color);

    box-shadow: none;

}

.btn-primary-custom:hover{

    background-color: var(--secondarys-color);

    border-color: var(--secondarys-color);

}

.py-13{

  padding-top: 13px;

  padding-bottom: 13px;

}

/* ===============================

   Navbar (Desktop Header)

=============================== */

.bg-secondarys{

  background-color: var(--secondarys-color);

}

.desktop-header .nav-link{

  color: var(--generic-White);

}

.desktop-header .navbar-nav .nav-link.active, 

.desktop-header.navbar-nav .nav-link.show{

  color: var(--primary-color) !important;

}

.desktop-header .navbar-nav .nav-link.header-offer.active {

  color: var(--generic-White) !important;

}

.humberger-menu{

  filter: invert(63%) sepia(69%) saturate(4481%) hue-rotate(7deg) brightness(97%) contrast(97%);

}

.close-icon{

    filter: invert(63%) sepia(69%) saturate(4481%) hue-rotate(7deg) brightness(97%) contrast(97%);

}

.navbar {

  padding: 0.8rem 1rem;

  transition: 0.3s ease;

}



.navbar.desktop-header {

  padding: 1.37rem 1rem;

  transition: 0.3s ease;

}



.navbar-brand {

  font-size: 1.5rem;

}



.nav-link {

  margin-right: 1rem;

  transition: color 0.3s ease;

}



/* .nav-link:hover,

.nav-link.active {

  color: #0d6efd !important;

} */



/* Dropdown menu */

.dropdown-menu {

  border-radius: 8px;

  overflow: hidden;

}



.dropdown-c{

  position: relative !important;

  transform: translate3d(0px, 0px, 0px) !important;

}

.dropdown-c li a.dropdown-item.active

.dropdown-c li a.dropdown-item:active{

  background-color: var(--primary-color);

  color: var(--generic-White) !important;

}

.dropdown-main-c .dropdown-menu{

  border-radius: 0px;

}

button:focus,

.desktop-header .navbar-toggler:focus{

  outline: none;

  box-shadow: none;

}



.desk-top-logo{

  top: -33px;

}



.dropdown-toggle-drop .dropdown-menu{

  width: 260px;

}



/* .dropdown-item:hover {

  background-color: #0d6efd;

  color: #fff;

} */



.route-card {

      display: flex;

      align-items: center;

      padding: 10px;

      border-radius: 10px;

      transition: background-color 0.3s;

    }



    .route-card:hover {

      background-color: #fff5ef;

    }



    .route-icon {

      width: 45px;

      height: 45px;

      border-radius: 8px;

      background-color: #fff0e0;

      color: #f97316;

      display: flex;

      align-items: center;

      justify-content: center;

      font-weight: 600;

      font-size: 16px;

      margin-right: 10px;

    }



    .route-details h6 {

      margin: 0;

      font-weight: 600;

      color: #1e293b;

      font-size: 15px;

    }



    .route-details small {

      color: #64748b;

      font-size: 13px;

    }



.mt-200{

  margin-top: -240px;

}



/* ===============================

   Mobile Sidebar (Offcanvas)

=============================== */

.offcanvas {

  background-color: #fff;

}



.offcanvas .nav-link {

  color: #212529;

  border-bottom: 1px solid #f1f1f1;

  padding: 10px 0;

  margin-right: 0px;

}



.offcanvas .nav-link.active {

  color: var(--generic-White);

  background-color: var(--primary-color);

  padding: 10px 10px;

}



.mobile-menu li.menu-item-has-children .dropdown-btn {

    position: absolute;

    right: 6px;

    top: 6px;

    width: 32px;

    height: 32px;

    text-align: center;

    font-size: 16px;

    line-height: 32px;

    color: #1f252e;

    background: #efefef;

    cursor: pointer;

    border-radius: 2px;

    -webkit-transition: all 500ms 

ease;

    -o-transition: all 500ms ease;

    transition: all 500ms 

ease;

    z-index: 5;

}



.mobile-menu li.menu-item-has-children .dropdown-btn.open {

    -webkit-transform: rotate(90deg);

    -ms-transform: rotate(90deg);

    transform: rotate(90deg);

}



.mobile-menu .navigation li>ul>li:last-child {

    border-bottom: 1px solid #f1f1f1;

}

.mobile-menu .dropdown-menu.dropdown-c{

  border: 0px;

  padding-top: 0px;

  padding-bottom: 0px;

}

.mobile-menu .dropdown-menu.dropdown-c li{

      color: #212529;

    border-bottom: 1px solid #f1f1f1;

    padding: 10px 00px 10px 20px;

    margin-right: 0px;

}

.mobile-menu .dropdown-menu.dropdown-c li a{

  color: #212529;

  /* border-bottom: 1px solid #f1f1f1; */

  padding: 0px 00px 0px 0px;

}

.mobile-menu .dropdown-menu.dropdown-c li a {

  background-color: transparent !important;

}

@media screen and (max-width: 768px) {

  .mobile-menu .dropdown-toggle::after{

    display: none;

  }

}



/* 

.nav-outer .mobile-nav-toggler {

	position: relative;

	float: right;

	font-size: 40px;

	line-height: 50px;

	cursor: pointer;

	display: none;

	color: #fff;

	margin-right: 30px;

	top: 15px;

}

.nav-logo img {

	width: 150px;

}

.mobile-menu {

	position: fixed;

	right: 0;

	top: 0;

	width: 300px;

	padding-right: 30px;

	max-width: 100%;

	height: 100%;

	opacity: 0;

	visibility: hidden;

	z-index: 99;

	border-radius: 0px;

	transition: all 700ms ease;

	-moz-transition: all 700ms ease;

	-webkit-transition: all 700ms ease;

	-ms-transition: all 700ms ease;

	-o-transition: all 700ms ease;

	-webkit-transform: translateX(101%);

	-ms-transform: translateX(101%);

	transform: translateX(101%);

}

.mobile-menu .navbar-collapse {

	display: block !important;

}

.mobile-menu .nav-logo {

	position: relative;

	padding: 30px 25px;

	text-align: left;

}

.mobile-menu-visible {

	overflow: hidden;

}

.mobile-menu-visible .mobile-menu {

	opacity: 1;

	visibility: visible;

	-webkit-transform: translateX(0%);

    -ms-transform: translateX(0%);

    transform: translateX(0%);

}

.mobile-menu .navigation li.current>a:before {

	height: 100%;

}

.menu-backdrop {

	position: fixed;

	right: 0;

	top: 0;

	width: 100%;

	height: 100%;

	z-index: 2;

	transition: all 700ms ease;

	-moz-transition: all 700ms ease;

	-webkit-transition: all 700ms ease;

	-ms-transition: all 700ms ease;

	-o-transition: all 700ms ease;

	opacity: 0;

	visibility: hidden;

	background: #fff;

}

.mobile-menu-visible .menu-backdrop {

	opacity: 0.80;

	visibility: visible;

}

.mobile-menu .menu-box {

	position: absolute;

	left: 0px;

	top: 0px;

	width: 100%;

	height: 100%;

	max-height: 100%;

	overflow-y: auto;

	overflow-x: hidden;

	background: #fff;

	padding: 0px 0px;

	z-index: 5;

	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);

}

.mobile-menu-visible .mobile-menu .menu-box {

	opacity: 1;

	visibility: visible;

}

.mobile-menu .close-btn {

	position: absolute;

	right: 6px;

	top: 28px;

	line-height: 30px;

	width: 35px;

	text-align: center;

	font-size: 20px;

	color: #312620;

	cursor: pointer;

	z-index: 10;

	-webkit-transition: all 0.9s ease;

	-o-transition: all 0.9s ease;

	transition: all 0.9s ease;

}

.mobile-menu-visible .mobile-menu .close-btn {

	-webkit-transform: rotate(360deg);

	-ms-transform: rotate(360deg);

	transform: rotate(360deg);

}

.mobile-menu .navigation {

	position: relative;

	display: block;

	width: 100%;

	float: none;

}

.mobile-menu .navigation li {

	position: relative;

	display: block;

	border-top: 1px solid rgb(0 0 0 / 10%);

}

.mobile-menu .navigation:last-child {

	border-bottom: 1px solid rgb(0 0 0 / 10%);

}

.mobile-menu .navigation li>ul>li:first-child {

	border-top: 1px solid rgb(0 0 0 / 10%);

}

.mobile-menu .navigation li > a {

    position: relative;

    display: block;

    line-height: 24px;

    padding: 10px 25px;

    font-size: 15px;

    font-weight: 500;

    color: #1f252e;

    text-transform: capitalize;

    -webkit-transition: all 500ms ease;

    -o-transition: all 500ms ease;

    transition: all 500ms ease;

    border: none;

}

.mobile-menu .navigation li ul li > a {

	font-size: 15px;

	margin-left: 20px;

	text-transform: capitalize;

}

.mobile-menu .navigation li ul li ul li a {

    margin-left: 40px;

}

.mobile-menu .navigation li ul li ul li ul li a {

    margin-left: 60px;

}

.mobile-menu .navigation li > a:before {

	content: '';

	position: absolute;

	left: 0;

	top: 0;

	height: 0;

	-webkit-transition: all 500ms ease;

	-o-transition: all 500ms ease;

	transition: all 500ms ease;

}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {

	position: absolute;

	right: 6px;

	top: 6px;

	width: 32px;

	height: 32px;

	text-align: center;

	font-size: 16px;

	line-height: 32px;

	color: #1f252e;

	background: #efefef;

	cursor: pointer;

	border-radius: 2px;

	-webkit-transition: all 500ms ease;

	-o-transition: all 500ms ease;

	transition: all 500ms ease;

	z-index: 5;

}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open {

	-webkit-transform: rotate(90deg);

	-ms-transform: rotate(90deg);

	transform: rotate(90deg);

}

.mobile-menu .navigation li > ul,

.mobile-menu .navigation li > ul > li > ul {

	display: none;

}

.mobile-menu .social-links ul {

    display: flex;

    position: relative;

    text-align: center;

    padding: 30px 20px 20px;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

}

.mobile-menu .social-links li {

    position: relative;

    display: inline-block;

    margin: 0px 6px 10px;

}

.mobile-menu .social-links li a {

	display: flex;

	align-items: center;

	justify-content: center;

	width: 40px;

	height: 40px;

	position: relative;

	line-height: 32px;

	font-size: 16px;

	color: #1f252e;

	-webkit-transition: all 500ms ease;

	-o-transition: all 500ms ease;

	transition: all 500ms ease;

	border: 1px solid #efefef;

	border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

	-ms-border-radius: 3px;

	-o-border-radius: 3px;

}

.mobile-menu .social-links li a:hover {

	border-color: #ffa903;

	background: #ffa903;

	color: #fff;

}

.menu-area .mobile-nav-toggler {

	position: relative;

	float: right;

	font-size: 30px;

	cursor: pointer;

	line-height: 1;

	color: #fff;

	display: none;

	margin-top: 8px;

} */



/* ===============================

   Content

=============================== */

/* .content {

  min-height: 100vh;

  padding-bottom: 40px;

} */



/* h1 {

  font-size: 2.3rem;

} */

.text-theme{

  color: var(--primary-color);

}











/* booking */

.booking-area {

	/* margin-top: -170px; */

	position: relative;

  box-shadow: 3px 3px 28px 0px #0000000F;

  border-radius: 10px;

  background-color: #fff;

}

.booking-area .booking-wrap nav.nav-tabs {

  background: #7676801F;

}

.booking-tag ul {

	display: flex;

	align-items: center;

	margin-bottom: 20px;

	flex-wrap: wrap;

}

.booking-tag ul li a {

	font-size: 14px;

	font-weight: 600;

	color: #fff;

	text-transform: capitalize;

	background: transparent;

	border-radius: 4px;

	padding: 12px 17px;

	display: flex;

	align-items: center;

}

.booking-tag ul li a i {

	font-size: 18px;

	margin-right: 10px;

	line-height: 0;

}

.booking-tag ul li a:hover {

	background: rgb(255 255 255 / 18%);

}

.booking-wrap .nav-tabs {

	border-bottom: none;

}

.bg-fill-color{

  background-color: var(--fillColor-light-tertiary);

}

.booking-wrap .nav-tabs .nav-link-tab {

	margin-bottom: 0;

	background: transparent;

	border: none;

	color: #1E293B;

	text-transform: uppercase;

	font-weight: 600;

	border-radius: 0;

	display: flex;

	align-items: center;

	padding: 12px 12px;

	width: 100%;

	justify-content: center;

	transition: .3s linear;



	font-size: 15px;

}

.booking-wrap .nav-tabs .nav-link-tab i {

	font-size: 20px;

	margin-right: 10px;

	line-height: 0;

	margin-top: 4px;

}

.booking-wrap .nav-tabs .nav-item:first-child .nav-link-tab {

	border-radius: 6.93px;  

}

.booking-wrap .nav-tabs .nav-item:last-child .nav-link-tab {

	border-radius: 6.93px;

}

.booking-wrap .nav-tabs .nav-item.show .nav-link-tab,

.booking-wrap .nav-tabs .nav-link-tab.active {

	background-color: #fff;

  box-shadow: 0px 3px 1px 0px #0000000A;

  box-shadow: 0px 3px 8px 0px #0000001F;

  border: 0.5px solid #0000000A



}

.booking-wrap .nav-tabs .nav-link-tab{

  padding: 6px;

}

.booking-area .tab-content-wrap {

	background: #fff;

	/* padding: 25px; */

	/* border-radius: 0 0 20px 20px; */

}

.content-top ul {

	display: flex;

	align-items: flex-end;

	flex-wrap: wrap;

}

.content-top ul li {

	font-size: 14px;

	font-weight: 600;

	color: #6a2e4d;

	position: relative;

	margin-right: 15px;

	padding-right: 15px;

	margin-bottom: 12px;

}

.content-top ul li::before {

	content: "";

	position: absolute;

	right: 0;

	bottom: 5px;

	width: 2px;

	height: 13px;

	background: #6a2e4d;

	opacity: .5;

}

.content-top ul li:last-child {

	margin-right: 0;

	padding-right: 0;

}

.content-top ul li:last-child::before {

	display: none;

}

.content-top ul li span {

	display: block;

	font-size: 12px;

	color: #8d5f77;

	font-weight: 500;

	text-align: right;

	line-height: 1;

}

.booking-form {

	/* background: #f8f3e7; */

	/* border-radius: 4px; */

	/* border: 1px solid #ebebeb; */

}

.booking-form ul li {

	/* width: 178px; */

}

.booking-form .form-grp {

	position: relative;

	/* border-right: 1px solid #dedcd7; */

}

.booking-form .form-grp input {

	width: 100%;

	background: transparent;

	border: none;



}

.booking-form .form-grp input::placeholder {

	font-size: 20px;

  font-weight: 600;

  color: #1E293B;



}

.booking-form .form-control:focus{

  box-shadow: none;

  outline: none;

}

.booking-form ul {

	display: flex;

	align-items: center;

}

.booking-input-box{

  background-color: #F8FAFC;

  border: 1px solid #E2E8F0;

  box-shadow: 0px 1px 2px 0px #0F172A0F;

  color: #F8FAFC;





}

.booking-form .form-grp .exchange-icon {

	position: absolute;

	left: -46px;

	top: 50%;

	transform: translateY(-50%);

	width: 40px;

	height: 40px;

	background: #fefdfb;

	font-size: 15px;

	display: flex;

	align-items: center;

	justify-content: center;

	line-height: 0;

	color: var(--primary-color);

	border: 1px solid #eeedeb;

}

.booking-form .form-grp .exchange-icon:hover {

	background: var(--primary-color);

	color: var(--secondarys-color);

	border-color: var(--primary-color);

}

.booking-form .form-grp .exchange-icon:hover i {

  color: var(--secondarys-color);

}


@media screen and (max-width: 576px) {
  .booking-form .form-grp .exchange-icon {

	position: absolute;
  left: auto;
  right: 50%;
	top: -100%;

	transform: translate(-50%);

	width: 40px;

	height: 40px;

	background: #fefdfb;

	font-size: 15px;

	display: flex;

	align-items: center;

	justify-content: center;

	line-height: 0;

	color: var(--primary-color);

	border: 1px solid #eeedeb;

}
}

.booking-form ul li:nth-child(2) .form-grp input {

	/* padding: 20px 20px 20px 40px; */

}

.booking-form ul li .form-grp input {

  padding: 0px 0px;

}

.booking-form .form-grp label {

	display: block;

	margin-left: 10px;

}

.booking-form .form-grp.select .form-select {

	padding: 0px 20px 0 10px;

	font-size: 16px;

	font-weight: 500;

	color: #2a2a2a;

	vertical-align: middle;

	background: url("../img/icon/select_down_arrow.png") no-repeat scroll 97.5% center;

	background-color: transparent;

	border-radius: 0;

	box-shadow: none;

	-webkit-appearance: none;

	-moz-appearance: none;

	appearance: none;

	transition: .3s ease-in-out;

	width: 160px;

	border: none;



	cursor: pointer;

}

.booking-form ul li:nth-child(3) {

	/* width: 200px; */

}

.booking-form .form-grp.select {

	/* padding: 16px 0px; */

}

.booking-form ul li:nth-child(4) {

	/* width: 270px; */

}

.booking-form .form-grp.date {

	/* padding: 16px 30px; */

}

.booking-form .form-grp.date input {

	padding: 0;

	height: auto;

	color: #2a2a2a;

	font-weight: 500;

}

.booking-form .form-grp.date input::placeholder {

	color: #2a2a2a;

	font-weight: 600;

}

.booking-form .form-grp.date label {

	margin-left: 0;

}

.booking-form .form-grp.date ul li {

	width: 50%;

	margin-right: 20px;

	padding-right: 15px;

	position: relative;

}

.booking-form .form-grp.date ul li:last-child {

	margin-right: 0;

	padding-right: 0;

}

.booking-form .form-grp.date ul li::before {

	/* content: "";

	position: absolute;

	right: 0;

	bottom: 10px;

	width: 5px;

	height: 1px;

	background: #2a2a2a; */

}

.booking-form .form-grp.date ul li:last-child::before {

	display: none;

}

.booking-form ul li:last-child {

	/* width: 150px; */

}

.booking-form .form-grp.economy {

	/* border: none; */

	padding: 16px 20px;

}

.booking-form .form-grp.economy input {

	/* padding: 0;

	height: auto;

	font-size: 16px;

	color: #2a2a2a;

	font-weight: 500; */

}

.booking-form .form-grp.economy input::placeholder {

	/* font-size: 16px;

	color: #2a2a2a;

	font-weight: 500; */

}

.booking-form .form-grp.economy label {

	margin-left: 0;

}

.tab-content-wrap .content-bottom {

	display: flex;

	align-items: center;

	justify-content: flex-end;

	flex-wrap: wrap;

	margin-top: 20px;

}

.tab-content-wrap .content-bottom .promo-code {

	font-size: 16px;

	color: #945274;

	font-weight: 500;



	margin-right: 25px;

}

.tab-content-wrap .content-bottom .promo-code:hover {

	color: #ffa903;

}

.tab-content-wrap .content-bottom .btn {

	font-size: 16px;

}





/* ===============================

   Responsive

=============================== */

@media (max-width: 992px) {

  /* Hide desktop menu */

  .navbar .collapse {

    display: none !important;

  }

}





/* ===============================

   offersection

=============================== */



.swiper-slider-offers {

      padding: 60px 0;

    }



    .offer-image-box {

      position: relative;

      width: 100%;

      overflow: hidden;

      border-radius: 12px;

      /* background: #000; */

    }



    /* Maintain 420×238 aspect ratio (≈56.67%) */

    .offer-image-box::before {

      content: "";

      display: block;

      padding-bottom: 56.67%;

    }



    .offer-image-box img {

      position: absolute;

      top: 0;

      left: 0;

      width: 100%;

      height: 100%;

      object-fit: cover;

      transition: transform .4s ease;

    }



    .offer-image-box:hover img {

      transform: scale(1.05);

    }



    /* Optional overlay title/button */

    /* .offer-caption {

      position: absolute;

      bottom: 0;

      left: 0;

      width: 100%;

      padding: 15px 20px;

      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);

      color: #fff;

    }



    .offer-caption h5 {

      font-size: 1.1rem;

      margin-bottom: 5px;

    }



    .offer-caption button {

      font-size: 0.9rem;

      padding: 4px 10px;

    } */



    .swiper-button-next,

    .swiper-button-prev {

      color: #000;

    }



    .swiper-pagination-bullet-active {

      background: #ED7232;

    }

    /* .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{

      

    } */

    .swiper-slider-offers .swiper-pagination{

      bottom: -30px !important;

    }

    .swiper-slider-offers .swiper-pagination-bullet.swiper-pagination-bullet-active{

      background: #ED7232;

      width: 25px;

      border-radius: 50px;

    }

    .swiper-slider-offers .swiper-pagination-bullet{

      /* background: #CBD5E1; */

      width: 10px;

      border-radius: 10px;

    }







/* ===============================

   MosTrip

=============================== */

/* .swiper-slider-trip {

  padding: 60px 0;

}



.trip-image-box {

  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 12px;

  background: #000;

} */



/* Maintain 420×238 aspect ratio (≈56.67%) */

/* .trip-image-box::before {

  content: "";

  display: block;

  padding-bottom: 100%;

}



.trip-image-box img {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform .4s ease;

}



.trip-image-box:hover img {

  transform: scale(1.05);

} */



/* Optional overlay title/button */

/* .trip-caption {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  padding: 15px 20px;

  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);

  color: #fff;

}



.trip-caption h5 {

  font-size: 1.1rem;

  margin-bottom: 5px;

}



.trip-caption button {

  font-size: 0.9rem;

  padding: 4px 10px;

} */





















.helicopter-image-tag{

    position: absolute;

    top: -54px;

    right: 100px;

    width: 123px;

    z-index: 0;

}

.helicopter-image-tag1{

    position: absolute;

    top: 54px;

    left: 100px;

    width: 123px;

    z-index: 0;

}

.helicopter-image-tag3{

    position: absolute;

    bottom: -53px;

    right: 100px;

    width: 123px;

    z-index: 0;

}



    .joyful-title {

      font-weight: 700;

      color: #1a1a1a;

      margin-bottom: 40px;

    }



    .joyful-card {

      position: relative;

      border: none;

      border-radius: 12px;

      overflow: hidden;

      transition: transform 0.3s ease;

      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    }



    .joyful-card:hover {

      transform: translateY(-5px);

    }



    /* Aspect ratio box */

    .joyful-img-wrap {

      position: relative;

      width: 100%;

      overflow: hidden;

      /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); */

      z-index: 1;

    }



    .joyful-img-wrap::before {

      content: "";

      display: block;

      padding-bottom: 100%; /* 420×238 ratio */

      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);

      z-index: 1;

      position: relative;

    }



    .joyful-img-wrap img {

      position: absolute;

      top: 0;

      left: 0;

      width: 100%;

      height: 100%;

      object-fit: cover;

      filter: brightness(75%);

      transition: transform 0.4s ease;

    }



    .joyful-card:hover img {

      transform: scale(1.05);

    }



    .joyful-content {

      position: absolute;

      bottom: 0;

      left: 0;

      width: 100%;

      padding: 25px 20px 20px;

      /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); */

      color: #fff;

      z-index: 2;

    }







/* ===============================

   Booking Help

=============================== */



.border-top-bottom{

  border-top: 1px solid #E2E8F0;

  border-bottom: 1px solid #E2E8F0;

}

.border-top1{

  border-top: 1px solid #E2E8F0;

}

.border-bottom1{

  border-bottom: 1px solid #E2E8F0;

}

.booking-help{

  background-color: #FFFFFF;



}

.help-card{

  border: 1px solid #E2E8F0;

}







/* ===============================

   Booking Help

=============================== */



.experience-section{



}



.experience-section .img-two {

    position: absolute;

    right: 48px;

    bottom: -54px;

    box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.16);

}

.experience-section::before {

    /* content: "";

    position: absolute;

    right: 6%;

    top: -7%;

    width: 444px;

    height: 459px;

    border: 10px solid #ffa903; */

}

.border-card{

  border: 1px solid #E2E8F0;

}



/* ===============================

   FAQ

=============================== */

/* .faq-area {

	padding: 100px 0;

} */

/* .faq-area .section-title {

	margin-bottom: 30px;

}

.faq-content p {

	margin-bottom: 35px;

} */

.faq-area .faq-content .accordion-button {

	padding: 20px 40px 20px 32px;

  border-radius: 16px;

}

/* .faq-area .faq-content .accordion-button .dot {

	width: 16px;

	height: 16px;

	background: transparent;

	position: absolute;

	left: 18px;

	top: 50%;

	transform: translateY(-50%);

	border-radius: 50%;

	border: 1px solid #d7ced6;

}

.faq-area .faq-content .accordion-button .dot::before {

	content: "";

	position: absolute;

	width: 10px;

	height: 10px;

	left: 2px;

	top: 50%;

	transform: translateY(-50%);

	background: #d7ced6;

	border-radius: 50%;

} */

.faq-area .faq-content .accordion-button:not(.collapsed) .dot {

	border: 1px solid #a07c8f;

}

.faq-area .faq-content .accordion-button:not(.collapsed) .dot::before {

	background: #a07c8f;

}

.faq-area .faq-content .accordion-button:focus {

	box-shadow: none;

}

.faq-area .faq-content .accordion-button::after {

	width: auto;

	height: auto;

	content: "\2b";

	background-image: none;

	font-family: "Font Awesome 6 pro";

	font-size: 13px;

	font-weight: 700;

	position: absolute;

	right: 25px;

	top: 27px;

}

.faq-area .faq-content .accordion-button:not(.collapsed)::after {

	background-image: none;

	transform: rotate(0);

	content: "\f068";

	font-family: "Font Awesome 6 pro";

	font-weight: 700;

}

.faq-area .faq-content .accordion-body {

	padding: 0px 40px 20px 32px;

}

.faq-area .faq-content .accordion-body p {

	color: #424F57;

	margin-bottom: 0;

}

.faq-area .faq-content .accordion-item {

	background-color: #F9F9FB;

	border: none;

	margin-bottom: 15px;

  border: 1px solid #3B3B3B1F;

  border-radius: 16px !important;

}

.faq-area .faq-content .accordion .accordion-item:last-child {

	margin-bottom: 0;

}

.faq-area .faq-content .accordion-item:first-of-type {

	/* border-top-left-radius: 0;

	border-top-right-radius: 0; */

}

.faq-area .faq-content .accordion-item:last-of-type {

	/* border-bottom-right-radius: 0;

	border-bottom-left-radius: 0; */

}

.faq-area .faq-content .accordion-button:not(.collapsed) {

	color: var(--gray-800);

	background-color: transparent;

	box-shadow: none;

}

.faq-area .faq-content .accordion-item:first-of-type .accordion-button {

	/* border-top-left-radius: 0;

	border-top-right-radius: 0; */

  border-radius: 16px;

}

.faq-area .faq-content .accordion-item:last-of-type .accordion-button.collapsed {

	/* border-bottom-right-radius: 0;

	border-bottom-left-radius: 0; */

  border-radius: 16px;

}

/* .faq-img {

	position: relative;

	z-index: 1;

	margin-left: 10px;

}

.faq-img::before {

	content: "";

	position: absolute;

	left: 15px;

	top: 15px;

	width: 100%;

	height: 100%;

	background: #f6b63b;

	z-index: -1;

	transition: all .3s ease-in-out;

}

.faq-img:hover::before {

	left: 0;

	top: 0;

} */





















/* ===============================

   search page

=============================== */

.border1-top-bottom{

  border: 1px solid #CBD5E1

}

.border-color-cbd{

  border-color: #CBD5E1

}

.image-container {

  position: relative;

  width: 100%;          /* or any fixed width */

  padding-top: 56.47%;     /* height relative to width */

  overflow: hidden;

}



.image-container img {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;    /* keeps aspect ratio inside container */

}





.pre-month{

  background-color: #E2E8F0;

  color: #1E293B;

  display: inline-block;

  white-space: nowrap;

  /* -moz-transform: rotate(-90deg);

  -moz-transform-origin: center center;

  -webkit-transform: rotate(-90deg);

  -webkit-transform-origin: center center;

  -ms-transform: rotate(-90deg);

  -ms-transform-origin: center center; */

  padding: 3px 10px;

  border-radius: 5px;

  gap: 6px;

  height: max-content;

}

.month-name{

  /* display: inline-block;

    white-space: nowrap;

    font-family: Verdana;

    font-size: 14pt;

    -moz-transform: rotate(-90deg);

    -moz-transform-origin: center center;

    -webkit-transform: rotate(-90deg);

    -webkit-transform-origin: center center;

    -ms-transform: rotate(-90deg);

    -ms-transform-origin: center center; */

}

.date-item{

  flex: 0 0 auto;

  text-align: center;

  padding: 5px 17px;

  border-radius: 8px;

  cursor: pointer;

  transition: 0.2s;

  aspect-ratio: 1 / 1;

}

.date-item{

  color: #F8FAFC;

  box-shadow: 0px 0px 5px 0px #0F172A0F;

  border: 1px solid #E2E8F0;

}

.date-item.active{

  background-color: var(--primary-color);

  color: #fff;

}

.date-item.active div{

  color: var(--generic-White);

}

.arrow-left,

.arrow-right{

      height: -webkit-fill-available;

    background-color: transparent;

    color: #1E293B;

    display: flex;

    align-items: center;

    white-space: nowrap;

    padding: 3px 10px;

    border-radius: 5px;

    gap: 6px;

    line-height: 1.4;

    border: 1px solid #E2E8F0;

    box-shadow: 0px 0px 5px 0px #0F172A0F;



}

.p-13{

  padding: 13px;

}

.copy-code{

  border: 1px dashed #CBD5E1;

  border-radius: 50px;

  padding: 10px 16px;

  cursor: pointer;

}

.route-line {

  position: relative;

  margin: 13px 10px;

  width: 150px;

  height: 2px;

  border: 1px dashed #94A3B8;

  /* border: 1px dashed #000; */

}







/* fight details   */

.seat-map {

      background: #f8f9fa;

      border: 1px solid #ddd;

      border-radius: 10px;

      padding: 20px;

    }



    .seat {

      width: 60px;

      height: 60px;

      background-color: #fff;

      border: 2px solid #ccc;

      border-radius: 8px;

      display: flex;

      align-items: center;

      justify-content: center;

      font-weight: bold;

      cursor: pointer;

      margin: 10px;

    }



    .seat:hover {

      background-color: #e9ecef;

    }



    .selected-seats {

      background-color: #0d6efd;

      color: #fff;

    }



    .fare-box {

      background-color: #f1f8f5;

      padding: 20px;

      border-radius: 10px;

      border: 1px solid #cfe2ff;

    }



    .fare-summary {

      background-color: #fff;

      border: 1px solid #dee2e6;

      border-radius: 10px;

      padding: 20px;

      margin-top: 20px;

    }



    .summary-item {

      display: flex;

      justify-content: space-between;

      margin-bottom: 10px;

    }



    .total {

      font-weight: bold;

      color: #d63384;

      font-size: 1.2rem;

    }









/* flight details */

.assured-banner{

  background: #FFFBEB;

  border-bottom: 1px solid #FCD34D;

  color: #D97706;

}

.flight-card{

  background: #FFFFFF;

  border: 1px solid #E2E8F0;

  box-shadow: 0px 0px 5px 0px #0F172A0F;

  border-radius: 6px;

}



/* flight details slider swip */

.slider1-image-box {

  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 12px;

  /* background: #000; */

}



/* Maintain 420×238 aspect ratio (≈56.67%) */

.slider1-image-box::before {

  content: "";

  display: block;

  padding-bottom: 56.67%;

}



.slider1-image-box img {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform .4s ease;

}



.slider1-image-box:hover img {

  transform: scale(1.05);

}

.slider1Swiper .swiper-button-next, 

.slider1Swiper .swiper-button-prev{

  background-color: #fff;

  width: 2.5rem;

  height: 2.5rem;

  border-radius: 50px;



}

.slider1Swiper .swiper-button-next:after, 

.slider1Swiper .swiper-button-prev:after{

  /* font-size: 20px; */

  display: none;

}

/* tabs scrolling */

/* Tabs */

/* .tab-tabContainer .tab-navigation-container {

  display: flex;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  border-bottom: 2px solid #e0e0e0;

  background: #fff;

  position: sticky;

  top: 0;

  z-index: 10;

}

.tab-tabContainer .tab-navigation-container::-webkit-scrollbar {

  display: none;

}



.tab-tabContainer .nav-tab {

  flex: 0 0 auto;

  padding: 14px 20px;

  font-weight: 500;

  color: #495057;

  cursor: pointer;

  white-space: nowrap;

  transition: all 0.3s ease;

  border-bottom: 3px solid transparent;

}

.tab-tabContainer .nav-tab.active {

  color: #dc3545;

  border-bottom-color: #dc3545;

}





.section {

  padding: 60px 20px;

  scroll-margin-top: 70px;

}

.section:nth-child(odd) {

  background: #fff;

}

.section:nth-child(even) {

  background: #f1f3f5;

}

.section h2 {

  font-size: 28px;

  font-weight: 600;

} */





.tab-tabContainer .tab-tabContainer {

  width: 100%;

  background: #fff;

  border-radius: 10px;

  overflow: hidden;

  border: 1px solid #e5e7eb;

}



/* Tabs container */

.tab-tabContainer .tab-navigation-container {

  display: flex;

  overflow-x: auto;

  scrollbar-width: none;

  -ms-overflow-style: none;

  border-bottom: 1px solid #e5e7eb;

  scroll-behavior: smooth;

}

.tab-tabContainer .tab-navigation-container::-webkit-scrollbar {

  display: none;

}



/* Individual tab */

.tab-tabContainer .nav-tab {

  flex: 0 0 auto;

  padding: 12px 20px;

  font-weight: 500;

  color: #475569;

  cursor: pointer;

  white-space: nowrap;

  border-bottom: 2px solid transparent;

  transition: all 0.3s ease;

}

.tab-tabContainer .nav-tab.active {

  color: #dc3545;

  border-bottom-color: #dc3545;

}



/* Section area inside container */

.tab-tabContainer .tab-slider .section {

  /* min-height: 65vh; */

  /* min-height: 300px; */

  padding: 20px;

  scroll-margin-top: 70px;

}

.tab-tabContainer .tab-slider .section:nth-child(even) {

  background: #f9fafb;

}

.tab-tabContainer .tab-slider .section:nth-child(odd) {

  background: #fff;

}





/* ===============================

   footer 

=============================== */

.f-i {

    width: 30px;

    height: 30px;

    background-color: #fff;

    border-radius: 50%;

    text-decoration: none;

}





/* backToTop */

#backToTop:hover {

    background-color: var(--secondarys-color);

    transform: scale(1.1);

}

#backToTop {

    position: fixed;

    bottom: 40px;

    right: 30px;

    display: none;

    z-index: 1000;

    border: none;

    border-radius: 50%;

    padding: 7px 15px;

    font-size: 18px;

    background-color: var(--primary-color);

    color: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    transition: opacity 0.3s 

ease, transform 0.3s 

ease;

}





 /* --- Container --- */

    .text-box {

      position: relative;

      overflow: hidden;

      line-height: 1.6;          /* control line spacing */

      max-height: 6.5em;         /* ≈ 4 lines (4 × 1.6 = 6.4em) */

      transition: max-height 0.6s ease;

    }



    /* When expanded, show full text */

    .text-box.expanded {

      max-height: 100em;         /* big enough to show everything */

    }



    /* “Show more” link style */

    .toggle-btn {

      display: inline-block;

      color: #ff5722;

      cursor: pointer;

      margin-top: 5px;

    }



    .toggle-btn:hover {

      text-decoration: underline;

      color: #e64a19;

    }



    /* optional fade effect for hidden text */

    .text-box::after {

      content: "";

      position: absolute;

      bottom: 0;

      left: 0;

      right: 0;

      height: 2em;

      background: linear-gradient(to top, #fff, transparent);

      transition: opacity 0.3s ease;

    }



    .text-box.expanded::after {

      opacity: 0;

    }





    /* Tabs (left side) */

    .footer-tabs-left {

      border-left: 1px solid #e0e0e0;

    }

    .footer-tabs .nav-pills .nav-item .nav-link:hover,

    .footer-tabs .nav-pills .nav-item .nav-link.active {

      color: var(--primary-color) !important;

      background-color: transparent;

      text-decoration: underline;

    }

    

    .footer-tabs .nav-pills .nav-item .nav-link {

      color: #2B2B2A;

    }

    .footer-tabs .nav-link {

      border: none;

      border-radius: 0;

      text-align: left;

      padding-left: 0;

    }





    /* Link columns (right side) */

    .footer-links a {

      color: var(--gray-700);

      text-decoration: none;

      display: block;

      margin-bottom: 8px;

    }



    .footer-links a:hover {

      text-decoration: underline;

      color: var(--primary-color);

    }



    /* Responsive */

    @media (max-width: 767px) {

      .footer-tabs-left {

        border-left: none;

        border-bottom: 1px solid #e0e0e0;

      }

    }









/* last page */

.progress-steps .circle {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    z-index: 1;

}

.progress-steps .inactive .circle {

    border: 1px solid #CBD5E1;

    background-color: white;

    color: #1E293B;

    font-weight: 600;

    font-size: 16;

}

.progress-steps .active .circle{

  display: none;

}

.step:not(:last-child)::after {

    content: '';

    position: absolute;

    top: 50%;

    transform: translate(100%, 50%);

    height: 2px;

    width: 50%;

    background-color: #ccc;

    z-index: 0;

    margin: 0px -30px;

}



.booking-hp-set .vr-line{

  display: flex;

  align-items: center;

  gap: 20px;

}

.booking-hp-set .vr-line1{

  border : 0;

  height : 50px; /*your own value to suit your content*/

  width : 1px;

  background-image: -webkit-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);

  background-image: -moz-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);

  background-image: -ms-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);

  background-image: -o-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);

  background-image: linear-gradient(top, #FFFFFF, #000000, #FFFFFF);

}

.booking-hp-set .vr-line::after{

  content: '';

  background-image: url();

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

}

.booking-hp-set .vr-line::before{

  content: '';

  background-image: url();

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

}





/* flatpicker */

.flatpickr-months {

      background: #fff;

      border-bottom: 3px solid #f97316; 

      padding-bottom: 5px;

    }



    .flatpickr-months .flatpickr-prev-month,

    .flatpickr-months .flatpickr-next-month {

      color: #0f172a;

      opacity: 0.6;

    }



    .flatpickr-current-month {

      font-weight: 600;

      color: #0f172a;

    }



    .flatpickr-weekday {

      color: #64748b;

      font-weight: 600;

    }



    .flatpickr-day {

      color: #0f172a;

      border-radius: 50%;

      transition: all 0.2s ease;

    }



    .flatpickr-day:hover {

      background: #f1f5f9;

    }



    .flatpickr-day.selected {

      background: #f97316 !important; 

      color: #fff !important;

    }





/* input */

.passenger-group {

  margin-bottom: 1.5rem;

}

.passenger-title {

  margin-bottom: 0.75rem;

}





.radio-active>input:first-child {

    background-color: var(--primary-color);

}

[class*="radio-active"]>input:first-child {

    position: absolute !important;

    opacity: 0;

    margin: 0;

    background-color: #CBD5E1;

    border-radius: 50%;

    appearance: none;

    -moz-appearance: none;

    -webkit-appearance: none;

    -ms-appearance: none;

    display: block;

    pointer-events: none;

    width: 22px;

    height: 22px;

    outline: none;

    transform: scale(2);

    -ms-transform: scale(2);

    transition: opacity .3s, transform .3s;

}

[class*="radio-active"]>label {

    padding-left: 29px !important;

    min-height: 22px;

    line-height: 22px;

    display: inline-block;

    position: relative;

    vertical-align: top;

    margin-bottom: 0;

    font-weight: normal;

    cursor: pointer;

}



[class*="radio-active"]>input[type="radio"]:first-child:checked+label::before, 

[class*="radio-active"]>input[type="radio"]:first-child:checked+input[type="hidden"]+label::before {

    background-color: transparent;

}

.radio-active>input:first-child:checked+label::before, 

.radio-active>input:first-child:checked+input[type="hidden"]+label::before {

    background-color: var(--primary-color);

    border-color: var(--primary-color);

}



[class*="radio-active"]>input[type="radio"]:first-child+label::before, 

[class*="radio-active"]>input[type="radio"]:first-child+input[type="hidden"]+label::before {

    border-radius: 50%;

}

[class*="radio-active"]>input:first-child+label::before, 

[class*="radio-active"]>input:first-child+input[type="hidden"]+label::before {

    content: "";

    display: inline-block;

    position: absolute;

    width: 22px;

    height: 22px;

    border: 2px solid #CBD5E1;

    border-radius: 3px;

    margin-left: -29px;

    box-sizing: border-box;

}



.radio-active>input[type="radio"]:first-child:checked+label::after, 

.radio-active>input[type="radio"]:first-child:checked+input[type="hidden"]+label::after {

    background-color: var(--primary-color);

}



[class*="radio-active"]>input[type="radio"]:first-child:checked+label::after, 

[class*="radio-active"]>input[type="radio"]:first-child:checked+input[type="hidden"]+label::after {

    content: "";

    position: absolute;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    border: none;

    top: 6px;

    left: 6px;

    transform: none;

    -ms-transform: none;

}





.amount-bar {

      background-color: #fff;

      border-top: 1px solid #e5e7eb;

      box-shadow: 0px -10px 15px -3px #0F172A12, 0px -4px 6px 0px #0F172A0D;

      padding: 1rem 1.5rem;

      display: flex;

      align-items: center;

      justify-content: space-between;

      position: sticky;

      bottom: 0;

      z-index: 10;

      border-radius: 6px 6px 0px 0px;

    }











     /* Progress bar container */

    /* .prog-bar-container {

      position: relative;

      padding: 0 0rem;

    }



    .prog-bar {

      display: flex;

      justify-content: space-between;

      align-items: center;

      list-style: none;

      position: relative;

      padding: 0;

      margin: 0;

    }



    .prog-bar-line {

      position: absolute;

      top: 50%;

      left: 0rem;

      right: 0rem;

      height: 8px;

      transform: translateY(-50%);

      background: linear-gradient(to right, #16a34a 25%, #f59e0b 50%, #ef4444 100%);

      border-radius: 10px;

      z-index: 1;

    }



    .prog-bar-line__fill {

      position: absolute;

      top: 50%;

      left: 3rem;

      height: 8px;

      background-color: #16a34a;

      transform: translateY(-50%);

      border-radius: 10px;

      width: 0;

      z-index: 2;

      transition: width 0.4s ease;

    }



    .prog-bar__step {

      width: 33.33%;

    }

    .prog-bar__step:last-child {

      text-align: end;

      position: absolute;

      width: 100%;

    }

        .prog-bar__step:last-child .prog-bar__step_inner{

          top: 12px;

        }

    .prog-bar__step .price{

      text-align: center;

    }

    .prog-bar__step_inner{

      position: relative;

      z-index: 3;

    }



    .prog-bar__step__bubble {

      width: 30px;

      height: 30px;

      border-radius: 50%;

      background-color: #fff;

      display: inline-flex;

      align-items: center;

      justify-content: center;

      font-size: 14px;

      color: #111827;

      font-weight: 500;

      transition: all 0.3s ease;

      transform: translate(0%, 0%);

      border: 1px solid #E2E8F0;

    }



    .prog-bar__step.active .prog-bar__step__bubble {

      background-color: #16a34a;

      color: #fff;

      transform: translate(0%, 0%);

      border: 1px solid transparent;

    }



    .prog-bar__step__title {

      text-transform: capitalize;

      position: relative;

      top: 20px;

    } */







 #progress-bar {

	 display: table;

	 width: 100%;

	 margin: 0;

	 table-layout: fixed;

	 width: 100%;

	 counter-reset: step;

}

 #progress-bar li {

	 list-style-type: none;

	 display: table-cell;

	 width: 25%;

	 float: left;

	 font-size: 16px;

	 position: relative;

	 text-align: center;

   /* z-index: 1; */

}

 #progress-bar li:before {

	 width: 50px;

	 height: 50px;

	 color: #212121;

   content: '';

	 /* content: counter(step); */

	 /* counter-increment: step; */

	 line-height: 50px;

	 font-size: 18px;

	 border: 1px solid #efefef;

	 display: block;

	 text-align: center;

	 margin: 0 auto 10px auto;

	 border-radius: 50%;

	 background-color: #fff;

   z-index: 1;

   position: relative;

}

 #progress-bar li:after {

	 width: 100%;

	 height: 10px;

	 content: '';

	 position: absolute;

	 background-color: #6b6b6b;

	 top: 25px;

	 left: -50%;

	 z-index: 0;

}

 #progress-bar li:first-child:after {

	 content: none;

}

 #progress-bar li.step-done {

	 color: #16A34A;

   z-index: 1;

}

 #progress-bar li.step-done:before {

	 border-color: #16A34A;

	 background-color: #16A34A;

	 color: #fff;

	 content: "\f00c";

	 font-family: "FontAwesome";

}

 #progress-bar li.step-done + li:after {

	 background-color: #16A34A;

}

 #progress-bar li.step-active {

	 color: #16A34A;

}

 #progress-bar li.step-active:before {

	  border-color: #16A34A;

    /* content: counter(step);   */

	  color: #16A34A;

	  font-weight: 700;

    /* counter-increment: step; */



    content: '\f111';

   font-family: 'Font Awesome 6 Pro';

  } 

  .step-absolute{

    position: absolute;

    top: -26px;

    right: -26px;

  }

 





  ol.stepper {

  

  display: flex;

  list-style: none;

  justify-content: space-between;

  background: 

    linear-gradient(var(--default-b) 0 0) no-repeat

    50% calc((var(--circle) - var(--b))/2)/100% var(--b);

  counter-reset: step;

  margin: 20px;

  padding: 0;

  font-size: 14px;

  font-weight: bold;

  counter-reset: step;

  overflow: hidden;

}

.stepper .stepper-completed::before{

  border-color: #22C55E;

    background-color: #22C55E;

    color: #fff;

    content: "";

    font-family: "FontAwesome";

}

ol.stepper li {

  display: grid;

  place-items: center;

  gap: 5px;

  font-family: sans-serif;

  position: relative;

}

ol.stepper li::before {

  content: counter(step) " ";

  counter-increment: step;

  display: grid;

  place-content: center;

  aspect-ratio: 1;

  height: var(--circle);

  border: 5px solid #fff;

  box-sizing: border-box;

  background: var(--active-b);

  color: var(--active-c);

  border-radius: 50%;

  font-family: monospace;

  z-index: 1;

}

ol.stepper li.active ~ li::before{

  background: var(--default-b);

  color: transparent;

}

ol.stepper li.active::after {

  content: "";

  position: absolute;

  height: var(--b);

  right: 100%;

  top: calc((var(--circle) - var(--b))/2);

  width: 100vw;

  background: var(--active-b);

}





@media (max-width: 600px) {

  ol.stepper {

   display: grid;

   gap: 20px;

  background: 

    linear-gradient(var(--default-b) 0 0) no-repeat

    calc((var(--circle) - var(--b))/2) 50%/ var(--b) 100%;

  }

  ol.stepper li {

    display: flex;

  }

  ol.stepper li.active::after {

    content: "";

    position: absolute;

    width: var(--b);

    bottom: 100%;

    left: calc((var(--circle) - var(--b))/2);

    top: auto;

    right: auto;

    height: 100vw;

    background: var(--active-b);

  }

}













/* new start */

.progress-page ul {

  position: relative;

}

/* .progress-page li{

  width: 33.33%;

  float: left;

  position: relative;

} */

.progress-page li.step-complate .border-line-before{

  display: none;

}



.progress-page li.step-complate{

  display: none;

}

.progress-page li:first-child::before{

  display: none;

}

.progress-page li.border-first.step-complate:before{

  border-bottom: 1px solid #f1f1f1;

}

.progress-page li.border-first:before {

    content: '';

    width: 60px;

    border-bottom: 1px solid#CBD5E1;

}

.progress-page li.active:before {

    content: '';

    width: 60px;

    border-bottom: 1px solid#000;

}



.progress-page li::before span i::before{

  content: counter(step);

  counter-increment: step;    

}

.count-numbers{

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  width: 30px;

  height: 30px;

  border: 1px solid #CBD5E1;

  border-radius: 100%;

  /* color: #fff; */

  /* background-color: #007bff; */

  border-color: #CBD5E1;

  font-size: 16px;

  font-weight: 600;

}



.progress-page li.active span{

  color: #1E293B;

  font-size: 18px;

  font-weight: 600;

}



@media screen and (max-width: 768px) {

  .progress-page li.active:before{

    width: 2px;

    height: 30px;

    border: 0px;

    background-color: #000;

    margin-left: 14px;

  }

  .progress-page li:before{

    width: 2px !important;

    height: 30px;

    border: 0px;

    background-color: #CBD5E1;

    margin-left: 14px;

  }

}









/* auth */



/* .password-eye {

    position: absolute;

    right: 0%;

    padding-right: 16px;

} */



.auth-bg{

  background-size: cover;background-position: center;background-repeat: repeat-x;animation: cloudMove 30s linear 0s infinite;opacity: 1;

}

@keyframes cloudMove {

  0% {

    background-position: -1920px 100%;

  }



  100% {

    background-position: 0 100%;

  }

}

.password-eye {

      position: absolute;

      right: 12px;

      cursor: pointer;

      color: #6c757d;

      display: flex;

      align-items: center;

      justify-content: center;

    }

    .password-eye:hover {

      color: var(--primary-color);

    }



/* .main-three__img{

  opacity: 1;

  -webkit-transform: translateX(0);

  transform: translateX(0);

  -webkit-transition-delay: 3000ms;

  transition-delay: 3000ms;

  -webkit-transition: opacity 2000ms ease, color 500ms ease,

    background 500ms ease, -webkit-transform 2000ms ease;

  transition: opacity 2000ms ease, color 500ms ease,

    background 500ms ease, -webkit-transform 2000ms ease;

  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,

    background 500ms ease;

  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,

    background 500ms ease, -webkit-transform 2000ms ease;

} */

.main-three__img {

  opacity: 1; /* Fully visible when active */

  transform: translateX(0); /* Moves into place */

  transition-delay: 3000ms; /* Starts 3 seconds after becoming active */

  

  /* Multiple vendor-prefixed transitions for browser compatibility */

  transition: 

    transform 2000ms ease,       /* Slide animation */

    opacity 2000ms ease,         /* Fade in */

    color 500ms ease,            /* Color transition (if used) */

    background 500ms ease;       /* Background transition (if used) */

}



.float-bob-y {

  -webkit-animation-name: float-bob-y;

  animation-name: float-bob-y;

  -webkit-animation-duration: 2s;

  animation-duration: 2s;

  -webkit-animation-iteration-count: infinite;

  animation-iteration-count: infinite;

  -webkit-animation-timing-function: linear;

  animation-timing-function: linear;

}



/*** 

=============================================

    Float Bob Y Animation Css

=============================================

***/

@-webkit-keyframes float-bob-y {

  0% {

    transform: translateY(-20px);

  }



  50% {

    transform: translateY(-10px);

  }



  100% {

    transform: translateY(-20px);

  }

}

.form-select:focus{

  border-color: var(--primary-color);

  box-shadow: none;

}

textarea.form-control:focus{

  border-color: var(--primary-color);

  box-shadow: none;

}

input.form-control:focus{

  border-color: var(--primary-color);

  box-shadow: none;

}

.auth-input.form-control:focus{

  box-shadow: none;

}

/* .form-check-input:checked {

    background-color: var(--primary-theme);

    border-color: var(--primary-theme);

} */



/* contact from */



.contact-info {

  display: flex;

  /* width: 100%;

  text-align: center; */

      /* margin-bottom: 10px; */

}

.contact-info-icon {

margin-bottom: 15px;

}

.contact-info-item {

  background: var(--secondarys-color);

  padding: 16px 20px;

}

.contact-info-icon i {

  font-size: 48px;

  color: var(--primary-color);

}

.contact-info-text p{margin-bottom:0px;}

.contact-info-text h2 {

  color: #fff;

  font-size: 22px;

  text-transform: capitalize;

  font-weight: 600;

  margin-bottom: 10px;

}

.contact-info-text span {

  color: #999999;

  /* font-size: 16px; */

  /* font-weight: ; */

  display: inline-block;

  width: 100%;

}







/* profile */

.profile-info-img {

  max-width: 105px;

  height: 105px;

  object-fit: contain;

  border-radius: 50%;

  overflow: hidden;

  border: 1px solid #D8D8D8;

  background: #F6F6F6;

}

.promanage-wrapper .admin-wrapper {

  display: flex;

}

  

.promanage-wrapper .sidebar .sidebar2 a {

  color: var(--secondarys-color);

  text-decoration: none;

  display: block;

  padding: 0.5rem 0.5rem;

  transition: 0.3s;

}



.promanage-wrapper .sidebar .sidebar2 a:hover,

.promanage-wrapper .sidebar .sidebar2 a.active {

    background-color: var(--primary-color);

    color: white;

}

.promanage-wrapper .sidebar .sidebar2 a.active i{

    color: var(--secondary);

}





.promanage-wrapper  .page-section {

  display: none;

}



.promanage-wrapper  .page-section.active {

  display: block;

}



@media (min-width: 768px) {

  .promanage-wrapper .sidebar {

    width: 400px;

    flex-shrink: 0;

    height: 100%;

    overflow-y: auto;

  }

  .promanage-wrapper  .main-content {

    flex-grow: 1;

    overflow-y: auto;

  }



  .promanage-wrapper  .offcanvas-md {

    position: static;

    transform: none;

    visibility: visible !important;

    border-right: 1px solid #dee2e6;

  }



  .promanage-wrapper  .offcanvas-body {

    padding: 1rem 0;

    background-color: #343a40;

    color: white;

  }

  .promanage-wrapper  .offcanvas.offcanvas-start.profile-card{

    width: 280px !important;

    transform: translateX(0%);

  }

  .promanage-wrapper  .sidebar {

    background-color: #fff;

    width: 280px;

    flex-shrink: 0;

    height: 100%;

    overflow-y: auto;

    }

    .promanage-wrapper  .profile-card-z{

        z-index: 1;

    }

}





/* address select */

.address-list .address-card {

  border: 1px solid #e0e0e0;

  border-radius: 12px;

  padding: 1rem;

  transition: 0.3s;

  cursor: pointer;

}



.address-list .address-card.active {

  border-color: var(--primary-color);

  background-color: #fffefb;

  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);

}



.address-list .address-card .tag {

  background-color: #f5f0e7;

  padding: 4px 10px;

  border-radius: 6px;

  font-size: 0.75rem;

  font-weight: 600;

  display: inline-block;

  margin-bottom: 0.5rem;

}



.address-list .radio-style {

  width: 18px;

  height: 18px;

  border: 2px solid var(--primary-color);

  border-radius: 50%;

  position: relative;

  margin-right: 10px;

}



.address-list .radio-style::after {

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  width: 8px;

  height: 8px;

  background: var(--primary-color);

  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);

  transition: 0.2s ease-in-out;

}



.address-list input[type="radio"]:checked + .address-card .radio-style::after {

  transform: translate(-50%, -50%) scale(1);

}



.address-list input[type="radio"] {

  display: none;

}

.calc-w-28 {

    width: calc(100% - 28px);

}

.mute-text1 {

    color: var(--gray-500);

}

/* .button-secondary {

    background-color: var(--primary-color);

    color: #fff;

}

.button-secondary:hover {

    background-color: var(--secondarys-color);

    color: #fff;

} */







/* table */

#bookings .table>:not(caption)>*>*{

  background-color: transparent !important;

}

@media (max-width: 768px) {

    .cart-table td {

        display: block;

        border: none;

        padding: 5px 0;

    }

    .cart-table thead {

        display: none;

    }

    .cart-table td:not(:first-child) {

      position: relative;

      padding-left: 120px;

      border: none;

      border-bottom: 1px solid #eee;

    }

    .cart-table td:not(:first-child):before {

      content: attr(data-th);

      position: absolute;

      left: 10px;

      /* top: 10px; */

      font-weight: bold;

      width: 100px;

      white-space: nowrap;

    }

}







/* seating */

.sw.avail {

    background: var(--avail);

}

.chip .sw {

    width: 14px;

    height: 14px;

    border-radius: 4px;

    display: inline-block;

}

.sw.sel {

    background: var(--selected);

}

.sw.book {

    background: var(--booked);

}





.iconflFront, .iconflTail {

    background-size: 100% 100%;

}

.iconflFront {

    width: 312px;

    height: 232px;

}

.bgProperties {

    background-position: 50%;

    background-repeat: no-repeat;

    background-size: contain;

    display: inline-block;

}

.map-wrapper-seatmatrix {

    background: #fff;

    margin-top: -12px;

    width: 310px;

    direction: ltr;

}

.seats .block svg path{

  fill: #d63384;

}

.seats .active svg path{

  fill: var(--primary-color);

}

.seats .selected-active svg path{

  fill: var(--secondarys-color);

}

.seats .seatavails:hover svg path{

  fill: var(--secondarys-color);

}



.booked-list {

  max-height: 210px;

  overflow: auto;

  padding: 8px;

  border-radius: 8px;

  border: 1px dashed rgba(15, 23, 42, .04);

  background: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(250, 250, 250, .6));

}

.booked-item {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 8px;

  padding: 8px;

  border-radius: 6px;

  margin-bottom: 6px;

  background: #fff;

  border: 1px solid rgba(2, 6, 23, .03);

  font-size: 14px;

}



.theme-box-shadow {

    box-shadow: 0 0rem 0.8rem rgba(52, 53, 52, 0.15);

}







/*  */

.button-switch .btn.active {

  background-color: #0d6efd;

  color: white;

}

/* complate booking */

.theme-border-bottom .border-bottom:last-child{

  border-bottom: 0px solid transparent !important;

}





/* index banner */

.dropdown-arrowdown::after{

  content: '\f078';

  font-family: 'Font Awesome 6 pro';

  font-weight: 900;

  margin-left: 8px;

  font-size: 12px;

  color: #002d5b;

}

.arrow-chevron-down{

      position: absolute;

    top: 4px;

    right: -4px;

}

.dropdown.droptraveller .dropdown-toggle{

  border: none;

  background-color: transparent;

}

.booking-form .dropdown.droptraveller .dropdown-menu{

  padding: 0.5rem 0.5rem;

  min-width: 250px;

}

.booking-form .dropdown.droptraveller ul{

  flex-direction: column;

  padding-left: 0px;

  list-style: none;

  align-items: unset;

}

.booking-form .dropdown.droptraveller ul.drop-rest li div{

      white-space: nowrap !important;

}

.dropdown.droptraveller .dropdown-menu .drop-rest li{

  padding: 5px 0 5px 0;

}

.dropdown.droptraveller .dropdown-menu .drop-rest li.input-number{

  border-bottom: 1px solid #f5faff;

  display: flex;

  padding: 5px 0 5px 0;

  width: 100%;

}

.dropdown.droptraveller .dropdown-menu .drop-rest li .btn {

    background-color: #002d5b;

    color: #ffffff;

    border: 0;

}

.dropdown.droptraveller .dropdown-menu .drop-rest li label {

    width: 100%;

}

.dropdown.droptraveller .dropdown-menu .drop-rest li label input[type="radio"] {

    width: auto;

}

.dropdown.droptraveller .dropdown-menu .plus-minus-input {

    align-items: center;

    width: 45%;

}

.dropdown.droptraveller .dropdown-menu .plus-minus-input .input-group-button button {

    background-color: #002d5b;

    border: none;

    color: #ffffff;

    border-radius: 6px;

}

.dropdown.droptraveller .dropdown-menu .plus-minus-input .input-group-field {

    text-align: center;

    width: 50%;

    background: #f5faff;

    border: 0;

}







.hr-or:after {

    content: '';

    width: 100%;

    height: 1px;

    background-color: #E9EEF2;

    left: 0;

    /* top: 0; */

    position: absolute;

    right: 0;

    top: 0;

    bottom: 0;

    margin: auto;

    border-radius: 6px;

}

.hr-or {

    text-align: center;

    position: relative;

    width: 100%;

    /* margin: 30px 0; */

}

.hr-or span {

    font-style: normal;

    font-weight: 400;

    font-size: 10px;

    line-height: 10px;

    text-align: center;

    color: #8F8F8F;

    background: #E9EEF2;

    border-radius: 16px;

    padding: 8px;

    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;

    width: 35px;

    margin: auto;

    position: relative;

    z-index: 1;

}





/* pagination */

.page-item  .page-link{

  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.24);

-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.24);

-moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.24);

}

.active>.page-link, .page-link.active{

  background-color: var(--primary-color);

  border-color: var(--primary-color);

}

.page-link{

  color: var(--secondarys-color);

}

.active>.page-link, .page-link.active{

  z-index: 2;

}

.page-link:focus,

.page-link:hover{

  color: var(--secondarys-color);

}







/* sweetalert */

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){

    background-color: var(--primary-color) !important;

    border-color: var(--primary-color) !important;

    color: #fff !important;

}





/* extrabag */

.ex-qtyCounter{

  background-color: #fff;

    border-radius: 3px;

    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);

    display: inline-block;

    height: 32px;

    vertical-align: middle;

    width: 80px;

}