:root {
  --primary: #1F1F1F;
  --secondary: #2D3FA8;
  --tertiary: #F3F3F3;
  --button: #F4CC08;
  --pure: #fff;
  --success: #4caf50;
  --info: #2196f3;
  --warning: #ff9800;
  --danger: #f44336;
  --light: #f8f9fa;
  --dark: #343a40;
  --dark-alpha: rgba(52, 58, 64, 0.8);
  --tertiary-color-rgba: rgba(243, 243, 243, 0.4);
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-xxl: 128px;
  --container-width: 1170px;
  --container-max-height: 1020px;
}

.row-divider {
  width: 100%;
  padding-top: 1px;
  border-top: 1px solid var(--light);
}

@keyframes blink-discount {
  0% {
    color: var(--button);
  }
  50% {
    color: var(--light);
  }
  100% {
    color: var(--button);
  }
}
@keyframes gradient-change {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@keyframes moveup {
  0% {
    margin-bottom: -100vh;
  }
  100% {
    margin-bottom: 0;
  }
}
@keyframes flip-animation {
  0% {
    transform: rotateX(0deg);
  }
  10% {
    transform: rotateX(180deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  60% {
    transform: rotateX(1turn);
  }
  100% {
    transform: rotateX(1turn);
  }
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueLight.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 400;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueLightItalic.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 100;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThin.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 100;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThinItalic.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThin.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 200;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThin.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 300;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThin.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 300;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueThin.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueMedium.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 500;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueMediumItalic.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueBold.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 700;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueBoldItalic.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 800;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueBlack.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 800;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueBlackItalic.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 900;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueHeavy.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 900;
  src: local("Helvetica Neue"), url("../fonts/helvetica-neue-5/HelveticaNeueHeavyItalic.otf") format("opentype");
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  background-color: var(--pure);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .container {
  width: 100%;
  max-width: var(--container-width);
}

.fixed-max-width {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

::selection {
  background: var(--primary);
  color: var(--light);
}

.container {
  margin: 0 auto;
  padding: 0 space(md);
}

.top-container {
  width: 100%;
  background-color: var(--primary);
}

.navbar {
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.navbar .navbar-toggle {
  background-color: transparent;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  outline: none;
  border: none;
  display: none;
  transition: all 0.3s ease-in;
}
.navbar .navbar-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--button);
  stroke-width: 2px;
}
.navbar .logo-container {
  max-width: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .logo-container .logo {
  max-width: 180px;
  width: 100%;
}
.navbar .navbar-navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.navbar .navbar-navs .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.navbar .navbar-navs .menu-items .menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
.navbar .navbar-navs .menu-items .menu-list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.navbar .navbar-navs .menu-items .menu-list ul li a {
  text-decoration: none;
  color: var(--tertiary);
  font-size: 16px;
  font-weight: 450;
  transition: all 0.3s ease-in;
  padding: 5px 0;
}
.navbar .navbar-navs .menu-items .menu-list ul li :hover {
  color: var(--button);
  transition: all 0.3s ease-in;
}
.navbar .navbar-navs .menu-items .menu-list .extra-links {
  display: none;
}
.navbar .navbar-navs .action-items .btn-signin {
  background-color: var(--button);
  color: var(--primary);
  border-radius: 10px;
  padding: 8px 20px;
  border: none;
  outline: none;
  transition: all 0.3s ease-in;
  font-weight: 500;
}
.navbar .navbar-navs .action-items .btn-signin:hover {
  background: var(--secondary);
  color: var(--light);
}
.navbar .navbar-navs .action-items .extra-links {
  display: none;
}
@media (max-width: 992px) {
  .navbar .navbar {
    flex-direction: column;
  }
  .navbar .logo-container {
    margin: 0 auto;
  }
  .navbar .navbar-navs {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .navbar .navbar-toggle {
    display: block;
  }
  .navbar .navbar-navs {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background: var(--light);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    width: 280px;
    max-width: 280px;
    transition: opacity 0.15s ease-in, transform 0.15s ease-in;
    opacity: 0;
    transform: translateX(-30px);
    pointer-events: none;
    height: 100vh;
  }
  .navbar .navbar-navs .action-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .navbar .navbar-navs .action-items .extra-links {
    display: block !important;
    padding-top: 10px;
  }
  .navbar .navbar-navs .action-items p {
    color: var(--secondary);
    font-size: 16px;
    text-align: center;
    font-weight: 600;
  }
  .navbar .navbar-navs .action-items .btn-signin {
    width: 200px;
    padding: 15px 15px;
  }
  .navbar .menu-items {
    width: 100%;
    display: block !important;
    padding: 0 20px 0 20px;
  }
  .navbar .menu-items .menu-close-button {
    display: flex !important;
    justify-content: flex-end !important;
    padding: 0 20px 0 0;
  }
  .navbar .menu-items .menu-close-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    stroke-width: 2px;
  }
  .navbar .menu-items .menu-list ul {
    flex-direction: column;
    gap: 15px !important;
  }
  .navbar .menu-items .menu-list ul li {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid var(--dark-alpha);
  }
  .navbar .menu-items .menu-list ul li a {
    color: var(--primary) !important;
    width: 100%;
  }
  .navbar .menu-items .menu-list .extra-links {
    display: block !important;
    padding-top: 10px;
  }
  .navbar .show-sidebar {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.hero-section {
  width: 100%;
  position: relative;
}
.hero-section .hero-content {
  width: 100%;
  position: relative;
  background-image: url("../images/main_slider_1.webp");
  background-position-x: right;
  background-position-y: -38px;
  background-repeat: no-repeat;
  height: 400px;
  min-height: 320px;
  max-height: 457px;
  margin: 0;
  overflow: hidden;
}
.hero-section .hero-content::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 457px;
  min-height: 320px;
  max-height: 457px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-section .animation-container {
  position: absolute;
  width: 100%;
  max-width: 200px; /* Optional: set a max width */
  aspect-ratio: 16/9; /* Maintains a 16:9 ratio */
  margin: 0 auto;
  right: 20px;
  top: 0;
}
.hero-section .hero-text-container {
  position: relative;
  top: 30px;
  max-height: 475px;
}
.hero-section .hero-text-container .heading-text {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.hero-section .hero-text-container .heading-text h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--button);
  line-height: 40px;
  /* text-decoration: underline !important; */
  display: inline-block;
  padding: 0 0 5px;
}
.hero-section .hero-text-container .bottom-text::before {
  content: "";
  position: absolute;
  width: 251px;
  /* height: 2px; */
  background-color: var(--light);
}
.hero-section .hero-text-container .bottom-text p {
  font-size: 2.2em;
  font-weight: 500;
  line-height: 40px;
  color: var(--light);
  padding: 10px 0 0 0;
  margin: 0;
}
.hero-section .hero-text-container .bottom-text p:nth-of-type(2) {
  padding-top: 10px;
}
.hero-section .hero-text-container .bottom-text span {
  font-weight: 900;
  animation: blink-discount 0.8s linear infinite;
  text-wrap: nowrap;
}
.hero-section .hero-text-container .bottom-text .discount-text {
  font-size: 1.8em;
  font-weight: 500;
  line-height: 40px;
  color: var(--light);
  padding: 15px 0 0 0;
}
.hero-section .hero-text-container .bottom-text .discount-text span {
  font-weight: 700 !important;
  color: var(--button) !important;
}
.hero-section .hero-text-container .bottom-text .hero-note {
  display: block !important;
  font-size: 0.9em !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  color: var(--light) !important;
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    height: 360px !important;
    background-position: 99% top !important;
    background-size: 1450px !important;
  }
  .hero-section .hero-text-container {
    width: 70%;
    height: 360px !important;
  }
  .hero-section .heading-text h1 {
    position: relative;
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .hero-section .bottom-text {
    position: absolute !important;
    bottom: 0 !important;
  }
  .hero-section .bottom-text::before {
    content: "";
    position: absolute;
    background: none !important;
  }
  .hero-section .bottom-text p {
    font-size: 25px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content {
    height: 360px !important;
    background-position: 94% top !important;
    background-size: 1450px !important;
  }
  .hero-section .hero-text-container {
    width: 90%;
    height: 360px !important;
  }
  .hero-section .hero-text-container h1 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 576px) {
  .hero-section .animation-container {
    max-width: 150px !important;
    width: 100%;
    right: 0;
    top: 20px;
  }
  .hero-section .hero-content {
    height: 360px !important;
    max-height: 360px !important;
    background-image: url("../images/main_slider_mbl.webp") !important;
    background-position-x: center !important;
    background-position-y: -75px !important;
    background-repeat: no-repeat;
    background-size: 100% !important;
  }
  .hero-section .hero-text-container {
    width: 90%;
    height: 360px !important;
    max-height: 360px !important;
  }
  .hero-section .hero-text-container .bottom-text p {
    font-size: 1.6em !important;
  }
  .hero-section .hero-text-container .bottom-text .discount-text {
    font-size: 1.1em !important;
    font-weight: 500;
    line-height: 40px;
    color: var(--light);
    padding: 15px 0 0 0;
  }
  .hero-section .hero-text-container .bottom-text .discount-text span {
    font-weight: 700 !important;
    color: var(--button) !important;
  }
  .hero-section .heading-text {
    width: 300px !important;
  }
  .hero-section .heading-text h1 {
    text-decoration: none;
    font-size: 18px !important;
    line-height: 20px !important;
  }
  .hero-section .heading-text h1::before {
    width: 100px;
  }
}

.booking-section {
  position: relative;
}
.booking-section .booking-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  top: -45px;
  transition: all 1s ease-in-out;
}
.booking-section .booking-container .booking-content {
  background-color: var(--button);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.5s ease-in-out;
}
.booking-section .booking-container .booking-content .trip-type-radios {
  padding: 10px 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary);
}
.booking-section .booking-container .booking-content .trip-type-radios input[type=radio] {
  background-color: var(--secondary);
  border-color: var(--secondary);
  padding: 10px;
}
.booking-section .booking-container .booking-content .source-destination-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section .source,
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section .destination {
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
  width: 100%;
}
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section .source input,
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section .destination input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -462px;
  background-repeat: no-repeat;
  padding-left: 32px;
  font-weight: 500;
}
.booking-section .booking-container .booking-content .source-destination-section .sd-input-section .swap-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/icon01.svg");
  background-position: 7px -655px;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  z-index: 2;
  cursor: pointer;
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section .datepickers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section .datepickers input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section .datepickers input:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section .datepickers .input-element {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 4px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
  display: flex;
  align-items: center;
  height: 22px;
  cursor: pointer;
}
.booking-section .booking-container .booking-content .source-destination-section .datepickers-section .datepickers .input-element:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.booking-section .booking-container .booking-content .source-destination-section .search-button-section .search-button {
  background-color: var(--secondary);
  color: var(--pure);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
}

.sticky-section {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out !important;
  z-index: 1000;
  background-color: var(--primary) !important;
  opacity: 0.98;
}
.sticky-section .booking-container {
  top: 0 !important;
}
.sticky-section .booking-content {
  background-color: var(--primary) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.sticky-section .search-button-section .search-button {
  background-color: var(--button) !important;
  color: var(--primary) !important;
}

@media (max-width: 992px) {
  .booking-container {
    top: 0 !important;
    background-color: var(--button) !important;
  }
  .booking-container .booking-content {
    width: 100% !important;
    border-radius: 0px !important;
    box-shadow: none !important;
  }
  .sticky-section {
    background-color: var(--primary) !important;
  }
}
@media (max-width: 768px) {
  .booking-container {
    top: 0 !important;
    background-color: var(--button) !important;
  }
  .booking-container .booking-content {
    width: 100% !important;
    border-radius: 0px !important;
    box-shadow: none !important;
  }
  .booking-container .source-destination-section {
    flex-direction: column !important;
    gap: 13px !important;
  }
  .booking-container .source-destination-section .search-button-section {
    width: 100% !important;
  }
  .booking-container .source-destination-section .search-button-section .search-button {
    width: 100% !important;
    font-size: 16px !important;
    padding: 10px 0px !important;
  }
  .booking-container .source-destination-section .datepickers-section {
    width: 100% !important;
  }
  .sticky-section {
    background-color: var(--primary) !important;
  }
  .sticky-section .booking-content {
    height: 75px;
    max-height: 75px;
    overflow: hidden;
  }
  .sticky-section .booking-content .source-destination-section .sd-input-section .source {
    position: relative;
    width: 99% !important;
  }
  .sticky-section .booking-content .source-destination-section .sd-input-section .source::after {
    position: absolute;
    right: 20px;
    top: 7px;
    content: "\f002";
    font-size: 20px;
    color: var(--primary);
    font-family: FontAwesome;
  }
  .sticky-section .booking-content .source-destination-section .sd-input-section .swap-icon {
    display: none;
  }
  .sticky-section .booking-content .source-destination-section .sd-input-section .destination {
    display: none !important;
  }
  .sticky-section .booking-content .source-destination-section .datepickers-section {
    display: none !important;
  }
  .sticky-section .booking-content .source-destination-section .search-button-section {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .sd-input-section {
    flex-direction: column !important;
    gap: 13px !important;
  }
  .sd-input-section input {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 4px 0;
  }
  .sd-input-section .swap-icon {
    right: 10% !important;
    left: auto !important;
    rotate: 90deg;
  }
  .datepickers-section .datepickers .input-element {
    font-size: 14px !important;
  }
  .datepickers-section .datepickers .input-element:last-child {
    background-position: 16px -912px !important;
    padding-left: 44px !important;
  }
}
.offer-section {
  width: 100%;
  max-height: 600px;
  margin-top: -70px;
}
.offer-section .offer-container {
  width: 100%;
  max-height: 600px;
}
.offer-section .offer-container .offer-title {
  margin-top: 20px;
}
.offer-section .offer-container .offer-title h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--secondary);
  padding-top: 20px;
}
.offer-section .offer-container .offer-title p {
  font-size: 17px;
  padding-top: 0px;
  margin-top: -5px;
}
.offer-section .offer-container .event-image {
  position: relative;
  background-image: url("../images/event-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 600px;
  max-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  z-index: -1;
}
.offer-section .offer-container .event-image .event-text-button {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 20px;
}
.offer-section .offer-container .event-image .event-text-button .event-text h3 {
  color: var(--light);
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.offer-section .offer-container .event-image .event-text-button .event-text p {
  color: var(--light);
  font-size: 17px;
  font-weight: 400;
  line-height: 40px;
}
.offer-section .offer-container .event-image .event-text-button .event-button {
  background-color: var(--button);
  color: var(--primary);
  max-width: 120px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  padding: 15px 20px;
  border: none;
  outline: none;
  transition: all 0.3s ease-in;
}
.offer-section .offer-container .event-image .event-text-button .event-button:hover {
  background: var(--secondary);
  color: var(--light);
  border: 1px solid var(--light);
}

@media (max-width: 1400px) {
  .event-section {
    max-height: 30vw !important;
    height: 30vw !important;
  }
  .event-container {
    max-height: 30vw !important;
    height: 30vw !important;
  }
  .event-image {
    height: 30vw !important;
    max-height: 30vw !important;
  }
}
@media (max-width: 992px) {
  .offer-section {
    margin-top: 10px !important;
  }
  .event-image {
    height: 50vw !important;
    max-height: 50vw !important;
  }
}
@media (max-width: 576px) {
  .offer-title h3 {
    font-size: 30px !important;
  }
  .event-image {
    height: 50vw !important;
    max-height: 50vw !important;
  }
  .event-image .event-text-button {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    height: 90% !important;
  }
  .event-image .event-text-button .event-text {
    padding: 5px 0px 25px 0px !important;
  }
  .event-image .event-text-button .event-text h3 {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .event-image .event-text-button .event-text p {
    font-size: 12px !important;
    line-height: 20px !important;
    width: 80% !important;
  }
}
.why-choose-section {
  margin: 200px 0px 30px 0px;
  padding: 20px 0px;
  width: 100%;
  max-width: 100%;
  max-height: var(--container-max-height);
}
.why-choose-section .why-choose-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.why-choose-section .why-choose-container .why-choose-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.why-choose-section .why-choose-container .why-choose-title-section .why-choose-title h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 10px;
  color: var(--secondary);
  margin-bottom: 0;
  padding-bottom: 0;
}
.why-choose-section .why-choose-container .why-choose-title-section .why-choose-title p {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary);
  line-height: 25px;
  padding-top: 15px;
}
.why-choose-section .why-choose-container .why-choose-title-section .carousel-navs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose-section .why-choose-container .why-choose-title-section .carousel-navs button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 25px;
  color: var(--dark-alpha);
}
.why-choose-section .why-choose-container .why-choose-title-section .carousel-navs button:hover {
  color: var(--secondary);
}

@media (max-width: 1400px) {
  .why-choose-section {
    margin-top: 80px !important;
  }
}
@media (max-width: 1200px) {
  .why-choose-section {
    margin-top: 100px !important;
  }
}
@media (max-width: 992px) {
  .why-choose-section {
    margin-top: 220px !important;
  }
  .why-choose-section .why-choose-title h3 {
    line-height: 25px !important;
    font-size: 25px !important;
  }
  .why-choose-section .why-choose-title p {
    line-height: 20px !important;
  }
}
@media (max-width: 576px) {
  .why-choose-section {
    margin-top: 120px !important;
  }
  .why-choose-section .carousel-navs {
    display: none !important;
  }
}
.chooseus-section {
  width: 100%;
  max-width: 100%;
  max-height: var(--container-max-height);
  background-color: var(--secondary);
  margin: 30px 0px 35px 0px;
  position: relative;
}
.chooseus-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/choosebg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.chooseus-section .chooseus-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0px;
}
.chooseus-section .chooseus-container .chooseus-title h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 10px;
  color: var(--button);
  text-align: center;
  padding: 30px 0px 0px 0px;
}
.chooseus-section .chooseus-container .chooseus-title p {
  padding: 15px 0px;
  font-size: 17px;
  font-weight: 500;
  line-height: 10px;
  color: var(--tertiary);
  text-align: center;
}
.chooseus-section .chooseus-container .chooseus-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card {
  width: 352px;
  height: 327px;
  padding: 48px 0px 0px 0px;
  text-align: center;
  position: relative;
  z-index: 0;
  background-color: transparent;
  border: 1px solid var(--button);
  border-radius: 20px;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card .chooseuscardimage {
  height: 92px;
  width: 92px;
  margin: 0 auto;
  display: inline-block;
  background-image: url("../images/icon01.svg");
  background-position: center -2234px;
  background-repeat: no-repeat;
  background-color: var(--button);
  border-radius: 50%;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card .chooseuscardimage02 {
  background-position: center -2478px;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card .chooseuscardimage03 {
  background-position: center -2722px;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card p {
  color: var(--button);
  padding: 28px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.chooseus-section .chooseus-container .chooseus-cards .chooseus-card span {
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--tertiary);
  line-height: 22px;
  text-align: center;
  padding: 14px 51px 0;
}

@media (max-width: 992px) {
  .chooseus-section {
    margin-top: 30px !important;
  }
  .chooseus-section::after {
    background-position: 50% !important;
    background-size: 220% !important;
  }
  .chooseus-cards {
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .chooseus-title h3 {
    font-size: 25px !important;
  }
  .chooseus-title p {
    line-height: 15px !important;
    font-size: 14px !important;
  }
  .chooseus-cards .chooseus-card {
    display: flex;
    width: 100% !important;
    height: 150px;
    max-height: 150px;
    padding: 10px 17px !important;
    justify-content: left !important;
    align-items: center !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text {
    max-width: 80%;
    width: 100% !important;
    text-align: left !important;
    line-height: 5px !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text p {
    text-align: left !important;
    line-height: 5px !important;
    padding: 5px 0px !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text span {
    text-align: left !important;
    line-height: 20px !important;
    padding: 5px 0px !important;
  }
}
@media (max-width: 576px) {
  .chooseus-section {
    max-height: 100% !important;
  }
  .chooseus-title h3 {
    line-height: 20px !important;
    font-size: 20px !important;
  }
  .chooseus-cards .chooseus-card {
    display: block !important;
    width: 352px !important;
    height: 327px !important;
    max-height: 327px !important;
    padding: 48px 0px 0px 0px !important;
    text-align: center !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    line-height: 20px !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text p {
    text-align: center !important;
    line-height: 20px !important;
    padding: 10px 22px !important;
  }
  .chooseus-cards .chooseus-card .choose-card-text span {
    text-align: center !important;
    line-height: 20px !important;
    padding: 10px 15px !important;
  }
}
.amenities-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: var(--container-max-height);
}
.amenities-section .amenities-title {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.amenities-section .amenities-title h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 30px;
  color: var(--secondary);
}
.amenities-section .amenities-title p {
  font-size: 17px;
  font-weight: 500;
  padding: 20px 0px;
  color: var(--primary);
}
.amenities-section .amenities-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
.amenities-section .amenities-row .amenities-card {
  width: 370px;
  height: 133px;
  border-radius: 20px;
  background-color: var(--button);
  padding: 20px 0px 0px 20px;
}
.amenities-section .amenities-row .amenities-card em {
  width: 95px;
  height: 92px;
  border-radius: 20px;
  background-color: var(--secondary);
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/icon01.svg");
  background-position: center -2956px;
  background-repeat: no-repeat;
}
.amenities-section .amenities-row .amenities-card span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 28px;
  line-height: 25px;
}
.amenities-section .amenities-row .amenitiescard02 em {
  background-position: center -3196px;
}
.amenities-section .amenities-row .amenitiescard03 em {
  background-position: center -3440px;
}
.amenities-section .amenities-row .amenitiescard04 em {
  background-position: center -3685px;
}
.amenities-section .amenities-row .amenitiescard05 em {
  background-position: center -3930px;
}
.amenities-section .amenities-row .amenitiescard06 em {
  background-position: center -4177px;
}

@media (max-width: 768px) {
  .amenities-card {
    height: auto !important;
    width: 30.4% !important;
    padding: 0 !important;
    background-color: transparent !important;
    text-align: center;
  }
  .amenities-card em {
    width: 80px !important;
    height: 80px !important;
    background-color: var(--button) !important;
    background-position: center -4421px !important;
  }
  .amenities-card span {
    padding: 0 !important;
    display: block !important;
    text-align: center !important;
    font-size: 14px !important;
  }
  .amenitiescard02 em {
    background-position: center -4659px !important;
  }
  .amenitiescard03 em {
    background-position: center -4905px !important;
  }
  .amenitiescard04 em {
    background-position: center -5149px !important;
  }
  .amenitiescard05 em {
    background-position: center -5391px !important;
  }
  .amenitiescard06 em {
    background-position: center -5635px !important;
  }
}
@media (max-width: 576px) {
  .amenities-title h3 {
    font-size: 25px !important;
  }
  .amenities-row {
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 10px;
  }
  .amenities-card {
    width: 28.4% !important;
  }
  .amenities-card span {
    font-weight: 400 !important;
    font-size: 10px !important;
  }
}
.app-promotions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--button);
  position: relative;
  overflow: hidden;
  max-height: var(--container-max-height);
  margin: 150px 0px;
}
.app-promotions::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-image: url("../images/appbg.png");
  background-position-x: 140%;
  background-position-y: 70%;
  background-size: 70%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.app-promotions .app-promotion-conatiner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0px;
  z-index: 2 !important;
}
.app-promotions .app-promotion-conatiner .app-text-section h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  color: var(--secondary);
  padding: 0px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section {
  display: flex;
  padding: 20px 10px;
  gap: 30px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary);
  max-width: 250px;
  width: 100%;
  padding: 10px 10px 10px 0px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .input-container {
  position: relative;
  width: 100%;
  background-color: var(--pure);
  min-height: 50px;
  border-radius: 30px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .input-container input {
  width: 100%;
  height: 50px;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 30px;
  background-color: var(--pure);
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .input-container button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary);
  color: var(--pure);
  width: 120px;
  height: 50px;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .input-container button:hover {
  background-color: var(--primary-color);
  color: var(--pure);
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .app-group-icon {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .app-group-icon a {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/googleicon.png");
  background-position: center -10px;
  background-repeat: no-repeat;
  width: 135px;
  height: 40px;
  background-size: 135px;
  margin-left: auto;
  margin-bottom: 10px;
  border: 1px solid var(--tertiary-color-rgba);
  border-radius: 8px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .link-section .app-group-icon a:last-child {
  background-position: center -145px;
  margin-left: 8px;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .qr-code-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
}
.app-promotions .app-promotion-conatiner .app-text-section .get-link-section .qr-code-section h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  padding: 12px 0px;
  max-width: 130px;
}
.app-promotions .app-promotion-conatiner .app-text-section .highlights {
  display: grid;
  grid-template-columns: repeat(2, 3fr); /* 3 columns, equal width */
  gap: 10px 30px; /* row-gap and column-gap */
  max-width: 480px;
}
.app-promotions .app-promotion-conatiner .app-text-section .highlights span {
  color: var(--secondary);
  font-size: 17px;
  font-weight: 600;
}
.app-promotions .app-promotion-conatiner .app-text-section .highlights span i {
  padding: 0px 10px;
}

@media (max-width: 992px) {
  .app-promotions {
    margin-top: 200px;
  }
}
@media (max-width: 768px) {
  .app-promotions::after {
    background-position: 120%;
    height: 100%;
    background-size: 130%;
  }
  .app-promotion-conatiner {
    flex-direction: column;
  }
  .app-promotion-conatiner .app-text-section {
    max-width: 85%;
    width: 100%;
    flex-direction: column;
  }
  .app-promotion-conatiner .app-text-section .qr-code-section {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .app-promotions::after {
    background-position: center;
    background-size: 200%;
  }
  .app-promotion-conatiner .app-text-section {
    padding-top: 170px !important;
  }
  .app-promotion-conatiner .app-text-section h3 {
    font-size: 23px !important;
    text-align: center !important;
  }
  .app-promotion-conatiner .app-text-section .highlights {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
  }
  .app-promotion-conatiner .app-text-section .highlights span {
    text-align: left;
    font-size: 18px !important;
    font-weight: 600 !important;
  }
  .app-promotion-conatiner .app-text-section .get-link-section {
    display: flex !important;
    flex-direction: column;
  }
  .app-promotion-conatiner .app-text-section .get-link-section .link-section h3 {
    font-size: 18px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .app-promotion-conatiner .app-text-section .get-link-section .link-section .input-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .app-promotion-conatiner .app-text-section .get-link-section .link-section .app-group-icon {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .app-promotion-conatiner .app-text-section .get-link-section .link-section .app-group-icon a {
    margin-left: 0px !important;
    margin-bottom: 0px !important;
  }
}
.modify-search-booking-date-container .ms-booking-section {
  position: relative;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  top: -47px;
  transition: all 1s ease-in-out;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-header {
  visibility: hidden;
  height: 0px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content {
  background-color: var(--button);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.5s ease-in-out;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-trip-type-radios {
  padding: 10px 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary);
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-trip-type-radios input[type=radio] {
  background-color: var(--secondary);
  border-color: var(--secondary);
  padding: 10px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-source,
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-destination {
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
  width: 100%;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-source input,
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-destination input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -457px;
  background-repeat: no-repeat;
  padding-left: 32px;
  font-weight: 500;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-swap-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/icon01.svg");
  background-position: 7px -655px;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  z-index: 2;
  cursor: pointer;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section .ms-datepickers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section .ms-datepickers input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section .ms-datepickers input:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section .ms-datepickers .ms-input-element {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 4px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
  display: flex;
  align-items: center;
  height: 22px;
  cursor: pointer;
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-datepickers-section .ms-datepickers .ms-input-element:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.modify-search-booking-date-container .ms-booking-section .ms-booking-container .ms-booking-content .ms-source-destination-section .ms-search-button-section .ms-search-button {
  background-color: var(--secondary);
  color: var(--pure);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
}
.modify-search-booking-date-container .ms-sticky-section {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out !important;
  z-index: 1000;
  background-color: var(--primary) !important;
  opacity: 0.98;
}
.modify-search-booking-date-container .ms-sticky-section .ms-booking-container {
  top: 0 !important;
}
.modify-search-booking-date-container .ms-sticky-section .ms-booking-content {
  background-color: var(--primary) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.modify-search-booking-date-container .ms-sticky-section .ms-search-button-section .ms-search-button {
  background-color: var(--button) !important;
  color: var(--primary) !important;
}
@media (max-width: 992px) {
  .modify-search-booking-date-container .ms-booking-container {
    top: 0 !important;
    background-color: var(--button);
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-content {
    width: 100% !important;
    border-radius: 0px !important;
    box-shadow: none !important;
  }
  .modify-search-booking-date-container .ms-sticky-section {
    background-color: var(--primary) !important;
  }
}
@media (max-width: 768px) {
  .modify-search-booking-date-container .ms-booking-container {
    top: 0 !important;
    background: var(--pure) !important;
    height: 60px;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-header {
    position: relative;
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 5px 10px;
    margin: 0px 5px;
    border-bottom: 2px solid var(--secondary);
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-header .ms-modify-search-button {
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px !important;
    background-color: var(--secondary) !important;
    color: var(--pure) !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    min-width: 180px !important;
    height: 50px !important;
    box-shadow: rgba(255, 255, 255, 0.822) 0px 0px 0.25em, rgba(255, 255, 255, 0.187) 0px 0.25em 1em;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-header .param-search-data {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-header .param-search-data span {
    font-size: 16px;
    font-weight: 600;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-header .journey-edit-button {
    font-size: 30px !important;
    background-color: var(--pure) !important;
    color: var(--primary) !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.822) 0px 0px 0.25em, rgba(255, 255, 255, 0.187) 0px 0.25em 1em;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-booking-content {
    width: 100% !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    visibility: hidden !important;
    height: 0px !important;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-source-destination-section {
    flex-direction: column !important;
    gap: 13px !important;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-source-destination-section .ms-search-button-section {
    width: 100% !important;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-source-destination-section .ms-search-button-section .ms-search-button {
    width: 100% !important;
    font-size: 16px !important;
    padding: 10px 0px !important;
  }
  .modify-search-booking-date-container .ms-booking-container .ms-source-destination-section .ms-datepickers-section {
    width: 100% !important;
  }
  .modify-search-booking-date-container .ms-sticky-section {
    background-color: var(--primary) !important;
    height: 73px !important;
  }
  .modify-search-booking-date-container .ms-sticky-section .ms-booking-header {
    margin: 10px 10px !important;
    padding: 5px 3px 10px 3px;
    border-bottom: none !important;
  }
  .modify-search-booking-date-container .ms-sticky-section .ms-booking-header .param-search-data {
    color: var(--pure) !important;
  }
  .modify-search-booking-date-container .ms-sticky-section .ms-booking-content {
    overflow: hidden;
  }
  .modify-search-booking-date-container .ms-sticky-section .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-source {
    position: relative;
    width: 99% !important;
  }
  .modify-search-booking-date-container .ms-sticky-section .ms-booking-content .ms-source-destination-section .ms-sd-input-section .ms-source::after {
    position: absolute;
    right: 20px;
    top: 7px;
    content: "\f002";
    font-size: 20px;
    color: var(--primary);
    font-family: FontAwesome;
  }
}
@media (max-width: 576px) {
  .modify-search-booking-date-container .ms-sd-input-section {
    flex-direction: column !important;
    gap: 13px !important;
  }
  .modify-search-booking-date-container .ms-sd-input-section input {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 4px 0;
  }
  .modify-search-booking-date-container .ms-sd-input-section .ms-swap-icon {
    right: 10% !important;
    left: auto !important;
    rotate: 90deg;
  }
  .modify-search-booking-date-container .ms-datepickers-section .ms-datepickers .ms-input-element {
    font-size: 14px !important;
  }
  .modify-search-booking-date-container .ms-datepickers-section .ms-datepickers .ms-input-element:last-child {
    background-position: 16px -912px !important;
    padding-left: 44px !important;
  }
}
.modify-search-booking-date-container .ms-visible {
  position: relative !important;
  height: 100% !important;
  visibility: visible !important;
  z-index: 10000 !important;
  width: 100% !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.modify-search-booking-date-container .ms-booking-container-mobile {
  position: relative;
  width: 100%;
  max-width: 100%;
  transition: all 1s ease-in-out;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile {
  background-color: var(--button);
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile {
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
  align-items: center;
  width: 100%;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section .ms-source,
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section .ms-destination {
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
  width: 100%;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section .ms-source input,
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section .ms-destination input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -462px;
  background-repeat: no-repeat;
  padding-left: 32px;
  font-weight: 500;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-sd-input-section .ms-swap-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/icon01.svg");
  background-position: 7px -655px;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  z-index: 2;
  cursor: pointer;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section .ms-datepickers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--light);
  padding: 9px 12px;
  border-radius: 8px;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section .ms-datepickers input {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 7px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section .ms-datepickers input:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section .ms-datepickers .ms-input-element {
  width: 100%;
  line-height: 0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background-color: var(--light);
  background-image: url("../images/icon01.svg");
  background-position: 4px -912px;
  background-repeat: no-repeat;
  padding-left: 32px;
  display: flex;
  align-items: center;
  height: 22px;
  cursor: pointer;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-datepickers-section .ms-datepickers .ms-input-element:last-child {
  border-left: 2px solid var(--dark-alpha);
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-search-button-section {
  width: 100% !important;
}
.modify-search-booking-date-container .ms-booking-container-mobile .ms-booking-content-mobile .ms-source-destination-section-mobile .ms-search-button-section .ms-search-button {
  background-color: var(--primary);
  color: var(--pure);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  min-width: 100%;
}

.bookingpage-search-container {
  background-color: var(--primary);
  padding-top: 40px;
  margin-top: -5px;
}

.journey-section {
  width: 100%;
  margin-top: -32px;
}
.journey-section .journey-section-content {
  display: flex;
  gap: 1rem;
}
.journey-section .journey-section-content .journey-filter-section {
  position: relative;
  max-width: 25%;
  width: 25%;
  max-height: 100vh;
  overflow-y: auto;
  color: var(--secondary);
  transition: all 0.3s ease-in;
}
.journey-section .journey-section-content .journey-filter-section::-webkit-scrollbar {
  width: 1px;
}
.journey-section .journey-section-content .journey-filter-section::-webkit-scrollbar-track {
  background: #ede8e8;
  border-radius: 10px;
}
.journey-section .journey-section-content .journey-filter-section .horizontal-line {
  background-color: #ede8e8;
  height: 1px;
  margin: 5px 0px;
}
.journey-section .journey-section-content .journey-filter-section .filters {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
}
.journey-section .journey-section-content .journey-filter-section .filters h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 0px;
}
.journey-section .journey-section-content .journey-filter-section .filters h3 span {
  color: var(--dark-alpha);
  cursor: pointer;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 0 !important;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian .chips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-alpha);
  border: 1px solid var(--secondary);
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 180px;
  overflow-x: hidden;
  cursor: pointer;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian .chips .chip-icon {
  height: 32px;
  width: 26px;
  background-image: url(/images/icon01.svg);
  background-position: 0 -6785px;
  background-repeat: no-repeat;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian .chips .cicon1 {
  background-position: left -7004px !important;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian .chips .cicon2 {
  background-position: left -7221px !important;
}
.journey-section .journey-section-content .journey-filter-section .departure-time-accordian .chips .cicon3 {
  background-position: left -7442px !important;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1px 1px;
  margin: 1px 1px;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section .bustype-chip {
  display: flex;
  justify-content: start;
  gap: 5px;
  padding-left: 0px;
  align-items: center;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section .bustype-chip input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  /* Add other resets as needed */
  background-color: #fff;
  margin: 0;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section .bustype-chip input[type=checkbox] {
  border: 1px solid var(--dark-alpha);
  width: 20px;
  height: 20px;
  cursor: pointer;
  /* Use display: flex to help with positioning the pseudo-element */
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-section .journey-section-content .journey-filter-section .bustype-section .bustype-chip input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.journey-section .journey-section-content .journey-filter-section .bustype-section .bustype-chip label {
  font-size: 0.9em;
  color: var(--dark-alpha);
  cursor: pointer;
}
.journey-section .journey-section-content .journey-filter-section .places-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
  margin: 10px 0px;
}
.journey-section .journey-section-content .journey-filter-section .places-list h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1px 1px;
  margin: 1px 1px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .search-box {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color: #ede8e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 34px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .search-box input {
  outline: none;
  border: none;
  width: 100%;
  background: transparent;
  color: var(--primary);
  padding: 0px 10px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .search-box .search-icon {
  position: absolute;
  top: auto;
  right: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  max-width: 300px;
  overflow-x: auto;
  padding: 2px 0px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places::-webkit-scrollbar {
  width: 2px !important;
  height: 2px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places::-webkit-scrollbar-thumb {
  background-color: var(--button);
  border-radius: 4px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places::-webkit-scrollbar-track {
  background: var(--secondary);
  border-radius: 4px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips {
  display: flex;
  align-items: center;
  gap: 5px;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  /* Add other resets as needed */
  background-color: #fff;
  margin: 0;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips input[type=checkbox] {
  border: 1px solid var(--dark-alpha);
  width: 13x;
  height: 13x;
  max-width: 13px;
  max-height: 13px;
  cursor: pointer;
  /* Use display: flex to help with positioning the pseudo-element */
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips label {
  font-size: 0.9rem;
  color: var(--dark-alpha);
  cursor: pointer;
  max-width: 100%;
  width: 200px;
  height: 20px;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.journey-section .journey-section-content .journey-filter-section .places-list .places .places-chips label::-webkit-scrollbar {
  display: none;
}
.journey-section .journey-section-content .journey-filter-section .amenities {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
  margin: 10px 0px;
}
.journey-section .journey-section-content .journey-filter-section .amenities h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
}
.journey-section .journey-section-content .journey-filter-section .amenities .amenities-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.journey-section .journey-section-content .journey-filter-section .amenities .amenities-content .amenities-chips {
  border: 1px solid var(--dark-alpha);
  border-radius: 8px;
  padding: 2px 4px;
  color: var(--dark-alpha);
  cursor: pointer;
}
.journey-section .journey-list-section {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0px 5px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.journey-section .journey-list-section::-webkit-scrollbar {
  width: 1px;
}
.journey-section .journey-list-section::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.journey-section .journey-list-section .journey-header-banner {
  padding: 5px 5px;
}
.journey-section .journey-list-section .journey-header-banner .banner-file {
  position: relative;
}
.journey-section .journey-list-section .journey-header-banner .banner-file::before {
  position: absolute;
  content: "";
  background: url("../images/routelogo.svg");
  top: 15px;
  left: 20px;
  width: 170px;
  height: 44px;
  background-repeat: no-repeat;
}
.journey-section .journey-list-section .journey-header-banner .banner-file iframe {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 8px;
  aspect-ratio: 20.8/5;
}
.journey-section .journey-list-section .journey-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.journey-section .journey-list-section .journey-list .journey-route-headers {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--button);
}
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-cities,
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-discounts {
  display: flex;
  padding: 0 !important;
  gap: 3px;
}
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-cities .city-headers,
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-discounts .city-headers {
  background-color: var(--button);
  padding: 8px 16px;
  color: var(--primary);
  font-weight: 600;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-cities .return-city-header,
.journey-section .journey-list-section .journey-list .journey-route-headers .journey-route-discounts .return-city-header {
  background-color: #ede8e8;
  padding: 8px 16px;
  color: var(--primary);
  font-weight: 600;
  border-top: 1px dashed var(--dark-alpha);
  border-left: 1px dashed var(--dark-alpha);
  border-right: 1px dashed var(--dark-alpha);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .journey-route-discounts-smallscreen {
  display: none;
}
.journey-section .journey-list-section .journey-list .journey-labels {
  display: flex;
  justify-content: space-between;
}
.journey-section .journey-list-section .journey-list .journey-labels .jlabels {
  color: var(--secondary);
  padding: 5px 10px;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .journey-labels .jlabels-bold {
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .card-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 5px;
}
.journey-section .journey-list-section .journey-list .bus-route-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  margin: 10px 0px;
  padding: 5px 20px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings {
  display: flex;
  gap: 10px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-name-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 230px;
  width: 230px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-name-type .bus-name {
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-name-type .bus-type {
  border: 1px solid var(--secondary);
  padding: 2px 4px;
  border-radius: 10px;
  display: inline;
  color: var(--secondary);
  text-align: center;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-timings {
  display: flex;
  gap: 20px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-timings .start-timings,
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-timings .end-timings, .journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-name-type-timings .bus-timings .hours-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-ratings {
  display: flex;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-ratings .rating-icon {
  font-size: 1.1rem;
  color: var(--secondary);
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-fair .fair-details {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-fair .fair-details span {
  text-align: end;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-time .bus-fair .fair-details .price {
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .route-amenities-and-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .route-amenities-and-nav .amenities-chips {
  display: flex;
  gap: 5px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .route-amenities-and-nav .amenities-chips .am-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--secondary);
  text-align: center;
  color: var(--secondary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .route-amenities-and-nav .route-nav {
  display: flex;
  flex-direction: row;
  color: var(--secondary);
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .route-amenities-and-nav .route-nav span {
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid var(--secondary);
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .seat-view-part {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .seat-view-part .no-of-seats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .seat-view-part .no-of-seats span {
  font-weight: 600;
  color: var(--dark-alpha);
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .seat-view-part .view-seats .view-seats-button {
  border: none;
  outline: none;
  background-color: var(--button);
  color: var(--primary);
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .bus-route-data .route-amenities .seat-view-part .view-seats .view-seats-button:hover {
  background-color: var(--secondary);
  color: var(--light);
}
.journey-section .journey-list-section .journey-list .error-messages {
  width: 100%;
  border: 1px solid var(--button);
  border-radius: 10px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 15px;
}
.journey-section .journey-list-section .journey-list .error-messages .message {
  padding: 10px 5px;
  text-align: center;
}
.journey-section .journey-list-section .journey-list .error-messages .message h4 {
  font-size: 1.5rem;
}
.journey-section .journey-list-section .journey-list .dp-time {
  padding: 0px 5px;
  color: var(--secondary);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .top-nav {
  background: transparent;
  position: relative;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .top-nav .vehivle-no-tab {
  display: flex;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .top-nav .vehivle-no-tab .v-plate {
  background-color: var(--button);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .top-nav .vehivle-no-tab .v-plate .flip-button {
  position: relative;
  top: 50%;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 10px;
  padding: 0;
  border: 1px solid transparent;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border: 1px solid #ede8e8;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card:hover {
  border: 1px solid var(--button);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section {
  display: flex;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section > div {
  flex: 1;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  gap: 0px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities .route-name {
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 0px;
  margin-top: -3px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities .coach-type {
  text-align: left;
  color: var(--dark-alpha);
  font-size: 0.8em;
  font-weight: bold;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities .amenities-chips {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities .amenities-chips .am-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--secondary);
  text-align: center;
  color: var(--secondary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-timeings {
  padding: 0px 5px;
  display: flex;
  justify-content: space-between;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-timeings span {
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-durations {
  padding: 0px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-durations .img-duration-content {
  position: relative;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-durations .img-duration-content .duration {
  position: absolute;
  top: auto;
  left: 41%;
  z-index: 1;
  border-radius: 5px;
  border: 1px solid var(--dark-alpha);
  background-color: var(--button);
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 600;
  outline: 4px solid #fff;
  color: var(--secondary);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .bus-durations .img-duration-content img {
  width: 100%;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .no-of-seats .seats {
  display: flex;
  justify-content: space-between;
  color: var(--dark-alpha);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .no-of-seats .seats span {
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing {
  display: flex;
  justify-content: end;
  gap: 10px;
  padding: 10px 15px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing .strike-price {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing .strike-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing .fair {
  font-weight: 600;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav {
  display: flex;
  visibility: hidden;
  display: none;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(14, 30, 37, 0.12);
  padding: 0;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-nav {
  display: flex;
  color: var(--secondary);
  border-bottom-left-radius: 10px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-nav span {
  padding: 9px 8px;
  font-size: 12px;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-nav span:first-child {
  border-bottom-left-radius: 0px;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-nav span:hover {
  background-color: var(--secondary);
  color: var(--light);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-button .view-seats-button {
  border: none;
  outline: none;
  background-color: var(--button);
  padding: 10px 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-button .view-seats-button:hover {
  background-color: var(--secondary);
  color: var(--light);
}
.journey-section .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .route-nav-aminites {
  display: none;
}

.font-bold {
  font-weight: 600;
}

.truncate-single-line {
  overflow: hidden; /* Hides content that overflows the container */
  white-space: nowrap; /* Prevents the text from wrapping to the next line */
  text-overflow: ellipsis; /* Displays the ellipsis (...) for truncated text */
}

.floating-filter-button {
  display: none;
}

.flip-container {
  perspective: 1000px;
  min-height: 22px;
  width: 120px;
  max-width: 200px;
  position: relative;
}
.flip-container .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  background-color: #000;
}
.flip-container .flip-front,
.flip-container .flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0 10px;
  text-align: center;
}
.flip-container .flip-front {
  background: #fff;
  transform: rotateX(0deg);
}
.flip-container .flip-back {
  transform: rotateX(180deg) rotateY(0deg);
}
.flip-container.flip-animation .flip-inner {
  animation: flip-animation 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .bookingpage-search-container {
    display: none;
  }
  .journey-section {
    margin-top: 10px;
  }
  .journey-section .journey-section-content .journey-filter-section {
    display: none;
  }
  .journey-section .journey-section-content .journey-list-section {
    width: 100% !important;
    height: 100% !important;
  }
  .floating-filter-button {
    position: fixed;
    left: 14px;
    bottom: 10px;
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    color: var(--light);
    display: block;
    font-size: 1.1rem;
    border-radius: 50%;
    border: none;
    outline: none;
    z-index: 1000;
  }
  .floating-filter-button .filter-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .floating-filter-button .filter-text .icon {
    font-size: 1.1rem;
    color: var(--light);
  }
  .floating-filter-button .filter-text .text {
    font-size: 10px;
    color: var(--button);
    font-weight: 600;
  }
  .floating-filter-button:hover {
    background-color: var(--button);
    color: var(--primary);
  }
  .floating-filter-button:hover .icon {
    color: var(--primary);
  }
}
@media (max-width: 768px) {
  .journey-section .journey-section-content .journey-list-section .journey-list .journey-labels {
    display: none;
  }
}
@media (max-width: 576px) {
  .journey-section .journey-section-content .journey-list-section {
    margin-top: 0px;
    padding: 0px 0px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-header-banner {
    padding: 0px 5px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .journey-route-headers .journey-route-cities {
    justify-content: space-between !important;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .journey-route-headers .journey-route-discounts {
    display: none;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .journey-route-discounts-smallscreen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .journey-route-discounts-smallscreen span {
    background-color: var(--button);
    padding: 8px 16px;
    color: var(--primary);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities {
    padding: 20px 20px;
    flex: 1 1 60%;
    order: 1;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-name-type-amenities .amenities-chips {
    display: none;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration {
    flex: 1 1 100%;
    order: 3;
    margin-top: 0.5rem;
    padding: 5px 20px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-time-duration .duration {
    left: 45% !important;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing {
    flex-direction: column;
    flex: 1 1 40%;
    text-align: right;
    padding: 20px 20px;
    order: 2;
    gap: 0;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-main-section .bus-pricing .strike-price::before {
    top: 40%;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav {
    display: flex !important;
    visibility: visible;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0px 20px;
    color: var(--secondary);
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav::-webkit-scrollbar {
    display: none;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 2px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav span {
    padding: 9px 4px;
    font-size: 12px;
    cursor: pointer;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-small-screen-nav span:first-child {
    border-bottom-left-radius: 0px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .rote-nav {
    display: none;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .route-nav-aminites {
    display: flex;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .route-nav-aminites .amenities-chips {
    display: flex;
    gap: 5px;
    padding: 2px 10px;
  }
  .journey-section .journey-section-content .journey-list-section .journey-list .route-data-new-card-item-container .route-data-new-card .route-data-nav .route-nav-aminites .amenities-chips .am-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary);
    text-align: center;
    color: var(--secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
  }
}
.filter-sort-part {
  display: flex;
  flex-direction: column;
  margin-top: 20p;
}
.filter-sort-part .sort-input-chips {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--secondary);
}

.filter-time-part {
  display: flex;
  flex-direction: column;
  margin-top: 20p;
}
.filter-time-part .sort-input-checks {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--secondary);
}

.timing-chips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-alpha);
  border: 1px solid var(--secondary);
  padding: 4px 12px;
  border-radius: 8px;
  max-width: 180px;
  overflow-x: hidden;
  margin: 10px 0px;
  cursor: pointer;
}
.timing-chips .chip-icon {
  height: 32px;
  width: 26px;
  background-image: url(/images/icon01.svg);
  background-position: 0 -6785px;
  background-repeat: no-repeat;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.timing-chips .cicon1 {
  background-position: left -7004px !important;
}
.timing-chips .cicon2 {
  background-position: left -7221px !important;
}
.timing-chips .cicon3 {
  background-position: left -7442px !important;
}

.bustype-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 0px !important;
}
.bustype-section h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
}
.bustype-section .bustype-chip {
  display: flex;
  justify-content: start;
  gap: 5px;
  padding-left: 0px;
  align-items: center;
}
.bustype-section .bustype-chip input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  /* Add other resets as needed */
  background-color: #fff;
  margin: 0;
}
.bustype-section .bustype-chip input[type=checkbox] {
  border: 1px solid var(--dark-alpha);
  width: 13px;
  height: 13px;
  max-width: 13px;
  max-height: 13px;
  cursor: pointer;
  /* Use display: flex to help with positioning the pseudo-element */
  display: flex;
  align-items: center;
  justify-content: center;
}
.bustype-section .bustype-chip input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  max-width: 13px;
  max-height: 13px;
  background-color: var(--secondary);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.bustype-section .bustype-chip label {
  font-size: 0.9em;
  color: var(--dark-alpha);
  cursor: pointer;
}

.places-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
  margin: 10px 0px;
}
.places-list h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
}
.places-list .search-box {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color: #ede8e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 34px;
}
.places-list .search-box input {
  outline: none;
  border: none;
  width: 100%;
  background: transparent;
  color: var(--primary);
  padding: 0px 10px;
}
.places-list .search-box .search-icon {
  position: absolute;
  top: auto;
  right: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}
.places-list .places {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  max-width: 300px;
  padding: 2px 0px;
  overflow-x: auto;
}
.places-list .places .places-chips {
  display: flex;
  align-items: safe center;
  gap: 10px;
}
.places-list .places .places-chips input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  /* Add other resets as needed */
  background-color: #fff;
  margin: 0;
}
.places-list .places .places-chips input[type=checkbox] {
  border: 1px solid var(--dark-alpha);
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13pxs;
  cursor: pointer;
  /* Use display: flex to help with positioning the pseudo-element */
  display: flex;
  align-items: center;
  justify-content: center;
}
.places-list .places .places-chips input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.places-list .places .places-chips label {
  font-size: 0.9rem;
  color: var(--dark-alpha);
  cursor: pointer;
  max-width: 100%;
  width: 200px;
  height: 20px;
  white-space: nowrap;
}
.places-list .places h4 {
  color: var(--secondary);
  font-size: 1rem;
  padding: 1px 0px;
  margin: 1px 1px;
  cursor: pointer;
}

.amenities {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 18px !important;
  margin: 10px 0px;
}
.amenities h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
}
.amenities .amenities-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.amenities .amenities-content .amenities-chips {
  border: 1px solid var(--dark-alpha);
  border-radius: 8px;
  padding: 2px 4px;
  color: var(--dark-alpha);
  cursor: pointer;
}

.selected-active-chip {
  background-color: var(--button) !important;
  color: var(--secondary) !important;
}

.amenities-active {
  background-color: var(--button) !important;
  color: var(--secondary) !important;
}

.small-screen-apply-filters {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.small-screen-apply-filters .apply-button {
  background-color: var(--button);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  min-height: 35px;
  margin-top: 10px;
  color: var(--secondary);
}

.global-loader-overlay {
  /* Positioning and size */
  position: fixed; /* Fixes it to the viewport, even when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Appearance */
  background-color: rgba(255, 255, 255, 0.99); /* Dark semi-transparent background */
  z-index: 9999; /* Ensures it is on top of all other content */
  color: white; /* Text color */
  /* Centering the content (using Flexbox) */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stacks text and spinner vertically */
}
.global-loader-overlay img {
  border-radius: 20px;
  border: 2px solid #fff;
}

/* Optional: A simple CSS spinner */
.loader-spinner {
  border: 4px solid #f3f3f3; /* Light grey base */
  border-top: 4px solid #3498db; /* Blue solid top */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite; /* Animation definition below */
  margin-top: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.seatLayoutHorizontalSkeletonContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seatLayoutHorizontalSkeletonContainer .deck1-skeleton {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.seatLayoutHorizontalSkeletonContainer .deck1-skeleton .first-row {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.seatLayoutHorizontalSkeletonContainer .deck1-skeleton .first-row .seat-skeleton {
  width: 70px;
  height: 30px;
  border-radius: 2px;
  background-color: #e0e0e0;
  padding-top: 30px;
  animation: skeleton-loading 1s linear infinite alternate;
}
.seatLayoutHorizontalSkeletonContainer .deck1-skeleton .gap-row {
  display: flex;
  flex-direction: row;
}
.seatLayoutHorizontalSkeletonContainer .deck1-skeleton .gap-row .seat-gap-skeleton {
  width: 70px;
  height: 30px;
  padding-top: 20px;
}

.seatLayoutVerticalSkeletonContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.seatLayoutVerticalSkeletonContainer .deck1-skeleton {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.seatLayoutVerticalSkeletonContainer .deck1-skeleton .first-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.seatLayoutVerticalSkeletonContainer .deck1-skeleton .first-row .seat-skeleton {
  width: 30px;
  height: 60px;
  border-radius: 2px;
  background-color: #e0e0e0;
  padding-top: 30px;
  animation: skeleton-loading 1s linear infinite alternate;
}
.seatLayoutVerticalSkeletonContainer .deck1-skeleton .gap-row {
  display: flex;
  flex-direction: column;
}
.seatLayoutVerticalSkeletonContainer .deck1-skeleton .gap-row .seat-gap-skeleton {
  width: 30px;
  height: 60px;
  padding-top: 20px;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.seat-layout-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.seat-layout-content .seat-layout .layout-deck-content {
  background-color: #EDEEEE;
  border-radius: 5px;
  padding: 10px 4px 10px 0px;
  display: flex;
  flex-direction: row;
  border-left: 4px solid var(--button);
  border-top: 1px solid var(--button);
  border-right: 1px solid var(--button);
  border-bottom: 1px solid var(--button);
  outline-offset: 2px;
}
.seat-layout-content .seat-layout .layout-deck-content .busfront {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.seat-layout-content .seat-layout .layout-deck-content .busfront .driver-seat {
  color: var(--secondary);
  font-size: 14px;
  padding: 5px 5px;
}
.seat-layout-content .seat-layout .layout-deck-content .busfront .driver-seat .steering-icon {
  rotate: 270deg;
}
.seat-layout-content .seat-layout .layout-deck-content .busfront .deck-name {
  text-align: center;
  font-size: 12px !important;
  font-weight: 600;
  margin-bottom: 5px;
  font-weight: bold;
  text-orientation: mixed;
  writing-mode: vertical-rl;
  display: inline-block;
  rotate: 180deg;
  margin-left: 5px;
  padding-bottom: 5px;
  color: var(--secondary);
}
.seat-layout-content .seat-layout-vertical {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.seat-layout-content .seat-layout-vertical .layout-deck-content-vertical {
  background-color: #EDEEEE;
  border-radius: 5px;
  padding: 10px 3px 10px 3px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--button);
  border-left: 1px solid var(--button);
  border-right: 1px solid var(--button);
  border-bottom: 1px solid var(--button);
}
.seat-layout-content .seat-layout-vertical .layout-deck-content-vertical .busfront {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.seat-layout-content .seat-layout-vertical .layout-deck-content-vertical .busfront .driver-seat {
  color: var(--secondary);
  font-size: 14px;
  padding-bottom: 12px;
  padding-right: 9px;
}
.seat-layout-content .seat-layout-vertical .layout-deck-content-vertical .busfront .driver-seat .steering-icon {
  rotate: 0deg;
}
.seat-layout-content .seat-layout-vertical .layout-deck-content-vertical .busfront .deck-name {
  text-align: center;
  font-size: 15px !important;
  font-weight: 600;
  padding-left: 10px;
  font-weight: bold;
  margin-right: 5px;
  color: var(--secondary);
}
.seat-layout-content .seat-layout-seat-info {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 10px 30px;
  justify-content: center;
  gap: 20px;
}
.seat-layout-content .seat-layout-seat-info .seat-items-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.seat-layout-content .seat-layout-seat-info .seat-items-info span {
  text-orientation: mixed;
  writing-mode: vertical-rl;
  display: inline-block;
  rotate: 180deg;
  font-weight: 600;
}
.seat-layout-content .seat-layout-seat-info .seat-items-info-large span {
  font-weight: 13px;
  font-weight: 500;
}

.show-selected-seats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.show-selected-seats .selected-seat-count {
  border: 1px solid var(--secondary);
  padding: 19px 10px;
  border-radius: 10px;
}
.show-selected-seats .selected-seat-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--secondary);
  padding: 3px 10px;
  border-radius: 5px;
  gap: 10px;
}
.show-selected-seats .selected-seat-list .seat-selected-chip-container {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.show-selected-seats .selected-seat-list .seat-selected-chip-container .selected-seat-chip {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: #e5e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

.dialog-board-drop-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: -7px;
}
.dialog-board-drop-container .dialog-boarding-points,
.dialog-board-drop-container .dialog-dropping-points {
  display: flex;
  flex-direction: column;
  gap: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 10px;
  padding: 5px 0px;
  min-width: 350px;
  max-width: 400px;
}
.dialog-board-drop-container .dialog-boarding-points h3,
.dialog-board-drop-container .dialog-dropping-points h3 {
  color: var(--primary);
  padding: 0px 10px;
  margin: 0;
}
.dialog-board-drop-container .dialog-boarding-points small,
.dialog-board-drop-container .dialog-dropping-points small {
  color: #bababa;
  padding: 0px 10px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers {
  display: flex;
  flex-direction: column;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 8px 10px;
  flex-direction: column;
  cursor: pointer;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content {
  display: flex;
  width: 100%;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  color: var(--primary);
  cursor: pointer;
  width: 100%;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label div,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label .pointname,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label .pointname {
  color: var(--secondary);
  font-weight: 500;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping {
  display: flex;
  width: 100%;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  color: var(--primary);
  cursor: pointer;
  width: 100%;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label div,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label .pointname,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label .pointname {
  color: var(--secondary);
  font-weight: 500;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .content-bottom,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .content-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--primary);
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button:hover,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button:hover {
  background: var(--button);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br span {
  display: inline-block;
  font-size: 11px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: 5px;
  padding: 0px 2px;
  font-weight: 400;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number a,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number a {
  text-decoration: none;
  font-size: 11px;
  color: var(--primary);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button:hover,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button:hover {
  background: var(--button);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br span {
  display: inline-block;
  font-size: 11px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .content-bottom,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .content-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--primary);
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button:hover,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button:hover {
  background: var(--button);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br span {
  display: inline-block;
  font-size: 11px;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: 5px;
  padding: 0px 2px;
  font-weight: 400;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number a,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number a {
  text-decoration: none;
  font-size: 11px;
  color: var(--primary);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button:hover,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button:hover {
  background: var(--button);
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.dialog-board-drop-container .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br span,
.dialog-board-drop-container .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br span {
  display: inline-block;
  font-size: 11px;
}

.horizontal-layout-seats-seat {
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 27px;
  text-align: center;
  margin: 1px 2px;
  font-weight: 500;
  font-size: 10px;
  padding-top: 5px;
  cursor: pointer;
}
.horizontal-layout-seats-seat .slot {
  position: absolute;
  width: 3px;
  height: 16px;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.seat-vertical {
  height: 77px;
  width: 27px;
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.seat-vertical .slot {
  position: absolute;
  width: 16px;
  height: 5px;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.seat-horizontal {
  height: 27px;
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 7px;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.seat-horizontal .slot {
  position: absolute;
  width: 5px;
  height: 16px;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.seat-info-empty-seat-mobile {
  height: 63px;
  width: 27px;
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 15px;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.seat-info-empty-seat-mobile .slot {
  position: absolute;
  width: 16px;
  height: 5px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.seat-info-empty-seat-large {
  height: 27px;
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 7px;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.seat-info-empty-seat-large .slot {
  position: absolute;
  width: 5px;
  height: 16px;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.booked-seat {
  background: #5FCFFF !important;
}

.selected-seat {
  background: var(--button) !important;
}

.pink-slot {
  background: pink !important;
}

.women-seat {
  background: pink !important;
}

.vertical-layout-seats-seat {
  border: 1.5px solid #C8CAD0;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 55px;
  text-align: center;
  margin: 1px 2px;
  padding-top: 20px;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.vertical-layout-seats-seat .slot {
  position: absolute;
  width: 16px;
  height: 5px;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  border-radius: 5px;
}

.seat-checked {
  background-color: var(--button);
  color: var(--secondary);
  font-weight: 600;
}

.continue-button {
  background-color: var(--secondary);
  color: var(--light);
  border: none;
  outline: none;
  min-width: 160px;
  height: 45px;
  border-radius: 10px;
  cursor: pointer;
}

.dialog-bottom-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 10px;
}
.dialog-bottom-group .back-button {
  background-color: var(--button);
  color: var(--dark-alpha);
  border: none;
  outline: none;
  min-width: 120px;
  width: 120px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.dialog-bottom-group .back-button:disabled {
  background-color: #ccc;
}
.dialog-bottom-group .continue-button {
  background-color: var(--secondary);
  color: var(--light);
  border: none;
  outline: none;
  min-width: 120px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.dialog-bottom-group .continue-button:disabled {
  background-color: #ccc;
}

.close-button {
  background-color: var(--button);
  color: var(--secondary);
  border: none;
  outline: none;
  min-width: 160px;
  width: 160px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.dialog-tabpanes-content {
  display: flex;
  flex-direction: column;
  max-width: 66%;
  width: 66%;
}

.alert-message {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--button);
}
.alert-message p {
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.customer-info-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.customer-info-content .contact-and-seat-information {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.customer-info-content .contact-and-seat-information .contact-info {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  padding: 10px 10px;
  min-width: 350px;
  width: 350px;
}
.customer-info-content .contact-and-seat-information .contact-info h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 0;
}
.customer-info-content .contact-and-seat-information .contact-info small {
  color: var(--dark-alpha);
  font-size: 12px;
}
.customer-info-content .contact-and-seat-information .seat-and-price-info {
  display: flex;
  flex-direction: column;
}
.customer-info-content .contact-and-seat-information .seat-and-price-info .seat-selected-chip-container {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.customer-info-content .contact-and-seat-information .seat-and-price-info .seat-selected-chip-container .selected-seat-chip {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #e5e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}
.customer-info-content .form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.customer-info-content .form-container .mobile-number {
  width: 100%;
  height: 42px;
  border-radius: 5px;
  position: relative;
  display: flex;
}
.customer-info-content .form-container .mobile-number .input-container {
  display: flex;
}
.customer-info-content .form-container .mobile-number .input-container .country-code {
  position: relative;
  border-right: 1px solid var(--secondary);
  border-radius: 10px;
  width: 30%;
}
.customer-info-content .form-container .mobile-number .input-container .country-code label {
  position: absolute;
  top: 1px;
  left: 10px;
  color: var(--dark-alpha);
  font-size: 11px;
}
.customer-info-content .form-container .mobile-number .input-container .country-code input {
  outline: none;
  border: none;
  height: 35px;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 11px;
  color: var(--primary);
  width: 100%;
  border-radius: 10px;
}
.customer-info-content .form-container .mobile-number .input-container .mobileNo {
  position: relative;
  border-radius: 10px;
  width: 80%;
}
.customer-info-content .form-container .mobile-number .input-container .mobileNo label {
  position: absolute;
  top: 1px;
  left: 10px;
  color: var(--dark-alpha);
  font-size: 11px;
}
.customer-info-content .form-container .mobile-number .input-container .mobileNo input {
  outline: none;
  border: none;
  height: 35px;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 16px;
  color: var(--primary);
  width: 100%;
  border-radius: 10px;
}
.customer-info-content .form-container .email-id {
  width: 100%;
  height: 42px;
  background-color: var(--light);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  position: relative;
  display: flex;
}
.customer-info-content .form-container .email-id .input-container {
  border-radius: 10px;
}
.customer-info-content .form-container .email-id .input-container label {
  position: absolute;
  top: 2px;
  left: 10px;
  color: var(--dark-alpha);
  font-size: 11px;
}
.customer-info-content .form-container .email-id .input-container input {
  outline: none;
  border: none;
  height: 35px;
  padding-top: 15px;
  padding-left: 10px;
  font-size: 16px;
  color: var(--primary);
  width: 100%;
  border-radius: 10px;
}
.customer-info-content .passenger-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.customer-info-content .passenger-info .passanger-detailes-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card {
  padding: 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  min-width: 350px;
  width: 350px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .seat-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 5px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .seat-info h6 {
  font-size: 13px;
  padding: 0px;
  margin: 0px;
  padding-left: 10px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .seat-info small {
  color: var(--dark-alpha);
  padding-left: 10px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .passenger-form-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .passenger-form-container .form-input {
  position: relative;
  height: 42px;
  border: 1px solid var(--secondary);
  width: 100%;
  background-color: var(--light);
  border-radius: 10px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .passenger-form-container .form-input label {
  position: absolute;
  top: 2px;
  left: 10px;
  font-size: 11px;
  color: var(--dark-alpha);
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .passenger-form-container .form-input input {
  height: 35px;
  border: none;
  outline: none;
  width: 100%;
  padding-top: 12px;
  padding-left: 10px;
  border-radius: 10px;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .gender-container {
  display: flex;
  flex-direction: column;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .gender-container .slots {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}
.customer-info-content .passenger-info .passanger-detailes-container .passenger-card .gender-container .slots .slot {
  display: flex;
  justify-content: space-between;
  min-width: 100px;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 5px 15px;
  cursor: pointer;
}
.customer-info-content .terms-conditions {
  display: flex;
  justify-content: center;
}
.customer-info-content .terms-conditions .terms-link {
  color: var(--secondary);
  font-size: 12px;
  cursor: pointer;
}

.dialog-footer {
  display: flex;
  flex-direction: row;
  padding: 0px;
  margin: 0px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0px 20px;
}

.info-button {
  border: 1px solid var(--secondary) !important;
  border-radius: 10px;
  outline: none;
  border: none;
  min-height: 30px;
  padding: 5px 10px;
  cursor: pointer;
}

.customer-info-table-content {
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
}
.customer-info-table-content .contact-details {
  padding: 2px 3px;
  margin: 2px;
}
.customer-info-table-content .contact-details h3 {
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.customer-info-table-content .contact-details .contact-details-card {
  border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number {
  width: 100%;
  height: 42px;
  background-color: var(--light);
  border: 1px solid var(--secondary);
  border-radius: 5px;
  position: relative;
  display: flex;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container {
  display: flex;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container .country-code {
  position: relative;
  border-right: 1px solid var(--secondary);
  width: 30%;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container .country-code label {
  position: absolute;
  top: 1px;
  left: 10px;
  color: var(--dark-alpha);
  font-size: 11px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container .country-code input {
  outline: none;
  border: none;
  height: 35px;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 12px;
  color: var(--primary);
  width: 100%;
  border-radius: 10px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container .mobileNo {
  position: relative;
  border-radius: 10px;
  width: 80%;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .mobile-number .input-container .mobileNo label {
  font-size: 13px;
  top: -6px;
  background-color: var(--light);
  padding: 2px 4px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .email-id {
  width: 100%;
  height: 42px;
  background-color: var(--light);
  border: 1px solid var(--secondary);
  border-radius: 5px;
  position: relative;
  display: flex;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .email-id .input-container {
  border-radius: 10px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .email-id .input-container label {
  font-size: 13px;
  top: -6px;
  background-color: var(--light);
  padding: 2px 4px;
}
.customer-info-table-content .contact-details .contact-details-card .form-container .email-id .input-container input {
  outline: none;
  border: none;
  height: 35px;
  padding-top: 15px;
  padding-left: 10px;
  font-size: 16px;
  color: var(--primary);
  width: 100%;
  border-radius: 10px;
}
.customer-info-table-content .contact-details small {
  font-size: 10px;
  color: rgb(252, 75, 75);
}
.customer-info-table-content .passenger-details {
  margin: 2px;
  border-radius: 10px;
  padding: 10px 10px;
}
.customer-info-table-content .passenger-details h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.customer-info-table-content .passenger-details .table-header {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1fr 1fr 3fr 2fr 2fr 1fr;
  gap: 5px;
}
.customer-info-table-content .passenger-details .table-header .column-title {
  font-weight: 600;
  padding: 5px;
}
.customer-info-table-content .passenger-details .table-body {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.customer-info-table-content .passenger-details .table-body .filed-row {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 2fr 2fr 1fr;
  gap: 6px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  align-items: center;
}
.customer-info-table-content .passenger-details .table-body .filed-row .field {
  padding: 0px 4px;
}
.customer-info-table-content .passenger-details .table-body .filed-row .form-input {
  position: relative;
  height: 36px;
  border: 1px solid var(--secondary);
  width: 100%;
  background-color: var(--light);
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.customer-info-table-content .passenger-details .table-body .filed-row .form-input label {
  top: -9px;
  background-color: var(--light);
  font-size: 13px;
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .gender-switch-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2px;
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .gender-switch-container span {
  display: flex;
  color: var(--secondary);
  font-weight: 600;
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .gender-switch-container span:last-child {
  color: var(--secondary);
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .slots {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 2px;
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .slots .slot {
  display: flex;
  justify-content: space-between;
  min-width: 100px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 1px 10px;
  cursor: pointer;
  font-size: 11px;
}
.customer-info-table-content .passenger-details .table-body .filed-row .gender .slots .slot label {
  width: 100%;
  cursor: pointer;
}
.price {
  text-align: right;
}

.grand-total-footer {
  display: flex;
  gap: 10px;
}
.grand-total-footer .gt-label {
  color: var(--primary);
  text-align: right;
}
.grand-total-footer .gt-amount {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 5px;
  background-color: var(--secondary);
  margin-top: 20px;
}
.payment-details h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  color: var(--light);
  padding: 5px 10px;
  margin: 0px;
}
.payment-details .payment-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  margin: 0px 0px;
}
.payment-details .payment-row .perticulars {
  color: var(--light);
  padding: 2px;
}
.payment-details .payment-row .perticulars-amount {
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  padding: 2px;
}
.payment-details .payment-grand-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}
.payment-details .payment-grand-row .perticulars {
  color: var(--light);
}
.payment-details .payment-grand-row .perticulars-amount {
  color: var(--light);
  font-size: 18px;
  font-weight: 600;
}

.terms-and-conditions-line {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: left;
  margin-top: 20px;
  font-size: 13px;
  color: var(--primary);
  padding: 2px 10px;
}

.dialog-bus-time-duration {
  display: flex;
  flex-direction: column;
}
.dialog-bus-time-duration .bus-timings {
  padding: 0px 5px;
  display: flex;
  justify-content: space-between;
  color: var(--secondary);
}
.dialog-bus-time-duration .bus-timings span {
  font-weight: 600;
}
.dialog-bus-time-duration .bus-durations {
  padding: 0px;
}
.dialog-bus-time-duration .bus-durations .img-duration-content {
  position: relative;
}
.dialog-bus-time-duration .bus-durations .img-duration-content .duration {
  position: absolute;
  top: auto;
  left: 41%;
  z-index: 1;
  border-radius: 5px;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 600;
  outline: 4px solid var(--button);
  color: var(--light);
}
.dialog-bus-time-duration .bus-durations .img-duration-content img {
  width: 100%;
}

.bus-date-time {
  display: flex;
  flex-direction: column;
}
.bus-date-time span {
  color: var(--secondary);
  font-weight: 600;
}
.bus-date-time span:last-child {
  color: var(--secondary);
  font-weight: 400;
  text-align: right;
}

.MuiTabs-root .MuiTouchRipple-root {
  height: 40px !important;
  min-height: 40px !important;
  /* Adjust as needed */
}

.br-dr-container {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0px;
}
.br-dr-container .passenger-card-container-small {
  position: relative;
  max-width: 50%;
  width: 100%;
}
.br-dr-container .passenger-card-container-small .card-top-button-br-dr {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid var(--button);
  color: var(--secondary);
  top: -10px;
  left: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  padding-top: 1px;
  padding-left: 2px;
  padding-right: 2px;
}
.br-dr-container .passenger-card-container-small .passenger-card-small {
  border: 1px solid rgb(199, 196, 196);
  height: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border-radius: 5px;
}

.boarding-dropping-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 2px;
}
.boarding-dropping-info h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}
.boarding-dropping-info .points {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.boarding-dropping-info .points .pointname {
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
}
.boarding-dropping-info .dr-details {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.boarding-dropping-info .dr-details .left-content-br {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
}
.boarding-dropping-info .dr-details .left-content-br .content-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.boarding-dropping-info .dr-details .left-content-br .icons-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.boarding-dropping-info .dr-details .left-content-br .icons-container .location-button {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--primary);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
}
.boarding-dropping-info .dr-details .left-content-br .icons-container .location-button:hover {
  background: var(--button);
}
.boarding-dropping-info .dr-details .left-content-br span {
  display: inline-block;
  font-size: 12px;
}
.boarding-dropping-info .dr-details .left-content-br .mobile-number {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: 5px;
  padding: 0px 2px;
  font-weight: 400;
}
.boarding-dropping-info .dr-details .left-content-br .mobile-number a {
  text-decoration: none;
  font-size: 12px;
  color: var(--primary);
}
.boarding-dropping-info .dr-details .left-content-br .call-button {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}
.boarding-dropping-info .dr-details .left-content-br .call-button:hover {
  background: var(--button);
}
.boarding-dropping-info .dr-details .right-content-br {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.boarding-dropping-info .dr-details .right-content-br span {
  display: inline-block;
  font-size: 12px;
}

.passanger-detiales-content {
  width: 100%;
  padding: 0px 0px;
  margin-top: -10px;
}
.passanger-detiales-content .customer-info-table-content {
  margin: 0;
  padding: 15px 0px 0px 0px;
}
.passanger-detiales-content .customer-info-table-content .contact-details h3 {
  margin: 0 !important;
  padding: 0 !important;
}
.passanger-detiales-content .customer-info-table-content .contact-details .contact-details-card .contact-details-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.passanger-detiales-content .passenger-details {
  margin: 0;
  padding: 15px 0px 0px 2px;
}
.passanger-detiales-content .passenger-details h3 {
  margin: 0 !important;
  padding: 0 !important;
}
.passanger-detiales-content .passenger-details .table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 2fr 2fr 1fr;
  gap: 5px;
  margin-top: 10px;
}
.passanger-detiales-content .passenger-details .table-header .column-title {
  font-weight: 600;
  padding: 5px;
}
.passanger-detiales-content .passenger-details .table-body {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.passanger-detiales-content .passenger-details .table-body .filed-row {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 2fr 2fr 1fr;
  gap: 6px;
  border-top: 1px solid #ccc;
  padding: 0px;
  align-items: center;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .field {
  padding: 0px 4px;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .gender-switch-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .gender-switch-container label {
  width: 28px;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .gender-switch-container span {
  display: flex;
  color: var(--secondary);
  font-weight: 600;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .gender-switch-container span:last-child {
  color: var(--secondary);
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .slots {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 2px;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .slots .slot {
  display: flex;
  justify-content: space-between;
  min-width: 100px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 1px 10px;
  cursor: pointer;
  font-size: 11px;
}
.passanger-detiales-content .passenger-details .table-body .filed-row .gender .slots .slot label {
  width: 100%;
  cursor: pointer;
}
.passanger-detiales-content .payment-details-new {
  margin: 0;
  padding: 0px 0px 0px 2px;
}
.passanger-detiales-content .payment-details-new .payment-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
}
.passanger-detiales-content .payment-details-new .payment-row .perticulars {
  padding: 2px;
}
.passanger-detiales-content .payment-details-new .payment-row .perticulars-amount {
  font-size: 14px;
  font-weight: 400;
  padding: 2px;
}
.passanger-detiales-content .payment-details-new .payment-grand-row {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px;
}
.passanger-detiales-content .payment-details-new .payment-grand-row .perticulars {
  font-weight: 600;
  padding: 2px;
}
.passanger-detiales-content .payment-details-new .payment-grand-row .perticulars-amount {
  font-size: 18px;
  font-weight: 600;
  padding: 2px;
}

.MuiTabs-scrollButtons {
  height: 35px;
  width: 20px !important;
}

@media (max-width: 992px) {
  .dialog-tabpanes-content {
    width: 100%;
    max-width: 100%;
  }
  .small-screen-footer-left-part {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .small-screen-footer-left-part .selected-seat-list {
    margin: 0;
    padding: 0;
  }
  .small-screen-footer-left-part .selected-seat-list .seat-selected-chip-container {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 2px;
  }
  .small-screen-footer-left-part .selected-seat-list .seat-selected-chip-container .selected-seat-chip {
    font-size: 12px;
    padding: 4px;
    border-radius: 3px;
  }
  .dialog-bottom-group-smallscreen {
    display: flex;
    gap: 3px;
    padding: 2px 0px;
    align-items: center;
  }
  .dialog-bottom-group-smallscreen .back-button {
    background-color: var(--button);
    color: var(--dark-alpha);
    border: none;
    outline: none;
    min-width: 40px;
    width: 40px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .dialog-bottom-group-smallscreen .back-button:disabled {
    background-color: #ccc;
  }
  .dialog-bottom-group-smallscreen .continue-button {
    background-color: var(--secondary);
    color: var(--light);
    border: none;
    outline: none;
    min-width: 45%;
    height: 35px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .dialog-bottom-group-smallscreen .continue-button:disabled {
    background-color: #ccc;
  }
  .small-screen-footer-right-part .grand-total-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .small-screen-footer-right-part .grand-total-footer .gt-amount {
    font-size: 22px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points {
    display: flex;
    flex-direction: column;
    gap: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 10px;
    padding: 5px 0px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points h3,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points h3 {
    color: var(--primary);
    padding: 0px 10px;
    margin-bottom: 15px !important;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points small,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points small {
    color: #bababa;
    padding: 0px 10px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers {
    display: flex;
    flex-direction: column;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio {
    display: flex;
    border-top: 1px solid #ccc;
    padding: 8px 10px;
    flex-direction: column;
    cursor: pointer;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content {
    display: flex;
    width: 100%;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    color: var(--primary);
    cursor: pointer;
    width: 100%;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label div,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label div {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label .pointname,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content .radio-label .pointname {
    color: var(--secondary);
    font-weight: 500;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping {
    display: flex;
    width: 100%;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    color: var(--primary);
    cursor: pointer;
    width: 100%;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label div,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label div {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label .pointname,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .inputs-content-dropping .radio-label .pointname {
    color: var(--secondary);
    font-weight: 600;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-end;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .content-bottom,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .content-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    color: var(--primary);
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button:hover,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .icons-container .location-button:hover {
    background: var(--button);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br span {
    display: inline-block;
    font-size: 11px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 5px;
    padding: 0px 2px;
    font-weight: 400;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number a,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .mobile-number a {
    text-decoration: none;
    font-size: 11px;
    color: var(--primary);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button:hover,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .left-content-br .call-button:hover {
    background: var(--button);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .br-details .right-content-br span {
    display: inline-block;
    font-size: 11px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-end;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .content-bottom,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .content-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    color: var(--primary);
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button:hover,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .icons-container .location-button:hover {
    background: var(--button);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br span {
    display: inline-block;
    font-size: 11px;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 5px;
    padding: 0px 2px;
    font-weight: 400;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number a,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .mobile-number a {
    text-decoration: none;
    font-size: 12px;
    color: var(--primary);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button:hover,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .left-content-br .call-button:hover {
    background: var(--button);
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .dialog-board-drop-container-smallscreen .dialog-boarding-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br span,
  .dialog-board-drop-container-smallscreen .dialog-dropping-points .dialog-input-containers .dialog-input-radio .dr-details .right-content-br span {
    display: inline-block;
    font-size: 11px;
  }
  .passanger-detiales-content {
    width: 100%;
    padding: 0px px;
  }
  .passanger-detiales-content .customer-info-small-screen {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .passanger-detiales-content .customer-info-small-screen .contact-details-card {
    box-shadow: rgba(0, 0, 0, 0.059) 0px 1px 4px;
    border: 1px solid gray;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .passanger-detiales-content .passenger-details-small {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small {
    position: relative;
    max-width: 350px;
    width: 100%;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .card-top-button {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--button);
    border-radius: 5px;
    color: var(--secondary);
    max-width: 35px;
    min-width: 35px;
    top: -10px;
    left: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    padding-top: 1px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .card-top-button-br-dr {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--button);
    border-radius: 5px;
    color: var(--secondary);
    top: -10px;
    left: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    padding-top: 1px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid gray;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    border-radius: 5px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .age-gnder-price-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .age-gnder-price-small .gender-switch-container {
    display: grid;
    grid-template-columns: 0fr 0fr 0fr 0fr;
    align-items: center;
    gap: 0px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .age-gnder-price-small .gender-switch-container span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .age-gnder-price-small .gender-switch-container > * {
    margin: 0;
    padding: 0;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .age-gnder-price-small .seat-price {
    font-weight: 600;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .gender-small {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .gender-small .gender-switch-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2px;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small .gender-small .seat-price {
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small {
    max-width: 347px;
    width: 100%;
  }
  .passanger-detiales-content .passenger-details-small .passenger-card-container-small .passenger-card-small {
    min-width: 100% !important;
  }
}
.unselected {
  border: 1px solid var(--button);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.unselected button {
  outline: none;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--secondary);
  cursor: pointer;
}

.divider {
  border-top: 1px solid #ccc;
}

.headings-main {
  font-size: 18px;
  margin-bottom: 7px !important;
}

@media (max-width: 992px) {
  .headings-main {
    font-size: 18px;
    margin: 10px 0px;
  }
}
@media (max-width: 768px) {
  .headings-main {
    font-size: 18px;
    margin: 10px 0px;
  }
  .seat-layout-content {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
@media (max-width: 576px) {
  .headings-main {
    font-size: 18px;
    padding: 10px 0px;
  }
  .passenger-card-container-small {
    max-width: 100% !important;
    width: 100% !important;
  }
}
.flip-container-dialog {
  perspective: 1000px;
  min-height: auto;
  max-width: 80px;
  min-width: 180px;
  position: relative;
}
.flip-container-dialog .flip-inner-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  background-color: #000;
}
.flip-container-dialog .flip-front-dialog,
.flip-container-dialog .flip-back-dialog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: left;
}
.flip-container-dialog .flip-front-dialog {
  background: #fff;
  transform: rotateX(0deg);
}
.flip-container-dialog .flip-back-dialog {
  transform: rotateX(180deg) rotateY(0deg);
}
.flip-container-dialog.flip-animation-dialog .flip-inner-dialog {
  animation: flip-animation 6s ease-in-out infinite;
}

.success-card {
  box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 4px;
  border-radius: 5px !important;
  max-width: 70%;
  border: 2px solid var(--secondary);
}

.success-message-container a {
  display: inline-block;
  text-decoration: none;
  color: var(--secondary);
  font-size: 16px;
  margin: 4px 0px;
}

.payment-home-button {
  height: 35px;
  min-width: 120px;
  background-color: #f4cc13;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 4px 8px;
}

.payment-top-route {
  height: 35px;
  min-width: 120px;
  border: 1px solid #1f1f1f;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-strip {
  background-color: #2D3FA8;
  display: flex;
  width: 100%;
  max-height: 60px;
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

.success-strip img {
  width: 40px;
  height: 40px;
}

.success-strip span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.flipping-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.flip-text-container {
  background-color: #f4cc13;
  height: 45px;
  border-radius: 5px;
  width: 60%;
  padding-top: 26px;
}

.flip-container-general {
  perspective: 1000px;
  min-height: auto;
  min-width: 180px;
  position: relative;
}
.flip-container-general .flip-inner-general {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  background-color: #000;
}
.flip-container-general .flip-front-general,
.flip-container-general .flip-back-general {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: left;
}
.flip-container-general .flip-front-general {
  background: #fff;
  transform: rotateX(0deg);
}
.flip-container-general .flip-back-general {
  transform: rotateX(180deg) rotateY(0deg);
}
.flip-container-general.flip-animation-general .flip-inner-general {
  animation: flip-animation 6s ease-in-out infinite;
}

.failure-card {
  max-width: 75%;
  border: 2px solid red;
}
.failure-card a {
  display: inline-block;
  text-decoration: none;
  color: var(--secondary);
  font-size: 16px;
  margin: 4px 0px;
}

.failure-strip {
  background-color: #1f1f1f;
  color: #fff;
  height: 45px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
}
.failure-strip .error-icon {
  font-size: 24px;
  color: #f4cc13;
}

.icon-button {
  outline: none;
  border: none;
  background: none;
}
.icon-button:hover {
  background-color: #c3c5cb;
  border-radius: 5px;
}

@media (max-width: 576px) {
  .success-card {
    max-width: 100%;
  }
  .flip-text-container {
    width: 100%;
  }
  .failure-card {
    width: 100%;
    max-width: 100%;
  }
}
.common-carousel-section {
  margin: 5px 0px 15px 0px;
  padding: 5px 0px;
  width: 100%;
  max-width: 100%;
  max-height: var(--container-max-height);
}
.common-carousel-section .common-carousel-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.common-carousel-section .common-carousel-container .common-carousel-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-carousel-section .common-carousel-container .common-carousel-title-section .common-carousel-title h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 10px;
  color: var(--secondary);
}
.common-carousel-section .common-carousel-container .common-carousel-title-section .common-carousel-title p {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary);
  line-height: 25px;
  padding-top: 18px;
}
.common-carousel-section .common-carousel-container .common-carousel-title-section .carousel-navs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-carousel-section .common-carousel-container .common-carousel-title-section .carousel-navs button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 25px;
  color: var(--dark-alpha);
}
.common-carousel-section .common-carousel-container .common-carousel-title-section .carousel-navs button:hover {
  color: var(--secondary);
}

@media (max-width: 1400px) {
  .common-carousel-section {
    margin-top: 10px !important;
  }
}
@media (max-width: 1200px) {
  .common-carousel-section {
    margin-top: 100px !important;
  }
}
@media (max-width: 992px) {
  .common-carousel-section {
    margin-top: 220px !important;
  }
  .common-carousel-section .common-carousel-title h3 {
    line-height: 25px !important;
    font-size: 25px !important;
  }
  .common-carousel-section .common-carousel-title p {
    line-height: 20px !important;
  }
}
@media (max-width: 576px) {
  .common-carousel-section {
    margin-top: 10px !important;
  }
  .common-carousel-section .carousel-navs {
    display: none !important;
  }
}
.pioneers-slide-content {
  display: flex;
  flex-direction: column;
}

.pioneers-title {
  position: relative;
  margin-top: -25px;
  background-color: var(--button);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pioneers-title h5 {
  font-size: 21px;
  color: var(--secondary);
  text-align: center;
  padding: 10px 10px;
}

.superbus-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}
.superbus-logo img {
  width: 220px;
}

.contact-form {
  width: 100%;
  padding: 10px 10px;
  margin: 20px 15px;
  border: 1px solid var(--secondary);
  border-radius: 5px;
}
.contact-form h4 {
  color: var(--secondary);
  font-size: 22px;
  padding: 5px 0px;
}
.contact-form .contact-form-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.contact-form .contact-form-row .form-col {
  width: 50%;
  height: 100%;
}
.contact-form .contact-form-row .form-col .contact-form-filed {
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
}
.contact-form .contact-form-row .form-col .contact-form-filed label {
  color: var(--secondary);
  font-weight: 500;
}
.contact-form .contact-form-row .form-col .contact-form-filed input {
  outline: none;
  background-color: var(--light);
  height: 50px;
  border: 1px solid rgb(194, 192, 192);
  border-radius: 5px;
  padding: 0px 10px;
}
.contact-form .contact-form-row .form-col .contact-form-filed input:focus {
  border: 1px solid var(--secondary) !important;
}
.contact-form .contact-form-row .form-col .contact-form-filed textarea {
  width: 100%;
  height: 100%;
  outline: none;
  border: 1px solid rgb(194, 192, 192);
  border-radius: 5px;
  padding: 0px 10px;
}
.contact-form .contact-form-row .form-col .contact-form-filed textarea:focus {
  border: 1px solid var(--secondary) !important;
}
.contact-form .form-submit-button {
  display: flex;
  flex-direction: row;
  justify-content: end;
}
.contact-form .form-submit-button button {
  background-color: var(--secondary);
  outline: none;
  border: none;
  color: var(--light);
  width: 120px;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
}

.about-us-section {
  display: flex;
  flex-direction: column;
  padding: 50px 50px;
}
.about-us-section .about-us-banner {
  width: 100%;
  height: 350px;
  background-image: url("../images/aboutus/aboutimage.jpg");
  background-repeat: no-repeat;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}
.about-us-section .aboutus-heading {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 600;
  padding: 20px 0px;
}
.about-us-section .about-us-para {
  color: var(--primary);
  font-size: 20px;
  padding: 10px 15px;
}

.vision-mission {
  background-color: var(--button);
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  gap: 40px;
}
.vision-mission .vision-mission-image {
  padding: 10px 20px;
}
.vision-mission .vision-mission-right-part {
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
}
.vision-mission .vision-mission-right-part h5 {
  font-size: 25px;
  font-weight: 800;
  color: var(--secondary);
}
.vision-mission .vision-mission-right-part p {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
}

.meet-out-pioneers {
  padding: 30px 40px;
}
.meet-out-pioneers .aboutus_page_title {
  color: #ff9600;
  position: relative;
  font-size: 35px;
  font-weight: 600;
}
.meet-out-pioneers .aboutus_page_title::after {
  position: absolute;
  right: 0;
  top: 4px;
  content: "";
  width: 796px;
  height: 35px;
  background-image: url("../images/aboutus/aboutpattern.png");
  background-position: right top;
  background-repeat: no-repeat;
}

.press-of-honour-section {
  display: flex;
  flex-direction: column;
  background-color: var(--button);
}
.press-of-honour-section .press-of-honer-title {
  display: flex;
  flex-direction: column;
  margin-left: 60px;
  padding: 20px 0px;
}
.press-of-honour-section .press-of-honer-title h5 {
  color: var(--secondary);
  font-size: 25px;
  font-weight: 600;
}
.press-of-honour-section .press-of-honer-title p {
  max-width: 600px;
  color: var(--secondary);
  font-size: 19px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-us-section {
    padding: 2px 5px !important;
  }
  .about-us-section .aboutus-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    padding: 0px 10px;
  }
  .about-us-section .about-us-para {
    color: var(--primary);
    font-size: 16px;
    padding: 2px 15px;
    text-align: justify;
  }
  .vision-mission {
    flex-direction: column !important;
  }
  .vision-mission .vision-mission-image {
    padding: 0px 5px !important;
  }
  .vision-mission .vision-mission-image img {
    width: 60% !important;
  }
  .vision-mission .vision-mission-right-part {
    display: flex;
    flex-direction: column;
    padding: 0px 0px;
  }
  .vision-mission .vision-mission-right-part h5 {
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary);
  }
  .vision-mission .vision-mission-right-part p {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    text-align: justify;
  }
  .meet-out-pioneers {
    margin-top: 20px;
    margin-left: 10px;
    padding: 10px 0px 5px 0px;
  }
  .meet-out-pioneers .aboutus_page_title {
    font-size: 30px !important;
  }
  .meet-out-pioneers .aboutus_page_title::after {
    right: -10px !important;
    overflow: hidden;
    top: 0px;
    width: 160px;
  }
  .press-of-honour-section .press-of-honer-title {
    margin-left: 10px;
    padding: 10px 0px;
  }
}
@media (max-width: 576px) {
  .about-us-section {
    padding: 2px 5px !important;
  }
  .about-us-section .aboutus-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    padding: 0px 10px;
  }
  .about-us-section .about-us-para {
    color: var(--primary);
    font-size: 16px;
    padding: 2px 15px;
    text-align: justify;
  }
  .vision-mission {
    flex-direction: column !important;
  }
  .vision-mission .vision-mission-image {
    padding: 0px 5px !important;
  }
  .vision-mission .vision-mission-image img {
    width: 100% !important;
  }
  .vision-mission .vision-mission-right-part {
    display: flex;
    flex-direction: column;
    padding: 0px 0px;
  }
  .vision-mission .vision-mission-right-part h5 {
    font-size: 25px;
    font-weight: 800;
    color: var(--secondary);
  }
  .vision-mission .vision-mission-right-part p {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    text-align: justify;
  }
  .meet-out-pioneers {
    margin-top: 20px;
    margin-left: 10px;
    padding: 10px 0px 5px 0px;
  }
  .meet-out-pioneers .aboutus_page_title {
    font-size: 30px !important;
  }
  .meet-out-pioneers .aboutus_page_title::after {
    right: -10px !important;
    overflow: hidden;
    top: 0px;
    width: 160px;
  }
  .press-of-honour-section .press-of-honer-title {
    margin-left: 10px;
    padding: 10px 0px;
  }
}
.footer-section {
  max-width: 100%;
  width: 100;
}

.footer-container {
  max-width: 100%;
  width: 100;
  position: relative;
  background-color: var(--primary);
}

.app-download-section {
  position: relative;
  max-width: 100%;
  width: 100;
  z-index: 2;
  top: 60px;
}
.app-download-section .download-part {
  width: 100%;
  max-width: 100%;
  position: relative;
  background-image: url("../images/downloadappbg.png");
  background-position: center -1680px;
  background-repeat: no-repeat;
  min-height: 218px;
  padding: 45px 91px 0 86px;
  background-color: var(--button);
  border-radius: 20px;
  overflow: hidden;
  background-size: 5592px;
}
.app-download-section .download-part .download-part-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-download-section .download-part .download-part-container .app-area {
  display: flex;
  flex-direction: column;
}
.app-download-section .download-part .download-part-container .app-area h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  color: var(--secondary);
}
.app-download-section .download-part .download-part-container .app-area .download-app-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.app-download-section .download-part .download-part-container .app-area .download-app-icons a {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/googleicon.png");
  background-position: center -10px;
  background-repeat: no-repeat;
  width: 168px;
  height: 50px;
  background-size: 168px;
}
.app-download-section .download-part .download-part-container .app-area .download-app-icons a:last-child {
  background-position: center -180px;
}
@media (max-width: 768px) {
  .app-download-section .download-part {
    background-size: 4940px;
    background-position: center -1305px;
    padding: 20px 0px !important;
  }
  .app-download-section .download-part-container {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    gap: 50px !important;
    padding: 25px 20px !important;
  }
  .app-download-section .download-part-container .app-area {
    width: 100% !important;
    max-width: 100% !important;
  }
  .app-download-section .download-part-container .app-area h3 {
    text-align: center;
    width: 100%;
    font-size: 27px !important;
  }
  .app-download-section .download-part-container .app-area .download-app-icons {
    flex-direction: column;
    gap: 50px !important;
  }
}

.footer-content {
  max-width: 100%;
  width: 100;
  position: relative;
  padding-top: 60px;
}
.footer-content .social-media-links-conatiner {
  max-width: 100%;
  width: 100;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--button);
  padding-bottom: 20px;
}
.footer-content .social-media-links-conatiner p {
  color: var(--tertiary);
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
}
.footer-content .social-media-links-conatiner .social-media-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
.footer-content .social-media-links-conatiner .social-media-links a {
  text-decoration: none;
  color: var(--tertiary);
  font-size: 32px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  transition: all 0.3s ease-in;
}
.footer-content .social-media-links-conatiner .social-media-links a:hover {
  color: var(--button);
  transition: all 0.3s ease-in;
}
.footer-content .footer-nav-containers {
  max-width: 100%;
  width: 100;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 25px 0;
}
.footer-content .footer-nav-containers .footer-nav-links-section {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 5px 30px;
  gap: 20px;
  width: 70%;
  max-width: 70%;
}
.footer-content .footer-nav-containers .footer-nav-links-section .footer-nav-links {
  width: 100%;
  max-width: 300px;
}
.footer-content .footer-nav-containers .footer-nav-links-section .footer-nav-links h4 {
  color: var(--tertiary);
  font-size: 20px;
  font-weight: 500;
}
.footer-content .footer-nav-containers .footer-nav-links-section .footer-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease-in;
}
.footer-content .footer-nav-containers .footer-nav-links-section .footer-nav-links ul li a {
  display: block;
  margin-right: 20px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: var(--tertiary) !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-content .footer-nav-containers .footer-nav-links-section .footer-nav-links ul li a:hover {
  border-left: 2px solid var(--button);
  padding-left: 5px;
}
.footer-content .footer-nav-containers .footer-nav-links-section .single-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-content .footer-nav-containers .footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-content .footer-nav-containers .footer-address .address-container h4 {
  color: var(--tertiary);
  font-size: 20px;
  font-weight: 500;
}
.footer-content .footer-nav-containers .footer-address .address-container p {
  color: var(--tertiary);
  font-size: 12px;
  font-weight: 400;
  max-height: 500px;
  overflow: hidden;
}
.footer-content .footer-nav-containers .footer-address .footer-address-app-icons h4 {
  color: var(--tertiary);
  font-size: 20px;
  font-weight: 500;
}
.footer-content .footer-nav-containers .footer-address .footer-address-app-icons .footer-app-btn a {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/googleicon.png");
  background-position: center -10px;
  background-repeat: no-repeat;
  width: 135px;
  height: 40px;
  background-size: 135px;
  margin-left: auto;
  margin-bottom: 10px;
  border: 1px solid var(--tertiary);
  border-radius: 8px;
}
.footer-content .footer-nav-containers .footer-address .footer-address-app-icons .footer-app-btn a:last-child {
  background-position: center -145px;
  margin-left: 8px;
}
.footer-content .footer-bottom-part {
  width: 100%;
  position: relative;
  background: var(--primary);
  text-align: center;
  padding-top: 13px;
}
.footer-content .footer-bottom-part .footer-travels-link {
  padding: 29px 0 20px;
  border-top: 1px solid var(--button);
  font-size: 14px;
  font-weight: 400;
  color: var(--tertiary);
  transition: all 0.3s ease;
}
.footer-content .footer-bottom-part .footer-travels-link a {
  color: var(--tertiary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-content .footer-bottom-part .footer-travels-link:hover {
  color: var(--button);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .footer-content .footer-nav-containers {
    flex-direction: column;
  }
  .footer-content .footer-nav-containers .footer-nav-links-section {
    width: 100%;
    max-width: 100%;
  }
  .footer-content .footer-nav-containers .footer-address {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 25px;
  }
}
@media (max-width: 768px) {
  .footer-content .footer-address-app-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-content .footer-address-app-icons .footer-app-btn {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .footer-content .footer-address-app-icons .footer-app-btn a {
    display: block !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .footer-content .footer-address-app-icons .footer-app-btn a:last-child {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .footer-content .footer-nav-links-section {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    padding: 5px 18px 5px 0px !important;
  }
  .footer-content .footer-nav-links-section .footer-nav-links {
    width: 100% !important;
    max-width: 100% !important;
  }
  .footer-content .footer-nav-links-section .footer-nav-links h4 {
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    position: relative;
    padding: 10px 0 10px 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--dark-alpha) !important;
    transition: all 0.3s ease-in !important;
  }
  .footer-content .footer-nav-links-section .footer-nav-links h4::after {
    position: absolute;
    content: "\f067";
    right: 0;
    color: var(--pure);
    font-size: 14px;
    font-family: fontawesome;
  }
  .footer-content .footer-nav-links-section .footer-nav-links ul {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
  }
  .footer-content .footer-nav-links-section .single-column {
    width: 100%;
    max-width: 100%;
    gap: 15px !important;
  }
  .footer-content .footer-address {
    flex-direction: column !important;
    gap: 10px;
    padding: 5px 18px 5px 0px !important;
  }
  .footer-content .footer-address .address-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .footer-content .footer-address .address-container h4 {
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    position: relative;
    padding: 10px 0 10px 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--dark-alpha) !important;
    transition: all 0.3s ease-in !important;
  }
  .footer-content .footer-address .address-container p {
    padding: 20px 0px;
    overflow: hidden;
    max-height: 250px !important;
    transition: max-height 0.5s ease-in !important;
  }
  .footer-content .footer-address .footer-address-app-icons {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }
  .footer-content .footer-address .footer-address-app-icons h4 {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    cursor: pointer;
  }
  .footer-content .footer-address .footer-address-app-icons .footer-app-btn {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}
.footer-content .open ul {
  max-height: 500px !important;
  transition: max-height 0.5s ease-in !important;
}

/*# sourceMappingURL=global.css.map */
