/**
* Template Name: CW Rent A Car
* Version: 1.0
* Author: Ikram Hossen
* Developed By: Codeware Ltd.
* Author URL: www.codewareltd.com
**/
/*====================================================================
	root css
====================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --textColor: #2A2A2A;
  --primaryColor: #255490;
  --secondaryColor: #ed8122;
  --grayColor: #ddd;
  --whiteColor: #ffffff;
  --lightGray: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: var(--secondaryColor);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

/* *{
  font-family: "PT Sans", sans-serif;
} */
html{
  overflow-x: hidden !important;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--lightGray);
  font-size: 16px;
  font-family: "Poppins", serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 30px;

}
body.modal-open {
  padding: 0 !important;
}
.modal.fade.show {
  padding: 0px !important;
}
a{
  color: var(--textColor);
  text-decoration: none;
}
.transparentBtn {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: all ease-in-out 0.2s;
}
button:disabled, button[disabled], select:disabled, select[disabled] {
  background-color: #ddd !important;
  color: #666666 !important;
  opacity: 0.6;
  border: 1px solid #c9c8c8;
  cursor: initial;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
a:hover {
  color: var(--primaryColor);
  text-decoration: none;
}
footer a:hover {
  color: var(--secondaryColor);
}
.footer-bottom a {
  color: var(--textColor);
  text-transform: capitalize;
  white-space: nowrap;
}
.footer-bottom a:hover {
  color: var(--primaryColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
  font-family: "Inter", serif !important;
}
/*{
  font-family: "DM Sans", sans-serif !important;
} */
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.part1{
  font-weight:600;
  font-size:2rem;
  color: var(--textColor);  
}
.part2{
  background-color: var(--secondaryColor);
  border-radius:5px;
  color:white;
  padding-left:0.5rem;
  padding-right:0.5rem;
  font-weight:600;
  font-size:2rem;
  margin-left: 0.5rem;
}
.loader {
  position: absolute;
  left: 50%;
  margin-top: 7rem;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 15rem;
  background-color: #ddd;
}
.loading{
  background-color: var(--primaryColor);  
  width:5rem;
  height:5px;
  animation: animation 1.8s infinite;
}
@keyframes animation {
    0% {
        transform: translateX(0rem);
    }
    50% {
        transform: translateX(10rem);
    }
    100% {
        transform: translateX(0rem);
    }
  }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.modal {
  z-index: 99999;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}
.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #13a4de;
  color: var(--whiteColor);
  transition: all 0.2s;
}
.back-to-top i:hover {
  background: #ee3135;
  color: var(--whiteColor);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header_top{
  font-size: 18px;
}
.responsive-img{
  width: 100%;
  height: 100%;
}
.site_logo {
  object-fit: contain;
}
.social-links a {
  font-size: 14px;
  display: inline-block;
  padding: 0 10px;
  transition: 0.3s;
  border-right: 1px solid var(--lightGray);
  text-align: center;
  line-height: 0;
}
.social-links a:last-child {
  border-right: 0px !important;
  background: var(--primaryColor);
  display: inline-block;
  color: var(--whiteColor);
  font-weight: 500;
  border-radius: 30px;
  font-size: 13px;
  padding: 3px 18px;
  margin-left: 10px;
  border: 0;
  line-height: 20px !important;
}
#header {
  transition: all 0.2s;
  z-index: 8;
  padding: 4px 0;
  background-color: var(--whiteColor);
  position: sticky;
  top: 0;
  width: 100%;
  height: min-content;
  border-bottom: 1px solid var(--lightGray);
  box-shadow: 0px 5px 10px #9d9d9d1f;
}
#header .logo {
  width: 165px;
}
/* ==========information========= */
.inform {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}
.time-gh1{
  text-transform: uppercase;
}
.table_gh2{
    font-size: 22px;
    background: var(--primaryColor);
    color: var(--whiteColor);
    padding: 2px 5px;
    font-weight: 500; 
}
.s .navbar__list-drop-bar li:hover svg path {
  stroke: var(--primaryColor) !important;
}
.navbar__list li .arrow {
  transition: 0.3s ease;
}

.navbar__list li .arrow.up {
  transform: rotate(180deg);
}
.navbar__list-drop {
  display: inline-block;
  position: relative;
}
.navbar__list-drop-bar {
  display: none;
  position: absolute;
  margin-top: 21px;
  flex-direction: column;
  padding: 7px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  border-radius: 8px;
  z-index: 999;
  list-style: none;
  min-width: 160px;
  min-height: 120px;

}
@media screen and (max-width: 1024px) {
  .navbar__list-drop-bar {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }
}

.navbar__list-drop-bar.open {
  display: flex;
}
.navbar__list-drop-bar.dropdown {
  right: 1px !important;
}
.navbar__list-drop-bar.company {
  left: 0;
  width: max-content;
}
/* =====hotel served==== */
.category {
  font-size: 13px;
  font-weight: bold;
  color: var(--whiteColor);
  background: var(--primaryColor);
  padding: 5px 13px 6px 11px;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  top: 1rem;
  border-radius: 0px 20px 20px 0px;
}
.hotel_box_inner{
    overflow: hidden;
    transition: 250ms all ease-in-out;
}
.hotel_box_inner:hover{
    transform: scale(1.05);
}
.hotel_saved {
  position: relative;
  overflow: hidden;
  height: 200px !important;
}
.hotel_saved::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #00000005;
}
.gt-hoppa {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}
.hotel_content {
  position: absolute;
  z-index: 2;
  color: var(--whiteColor);
  top: 50%;
  transform: translateY(-50%);
  max-width: 55%;

}
.hotel_infom {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--whiteColor);
  margin: 0;
}
.hotel-svd {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--whiteColor);
  line-height: 45px !important;
  margin: 0;
}
.staff .img {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 5%;
  transition: all 0.3s ease;
}
.staff .info span.position {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #0c70ab;
}
.hotel_logo {
  height: 60px;
  object-fit: contain;
  border: 2px dashed #eee;
}
.hotel_logos img {
  background: #fff;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
}
.hotel_info_query {
  margin: 10px 0px 0px;
  font-style: italic;
  color: #a80909;
}
.hotel_box {
  position: relative;
  height: 100%;
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
  box-shadow: 0 0 10px 1px rgb(25 71 134 / 29%);
}
.hotel_box .info {
  background: var(--whiteColor);
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
 
}
p.parga-text {
  min-height: 85px;
}
.hotel_box_img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  /* border-radius: 15px; */
}
/* =====timetable GH1==== */
.hotel_lg_img {
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
}
.gh_content {
  background: #eee;
  border-radius: 15px;
  width: 95%;
  margin: -30px auto 0;
  position: relative;
  padding: 15px;
  text-align: center;
  border-bottom: 3px solid #3fa0d9;
}
.gh_content_2 {
  background: #fff;
}
.gh_box_title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primaryColor);
}
.banner_name {
  color: var(--primaryColor);
  font-weight: 700;
}
.staff.info span.position {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--secondaryColor)
}
.icon-display {
  display: contents;
}
.travel_logo {
  height: 65px;
  width: auto;
}
.contetnt-logo-tersouth-btn {
  height: 150px;
  width: 100px;
}
.feature-banner-1 {
  height: auto;
  width: 50%;
}
.contetnt-logo-terminal-south {
  height: 35px;
  width: auto;
}
.contetnt-logo-terminal {
  height: 20px;
  width: auto;
}
.staff .staff-imes .imges {
  width: 240px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50px 50px 0px 0px;
  transition: all 0.3s ease;
}
.text-hoppa{
    background: var(--primaryColor);
    color: white;
    width: 240px;
    height: 141px;
    margin: 0 auto;
    display: block;
    border-radius: 0px 0px 50px 50px;
    padding: 6px;
    line-height: 22px;
}
.text-hoppa h3{
  font-size: 21px;
  font-weight: 600;
}
.text-hoppa p{
  font-size: 15px;
  
}
.map-imgs{
  border: 1px solid #f0f0f0;
  transition: all.3s ease;
}
.map-imgs:hover{
  border: 1px solid var(--primaryColor);
}
/* =====timetable GH2==== */
.staff-imges {
  display: flex;
  background: #eff2f5;
}
.staff .staff-imges .imgs {
  width: 220px;
  height: 220px;
  border-radius: 0px;
}
.alin-jutify{
  line-height: 25px;
  margin: 22px;
}
.banner_names{
  font-size: 20px;
  font-weight: 600;
  color: var(--primaryColor);
}
.box-shados{
  box-shadow: none !important;
  border: 1px solid var(--primaryColor) !important;
}
.form-control {
  border: 1px solid #ddd;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.lang__anc {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}
.flag-icon {
  margin-right: 5px !important;
}
/* Header New */
.headerStyle {
  background-color: var(--whiteColor);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 99;
}
.headerStyle .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  transition: all 0.5s ease;
}
.headerStyle  .navbar__menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .navbar__menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: calc(100vh - 78px);
    background-color: var(--whiteColor);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
    z-index: 888;
  }
  .navbar__menu.right-open {
    right: 0;
  }
}
.navbar__list {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 0rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .navbar__list {
    flex-direction: column;
    flex-grow: 0;
  }
}

.navbar__list li a {
  transition: all 0.3s ease;
  color: var(--textColor);
  text-transform: capitalize;
  font-size: 17px;
  padding: 0 20px;
  display: inline-block;
  position: relative;
  font-weight: 400;
  line-height: 30px;
}
.navbar__list li a:hover {
  color: var(--primaryColor);
}
.navbar__list li a.active {
  color: var(--primaryColor);
  font-weight: 600;
}
.navbar__list li a.active.sign_up_btn:before {
  display: none;
}
.navbar__list li ul li a{
  padding: 0;
}
.navbar__list-drop-menu li:hover svg path {
  stroke: var(--primaryColor) !important;
}
.navbar__list li .arrow {
  transition: 0.3s ease;
}
.navbar__list li .arrow.up {
  transform: rotate(180deg);
}
.navbar__list-drop {
  display: inline-block;
  position: relative;
}
.navbar__list-drop-menu {
  display: none;
  position: absolute;
  margin-top: 1rem;
  flex-direction: column;
  gap: 6px;
  padding: 1rem;
  background-color: var(--whiteColor);
  border-radius: 1rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  z-index: 999;
  list-style: none;
  min-width: 200px;
}
.sign_up_btn{
  min-width: 120px !important;
}
@media screen and (max-width: 1024px) {
  .navbar__list-drop-menu {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }
}
.navbar__list-drop-menu.open {
  display: flex;
}
.navbar__list-drop-menu.features {
  right: 0;
}
.navbar__list-drop-menu.company {
  left: 0;
  width: max-content;
}
.navbar__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .navbar__buttons {
    width: 100%;
    flex-direction: column;
  }
}
.navbar__buttons a {
  color: var(--textColor);
  font-weight: 500;
  transition: 0.3s ease;
}
.navbar__buttons a:hover {
  color: var(--primaryColor);
}
.navbar__buttons-register {
  font-weight: 500;
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  background-color: #0a71b4;
  border-radius: 10px;
  transition: 0.3s ease;
  text-transform: capitalize;
}
.navbar__buttons-register:hover {
  background: var(--secondaryColor) !important;
  
}
.navbar .menu {
  display: none;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .navbar .menu {
    display: block;
  }
}
.headerStyle  .navbar .menu span {
  display: block;
  width: 22px;
  height: 4px;
  background: #000000;
  margin-bottom: 2px;
  border-radius: 1px;
  transition: all 275ms ease;
}
.headerStyle  .navbar .menu.active {
  transform: rotate(-45deg);
}
.headerStyle  .navbar .menu.active .bar1 {
  transform: rotate(0deg) translateY(6px);
}
.headerStyle  .navbar .menu.active .bar2 {
  opacity: 0;
}
.headerStyle  .navbar .menu.active .bar3 {
  transform: rotate(-90deg) translateX(5px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home_banner_content {
  color: var(--whiteColor);
  margin-top: 50px;
  /* position: relative;
  z-index: 1;
  margin-bottom: 30px;
  width: 60%; */
}
.banner._main_title {
  font-size: 40px;
  width: 70%;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 50px;
}
.banner._main_title span {
  color: var(--whiteColor);
  text-transform: capitalize;
}
.banner_desc {
  font-size: 17px;
  line-height: 30px;
  margin: 0;
}
.home_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 650px;
}
.input-group-text {
  font-size: 1.3rem;
}
.from-to-flex {
  display: flex;
  align-items: center;
}
.from-to-flex > label {
  width: 50%;
}
.s_bus_form_label2 {
  padding-left: 5px;
}
label.search_bus_form_label {
  text-align: left;
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  color: #222;
  letter-spacing: 0.3px;
}
label {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: var(--textColor);
}
#hero .input-group {
  flex-wrap: nowrap;
  height: 40px;
}
.code_with_mobile_inp {
  border-radius: 0px 5px 5px 0px !important;
}
.phone_prefix_wrap .select2-container--default .select2-selection--single {
  background-color: #eee !important;
  border: 1px solid #c8c8c8 !important;
  border-right: 0px !important;
  border-radius: 3px 0px 0px 3px !important;
}
#date,
#date2 {
  position: relative !important;
  padding-top: 7px !important;
  background: var(--whiteColor);
  height: 40px !important;
  border-radius: 5px;
}

#date:focus,
#date2:focus {
  border: 1px solid #c8c8c8 !important;
}
 
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-bg {
  background-color: #f3f5fa;
}

.section-title .page_title {
  font-size: 33px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  color: var(--primaryColor);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/

.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 100%;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  /* -webkit-filter: grayscale(100);
  filter: grayscale(100);*/
}
.cliens img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
  cursor: pointer;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about_page_img {
  max-width: 400px;
  display: inline-block;
  border-radius: 50%;
  width: 100%;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ee3135;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #ee3135;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ee3135;
}
.about .content .btn-learn-more:hover {
  background: #ee3135;
  color: var(--whiteColor);
  text-decoration: none;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.m-media-table__content.home-list {
  justify-content: space-between;
  gap: 15px;
}
.m-media-table__content.home-list .item-list_chose {
  width: 32.5%;
}
.m-media-table__content.home-list .chose-list__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  width: 90%;
}

ul.m-media-table__content {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 13px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
li.a-item-list {
  background: #fff;
  padding: 10px;
  min-width: 350px;
  border-radius: 10px;
  border: 1px dashed var(--primaryColor);
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
i.a-item-list__icon{
  color: var(--secondaryColor);
  font-size: 20px;
}
span.a-item-list__description {
  font-size: 16px;
  font-weight: 500;
}
.service_title {
  font-size: 20px !important;
  font-weight: 500;
  color: var(--textColor);
  margin: 0 0 10px 0;
  text-transform: capitalize;
}
.qns-one-half.home-icon-wrapper-2 {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.qns-home-icon {
  width: 110px;
  border: 2px dashed #25549047;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_subtitle {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
}
.qns-home-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.home-icon-wrapper h4{
  font-size: 20px;
  margin: 0 0 25px 0;
}
.title-block3 {
  width: 45px;
  height: 2px;
  margin: 0px 0 20px 0;
  background-color: var(--secondaryColor);
}
p.service_desc {
  line-height: 26px;
  font-size: 16px;
  font-weight: 300;
  min-height: 60px;
  width: 85%;
  margin: 0 auto;
}
/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
}
.skills .content ul {
  list-style: none;
  padding: 0;
}
.skills .content ul li {
  padding-bottom: 10px;
}
.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}
.skills .content p:last-child {
  margin-bottom: 0;
}
.skills .progress {
  height: 40px;
  display: block;
  background: none;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #37517e;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e8edf5;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
why us hopp bus
--------------------------------------------------------------*/
.custom_btn {
  background: var(--primaryColor);
  border: 0;
  padding: 10px;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--whiteColor) !important;
  border-radius: 30px;
  line-height: 30px;
  transition: all ease-in-out 0.2s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}
.custom_btn:hover {
  background: var(--secondaryColor);
}
.custom_btn_2 {
  background: var(--primaryColor);
  border: 0;
  padding: 10px;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--whiteColor) !important;
  border-radius: 30px;
  line-height: 30px;
  transition: all ease-in-out 0.2s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}
.custom_btn_2:hover{
    background: var(--secondaryColor)!important;
    
}
.about_img {
  max-width: 450px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
}
.app_imges {
  text-align: center;
}
.app_download_btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
 .rojos_app_title{
  padding: 0px 12px;
 }
.heading-section .title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--textColor);
  line-height: 40px;
}
.heading-section .sub-title {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: var(--primaryColor);
}
p.color_subtitle_sm {
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--secondaryColor);
  font-size: 18px;
  display: none;
}
.about-wrap .list-services .text {
  width: 90%;
  padding-left: 25px;
}
.about-wrap .list-services span.fa {
  color: var(--secondaryColor);
  font-size: 18px;
  margin-top: 8px;
}
.about-wrap .list-services {
  margin-right: 30px;
  align-items: flex-start;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.jkit-fun-fact {
  position: absolute;
  bottom: 20px;
  left: 0px;
  background: #fff;
  min-width: 200px;
  padding: 20px;
  /* border-radius: 15px; */
}
.number-wrapper .number {
  font-size: 30px;
  font-weight: 700;
}
.jkit-fun-fact .title {
  margin: 0;
  font-weight: 500;
  text-transform: capitalize;
  color: #888;
}
.jkit-fun-fact sup.super {
  color: red;
  font-size: 22px;
}
.bg-light {
  background-color: #eee !important;
}
/*--------------------------------------------------------------
# flight
--------------------------------------------------------------*/
.hotel_contents {
  text-align: center;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}
.ftco-section {
  padding: 2em 0;
  background: #eee;
}
.staff_img {
  border-radius: 15px;
  height: 95%;
  z-index: 1;
  box-shadow: 32px 30px 0px #425670;
}
.staff_img_wrap {
  position: relative;
  height: 100%;
}
.staff {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
}
.staff .info {
  width: 100%;
}
.banner_name {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 18px;
}
.staff .info h3 {
  font-size: 18px;
}
.staff .info span.position {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #0c70ab;
  line-height: 22px;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  color: var(--textColor);
}
.daterangepicker td.active
 {
  background-color: var(--primaryColor) !important;
  border-color: transparent;
  color: var(--whiteColor);
  border-radius: 50% !important;
}
.text-capitals{
  text-transform: capitalize;
  font-weight: 700;
}
.passenger-info-tbl {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--textColor);
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.contact-background {
  background-color: #eee;
}
 .contact-icon {
  max-height: 350px;
}
.pricing-entry p {
  color: #393232;
  font-weight: 300;
}
.btn.btn-primary:hover {
  border: 1px solid #ebf1f9;
  background: transparent;
  color: #184786;
}
.support_dtls{
  background: var(--whiteColor);
  padding: 10px;
  border-radius: 25px;
}
/*--------------------------------------------------------------
# Payment Section
--------------------------------------------------------------*/
 .app_sections {
   background: var(--whiteColor);
   padding: 55px 0px;
   border-radius: 25px;
 }
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta h3 {
  color: var(--whiteColor);
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: var(--whiteColor);
}
.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.2s;
  margin: 10px;
  border: 2px solid var(--whiteColor);
  color: var(--whiteColor);
}
.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: var(--whiteColor);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: var(--whiteColor);
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: var(--whiteColor);
  transition: 0.2s;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.2s;
}
.team .member:hover {
  transform: translateY(-10px);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}
.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #47b2e4;
}
.team .member .social a:hover i {
  color: var(--whiteColor);
}
.team .member .social a + a {
  margin-left: 8px;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}
.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: var(--whiteColor);
  height: 100%;
  border-top: 4px solid var(--whiteColor);
  border-radius: 5px;
}
.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}
.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  margin-bottom: 25px;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}
.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}
.pricing .buy-btn:hover {
  background: #47b2e4;
  color: var(--whiteColor);
}
.pricing .featured {
  border-top-color: #47b2e4;
}
.pricing .featured .buy-btn {
  background: #47b2e4;
  color: var(--whiteColor);
}
.pricing .featured .buy-btn:hover {
  background: #23a3df;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ee3135;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #ee3135;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--secondaryColor) !important;
  color: white;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  background: var(--whiteColor);
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info i {
  font-size: 20px;
  color: #ee3135;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ee3135;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--textColor);
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: var(--whiteColor);
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #47b2e4;
  color: var(--whiteColor);
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ee3135;
  color: var(--whiteColor);
}
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: var(--whiteColor);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: var(--whiteColor);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var(--whiteColor);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--whiteColor);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #13a4de;
  border-top-color: var(--lightGray);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #13a4de;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #ee3135;
  border: 0;
  padding: 12px 34px;
  color: var(--whiteColor);
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #ee3135;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-container {
  position: relative;
}
.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}
.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}
.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #47b2e4 !important;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: var(--whiteColor);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lightGray);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 50px;
}
.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--lightGray);
  margin-top: auto;
  color: var(--textColor);
  overflow: hidden;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--whiteColor);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .site_logo {
  background: var(--whiteColor);
  border-radius: 3px;
  padding: 5px;
}
#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: var(--whiteColor);
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}
#footer .footer-top {
  padding: 40px 0px;
  background: var(--primaryColor);
  color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--whiteColor);
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
#footer .footer-top h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--whiteColor);
  position: relative;
  padding-bottom: 0;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.footer-links p {
  margin: 0;
  font-size: 14px;
  padding: 6px 0;
}
.footer-links p:first-of-type {
  padding-top: 0 !important;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 3px;
  color: var(--whiteColor);
  font-size: 16px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  margin-right: 3px;
}
#footer .footer-top .footer-links ul li {
  display: flex;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.stripe_img {
  margin-bottom: 5px;
  max-width: 200px;
  background: var(--textColor);
  padding: 5px;
  height: 60px;
  border-radius: 5px;
  object-fit: contain;
}
.stripe_img:nth-of-type(2){
  background-color: var(--whiteColor);
}
#footer .footer-top .footer-links ul a {
  color: var(--whiteColor);
  display: inline-block;
}
.footer_texts{
  color: var(--whiteColor);
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: var(--whiteColor);
}
#footer .footer-top .social-links a i {
  line-height: 24px !important;
}
#footer .footer-top .social-links a:hover {
  background: #2b86bb;
  color: var(--whiteColor);
  text-decoration: none;
}
#footer .footer-bottom {
  padding: 10px 0 !important;
  text-align: center;
  background: var(--whiteColor);
  font-size: 15px;
}
.div-wrapper1 {
  position: relative;
  height: 300px;
  width: 300px;
}
.div-wrapper1 img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-contact img {
  width: 165px;
}
.phone_prefix_text_inp {
  border-radius: 0px 5px 5px 0px !important;
}
.cus_mesge{
  min-height: 40px;
  border: 1px solid #eee; 
}
.form-control:focus {
  background-color: var(--whiteColor);
  border-color: var(--primaryColor) !important;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--primaryColor) !important;
  border-radius: 5px;
}
#mobile:focus, #pmPhone:focus {
  border-color: var(--primaryColor) !important;
}
.bus-filter-wrapper .filter_label {
  font-size: 16px;
  color: var(--primaryColor);
  font-weight: 600;
}
input#depart,
input#to {
  width: 25%;
  padding: 10px;
}
.text-center.sbuses button {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  transition: 0.2s;
  margin: 10px 0 0 0;
  color: var(--whiteColor);
  background: var(--whiteColor);
  margin-top: 0px;
  border: none;
  background: #ee3135;
}
.logo-txt {
  color: var(--whiteColor);
  font-size: 22px;
  letter-spacing: 0;
}
.btnsubmit {
  font-weight: 500;
  transition: 0.2s;
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  line-height: 40px;
  border: 0 !important;
  letter-spacing: 0.5px;
  border-radius: 5px;
  height: 40px;
  text-transform: capitalize;
}
.btnsubmit:hover {
    background: var(--secondaryColor) !important;
    border-color:1px solid var(--secondaryColor)!important;  
}

.col-lg-12.d-flex.flex-column.justify-content-center.align-items-stretch.order-2.order-lg-1
  .content {
  background: var(--whiteColor);
  padding: 98px;
  margin: 50px;
}
.fixed-top {
  position: absolute !important;
}
section#about .col-lg-6 {
  border: 1px solid #f3f5fa;
  padding: 52px;
}
section#about .col-lg-6.pt-4.pt-lg-0 {
  padding-top: 59px !important;
}
section#services
  .col-xl-4.col-md-6.d-flex.align-items-stretch.aos-init.aos-animate {
  padding-bottom: 20px;
}
.container.footer-bottom.clearfix {
  border-top: 1px dotted var(--whiteColor);
}
.footer-links p a {
  color: var(--whiteColor);
}
#footer .copyright a {
  color: var(--primaryColor);
}
.faq-list a {
  color: #ee3135;
}
#hero1 {
  width: 100%;
  height: 30vh;
  background: var(--whiteColor);
  background-image: linear-gradient(rgb(110 98 162), rgba(255, 255, 255, 0.5)),
    url(../img/bgnew.png);
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-position: bottom;
  background-position-x: center;
  background-size: 143% 79%;
}
img.minlogo {
  width: 27% !important;
}
section.d-flex.align-items-center.bresults {
  height: 0px !important;
}
.selecteddest {
  margin-top: -60px;
  background: #f4fdf9;
  padding-top: 22px;
  padding-left: 10px;
}
a.changelink {
  color: #13a4de;
  border: 1px solid #13a4de;
  padding: 5px 20px;
  margin-left: 20px;
  border-radius: 5px;
}
img.nobusfound {
  width: 50%;
}
hr {
  border: 1px solid #dcdcdc;
}
td.busfnd {
  padding-right: 108px;
}
td.busdata {
  padding-right: 56px;
  font-size: 14px;
  font-weight: inherit;
}
td.busdata.seats {
  float: right;
  padding-right: 0px !important;
  padding-left: 44px;
}
table.busdetails {
  margin-top: 69px !important;
}
table.busdetails tbody tr {
  border: 1px solid #13a4de;
  line-height: 29px;
}
table.busdetails tr td {
  padding-left: 25px;
}
td.busdata.dept {
  font-size: 17px;
  font-weight: bold;
  width: 14%;
  padding-left: 0px;
  padding-right: 0px;
}
td.busdata.dur {
  width: 15%;
  font-size: 14px;
}
td.busdata.arr {
  padding-left: 0px;
  font-size: 18px;
  width: 15%;
}
p.busty {
  font-size: 13px;
}
td.opers {
  width: 29%;
}
p.opername {
  line-height: 0;
}
td.busdata.fare {
  width: 14%;
  font-size: 19px;
  font-weight: bold;
  padding-left: 0;
}
td.busdata.seats1 {
  width: 56%;
}
button.btndetail {
  border: none;
  background: #f4fdf9;
  color: #ee3135;
  padding: 33px 14px;
  font-size: 17px;
  font-weight: bold;
  border-left: 1px solid;
  text-transform: uppercase;
}
table.maintitletable {
  width: 90%;
}
td.busdata.rating.rate {
  width: 10%;
  padding-left: 0;
  padding-right: 0;
  font-weight: bold;
  font-size: 16px;
}
i.ti-star {
  background: #13a4de;
  padding: 5px;
  color: var(--whiteColor);
}
small.busty span {
  color: #ff1515;
  font-weight: 600;
}
tr.bottomlinks {
  background: #13a4de;
  color: var(--whiteColor);
}
button.btndetail.book a {
  color: #ee3135 !important;
}
a.trmcon {
  color: #28a745;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: var(--whiteColor);
  border-color: #13a4de !important;
  background-color: #13a4de !important;
}
table.seatsview tr td {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  padding: 7px 22px;
}
table.seatsview {
  border: none;
}
td.seatava {
  background: url(.../img/avaliable.png);
  background-image: url(../img/avaliable.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
}
td.seatava a {
  color: #050a08;
}
.legends ul li {
  list-style: none;
  float: right;
  vertical-align: middle;
  font-size: 15px;
}
/* New Css */
.service-icon-wrapper {
  min-height: 85px;
  position: relative;
}
.service-icon-wrapper img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  bottom: 0;
}
.icon-box-title {
  overflow: hidden;
  text-transform: uppercase;
  min-height: 40px;
  font-size: 18px;
  line-height: 25px;
  color: #666666;
}
.icon-box-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
/* Filter */
div#trip-msg {
  border: 1px solid var(--lightGray);
  margin-top: 30px;
  padding: 30px;
  text-align: center;
}
.bus-filter-wrapper {
  margin: 20px 0 5px;
}
.th-arrow-block {
  position: absolute;
  right: 7px;
  border-width: 9px 4px 5px;
  border-color: transparent transparent #6c6c6c;
  border-style: solid;
  top: 3px;
}
th.bus_tbl_head::after {
  position: absolute;
  content: "";
  right: 7px;
  border-width: 5px 4px 9px;
  border-color: #6c6c6c transparent transparent;
  border-style: solid;
  top: 19px;
}
.th-arrow-none {
  display: none !important;
}.dept_time {
  font-weight: 700;
  font-size: 16px;
  color: #dc3545;
}
.mbrnad-name {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
.dept_sm_img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
}
.mbrnad-coach {
  font-size: 18px;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 6px !important;
}
.dept_img_content_flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dept-time-wrapper {
  margin-top: 15px;
  position: relative;
}
.cartitem {
  width: 100%;
  flex-shrink: 0;
}
.cartitem .directions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.day-name.short-day-name {
  background: #fff;
  padding: 0px 10px;
  color: #f00;
  font-size: 14px;
}
.left {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondaryColor);
}
.cartitem .directions .ico-bus {
  background: url('../img/car.png') center no-repeat;
  width: 30px;
  height: 25px;
  display: inline-block;
  background-size: contain;
}
.dept-time-wrapper h4 {
  margin: 0px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background: var(--whiteColor);
  font-size: 22px;
}
.dept_price {
  font-size: 17px;
  font-weight: 700;
  color: var(--primaryColor);
  margin: 0;
  line-height: 24px;
  text-align: justify;
}
.price_div_area_border .dept_price {
  padding: 28px 0px 3px 0px;
}
.abs_line {
  position: absolute;
  width: 100%;
  height: .1px;
  background: #a4a4a4;
  top: 12px;
}
.dept-time-wrapper .abs_line::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primaryColor);
  background: var(--whiteColor);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 50%;
}
.dept-time-wrapper .abs_line::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primaryColor);
  background: var(--whiteColor);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 50%;
}
.dept-time-wrapper p {
  margin: 0px;
  position: relative;
  z-index: 2;
  background: var(--whiteColor);
  padding: 0 3px;
  display: inline-block;
  font-weight: 600;
}
.amenities-img-wrap img {
  margin: 0px 5px;
}
.direct_collpase_btn {
  cursor: pointer;
  text-transform: capitalize;
}
.amenities-toggle-box {
  display: none;
}
.amenities-img-wrap img {
  opacity: 0.6;
}
.amenities-img-wrap.first-img-wrap img:last-of-type {
  border-left: 2px solid var(--textColor);
  padding-left: 13px;
}
.amenities-img-wrap.amenities-img-collapse-wrap {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
.duration_time {
  position: absolute !important;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: red;
}
.abs_border_right {
  position: relative;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.abs_border_right::after {
  content: "";
  position: absolute;
  height: 59%;
  width: 1px;
  background: var(--grayColor) !important;
  top: 30px;
  left: 0;
  bottom: 0;
}
.filter-collpsible-btn {
  width: 100%;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  color: #333663 !important;
  text-align: left !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  position: relative;
  padding-left: 10px !important;
}
.price_bold {
  font-size: 20px;
  font-weight: 600;
  color: var(--primaryColor);
}
.filter-collpsible-btn::after {
  content: "\f0d7 ";
  position: absolute;
  right: 10px;
  font-family: "Fontawesome";
}
.single-collapse {
  border: 1px solid #ddd;
  border-radius: 4px;
}
.custom_tbl td, .custom_tbl th {
  font-weight: 500;
  border: 1px solid #eee;
}
.custom_tbl tr:nth-of-type(odd) {
  background-color: #c8dde945;
}
.custom_tbl_2 tr:nth-of-type(even) {
  background-color: #fff;
}
/* Custom Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: column;
}
.checkbox-group input {
  display: none;
}
.checkbox-group label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  transition: 0.5s color ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  margin-bottom: 4px;
  font-size: 14px;
  color: #2b86bb;
  font-weight: 500;
}
.checkbox-group label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0.125em solid #2b86bb;
  border-radius: 2px;
}
.checkbox-group label::after {
  content: "";
  width: 10px;
  height: 10px;
  top: 6px;
  left: 4px;
  border-radius: 0.05em;
  background-color: #2b86bb;
  position: absolute;
  transform: scale(0);
  transition: 0.5s transform ease;
}
.checkbox-group input:checked + label::after {
  transform: scale(1);
}
.radio label {
  display: flex;
  align-items: center;
}
/* Round-trip One-way starts*/
.stripe-imges {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.owl-carousel .owl-item img {
  height: auto;
}
.radio input[type="radio"] + .radio-label:before {
  content: "";
  background: var(--whiteColor) !important;
  border-radius: 100%;
  border: 2px solid var(--primaryColor) !important;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0px;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  margin-right: 4px;
}
.radio input:disabled[type="radio"] + .radio-label:before{
    background: #ebebeb !important;
    border: 2px solid #d2d2d2 !important;
}
.radio input[type="radio"]:checked + .radio-label:before {
  background-color: var(--primaryColor) !important;
  box-shadow: inset 0 0 0 4px #f4f4f4 !important;
  margin-right: 4px;
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none !important;
  border-color: var(--primaryColor) !important;
}
/* Round-trip One-way ends*/

/* Custom Checkbox */
.nav-menu a {
  display: block;
  position: relative;
  color: var(--textColor);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 30px;
}
.repeat-arrow-img {
  position: absolute;
  top: 4px;
  z-index: 1;
  width: 35px;
  cursor: pointer;
  background: #eeeeee;
  padding: 8px;
  right: -16px;
  border-radius: 50%;
  transform: none;
  border: 1px solid var(--primaryColor);
}
.repeat-arrow-img-btn {
  position: absolute;
  top: 3px;
  z-index: 1;
  width: 35px;
  cursor: pointer;
  background: #eee;
  padding: 8px;
  right: -16px;
  border-radius: 50%;
  transform: none;
  border: 1px solid var(--primaryColor);
  height: 35px;
  line-height: 0;
  opacity: .7 !important;
}
.repeat-arrow-img-btn img{
  width: 18px;
  height: 17px;
}
.homeDatePanel .select2-selection__arrow {
  display: none !important;
}
.location-flex-area {
  display: flex;
  justify-content: space-between;
  position: relative;
}
/* Search bus */
.bus_tckt_rows {
  padding: 10px;
  background: #eceef2;
  margin-top: 5px;
}
.bus-departure td {
  border: 0px !important;
}
.bus-departure {
  border: 1px solid #eee;
  background: var(--whiteColor);
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
}
.bus-departure:hover{
    border: 1px solid var(--primaryColor);
}
.buslist_wrapper{
  background-color: var(--lightGray);
}
th.bus_tbl_head {
  position: relative;
  font-size: 14px;
  padding: 5px 13px;
  cursor: pointer;
  border-bottom: 0px !important;
}
.bus_tckt_rows ul {
  display: flex;
  margin: 0;
}
.bus_tckt_rows ul li h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.bus_tckt_rows ul li {
  display: inline-block;
  flex-basis: 15.5%;
  margin: 0;
  padding: 0 10px;
  text-align: center;
}
.bus_tckt_rows ul li:first-child {
  flex-basis: 22.5%;
  text-align: left;
}
.bus_tckt_rows ul li:last-child {
  text-align: left;
}
#busTable_filter {
  display: none !important;
}
.bus_display_none {
  display: none;
}
.cancelTrip .input-group {
  flex-wrap: nowrap;
  height: 40px;
}
.cancelTrip input,
.cancelTrip select {
  height: 40px;
}
.cancelTrip .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.2s;
  margin: 10px 0 0 0;
  color: #ee3135;
  background: var(--whiteColor);
}
.cancelTrip .btn-get-started:hover {
  background: #f3f5fa;
}

/* Destination */
.dest-title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 10px;
  color: #333663;
}
.destination-content-wrap:hover .dest-title {
  background: #333663;
  color: var(--whiteColor);
  transition: all ease 0.3s;
  border: 0;
}
/* How it works */
.global-map-area .section-title h2 {
  color: var(--whiteColor);
}
/* App Section */
.app_sec {
  background: var(--primaryColor);
}
.play-store-wrapper {
  display: flex;
}
.play-store-wrapper img {
  width: 180px;
  border-radius: 30px;
  margin-right: 5px;
}
.app_title {
  font-size: 38px;
  line-height: 48px;
}
.app_sub_title {
  font-weight: 500;
  color: var(--whiteColor);
  font-size: 20px;
  text-transform: capitalize;
}
.dtbl {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.app_sec .dtbl_cel.left-33 {
  width: 33%;
  text-align: center;
  vertical-align: top;
}
/* Search section new */
.check-boxs{
  width: 16px;
  margin-left: 10px;
  border: none;
  display: block;

}
.family-pack {
  color: #194786;
  font-size: 14px;
  margin-left: 5px;
  font-weight: 600;
  cursor: pointer;
}
.search {
  padding: 15px 0px;
  z-index: 1;
  background: #eeeeee;
}
.main_banner_img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.search_bus_section {
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.search_bus_area {
    position: relative;
    background: var(--whiteColor);
    padding: 10px 15px 15px;
    border-radius: 10px;
}
.banner-title {
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  top: -150px;
  left: 0;
  text-shadow: 0px 3px 10px #00000085;
  max-width: 60%;
}

.search_bus_area span.select2-selection.select2-selection--single {
  display: block;
  margin-top: 0;
  height: 40px !important;
  text-align: left;
  padding-left: 6px;
  border-radius: 5px;
  border: 0;
}
.text-success {
  color:var(--textColor)!important;
}
.text-successs {
  color:#212529 !important;
}
.select2-container--default .select2-selection--single {
  background-color: var(--whiteColor);
  border: 1px solid #ddd !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px !important;
}

.calender-input-group {
  position: relative;
}

.calender-input-group i.fa.fa-calendar {
  position: absolute;
  color: #333663;
  right: 15px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  pointer-events: none;
}

.middle_passengers .table td {
  padding: 0.5rem 10px !important;
}

#hero input,
#hero select {
  height: 40px !important;
  background: transparent;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
}
.hasDatepicker:focus {
  border: 1px solid #c8c8c8 !important;
}
label.abs_label {
  position: absolute;
  color: #777;
  font-size: 13px;
  left: 14px;
  top: 7px;
  z-index: 2;
  font-weight: 500;
}
.bus-departure thead,
.bus-departure tbody {
  display: table;
  width: 100% !important;
}
/* Profile page design */
.profile-left-tab {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: var(--whiteColor);
    padding: 12px;
}
.profile-icons {
  padding: 8px;
  color: #ed8122;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 20px;
  font-size: 18px;
  background: #2958960f;
  border-radius: 50px;
}

.respons-table{
  background: #e5eaec26;
}

li.top-li {
  text-align: center;
  line-height: 15px;
}
.porfile-brd{
  border: none !important;
}
li.top-li .name {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--primaryColor);
  margin: 0;
}
li.top-li .user-phn {
  font-size: 13px;
  margin: 0;
  color: #333;
  margin-bottom: 5px;
  line-height: 20px;
}
.profile-user-icon{
  text-align: center;
}
.profile-left-tab li a {
  padding: 4px 14px;
  display: block;
  text-align: left;
  color: #333333;
  font-weight: 400;
  border-radius: 0;
  border: 0;
  margin: 0;
  border-bottom: 1px solid #dddddd8a;
  cursor: pointer;
}
.profile-left-tab li a:hover {
  background:#c1c4c954 ;
}
.trash-icons{
  color: red;
}
.profile-left-tab li .active {
  background-color: #c1c4c930 !important;
  color: var(--primaryColor) !important;
  border-left: 2px solid var(--secondaryColor) !important;
}
.profile-right-tab-content {
  min-height: 522px;
  padding: 20px;
  border-radius: 10px;
}
.wlc_msg {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0;
  border-bottom: 1px dashed var(--primaryColor);
  color: var(--textColor);
  padding-bottom: 10px;
  font-weight: 500;
}
.profile-right-tab-content .form-gp {
  margin-bottom: 15px;
}
.profile-right-tab-content .form-gp input:focus {
  border: 1px solid var(--primaryColor) !important;
}
.profile-right-tab-content .form-gp input {
  height: 35px !important;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}
.profile-right-tab-content .form-gp i {
  position: absolute;
  right: 10px !important;
  top: 42px !important;
}
.profile-right-tab-content .form-gp label {
  position: relative;
  color: #333663;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 15px;
  font-weight: 600;
}
.profile-right-tab-content .submit-btn-area button {
  height: 42px;
}
.my-bookin-tbl th {
  background: var(--primaryColor);
  font-weight: 500;
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor) !important;
  white-space: nowrap;
}
.my-bookin-tbl th,
.my-bookin-tbl td {
  font-size: 14px;
  padding: 5px !important;
}
.fa-eye,
.fa-eye-slash {
  cursor: pointer;
}
.profile-right-tab-content .form-gp input {
  height: 40px !important;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}
.modify_bus_area {
  margin-bottom: 20px;
}
.search_bus_area.modify_bus_area {
  position: relative;
  bottom: 0;
}
.modify-search-btn {
  background-color: #333663;
  color: var(--whiteColor) !important;
  margin-top: 29px;
  border: 0;
  outline: none;
  min-height: 39px;
  font-size: 16px;
}
.calender-modify-input {
  position: relative;
}
.calender-modify-input input {
  border: 1px solid #ddd;
  min-height: 40px;
  font-size: 14px;
}
.calender-modify-input input:focus {
  border: 1px solid #ddd !important;
}
.calender-modify-input i.fa.fa-calendar {
  position: absolute;
  right: 10px;
  top: 44px;
  z-index: 2;
  pointer-events: none;
}
.datebar_mobile_show {
  display: none;
}
ul.datebar {
  display: flex;
  justify-content: space-between;
  list-style: none;
  border-radius: 5px !important;
  padding: 0;
  margin: 0;
  gap: 10px;
}
ul.datebar li {
  width: 14.3%;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
  border-radius: 30px;
  justify-content: center;
  background: #fff;
}
ul.datebar li a {
  color: var(--textColor);
}
.arrow-icon {
  font-size: 30px !important;
  display: inline-block;
  margin-top: 3px;
}
ul.datebar li:first-of-type {
  border: 0px !important;
}
ul.datebar li span {
  font-size: 13px;
  font-weight: 500;
}
ul.datebar li.active {
  background: var(--primaryColor);
  width: 14.3%;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
  border-radius: 30px;
  justify-content: center;
}
ul.datebar li:hover a {
  color: var(--primaryColor);
}
ul.datebar .date-disable:hover a {
  color: #000 !important;
}
ul.datebar li.active a {
  color: var(--whiteColor);
}
.scroll_route_heading {
  color: #000000;
  font-weight: 600;
}
li.date-disable {
  cursor: no-drop !important;
}
li.date-disable a {
  color: #333;
  opacity: 0.5;
  cursor: no-drop;
}
a.date-disable {
  cursor: no-drop;
  opacity: 0.5;
}
.modify_bus_area span.select2-selection.select2-selection--single {
  font-size: 14px;
  border: 1px solid #ddd !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none !important;
}
.butn-adult {
  background: var(--whiteColor) !important;
  border: 1px solid #ddd;
  color: #444 !important;
  text-decoration: none !important;
  width: 100%;
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: left;
  padding: 0px 7px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}
.butn-adult {
  overflow-x: auto;
}
.butn-adult::-webkit-scrollbar {
  height: 0.1em;
}
.butn-adult::-webkit-scrollbar,
.butn-adult::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
.butn-adult::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
.adultChild_closBtn {
  font-weight: 500;
  transition: 0.2s;
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  border: 0 !important;
  letter-spacing: 0.5px;
  border-radius: 5px;
  text-transform: capitalize;
  padding: 0px 15px;
}
.adultChild_closBtn:hover {
  background: var(--secondaryColor) !important;

}

.dropdown-end {
  position: absolute;
  inset: 0px auto auto 0px;
  margin: 0px;
  transform: translate(0px, 44px);
  padding: 0px 4px;
  width: 100%;
  background: var(--whiteColor);
  display: block;
  list-style: none;
  text-align: left;
  border-radius: 5px;
  top: 10px;
  box-shadow: 0 10px 40px 0 rgb(104 113 123 / 20%);
  padding: 0px 10px;
  z-index: 3;
  min-width: 250px;
  right: 0;
  left: auto;
}
.dropdown-items {
  color: var(--textColor) !important;
  padding: 2px;
  width: 100%;
  border-bottom: 1px solid var(--lightGray);
  margin-left: 2px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.dropdown-item3 {
  font-weight: lighter;
  font-size: 10px;
  margin-bottom: 0px;
}
.count-butn button {
  margin: 0;
  padding: 0;
  display: inline;
  border: 0;
  background-color: #2b86bb1a;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
}
.count-butn .quantity {
  display: inline;
  width: 25px;
  outline: none;
  text-align: center;
  color: #444;
  font-weight: 600;
  border: 0 !important;
  height: 40px;
}
/* Custom Profile page starts */
.basic-details {
  display: flex;
  align-items: flex-end;
  padding-top: 52px;
}
.profile-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.pr-basic-right {
  position: absolute;
  bottom: -5px;
  right: 0;
}
.pro-text-wraper {
  margin-left: 20px;
}
.profile-rating li i {
  color: #fdcd03;
  margin-right: 7px;
}
.item {
  list-style: none;
}
.profile-table {
  margin-top: 100px;
  margin-bottom: 40px;
}
.tabl {
  justify-content: center;
}
.tab-selection {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0px 5px 0px 0px;
  justify-content: center;
}
.item-1 {
  padding: 15px 45px;
  color: var(--textColor);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border-radius: 0 !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #2b86bb;
  background-color: var(--whiteColor);
  border-bottom: 3px solid #2b86bb;
  border-radius: 0 !important;
}
.b-top-nav__1level > a {
  padding: 6px 19px;
  white-space: nowrap;
  float: left;
}
#ui-datepicker-div {
  border: 1px solid var(--lightGray);
  padding: 0px;
  border-radius: 0px;
}
.ui-datepicker-calendar tr,
.ui-datepicker-calendar td {
  padding: 0px;
}
.tab-content {
  background-color: var(--whiteColor);
}
.pro-text {
  color: var(--whiteColor);
}
.pro-text1 {
  color: #909193;
}
.pro-text2 {
  color: #2b86bb;
  font-size: 15px;
  font-weight: lighter;
}
.profile-image {
  width: 200px;
  height: 243px;
}
.profile-image img {
  width: 100%;
  margin-bottom: 8px;
}
.rating-image {
  margin: 25px auto 17px;
}
.tabl-section {
  position: relative;
}
.text-clr {
  color: var(--textColor);
}
.banner_carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  margin: 0 !important;
}
.banner_carousel .owl-nav button span {
  background: var(--primaryColor);
  width: 40px;
  display: inline-block;
  border-radius: 50%;
  height: 40px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  opacity: 0.7;
}
button.owl-prev {
  left: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
button.owl-next {
  right: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button:hover span {
  opacity: 1;
}
/* Custom Profile page ends */

/* Home page Service Box */
.bus-place {
  font-weight: 500;
  font-size: 15px;
  color: var(--whiteColor);
  margin: 0;
  line-height: 38px;
  position: relative;
  text-transform: uppercase;
  background: var(--primaryColor);
  padding: 5px;
  border-radius: 5px;
}

/* Testimonial */
.testimonial .single_item {
  background: #fff;
  border-radius: 10px;
  min-height: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #eee;
}
.single_item h3 {
  margin: 5px 0;
}
.testimonial-item {
  text-align: center;
  color: var(--whiteColor);
}
.testimonial-item h6 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 17px;
}
.testimonial-item h6 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}
.icon-wrap {
  margin: 10px;
}
.testimonial-item div p {
  margin: 8px;
  padding: 20px 15px;
  border: 10px solid #2b86bb;
  display: inline;
  border-radius: 50px 50px 50px 50px;
  line-height: 6;
  background-color: var(--whiteColor);
  outline: 2px solid var(--whiteColor);
}
.testimonialcolor {
  background-color: #eaeff5;
  padding: 0;
  min-height: 150px;
  position: relative;
}
.testimonialcolor h2 {
  padding-bottom: 20px;
}
.testimonial-details-left {
  text-align: left;
  padding: 30px 20px;
  width: 85%;
  margin: 0 auto;
}
/* Gallery */
.gallery_carousel .gall_item_inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eee;
}
.gall-img {
  min-height: 300px;
  object-fit: cover;
  transition: all 2s;
}
.gall_item_inner:hover img {
  transform: scale(1.2);
}
.route_name {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0 0;
  font-weight: 600;
  text-align: center;
}
.gallery__section {
  overflow: hidden;
}
.gallery_carousel .owl-nav {
  margin-top: 0 !important;
  position: absolute !important;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
.gallery_carousel button.owl-prev {
  position: absolute !important;
  left: 5px;
}
.gallery_carousel button.owl-next {
  position: absolute !important;
  right: 25px !important;
}
.gallery_carousel .owl-nav button span {
  background: var(--primaryColor);
  width: 40px;
  display: inline-block;
  border-radius: 50%;
  height: 40px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: var(--whiteColor);
  opacity: 0.7;
}
.gallery_carousel .owl-nav button span:hover {
  opacity: 1;
}
/* Story section */

.stories-wrap {
  background-image: url(../img/story-bg.jpg);
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  background-position: center;
  height: 425px;
  margin: 100px 0px 115px;
  background-size: cover;
}
.stories-wrap::after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--textColor);
  position: absolute;
  z-index: 1;
}
.story-item {
  background-color: var(--secondaryColor);
  margin-top: -50px;
  position: relative;
  top: -45px;
  z-index: 3;
}
.story-heading {
  color: var(--whiteColor) !important;
}
.stories-main {
  padding-bottom: 60px;
}
.single-stories {
  min-height: 330px;
  background-color: var(--whiteColor);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.single-stories-img {
  display: flex;
  justify-content: center;
}
.single-stories-rating {
  text-align: center;
}
.single-stories-img .client-img {
  width: 100px !important;
  margin-bottom: 15px;
  border-radius: 5px;
}
.sort_by .select2-container--default .select2-selection--single {
  border: 1px solid #ddd !important;
}
.sort_by
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--textColor) !important;
  line-height: 45px !important;
  font-size: 16px;
}
/* Payment page */
.wrap {
  background: var(--whiteColor);
  border-radius: 15px;
  padding: 15px;
}
.page-heading {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.rojos {
   background: var(--primaryColor);
   width: 25px;
   height: 25px;
   line-height: 25px;
   text-align: center;
   border-radius: 50%;
   font-size: 15px;
   color: white;
   font-weight: 600;
   border: 1px solid var(--primaryColor);
 }
.page-heading h2 {
    color: #212529;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0px 6px ;
    font-weight: 600;
}
.page-heading p {
  color: #212529;
  font-size: 22px;
  text-transform: capitalize;
  margin: -1px 6px;
  font-weight: 600;
}
.your_booking {
  color: var(--primaryColor);
  font-size: 25px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
}
.bookings-tck {
  background: #eeeeee;
  padding: 6px;
  border-radius: 8px 8px 0px 2px;
}
.bookings {
  color: var(--primaryColor);
  text-align: center !important;
  font-size: 25px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
}
.heading-3 h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--textColor);
  margin-top: 10px;
}
.heading-p p {
  font-size: 12px;
  font-weight: lighter;
  color: var(--textColor);
}
.payment-form input {
  border: 1px solid #ddd;
  background-color: var(--whiteColor);
  padding: 3px 10px;
  border-radius: 5px;
  width: 100%;
  min-height: 40px;
}
.passengers ul {
  list-style: none;
  padding: 10px;
  border: 1px solid var(--lightGray);
  margin: 10px;
}
.passengers ul li {
  line-height: 24px;
}
.payment-form input:focus {
  border: 1px solid var(--primaryColor) !important;
}
.sidebar-wrap {
  background-color: var(--whiteColor);
  min-height: 450px;
  padding: 15px;
  border-radius: 15px;
}
input {
  outline: none !important;
}
select {
  appearance: button !important;
  -webkit-appearance: button !important;
  -moz-appearance: button !important;
}
.pass_format_name {
  background: #f3f3f3;
  padding: 5px;
  color: var(--primaryColor);
  font-size: 18px;
  letter-spacing: 0.3px;
  border-bottom: 1px dashed var(--primaryColor);
  margin: 0 0 5px;
  text-align: center;
  display: inherit;
}
select:focus {
  border: 1px solid var(--primaryColor) !important;
}
.pass_info_tbl{
  margin: 0px !important;
}
.pass_info_tbl th {
  background: var(--primaryColor) !important;
  padding: 5px  !important;
  color: #fff;
  font-weight: 500;
  border: 2px solid var(--whiteColor);
}
.pass_info_tbl td{
  padding: 0.5rem 0 !important;
  background: #eee;
  padding: 4px !important;
  border: 2px solid var(--whiteColor);
 color: var(--textColor);
}
.table > :not(:first-child) {
  border-top: 0 !important;
}
.pasngrs_title {
  border-bottom: 1px solid var(--primaryColor);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#simple_timer {
  font-size: 30px;
  font-weight: 700;
  color: var(--primaryColor);
  display: inline-block;
  width: 82px;
}
 .payment-time-text {
  font-weight: 500;
  color: #cc0707;
}
 .text-aligns{
  text-align: center;
  padding: 5px;
 }
.booking_title {
  color: var(--primaryColor);
  font-size: 26px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 500;
}
.date {
  color: var(--primaryColor);
  font-weight: bold;
  font-size: 16px;
}
.total_data {
  color: #353535;
  font-weight: 600;
  font-size: 16px;
}
.sale_wrapper{
  background: #eee;
}
.voucher {
  display: flex;
  justify-content: left;
  padding: 1px 6px;
}
.voucher-heading {
  color: #2b86bb;
}
.fw-light {
  font-weight: 300 !important;
  margin: 0;
}
.coupon {
  margin-left: 5px;
  background-color: var(--whiteColor);
  color: #2b86bb;
}
.coupon .input-group input {
  border-right: 1px solid var(--lightGray) !important;
  border: 0;
}
.seat-reservation-btn {
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  padding: 15px 20px !important;
  border-radius: 5px;
}
.chair{
  padding: 0px 10px;
}
.seats {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ddd;
}

.bg__box {
  background: #f3f3f3;
  border-radius: 5px;
  padding: 15px 15px 0px;
  margin-bottom: 15px;
  border: 1px solid var(--lightGray);
  border-bottom: 2px solid var(--primaryColor);
}
.bt-right-aro {
  padding: 10px;
  padding-right: 0px;
}
.location_sale_form {
  font-weight: 600;
  font-size: 20px;
  color: #1f1f1f;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
}
.right_arrow_img {
  width: 25px;
  margin: 0 10px;
  opacity: 0.4;
}
.seat-text {
  text-align: left;
}
.seat-text h5 {
  margin: 0;
  color: var(--textColor);
  font-size: 18px;
  padding-top: 2px;
}
.content-head {
  text-align: center;
}
.content-head h1 {
  font-size: 26px;
  margin: 10px 0 0;
  text-transform: capitalize;
  color: var(--primaryColor);
  font-weight: 500;
}
.hidden_bus_seat_layout_panel_bg {
  display: none;
  position: fixed;
  left: 0;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: #2b86bb4f;
  height: 100%;
  width: 100%;
  z-index: 999999;
  overflow: hidden !important;
}
.hidden_bus_seat_layout_panel {
  width: 400px;
  background: #eaeff5;
  position: fixed;
  z-index: 99999;
  top: 0px;
  right: 0px;
  bottom: 0px;
  padding-bottom: 50px;
}
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primaryColor) #ddd;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #ddd;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
  border-radius: 5px;
  border: 3px solid #ddd;
}
.close_seat_modal_btn {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 30px;
  color: var(--textColor);
  cursor: pointer;
  font-weight: 300;
}
.reserve_location {
  font-size: 13px;
  color: var(--textColor);
}
.reservation-body {
  padding: 10px 15px;
}
.btn-section {
  text-align: center;
  width: 100%;
  display: flex;
}
.butn {
  background-color: var(--whiteColor);
  width: 100%;
  margin: 0px 0px 10px;
  border-radius: inherit;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
  padding: 4px !important;
  font-size: 16px;
  color: var(--primaryColor);
  font-weight: 500;
  outline: none !important;
}
.seat-direction {
  display: flex;
  justify-content: space-evenly;
  margin: 7px 100px 3px;
  color: var(--textColor);
}
.seat-wrapper-box {
  background: var(--whiteColor);
  border-radius: 50px;
  padding: 10px 20px 25px;
  margin: 0 0 0;
  margin-bottom: 20px;
}
.seat-wrapper-box p {
  margin: 0;
  font-size: 13px;
  color: var(--textColor);
  font-weight: 500;
}
.lower-desk {
  text-align: center;
}
.upper-desk {
  text-align: center;
}
.heading-left {
  margin-top: 6px;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-around;
}
.premium-icon {
  display: inline-block;
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background-color: var(--whiteColor);
  margin: 0px 4px;
  min-width: 40px;
  min-height: 40px;
  line-height: 40px;
}
.seat-icon-butn {
  border-style: none;
  background-color: var(--whiteColor);
}
.premium-icon-driver {
  display: inline-block;
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background-color: var(--whiteColor) !important;
  height: 40px;
  width: 112px;
}
.icon-left {
  display: flex;
  justify-content: space-around;
}
.seat-catagory {
  position: absolute;
  background: var(--whiteColor);
  top: 0;
  padding: 30px 30px 15px;
  width: 200px;
  z-index: 9;
  right: 400px;
}
.seat-catagory .icon-left {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.seat-catagory .seat-icon-butn {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.14);
}
.reservation_confirm_btn_wraper {
  background: #ffff;
  z-index: 999;
  width: 100%;
  height: 70px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--lightGray);
}
input#returnDate {
  height: 40px;
}
.reservation_confirm_btn {
  background: var(--primaryColor);
  padding: 0px 42px;
  font-size: 22px;
  color: var(--whiteColor);
  font-weight: 600;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  border-radius: 5px;
  top: 10px;
  transition: all ease-in-out 0.2s;
}
.reservation_confirm_btn:hover {
  background-color: var(--secondaryColor) !important;
}
.seat-catagory-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.seat-catagory-item p {
  margin: 0px;
  margin-left: 15px;
}
.extras_seat_wrapper_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extras_seat_wrapper_inner_flex {
  display: flex;
  align-items: center;
}
.additional-lug-flex {
  display: flex;
  align-items: center;
}
.free_btn {
  background: #2b86bb;
  border-radius: 0px;
  color: var(--whiteColor);
  font-weight: 500;
  padding: 2px 20px !important;
}
.lug-quan {
  display: flex;
  align-items: center;
}
/* Congratulations */
.detail-bc {
  background-color: var(--whiteColor);
  padding: 40px;
  border: 1px solid var(--lightGray);
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  min-height: 470px;
}
.congratulations .detail {
  background-color: #2b86bb;
  margin: 0px 0px 9px;
  justify-content: center;
  color: var(--whiteColor);
  padding: 9px 0px 5px 0px;
  font-weight: bold;
}
.congratulations .right {
  min-height: 470px;
  background-color: var(--whiteColor);
  text-align: center;
  color: #707070;
  border: 1px solid var(--lightGray);
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  padding: 70px 0px;
}
.congratulations.right-text {
  font-size: 12px;
  font-weight: 500;
}
.congratulations .item {
  box-shadow: 0px 5px 6px -2px rgb(0 0 0 / 20%);
  margin: 11px 0 0 0;
  padding: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.congratulations .special {
  background-color: #eaeff5;
}
.congratulations .detail h6 {
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  text-align: center;
}
.congratulations .download-btn {
  border: none;
  background-color: #2b86bb;
  color: var(--whiteColor);
  padding: 5px 21px;
}
.payment_img_inReservation {
  width: 250px;
}
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.checkout_btn {
  background: var(--primaryColor);
  border: 0;
  width: 100%;
  font-size: 18px;
  color: var(--whiteColor) !important;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  padding: 8px;
  transition: all ease-in-out 0.2s;
  border-radius: 30px;
  text-transform: capitalize;
}
.checkout_btn:hover {
    background: var(--textColor) !important;
    
}
.pickup_point .form-control {
  border: 1px solid #c8c8c8;
  background-color: var(--whiteColor);
  padding: 9px 0px 5px 27px;
  border-radius: 5px;
  padding-left: 15px !important;
}
.pickup_point .form-control:focus {
  border: 1px solid var(--primaryColor) !important;
}

/*  */
.Busstops {
  display: block;
  list-style: none;
  margin: 0;
  float: left;
  position: relative;
  overflow-y: auto;
  width: 100%;
  padding: 0px;
}
.Busstops .node {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: all 300ms ease;
  position: relative;
}
.Busstops .node::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: 0;
  background: #c9c9c9;
  height: 30px;
  width: 1px;
  left: 4px;
}
.Busstops li {
  line-height: 10px;
  text-align: left;
  margin-left: 85px;
}
.Busstops .stops_time {
  position: absolute;
  left: -13px;
}
.Busstops .activated {
  box-shadow: 0px 0px 3px 2px rgba(194, 255, 194, 0.8);
}
.Busstops .divider {
  height: 20px;
  width: 2px;
  margin-left: 4px;
  transition: all 500ms ease;
}
.Busstops li span {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
  line-height: 30px;
}
.Busstops li span:last-child {
  margin-left: 20px;
}
.Busstops .grey {
  background-color: #c9c9c9;
}
.seat-icon-butn.available {
  background: var(--whiteColor) !important;
  border: 1px solid var(--whiteColor);
}
.seat-icon-butn.sold {
  background: #eaebed;
  border: 1px solid var(--lightGray);
}
.seat-icon-butn.selected {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
.seat-catagory.for-mobile {
  position: relative;
  background: var(--whiteColor);
  padding: 15px 10px 0;
  z-index: 9;
  left: 0;
  right: 0 !important;
  width: 100%;
  border-bottom: 1px solid #2b86bb;
}
.middle_passengers_col td {
  padding: 0.5rem 10px !important;
}
.card.swapCardTicket {
  padding: 10px;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  margin: 0;
  background: #ff850030;
}
.card.swapCardTicket .swapCardTicketContent {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card.swapCardTicket p {
  margin: 0px;
}
span.swapClose {
  opacity: 0.7;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background: #f5bf85;
  width: 25px;
  text-align: center;
  color: var(--textColor);
}
span.swapClose:hover {
  opacity: 1;
}
.datebar_wrapper {
  overflow-y: hidden;
  overflow-x: auto;
}
.datebar_wrapper::-webkit-scrollbar {
  height: 0;
  background: transparent;
}
/*======================
    404 page
=======================*/
.page_404 {
  padding: 40px 0;
}
.four_zero_four_bg h1 {
  font-size: 80px;
}
.four_zero_four_bg h3 {
  font-size: 40px;
}
.contant_box_404 {
  margin-top: 30px;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  min-height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
/*  */
.ui-datepicker .ui-datepicker-prev:after {
  position: absolute;
  left: 5px !important;
}
.ui-datepicker .ui-datepicker-next:after {
  position: absolute;
  right: 5px !important;
}
.ui-datepicker .ui-datepicker-header {
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar th {
  text-align: center;
  font-size: 13px;
}
.btn_view_eats {
  color: var(--whiteColor) !important;
  position: relative;
  padding: 5px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-decoration: none;
  margin-top: 5px;
  text-transform: capitalize;
  border-radius: 30px !important;
  min-width: 120px;
  box-shadow: none !important;
  outline: 0;
  background: var(--primaryColor);
}
.btn_view_eats:hover {
  background: var(--textColor);
  color: #ffff;
}
.bus-departure .btn_view_eats {
  min-height: 35px !important;
  max-height: 35px !important;
  line-height: 23px;
}
.price {
  font-weight: 600;
  margin: 0;
  color: #FFC107;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primaryColor) !important;
}
.iti {
  display: block !important;
}
.iti__country {
  white-space: pre-wrap;
}
.iti__country-list {
  min-width: 350px;
}
#ui-datepicker-div {
  padding: 10px;
  border-radius: 5px;
  z-index: 99 !important;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  border: 1px solid #ddd;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0px !important;
  background: var(--whiteColor) !important;
  color: var(--textColor) !important;
  text-align: center !important;
}
.ui-widget.ui-widget-content {
  border: 1px solid var(--lightGray) !important;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  padding: 10px;
  border-radius: 10px;
  min-width: 340px;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid var(--primaryColor) !important;
  background: var(--primaryColor) !important;
  color: var(--whiteColor) !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  text-align: center !important;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  font-size: 14px;
  margin: 3px;
  line-height: 17px;
  border: 2px solid #ffffff!important;
}
.ui-state-default,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 2px solid var(--primaryColor) !important;
}

.ui-widget-header {
  border: 0px !important;
  background: transparent;
  color: var(--whiteColor) !important;
  border-radius: 5px !important;
}

.ui-datepicker .ui-datepicker-prev:after {
  content: "\f053";
}
.ui-datepicker .ui-datepicker-next:after {
  content: "\f054";
}
.ui-datepicker .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-next:after {
  font-size: 0.61538em;
  line-height: 1;
  color: black;
  font-family: "FontAwesome";
  font-weight: normal;
  padding: 10px 0;
  width: 16px;
  display: block;
  text-align: center;
  cursor: pointer;
}
.ui-datepicker table {
  margin: 0;
}
.ui-datepicker .ui-datepicker-calendar th {
    color: var(--textColor);
    border-bottom: 1px solid #ded9d9;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0.5rem 0.2em;
}
.phone_prefix_wrap {
  min-width: 130px;
}
.select2-container .select2-selection--single {
  height: 40px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 45px;
}
/* Login Page Css */
.login-box {
  border-radius: 15px;
  background: var(--whiteColor);
  padding: 20px;
}
.login-form-head {
  text-align: center;
}
.login-form-head h1 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 40px;
}
.forget_txt{
  font-size: 16px !important;
}
.forget_txt_sing_up{
  font-size: 17px !important;
}
.form-gp {
  margin-bottom: 15px;
  color: var(--whiteColor);
  position: relative;
}
.form-gp input {
  width: 100%;
  height: 40px;
  border: 1px solid #c8c8c8;
  outline: none !important;
  box-shadow: none !important;
  padding: 10px;
  border-radius: 5px;
}
.form-gp i {
  position: absolute;
  right: 16px;
  color: #3333336b;
  font-size: 16px;
  top: 11px;
}
.otp_resend_btn {
  background: transparent;
  border: 0;
  font-weight: 500;
}
.otp_resend_btn:hover {
  color: var(--primaryColor);
  text-decoration: underline;
}
.otp_option_msg {
  font-size: 14px;
}
.login-with-txt {
  font-size: 15px;
  color: #444;
}
.social-btn a {
  font-size: 16px;
  display: block;
  height: 44px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 5px;
  line-height: 44px;
  width: 48%;
}
.google-ico {
  background-color: #dd4f46 !important;
  color: var(--whiteColor) !important;
}
.fb-ico {
  background-color: #405893 !important;
  color: var(--whiteColor) !important;
}
.social-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sign_img img{
  object-fit: contain !important;
}

/* Download Ticket Css */
.download-ticket {
  background: var(--whiteColor);
  padding: 20px;
  border-radius: 15px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: 0px 1px 1px inset #c50000, -0px -1px 1px inset #c50000;
}
.dnld-tkt-details {
  width: 100%;
}
.download_img{
  max-height: 170px;
  object-fit: contain;
}
.download_info_title {
  font-size: 20px;
  margin: 0;
  font-weight: 400;
}
.dnld-tkt-details .page_title h4 {
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}
.tkt-dnld-left-box {
  margin: 10px auto;
  background: var(--whiteColor);
  border-radius: 0;
  padding: 3px 3px;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  border-radius: 5px;
  border: 1px solid var(--lightGray);
}
.pay-details-box {
  min-height: 365px;
  border: 1px solid var(--lightGray);
}
.close-btn {
  font-weight: 600;
  color: #f00;
  font-size: 25px;
  background: transparent;
  border: 0;
}
.downld-img {
    margin: 10px auto;
    background: var(--whiteColor);
    padding: 3px 3px;
    min-height: 365px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  }
 
/*Modal*/
.cus_medal .modal-content {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.cus_medal .modal-body {
  padding-bottom: 40px;
}
.row.payment-text {
  margin-top: 5px;
}
.pay-details-box {
  margin: 5px 0;
  min-height: 365px;
  border: 1px solid #ddd;
}
.pay-details-box .title_Ablack {
  background: var(--primaryColor);
  display: block;
  margin: 0;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  color: var(--whiteColor) !important;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.input-group-row {
  padding: 10px;
}
.psngr-details .details-list {
  list-style: none;
}
.pay-details-box table {
  margin-bottom: 0;
}
.details-list .table td,
.details-list .table th {
  font-size: 14px;
}

/* Successfull Ticket Design */
.ticket_box {
  padding: 30px;
  border: 1px solid var(--lightGray);
  background: #fff;
  border-radius: 10px;
  height: 100%;
}
.ticket_box_heading {
  font-size: 25px;
  font-weight: 600;
  margin: 10px 0;
}
.ticket_box_safe_title {
  font-weight: 400;
  margin: 0;
}
.tick_dtls_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-align: left;
  border-bottom: 2px dashed #ddd;
  padding: 0px 0px 5px;
  color: var(--textColor);
}
.travel_label {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--secondaryColor) !important;
  text-transform: capitalize;
}
.single_travel_info_box{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #eee;
}
.before-resv-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 17px;
}
span#basic-addon2 {
  padding: 3px;
  background: transparent;
}
.coupon_button {
  margin: 0;
}
.ticket_box .single_item {
  margin: 0px;
  padding: 5px 0px;
  font-size: 16px;
  font-weight: 400;
  max-height: 72px;
  line-height: 20px;
  color: var(--textColor);
}
.ticket_box .single_item span{
  font-weight: 500;
}
.single_item.extra span {
  padding: 4px 10px;
  min-width: 150px;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 30px;
  background: #ed812224;
}
.back_to_home_btn {
  text-transform: capitalize;
}
 .modal_ticket_wrap {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-top: 4px;
 }
 .modal_ticket_wrap input[type='checkbox'] {
   height: 20px;
   width: 25px;
 }
 .single_item_coach_title {
   font-size: 18px !important;
   font-weight: 600 !important;
   position: relative;
   margin: 0 0 15px;
 }
 .arrow_dir_tikt {
   width: 35px;
   display: inline-block;
   font-size: 28px;
   border: 1px solid var(--primaryColor);
   border-radius: 50%;
   text-align: center;
   height: 35px;
   position: absolute;
   left: -43px;
   top: -8px;
   color: var(--primaryColor);
   line-height: 35px;
 }
 .rescheduleTicket{
  margin-top: 0px;
 }
 .modal_ticket_wrap input[type="radio"] {
   height: 20px !important;
   width: 30px !important;
 }
 .dir_img {
   width: 20px;
   margin-top: -5px;
   filter: opacity(0.5);
 }
 .border__custom {
   padding-left: 40px;
   margin-bottom: 20px;
 }
 .arrow_direction{
  margin: auto;
 }
.arrow_direction p {
  font-size: 40px !important;
  color: #000 !important;
  line-height: 22px;
  margin: 0;
  font-weight: 700;
  text-align: center;
  padding: 5px 5px;
}
 .single_item_blank.time {
   font-size: 26px;
   font-weight: 700;
   margin: 0 0 5px;
 }
.single_item_blank.date {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--primaryColor);
}
.cancle_tckt_part {
  border: dashed 2px #bcbcbc45;
  border-radius: 2px;
  padding: 10px;
}

.ticket_box_pnr {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin:0px;
  color: var(--primaryColor);
}
.table>:not(caption)>*>* {
  /* border-bottom-width: 0 !important; */

}
.borders{
  border: none none;
}
.ticket_box {
  padding: 15px;
  border: 1px solid var(--lightGray);
  background: #fff;
  border-radius: 10px;
}
.text-uppercase{
  text-transform: uppercase !important;
}
.single_item.special {
  background: #486bb61a;
}
.ticket_box_pnr_wrap.copy-text {
  max-width: 290px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  justify-content: space-between;
  margin-top: 5px;
  background: #f2f2f2ab;
}
.copy-text{
  position: relative;
}
.copy-text button {
  font-size: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  box-shadow: none;
  background: var(--secondaryColor);
  color: var(--whiteColor);
  line-height: 20px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
}
.copy-text button:focus {
  background: var(--textColor) !important;
  color: var(--whiteColor) !important;
}
.copy-text button:before {
  content: "Copied!";
  position: absolute;
  top: -37px;
  right: 0px;
  background: #000000;
  padding: 2px;
  border-radius: 5px;
  font-size: 13px;
  display: none;
  color: #fff;
  z-index: 2;
}
.copy-text button:after {
  content: "";
  position: absolute;
  top: -21px;
  right: 7px;
  width: 10px;
  height: 10px;
  background: #000000;
  transform: rotate(45deg);
  display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
  display: block;
}
.ticket_box.right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mid_cont_btn {
  color: var(--whiteColor) !important;
  background: var(--primaryColor);
  box-shadow: none !important;
  font-size: 17px;
  font-weight: 500;
  outline: none !important;
  transition: all ease-in-out 0.2s;
  margin: 0 auto;
  text-transform: capitalize;
  border-radius: 5px;
  min-height: 40px;
  padding: 0px 20px;
  line-height: 40px;
  min-width: 120px;
  white-space: nowrap;
}
.mid_cont_btn:hover {
  background: var(--textColor) !important;
  color: var(--whiteColor);
}
.ticket_box .btn {
  min-width: 215px;
}

.download_btn_flex{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

 .checkmark {
   width: 65px;
   height: 65px;
   border-radius: 50%;
   display: block;
   stroke-width: 4;
   stroke: #14f314;
   stroke-miterlimit: 10;
   box-shadow: inset 0px 0px 0px #14f314;
   animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position: relative;
   top: 5px;
   right: 5px;
   margin: 0 auto;
 }
 .checkmark__circle {
   stroke-dasharray: 166;
   stroke-dashoffset: 166;
   stroke-width: 6;
   stroke-miterlimit: 10;
   stroke: #14f314;
   fill: #fff;
   animation: stroke 2s cubic-bezier(0.65, 0, 0.45, 1) forwards;

 }
 .checkmark__check {
   transform-origin: 50% 50%;
   stroke-dasharray: 48;
   stroke-dashoffset: 48;
   animation: stroke 1s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
 }

 @keyframes stroke {
   100% {
     stroke-dashoffset: 0;
   }
 }

 @keyframes scale {

   0%,
   100% {
     transform: none;
   }

   50% {
     transform: scale3d(1.1, 1.1, 1);
   }
 }

 @keyframes fill {
   100% {
     box-shadow: inset 0px 0px 0px 30px #4bb71b;
   }
 }
 /* check-img-animate end*/
.data_view_box {
  margin-bottom: 20px;
  background: var(--whiteColor);
  padding: 25px 20px;
  border-radius: 25px;
  position: relative;
  border: dashed 3px var(--secondaryColor);
}
.hide_data_view_boxs {
  position: absolute;
  top: 0;
  z-index: 1;
  right: 15px !important;
  left: auto;
  width: 40px;
  height: 40px;
  background: #eee;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #dc3545;
  cursor: pointer;
  transition: all ease 0.2s;
}
.hide_data_view_boxs:hover{
  background-color: #dc3545;
  color: #fff;
}
.data_view_box label {
  font-weight: 600;
}

/* Contact */
.b-contact-form-box {
  background: #fff;
  border-radius: 15px;
  height: 100%;
  padding: 20px;
}
.contact_form{
  border-right: 1px solid rgba(0,0,0,0.1);
}
.b-google-map__info-window-address-title {
  font-weight: 600;
  color: var(--textColor);
  text-transform: capitalize;
  font-size: 18px;
}
.cont_right_box_ul {
  list-style: none;
}
.cont_right_box_ul li {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 22px;
  padding-bottom: 22px;
}
.cont_right_box_ul li:last-child {
  padding-bottom: 0 !important;
  border: 0;
  margin: 0;
}
.cont_right_box_icon i {
  color: var(--primaryColor);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 49px;
  font-size: 25px;
  margin-top: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: var(--primaryColor);
  color: #ffff;
}
.homeDatePanel .form-control {
  height: 40px;
}
.homeDatePanel .input-group-text {
  flex-wrap: nowrap;
  height: 40px;
  margin-right: -1px;
}
.homeDatePanel .btnsubmit {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.single-cancel-list-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.single-cancel-list-wrap > div {
  margin: 0 4px;
}
.single-cancel-list-wrap label {
  font-size: 14px;
  margin: 0;
  padding-left: 20px;
  display: block;
  text-align: left;
  text-transform: capitalize;
}
.single-cancel-list-wrap .list-val {
  font-size: 14px;
  background: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  color: #000;
  margin: 0px;
  text-align: left;
}
.cancel-ticket-btn {
  background: #e06666;
  color: var(--whiteColor) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 20px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  border: 0;
}
.position-rel {
  position: relative !important;
}
.cancel-box {
  display: none;
  position: absolute;
  top: 50px;
  min-width: 250px;
  background: #f3f3f3;
  box-shadow: 0px 4px 5px var(--textColor);
  z-index: 3;
  padding: 10px;
  right: 0;
  border: 2px solid #e06666;
  text-align: center;
  border-radius: 2px;
}
.cancel-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: 20px;
  background-color: #f3f3f3;
  height: 26px;
  width: 24px;
  transform: rotate(48deg);
  border-top: 2px solid #e06666;
  border-left: 2px solid #e06666;
}
.attentin-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--textColor);
  margin: 15px 0 5px;
}
.cancel_trip_title {
  font-size: 14px;
  padding: 5px;
  margin: 0;
}

/*Stoppage page*/
.stoppage-box {
  border-radius: 10px;
  height: 100%;
  padding: 15px;
  background: #eee;
}
.stop_sub_heading {
  text-transform: uppercase;
}
.stoppage-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}
.fleet_image_box {
  position: relative;
  transition: all ease-in-out 0.2s;
  overflow: hidden;
  border-radius: 10px;
}
.fleet_image_box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000045;
  content: "";
  display: none;
  transition: all ease-in-out 0.2s;
}
.fleet_image_box span {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: var(--whiteColor);
  text-transform: capitalize;
}
.fleet_image_box img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.fleet_image_box:hover .overlay {
  display: block;
}
.fleet_image_box:hover span {
  display: block;
}
.amenities_img_wrap img {
  width: 35px;
  margin: 0 0 10px;
}
.busstops__boking {
  list-style: none;
  margin: 0 0 10px;
  position: relative;
  padding: 0px;
}
.busstops__boking li {
  line-height: 23px;
  text-align: left;
  margin-left: 90px;
  position: relative;
  min-height: 30px;
}
.busstops__boking li::before {
  position: absolute;
  content: "";
  top: 8px;
  bottom: 0;
  left: 0px;
  width: 1px;
  background: #c9c9c9;
  height: 100%;
}
.busstops__boking li span {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
  line-height: 23px;
}
.busstops__boking .stops_time {
  position: absolute;
  left: -105px;
  max-width: 66px;
  line-height: 18px;
  font-size: 12px;
}
.node_gray {
  background: #ddd !important;
  border: 1px solid #ddd !important;
}
.busstops__boking .grey {
  background-color: var(--primaryColor);
  width: 10px;
  height: 10px;
  position: absolute;
  left: -4px;
  border-radius: 50%;
  top: 6px;
  z-index: 1;
}
.node_blank {
  background: var(--whiteColor) !important;
  border: 1px solid #c9c9c9 !important;
}
.busstops__boking .node_blank_start::before {
  position: absolute;
  content: "\f21d";
  left: -6px;
  border-radius: 50%;
  top: 2px;
  z-index: 1;
  color: var(--primaryColor);
  font-family: fontAwesome;
  font-size: 18px;
  background: #fff;
  height: 22px;
}
.busstops__boking .node_blank_end::before {
  position: absolute;
  content: "\f041";
  left: -4px;
  border-radius: 50%;
  top: 1px;
  z-index: 1;
  color: var(--primaryColor);
  font-family: fontAwesome;
  font-size: 19px;
  background: #fff;
  height: 22px;
}
.busstops__boking li:last-child::after {
  position: absolute;
  content: "";
  bottom: -11px;
  left: 0px;
  width: 1px;
  background: var(--whiteColor);
  height: 100%;
}
.errorTextMsg {
  color: red;
  font-size: 13px;
}
.submit-btn-area {
  display: flex;
  align-items: center;
}
#couponInput {
  min-height: 45px;
}
.coupon_input_grp {
  position: relative;
  margin-top: 15px;
}
.coupon_input_grp button {
  position: absolute;
  top: 0;
  right: 5px;
}
.proceed_to_book_btn {
  background: var(--primaryColor);
  color: var(--whiteColor);
  outline: none !important;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-top: 5px;
  border: 1px solid var(--primaryColor);
}
.otp-submit-btn-area button {
  margin: 0;
}
.proceed_to_book_btn:hover{
  background: var(--textColor);
  color: var(--whiteColor);
  border: 1px solid var(--textColor);
}
#couponError {
  font-size: 13px;
  margin: 2px 0px;
  color: rgb(255, 0, 0);
}
.total-price {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  color: var(--textColor);
}
.otp-submit-btn-area{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
label.stripe {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}
.stripe img {
  border: 1px solid var(--lightGray);
  padding: 5px;
  background: #f7f7f7;
}
.active_lan {
  background-color: #dddddd;
  border-left-color: var(--secondaryColor) !important;
}
.lang_dropdown {
  border-left: 0 !important;
}
.back__home__btn {
  display: inline-block;
  font-weight: 500;
  color: var(--textColor);
  text-transform: capitalize;
  box-shadow: none !important;
}
.back__home__btn:hover{
  color: var(--primaryColor) !important;
}
.mobile-nav-active button {
  z-index: 999999;
}
.sidebar-wrap .pbodyb {
  display: flex;
  align-items: baseline;
}
.sidebar-wrap #agree_ckbx {
  margin-right: 8px;
}

/*  */
.point__wrapper {
  margin-left: 30px;
  padding-left: 20px;
  width: 300px;
}
.point__wrapper p {
  margin: 0;
  line-height: 30px;
}
.point__wrapper .start__point {
  position: relative;
}
.point__wrapper .start__point::before {
  position: absolute;
  content: "";
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  left: -27px;
  border: 2px solid #ddd;
  z-index: 1;
}
.point__wrapper .start__point::after {
  position: absolute;
  content: "";
  top: 8px;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  left: -21px;
}
.point__wrapper .end__point {
  position: relative;
}
.point__wrapper .end__point::before {
  position: absolute;
  content: "\f041";
  left: -26px;
  top: 0px;
  color: var(--primaryColor);
  border-radius: 50%;
  font-family: "FontAwesome";
  font-size: 18px;
  z-index: 1;
}
.point__wrapper .end__point::after {
  position: absolute;
  content: "";
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  left: -25px;
}
.coupon_flex {
  border: 1px dashed var(--primaryColor);
  padding: 2px 8px;
  border-radius: 5px !important;
  background: #f3f3f3;
  display: block;
  width: 100%;
}
.coupon_close_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coupon_code {
  font-size: 13px;
  color: var(--primaryColor);
}
span.coupon_code_btm_txt {
  color: #f00;
  font-weight: 600;
  font-size: 13px;
}
span.remove_coupon {
  color: #f00;
  font-size: 30px;
  line-height: 0;
  cursor: pointer;
  display: inline-block;
}
/* Coach Hire */
.coach_hire_icon_wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.coach_hire_icon_wrap h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.coach_hire_icon_wrap p {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.coach_hire_icon_wrap img {
  max-width: 50px;
  border: 1px solid #d9d9d9;
  padding: 5px;
  border-radius: 5px;
}
.amenities img::selection {
  color: transparent;
  background: transparent;
}
/* For Mozilla Firefox */
.amenities img::-moz-selection {
  color: transparent;
  background: transparent;
}
.direct_collpase_btn::selection {
  color: transparent;
  background: transparent;
}
/* For Mozilla Firefox */
.direct_collpase_btn::-moz-selection {
  color: transparent;
  background: transparent;
}
/* Route Trip Details */
.route_banner {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.route_banner img {
  width: 100%;
  background-size: cover;
  height: 100%;
  object-fit: cover;
}
.route_banner h1 {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 8px #000;
  font-size: 45px;
  text-transform: capitalize;
}
.route_banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000059;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.tkt_table {
  width: 100%;
  max-width: 100%;
}
.tkt_table th,
.tkt_table td {
  border: 1px solid #4a43e2;
  font-weight: 500;
}
.route_table td {
  padding: 10px 15px !important;
}
.single_srch_result {
  background: #ffffff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 19%);
  border: 1px solid #eee;
}
.single_srch_result ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.single_srch_result .bus_name_wrap {
  display: grid;
  grid-template-columns: 40% 5% 40% 15%;
}
.single_srch_result .time {
  display: grid;
  grid-template-columns: 45% auto auto;
}
.single_srch_result .heading .seat p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.single_srch_result .bus_name h6 {
  margin-bottom: 5px;
  color: #763ac1;
  font-size: 17px;
  font-weight: 700;
}
.single_srch_result .bus_name p {
  font-size: 13px;
  color: #5d686e;
  margin-bottom: 5px;
}
.single_srch_result .bus_name_wrap .fa-angle-right {
  color: #763ac1;
  font-size: 24px;
}
.single_srch_result .bus_name_wrap .price {
  font-size: 18px;
  text-align: right;
}
.bus_terminal_wrap {
  padding: 0;
  margin: 0;
  list-style: none;
}
.single_bus_terminal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 13px 10px;
  border: 1px dashed var(--primaryColor);
  margin: 10px 0px;
  border-radius: 30px;
}
.single_bus_terminal:nth-child(even) {
  background-color: #96969621;
  border: 1px dashed var(--secondaryColor);
}
.single_bus_terminal a:first-child {
  width: 68%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single_bus_terminal a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.single_bus_terminal a img {
  width: 22px;
}
.single_srch_result .time button {
  background: var(--primaryColor);
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 5px;
  transition: 0.2s all ease-in-out;
}
/* Seo Home */
.route_table_box {
  background: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px dashed var(--primaryColor);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.route_table_box span {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 16px;
}
.route_table_box h3 {
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}
.read_more {
  color: #27a9b9;
  cursor: pointer;
}
.show_less {
  color: #27a9b9;
  cursor: pointer;
}
.full_desc_toggle {
  display: none;
}
.view_more_dept_btn {
  border: 0px;
}
.btn_scroll {
  background: var(--secondaryColor);
  font-size: 26px;
  height: 46px;
  width: 46px;
  line-height: 20px;
  color: var(--whiteColor);
  padding: 0;
  border: 0;
  outline: 0;
  text-align: center;
  z-index: 33;
  
}
.btn_scroll:hover{
  background: var(--whiteColor);
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}
.count-butn div {
  white-space: nowrap;
}
#spinnerOne {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #eee;
  width: 100%;
  text-align: center;
  height: 100%;
  border-radius: 5px;
  right: 0;
  padding-top: 8px;
  color: #0a71b4;
  display: none;
}
.custom_unique_table th, .custom_unique_table td {
  font-size: 13px;
  padding: 6px !important;
  border: 1px solid #0a71b429;
  white-space: nowrap;
  font-weight: 500;
}
.particular {
  white-space: normal !important;
  max-width: 250px;
}
.custom_unique_table thead {
  background: #0a71b4;
  color: #fff;
}
.custom_unique_table thead {
  background: #0a71b4;
  color: #fff;
  font-weight: 500;
}
img.img-flag {
  width: 25px;
}
.desc {
  word-break: break-all;
  font-size: 16px;
  font-weight: 400;

}
.address_width{
  max-width: 85%;
}
/* ========= available routes==== */

/* .route_section {
  background: #efefef;
} */
.route_link:hover img {
  transform: scale(1.1);
}
.popular_trip_img_wrap {
  overflow: hidden;

}
.popular_trip_img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: all ease-in-out 0.2s;
  
}
.route-text {
  font-size: 20px;
  text-align: center;
  margin: 0;
  font-weight: 500;
  line-height: 30px;
  min-height: 40px;
}
.trip_price {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: var(--primaryColor);
}
.route_link {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  position: relative;
  text-align: center;
  transition: 0.3s ease;
}
.route-data {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.trip_price_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.trip_details_btn {
  color: #fcfcff;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px 12px;
  display: inline-block;
  border-radius: 5px;
  transition: all ease-in-out 0.2s;
  background: var(--primaryColor);
  text-decoration: none;
}
a.trip_details_btn:hover {
  color: var(--whiteColor);
  text-decoration: underline;
  /* background-color: var(--secondaryColor); */
  /* border: 1px solid var(--secondaryColor); */
}
.icon_rights{
  width: 15px;
  height: 15px;
  line-height: 15px;
  background: white;
  color: red;
  border-radius: 50%;
  /* margin-top: 4px; */
  margin-right: 0px;
  margin-left: 4px;
    
}
/* =====car_call part==== */

.cal_car_rant_section {
  background-image: url("../img/rentcar.webp");
  background-image: no-repeat;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  background-position: center;
}

.call-to-rant-car {
  position: relative;
  z-index: 1;
  left: 100%;
}

.trip_book_now_btn {
  font-size: 20px;
  background: var(--whiteColor);
  padding: 10px 40px;
  display: inline-block;
  border-radius: 30px;
  color: var(--textColor) !important;
  text-decoration: none;
  font-weight: 500;
  outline: 0;
  box-shadow: none;
  transition: all ease-in-out 0.2s;
  text-transform: capitalize;
}

.trip_book_now_btn:hover {
  background: var(--primaryColor);
  color: var(--whiteColor) !important;
}
.works-text {
  color: var(--whiteColor);
  line-height: 40px !important;
  font-size: 30px !important;
  margin-bottom: 20px;
  text-transform: capitalize;
}
/* < --==========FAQ section=======--> */
.accordion-item {
  background-color: var(--whiteColor);
  border: none;
  border-radius: 10px !important;
  margin-bottom: 15px;
}
.accordion-button h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}
.accord-frequt {
  box-shadow: none !important;
  padding: 10px;
  border: 1px solid #eee;
}
.accordion-button h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}
.accordion-body p {
  font-size: 16px;
  margin: 0;
}
.accord-frequt {
  box-shadow: none !important;
}
.accordion-flush .accordion-item .accordion-button {
    border-radius: 10px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.accrod-bg {
  background: var(--whiteColor);
  transition: all ease-in-out 0.2s;
  border: 1px solid #cccccc9e;
}
.hand-icon{
  width: 28px ;
  height: 28px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  /* background: var(--secondaryColor); */
}
.accordion-button:not(.collapsed) h3{
   color: var(--whiteColor) !important;
}
.accordion-button:not(.collapsed){
   color: var(--primaryColor) !important;
   background: var(--whiteColor);
}
.accordion-button{
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}
.accordion-button:focus {
  outline: none !important;
  border: 1px solid var(--primaryColor);
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.accordion-flush .accordion-item {
  border: 0 !important;

}
.accordion-button:not(.collapsed) h5{
   color: var(--whiteColor) !important;
}
.accordion-button::after {
  background-image: url("../img/plus.svg");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../img/minus.svg");
  height: 2px;
  filter: invert(1);
}
/* ============= customer services ==== */
.marquee_title {
  background: var(--primaryColor);
  color: var(--whiteColor);
  white-space: nowrap;
  letter-spacing: 0.4px;
  border-radius: 5px 0 0 5px;
  font-size:17px;
  text-transform: capitalize;
  height: 40px;
  line-height: 40px;
  padding: 0px 5px;
  width: 130px;
}
.marquee-news {
  border-bottom: 2px solid var(--primaryColor) !important;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 20%);
  width: calc(100% - 110px);
  border-radius: 0 5px 5px 0px;
  background: var(--whiteColor);
  height: 40px;
  line-height: 35px;
}
.section-title h5 {
  font-size: 30px !important;
  color: var(--textColor);
  text-transform: capitalize;
  font-weight: 600;
}
.section-title span {
  font-size: 30px !important;
  color: var(--textColor);
  text-transform: capitalize;
  font-weight: 600;
}
.toggle_eye_icon {
  color: #444 !important;
  font-size: 18px !important;
}

.price_div_area {
  position: relative;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

 .roundtrip_route_direction_title {
   font-size: 20px;
   margin: 15px 0 5px;
   font-weight: 600;
 }
.list-group-item:hover {
  background: #eeeeee8a !important;
  color: var(--primaryColor);
}
.list-group.list-group-stops {
  max-height: 500px;
  overflow-y: auto;
}
.tracking_map_height {
  height: 80vh;
}
#servicesResult {
  max-height: 60vh;
  overflow: auto;
}
.servicesResultArea {
  position: fixed;
  z-index: 999;
  background: #fff;
  width: 400px;
  box-shadow: rgb(0 0 0 / 29%) 0px 1px 15px -1px;
}
button.btn.btn-outline-secondary {
  border-radius: 0px;
}
.card-header.card-header-small {
  font-size: 15px;
  background-color: var(--primaryColor);
  color: #fff;
  font-weight: 500;
  padding: 3px 15px;
}
[highlight-bus]:hover, [show-service]:hover, [show-stop]:hover {
  background-color: rgb(141 141 141 / 12%);
  cursor: pointer;
}
.text-bigger {
  font-size: 1.5em;
}
.card-bus-tracker .card-header {
  background-color: var(--primaryColor);
  color: #fff;
  font-size: 16px;
}
.card-bus-tracker .list-group-item {
  position: relative;
  display: flex;
  padding: .75rem 1rem;
  background-color: #fff;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.list-group-item {
  border: 0;
  border-top: 1px solid rgba(0,0,0,.125);
  border-bottom: 1px solid rgba(0,0,0,.125);
}
.list-group-item:last-child{
  border-bottom: 0px !important;
}
[highlight-bus], [show-service], [show-stop] {
  cursor: pointer;
  transition: background-color ease .5s;
}
.route_title {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.card-bus-tracker .list-group-stops li {
  padding-left: 3em;
  background-color: transparent;
  border: 0 none;
}
.card-bus-tracker .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.card-bus-tracker .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.card-bus-tracker .list-group-flush>.list-group-item {
  border-width: 0 0 1px;
}
.card-bus-tracker .list-group-stops li.active {
  background-color: rgb(217 228 233);
  color: #194786;
  z-index: unset;
  font-weight: 500;
}
.card-bus-tracker .list-group-stops li:before {
  content: "";
  display: block;
  width: .3em;
  position: absolute;
  top: 0;
  left: 1.55em;
  bottom: 0;
  margin-left: -.15em;
  background: var(--secondaryColor);
  z-index: 1;
}
.card-bus-tracker .list-group-stops li:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 1.5em;
  margin-top: -.5em;
  margin-left: -.5em;
  border: .15em solid var(--secondaryColor);
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}
.card-bus-tracker .list-group-stops li:first-child:after {
  background-color: var(--secondaryColor);
  border-radius: 0;
  height: .1em;
  margin-top: -.05em;
}
.card-bus-tracker .list-group-stops li:last-child:after {
  background-color: var(--secondaryColor);
  border-radius: 0;
  height: .1em;
  margin-top: -.05em;
}
.card-bus-tracker .list-group-stops li.active:after {
  box-shadow: 0 0 1em 0 var(--secondaryColor);
}
[highlight-bus]:hover, [show-service]:hover, [show-stop]:hover {
  background-color: rgba(88,52,139,.1);
}
.card-bus-tracker .list-group-stops li:first-child:before {
  top: 50%;
}
.card-bus-tracker .list-group-stops li:last-child:before {
  bottom: 50%;
}
.map_offcanvas {
  position: absolute!important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.arrow_back_btn{
  background: transparent;
  color: #fff;
  font-size: 20px;
  border: 0;
  padding: 0;
  box-shadow: none;
  outline: none;
}
.last_update_test {
  position: absolute;
  z-index: 999;
  right: 85px;
  top: -5px;
  font-size: 14px;
  background: #ffffff;
  line-height: 18px;
  box-shadow: rgb(0 0 0 / 75%) 0px 1px 4px -1px;
  padding: 5px 10px;
  border-radius: 0px;
  color: #000000;
  font-weight: 500 !important;
  text-transform: capitalize;
}
/* HTML marker styles */
.terminal-title {
  background-color: var(--primaryColor);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}
.terminal-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid  var(--primaryColor);
}
/* ====ticket success===== */
.back_to_btns {
  color: #fff;
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
  width: 32%;
  height: 100%;
  font-weight: 600;
  font-size: 15px;
}
.back_to_btns:hover{
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);

  
}
.btn-close-btns {
  /* background: #dc3545; */
  color: #e20c0c;
  border-color: #dc3545;
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
  width: 32%;
  height: 100%;
  font-size: 15px;
  font-weight: 600;
}
.btn-close-btns:hover {
  background: #dc3545;
  color: var(--whiteColor);
}

/* rent car Listing page */
.qa-vehicles__vehicle_wraper{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qa-vehicles__vehicle {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #25549045;
  border-right: 3px solid var(--primaryColor);
}
.search_bus_area.modify_bus_area {
  padding-bottom: 15px;
  margin: 0;
  background: var(--primaryColor);
}
.search_bus_area.modify_bus_area label.search_bus_form_label {
  color: #ffffff;
}
.search_bus_area.modify_bus_area .btnsubmit {
  background: var(--secondaryColor) !important;
}
.search_bus_area.modify_bus_area .btnsubmit:hover {
  background: var(--secondaryColor) !important;
  border-color: 1px solid var(--secondaryColor)!important;
  opacity: 0.8;
}
.search_bus_area.modify_bus_area .repeat-arrow-img-btn {
  top: 41.5px;
  right: 0px;
  transform: rotate(90deg);
}
.c-media__title {
  font-size: 25px;
  font-weight: 600;
}
.c-feature {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.c-feature__text {
  font-size: 14px;
}
.c-feature__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-service__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-service__text {
  font-size: 14px;
}
.c-plain-list {
  padding-bottom: 10px;
}
.js-class-toggle_element {
  font-size: 15px;
  background: #2554901c;
  color: var(--textColor);
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  text-align: center;
  height: 30px;
  border-radius: 5px;
  text-transform: capitalize;
}
.showBtn_button {
  margin-top: 10px;
}
.js-class-toggle_element:hover {
  background: #eee;
  color: var(--primaryColor);
  transition: all ease-in-out 0.2s;
}
.js-class-toggle_element i{
  font-size: 25px;
}
.o-media__aside img {
  max-width: 130px;
  height: 80px;
  object-fit: contain;
  object-position: top;
}
.c-feature__image i{
  color: var(--secondaryColor);
}
.c-service__image i {
  color: var(--primaryColor);
}
.o-media__item.o-media__item--action {
  text-align: center;
}
/* ====media=== */

.media-priceing{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing-ticket {
  background: #ed812238;
  transform: rotate(45deg);
  top: 18px;
  position: absolute;
  right: -30px;
  color: var(--textColor);
  font-weight: 600;
  width: 130px;
  text-transform: capitalize;
  text-align: center;
}
.c-pricing__description {
  display: block;
  font-size: 14px;
}
.c-pricing__highlight {
  font-size: 35px;
  font-weight: 600;
  margin: 5px 0px;
  display: inline-block;
}
.c-highlight {
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
  line-height: 24px;
}
.c-highlight.c-highlight__text--highlight {
  color: #02a702;
  font-weight: 500;
}
.o-media__wrapper-btn {
  background: var(--primaryColor);
  border: 0;
  min-height: 40px;
  padding: 0px 15px;
  width: 100%;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  font-size: 18px;
  transition: all ease-in-out 0.2s;
  margin-top: 5px;
  display: inline-block;
  line-height: 40px;
}
.o-media__wrapper-btn:hover{
  background-color: var(--secondaryColor);
  color: white !important;
}
.qa-vehicles__vehicle_left {
  border-right: 1px dashed #2554906e;
  height: 100%;
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.qa-vehicles__vehicle_right{
  padding: 15px;
}
.o-media__item.o-media__item--additional-info {
  overflow: hidden;
}
/*  */
.booking_details_box {
  border: 1px solid var(--grayColor);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.booking_details_box_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primaryColor);
  border-bottom: 1px dashed var(--grayColor);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.booking_details_box .para_text_title {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  line-height: 18px;
  color: var(--primaryColor);
}
.booking_details_box .para_text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--lightGray);
}
.booking_details_box .para_text:last-child {
  margin: 0;
  border: 0;
}
p.para_text_date {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondaryColor);
}
.booking_details_box .time_count {
  font-size: 12px !important;
  font-weight: 600;
  color: red;
}
.booking_details_box .c-feature__text {
  font-size: 14px;
  font-weight: 500;
}
.sidebar-wrap .amount {
  font-size: 25px;
  font-weight: 600;
  margin: 30px 0px 10px;
}
/* ============ */

.media-text{
  margin: 0px 20px !important;
}
.o-info-display__title {
  margin-bottom: 0;
}
.title_header{
 color: var(--secondaryColor);
  font-weight: 600;
  font-size: 16px;
}
.c-detail__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0px 0 8px;
  text-transform: capitalize;
}
.c-detail__text {
  line-height: 19px;
  font-size: 14px;
  margin: 5px;
  font-weight: 400;
  color: #444;
}
.c-detail__image {
  font-size: 25px;
  color: var(--secondaryColor);
  padding: 5px;

 
}
.c-detail__item {
  border-radius: 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
}
.o-info-display__item {

  padding: 20px 5px;
  border-radius: 5px;
}
.info-wrapper-o{
  padding: 0px 10px;
  border-right: 1px dashed #a1b5cf;
}
.o-info-display__titles p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
li.item-list_chose {
  background: #fff;
  padding: 5px;
  min-width: 245px;
  border-radius: 10px;
  border: 1.5px solid #eee;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: start;
  width: 100%;
}
i.chose-list__icon {
  color: #ed8122;
  font-size: 20px;
  background: #ed812226;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
}
span.chose-list__description {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  line-height: 16px;
  width: 80%;
}

.serial_number{
  display: flex !important;
}
.serial {
  background: #ed8122;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
  color: white;
  font-weight: 600;
  border: 1px solid #ed8122;
}
.c-plain-list__texts {
  line-height: 22px;
  padding: 0px 10px;
  font-size: 13px;
  width: 100%;
}
.vehicle-item {
  padding: 0px 15px;
  text-align: center;
}
.vehicle-item-title {
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}
.vehicle-thumb {
  margin-bottom: 15px;
  min-height: 100px;
  display: flex;
  align-items: end;
}
.vehicle-item strong {
  color: var(--secondaryColor);
}
.booking_reference{
  display: block;
  font-size: 25px;
  margin-top: 10px;
  color: red;
}
/* ====Daily drive===== */
.time-section {
  margin-top: 10px;
  display: none;
}

label {
  font-weight: 600;
  margin-right: 15px;
}

input[type="time"] {
  padding: 5px;
}
.time_dates{
  height: 40px;
}
.time_date_section{
  display: flex !important;
}
/* Daily Drive */
.expense_tbl_rent th {
  font-weight: 600;
  font-size: 14px;
}
.expense_button {
  background: var(--secondaryColor);
  border-radius: 30px;
  min-width: 100px;
  padding: 5px;
  color: var(--whiteColor);
  transition: all ease-in-out 0.2s;
}
.expense_button:hover{
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
/*  */
.pay_status {
  padding: 4px 10px;
  border: 2px dashed #ddd;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}
.pay_status .status{
  color: var(--secondaryColor);
}
.booking_price{
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  margin: 15px 0 0;
}
/*  */
.timePickerWrap {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  text-align: center;
  max-width: 300px;
}
.time_wrap {
  position: relative;
  width: 33%;
}
.time_wrap_label {
  font-size: 12px;
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 10px;
  background: #fff;
  line-height: 17px;
  padding: 0px 5px;
  font-weight: 500;
  color: #8d8d8d;
}
.date_input_box {
  position: relative;
}
.date_input_box i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.reference_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px dashed #ddd;
  padding: 5px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: capitalize;
  gap: 4px;
  margin-bottom: 0;
}
span#booking_id {
  font-size: 26px;
  color: #e41919;
  font-weight: 700;
}