

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

:root{
--nav-bg: #2b3033;
--blue: #5fc7ea;
--red: #e68568;
--yellow: #e6d068;
--green: #0bb57b;
--ease: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
--content-animation: scale(0.7) rotateX(-230deg);
--header_bg:#fbfffe;
--text_color:#111;
--text--light--color:#9e9e9e;
--bgcolor: rgb(230, 230, 230);
--bodybgcolor: rgb(200, 200, 200);
--solidobject: -2px -2px 4px rgb(255, 255, 255),
  2px 2px 4px rgba(0, 0, 0, 0.15);
--standardtrans: all 1s ease;
--fasttrans: all 0.25s ease;
--superfasttrans: all 0.15s ease;
--text--size--xs:0.85rem;
--text--size--small:0.9rem;
--text--size--normal:1rem;
--text--size--xm:1.1rem;
--text--size--md:1.3rem;
--text--size--xmd:1.2rem;
--text--size--mmd:1.5rem;
--text--size--large:1.9rem;
--text--size--larger:2.2rem;
--gt-gradient-1: linear-gradient(90deg, #34c996 0%, #40e3ab 100%);
--card-bg:#5f5f5f;
--text--green--color:#0bb57b;
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  min-height: 100%;
  color: #222;
  font-size: var(--text--size--normal);
  font-family: "Roboto", sans-serif;
}

/*-- scrollbar design --*/

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dddada;
  -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #dddada;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(90deg,
                                            rgba(0, 0, 0, .2) 25%,
                        transparent 25%,
                        transparent 50%,
                        rgba(0, 0, 0, .2) 50%,
                        rgba(0, 0, 0, .2) 75%,
                        transparent 75%,
                        transparent)
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #AAA;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(90deg,
                                            rgba(0, 0, 0, .2) 25%,
                        transparent 25%,
                        transparent 50%,
                        rgba(0, 0, 0, .2) 50%,
                        rgba(0, 0, 0, .2) 75%,
                        transparent 75%,
                        transparent)
}


ul,li{
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", sans-serif;
}

a{
  text-decoration: none;
  color: #1a4eaa;
  font-family: "DM Sans", sans-serif;
}
button{

  font-family: "DM Sans", sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: "DM Serif Display", serif;
}
/* ================================ 
This code is for navbar
=================================== */
.wrapper_banner {
  background: url(../image/bg.jpg);
  background-repeat: no-repeat;
}
header {
  background: var(--header_bg);
  padding: 2px 0px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 8px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
}
.site_logo {
  width: 130px;
}
.nav_topMenu ul li{
  display: inline-block;
  padding: 10px 20px;
}
.nav_topMenu ul li a {
  position: relative;
  font-size: var(--text--size--xm);
  padding:0px 9px;
  font-weight: 800;
  color: #000;
}
/*.nav_topMenu ul li a:before {
  content: "";
  width: 10px;
  height: 2.5px;
  background-color: #05c383;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 19px;
}*/
.nav_topMenu ul li a::before{
  content: "";
  width: 100%;
  height: 2.5px;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
/*  transform-origin: 0 50%;*/
  transform-origin: 50% 50%;
  background: #05c383;
}
.nav_topMenu ul li a:hover::before{
  transform: scale3d(1,1,1);
}

.user-info{
  position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: var(--text--size--xs);
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.dropdown-menu button{
    border: none;
    background: none;
    /* padding: 0px !important; */
    padding: 10px 5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: var(--text--size--xs);
}
.dropdown-menu i {
    margin-right: 5px;
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #00bcd4;
}
.dropdown-menu .profile_info img{
  width: 40px;
}
.profile_info {
  border-bottom: 1px solid #f3f3f3;
    padding: 0px 0px 10px;
}
.profile_info .customer_name h6 {
    font-size: 13px;
    margin-bottom: 5px;
    margin-left: 10px;
}
.profile_info .customer_name p{
    font-size: 12px;
    margin-bottom: 0;
}
.bookNow_Bttn a {
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    /* overflow: hidden; */
    padding: 9px 45px;
    position: relative;
    border-radius: 7px;
    display: inline-block;
    background-color: #363539;
    margin-top: 0rem;
    cursor: pointer;
}
.form_close i{
  font-size: 23px;
    margin-top: 1rem;
    color: #d26159;
    cursor: pointer;
}
/*-- search form --*/
.scooty_booking_image img {
  width: 70%;
  margin: auto;
  display: block;
}
.booking_formDetails {
    border-radius: 10px;
    /* background-color: rgb(255 255 255 / 86%); */
    background: url(../image/loginform_bg.png) #fffffff5;
    filter: blur(0px);
    -webkit-box-shadow: 0px 3px 73px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 73px 0px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.label_info .form-select{
   border: none;
   background: #ffffff00;
}
.label_info .form-control{
   border: none;
   background: #ffffff00;
}
.label_info {
    border-bottom: 1px solid #86e9c7;
    padding: 0.5rem 0rem;
}
.mb-booking-option .option_action {
    width: 100%;
    padding-right: 18px;
}
.mb-booking-option .option_action h3 {
    font-size: 23px;
    font-weight: 800;
    padding-bottom: 10px;
    line-height: 1.25;
}
.mb-booking-option .option_action .action-icon i{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #bfe6e1;
    line-height: 40px;
    text-align: center;
}

.mb-booking-option .submit-btn button:before {
    top: 0;
    right: 0;
    z-index: -1;
    width: 0%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.place_booking{
  color: #3F51B5;
    text-transform: uppercase;
}
.book-button a{
  color: #fff;
}
.book-button a:hover{
  color: #fff;
}
.action-icon img{
  width: 40px;
    /* border-left: 1px solid #06c886; */
    padding-left: 10px;
}
/* -- slider css -- */

.banner {
  background-image: url(../image/bg_map.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 891px auto;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 0px;
  /* padding: 0px 0px 50px 0px; */
  /* margin-top: 11rem !important; */
  padding: 5rem 0rem 0rem;
}
.banner_content{
  width: 40%;;
}
.rent_vahicleDetails{
  margin-bottom: 1rem;
}
.rent_vahicleDetails:nth-child(1) .vahicle_info {
  margin: 0px 0px 0px 0px;
  padding: 45px 0px 45px 160px;
  background-color: #000000;
  background-image: url(../image/banner-bottom01.jpeg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 15px 15px 15px;
}
.rent_vahicleDetails:nth-child(2) .vahicle_info {
  margin: 0px 0px 0px 0px;
  padding: 45px 0px 45px 160px;
  background-color: #000000;
  background-image: url(../image/banner-bottom02.jpeg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 15px 15px 15px;
}
.rent_vahicleDetails:nth-child(3) .vahicle_info {
  margin: 0px 0px 0px 0px;
  padding: 45px 0px 45px 160px;
  background-color: #000000;
  background-image: url(../image/banner-bottom03.jpeg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 15px 15px 15px;
}
.vehicle_name {
  color: #fff;
  font-size: var(--text--size--md);
  /* font-weight: 600; */
  line-height: 1.5em;
  letter-spacing: 0.4px;
}
.banner_content p{
  line-height: 30px;
}
/* city details */
.city_deatils{
  position: relative;
  background: url(../image/shape_bg.png);
  /* height: 100%; */
  width: 100%;
  background-position: center right;
    background-repeat: no-repeat;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.city_wiseBikeDetails{
  padding: 3rem 0rem;
}
.img-box1 {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.img-box1 .img1 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-right: 20px;
}
.img-box1 .img1 img {
  border-radius: 156px 156px 0px 156px;
  width: 200px;
  height: 400px;
}
.img-box1 .img2 {
  position: relative;
  top: 0;
  /* right: 0; */
  overflow: hidden;
}
.img-box1 .img2 img {
  border-radius: 156px 156px 156px 0px;
  width: 200px;
  height: 200px;
}
.img-box1 .img3 {
  position: absolute;
  bottom: -5px;
  /* right: 0; */
  overflow: hidden;
}
.img-box1 .img3 img {
  border-radius: 156px 0px 156px 156px;
  width: 200px;
  height: 200px;
}
.img-box1 img{
  position: relative;
}
.overlay {
  background: url(../image/city_bg.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 10px;
  font-size: var(--text--size--md);
  line-height: 20px;
  color: #079564;
  text-transform: uppercase;
  font-weight: bold;
}
.services_weprovide{
  padding-left: 10rem;
}
.services_weprovide ul{
  width: 90%;
}
.services_weprovide ul li {
  display: inline-block;
  padding: 10px;
  width: 49%;
  font-size: 16px;
}
.services_weprovide ul li img {
  width: 30px;
  margin-right: 15px;
}
.services_weprovide h1{
  width: 90%;
  font-size: 3rem;
}
.services_weprovide h1 span{
  color: #06cb88;
}

.find_moreBttn a {
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
  padding: 16px 45px;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  background-color: #363539;
  margin-top: 2rem;
}

.find_moreBttn button {
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
  padding: 16px 45px;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  background-color: #363539;
  margin-top: 2rem;
}
.bikerent_datefilter .find_moreBttn button {
  margin-top: 0rem;
}
.find_moreBttn button:hover{
  color: #fff !important;
  background: #31c391;
}
/* -- vehcile info --*/

.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190E7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 50px;
  margin-bottom:40px;
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  /* max-width: 90px; */
  /* margin: 0 auto 17px; */
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #1fcf92;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
border: none;
    background: none;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #48494b;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}
.item .inner-img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.item .shadow-effect .inner-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gt-gradient-1);
  opacity: 0;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  transform-origin: top;
  border-radius: 6px;
  z-index: 2;
}
.item .shadow-effect .inner-img .view_booking{
  display: none;
}
.item:hover .shadow-effect .inner-img:before {
  opacity: 0.3;
  -webkit-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}
.item:hover .shadow-effect .inner-img .view_booking {
  display: block;
  transition: all 1s ease-in-out;
  position: absolute;
  z-index: 22;
  top: 50%;
  left: 35%;
  color: #fff;
}
.item .shadow-effect .inner-img img {
  height: 259px;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
}
.item .shadow-effect .inner-img img {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.item .explore-meta {
  gap: 10px;
  margin: 0 auto;
  max-width: 85%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 25px;
  margin-bottom: 25px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #252525;
}
.item .explore-meta span {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.item .exp_title {
  font-size: 28px;
  font-weight: 800;
  padding-left: 15px;
}
.item .explore-price-btn {
  padding: 15px 35px;
  border-top: 2px solid #f6f6f6;
}
/* contact form */

.gt-contact-faq-content {
  overflow: hidden;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 11px 109px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 11px 109px 0px rgba(0, 0, 0, 0.14);
}
.gt-faq-content {
  /* width: 50%; */
  background: var(--gt-gradient-1);
}
.gt-contact-content-3 {
  /* width: 50%; */
  padding: 45px;
  
}
.gt-contact-form input {
  color: #fff;
  width: 100%;
  border: none;
  height: 40px;
  font-size: var(--text--size--normal);
  font-weight: 500;
  max-width: 245px;
  margin-bottom: 33px;
  background-color: transparent;
  border-bottom: 2px solid #79ebc4;
}
::placeholder{
  color: #fff;
}
.gt-contact-form .submit-btn button {
  color: #fff;
    font-size: 16px;
    font-weight: 800;
    overflow: hidden;
    padding: 16px 45px;
    position: relative;
    border-radius: 50px;
    display: inline-block;
    background-color: #363539;
    margin-top: 2rem;
}
.contact_bg{
  padding: 45px;
}
.contact_infoDetails i {
  border-radius: 50%;
  font-size: 25px;
  /* padding: 15px; */
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  margin-right: 15px;
}
.contact_infoDetails:nth-child(1) i {
  background-color: #f2f2f2;
  fill: #1bbc9b;
  color: #1bbc9b;
}
.contact_infoDetails:nth-child(2) i {
  background-color: #1bbc9b;
  fill: #ffffff;
  color: #ffffff;
}
.contact_infoDetails:nth-child(3) i {
  background-color: #434a54;
  fill: #fff;
  color: #fff;
}
.contact_infoDetails h1 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}
.contact_infoDetails h5 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5em;
  letter-spacing: 1px;
}
.contact_infoDetails ul li{
  display: block;
  padding: 10px;
}
.mobile_info h5{
  padding: 10px 10px 0px;
}
.contact_from{
  margin-bottom: -13%;
    z-index: 0;
    position: relative;
}
.footer {
  background-color: #000;
  padding: 2rem 2rem 0.5rem;
}
.footer_heading{
  font-size: var(--text--size--xm);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer_menu li {
  margin-bottom: 12px;
  display: block;
  padding: 5px 0px;
}
.footer_menu li a {
  color: #fff;
  font-size: var(--text--size--normal);
  /* font-weight: 800; */
  padding-left: 25px;
  position: relative;
}
.footer_menu ul li a:before {
  left: 0;
  top: -2px;
  color: #7200f8;
  content: "\f178";
  font-weight: 900;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.footer_menu ul li a:hover:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.section_footer{
  margin-top: 14rem;
}
.footer_menu a img{
  width: 50%;
}
.footer_menu a img {
  width: 80%;
  /* display: inline-block; */
  border: 3px solid #ffffff52;
  border-radius: 8px;
}
.copyright-footer p{
  color: #fff;
}
.copyright-footer p {
  color: #ffffffcf;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border-top: 1px solid #3edfa821;
  padding: 15px 0px 0px;
}


/* -- bike details page -- */
.pickup_datefilter{
  padding-top: 5rem;
}
.widget-container .card {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
}

.widget-container .card .card-top .main-image {
    /* width: 54%; */
    /* margin-left: -30px; */
    /* margin-top: -20px; */
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    /* margin: -19px auto; */
    height: 150px;
    margin: 0.5rem auto;
    display: block;
}

.widget-container .card .card-top .likes {
  position: absolute;
  color: #fff;
  font-size: 0.75rem;
  top: -15px;
  right: 100px;
}

.widget-container .card .card-top .card-sidenav {
  position: absolute;
  right:0;
  top:0;
  color: #fff;
  background-color: #f5f5f5;
  border-top-right-radius: 10px;
  width:100px;
  height:192px;
  padding-top: 5px;
}

.bike_rentdeatils {
  width: 100%;
  /* height: 46px; */
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  /* line-height: 20px; */
}
.bike_rentdeatils p{
  margin: 10px 0px !important;
  color: var(--text_color);
}
.score span{
  display: block;
  font-size: 0.9rem;
}
.widget-container .card .card-top .card-sidenav .score {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: var(--card-bg);
  font-size: 1.2rem;
  text-align: center;
}

.widget-container .card .card-description {
  width: 100%;
  padding:15px 15px 0px;
}

.widget-container .card .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.bike-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  width: 80%;
}
.bike-name span {
    background: #757b79;
    padding: 3px 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-wrap: nowrap;
    border-radius: 4px;
    /* letter-spacing: 0.4px; */
    /* font-family: 'DM Sans'; */
}
.trip_count {
/*    background: #757b79;*/
    background: #0a7ad7;
    padding: 3px 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-wrap: nowrap;
    border-radius: 4px;
    /* letter-spacing: 0.4px; */
    /* font-family: 'DM Sans'; */
}
.widget-container .card .card-description .hotel-location {
  font-size: 0.75rem;
  margin-top:5px;
  text-transform: uppercase;
  color: #bbb;
}

.card-bookingDeatils .book-button {
  font-size: 0.8rem;
  font-weight: bold;
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 15px 30px;
}
.card-top{
  margin: 1rem;
  overflow: hidden;
}
.ap-ribbon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.ap-ribbon .ap-ribbon-content {
    left: -32px;
    top: 29px;
    width: 182px;
    font-size: 10px;
    padding: 5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: block;
/*    background-color: #0a7ad7;*/
    background:#757b79 ;
    color: #fff;
    /* text-transform: uppercase; */
    text-align: center;
    font-weight: bold;
}
.ap-ribbon .ap-ribbon-content small{
  font-size: 10px;
}
.bike_description .vehicledeatils{
   width: 100%;
    display: flex;
    align-items: baseline;
}
.bike_description .vehicledeatils i{
    margin-right: 10px;
    color: var(--green);
}
/*.bike_description .vehicledeatils:nth-child(even) i{
    margin-right: 10px;
    color: #8e9295;
}*/
.bike_description .vehicledeatils p {
    font-size: var(--text--size--xs);
}
.catalogueCard_packages {
    position: relative;
/*    left: -16px;*/
    z-index: 1000;
    width: 100%;
}
.catalogueCard_packages .place_price_details {
    content: "";
    width: calc(100%);
    border-top: 1px solid #ebedef;
}
.placeinfo{
  display: flex;
    justify-content: center;
    margin-top: -1rem;
}
.place_price_details p span{
  font-weight: 500;
    color: var(--text--light--color);
}
.placeinfo p:nth-child(1){
  background: #edf4fa;
}
.place_price_details p {
/*    position: absolute;*/
    width: auto;
    /*top: -16px;
    left: calc(50% - 60px);*/
    padding: 8px 8px;
    background-color: #fff;
    border: 1px solid #ebedef;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    color: #0a7ad7;
    margin:0px 3px;
    
}
#all_packages,
#back_page{
  cursor: pointer;
}
.card-bookingDeatils{
  border-top: 1px dashed #e3e7e9;
  padding: 1rem;
}
.booking_price p{
  font-size: 11px;
  color: #a7a4a4;
  margin-bottom: 0rem;
}

.priceCard{
  padding: 1rem;
  border: 1px dashed #ccc;
  border-top: none;
  border-radius: 5px;
  text-align: center;
}
.priceCard.activeprice{
  background: #05c583;
}
#back_to_bikeDeatil{
  margin-top: -10px;
}
.priceCard.activeprice p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}
.priceCard.activeprice h5 {
    font-size: 21px;
    font-weight: 500;
    color: #2c3135;
    margin-bottom: 4px;
}
.priceCard h5 small{
  font-size: 10px;
}

.priceCard p {
    font-size: 13px;
    font-weight: 400;
    color: #05c583;
    margin-bottom: 3px;
}
.priceCard h5 {
    font-size: 21px;
    font-weight: 500;
    color: #2c3135;
    margin-bottom: 4px;
}
.priceCard h5 small{
  font-size: 10px;
}

/*-- booking details_page --*/


.bike_cardView{
    border: 2px solid #ededed5c;
    padding: 1rem;
}
.bike_cardView .bookingBike_image{
    margin:0 auto 1rem;
    display: block;
    width: 70%;
}
.other_details i{
    background: #e4fff6;
    color: #30c390;
    padding: 0.5rem;
    font-size: var(--text--size--xm);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 35px;
    text-align: center;
}
.details_text{
    margin-left: 1rem;
}
.details_text p{
    margin-bottom: 0px;
    color: #8f8d8d;
    font-size:var(--text--size--small);
}
.details_text h3{
    margin-bottom: 0px;
    font-size: var(--text--size--md);
}
.terms_condition ul li {
    display: flex;
    margin: 15px 0px;
    font-size: 0.9rem;
    align-items: baseline;
}
.terms_condition ul li i{
    font-size: 6px;
    color: var(--text--light--color);
    margin-right: 10px;
}
.cancel_policy table{
    border: 1px solid #c7dfdd;
    border-collapse: collapse;
    border-radius: 8px;
}
.cancel_policy table thead tr {
    border-bottom: 1px solid #c7dfdd !important;
    background: #3ddda6;
    color: #fff;
    font-size: var(--text--size--normal);
}
.cancel_policy table tbody tr {
    font-size: var(--text--size--small);
}
.cancel_policy table tbody tr td{
    padding: 0.3rem 0.5rem !important;
}
{
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 40px 40px 40px 40px;
    background-color: #FFFFFF;
}

.bike_bookingInfo{
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px 15px 15px 15px;
}
.form-select.selectPackage{
  border: none;
    border-bottom: #dff5f2 solid 1px;
    border-radius: 0px;
    padding: 1rem 0.5rem;
}
.radio_field{
    display: inline-flex;
}
.radio_field input{
  font-size: 16px;
    font-weight: normal;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F1F1F1;
    border-radius: 5px 5px 5px 5px;
    padding: 15px 30px 15px 30px;
    margin-right: 15px;
}
.radio_field label{
    font-size: var(--text--size--small);
    color: #444;
}
.rent_amount p{
   font-size: var(--text--size--small);
   color: var(--text--light--color);
}
.border_bottom1 {
    border-bottom: 1px dashed #dde5e5;
    /* padding-bottom: 1rem; */
    margin-bottom: 1rem;
}
.heighlightPoint {
    display: block;
    background-color: #e4f1f0;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: var(--text--size--small);
    width: 100%;
}
.find_moreBttn.book_now a{
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 13px 45px;
}
.things1 img {
    width: 60px;
    display: block;
    margin: auto;
}
.things1 p {
    margin: 5px 0 5px;
    color: var(--text--light--color);
    font-size: var(--text--size--normal);
    text-align: center;
}
.things1 h6 {
    margin: 12px 0;
    color: var(--text_color);
    font-size: var(--text--size--md);
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
.things1 {
    padding: 1rem;
    width: 20%;
}
.things1:nth-child(odd) {
    background: #fbfbfb;
}
.things1:nth-child(even) {
    background: #e4f1f0;
}
.features i {
    background: #f4f9f8;
    color: #30c390;
    padding: 0.5rem;
    font-size: var(--text--size--xm);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 35px;
    text-align: center;
}
.features_info {
    margin-left: 2rem;
}
.features_info p {
    margin-bottom: 0px;
    color: #8f8d8d;
    font-size: var(--text--size--small);
}
.features_info h3 {
    margin-bottom: 10px;
    font-size: var(--text--size--md);
}
.cardfeature{
  padding: 1rem;
  border: 2px solid #ededed5c;
}
.bike_Detailpage{
  margin-top: 5rem;
}
.booking_tremsCondition .modal-content{
  border-radius: 10px;
    /* background-color: rgb(255 255 255 / 86%); */
    background: url(../image/loginform_bg.png) #ffffff;
    filter: blur(0px);
    -webkit-box-shadow: 0px 3px 73px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 73px 0px rgba(0, 0, 0, 0.08);
    padding: 0rem 2rem 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.booking_tremsCondition .modal-content .modal-header{
  color: #12c98b;
}
.modal-footer{
  justify-content: flex-start;
  font-weight: 500;
  padding-left: 0px;
}
.booking_tremsCondition .modal-body ul li{
    padding: 7px 0px;
} 
.login_button a{
  color: #fff;
}
.login_button a:hover{
  color: #fff;
}
.persoanl_bike_bookingInfo{
  border: 2px solid #ededed5c;
    padding: 1rem 2rem;
}
.persoanl_bike_bookingInfo .bike_pricing img{
  width: 130px;
}
.persoanl_bike_bookingInfo .radio_field{
  display: block;
}
.personal_info {
    /*position: absolute;
    top: 0;
    right: 0;*/
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 0px;
    background-color: #fff;
    padding: 30px;
    height: 100vh;
    overflow-y: scroll;
}
.personal_info .user_icon img{
  width: 100px;
  margin-bottom:1rem ;
}
.personal_info ul li{
  display: block;
}
.personal_info ul li label {
    display: block;
    font-weight: bold;
    padding: 7px 0px;
}
.personal_info ul li span{
  color: #05c684;
}
.personal_info ul li img {
    width: 120px;
    background: #f0f4f4;
    padding: 8px;
}
.personal_info h4{
  margin: 1rem 0rem;
  color: #4b97d2;
}

/*-- bike booking filter --*/
.bike_filterCard{
  background: #ffffffc2;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.bx-menu{
  display: none;
}
.form-check-input:checked {
    background-color: #0bb57b !important;
    border-color: #0bb57b !important;
}
.bikeInfo_filter label{
    font-size: var(--text--size--xs);
    color: var(--bs-gray);
    margin-left: 5px;
}
.bikeInfo_filter .form-check{
  margin-bottom: 10px;
}
.bikeInfo_filter h6{
  color: var(--text--green--color);
  margin: 30px 0px 15px;
}
.bikeInfo_filter .form-check .bike_count{
  color: #0a7ad4;
    font-weight: 700;
    font-size: var(--text--size--small);
}
.bikeInfo_filter .form-check .bike_count i{
  color: var(--bs-gray);
}

/*-- pick up filter --*/
.bikerent_datefilter {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 20px 40px 20px 40px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}
.bikerent_datefilter .find_moreBttn a {
    padding: 12px 45px;
    margin-top: 0rem;
    border-radius: 10px;
}

/*-- profile and History --*/
.profile_bookingHistory{
  margin-top: 2rem;
}
.profile_historycontent {
    background: #ffffffc2;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.profile_historycontent .nav-pills{
  width: 30%;
/*  border-right: 2px solid #e2e4e6 !important;*/
  height: 100%;
}
.allprofile_content{
  border-left: 2px solid #e2e4e6 !important;
}
.profile_historycontent .nav-item{
  cursor: pointer;
/*  height: 60px;*/
  line-height:36px;
  font-size: var(--text--size--normal);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 10px;
  transition: all 0.5s ease;
  z-index: 10;
  width: 100%;
  margin-bottom: 1rem;
}
.profile_historycontent .nav-pills .nav-link.active{
  background-color: var(--green);
}
.profile_historycontent  .nav-pills .nav-link.active {
    width: 100%;
    text-align: left;
    color: #fff;
}
.profile_historycontent  .nav-pills .nav-link {
    color: var(--text_color);
    font-size: var(--text--size--xm);
    font-weight: 600;
}
.home_navtab{
  width: 100%;
}
.profile_historycontent .nav-pills .nav-link a{
    color: var(--text_color);
}
.profile_historycontent .nav-pills .nav-link.active a{
    color: #fff;
}
.profile_deatilsInfo {
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #ededed5c;
    margin-bottom: 1rem;
}

#pills-home .profile_deatilsInfo {
    overflow-y: scroll;
    height: 90%;
}
.profile_deatilsInfo .user_icon img {
    width: 75px;
    margin-bottom: 0rem;
    margin-right: 1rem;
}
.persoanlInfo_edit .js-toggleForm {
    float: right;
    padding: 5px 20px;
    border-radius: 30px;
    border: 2px solid #ededed5c;
    /* margin-bottom: 1rem; */
    color: #03A9F4;
    cursor: pointer;
}
.form--disabled .formdata .label_info {
    border: none !important;
    border-bottom: 1px solid #86e9c7 !important;
    background: #ffffff00;
    width: 100%;
}
input[type="email"] {
    overflow-x: auto;
    white-space: nowrap;
}
input[type="text"] {
    overflow-x: auto;
    white-space: nowrap;
}
.formdata .label_info {
    font-family: 'DM Serif Display';
    color: var(--text_color);
}
.formdata label {
    color: var(--text--light--color);
    font-size: var(--text--size--small);
}
.form--enabled .formdata .label_info{
  border-bottom: 1px solid #86e9c7 !important;
    padding: 0.5rem 0rem;
    border: none;
    width: 100%;
}
.formdata{
  margin: 1rem 0rem;
}
.find_moreBttn .editinfo {
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    overflow: hidden;
    padding: 10px 45px;
    position: relative;
    border-radius: 50px;
    display: inline-block;
    background-color: #363539;
    margin-top: 2rem;
}
.form--disabled .find_moreBttn{
  display: none;
}
.form--enabled .find_moreBttn{
  display: block;
}
.form--disabled .formdata .image_file{
  display: none;
}

.form--enabled .formdata .image_file{
  display: block;
  font-size: 12px;
}

.form--enabled .formdata img{
  display: none;
}
.form--disabled .formdata img{
  display: block;
  height: 85px;
  margin-top: 1rem;
  background: #f0f4f4;
    padding: 8px;
}

.booking_history .nav .nav-item button.active {
  background-color: transparent;
  color: var(--green) !important;
}
.booking_history .nav{
  width: 100%;
  border-right: none !important;
}
.booking_history .nav .nav-item{
  display: inline-block;
  width: auto;
}
.booking_history .nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--green);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}

/*-- booking history --*/
.bike_pricing img {
    width: 110px;
    background: #ffffff;
    padding: 4px;
    border-radius: 10px;
    margin-right: 1.5rem;
}
.bookingid p{
  font-size: var(--text--size--xs);
  color: var(--text--light--color);
  margin-bottom: 5px;
}
.bookingid p span{
  font-size: var(--text--size--small);
  font-weight: 600;
}
.bookingid p span:nth-child(2) {
    padding: 0px 10px;
}
.pickup span{
  border: none;
}
.booking_bikeallInfo {
    background: #deefed40;
    border-radius: 10px;
    padding: 1rem 1rem 0rem;
    position: relative;
    margin-bottom: 1rem;
}
/*.bookaddress_date ul.address{
  width: 50%;
}*/
.bookaddress_date ul li {
    display: inline-block;
    /*width: 99%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
    font-size: var(--text--size--xs);
    color: var(--text--light--color);
    position: relative;
    padding: 7px 0px;
}
/*.bookaddress_date ul li:before {
    position: absolute;
    content: "";
    width: 95%;
    border-top: 1px dashed #ccc;
    margin: -5px;
    right: 5px;
}*/
.bookaddress_date ul li.booking_arrivalPoint{
  padding-left: 4.1rem;
}
.bookaddress_date ul li:before {
    position: absolute;
    content: "";
    width: 56px;
    border-top: 1px dashed #ccc;
    /* padding: 10px 0px; */
    /* display: inline-block; */
    margin: 11px;
    left: -8px;
}
.bookaddress_date ul li:nth-child(1):before{
  border: none;
}
.bookaddress_date ul li i{
  color: var(--green);
  margin-right: 10px;
}
.bookaddress_date{
  margin-top: 10px;
  background: #fff;
    border-radius: 5px;
    padding: 0px 5px;
}
/*.view_allbikeinfo a{
    position: absolute;
    right: 20px;
    font-size: var(--text--size--small);
    color: var(--green);
    border-bottom: 1px solid #0bb57b54;
    cursor: pointer;
}*/
.allbooking_bttns {
    border-top: 1px solid #e7f0ee;
    margin-top: 0.5rem;
    padding: 0.5rem 0rem 1rem;
}
.allbooking_bttns button {
    padding: 2px 10px !important;
    font-size: 0.9rem;
    background: #fff !important;
    border: 1px solid #00bcd478 !important;
    box-shadow: 0px 3px 23px 0px rgb(0 0 0 / 4%);
    color: #000;
    text-transform: capitalize;
    border-radius: 5px;
}
.allbooking_bttns button:first-child {
    background: #3f51b5 !important;
    color: #fff;
}
.allbooking_bttns button:hover{
  color: #000 !important;
}
.view_allbikeinfo a{
    position: absolute;
    right: 20px;
    font-size: var(--text--size--small);
    color: var(--green);
    border-bottom: 1px solid #0bb57b54;
    cursor: pointer;
}

/*-- OTP Details --*/

.opt_field {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.opt_field input.field {
    width: 50px;
    line-height: 50px;
    font-size: var(--text--size--md);
    border: none;
    background-color: #ffffff;
    border-radius: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #093030;
    margin-bottom: 25px;
    border-bottom: 1px solid #06cd89;
}

.opt_field input.field:focus {
  outline: none;
}
.resend_otpText{
     margin: auto;
    display: block;
    text-align: center;
}
button.resend {
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: #3197c3;
    cursor: pointer;
    margin-left: 10px;
    border-bottom: 1px solid #2196F3;
}

button.resend i {
  margin-left: 5px;
}

button.resend:disabled {
    color: #999;
    cursor: not-allowed;
    border-bottom: none;
    opacity: 0.6;
}
.login_button .login_button {
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    overflow: hidden;
    padding: 7px 20px;
    position: relative;
    border-radius: 10px;
    display: block;
    background-color: #363539;
    margin-top: 0rem;
    width: auto;
    margin: 1rem auto 1rem;
}
.modal {
    z-index: 1055 !important;
}
.timepicker {
    z-index: 1070;
}
.login_button .login_button:hover {
    background-color: #31c391;
    color: #ffffff;
}

.bookingdate_idStatues{
    background: #eff1f0;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.bookingdate_idStatues h6{
    font-size: 0.9rem;
    margin-bottom: 0;
}
.status_moreBttn button.btn {
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    overflow: hidden;
    padding: 6px 15px;
    position: relative;
    border-radius: 5px;
    /* display: inline-block; */
    background-color: #ee9b21;
    margin-top: 0rem;
}
.bookaddress_date .historydate li:before{
    display: none;
}
.bookaddress_date .historydate li p{
  margin-bottom: 0rem;
}
.bookaddress_date .historydate li span{
  color: #222;
  font-size: var(--text--size--normal);
}
#pills-pending .booking_bikeallInfo{
background: #fff6db;
}

#pills-cancel .booking_bikeallInfo{
  background: #fff5f5;
}
.filter_width{
  width: 18%;
}
.bike_detailwidth{
  width: 82%;
  z-index: 2;
}

.fare_historyinfo .rent_amount p{
  margin-bottom: 0;
}
.fare_historyinfo .rent_amount p small{
  display: block; 
}
/*-- customer rating --*/

.reviews-container {
  /*background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.3);
  padding: 20px;*/
}

.review {
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--text--light--color);
  display: flex;
  font-size: 12px;
  align-items: center;
  padding:8px 10px;
}

.review:hover {
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.7);
}
.icon-container i{
  color: #f7be16;
}
.progress {
  background-color: rgba(100, 100, 100, 0.2);
  border-radius: 5px;
  position: relative;
  margin: 0 10px;
  height: 10px;
  width: 200px;
}

.progress-done {
  background: linear-gradient(to left, rgb(5 196 131), rgb(59 215 161));
  box-shadow: 0 3px 3px -5px rgb(5 196 131), 0 2px 5px rgb(59 215 161);
  border-radius: 5px;
  height: 10px;
  width: 0;
  transition: width 1s ease 0.3s;
}

.percent {
  color: #333;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
  position: fixed;
  right: 0;
  bottom: 80px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
  transform: translateX(-10px);
}

.social-panel { 
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
  border: 5px solid #001F61;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Muli';
  position: relative;
  height: 169px;  
  width: 370px;
  max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
  border: 0;
  color: #97A5CE;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.social-panel button.close-btn:focus {
  outline: none;
}

.social-panel p {
  background-color: #001F61;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 2px 17px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  width: 235px;
}

.social-panel p i {
  margin: 0 5px;
}

.social-panel p a {
  color: #FF7500;
  text-decoration: none;
}

.social-panel h4 {
  margin: 20px 0;
  color: #97A5CE; 
  font-family: 'Muli';  
  font-size: 14px;  
  line-height: 18px;
  text-transform: uppercase;
}

.social-panel ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-panel ul li {
  margin: 0 10px;
}

.social-panel ul li a {
  border: 1px solid #DCE1F2;
  border-radius: 50%;
  color: #001F61;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  text-decoration: none;
}

.social-panel ul li a:hover {
  border-color: #FF6A00;
  box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
  border-radius: 26.5px;
  background-color: #001F61;
  border: 1px solid #001F61;
  box-shadow: 0 16px 22px -17px #03153B;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-btn:hover {
  background-color: #ffffff;
  color: #001F61;
}

.floating-btn:focus {
  outline: none;
}

.floating-text {
  background-color: #001F61;
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 7px 15px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 998;
}

.floating-text a {
  color: #FF7500;
  text-decoration: none;
}

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

  .social-panel-container.visible {
    transform: translateX(0px);
  }
  
  .floating-btn {
    right: 10px;
  }
}

.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
}
.testimonial-box{
    width:100%;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 3rem 0rem;
    cursor: pointer;
}
.profile-img {
    width: 50px;
    /* height: 50px; */
    /* border-radius: 50%; */
    /* overflow: hidden; */
    margin-right: 10px;
}
/*.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}*/
.profile-img .good_rating {
    background-color: #388e3c;
    border-radius: 6px;
    color: #fff;
    /* padding: 3px 0 2px; */
    /* min-width: 36px; */
    text-align: center;
    font-size: 14px;
    margin-right: 16px;
    /* width: 61px; */
    /* display: inline-block; */
    padding: 7px 10px;
}
.profile{
    display: flex;
    align-items: center;
}
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.name-user span{
    color: #979797;
    font-size: 0.8rem;
}
.reviews{
    color: #f9d71c;
}
.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.client-comment p{
    font-size: 0.9rem;
    color: #4b4b4b;
}
.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
 
@media(max-width:1060px){
    .testimonial-box{
        width:100%;
        padding: 10px;
    }
}
@media(max-width:790px){
    .testimonial-box{
        width:100%;
    }
    .testimonial-heading h1{
        font-size: 1.4rem;
    }
    .filter_width{
      width: 0%;
      display: none;
    }
    .filter_width.close {
      width: 100%;
      display: block;
    }
    .bx-menu{
      display: block;
      position: absolute;
      right: 0;
      width: 50px;
      background: #fff;
      border-radius: 4px;
      box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
      padding: 5px;
      text-align: center;
    }
}
@media(max-width:340px){
    .box-top{
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .reviews{
        margin-top: 10px;
    }
}
::selection{
    color: #ffffff;
    background-color: #252525;
}

/*-- cicrle review -- */
.customer_rating .review_circle {
    width: 40%;
    display: inline;
    text-align: center;
}
.customer_rating .review_circle .progress_circle{
   width: 140px;
   height: 140px;
}
.customer_rating .progress_circle .progress-bar{
   border-width: 8px;
}
.customer_rating .progress_circle .progress-value{
  line-height: 110px;
}
.review_circle{
   width: 20%;
}
.progress_circle {
   width: 100px;
   height: 100px;
   line-height: 85px;
   background: none;
   margin: 0 auto;
   box-shadow: none;
   position: relative;
}
 .progress_circle:after {
   content: "";
   width: 100%;
   height: 100%;
   border-radius: 50%;
   border: 5px solid #eee;
   position: absolute;
   top: 0;
   left: 0;
}
 .progress_circle > span {
   width: 50%;
   height: 100%;
   overflow: hidden;
   position: absolute;
   top: 0;
   z-index: 1;
}
 .progress_circle .progress-left {
   left: 0;
}
 .progress_circle .progress-bar {
   width: 100%;
   height: 100%;
   background: none;
   border-width: 5px;
   border-style: solid;
   position: absolute;
   top: 0;
   border-color: #43d0a0;
}
 .progress_circle .progress-left .progress-bar {
   left: 100%;
   border-top-right-radius: 75px;
   border-bottom-right-radius: 75px;
   border-left: 0;
   -webkit-transform-origin: center left;
   transform-origin: center left;
}
 .progress_circle .progress-right {
   right: 0;
}
 .progress_circle .progress-right .progress-bar {
   left: -100%;
   border-top-left-radius: 75px;
   border-bottom-left-radius: 75px;
   border-right: 0;
   -webkit-transform-origin: center right;
   transform-origin: center right;
}
.progress_circle .progress-value {
    display: flex;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    line-height: 77px;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    font-weight: 600;
}
 .progress_circle .progress-value div {
   margin-top: 10px;
}
 .review_circle span {
   font-size: 13px;
   font-weight: 500;
   text-align: center;
   display: block;
}
/* This for loop creates the necessary css animation names Due to the split circle of progress-left and progress right, we must use the animations on each side. */
 .progress_circle[data-percentage="10"] .progress-right .progress-bar {
   animation: loading-1 1.5s linear forwards;
}
 .progress_circle[data-percentage="10"] .progress-left .progress-bar {
   animation: 0;
}
 .progress_circle[data-percentage="20"] .progress-right .progress-bar {
   animation: loading-2 1.5s linear forwards;
}
 .progress_circle[data-percentage="20"] .progress-left .progress-bar {
   animation: 0;
}
 .progress_circle[data-percentage="30"] .progress-right .progress-bar {
   animation: loading-3 1.5s linear forwards;
}
 .progress_circle[data-percentage="30"] .progress-left .progress-bar {
   animation: 0;
}
 .progress_circle[data-percentage="40"] .progress-right .progress-bar {
   animation: loading-4 1.5s linear forwards;
}
 .progress_circle[data-percentage="40"] .progress-left .progress-bar {
   animation: 0;
}
 .progress_circle[data-percentage="50"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="50"] .progress-left .progress-bar {
   animation: 0;
}
 .progress_circle[data-percentage="60"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="60"] .progress-left .progress-bar {
   animation: loading-1 1.5s linear forwards 1.5s;
}
 .progress_circle[data-percentage="70"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="70"] .progress-left .progress-bar {
   animation: loading-2 1.5s linear forwards 1.5s;
}
 .progress_circle[data-percentage="80"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="80"] .progress-left .progress-bar {
   animation: loading-3 1.5s linear forwards 1.5s;
}
 .progress_circle[data-percentage="90"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="90"] .progress-left .progress-bar {
   animation: loading-4 1.5s linear forwards 1.5s;
}
 .progress_circle[data-percentage="100"] .progress-right .progress-bar {
   animation: loading-5 1.5s linear forwards;
}
 .progress_circle[data-percentage="100"] .progress-left .progress-bar {
   animation: loading-5 1.5s linear forwards 1.5s;
}
 @keyframes loading-1 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(36);
     transform: rotate(36deg);
  }
}
 @keyframes loading-2 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(72);
     transform: rotate(72deg);
  }
}
 @keyframes loading-3 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(108);
     transform: rotate(108deg);
  }
}
 @keyframes loading-4 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(144);
     transform: rotate(144deg);
  }
}
 @keyframes loading-5 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(180);
     transform: rotate(180deg);
  }
}
 .progress_circle {
   margin-bottom: 1em;
}

.indivual_allrating {
    border-left: 2px solid #f3f3f3;
}

.farebooking_Details{
  background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
}

.added_count form {
  width: auto;
  /*margin: 0 auto;
  text-align: center;*/
  padding-top: 10px;
}

.added_count .value-button {
    display: inline-block;
    border: 1px solid #ddd;
    margin: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    /* vertical-align: middle; */
    padding: 2px 0;
    background: #eee;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.added_count .value-button:hover {
  cursor: pointer;
}

.added_count form #decrease {
  margin-right: -4px;
  border-radius: 4px 0 0 4px;
}

.added_count form #increase {
  margin-left: -4px;
  border-radius: 0 4px 4px 0;
}

.added_count form #input-wrap {
  margin: 0px;
  padding: 0px;
}

.added_count input#number {
    text-align: center;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 0px;
    width: 30px;
    height: 30px;
    vertical-align: top;
}

.added_count input[type=number]::-webkit-inner-spin-button,
.added_count input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.final_booking p{
  margin-bottom: 5px;
  font-size:var(--text--size--xs) ;
}
.final_booking .form-select.selectPackage{
  padding: 0.4rem 0.5rem;
}
.booking_process p {
    display: block;
    font-size: var(--text--size--xs);
    color: var(--text--light--color);
    position: relative;
    padding: 7px 0px 0px;
}
.addons_field .addons_title .addons_details p{
  padding-bottom: 7px;
}
.booking_process p i {
    color: var(--green);
    margin-right: 10px;
}
.addons_title p{
  margin-bottom: 0;
  margin-right: 0.5rem;
}

.pickTime li span.dateNo{
  font-size: var(--text--size--larger);
  color: var(--text_color);
  font-weight: 600; 
}
.pickTime li span.month_year{
  display: grid;
  /* height: 20px; */
  line-height: 0px;
  margin: 20px 10px 0px;
}
.bookdate_timepickUp ul li {
    display: block;
    /*width: 99%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
    font-size: var(--text--size--xs);
    color: var(--text--light--color);
    position: relative;
    padding: 7px 0px;
}
.pickTime{
  position: relative;
  z-index: 2;
}
/*.pickTime:after {
    position: absolute;
    content: '';
    width: 100%;
    background: #ccc;
    height: 1px;
    top: 50%;
    z-index: 0;
}*/
.bookdate_timepickUp ul li:nth-child(2){
  line-height: 4;
}

.profile_historycontent .nav-pills .nav-link span i{
  display: none;
}

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

.city_wiseBikeDetails .row.align-items-center .col-md-4{
  width: 38% !important;
  padding-left: 0rem;
}
.city_wiseBikeDetails .row.align-items-center .col-md-8.services_weprovide {
    width: 60% !important;
    padding-left: 4rem;
}
.contact_bg {
    padding: 45px 20px;
}

.profile_historycontent .nav-pills .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
}
.bookaddress_date ul li {
    width: 99%;
    font-size: 0.75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.addons_field .addons_title p{
  padding-bottom: 0px;
  font-size: 0.7rem;
        white-space: nowrap;
}
.addons_field .addons_title .addons_details form{
  width: 80px;
}
.added_count .value-button {
    width: 20px;
  }
.addons_field .addons_title .addons_details p{
    padding-bottom: 7px;
  }
  .persoanl_bike_bookingInfo {
    padding: 1rem 1rem;
}
.section_footer {
    margin-top: 9rem;
}
 .features_info {
    margin-left: 0rem;
    margin-top: 10px;
}
.features{
  display: block !important;
  text-align: center;
}
.features_info p {
    font-size: 0.8rem;
}
.progress {
    width: 130px;
}
.progress_circle .progress-value {
    font-size: 20px;
    line-height: 55px;
}
.progress_circle {
    width: 70px;
    height: 70px;
}
.filter_width {
    width: 22%;
}
.bike_detailwidth {
    width: 78%;
}
.bike_detailwidth .row .col-md-3 {
        width: 33.33%;
    }    
}  

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

.rent_vahicleDetails:nth-child(1) .vahicle_info {
    padding: 45px 0px 45px 0;
    text-align: center;
}
.rent_vahicleDetails:nth-child(2) .vahicle_info {
    padding: 45px 0px 45px 0px;
    text-align: center;
}
.rent_vahicleDetails:nth-child(3) .vahicle_info{
    padding: 45px 0px 45px 0px;
    text-align: center;
}
.city_wiseBikeDetails .row.align-items-center .col-md-4{
  width: 45% !important;
  padding-left: 0rem;
}
.city_wiseBikeDetails .row.align-items-center .col-md-8.services_weprovide{
  width: 55% !important;
  padding-left: 2rem;
}
.contact_bg {
    padding: 45px 20px;
}
.profile_historycontent .nav-pills {
    width: auto;
}
.profile_historycontent .nav-pills .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
}
.bookaddress_date ul li {
    width: 99%;
    font-size: 0.75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.addons_field .addons_title p{
  padding-bottom: 0px;
  font-size: 0.7rem;
  white-space: nowrap;
}
.addons_field .addons_title p.note_info{
  white-space: normal;
}
.addons_field .addons_title .addons_details form{
  width: 80px;
}
.added_count .value-button {
    width: 20px;
  }
.addons_field .addons_title .addons_details p{
    padding-bottom: 7px;
  }
  .persoanl_bike_bookingInfo {
    padding: 1rem 1rem;
}
.section_footer {
    margin-top: 9rem;
}
 .features_info {
    margin-left: 0rem;
    margin-top: 10px;
}
.features{
  display: block !important;
  text-align: center;
}
.features_info p {
    font-size: 0.8rem;
}
.progress {
    width: 130px;
}
.progress_circle .progress-value {
    font-size: 20px;
    line-height: 55px;
}
.progress_circle {
    width: 70px;
    height: 70px;
}
.filter_width {
    width: 22%;
}
.bike_detailwidth {
    width: 78%;
}
.bike_detailwidth .row .col-md-3 {
    width: 33.33%;
}    
.img-box1 .img1 img {
  width: 110px;
  height: 235px;
}
.img-box1 .img2 img {
  width: 90px;
  height: 90px;
}
.img-box1 .img3 img {
  width: 90px;
  height: 90px;
}
.overlay{
font-size: 12px;
}
.services_weprovide {
padding-left: 3rem;
}
.nav_topMenu ul li {
  padding: 10px 6px;
}
}  

@media only screen and (max-width: 992px) {
.rent_vahicleDetails:nth-child(1) .vahicle_info {
    padding: 45px 0px 45px 0;
    text-align: center;
}
.rent_vahicleDetails:nth-child(2) .vahicle_info {
    padding: 45px 0px 45px 0px;
    text-align: center;
}
.rent_vahicleDetails:nth-child(3) .vahicle_info{
    padding: 45px 0px 45px 0px;
    text-align: center;
}
.city_wiseBikeDetails .row.align-items-center .col-md-4,
.city_wiseBikeDetails .row.align-items-center .col-md-8.services_weprovide{
  width: 50% !important;
  padding-left: 0rem;
}
.img-box1 .img1 img {
    width: 110px;
    height: 235px;
}
.img-box1 .img2 img {
    width: 90px;
    height: 90px;
}
.img-box1 .img3 img {
    width: 90px;
    height: 90px;
}
.overlay{
  font-size: 12px;
}
.services_weprovide {
  padding-left: 3rem;
}
.services_weprovide h1 {
    font-size: 2rem;
}
.contact_bg {
    padding: 45px 10px;
}
.contact_title span{
  font-size: 0.9rem;
}
.contact_infoDetails i {
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
}
.contact_infoDetails h5 {
    font-size: 13px;
    letter-spacing: 0px;
    padding: 10px 5px 0px;
}
.contact_infoDetails ul li {
    padding: 5px 10px;
    font-size: 0.8rem;
}
.section_footer {
    margin-top: 8rem;
}
.nav_topMenu ul li {
    padding: 10px 0px;
}
.filter_width {
    width: 30%;
}
.bike_detailwidth {
    width: 70%;
}
.bike_detailwidth .row .col-md-3{
  width: 50%;
}
.pickTime li span.month_year {
    line-height: normal;
    margin: 10px 10px 0px;
}
.bookdate_timepickUp ul li:nth-child(2) {
    line-height: 2;
}
.addons_title.d-flex.justify-content-between.align-items-center.col-md-6{
    display: block !important;
}
.addons_details.d-flex.justify-content-between.align-items-center{
  display: block !important;
}
.added_count .value-button {
    width: 20px;
  }
  .features_info {
    margin-left: 0rem;
    margin-top: 10px;
}
.features{
  display: block !important;
  text-align: center;
}
.features_info p {
    font-size: 0.8rem;
}
.things1 h6 {
    letter-spacing: 0px;
    font-size: 0.9rem;
}
.things1 p {
    font-size: 0.8rem;
}
.review_rating.col-md-5{
  width: 100%;
}
.indivual_allrating.col-md-7{
  width: 100%;
  border-left: 2px solid #f3f3f300;
    margin-top: 2rem;
}

.profile_historycontent {
        display: block !important;
    }
.profile_historycontent .nav-pills {
        width: 100%;
        display: flex;
/*        justify-content: space-between;*/
        border-bottom: 1px solid #cccccc52;
    }
.profile_historycontent .nav-item {
    width: auto;
    display: inline-block;

}
/*.profile_historycontent .nav-pills .nav-link.active{
  width: auto;
}
.profile_historycontent .nav-pills .nav-link span.tab_text{
  display: none;
}
.profile_historycontent .nav-pills .nav-link span i{
  display: block;
}*/
/*.bookedBike_allInfo{
  display: block !important;
}*/
.view_allbikeinfo span {
    right: 10px;
    font-size: 0.8rem;
    top: 2px;
}
.bookaddress_date{
  display: block !important;
}
.bookaddress_date ul li {
        width: 99%;
        font-size: 0.75rem;
        white-space: normal;
        text-overflow: inherit;
        overflow: visible;
    }
    .bookaddress_date ul li:nth-child(1):before {
    border: none;
}
.bookNow_Bttn a {
  font-size: 12px;
  padding: 9px 12px;
}
.banner_content {
  width: 50%;
}
.mb-booking-option .advance_bookFrom.col-md-6{
  width: 100%;
}
}


@media only screen and (max-width: 767px) {
.logo{
  width: 25%;
}
.topMenu{
  width: 65%;
}
.top_DropDownNav{
  width: 10%;
}
.nav_topMenu.d-flex.justify-content-between{
  display: block !important;
}
/* .banner .d-flex.justify-content-between .col-md-5{
  width: 60%;
} */

.city_wiseBikeDetails .row.align-items-center .col-md-4,
.city_wiseBikeDetails .row.align-items-center .col-md-8.services_weprovide{
  width: 100% !important;
  padding-left: 0rem;
}
.rent_vahicleDetails{
  margin-bottom: 1rem;
}
.services_weprovide {
    padding-left: 2rem;
    background: #fff;
    margin-top: 2rem;
}
.gt-contact-form input{
  max-width: 100%;
}
.img-box1 .img1 img {
    width: 240px;
    height: 475px;
}
.img-box1 .img2 img {
    width: 240px;
    height: 235px;
}
.img-box1 .img3 img {
    width: 240px;
    height: 235px;
}
.bike_detailwidth {
    width: 55%;
}
.filter_width {
    width: 45%;
}
.bikerent_datefilter .find_moreBttn a{
  margin-top: 1rem;
}
.farebooking_Details{
  margin-top: 1rem;
}
.bookdate_timepickUp ul li {
    font-size: 0.8rem !important;
}
.remeber_points{
  display: block !important;
}
.things1 {
    width: 100%;
    float: left;
}
.pickup_locatnMap{
  display: block !important;
}
#maparea{
  width: 100% !important;
}
.indivual_allrating {
    border-left: 2px solid #f3f3f300;
    margin-top: 3rem;
}
.persoanl_bike_bookingInfo#left{
  height: 100% !important;
}
.personal_info{
  margin-top: 1rem;
}
.persoanl_bike_bookingInfo .radio_field {
    display: flex;
}
.profile_historycontent {
    display: block !important;
}
.profile_historycontent .nav-pills {
    width: 100%;
    display: inline-block;
}
.allprofile_content {
    border-left: 2px solid #e2e4e600 !important;
    margin-top: 3rem;
}
.footer {
    margin-top: 4rem;
}
.section_footer {
        margin-top: 2rem;
    }
.pickTime li span.month_year {
    line-height: normal;
    margin: 10px 10px 0px;
}
.bookdate_timepickUp ul li:nth-child(2) {
    line-height: 2;
}
.profile_historycontent .nav-pills {
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #cccccc52;
    }
.profile_historycontent .nav-item {
    width: auto;
    display: inline-block;

}
.profile_historycontent .nav-pills .nav-link.active{
  width: auto;
}
.profile_historycontent .nav-pills .nav-link span.tab_text {
        display: none;
    }
.profile_historycontent .nav-pills .nav-link span i{
  display: block;
}
.bookedBike_allInfo{
  display: block !important;
}
.view_allbikeinfo span {
    right: 10px;
    font-size: 0.8rem;
    top: 2px;
}
.bookaddress_date{
  display: block !important;
}
.bookaddress_date ul li {
    width: 99%;
    font-size: 0.75rem;
    white-space: normal;
    text-overflow: inherit;
    overflow: visible;
}
.bookaddress_date ul li:nth-child(1):before {
    border: none;
}
.banner_content {
  width: 100%;
}
.bike-name {
  width: 70%;
}
}

@media only screen and (max-width: 600px) {
  .nav_topMenu ul li {
    padding: 10px 6px;
}
.banner_content{
  width: 100%;
} 
.img-box1 .img2 img {
  width: 160px;
  height: 160px;
}
.img-box1 .img3 img{
  width: 160px;
  height: 160px;
}
.services_weprovide {
  padding-left: 1rem;
}
.services_weprovide ul {
  width: 90%;
  background: #fff;
}
.services_weprovide ul li img {
  display: block;
  margin-bottom: 10px;
}
.section_footer {
  margin-top: 3rem;
}
.services_weprovide h1 {
  font-size: 2rem;
}
.filter_width {
    width: 100%;
}
.remeber_points {
    padding: 0px 15px;
    margin: 0;
    display: inline-block !important;
    width: 100%;
}
.icon-container{
  width: 50px;
}
.review_rating{
  display: block !important;
}
.bike_detailwidth {
  width: 100%;
  padding-left: 25px;
  margin-top: 3rem;
}
.navigation-menu__toggle {
  top: -109px;
}
.gt-contact-form input{
  max-width: 100%;
}
.bikerent_datefilter .find_moreBttn a{
  margin-top: 1rem;
}
.priceCard {
    width: 50%;
}
.final_booking .form-select.selectPackage {
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
}
.pickTime li span.month_year {
    line-height: normal;
    margin: 10px 10px 0px;
}
.bookdate_timepickUp ul li:nth-child(2) {
    line-height: 2;
}
.farebooking_Details {
    margin-top: 1rem;
}
.things1 {
    width: 100%;
    float: left;
}
.pickup_locatnMap{
  display: block !important;
}
#maparea{
  width: 100% !important;
}
.progress {
    width: 80%;
}
.review_circle {
    width: 20%;
    margin-top: 1rem;
}
.persoanl_bike_bookingInfo#left{
  height: 100% !important;
}
.personal_info{
  margin-top: 1rem;
}
.persoanl_bike_bookingInfo .radio_field {
    display: flex;
}
.profile_historycontent {
    display: block !important;
}
.profile_historycontent .nav-pills {
    width: 100%;
    display: inline-block;
}
.allprofile_content {
    border-left: 2px solid #e2e4e600 !important;
    margin-top: 3rem;
}
.footer {
    margin-top: 0rem;
}
.profile_historycontent .nav-pills {
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #cccccc52;
    }
.profile_historycontent .nav-item {
    width: auto;
    display: inline-block;

}
.profile_historycontent .nav-pills .nav-link.active{
  width: auto;
}
.profile_historycontent .nav-pills .nav-link span.tab_text{
  display: none;
}
.profile_historycontent .nav-pills .nav-link span i{
  display: block;
}
.bookedBike_allInfo{
  display: block !important;
}
.view_allbikeinfo span {
    right: 10px;
    font-size: 0.8rem;
    top: 2px;
}
.bookaddress_date{
  display: block !important;
}
.bookaddress_date ul li {
        width: 99%;
        font-size: 0.75rem;
        white-space: normal;
        text-overflow: inherit;
        overflow: visible;
   }
   .bookaddress_date ul li:nth-child(1):before {
    border: none;
}
.bookaddress_date ul li:before{
  display: none;
}
.bookaddress_date ul li.booking_arrivalPoint{
  padding-left: 0rem;
}
.dektop_view{
  display: none;
}
.mobile_view{
  display: block !important;
}
.logo{
  width: 38%;
}
.topMenu{
  width: 50%;
}
.top_DropDownNav{
  width: 10%;
}

}

@media only screen and (max-width: 599px) {
  .bookNow_Bttn a {
    padding: 9px 20px;
  }
  .nav_topMenu ul li {
    padding: 10px 1px;
  } 
  .img-box1 .img1 img {
    width: 160px;
    height: 340px;
  } 
  .overlay{
    font-size: 14px;
  }
  .img-box1 .img2 img {
    width: 150px;
    height: 150px;
}
  .img-box1 .img3 img {
    width: 150px;
    height: 150px;
  }
} 
@media only screen and (max-width: 540px) {
  .bike_detailwidth .row .col-md-3{
    width: 100%;
  }
  .bike-name {
    width: 70%;
  }
  
}
@media only screen and (max-width:430px) {
  .review_circle {
    width: 100%;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 390px) {
  .bookNow_Bttn a {
    padding: 9px 20px;
  }
  .nav_topMenu ul li {
    padding: 10px 1px;
  } 
  .img-box1 .img1 img {
    width: 150px;
    height: 220px;
  } 
  .overlay{
    font-size: 14px;
  }
  .img-box1 .img2 img {
    width: 110px;
    height: 110px;
  }
  .img-box1 .img3 img {
    width: 110px;
    height: 110px;
  }
}  


/* Below css are added by Rj for some necessary changes */



.disabled {
  pointer-events: none; /* Prevents any click events */
  cursor: not-allowed;  /* Changes the cursor to indicate it's disabled */
  opacity: 0.5;        /* Optional: Reduce opacity for a disabled look */
}


/* Bike info page make disable when bike is not available script starts from here */
/* Style the bike card container */

/* Disable state for bike card (grayscale, low opacity, pointer-events disabled) */
.bike_cardView.disabled {
  filter: grayscale(100%); /* Make the image and content grayscale */
  opacity: 0.5; /* Reduce opacity for a 'disabled' look */
  pointer-events: none; /* Disable any interactions like clicks */
}

/* Box with "Bike Not Available" message centered inside the bike card */
.bike_cardView.disabled .availability-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the box in the middle */
  background-color: rgba(255, 0, 0, 0.7); /* Red color with transparency */
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: add shadow for better visual */
  z-index: 10; /* Ensure it appears above other content */
}

/* Optional: You can hide or blur other content when the card is disabled */
.bike_cardView.disabled *:not(.availability-box) {
  filter: blur(2px); /* Blur other elements for focus effect */
  pointer-events: none;
}


.bike_bookingInfo.disabled {
  opacity: 0.5;
  pointer-events: none;
}





.added_count input#number_helmet {
  text-align: center;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0px;
  width: 30px;
  height: 30px;
  vertical-align: top;
}

.added_count input[type=number_helmet]::-webkit-inner-spin-button,
.added_count input[type=number_helmet]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.adv_payment {
  display: none !important;
}



/* 26-12-2024 */
/* ================ */
.bike-info-container {
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap to the next line if necessary */
  gap: 10px; /* Adds spacing between items */
}

.bike-info-container .view_allbikeinfo {
  margin: 0; /* Remove default margins from <h6> */
  padding: 5px; /* Optional padding for better spacing */
}

.view_allbikeinfo a {
  text-decoration: none; /* Optional: Remove underline from links */
  color: #007bff; /* Optional: Set link color */
  font-weight: bold; /* Optional: Make text bold */
}



/* 
Date - 01-02-2026
ADding Spinner for Load more Vehicle 
Author - Rajesh Kumar Pattanayak */

.scroll-loader {
  position: fixed;        /* center relative to viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: none;
  text-align: center;
  z-index: 9999;
}

/* Spinner */
.spinner {
  width: 35px;
  height: 35px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

/* Text */
.scroll-loader p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}



.error {
  color: red;
  font-size: 12px;
}

.error-border {
  border: 1px solid red !important;
}
