@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.noSelect {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Car Start Button */
.mybutton {
    position: absolute;
    left: 50%;
    top: 84vh;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    
    /* Outer metallic ring */
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, transparent 50%),
        linear-gradient(145deg, #2c3e50 0%, #34495e 25%, #2c3e50 50%, #1a252f 75%, #0f1419 100%);
    
    /* Outer shadow and border */
    box-shadow: 
        0 0 0 3px #1a1a1a,
        0 0 0 6px #333,
        0 8px 25px rgba(0,0,0,0.6),
        inset 0 2px 4px rgba(255,255,255,0.1),
        inset 0 -2px 4px rgba(0,0,0,0.3);
    
    transition: all 0.3s ease;
    z-index: 11;
}

.mybutton .mybuttoninner {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    
    /* Inner metallic ring */
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.6) 0%, transparent 60%),
        linear-gradient(145deg, #95a5a6 0%, #bdc3c7 30%, #ecf0f1 50%, #bdc3c7 70%, #7f8c8d 100%);
    
    box-shadow: 
        inset 0 2px 6px rgba(255,255,255,0.8),
        inset 0 -2px 6px rgba(0,0,0,0.2);
}

.mybutton .mybuttoninner .mybuttoninner2 {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    
    /* Inner dark surface */
    background: 
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.1) 0%, transparent 70%),
        linear-gradient(145deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    
    box-shadow: 
        inset 0 4px 12px rgba(0,0,0,0.8),
        inset 0 -2px 6px rgba(255,255,255,0.1);
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.mybutton .mybuttoninner .mybuttoninner2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mybutton .mybuttoninner .mybuttoninner2 ul li {
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 6px 0;
    text-shadow: 
        0 1px 2px rgba(0,0,0,0.8),
        0 0 4px rgba(189,195,199,0.3);
}

.mybutton .mybuttoninner .mybuttoninner2 ul .mybuttoninnerline2 {
    width: 60px;
    height: 2px;
    margin: 4px auto;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 20%, #c0392b 50%, #e74c3c 80%, transparent 100%);
    border-radius: 1px;
    box-shadow: 
        0 0 4px rgba(231,76,60,0.6),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.mybutton .mybuttoninner .mybuttoninner2 ul .mybuttoninnerline {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    transition: all 0.6s ease;
}

/* Hover Effects */
.mybutton:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 0 0 3px #1a1a1a,
        0 0 0 6px #333,
        0 12px 35px rgba(0,0,0,0.8),
        inset 0 2px 4px rgba(255,255,255,0.2),
        inset 0 -2px 4px rgba(0,0,0,0.4);
}

.mybutton:hover .mybuttoninnerline {
    left: 100%;
    transition: all 0.6s ease;
}

.mybutton:hover .mybuttoninnerline2 {
    box-shadow: 
        0 0 8px rgba(231,76,60,0.9),
        0 0 16px rgba(231,76,60,0.6),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Active/Focus Effects */
.mybutton:active,
.mybutton:focus {
    outline: none;
    transform: translateX(-50%) scale(0.98);
    box-shadow: 
        0 0 0 3px #1a1a1a,
        0 0 0 6px #333,
        0 4px 15px rgba(0,0,0,0.8),
        inset 0 4px 8px rgba(0,0,0,0.6);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 0 3px #1a1a1a,
            0 0 0 6px #333,
            0 8px 25px rgba(0,0,0,0.6),
            inset 0 2px 4px rgba(255,255,255,0.1),
            inset 0 -2px 4px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 
            0 0 0 3px #1a1a1a,
            0 0 0 6px #333,
            0 8px 25px rgba(0,0,0,0.6),
            0 0 20px rgba(231,76,60,0.3),
            inset 0 2px 4px rgba(255,255,255,0.1),
            inset 0 -2px 4px rgba(0,0,0,0.3);
    }
}

.mybutton {
    animation: pulse 4s ease-in-out infinite;
}

.fullWidth {
    width: 100%;
    /* float: left; */
}

.dFlex {
    display: flex;
}

/* header start */

.red_txt {
    color: red !important;
    font-size: 15px !important;
}

.myRydHeader {
    font-family: "Sora", serif !important;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
}

.headerLeft .logoBox {
    width: auto;
}

.headerLeft .logoBox a img {
    max-width: 280px !important;
}

.headerInner {
    justify-content: space-between;
    align-items: center;
    padding-block: 30px !important;
}

.headerRight {
    align-items: center;
    gap: 60px;
}

.contInfo {
    align-items: center;
}

.psitpoMenuArea ul {
    gap: 60px;
    justify-content: flex-end !important;
    width: 100%;
}

.psitpoMenuArea ul li a {
    font-size: 15px !important;
    line-height: 25px !important;
    display: flex;
    text-transform: uppercase !important;
    font-family: "Sora", serif !important;
    padding: 0 !important;
    color: #fff !important;
    border: none !important;
    outline: none !important;
    font-weight: 400 !important;
    position: relative;
    padding-bottom: 0px !important;
    transition: all 0.5s ease;
}

.psitpoMenuArea ul li a:hover {
    color: #f15a24 !important;
}

.psitpoMenuArea ul li a:after {
    background: #fb6923 !important;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    left: 0px;
    bottom: 48%;
    opacity: 0;
    transition: all 0.5s ease;
    background-size: contain;
    z-index: 1;
}

.psitpoMenuArea ul li.current-menu-item a:after,
.psitpoMenuArea ul li:hover a:after {
    opacity: 1 !important;
}

.contactInfoTh a {
    outline: none;
    color: #fff !important;
    /*font-size: 20px !important;*/
    line-height: 28px !important;
    display: flex;
    position: relative;
    padding-left: 28px;
}

.contactInfoTh a:before {
    content: " ";
    width: 19px;
    height: 18px;
    top: 7px;
    left: 0px;
    position: absolute;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 25 25' fill='%23f15a24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='phone'%3E%3Cpath d='M23,17.11a5.92,5.92,0,0,0-4.63-3.95,1.5,1.5,0,0,0-1.51.66L15.6,15.63a.53.53,0,0,1-.61.2,13.25,13.25,0,0,1-3.6-2.14,13,13,0,0,1-2.94-3.52.5.5,0,0,1,.17-.69l1.63-1.09a1.52,1.52,0,0,0,.61-1.71A10.13,10.13,0,0,0,9.48,3.79a10.36,10.36,0,0,0-2.2-2.33A1.53,1.53,0,0,0,6,1.19a7.31,7.31,0,0,0-1.13.43A7.64,7.64,0,0,0,1.2,6.1a1.48,1.48,0,0,0,0,.93A24.63,24.63,0,0,0,7.73,17.44,24.76,24.76,0,0,0,17.12,23a1.41,1.41,0,0,0,.45.07,1.59,1.59,0,0,0,.48-.07,7.64,7.64,0,0,0,4.47-3.66A6.21,6.21,0,0,0,23,18,1.46,1.46,0,0,0,23,17.11Zm-1.33,1.74A6.61,6.61,0,0,1,17.73,22a.54.54,0,0,1-.31,0,23.61,23.61,0,0,1-9-5.29,23.74,23.74,0,0,1-6.27-10,.47.47,0,0,1,0-.31A6.59,6.59,0,0,1,5.29,2.52a5,5,0,0,1,1-.36h.1a.5.5,0,0,1,.32.11,9.4,9.4,0,0,1,2,2.09A9.07,9.07,0,0,1,9.9,7a.52.52,0,0,1-.21.6L8.06,8.64a1.54,1.54,0,0,0-.47,2,14.09,14.09,0,0,0,7,6.09,1.51,1.51,0,0,0,1.81-.58l1.21-1.81a.51.51,0,0,1,.51-.23A4.94,4.94,0,0,1,22,17.44a.58.58,0,0,1,0,.29A5.35,5.35,0,0,1,21.62,18.85Z'/%3E%3C/g%3E%3C/svg%3E");
}

.headerRight .contactInfo {
    position: relative;
    padding-left: 31px;
    gap: 55px;
    justify-content: flex-end !important;
    width: auto;
}

.contactInfo:after {
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background: #636363;
    z-index: 1;
    transform: translateY(-50%);
}

.about_us_btn.bookBtn .buttonMyrid {
    padding: 13px 50px 15px;
    border-radius: 0px;
    background: none !important;
    outline: none !important;
    position: relative;
    font-size: 22px !important;
    line-height: 22px;
    font-weight: 300 !important;
    letter-spacing: 1px;
}

.headerRight .contInfo {
    position: relative;
    gap: 55px;
    justify-content: flex-end !important;
    width: auto;
}

/* banner start */

/*silk banner start here*/
.banner.slix {
    width: 100%;
    float: left;
    padding: 0;
}

.bannerSilk {
    width: 100%;
    float: left;
    position: relative;
    height: calc(100vh - 0px);
}

.bannerSilk .bannerSlider {
    width: 100%;
    float: left;
    position: relative;
}

.bannerSilk .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.bannerSilk .bannerSlider .slick-slide {
    position: relative;
    width: 100%;
    float: left;
}

.bannerSilk .bannerSlider .slide_text {
    position: absolute;
    z-index: 0;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.bannerSilk .bannerSlider .slide_image {
    width: 100%;
    float: left;
}

.bannerSilk .bannerSlider .slide_image img {
    width: 100%;
    height: calc(100vh - 0px);
    object-fit: cover;
    object-position: center;
}

.bannerSilk h2 {
    font-style: normal !important;
    color: #fff;
    font-size: 62px;
    line-height: 72px;
    margin: 0px;
    font-weight: 400;
    text-align: left;
    letter-spacing: 8px;
    font-family: "Oswald", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

.bannerSilk .bannerdesct {
    width: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
}

.bannerSilk .bannerdesct .containerx {
    display: flex;
    justify-content: flex-end;
}

.bannerSilk .bancapti {
    width: 100%;
    float: left;
    max-width: 670px;
    display: flex;
}

.bannerSilk .imagbxn {
    width: 100%;
    float: left;
}

.bannerSilk .bannerSlider .slide_image:before {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 450px;
    background: rgba(33, 33, 33, 0.3);
}

.bannerSilk .banouterx {
    width: 100%;
    float: left;
    position: relative;
    z-index: 1;
}

.bannerSilk .banouterx:after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";

    z-index: 1;
    display: none;
}

/*navigation*/
.bannerSilk .slick-arrow {
    border: none;
    cursor: pointer;
    outline: none;
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 50px;
    z-index: 9999;
    background-repeat: no-repeat !important;
    background-size: 15px !important;
    border-radius: 100px;
    font-size: 0;
    background-position: center !important;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.2);
    /* visibility: hidden;
	opacity: 0; */
}

.bannerSilk:hover .slick-arrow {
}

.bannerSilk .slick-arrow.slick-next:hover {
}

.bannerSilk .slick-arrow.slick-prev:hover {
}

.bannerSilk .slick-arrow.slick-next {
    right: 140px;
    background: rgba(255, 255, 255, 0.2) url("../assets/images/all/arrth.png")
        no-repeat center !important;
    background-size: 20px !important;
    transition: all 0.5s ease;
}

.bannerSilk .slick-arrow.slick-next:hover {
    background: #ff730a url("../assets/images/all/arrth.png") no-repeat center !important;
    background-size: 20px !important;
}

.bannerSilk .slick-arrow.slick-prev {
    right: 205px;
    background: rgba(255, 255, 255, 0.2) url("../assets/images/all/arlth.png")
        no-repeat center !important;
    background-size: 20px !important;
    transition: all 0.5s ease;
}

.bannerSilk .slick-arrow.slick-prev:hover {
    background: #ff730a url("../assets/images/all/arlth.png") no-repeat center !important;
    background-size: 20px !important;
}

.bannerSilk .slick-arrow.slick-next[aria-disabled="false"] {
}

.bannerSilk .slick-arrow.slick-prev[aria-disabled="false"] {
}

/*pagination*/
.bannerSilk ul.slick-dots {
    outline: none;
    list-style: none;
    bottom: -33.5px;
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
    z-index: 999;
}

.bannerSilk .slick-dots li {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 3.9px;
    vertical-align: middle;
}

.bannerSilk .slick-dots li button {
    float: left;
    font-size: 0;
    width: 9px;
    height: 9px;
    background: #ccc;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.5s ease;
}
.bannerSilk .slick-dots li.slick-active {
    width: 11.9px;
    height: 11.9px;
}
.bannerSilk .slick-dots li.slick-active button {
    background: #f0433d;
    width: 11.9px;
    height: 11.9px;
}
/* banner bottom social icon */
.socialOuterBox {
    position: relative;
    margin-top: -88px;
    z-index: 9;
    float: left;
    width: calc(100% - 265px);
    padding-inline-end: 0 !important;
}
.innerSocialBox {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.leftTextBox {
    width: 100%;
    max-width: 680px;
}

.rightSocialBox {
    position: relative;
    width: 545px;
}

.rightSocialBox:after {
    width: calc(100% - 200px);
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    height: 0.3px;
}

.rightSocialBox .socialListBox {
    gap: 12px;
}

.socialListBox a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.5s ease;
}

.socialListBox a.faceBook {
    background: #3c5899;
}

.socialListBox a.twitter {
    background: #1e9ff0;
}

.socialListBox a.youtube {
    background: #ff0101;
}

.socialListBox a.instagram {
    background: #de4d90;
}

.socialListBox a img {
    width: 14px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
        brightness(102%) contrast(102%);
}

.socialListBox li:hover a {
    background: #fff !important;
}

.socialListBox li:hover a.faceBook img {
    filter: invert(34%) sepia(8%) saturate(4309%) hue-rotate(183deg)
        brightness(90%) contrast(82%);
}

.socialListBox li:hover a.twitter img {
    filter: invert(50%) sepia(95%) saturate(1353%) hue-rotate(176deg)
        brightness(93%) contrast(102%);
}

.socialListBox li:hover a.youtube img {
    filter: invert(20%) sepia(93%) saturate(5280%) hue-rotate(355deg)
        brightness(96%) contrast(119%);
}

.socialListBox li:hover a.instagram img {
    filter: invert(41%) sepia(53%) saturate(1179%) hue-rotate(290deg)
        brightness(92%) contrast(87%);
}

.leftTextBox p {
    margin-bottom: 0 !important;
    font-size: 18px !important;
    line-height: 34px !important;
    color: #fff !important;
    letter-spacing: 2px;
    font-weight: 400;
    padding-left: 27px !important;
    position: relative;
}

.leftTextBox p:after {
    width: 5px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    background: #fb6923;
}

/* form area */
.formSearchOuter {
    background: #292526;
    padding-block: 20px;
}

.searchFldArea {
    padding: 0px !important;
    background: #000 !important;
    position: relative;
    justify-content: space-between;
}

.searchFldArea .formFldBox {
}

.searchFldArea .formControl {
    background: #000 !important;
    border: none !important;
    color: #fff !important;
    font-size: 18px;
    line-height: 28px;
    appearance: revert;
    height: 60px;
    outline: none !important;
    padding-inline: 15px;
    width: 100%;
    min-width: 300px;
}

.searchFldArea .formControl:focus {
    border: none !important;
    outline: none !important;
}

.searchFldArea:after,
.searchFldArea:before {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(253, 85, 34, 0.1) 0%,
        rgba(253, 85, 34, 1) 50%,
        rgba(253, 85, 34, 0.1) 100%
    );
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
}

.searchFldArea:after {
    top: 0;
}

.searchFldArea:before {
    bottom: 0;
}

.searchFldArea .submitBox {
    display: flex;
    /* align-items: flex-end; */
    width: 65px;
    justify-content: center;
}

.searchFldArea .submitBtn {
    width: 100% !important;
    height: 60px !important;
    background: #fd5622 url("../assets/images/all/searchbw.png") no-repeat !important;
    font-size: 0px;
    background-size: 20px !important;
    background-position: center center !important;
    border: none !important;
    border-radius: 0px;
    transition: all 0.5s ease;
}

.searchFldArea .submitBtn:hover {
    background: #fff url("../assets/images/all/searchb.png") no-repeat !important;
    background-position: center !important;
    background-size: 20px !important;
}

.searchFldArea input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Inverts colors (for dark mode) */
    cursor: pointer;
}

.mobile_screen {
    display: none;
}

/* car details page start */
.main_baner.carDtl {
    height: auto;
    padding-top: 150px;
}
.main_baner.carDtl .inner-banner-img {
    height: 100% !important;
}
.formBooking {
    width: 100% !important;
}

.outerBoxCarDtl {
    background: #000;
    flex-wrap: wrap;
    padding-block-start: 70px;
    padding-block-end: 20px;
    gap: 0px;
    font-family: "Sora", serif !important;
    justify-content: space-between;
}
.carDtlLeft {
    width: calc(100% - 490px);
}

/* sticky sidebar */

.rightFixedSidebar {
    width: 460px;
    position: relative;
}
.rightFixedSidebar .sidebar.sticky {
    position: fixed;
    top: 10px;
    width: 460px;
}
.rightFixedSidebar .sidebar {
    width: 100%;
    position: absolute;
    top: 0;
}
.rightFixedSidebar .sidebar.fixed-bottom {
    position: absolute;
    bottom: 0;
    top: auto;
}

.details_pagewrp.carGalleryDtl {
    width: 450px;
}
.carInfoRows {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.rowOneCar {
    gap: 50px;
}
.borderBox {
    padding: 25px;
    border: 1px solid #5d5d5d;
    border-radius: 10px;
}
.titleCarDtlBox {
    margin-bottom: 30px;
}
.titleCarDtlBox .carTitleDtl {
    color: #fff;
    margin-top: 0px !important;
    font-size: 34px;
    line-height: 44px;
    padding: 0px;
}
.titleCarDtlBox .carFeatures {
    background: none !important;
    margin-top: 7px;
    display: flex;
    font-weight: 300;
    color: #b7b7b7;
    font-size: 16px;
    font-family: "Sora", serif !important;
}
.titleCarDtlBox .carFeatures li {
    padding-left: 40px;
    position: relative;
}
.titleCarDtlBox .carFeatures li:after {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background: #818181;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
.titleCarDtlBox .carFeatures li:nth-child(1) {
    padding-left: 0;
}
.titleCarDtlBox .carFeatures li:nth-child(1):after {
    display: none;
}
.feaPoint h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-family: "Sora", serif !important;
}
.carFeatures {
}
.titleCarDtlBox .carTitleDtl h2 {
    color: fff;
}
.drivDtl h3 {
    margin-bottom: 15px;
}
.feaPoint p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #b7b7b7;
    font-family: "Sora", serif !important;
}
.yellowBox {
    padding: 20px;
    border-radius: 10px;
    background: #2a2a2a;
    margin-top: 15px;
    max-width: 94%;
}
.feaPoint .yellowBox p {
    color: #fff;
}
.feaPoint .listYl {
    color: #b5b5b5;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 300;
}
.feaPoint .listYl li {
    padding-left: 20px;
    position: relative;
}
.feaPoint .listYl li:after {
    width: 6px;
    height: 6px;
    position: absolute;
    content: "";
    left: 0;
    top: 10px;
    background: #b5b5b5;
    /* transform: translateY(-50%); */
    border-radius: 100px;
}
.rowThreeCarDtl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.colOne h4 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}
.rowThreeCarDtl.feaPoint .listYl {
    color: #a7a7a7;
}
.rowThreeCarDtl.feaPoint .listYl li:after {
    background: #a7a7a7;
}

.availForm {
    margin-top: 20px;
}
.rowTColTwo {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #5d5d5d;
}
.buttonPay .payNowButton {
    width: 100%;
    text-align: center;
}
.checkBoxList {
    margin-bottom: 15px;
}
.checkBoxList .checkBoxesList {
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 15px;
}
.checkBoxList .checkBoxesList li {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.checkBoxList .leftLabel {
    gap: 15px;
    display: flex;
}
.checkBoxList .leftLabel label {
    display: flex;
    gap: 10px;
}
.checkBoxList .leftLabel label.nogap {
    display: flex;
    gap: 0px;
}

.feaPoint .amountRt p {
    color: #fff;
}
.rightFixedSidebar button.btn-primary:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.formOuterBook {
    margin-top: 35px;
}
.formOuterBook .lblForm {
    color: #fff;
    margin-bottom: 7px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.details_pagewrp .slick-arrow {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    top: 50%;
    transform: translateY(-50%);
}
.bottomSeparate {
    border-bottom: 1px solid #5d5d5d;

    margin-bottom: 15px;
}
.feaPoint h3.center {
    text-align: center;
}

/* form */
.formStructer .formListFld {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}
.formStructer .form-control {
    background: none !important;
    border: 1px solid #5d5d5d !important;
    padding-block: 0px;
    height: 55px;
    color: #c3c3c3;
}
.formStructer input[type="date"]::-webkit-calendar-picker-indicator,
.formStructer input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.formStructer input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Inverts colors (for dark mode) */
    cursor: pointer;
}
.formStructer .form-control:focus {
    border: 1px solid #a5a5a5 !important;
}
.insuranceDtl {
    margin-top: 15px;
}
.insuranceDtl .titleDriver {
    text-align: left;
    margin-bottom: 15px;
}
.insuranceDtl .formListFld {
    row-gap: 10px;
}
.genterBox {
    gap: 25px;
}
.genterBox .male {
    display: flex;
    gap: 10px;
}
.genterBox .male label {
    margin-bottom: 0 !important;
    color: #858585;
}

/* car details page responsive start */
@media only screen and (max-width: 1780px) {
    .details_pagewrp.carGalleryDtl {
        width: 350px;
    }
    .details_pagewrp .slick-arrow {
        font-size: 25px;
    }

    .rowOneCar {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 1550px) {
    .details_pagewrp.carGalleryDtl {
        width: 100%;
    }
    .thumbnail-slider {
        margin-top: 15px;
    }
    .thumbnail-slider img {
        width: 60px;
    }
    .titleCarDtlBox .carFeatures li {
        padding-left: 30px;
    }
    .car_feturesinglepage {
        column-gap: 20px;
    }
    .titleCarDtlBox .carTitleDtl {
        font-size: 30px;
        line-height: 40px;
    }
    .titleCarDtlBox .carFeatures,
    .car_feturesinglepage li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1440px) {
    .rowThreeCarDtl {
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .car_feturesinglepage {
        grid-template-columns: repeat(2, 1fr);
    }
    .titleCarDtlBox .carFeatures {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .titleCarDtlBox .carFeatures li:nth-child(1),
    .titleCarDtlBox .carFeatures li {
        padding-left: 20px;
    }
    .titleCarDtlBox .carFeatures li:nth-child(1):after {
        display: block;
    }
    .titleCarDtlBox .carFeatures li:after {
        top: 10px;
        left: 0;
    }
    .rowOneCar {
        gap: 20px;
    }
}

@media only screen and (max-width: 1280px) {
    .rowOneCar {
        gap: 20px;
    }
    .titleCarDtlBox .carFeatures {
        display: flex;
    }
    .car_feturesinglepage {
        grid-template-columns: repeat(2, 1fr);
    }
    .details_pagewrp.carGalleryDtl {
        width: 100%;
    }
    .thumbnail-slider img {
        width: 100px;
    }
    .formStructer .formListFld {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 1024px) {
    .checkBoxesList {
        font-size: 14px;
    }
    .feaPoint p {
        font-size: 14px;
        line-height: 24px;
    }
    .booking-container label.fw-bold {
        font-size: 14px;
        font-weight: 300 !important;
    }
    .booking-container label.fw-bold {
        display: flex;
        font-size: 14px;
        gap: 7px !important;
        font-weight: 300 !important;
        align-items: center;
    }
    .titleCarDtlBox .carFeatures,
    .car_feturesinglepage li {
        font-size: 14px;
    }
    .titleCarDtlBox .carTitleDtl {
        font-size: 24px;
        line-height: 34px;
    }
    .feaPoint h3 {
        font-size: 17px;
        line-height: 27px;
    }
    .feaPoint .listYl li {
        font-size: 14px;
    }
    .formStructer .formListFld {
        font-size: 14px;
    }
    .formOuterBook {
        margin-top: 15px;
    }
    .rightFixedSidebar {
        width: 360px;
    }
    .rightFixedSidebar .sidebar.sticky {
        width: 360px;
    }
    .carDtlLeft {
        width: calc(100% - 380px);
    }
    .main_baner.carDtl {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .outerBoxCarDtl {
        flex-direction: column;
        gap: 20px;
        padding-block-start: 40px;
    }
    .carDtlLeft {
        width: calc(100% - 0px);
    }
    .rightFixedSidebar {
        width: 100%;
    }
    .rightFixedSidebar .sidebar {
        position: static !important;
    }
    .rightFixedSidebar .sidebar.sticky {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .car_feturesinglepage {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media only screen and (max-width: 480px) {
    .titleCarDtlBox .carFeatures {
        flex-direction: column;
    }
    .myryd_h2 h2 {
        font-size: 27px;
        line-height: 36px !important;
        letter-spacing: 1px;
    }
}

/* car details page end */

@media only screen and (max-width: 1680px) {
    .leftTextBox p {
        padding-right: 25px;
    }

    .bannerSilk .slick-arrow.slick-next {
        right: 80px;
    }

    .bannerSilk .slick-arrow.slick-prev {
        right: 145px;
    }

    .socialOuterBox {
        width: calc(100% - 205px);
    }
}

@media only screen and (max-width: 1550px) {
    .psitpoMenuArea ul {
        gap: 30px;
    }
}

@media only screen and (max-width: 1440px) {
    .psitpoMenuArea ul li a {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .bannerSilk .slick-arrow.slick-next {
        right: 60px;
    }

    .bannerSilk .slick-arrow.slick-prev {
        right: 125px;
    }

    .socialOuterBox {
        width: calc(100% - 185px);
    }

    .contactInfoTh a {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media only screen and (max-width: 1366px) {
    .about_us_btn.bookBtn .buttonMyrid {
        padding: 13px 40px 15px;
        font-size: 18px !important;
        line-height: 18px;
        letter-spacing: 0;
    }

    .leftTextBox p {
        font-size: 15px !important;
        line-height: 30px !important;
    }

    .bannerSilk h2 {
        font-size: 52px;
        line-height: 62px;
    }

    .bannerSilk .bancapti {
        max-width: 590px;
    }

    .headerRight {
        gap: 30px;
    }
}

@media only screen and (max-width: 1280px) {
    .bannerSilk .slick-arrow.slick-next {
        right: 40px;
    }

    .bannerSilk .slick-arrow.slick-prev {
        right: 105px;
    }

    .socialOuterBox {
        width: calc(100% - 165px);
    }

    .headerRight .contInfo {
        gap: 25px;
    }

    .psitpoMenuArea ul {
        gap: 25px;
    }

    .bannerSilk h2 {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 4px;
        padding: 0;
    }

    .bannerSilk .bancapti {
        max-width: 470px;
    }
}

@media only screen and (max-width: 1150px) {
    .psitpoMenuArea ul {
        gap: 15px;
    }

    .headerLeft .logoBox a img {
        max-width: 150px !important;
    }

    .headerRight .contactInfo {
        padding-left: 20px;
    }

    .bannerSilk .slick-arrow {
        width: 40px;
        height: 40px;
        bottom: 45px;
    }

    .bannerSilk .slick-arrow.slick-next:hover,
    .bannerSilk .slick-arrow.slick-next,
    .bannerSilk .slick-arrow.slick-prev,
    .bannerSilk .slick-arrow.slick-prev:hover {
        background-size: 16px !important;
    }

    .bannerSilk .slick-arrow.slick-prev {
        right: 90px;
    }

    .leftTextBox p {
        letter-spacing: 1px;
        padding-left: 18px !important;
    }
}

@media only screen and (max-width: 1080px) {
    .about_us_btn.bookBtn .buttonMyrid {
        padding: 13px 20px 15px;
    }

    .leftTextBox p {
        font-size: 14px !important;
    }

    .leftTextBox p:after {
        width: 3px;
        height: 80px;
    }

    .searchFldArea .formControl {
        min-width: 250px;
    }

    .socialOuterBox {
        width: calc(100% - 145px);
        margin-top: -110px;
    }
}
@media only screen and (max-width: 1024px) {
    .headerLeft .logoBox a img {
        max-width: 120px !important;
    }
    .largeScreen {
        display: none !important;
    }
    .mobile_screen {
        display: block !important;
    }
    .headerRight {
        flex-direction: row-reverse;
    }
    .headerRight .contactInfo {
        padding-left: 0;
        padding-right: 25px;
    }
    .contactInfo:after {
        left: auto;
        right: 0;
    }
    /*toggle menu*/
    .menu_toggle_mob {
        width: 25px;
        float: left;
        cursor: pointer;
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 23px;
        height: 2px;
        background: #fff;
        margin: 6px 0;
        transition: 0.4s;
        cursor: pointer;
    }

    .active .bar1 {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .active .bar2 {
        opacity: 0;
    }

    .active .bar3 {
        -webkit-transform: rotate(45deg) translate(-4px, -4px);
        transform: rotate(45deg) translate(-6px, -6px);
    }

    .main_menu_outer {
        width: calc(100% - 40px);
        float: left;
        position: absolute;
        right: 20px;
        background: #fff;
        top: 100px;
    }

    .main_menu_outer ul {
        margin: 0;
        padding: 0;
        width: 100%;
        float: left;
        list-style: none;
    }

    .main_menu_outer ul li {
        position: relative;
        width: 100%;
        float: left;
    }

    .main_menu_outer ul li a {
        border-bottom: 1px solid #dfdfdf;
        display: block;
        text-decoration: none;
        padding: 15px 20px;
        color: #000;
        font-size: 14px !important;
        line-height: 24px !important;
        text-transform: uppercase !important;
        font-family: "Sora", serif !important;
        outline: none !important;
        font-weight: 400 !important;
        transition: all 0.5s ease;
    }

    .main_menu_outer ul li:hover a {
        color: #fc6923;
    }

    .main_menu_outer ul li:hover li a {
        background: #fff;
        color: #333;
    }

    .main_menu_outer ul li:hover li:hover a {
        color: #fc6923;
    }

    .main_menu_outer ul li ul {
        height: auto;
        position: static;
        visibility: visible;
        opacity: 1;
    }

    .main_menu_outer ul li ul::after {
        display: none;
    }

    .main_menu_outer ul li ul {
        box-shadow: none;
        transition: none;
    }

    .main_menu_outer ul li li a {
        border-bottom: 1px solid #dfdfdf;
        padding-left: 25px;
    }

    .drop_icon {
        cursor: pointer;
        position: absolute;
        right: 5px;
        top: 3px;
        width: 40px;
        height: 40px;
        /* background: url(../images/dropdown.png) no-repeat center; */
        transition: all 0.5s ease;
    }

    .drop_icon.act {
        transform: rotate(180deg);
    }

    .main_menu_outer ul li:hover ul ul {
        opacity: 1;
        visibility: visible;
    }

    .main_menu_outer ul li ul {
        background: #fff;
    }

    .main_menu_outer ul li ul li a,
    .main_menu_outer ul li:hover ul li a {
        color: #333;
    }

    .nsubm_area {
        width: 100%;
        float: left;
    }

    .nsubm_area h3 {
        width: 100%;
        float: left;
        padding: 10px;
        color: #000;
        border-bottom: 1px solid #dfdfdf;
        font-size: 14px;
        line-height: 19px;
        cursor: pointer;
        position: relative;
        margin: 0;
    }

    .main_menu_outer li.active .nsubm_area h3,
    .main_menu_outer li .nsubm_area h3:hover,
    .main_menu_outer li .nsubm_area h3.act {
        background: #000248;
        color: #fff;
    }

    .main_menu_outer li .nsubm_area h3:after {
        width: 35px;
        height: 35px;
        cursor: pointer;
        position: absolute;
        right: 5px;
        top: 3px;
        content: "";
        z-index: 1;
        background: url(../images/dropdown.png) no-repeat center;
        background-size: 15px !important;
    }

    .main_menu_outer li .nsubm_area h3.act:after,
    .main_menu_outer li .nsubm_area h3:hover:after,
    .main_menu_outer li.active .nsubm_area h3:after {
        background: url(../images/adw2.png) no-repeat center;
    }
}
@media only screen and (max-width: 991px) {
    .searchFldArea .formControl {
        min-width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .socialOuterBox {
        width: calc(100% - 0px);
        margin-top: 0;
        padding-inline-end: 20px !important;
        padding-block: 30px;
    }
    .innerSocialBox {
        flex-direction: column;
        gap: 20px;
    }
    .rightSocialBox {
        width: 100%;
    }
    .rightSocialBox .socialListBox {
        justify-content: center;
    }
    .leftTextBox {
        max-width: 100%;
    }
    .leftTextBox p {
        color: #000 !important;
    }
    .leftTextBox p:after {
        height: 85%;
    }
    .rightSocialBox:after {
        display: none;
    }
    .bannerSilk .bannerSlider .slide_image img {
        height: 550px;
    }
    .bannerSilk {
        height: 550px;
    }
    .bannerSilk h2 {
        font-size: 38px;
        line-height: 48px;
    }
    .bannerSilk .bancapti {
        max-width: 390px;
    }
}
@media only screen and (max-width: 767px) {
    .searchFldArea {
        flex-direction: column;
        gap: 15px;
    }
    .searchFldArea .submitBox {
        width: 100%;
        justify-content: center;
    }
    .searchFldArea .submitBtn {
        font-size: 15px !important;
        line-height: 25px !important;
        background: #fd5622 !important;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: "Oswald", sans-serif !important;
    }
    .searchFldArea .submitBtn:hover {
        background: #fff !important;
        color: #fd5622 !important;
    }
    .searchFldArea .formFldBox.pickupLocation {
        padding-right: 10px;
    }
    .searchFldArea .formFldBox.rentalType {
        padding-right: 10px;
    }
    .searchFldArea .formControl {
        font-size: 15px;
        line-height: 25px;
        height: 50px;
    }
    .searchFldArea .submitBtn {
        height: 50px !important;
    }
}
@media only screen and (max-width: 640px) {
    .bannerSilk h2 {
        font-size: 34px;
        line-height: 44px;
    }
    .bannerSilk .bancapti {
        max-width: 360px;
    }
}
@media only screen and (max-width: 600px) {
    .contactInfo {
        display: none;
    }
    .bannerSilk h2 {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 2px;
    }
}
/* car details page responsive start */
/* online reservation start */

.onlineReservationOuter {
    background: #0c1114;
    padding: 70px;
}
.innerReserArea {
    max-width: 707px;
}
.onlineNavTab .reserVationMenu {
    position: relative;
    justify-content: space-between;
    padding-bottom: 5px;
}
.onlineNavTab {
    margin-bottom: 50px;
}
.titleOnline {
    margin-bottom: 15px;
}
.titleOnline h3 {
    text-align: center;
}
.onlineNavTab .reserVationMenu:after {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #bd9864;
    content: "";
}
.onlineNavTab .reserVationMenu li {
    position: relative;
}
.onlineNavTab .reserVationMenu li:after {
    width: 14px;
    height: 14px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background: #919191;
    transform: translateY(-50%);
}
.onlineNavTab .reserVationMenu li:hover:after,
.onlineNavTab .reserVationMenu li.active:after {
    background: #e55226;
}
.onlineNavTab .reserVationMenu li a {
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    transition: all 0.5s ease;
    padding-inline: 22px;
}
.onlineNavTab .reserVationMenu li.active a,
.onlineNavTab .reserVationMenu li:hover a {
    color: #e45225;
}
.formOnlineArea {
    display: grid;
    row-gap: 40px;
    column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}
.formOnlineArea .sltFld {
    background: #37383a !important;
    padding-inline-end: 15px;
}
.formOnlineArea .fldControl {
    background: #37383a !important;
    border: none !important;
    color: #fff !important;
    font-size: 18px;
    line-height: 28px;
    appearance: revert;
    height: 44px;
    outline: none !important;
    padding-inline: 15px;
    width: 100%;
}
.formOnlineArea input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    /* Inverts colors (for dark mode) */
    cursor: pointer;
}
.btnMyRyd {
    background: none !important;
    outline: none !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer;
}
.buttonNextSubmit {
    justify-content: flex-end;
    gap: 25px;
    margin-top: 40px;
}
.buttonNextSubmit .about_us_btn .buttonMyrid {
    padding: 10px 38px;
}

/* booking confirm page start */
.bookConfirmPage {
}
.bookingConfirmed {
    padding-block-start: 0;
    margin-top: -240px;
    position: relative;
    padding-bottom: 60px;
}
.bookConfirmPage .myRydHeader {
    position: relative;
    background: linear-gradient(
        to right,
        rgba(14, 28, 37, 1) 0%,
        rgba(12, 58, 81, 1) 43%,
        rgba(12, 58, 81, 1) 50%,
        rgba(12, 58, 81, 1) 60%,
        rgba(14, 28, 37, 1) 100%
    );
}
.confirmInnerBanner {
    background: url(../assets/images/all/bannerBook.jpg) no-repeat right top;
    background-size: cover;
}
.carArea {
    justify-content: flex-end;
}
.bookingConfirmBanner {
    position: relative;
}
.bookingConfirmBanner:after {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(
        to right,
        rgba(252, 87, 33, 0) 20%,
        rgba(252, 87, 33, 0.03) 21%,
        rgba(252, 87, 33, 1) 50%,
        rgba(252, 87, 33, 0) 80%
    );
}
.carImagBook {
    width: 428px;
    height: 181px;
    margin-bottom: -15px;
    margin-top: 135px;
}
.carImagBook img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.messageOuter {
    background: #f0f0f0;
    padding-bottom: 50px;
}
.bookingInnerMess {
    background: #73b144;
    width: 620px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}
.topMessage {
    padding-inline: 50px;
    padding-block-start: 50px;
    padding-block-end: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.topMessage figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.topMessage figure {
    width: 84px;
    height: 84px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #fff;
    margin-bottom: 30px;
}
.topMessage figure .iconBoxCheck {
    width: 40px;
    height: 40px;
}
.topMessage figure .iconBoxCheck img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.topMessage h3 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-family: "Poppins", serif !important;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.topMessage p {
    font-size: 17px;
    line-height: 27px;
    color: #fff;
    font-family: "Roboto", sans-serif !important;
    letter-spacing: 1px;
    max-width: 86%;
    text-align: center;
}
.bottomFtr h4 {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    font-family: "Roboto", sans-serif !important;
    letter-spacing: 2px;
}
.bottomFtr h4 span {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}
.bottomFtr {
    background: #679f3c;
    border-top: 1px solid #91c45d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 19px;
}

.innerUserInfo {
    font-family: "Roboto", sans-serif !important;
}
.innerUserInfo h3 {
    color: #fa8515;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 3px;
    font-weight: 500;
}
.innerUserInfo p.userThank {
    color: #2c2c2c;
    font-size: 19px;
    line-height: 29px;
    letter-spacing: 2px;
    margin-top: 3px;
}
.innerUserInfo .iconMessage {
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 10px;
}
.innerUserInfo .iconMessage img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.innerUserInfo .iconMessage p.mess {
    font-size: 15px;
    line-height: 25px;
    color: #4a4a4a;
    letter-spacing: 1px;
}
.rowOneBook {
    gap: 60px;
    padding-top: 30px;
}

.insuranceDtlOuter {
    background: #ffffff;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.015);
    margin-bottom: 20px;
    display: flex;
    font-family: "Roboto", sans-serif !important;
    justify-content: space-between;
    padding-top: 2px;
}
.insuranceDtlOuter.dNFlex {
    display: block;
}
.insuranceDtlOuter h3 {
    color: #517cde;
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding-left: 45px;
    padding-block: 25px;
}
.insuranceDtlOuter h3.opaCity {
    opacity: 0;
}
.colOneInsurance .infoListIns {
    border-top: 1px solid #ccc;
    padding-left: 45px;
    padding-top: 20px;
    padding-bottom: 50px;
}
.colOneInsurance.columnTwo .infoListIns {
    border-left: 1px solid #ccc;
}
.colOneInsurance.columnTwo .infoListIns.carRightSide {
    height: 100%;
    padding-left: 0px;
    padding-bottom: 0;
}
.colOneInsurance .infoListIns {
}
.colOneInsurance .infoListIns ul.twoColuList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
}
.colOneInsurance .infoListIns ul.twoColuList.three {
    grid-template-columns: repeat(3, 1fr);
}
.colOneInsurance .infoListIns ul li {
}
.colOneInsurance .lblInsu {
    font-size: 18px;
    line-height: 28px;
    color: #5b5b5b;
    letter-spacing: 1px;
}
.colOneInsurance .lblInsu.spanBlock {
    margin-top: 15px;
}
.colOneInsurance .lblInsu.spanBlock span {
    display: block;
}
.colOneInsurance .lblInsu a.tel {
    color: #5b5b5b;
}
.colOneInsurance .personMale .lblInsu span {
    color: #000;
    font-weight: 500;
}
.colOneInsurance .dataIns {
    font-size: 19px;
    line-height: 29px;
    color: #000;
    letter-spacing: 1px;
    padding-right: 15px;
}
.colOneInsurance .dataIns.titleAdd {
    margin-bottom: 10px;
}
.colOneInsurance .dataIns.bigFont {
    font-size: 26px;
    line-height: 36px;
}
.colOneInsurance.columnTwo {
    width: 40%;
    /* border-left:1px solid #e1e1e1;
    padding-left: 50px; */
}
.colOneInsurance.colOne {
    width: 60%;
}
.colOneInsurance .iconMale {
    display: flex;
    padding-left: 35px;
    margin-left: 35px;
    position: relative;
    gap: 15px;
    align-items: center;
}
.colOneInsurance .iconMale:after {
    width: 1px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background: #cccccc;
    transform: translateY(-50%);
}
.colOneInsurance .iconMale img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.personMale {
    margin-block: 10px;
    margin-bottom: 20px;
}
.colOneInsurance .iconMale.noSepa {
    padding-left: 0;
    margin-left: 0;
}
.colOneInsurance .iconMale.noSepa:after {
    display: none;
}
.telList {
    margin-top: 7px;
}
.carGallery {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-inline: 45px;
    flex-direction: column;
}
.carGallery .carBox {
    height: 290px;
    margin-top: 15px;
}
.pickUpDropUp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
}
.pickupLocation {
    padding-inline: 20px;
}
.bulletPoints li {
    padding-left: 20px;
    position: relative;
}
.bulletPoints li:after {
    width: 8px;
    height: 8px;
    background: #b3b3b3;
    border-radius: 100px;
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
}

.infoListIns .bulletPoints {
    margin-top: 15px;
}
.couponCode a p {
    color: #2377ea !important;
}
.discountPart ul li {
    display: flex;
    justify-content: space-between;
}
.calcuLateArea {
    padding-inline: 45px;
    padding-inline: 45px;
    border-bottom: 1px dashed #404040;
    padding-bottom: 20px;
}
.parentTitle {
    justify-content: space-between;
    align-items: center;
    padding-right: 45px;
}
.editButton a {
    border: 1px solid #ccc;
    padding: 4px 15px;
    display: flex;
    border-radius: 5px;
    width: 70px;
    text-align: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.editButton a:hover {
    background: #fd5622;
    color: #fff;
}
.discountPart {
    margin-top: 15px;
}
.discountPart.padInline {
    padding-inline: 45px;
}
.discountPart .userPersonal {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
button.payOutBtn {
    border: none !important;
    width: 100%;
    margin-top: 55px;
    text-transform: capitalize;
    height: 60px;
    letter-spacing: 1px;
    font-size: 22px !important;
    border-radius: 5px;
}
.payButton .button {
    width: 100%;
}
.userPersonal.payment {
    margin-top: 50px;
}

/* user dashboard start */
.userDashBoardOuter {
    padding-block: 30px;
    background: #313131;
    min-height: 50vh;
}
.userDashBoardInner {
    background: #000;
}
.dashBoardTitle {
    padding: 30px 70px;
}
.dashBoardTitle h2 {
    margin: 0;
    padding: 0;
    color: #fa8515;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}
.dashBoardMenuOuter {
    background: #1a1a1a;
    padding-inline: 70px;
}
.dashboardMenuInner {
}
.dashboardMenuInner .menuListDash {
    display: flex;
    gap: 30px;
}
.dashboardMenuInner .menuItem {
}
.dashboardMenuInner .menuItem.activeMenu {
}
.dashboardMenuInner .menuItem a {
    color: #f15a24;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    display: block;
    padding: 17px 25px 16px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.dashboardMenuInner .menuItem.activeMenu a,
.dashboardMenuInner .menuItem:hover a {
    background: #000000;
    color: #fff;
}

.dashBoardContentArea {
    padding-inline: 70px;
    padding-block: 30px;
    min-height: 50vh;
}
.bookingHistoryArea {
}
.bookingHistoryRowOuter {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.bookingBoxHistory {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    border-top: 2px solid #f19b9a;
    background: #fafafa;
    padding: 30px;
    transition: all 0.5s ease;
}
.bookingBoxHistory:hover {
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.15);
}
.bookingBoxHistory .rowBookingOne {
    display: flex;
    justify-content: space-between;
}
.bookingBoxHistory .leftBoxHistory {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
}
.bookingBoxHistory .bookList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bookList li {
    font-size: 19px;
    line-height: 29px;
    color: #101010;
    letter-spacing: 1px;
    display: flex;
    gap: 10px;
}
.bookList li .labelGr {
    color: #5b5b5b;
    width: auto;
    font-weight: 400;
}
.bookingBoxHistory .bookList li .labelGr.noBreak {
    /* width: 205px; */
}
.bookList li .valueGr {
    color: #101010;
    font-weight: 500;
}
.rightCarThumb {
    width: 380px;
}
.rightCarThumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rowBookTwoBtn {
    border-top: 1px dashed #565656;
    padding-top: 40px;
    margin-top: 40px;
}
.rowBookTwoBtn .buttonList {
    display: flex;
    gap: 15px;
}
.btnBox {
}
.btnBox .btnStyle {
    font-size: 19px;
    line-height: 29px;
    color: #fff !important;
    background: #000;
    border-radius: 6px;
    min-width: 160px;
    text-align: center;
    padding-inline: 40px;
    display: flex;
    justify-content: center;
    padding-block-start: 5px;
    padding-block-end: 10px;
    transition: all 0.5s ease;
}
.btnStyle.view {
    background: #f3b52e;
}
.btnStyle.view:hover {
    background: #e8a40f;
}
.btnStyle.pickupPhoto {
    background: #5cd44f;
}
.btnStyle.pickupPhoto:hover {
    background: #36cc26;
}
.btnStyle.dropUpPhoto {
    background: #2f9df4;
}
.btnStyle.dropUpPhoto:hover {
    background: #0e84e2;
}

/* user profile view start */
.viewProfileOuter {
    justify-content: center;
}
.innerProfileView {
    max-width: 1060px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    padding: 50px;
    flex-direction: column;
    background: #fff;
}
.profileViewRow {
    justify-content: space-between;
}
.leftProCol {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-right: 50px;
}
.leftProCol .bookList {
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.leftProCol .nameTitle {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.rightPhotoCol {
}
.rightPhotoCol figure {
    width: 190px;
    height: 190px;
    margin: 0;
}
.rightPhotoCol figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contactInView {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.labelGr.longAd {
    min-width: 190px;
}
.profileViewRow.borderx {
    border-bottom: 1px solid #ccc;
    padding-bottom: 60px;
    margin-bottom: 40px;
}
.bookDetail {
    flex-direction: column;
}
.bookDetail .bookList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.bookDetail .bookList .labelGr {
    min-width: 150px;
}

.bookList li.flexCol {
    flex-direction: column;
}
.titleBookDtl h3 {
    color: #f15a24;
    font-size: 23px;
    line-height: 33px;
    font-family: "Roboto", sans-serif !important;
    font-weight: 500;
    letter-spacing: 1px;
}
.titleBookDtl {
    margin-bottom: 10px;
}
.pickUpDropArea {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}
.bookDetail .pickupLeft .bookList {
    display: flex;
}
.bookDetail .pickupLeft .bookList .valueGr {
    max-width: 320px;
}
.pickupLeft.riGht {
    justify-content: flex-end;
    margin-top: -90px;
}
.mapGuide {
    justify-content: center;
    margin-top: -90px;
}
.pickupLeft {
    position: relative;
    z-index: 9;
}
.photoSList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.photoSList figure {
    margin: 0;
}
.photoSList figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.carPhotosArea {
    margin-top: 15px;
}
.carPhotosArea figure {
    margin: 0;
}
.carPhotosArea figure {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
}
.carPhotosArea figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carPhotosArea figcaption h4 {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    font-weight: 500;
}
.carPicture {
    margin-top: 20px;
}

/* carousel slider */
.carPhotosArea .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    flex-basis: 100%;
    border-radius: 0px;
}

.slick-track {
    margin-left: 0;
}

.carPhotosArea .beniftslik {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.carPhotosArea .beniftslik .slick-slide {
    position: relative;
    width: 100%;
    float: left;
    margin: 0;
    overflow: hidden;
    padding: 0px 5px;
}
/*pagination*/
.carPhotosArea ul.slick-dots {
    outline: none;
    list-style: none;
    bottom: 0px;
    position: static;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
    z-index: 99;
    margin: 25px 0 0;
}
.carPhotosArea .slick-dots li {
    display: inline-block;
    width: 19px;
    padding: 9px 0;
    height: auto;
    margin: 0 3px;
    border-radius: 0px;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}
.carPhotosArea .slick-dots li button {
    float: left;
    font-size: 0;
    width: 19px;
    height: 3.9px;
    background: #e9abb5;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
}
.carPhotosArea .slick-dots li.slick-active button {
    background: #d50303;
}
/*navigation*/
.carPhotosArea .slick-arrow {
    border: none;
    cursor: pointer;
    outline: none;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    z-index: 999;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    background-repeat: no-repeat !important;
    font-size: 0;
    margin: 0 15px;
    background-size: 25px !important;
    margin: 0;
    background-position: center !important;
    border-radius: 100px;
    transition: all 0.5s ease;
}
.carPhotosArea .slick-arrow.slick-next {
    right: 0px;
    background: url(../assets/images/all/nextArrow.png);
}
.carPhotosArea .slick-arrow.slick-next:hover {
    right: 0px;
    background: url(../assets/images/all/nextArrow.png);
}
.carPhotosArea .slick-arrow.slick-disabled {
    /* display: none;
    visibility: hidden; */
}
.carPhotosArea .slick-arrow.slick-prev {
    left: 0;
    background: url(../assets/images/all/prevArrow.png);
}
.carPhotosArea .slick-arrow.slick-prev:hover {
    background: url(../assets/images/all/prevArrow.png);
}

/* responsive booking confirm start */

.carGallery .carBox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* change password */
.changePwOuter {
    display: flex;
    justify-content: center;
}
.innerChangePw {
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 40px;
    border-radius: 10px;
    background: #fff;
}
.subCanBtn {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}
.subCanBtn .passWord,
.form_btn.marginTop20 .buttonStyleOne {
    padding: 14px 38px;
    width: auto;
    background: linear-gradient(255deg, #ff8d27 0%, #ffb75a 100%);
    border-radius: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins";
    border: none !important;
    transition: all 0.5s ease;
}
.form_btn.marginTop20 .buttonStyleOne {
    width: 100%;
}
.buttonStyleOne:hover,
.subCanBtn .passWord:hover,
.form_btn.marginTop20 .buttonStyleOne:hover {
    background: linear-gradient(
        90deg,
        rgba(222, 135, 29, 1) 0%,
        rgba(255, 144, 43, 1) 100%
    );
}
.subCanBtn .canCel {
    padding: 14px 25px;
    width: auto;
    background: #f1f1f1;
    border-radius: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins";
    border: none !important;
    transition: all 0.5s ease;
}
.subCanBtn .canCel:hover {
    background: #dddddd;
}

.login-form-item .login-form-inner .icon {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

@media only screen and (max-width: 1780px) {
    .pickupLocation {
        width: 330px;
    }
    .pickupLocation img {
        width: 100%;
    }
    .colOneInsurance .infoListIns {
        padding-right: 15px;
    }
    .car-start-button {
        top: 82vh;
    }
}

@media only screen and (max-width: 1550px) {
    .bookList li {
        font-size: 17px;
        line-height: 27px;
        letter-spacing: 0;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 258px;
    }
    .titleBookDtl h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .dashBoardTitle h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .dashboardMenuInner .menuItem a {
        font-size: 16px;
        line-height: 26px;
    }
    .innerProfileView {
        max-width: 100%;
        padding: 30px;
    }
    .btnBox .btnStyle {
        font-size: 17px;
        line-height: 27px;
    }
    .rowBookTwoBtn {
        padding-top: 30px;
        margin-top: 30px;
    }
    .pickUpDropArea {
        gap: 20px;
    }
    .bookingHistoryRowOuter {
        gap: 40px;
    }
    .dashBoardContentArea {
        padding-inline: 40px;
    }
    .dashBoardMenuOuter {
        padding-inline: 40px;
    }
    .dashBoardTitle {
        padding: 20px 40px;
    }
    .car-start-button {
        width: 120px;
        height: 120px;
        font-size: 16px;
        font-weight: 700;
    }
    .car-start-button {
        top: 84vh;
        left: 47%;
    }
}

@media only screen and (max-width: 1440px) {
    .pickupLocation {
        width: 290px;
    }
    .colOneInsurance .dataIns img {
        width: 200px;
    }
    .colOneInsurance .dataIns.bigFont {
        font-size: 22px;
        line-height: 32px;
    }
    .colOneInsurance .dataIns {
        font-size: 16px;
        line-height: 26px;
    }
    .colOneInsurance .lblInsu {
        font-size: 15px;
        line-height: 25px;
    }
    .insuranceDtlOuter h3 {
        font-size: 20px;
        line-height: 30px;
        padding-block: 20px;
        letter-spacing: 1px;
    }
    .innerUserInfo h3 {
        font-size: 26px;
        line-height: 36px;
        letter-spacing: 2px;
    }
    .innerUserInfo p.userThank {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 1px;
    }
    button.payOutBtn {
        margin-top: 45px;
        height: 50px;
        letter-spacing: 1px;
        font-size: 18px !important;
    }
    .carImagBook {
        width: 308px;
        height: 140px;
        margin-top: 135px;
    }
    .car-start-button {
        top: 84vh;
        left: 46.5%;
    }
}
@media only screen and (max-width: 1366px) {
    .innerUserInfo .iconMessage {
        margin-top: 20px;
    }
    .colOneInsurance .iconMale img {
        width: 16px;
        height: 16px;
    }
    .bookingInnerMess {
        width: 540px;
    }
    .topMessage p {
        font-size: 15px;
        line-height: 25px;
    }
    .bottomFtr h4 span {
        font-size: 18px;
        line-height: 28px;
    }
    .topMessage h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .bottomFtr h4 {
        font-size: 16px;
        line-height: 26px;
    }
    .topMessage figure {
        width: 74px;
        height: 74px;
        border: 3px solid #fff;
        margin-bottom: 20px;
    }
    .car-start-button {
        width: 105px;
        height: 105px;
        font-size: 14px;
        font-weight: 600;
    }
    .car-start-button {
        top: 85vh;
        left: 47%;
    }
}
@media only screen and (max-width: 1280px) {
    .innerUserInfo h3 {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 1px;
    }
    .rowOneBook {
        gap: 30px;
    }
    .bookingConfirmed {
        margin-top: -200px;
    }
    .innerUserInfo p.userThank {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0px;
    }
    .colOneInsurance .dataIns {
        font-size: 14px;
        line-height: 24px;
    }
    .colOneInsurance .dataIns img {
        width: 180px;
    }
    .colOneInsurance .infoListIns {
        padding-left: 25px;
        padding-top: 15px;
        padding-bottom: 40px;
    }
    .insuranceDtlOuter h3 {
        padding-left: 25px;
        font-size: 18px;
        line-height: 28px;
    }
    .bulletPoints li:after {
        width: 6px;
        height: 6px;
    }
    .carGallery .carBox {
        height: 180px;
    }
}
@media only screen and (max-width: 1150px) {
    .colOneInsurance .iconMale {
        padding-left: 15px;
        margin-left: 15px;
    }
    .userPersonal.payment li {
        flex-direction: column;
        gap: 15px;
    }
    .colOneInsurance .dataIns img {
        width: auto;
    }
    .discountPart.padInline {
        padding-inline: 25px;
    }
    .carGallery {
        padding-inline: 25px;
    }
    .pickupLocation {
        width: 230px;
    }
    .calcuLateArea {
        padding-inline: 25px;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 100%;
    }
    .socialOuterBox {
        margin-top: -80px;
    }
    .car-start-button {
        top: 76vh;
        left: 46%;
    }
}
@media only screen and (max-width: 1080px) {
    .leftProCol {
        gap: 20px;
    }
    .profileViewRow.borderx {
        padding-bottom: 40px;
        margin-bottom: 20px;
    }
    .leftBoxHistory .bookList {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .rightCarThumb {
        width: 283px;
    }
    .bookList li .labelGr {
        width: 150px;
    }
    .bookingBoxHistory .leftBoxHistory {
        gap: 0;
    }
    .bookingBoxHistory .bookList li .labelGr {
        width: 130px;
    }
    .bookingBoxHistory .leftBoxHistory .bookList li {
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 130px;
    }
    .contactInView .bookList {
        flex-direction: column;
    }
    .contactInView.paymentMethodView .bookList {
        flex-direction: row;
    }

    .pickupLocation {
        width: 210px;
    }
    .colOneInsurance .dataIns.bigFont {
        font-size: 20px;
        line-height: 30px;
    }
    .car-start-button {
        top: 76vh;
        left: 47%;
    }
}
@media only screen and (max-width: 1024px) {
    body.bookConfirmPage .main_menu_outer {
        top: 115px;
    }
    .bookingInnerMess {
        width: 450px;
    }
    .colOneInsurance .lblInsu {
        font-size: 14px;
        line-height: 24px;
    }
    .car-start-button {
        top: 76vh;
        left: 46%;
    }
}
@media only screen and (max-width: 991px) {
    .dashboardMenuInner .menuListDash {
        gap: 15px;
    }
    .bookingInnerMess {
        width: 350px;
    }
    .topMessage {
        padding-inline: 20px;
        padding-block-start: 30px;
        padding-block-end: 25px;
    }
    .topMessage h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .topMessage p {
        font-size: 14px;
        line-height: 24px;
    }
    .carImagBook {
        width: 198px;
        height: 100px;
        margin-top: 155px;
    }
    .innerUserInfo .iconMessage p.mess {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0px;
    }
    .bookingConfirmed {
        margin-top: -170px;
    }
    .insuranceDtlOuter {
        flex-direction: column;
    }
    .colOneInsurance.colOne {
        width: 100%;
    }
    .colOneInsurance.columnTwo {
        width: 100%;
    }
    .colOneInsurance.columnTwo .infoListIns {
        border-left: none;
    }
    .oneBoxTitle {
        flex-direction: column;
    }
    .pickupLocation {
        width: 310px;
    }
    .innerUserInfo h3 {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0px;
    }
    .userPersonal.payment {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .colOneInsurance .infoListIns {
        padding-right: 0;
    }
    .leftProCol {
        padding-right: 0;
    }
    .profileViewRow.borderx {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .leftProCol .bookList {
        flex-direction: column;
    }
    .bookDetail .bookList {
        grid-template-columns: repeat(1, 1fr);
    }
    .mapGuide {
        margin-top: -69px;
        margin-bottom: 65px;
    }
    .dashBoardTitle h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .dashBoardTitle {
        padding: 20px;
    }
    .dashBoardMenuOuter {
        padding-inline: 20px;
    }
    .dashBoardContentArea {
        padding-inline: 20px;
    }
    .innerProfileView {
        padding: 20px;
    }
    .dashboardMenuInner .menuItem a {
        font-size: 14px;
        line-height: 24px;
    }
    .dashboardMenuInner .menuItem a {
        font-size: 14px;
        line-height: 24px;
        padding: 15px 20px 14px;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 233px;
    }
    .bookList li {
        font-size: 14px;
        line-height: 26px;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 177px;
    }
    .btnBox .btnStyle {
        font-size: 15px;
        line-height: 25px;
    }
    .rowBookTwoBtn {
        padding-top: 25px;
        margin-top: 20px;
    }
    .carPhotosArea figcaption h4 {
        font-size: 16px;
        line-height: 26px;
    }
    .titleBookDtl h3 {
        font-size: 18px;
        line-height: 28px;
    }
}
@media only screen and (max-width: 768px) {
    .car-start-button {
        top: 45vh;
        left: 45%;
    }
}
@media only screen and (max-width: 767px) {
    .bookingBoxHistory .rowBookingOne {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 157px;
    }
    .dashboardMenuInner .menuItem a {
        padding: 15px 15px 14px;
        font-size: 13px;
        line-height: 20px;
    }
    .btnBox .btnStyle {
        padding-inline: 20px;
        min-width: 130px;
    }
    .bookingBoxHistory .leftBoxHistory {
        flex-direction: column;
        padding-right: 0;
    }
    .pickupLocation {
        width: 216px;
    }
    .rowOneBook {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .bookingConfirmed {
        padding-bottom: 0;
    }
    .colOneInsurance .infoListIns ul.twoColuList {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }
    .colOneInsurance .infoListIns ul.twoColuList.three {
        grid-template-columns: repeat(2, 1fr);
    }
    .car-start-button {
        top: 45vh;
        left: 45%;
    }
}
@media only screen and (max-width: 640px) {
    .bookList li {
        gap: 2px;
    }
    .mapGuide figure {
        width: 100%;
    }
    .mapGuide figure img {
        width: 100%;
    }
    .rowBookTwoBtn .buttonList {
        flex-direction: column;
    }
    .dashboardMenuInner .menuItem {
        display: flex;
    }
    .labelGr.longAd {
        min-width: 150px;
    }
    .contactInView.paymentMethodView .bookList {
        flex-direction: column;
    }
    .bookingBoxHistory .bookList li .labelGr.noBreak {
        width: 175px;
    }
    .pickUpDropUp {
        justify-content: space-between;
        align-items: flex-start;
        padding-right: 0px;
        flex-direction: column;
        gap: 20px;
    }
    .pickupLocation {
        width: 100%;
    }
    .colOneInsurance .infoListIns {
        padding-bottom: 20px;
    }
    .colOneInsurance .lblInsu.spanBlock {
        display: flex;
        padding-right: 20px;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 600px) {
    .bookingBoxHistory {
        padding: 20px;
    }

    .bookingBoxHistory .leftBoxHistory {
        width: 100%;
    }
    body.bookConfirmPage .main_menu_outer {
        top: 100px;
    }
    .colOneInsurance .dataIns img {
        width: 100%;
    }
    .bookingConfirmed {
        margin-top: -230px;
    }
    .socialOuterBox {
        padding-block: 20px;
    }
}

@media only screen and (max-width: 520px) {
    .dashboardMenuInner .menuListDash {
        gap: 6px;
    }
    .carPhotosArea .beniftslik {
        padding: 0 33px;
    }
    .carPhotosArea .slick-arrow {
        width: 20px;
        height: 20px;
    }
    .car-start-button {
        top: 44vh;
        left: 44%;
    }
}
@media only screen and (max-width: 480px) {
    .dashboardMenuInner .menuListDash {
        gap: 6px;
        flex-direction: column;
    }
    .dashboardMenuInner .menuItem {
        display: block !important;
    }
    .dashBoardMenuOuter {
        padding-inline: 20px;
        padding-block: 20px;
    }
    .mapGuide {
        margin-top: -17px;
    }
    .car-start-button {
        width: 90px;
        height: 90px;
        font-size: 13px;
        font-weight: 500;
    }
}

@media only screen and (max-width: 420px) {
    .bookingInnerMess {
        width: 100%;
    }
    .parentTitle {
        padding-right: 25px;
    }
    .insuranceDtlOuter h3 {
        padding-left: 15px;
        font-size: 16px;
        line-height: 26px;
    }
    .colOneInsurance .infoListIns ul.twoColuList.three {
        grid-template-columns: repeat(1, 1fr);
    }
    .bookList li {
        flex-direction: column;
    }
    .rightCarThumb {
        width: 100%;
    }
    .car-start-button {
        top: 44vh;
        left: 42%;
    }
}
