/*===========================================================================================================================
					Theme Colors , size , font familes , line height , letter spacing , fontweight
============================================================================================================================*/
/*------------------Defalt Styling------------------*/
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;

}
html{
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  width: 100%;
}
button{
  z-index: 0 !important;
}
a {
  text-decoration: none !important;
}
::selection {
  background-color: #193E61;
  color: white;
}

/*------------------color---------------------------*/
:root {
  --themeBlue: #04314D;
  --themeLightBlue: #eff9ff;
  --themegray: #ECF1F3;
  --themeSkyblue: #DEF3FF;
  --themeGreen: #547A36; 
}
/*-------------------font size ---------------------*/
.fontSize12 {
  font-size: 12px !important;
}
.fontSize14 {
  font-size: 14px !important;
}
.fontSize15 {
  font-size: 15px;
}
.fontSize16 {
  font-size: 16px;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize19 {
  font-size: 19px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize21 {
  font-size: 21px;
}
.fontSize24 {
  font-size: 24px;
}
.fontSize28 {
  font-size: 28px;
}
.fontSize32 {
  font-size: 32px;
}
.fontSize36{
  font-size: 36px;
}
/*-------------------line hight--------------------*/
.lineHeight110 {
  line-height: 110%;
}
.lineHeight120 {
  line-height: 120%;
}
.lineHeight125 {
  line-height: 125%;
}
.lineHeight130 {
  line-height: 130%;
}
.lineHeight137 {
  line-height: 137%;
}
.lineHeight140 {
  line-height: 140%;
}
.lineHeight150 {
  line-height: 150%;
}
/*-------------------font weight--------------------*/
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
/*------------------font style-----------------*/
@font-face {
  font-family: 'inter';
  src: url('./Inter.ttf') ;
  font-style: normal;
  font-display: swap;
 
}
.interFont {
  font-family: "inter", sans-serif;
}
.text-gray{
  color: #5E718D;
}
.text-gray90{
  color: #101828;
}

/* theme buttons styles
================================================ */

.btn-secondary{
  border:1px solid #B9C0CB;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  font-family: "inter", sans-serif;
  color: #475467;
  transition: 0.2s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-secondary:hover{
  color: #2A2F33;
  background-color: #F5F9FC;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn-secondary:focus{
   color: #2A2F33;
  border:1px solid #B9C0CB !important;
   box-shadow: 0 0 0 0.25rem rgba(10, 9, 11, 0.07) !important;
  

}
.btn-outline-danger{
  border:1px solid #FF9EDF;
  background-color: #FEF1F9;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  font-family: "inter", sans-serif;
  color: #DF0D81;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.35s ;
}
.btn-outline-danger:hover{
  color: #D20470 !important;
  background-color: white;
  border-color: #FF62C8;
}
.btn-outline-danger:focus{
  box-shadow: 0 0 0 0.25rem rgba(255, 158, 223, 0.5) !important;
  border:1px solid #FF62C8 !important;
}
.btn-danger{
  border:1px solid #AD075C;
  background-color: #D42D89;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  font-family: "inter", sans-serif;
  color: #FEF1F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.35s ;
}
.btn-danger:hover{
  color: #FEF1F9 !important;
  border:1px solid #D20470;
  background-color: #EE45AB;
}
.btn-danger:focus{
  box-shadow: 0 0 0 0.25rem rgba(255, 158, 223, 0.5) !important;
  border:1px solid #EE45AB !important;
}

.dangerIcon{
  transform: 0.35s;
}
.btn-danger:hover .dangerIcon{
  fill: #FEF1F9;
}
.link-danger{
  color: #DF0D81 !important;
}
.link-danger:hover{
  color: #DF0D81;
}
.accordion-button{
  display: block !important;
  width: fit-content !important;
  border:1px solid #B9C0CB !important;
  background-color: white !important;
  border-radius: 8px !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  font-family: "inter", sans-serif;
  color: #475467;
  transition: 0.2s;
  padding: 10px 16px !important;
}
.accordion-button:hover{
  color: #2A2F33 !important;
  background-color: #F5F9FC !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
}


/*topbar css
===============================================================*/
.topbar{
  padding: 16px 30px;
}
.topbar ul{
  gap: 10px 36px;
}
.topbar ul li a p{
  color: #DFF0FF;
}
.laptop-hide{
  display: none;
}
.lg-justifyCenter{
  justify-content: space-between;
}
/*navbar css
===============================================================*/
.navbar{
  padding: 30px 30px !important;
}
.navbar .navbar-nav{
  column-gap:36px;
}
.navbar-toggler {
  border-radius: 8px !important;
  background-color: #DFF0FF !important;
  font-size: 14px !important;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 16px 14px !important;
}
.navbar .nav-link{
  color: #2A2F33;
  position: relative;
  transition: 0.2s;
}
.dropdown-menu {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  padding: 0 !important;
  margin:0px;
}
.dropdown-menu .dropdown-item{
  padding: 8px 12px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
.dropdown-item:hover{
  background-color: #f5f9fc !important;
  color: #D20470 !important
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.navbar .nav-link:hover{
  color: #D20470;
}
.navbar .nav-link:focus{
  color: #D20470;
}
.navbar .nav-link:hover::before{
  width: 100%;
  left: 0;
}
.navbar .navbar-brand img{
  width: 193px;
  height: 65px;
}
.mobileBokingTop{
  display: none !important;
}
/*tabs bar css
=========================================================*/
.tabsbar{
  padding: 24px 30px 20px 30px;
}
.tabsbar ul{
  gap:36px;
}
.tabsbar .badge{
  background-color: #00589B;
}
.tabsbar ul li a{
  padding: 8px 12px 8px 10px;
  color: #DFF0FF;
  border-radius: 6px;
  transition: 0.3s;
}
.tabsbar ul li svg{
  margin-right: 8px;
}
.tabsbar ul li a:hover{
  background-color: #00589B;
  color: white;
}
.tabsbar .active{
  background-color: #00589B;
  color: white;
}
.tabsbar .active .badge{
  background-color: #072a4a;
}
.tabsbar .active .tabIcon{
  fill: white; 
}
.tabsbar .active .settingIcon{
  stroke: white; 
}

/*main content-wrapper css
================================================================*/
.content-wrapper{
  padding: 30px;
}


/*theme alert box
===============================================================*/
.thmeAlert{
  border-radius: 12px !important;
  background-color: white;
  border:1px solid #EAECF0 !important;

  align-items: center;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03) !important;
}
.thmeAlert .Featuredicon{
  min-width: 48px;
  height: 48px;
  border:8px solid #DFF0FF;
  background-color: #B9E1FE;
  border-radius: 50%;
}
.thmeAlert p{
  color: #37393D;
}
.thmeAlert p span{
  color: #00589B;
}
.thmeAlert .btn{
  font-weight: 600 !important;
  z-index: -0 !important;
}
.alertBtn-alignment{
  justify-content: flex-end;
}


/*profile content box design=
======================================================================*/
.profile-box{
  background-color: white;
  border:1px solid #EAECF0;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  border-radius: 12px;
}
.profile-boxBody{
  padding: 24px
}
.profile-box .profile{
  min-width: 96px;
  min-height: 96px;
   max-width: 96px;
    max-height: 96px;
  border-radius: 50%;
  border:2px solid #B9E1FE;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.profile-box .profile img{
  width: 100%;
  height: auto;
}
.profile-boxBody ul{
  gap:20px;
  margin-top:10px;
  margin-bottom: 12px;
}
.profile-boxBody ul li p{
  letter-spacing: -0.2px;
  line-height: 142%;
}
.profile-boxFooter{
  padding: 16px 24px;
  border-top: 1px solid #EAECF0;
}
.profileData{
  margin-left: 12px;
}
/*booking box content box design=
======================================================================*/
.booking-box{
  border:1px solid #EAECF0;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  background-color: white;
  border-radius: 12px;
  padding: 24px ;
}
.booking-card{
  border:1px solid #E5E7EA;
  padding: 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
}
.createBooking svg{
  margin-right: 8px;
}
.laptopBookingbox{
    display: block;
  }
  .mobileBookingbox{
    display: none;
  }
/*trip-box content box design=
======================================================================*/
.trip-box{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.trip-card{
  border:1px solid #E5E7EA;
  border-radius: 6px;
  background-color: white;
  padding: 16px;
  margin-top: 16px;
  position: relative;
}
.tripcardMain .upcoming{
  background-color: #EBF2F8 !important;
  border:1px solid #DFF0FF !important;
}
.tripcardMain .upcoming .ticketIcon{
  background-color: white !important;
  border:1px solid #E0E3E7;
}
.trip-card .status{
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #F7FBFF;
  color: #475467;
  font-size: 12px;
  line-height: 18.241px;
}
.trip-card .dot{
  position: absolute;
  top:21px;
  right: 15px;

}
.upcoming .status {
  display: inline-flex;
  align-items: center;
  gap:3px;
}
.upcoming .ring-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upcoming .ring-container .circle {
    width: 10px;
    height: 10px;
    background-color: #40919C;
    border-radius: 50%;
}
.upcoming .ring-container .ringring {
    border: 3px solid #40919C;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: -7px;
    top: -7px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
.ticketIcon{
  width: 40px;
  height: 40px;
  border:1px solid #E0E3E7;
  background-color: #F2F4F7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.paddingRight-0{
  padding-right: 0px;
}
.trip-cardFooter{
  padding-top:16px;
}
.btnbox{
  display: flex;
  justify-content: flex-end;
  gap:12px;
  flex-wrap: wrap;
}
.SeatsShow {
    display: block;
  }
  .SeatsHide{
    display: none;
  }
  .returnIconMobile{
    display: none;
  }
  .buttinPadding{
    padding: 0px 12px;
  }

/*=================================================================================================================================
                                                          Travel history Page
===================================================================================================================================*/

/*Travel histroy box
==================================================*/
.travelHistory-box{
  border:1px solid #EAECF0;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.filters{
  display: flex;
  gap:8px;
  align-items: center;
}
.historyCard{
  padding: 16px;
  border:1px solid #E5E7EA;
  background-color: white;
  border-radius: 6px;
  margin-top: 24px;
}
.historyCar-buttons{
  display: flex;
  flex-direction: column;
  gap:12px;
}
.historyCard-ticket{
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border:1px solid #E0E3E7;
  background-color: #F2F4F7;

}
.laptopTicketPrice{
  display: block;
}
.mobileTicketPrice{
  display: none;
}
.mobileReturnIcon-history{
  display: none;
}
.pagination .text{
  display: block;
}
.pagination .icon{
  display: none;
}
/*Travel histroy map box
==================================================*/
.travelHistory-mapBox{
     border-radius: 16px;
  background-color: white;
  border:1px solid #EAECF0;
  padding: 24px;
}
.travelHistory-mapBox #map{
  width: 100%;
  height: 840px;
}
.buttonWidth{
  width: 100%;
}

/*=================================================================================================================================
                                                          Upcoming trips Page
===================================================================================================================================*/

/*upcomingTrip-box
===============================================*/
.upcomingTrip-box{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  padding: 24px;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
}
.upcomingTrip-card{
  border:1px solid #DFF0FF;
  padding: 16px;
  border-radius: 6px;
  background-size: white;
  margin-top: 24px;
  position: relative;
  background-color: white;
}
.upcomingTrip-card.active{
  border-color: #DFF0FF !important;
  background-color: #EBF2F8 !important;
}
.upcomingTrip-card.active .ticket{
  border-color: #E0E3E7 !important;
  background-color: white !important;
}
.upcomingTrip-card .ticket{
  background-color: #F2F4F7;
  border:1px solid #E0E3E7;
  max-width: 40px;
  max-height: 40px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upcomingTrip-cardFooter .btn-box{
  display: flex;
  gap:12px;
}
.upcomingTrip-cardFooter .btn-box button{
  text-align: center;
}
.upcomingTrip-card .stand{
  background-color: #F7FBFF;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #475467;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap:4px;
}
.mobileStand{
  display: none;
}
.upconingReturnICon-mobile{
  display: none;
}
.upcomingTripButtons{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.upcomingTrip-mapbox{
  border-radius: 16px;
  background-color: white;
  border:1px solid #EAECF0;
  padding: 24px;
}
.upcomingTrip-mapbox #map{
  width: 100%;
  height: 706px;
}
.upcomingTrip-card .stand .ring-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.upcomingTrip-card .stand .ring-container .circle {
    width: 10px;
    height: 10px;
    background-color: #40919C;
    border-radius: 50%;
}
.upcomingTrip-card .stand .ring-container .ringring {
    border: 3px solid #40919C;
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    left: -7px;
    top: -7px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
/*=================================================================================================================================
                                                          Account & Subscriptions Page
===================================================================================================================================*/

/*Overview tabs 
=====================================================================*/
.accountDetail{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
}
.accountDetaol-body{
  padding:24px 24px 0px 24px;
}
.accountDetail-item{
  padding: 24px 16px 24px 16px;
  border-bottom: 1px solid #EBF2F8;
}
.accountDetail-item .profile{
  max-height: 96px;
  max-width: 96px;
  min-height: 96px;
  min-width:96px;
  border-radius: 50px;
  margin: auto; 
}
.accountDetail-item input[type="date"]::-webkit-calendar-picker-indicator {
   background-image: url('../media/calendar.svg');
   background-size: 150%;
   background-position:center;
   cursor: pointer; 
}
.accountDetail-item input[type=file]::file-selector-button {
    display: none;
}
.accountDetail-item .phoneIcon{
  position: relative;
}
.accountDetail-item .phoneIcon svg{
  position: absolute;
  top: 11px;
  right: 9px;
}
.accountDetail-item .phoneIcon .view{
  position: absolute;
  top: 11px;
  right: 9px;
  cursor: pointer;
}
.accountDetail-item .phoneIcon input{
  padding-right: 30px !important;
}
.accountDetail-item .uploadFile{
  position: relative;
}
.accountDetail-item .uploadFile .uploadIcon{
  display: flex;
  align-items: center;
  position: absolute;
  top: 11px;
  right: 9px;
  cursor: pointer;
  z-index: -0;
}
.accountDetail-item .uploadFile .uploadIcon span{
  color: #D42D89;
  letter-spacing: -0.05px;
}
.accountDetail-item .uploadFile input{
  padding-right: 85px !important;
}
.accountDetaol-footer{
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EBF2F8;
}
.upgradeButton{
  text-align: end;
}
/*subscriptionDetail-box
================================*/
.subscriptionDetail-box{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.subscriptionDetail-box .detail-item{
  border-top: 1px solid #E6E6E6;
}
.subscriptionDetail-box .detail-item ul{
  gap:0px 20px;
}
/*eCommerce Shipping nfo tabs 
===================================================================================================*/
.eCommerceDetail-box{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.eCommerceDetail-box .detail-item{
  border-top: 1px solid #E6E6E6;
  }
  .upgradeSubscription{
    text-align: end;
  }
/*AddressBook tabs 
===================================================================================================*/
.addAddress{
  background-color: white;
  border:1px dashed #C9C9CC;
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  min-height: 240px;
  max-width: 240px;
  margin-left: auto
}
.addAddress div{
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  border:1px solid #E0E3E7;
  background-color: #F2F4F7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homeAddress-box{
  border:1px solid #EAECF0;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.homeAddress-box .detail-item{
  border-top: 1px solid #E6E6E6;
}
/*document tabs tab
===================================================================================================*/
.documentList-box{
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  border-radius: 12px;
  background-color: white;
}
.documentList-boxBody{
  padding: 24px 0px;
}
.documentList-boxFooter{
  padding: 16px 24px;
  border-top: 1px solid #EBF2F8;
  display: flex;
  justify-content: space-between;
}
.documentList-boxBody ul li{
  padding: 12px 16px;
  align-items: center;
  border-bottom: 1px solid #F1F1F1;
}
.documentList-boxBody ul li .del-Icon{
  padding: 12px 16px;
}
.documentList-boxBody ul .iconbox{
  max-width: 40px;
  max-height: 40px;
  min-height: 40px;
  min-width: 40px;
  background-color: #F2F4F7;
  border:1px solid #E0E3E7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.documentList-boxBody ul .text-box{
  margin-left: 16px;
}
.uploadDocument-box{
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 20px 20px 60px 20px;
  height: 100%;
}
.uploadDocument-box .uploadInput{
  padding: 32px 24px;
  min-height: 240px;
  background-color: white;
  border-radius: 8px;
  border:1px dashed #C9C9CC;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.uploadDocument-box .uploadInput input{
  display: none;
}
.uploadDocument-box .uploadInput .uploadIcon{
  max-width: 44px;
  max-height: 44px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.uploadDocument-box .uploadInput .limite{
  color: #0075CB;
}
/*App System Settings tabs content
===================================================================================================*/
.appSerring-box{
  border-radius: 12px;
  border:1px solid #EAECF0;
  background-color: white;
  box-shadow: 0px 1px 2px 0px rgba(28, 108, 176, 0.25);
  padding: 24px;
}
.appSerring-box .app-item{
  border-bottom:1px solid #E6E6E6;
}
.appSerring-box .app-item:last-child{
  border-bottom: none !important
}








/*site footer
======================================================================*/
footer{
  padding-left: 30px;
  padding-right: 30px;
}
.paymentText{
  color: #34AEFC;
}
.footerPaymentBox{
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: center;
}
.footerNavlist{
  list-style-type: none;
}
.footerNavlist li a{
  color: #DFF0FF !important;
  position: relative;
  transition: 0.2s
}
.footerNavlist li a:hover{
  color: white !important;
}
.footerForm{
  background-color: white;
  border-radius: 6px;
  padding: 24px;
}
.footerForm input{
  border:1px solid #E6E6E6;
  box-shadow: 0px 1.5px 4px -1px rgba(10, 9, 11, 0.07);
  border-radius: 8px;
  margin-bottom: 8px;
  color: #7F7D83 !important;
  font-family: "inter", sans-serif;
}
.copyright{
  color: #DFF0FF;
  letter-spacing: 0.42px;
  line-height: 160%;
}
/*email Toast
=======================================================================*/
@keyframes slideInDown {
  from {
    transform: translate3d(0, 120px, 0) scaleY(.8);
    visibility: visible;
/*     opacity: 0; */
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes backdropIn {
  from {
   opacity: 0;
/*     opacity: 0; */
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  
  to {
    opacity: 0;
    transform: scale(.9);
  }
}
@keyframes backdropfadeOut {
  from {
    opacity: 1;
  }
  
  to {
    opacity: 0;
  }
}
#customtoast {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right:30px;
  background-color: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  z-index: 99999999;
  box-shadow: 0px 1.5px 4px -1px rgba(10, 9, 11, 0.07);
  border:1px solid #ECECED;
  padding: 16px;
  border-radius: 8px;
  gap:8px;
}
.slideInDown {
  animation-name: slideInDown;
  animation-duration: .5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0,1.5,.5,1);
}
.backdrop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
}
#customtoast.hide {
    animation-name: fadeOut;
  animation-duration: .15s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  opacity: 0 !important;
  display: none ;
}
.backdrophide{
     animation-name: backdropfadeOut;
  animation-duration: .15s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  transform: scale(0);
  opacity: 0 !important
}
.emailToast{
  color: #5E718D
}






/*media query for tablet screens
======================================================================*/
@media screen and (max-width: 1199px){
  .mobileMargin{
    margin-bottom: 10px !important;
  }
  .lg-justifyCenter{
    justify-content: center !important;
  }
}
@media screen and (max-width: 991px){
  .fontSize14 {
    font-size: 14px !important;
  }
  .fontSize15 {
    font-size: 15px;
  }
  .fontSize16 {
    font-size: 16px;
  }
  .fontSize18 {
    font-size: 17px;
  }
  .fontSize19 {
    font-size: 18px;
  }
  .fontSize20 {
    font-size: 18px;
  }
  .fontSize21 {
    font-size: 20px;
  }
  .fontSize24 {
    font-size: 21px;
  }
  .fontSize28 {
    font-size: 22px;
  }
  .fontSize32 {
    font-size: 30px;
  }
  .fontSize36{
    font-size: 30px;
  }
  .tabletCenter{
    text-align: center;
  }
  .mobileBokingTop{
    display: block !important;
    margin-right: 20px;
  }
  .mobileBokingTop svg{
    margin-right: 6px;
  }
  .laptopBookingbox{
    display: none;
  }
  .mobileBookingbox{
    display: block;
  }
}

/*media query for Mobile screen screens
======================================================================*/
@media screen and (max-width: 767px){
  .fontSize14 {
    font-size: 13px !important;
  }
  .fontSize15 {
    font-size: 14px;
  }
  .fontSize16 {
    font-size: 14px;
  }
  .fontSize18 {
    font-size: 16px;
  }
  .fontSize19 {
    font-size: 16px;
  }
  .fontSize20 {
    font-size: 17px;
  }
  .fontSize21 {
    font-size: 18px;
  }
  .fontSize24 {
    font-size: 19px;
  }
  .fontSize28 {
    font-size: 20px;
  }
  .fontSize32 {
    font-size: 32px;
  }
  .fontSize36{
    font-size: 24px;
  }
  .nav-link {
    padding: 20px 0px !important;
  }
  /*common mobile classes===================*/
  .mobileCenter{
    text-align: center;
  }
  /*content-wrapper=====================*/
  .content-wrapper{
    padding: 16px 0px;
  }
  /*topbar mobile=======================*/
  .topbar{
    padding: 16px 0px;
  }
  .topbar ul{
    gap:10px;
  }
  .topbar ul li p{
    font-size: 13px
  }
  .laptop-hide{
    display: block;
  }
  .hidden-mobile{
    display: none !important
  }
  .mobile-justifyBetween{
    flex-direction: row-reverse;
    justify-content: space-between !important;
    width: 100%;
  }
  /*navbar mobile=====================*/
  .navbar{
    padding: 24px 0px !important;
    background-color: white;
  }
  .navbar .navbar-brand img{
    width: 150px;
    height: auto;
  }
  /*tabs bar ===============*/
  .tabsbar{
    padding: 12px 0px !important;
  }
  .tabsbar ul{
    gap:12px;
  }
  .tabsbar ul li p{
    display: none;
  }
  .tabsbar ul li a .badge{
    display: none !important;
  }
  .tabsbar ul li svg {
    margin-right: 0px !important
  }
   .tabsbar ul li .active p{
    display: block !important;
  }
  .tabsbar ul li .active p .account{
    display: none !important
  }
  .tabsbar ul li .active .badge{
    display: block !important;
  }
  .tabsbar ul li .active svg{
    margin-right: 8px !important;
  }
  /*dhasboard page responsive css
  ======================================================*/
  /*alert box */
  .alertButton{
    display: none !important;
  }
  .alertBtn-alignment{
    justify-content: space-between !important;
  }
  .thmeAlert{
    gap:12px;
  }
  /*profile box*/
  .profile-boxBody{
    padding: 16px;
  }
  .profile-box .profile{
    max-width: 96px;
    max-height: 96px;
    min-width: 96px;
    min-height: 96px;
  }
  .profile-boxBody ul{
    justify-content: center;
  }
  
  .profileBoxData{
    padding-top:16px !important;
    padding-bottom: 6px !important;
  }
  .profileBoxData ul{
    gap:12px 10px;
  }
  /*booking box*/
  .booking-box{
    background-color: transparent;
    border:none;
    box-shadow: 0 0 0 rgba(255,255,255,0);
    padding: 0px !important;
  }
  .mobileAlignEnd{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .mobileGap{
    gap:12px 0px;
  }
  .mobileHideCol{
    display: none;
  }
  .btnbox{
    padding-top:16px;
    justify-content: center;
    gap:8px;
  }
  .createBooking{
    padding-bottom: 0px !important;
    padding-top: 14px;
  }
  .booking-box .subTitle{
    display: none;
  }
  .booking-card{
    background-color: white;
  }
  .booking-box {
    padding: 16px;
  }
  .trip-box{
    padding: 16px;
  }
  .trip-box{
    background-color: transparent;
    border:none;
    box-shadow: 0 0 0 rgba(255,255,255,0);
    padding: 0px;
    padding-top: 14px;
  }
  .SeatsShow{
    display: none;
  }
  .standBy-mobile{
    padding-bottom: 12px;
  }
  .standBy-mobile p{
    display: none
  }
  .SeatsHide{
    display: block;
    padding-bottom: 12px;
  }
  .mobileFlex{
    display: flex;
    justify-content: space-between;
  }
  .mobileFlex div{
    width: 50%;
  }
  .mobileP-0{
    padding-top:0px !important;
  }
  .tripcardMain .upcoming .ticketIcon{
    background-color: transparent !important;
    border:none !important;
     max-width: auto !important;
      max-height: auto !important;
      min-height: auto !important;
      min-width: auto !important;
      margin-left: -15px;
    margin-top: -5px;
  }
  .tripcardMain .ticketIcon{
    background-color: transparent !important;
    border:none !important;
     max-width: auto !important;
      max-height: auto !important;
      min-height: auto !important;
      min-width: auto !important;
      margin-left: -15px;
    margin-top: -5px;
  }

  .mobiletripImg{
    display: none;
  }
  .paddingRight-0{
    padding-right: 12px;
  }
  .mobileTop-padding{
    padding-top: 12px;
  }
  .returnIconMobile{
    position: absolute;
    display: block;
    left: 56%;
    top: 20px
  }
  .ticketIconMobile-Padding{
    padding-right: 0px !important
  }
  .trip-cardFooter{
    padding-top: 0px;
  }
  .detailRow{
    justify-content: flex-end;
  }
  .buttinPadding{
    padding:0px !important;
  }

  /*dhasboard page responsive css
  ======================================================*/
  .travelHistory-box,.travelHistory-mapBox,.upcomingTrip-box,.upcomingTrip-mapbox {
    padding:0px;
    background-color: transparent;
    border:none;
    box-shadow: 0 0 0 rgba(0,0,0,0)
  }
  .travelHistory-mapBox{
    padding-top:12px !important;
  }
  .travelHistory-mapBox #map{
    border-radius: 8px;
    height: 400px;
  }
  .historyCard-ticket{
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border:none !important;
  background-color: transparent !important;
   margin-left: -15px;
    margin-top: -5px;
}
.buttonWidth{
  width: fit-content;
}
.historyCar-buttons{
  display: flex;
  gap:8px;
  justify-content: center;
  flex-direction: row;
  padding-top:24px;
}
.laptopTicketPrice{
  display: none;
}
.mobileTicketPrice{
  display: block;
}
.endCity{
  padding-top: 12px;
}
.mobileReturnIcon-history{
  display: block;
  position: absolute;
  top: 0;
  left: 56%;
  height: 80px !important;
}
.pagination{
  gap:4px;
}
.pagination .text{
  display: none;
}
.pagination .icon{
  display: block;
}
.upcomingTrip-card .ticket{
    background-color: transparent !important;
    border:none !important;
     max-width: auto !important;
      max-height: auto !important;
      min-height: auto !important;
      min-width: auto !important;
      margin-left: -5px;
    margin-top: 0px;
  }
  .upcomingTrip-card.active .ticket{
    background-color: transparent !important;
    border:none !important;
     max-width: auto !important;
      max-height: auto !important;
      min-height: auto !important;
      min-width: auto !important;
      margin-left: -5px;
    margin-top: 0px;
  }
  .upcomingTrip-card .stand{
    display: none
  }
  .upcomingTrip-card .mobileStand{
    display: block;
  }
  .upcomingTrip-card .mobileStand span{
     background-color: #F7FBFF;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 12px !important;
    font-weight: 500;
    line-height: 16px;
    color: #475467;
    width: fit-content;
    display: flex;
    align-items: center;
    gap:4px;
  }
  .upcomingTripButtons{
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px !important;
  }
  .upcomingTripButtons .btn-box{
    flex-wrap: wrap;
    gap:8px;
    justify-content: center;
  }
  .upconingReturnICon-mobile{
    position: absolute;
    display: block;
    top: 0;
    left: 34%;
    height: 90px !important
  }
  .upcomingTrip-mapbox #map{
    border-radius: 8px;
    height: 400px;
  }
  .upcomingTrip-mapbox{
    padding-top: 12px !important
  }
  /*Account setting page responsive================================*/
  .accountDetaol-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:8px;
    padding:12px 16px;
  }
  .accountDetaol-body{
    padding: 16px 0px 0px 0px;
  }
  .subscriptionDetail-box{
    padding:16px;
  }
  .upgradeButton{
    text-align: center;
    padding-top: 12px;
  }
  .eCommerceDetail-box{
    padding:16px;
  }
  .upgradeSubscription{
    text-align: center;
  }
  .addAddress{
    margin: 0px auto 24px auto;
  }
  .homeAddress-box{
    padding: 16px;
  }
  .documentList-boxFooter{
    padding: 12px 16px !important;
  }

  /*mobile footer ===========*/
  footer{
    padding-left: 0px;
    padding-right: 0px;
  }
  #customtoast{
    right: 0;
    width: 100%;    bottom: 30%;
    scale:0.8;
  }


}
@media screen and (max-width: 500px){
  .mobileTop-padding{
    padding-top: 28px;
  }
}
@media screen and (max-width: 550px){
  .booking-card{
    flex-direction: column;
    gap:12px;
    text-align: center;
  }
  
}

@media screen and (max-width: 440px){
  .profile-boxFooter{
    flex-direction: column;
    gap:10px;
  }
}
@media screen and (max-width: 370px){
  .booking-card img{
    width: 100px
  }
  .topbar ul{
    gap:16px;
  }
  .topbar ul li svg{
    width: 16px;
    height: 16px;
    margin-right: 2px !important
  }
}
@media screen and (max-width: 430px){
  .navbar .navbar-brand img{
    width: 125px;
    height: auto;
  }
  .navbar{
    padding: 16px 0px !important;
  }
  .topbar ul li p{
    font-size: 12px
  }
  .tabsbar ul li p{
    font-size: 13px !important;
  }
  
  .tabsbar ul li a{
    padding: 10px 10px !important
  }
  .tabsbar ul li a .badge{
    font-size: 10px !important
  }
  .tabsbar ul li a.active{
    padding: 8px 6px !important
  }
}
@media screen and (max-width: 400px){
  .mobileBokingTop{
    margin-right: 10px;
    padding: 8px !important;
  }
  .mobileBokingTop svg{
    margin-right: 0px;
  }
  .navbar .navbar-brand img{
    width: 110px;
    height: auto;
  }
  .navbar-toggler{
    padding: 12px 12px !important;
  }
  .tabsbar ul{
    gap:4px;
  }
  .tabsbar .container-fluid{
    padding: 0px !important;
  }
}
@media screen and (max-width: 370px){
  
  .createBooking button{
    font-size: 13px !important;
    padding: 8px 10px !important
  }
  .changeAddressButton{
    font-size: 13px !important;
    padding:8px 16px !important;
  }
}
@media screen and (max-width: 345px){
  .tabsbar ul li a{
    padding: 8px 8px !important
  }
  .createBooking svg{
    margin-right: 0px;
  }
}
@media screen and (max-width: 340px){
  .mobileBokingTop svg{
    width: 18px;
    height: 18px;
    margin: 0px;
  }
  .mobileBokingTop{
    font-size: 12px !important;
  }
  .tabsbar ul{
    padding: 0px 4px;
  }
  .tabsbar ul li a.active{
    padding: 6px 4px !important
  }
  .profile-box .profile{
    max-width: 80px;
    max-height: 80px;
    min-width: 80px;
    min-height: 80px;
  }
}
@media screen and (max-width: 330px){
  .tabsbar ul{
    gap:2px;
  }
  .tabsbar ul li a{
    padding: 8px 7.5px !important;
  }
}
