* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    background: #f2f4f8;
}

/* Index page  */

.select-ride {
    color: #171D21;
    font-family: "Inter", serif;
    background: rgb(242, 244, 248);
    /* height: 100vh; */
    padding: 40px 0;
}

.select-ride .container {
    max-width: 1200px;
    margin: auto;
    position: relative;

}



@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.sticky-btn-wrapper {
    position: fixed;
    width: 100%;
    bottom: 0%;
    left: 0;
    -webkit-transition: bottom 0.5s ease-in-out;
    transition: bottom 0.5s ease-in-out;
}

.sticky-btn-wrapper .btn-wrapper {
    width: 655px;
    padding: 16px;
    padding: 1rem;
    background: rgb(255, 255, 255);
    border-top: 1px solid rgb(242, 244, 248);
    border-right: 1px solid rgb(242, 244, 248);
    border-left: 1px solid rgb(242, 244, 248);
    -o-border-image: initial;
    border-image: initial;
    border-bottom: none;
    border-radius: 1rem 1rem 0px 0px;
    box-shadow: rgba(18, 22, 25, 0.1) 0px 0px 24px 0px;

}

.sticky-btn-wrapper.hide {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.sticky-btn-wrapper.show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.sticky-btn-wrapper button {
    padding: 15px 20px;
    padding: .9375rem 1.25rem;
    width: 100%;
    background: #146AFF;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 666px;
    font-size: 18px;
    font-size: 1.125rem;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sticky-btn-wrapper button:hover {
    background: #146affd7;

}


.select-ride .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ride-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* margin-bottom: 300px; */
}

.ride-wrapper .one-way-trip {
    border-radius: 16px;
    padding: 16px;
    width: 656px;
    background: #fff;
}

.one-way-trip .one-way-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    padding: 8px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.25px;
    color: #fff;
    background-color: #146AFF;
    border-radius: 666px;
    -webkit-transition: 0.3s;
    transition: 0.3s;


}

.one-way-trip .one-way-btn:hover {
    color: #146AFF;
    background-color: #F2F4F8;
}

.one-way-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.one-way-title-wrapper ul {
    margin: 0;
    margin-left: 20px;
    margin-top: 20px;
    padding: 0;
    position: relative;

}

.one-way-title-wrapper ul li:first-child {
    margin-bottom: 8px;
}

.one-way-title-icon {
    position: absolute;
    top: 14px;
    left: -22px;
    font-size: 20px;
}


.one-way-title-wrapper h5 {
    color: #171D21;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.15;
    letter-spacing: -0.25px;
    margin: 0;
}

.route-btn {
    border: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 18px;
    padding: .75rem 1.125rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.25px;
    color: #146AFF;
    background-color: #F2F4F8;
    border-radius: 666px;
    -webkit-clip-path: 666px;
    clip-path: 666px;
    -webkit-transition: 0.3s;
    transition: 0.3s;

}

.route-btn:hover {
    color: #F2F4F8;
    background-color: #146AFF;
}

.one-way-Departure {
    background: rgb(242, 244, 248);
    border-radius: 8px 0px 0px 8px;
    padding: 8px;
    padding: 0.5rem;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.Departure-title-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.Departure-title {
    color: rgb(105, 112, 119);
    margin: 0px;
    font-weight: 600;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.15;
    letter-spacing: 0.25px;

}

.Departure-date {
    color: #171D21;
    margin: 0px;
    font-weight: 600;
    color: inherit;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.33;

}

.Departure-date span {
    color: rgb(135, 141, 150);
}

.departure-arrive {
    -ms-flex-item-align: self-end;
    align-self: self-end;
    margin: 0px;
    font-weight: 600;
    color: rgb(135, 141, 150);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.33;
}

/********* private ride ****************/
.private-ride-title {
    margin: 24px 0px 16px;
    margin: 1.5rem 0px 1rem;
    font-weight: 500;
    color: inherit;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.25px;
}

.private-ride {
    border-radius: 16px;
    padding: 16px;
    width: 656px;
    background: #fff;
}

.private-ride .title {
    margin: 0px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    line-height: 1.15;
    font-weight: 500;
    color: #171D21;
    letter-spacing: -0.25px;
    letter-spacing: -0.015625rem;
}

.private-ride .sub-title {
    display: inline-block;
    margin-top: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    padding: 3px 5px;
    border-radius: 0.25rem;
    border: 1px solid rgb(20, 106, 255);
    border: 0.0625rem solid rgb(20, 106, 255);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 14px;
    line-height: 0.875rem;
    font-weight: 600;
    background-color: transparent;
    color: rgb(20, 106, 255);
    -webkit-transition: 0.3s;
    transition: 0.3s;


}

.private-ride .sub-title:hover {
    background: #F2F4F8;

}

.private-ride .last-subtitle {
    color: rgb(0, 176, 0);
    border: 1px solid rgb(0, 176, 0);
    border: 0.0625rem solid rgb(0, 176, 0);
}


.description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.description img {
    width: 20px;
    margin-bottom: 3px;
}

.description p {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    margin-top: 8px;
    margin-top: 0.5rem;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
}

.car-style {
    box-sizing: border-box;
    gap: 16px;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0.5rem;
    border: 2px solid rgb(221, 225, 230);
    padding: 16px;
    padding: 1rem;
    align-items: center;
    background: rgb(255, 255, 255);
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 10px;
}

.car-style:hover,
.car-style.active {
    background: rgb(229, 242, 255);
    border: 2px solid rgb(20, 106, 255);
}

.car-style .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    gap: 1rem;
    box-sizing: border-box;

}

.car-style .left img {
    width: 64px;
    -o-object-fit: contain;
    object-fit: contain;
}

.person-wapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    gap: 0.25rem;
}

.person-wrapper .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.person-wrapper .descriptio-box {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
}

.person-wrapper .descriptio-box li {
    list-style-type: none;
    border-radius: 0.25rem;
    line-height: 20px;
    padding: 0 8px;
    padding: 0 .5rem;
    font-size: 12px;
    font-size: .75rem;
    background: #F2F4F8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

.person-wrapper .descriptio-box li:first-child {
    margin-top: 10px;
    margin-bottom: 10px;
}

.car-style:hover .person-wrapper .descriptio-box li {
    background: #fff;
}

.person-wapper .title-wrapper .title {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
}

.person-wrapper .title-wrapper .select-btn {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #146AFF;
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    font-size: 0.75rem;
    border-radius: 666px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/*.car-style:hover .person-wrapper .title-wrapper .select-btn, */
.car-style.active .person-wrapper .title-wrapper .select-btn {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.person-wrapper .icon-text-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    gap: 0.5rem;
}

.person-wrapper .inoc-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(135, 141, 150);
    gap: 5px;
}

.person-wrapper .inoc-text-wrapper .icon {
    font-size: 14px;
    width: 14px;
    display: inline-block;
}

.person-wrapper .inoc-text-wrapper .text {
    font-size: 14px;
    font-weight: 600;
}

.person-wrapper p {
    border-radius: 0.25rem;
    line-height: 20px;
    padding: 0 8px;
    padding: 0 .5rem;
    font-size: 12px;
    font-size: .75rem;
    background: #F2F4F8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

.car-style:hover .person-wrapper p {
    background: #fff;
}

.person-wrapper p:last-child {
    margin-top: -5px;
}

.car-style .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.car-style .right .prize-1 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
}

.car-style .right .prize-2 {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgb(135, 141, 150);
}

/******** risk free *******/
.risk-free {
    height: 320px;
    width: 361px;
    background: rgb(255, 255, 255);
    border-radius: 1rem;

}

.risk-free .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 16px 8px 16px;
    gap: 12px;
    gap: 0.75rem;
}

.risk-free .title-wrapper h4 {
    margin: 0;
    color: rgb(0, 176, 0);
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 20px;
    line-height: 1.25rem;
    letter-spacing: -0.25px;

}

.risk-free .subttle {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    font-weight: 500;
    color: rgb(23, 29, 33);
    border-bottom: 1px solid rgb(242, 244, 248);
    padding: 0 16px 16px 16px;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

.risk-free ul {
    margin: 0;
    padding: 20px 16px 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.risk-free ul li {
    width: 50%;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/********* reponsive *******/
@media(max-width:1070px) {
    .ride-wrapper .one-way-trip {
        width: 500px;
    }

    .private-ride {
        width: 500px;
    }

    .sticky-btn-wrapper .btn-wrapper {
        width: 510px;
    }
}

@media(max-width:920px) {
    .sticky-btn-wrapper {
        width: 100%;
    }

    .sticky-btn-wrapper .btn-wrapper {
        width: 90%;
        margin: auto;
    }

    .private-ride-title {
        text-align: center;
    }

    .select-ride .content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
    }

    .ride-wrapper .one-way-trip {
        width: 100%;
        margin: auto;
    }

    .private-ride {
        width: 100%;
        margin: auto;

    }

    .risk-free {
        height: auto;
        margin: auto;
        width: 100%;
    }

}

@media (max-width:575px) {

    .ride-wrapper .one-way-trip {
        display: none;
    }

    .private-ride {
        padding: 10px;
        border-radius: 8px;
    }

    .car-style {
        padding: 10px;
    }

    .private-ride .title {
        font-size: 1rem;
    }

    .car-style .right .prize-1 {
        font-size: 1rem;
    }

    .car-style .right {
        width: 73px;
    }
}

/* Trip Form  */
.go-trip-tabs {
    display: flex;
    gap: 10px;
}
.go-trip-tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
.go-trip-tab-button.active {
    background-color: #ddd;
    font-weight: bold;
}
.go-trip-tab-content {
    display: none;
    margin-top: 20px;
}
.go-trip-tab-content.active {
    display: block;
}

.go-trip-search-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0 25px;
}

.go-trip-tabs {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2px;
    padding: 0.125rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 5px;
    border-radius: 64px;
}

.go-trip-tab-button {
    padding: 8px 32px;
    padding: 0.5rem 2rem;
    border-radius: 64px;
    font-weight: 500;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 14px;
    line-height: 0.875rem;
    letter-spacing: 0.25px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

.go-trip-tab-button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.go-trip-tab-button.active {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.go-trip-tabs-2 {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgb(221, 225, 230);
    position: relative;
}

.go-trip-btn-text {
    display: none;
    position: absolute;
    left: 0;
    z-index: 3;
    background: #fff;
    width: 100%;
    margin: 0 10px;
    top: 25px;
}

.go-trip-btn-text.active {
    display: inline-block;
}

.go-trip-btn-text li {
    list-style-type: none;
}

.go-trip-btn-text li a {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    padding: 10px 0px;
}

.go-trip-tabs-2 .left {
    border-right: 1px solid rgb(221, 225, 230);
    width: 80%;
    padding: 12px;
    padding: 0.75rem;
}

.go-trip-tabs-2 .left button {
    width: 100%;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    background: transparent;
    gap: 8px;
}

.go-trip-tabs-2 .left button .last-icon {
    margin-left: auto;
}

.go-trip-tabs-2 .right {
    width: 161px;
}

.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.location-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 400px;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    height: 350px;
    overflow-Y: scroll;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}


.go-trip-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.go-trip-form-row .column .icon {
    font-size: 13px;
    /* position: absolute; */
    /* top: 50%; */
    /* left: 10px; */
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
}

#navTab-form {
    background: rgb(255, 255, 255);
    padding: 4px;
    padding: 0.25rem;
    border-radius: 666px;
    box-shadow: rgba(18, 22, 25, 0.12) 0px 2px 8px 0px;
    width: 100%;
    margin-top: 50px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.column {
    border-right: 1px solid rgb(221, 225, 230);
    width: 23%;
}

.my-column {
    width: 27%;
    border: none;
}

.column-1st {
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
    height: 100%;
    background: transparent;
    border-radius: 666px 0.5rem 0.5rem 666px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#navTab-form input {
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    padding: 15px 10px;
    margin-left: 20px;
}

#navTab-form input:focus {
    outline: none;
    background: #fafafa;
}

#navTab-form input::-webkit-input-placeholder {
    font-weight: 600;
}

#navTab-form input::-moz-placeholder {
    font-weight: 600;
}

#navTab-form input:-ms-input-placeholder {
    font-weight: 600;
}

#navTab-form input::placeholder {
    font-weight: 600;
}

.go-trip-extra-option {
    width: 185px;
    position: relative;
}

#counter-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    padding: 5px 10px;
}

#counter-btn .last-icon {
    font-size: 18px;
    color: rgb(23, 29, 33);
}

#counter-btn a .icon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

#counter-btn .icon-wrapper .iconn {
    font-size: 18px;
    color: rgb(23, 29, 33);
}

#counter-btn .icon-wrapper .text {
    font-size: 14px;
    color: rgb(23, 29, 33);
}

.passenger-counters {
    position: absolute;
    bottom: 50px;
    right: -166px;
    left: auto;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 680px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: rgba(18, 22, 25, 0.12) 0px 4px 16px 0px;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.passenger-counters.active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.passenger-counters .left {
    width: 60%;
    border-right: 1px solid rgb(242, 244, 248);
    padding-right: 28px;
    padding-right: 1.75rem;
    margin-right: 24px;
    margin-right: 1.5rem;
}

.passenger-counters .right {
    width: 40%;
}

.passenger-counters .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.left .form-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.qty-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.qty-container .input-qty {
    margin: 0 !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px !important;
    padding: 0 !important;
    text-align: center;
    line-height: 32px;
    font-size: 18px;
    line-height: 24px;
    border: 0px !important;
    font-weight: 500;
}

.row-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row-title-wrapper .title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 20px;
    line-height: 1.25rem;
    color: rgb(23, 29, 33);
    font-weight: 600;
}

.row-title-wrapper .sub-title {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    color: rgb(135, 141, 150);
    font-weight: 400;
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
}

.passenger-counters .form-row .counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    gap: 0.5rem;
}

.passenger-counters .form-row .counter .counter-button {
    border-radius: 50%;
    background-color: rgb(242, 244, 248);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px;
    padding: 0.5rem;
    border: none;
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
    font-size: 24px;
    font-size: 1.5rem;
    color: rgb(23, 29, 33);
}

.passenger-counters .form-row .counter span {
    text-align: center;
    background-color: rgb(255, 255, 255);
    border: 0px;
    width: 24px;
    width: 1.5rem;
    padding: 0px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
}

.passenger-left-bottom {
    margin-top: 20px;
}

.passenger-left-bottom h6 {
    margin: 0;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    color: rgb(23, 29, 33);
}

.passenger-left-bottom .icon-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0px;
    padding: 0.75rem 0px;
}

.passenger-left-bottom .icon-box-wrapper-1 {
    border-bottom: 2px solid rgb(242, 244, 248);
}

.passenger-left-bottom .icon-box-wrapper .icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.passenger-left-bottom .icon-box-wrapper .icon-box .iconnn {
    font-size: 18px;
}

.passenger-left-bottom .icon-box-wrapper .text {
    border-radius: 0.75rem;
    border: 1px solid rgb(20, 106, 255);
    color: rgb(20, 106, 255);
    padding: 0px 6px;
    padding: 0px 0.375rem;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.passenger-counters .right h5 {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    font-size: 1.375rem;
    color: rgb(23, 29, 33);
}

.passenger-counters .right .description {
    color: #171D21;
    display: inline-block;
    width: 100%;
    font-weight: 500;
    margin-top: 6px;
    margin-top: 0.375rem;
    margin-bottom: 28px;
    margin-bottom: 1.75rem;
}

.right-form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -ms-grid-row-align: flex-start !important;
    align-items: flex-start !important;
}

#go-trip-find-ride {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 18px 36px;
    padding: 1.125rem 2.25rem;
    border: none;
    background: #146AFF;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 666px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#go-trip-find-ride:hover {
    background: #0653D9;
}

.responsive-title-wrapper {
    display: none;
}

button {
    cursor: pointer;
}

.passenger-counters-try .close {
    cursor: pointer;
    color: #146aff;
}

.passenger-counters-try .close:hover {
    background-color: #DDE1E6;
}

.mbPassengersSubmit {
    display: none;
}

.error {
    border: 2px solid red;
    background-color: #ffe6e6;
}

/******responsive**********/
@media(max-width: 1366px) {
    .passenger-counters.active {
        right: -140px !important;
    }

    .go-trip-search-form {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width:992px) {
    .location-wrapper .description {
        display: none;
    }

    .location-wrapper {
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0;
        z-index: 5;
        height: 100vh;
        border-radius: 0;
    }

    .go-trip-search-form {
        background: #fff;
        border-radius: 0.75rem;
        padding: 20px 20px;
        width: 80%;
    }

    .go-trip-tabs {
        display: none;
    }

    #navTab-form {
        border-radius: 0.75rem;
        margin: 0;
        box-shadow: none;
        padding: 0;
    }

    .go-trip-form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .go-trip-form-row .column {
        width: 100%;
        border-bottom: 1px solid rgb(242, 244, 248);
        border-right: none;
    }

    .calender-column {
        border: none !important;
    }

    .my-column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }


    .go-trip-extra-option-2 #counter-btn {
        display: none;
    }

    #go-trip-find-ride {
        width: 100%;
        /* margin: 0px 10px; */
    }

    .go-trip-tabs-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-transition: all 350ms ease;
        transition: all 350ms ease;
    }

    .passenger-counters-try {
        z-index: 7;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0px;
        left: 0%;
        overflow-x: scroll;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        /* padding: 25px 40px; */
        border-radius: 0;

    }

    .passenger-counters {
        padding: 0;
    }

    .passenger-counters .form-row {
        padding: 0 20px;
    }

    .passenger-left-bottom {
        padding: 0 20px;
        margin-top: 20px;
    }

    .go-trip-tabs-2 .left {
        position: relative;
    }

    .trip-tabs-dwopdown {
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        z-index: 5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        border: 1px solid #141313;
        background: #fff;
        z-index: 5;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        visibility: hidden;
    }

    .trip-tabs-dwopdown.active {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        visibility: visible;
    }

    .trip-tabs-dwopdown span {
        padding: 0.5rem 3px;
        font-weight: 700;
        font-size: 16px;
        line-height: 0.875rem;
        letter-spacing: 0.25px;
        background-color: transparent;
        color: rgb(0, 0, 0);
        -webkit-transition: 0.3s;
        transition: 0.3s;


    }

    .trip-tabs-dwopdown .active {
        background-color: rgba(21, 115, 209, 0.767);
        color: rgb(255, 255, 255);

    }

    .trip-tabs-dwopdown:hover {
        background-color: rgb(229, 242, 255);
        color: rgb(255, 255, 255);

    }

    .go-trip-tabs-2 .passenger-counters .right {
        margin-top: 20px;
        margin-right: 0px !important;
    }

    .passenger-counters .right h5 {
        padding-left: 20px;
        padding-right: 20px;

    }

    .passenger-counters .right .description {
        padding-left: 20px;
        padding-right: 20px;

    }

    .go-trip-tabs-2 .passenger-counters .left {
        margin: 0;
        width: 100%;
        padding: 20px 0;
        border-right: none;
        max-width: 500px;
        margin: 0 auto;

    }

    .responsive-title-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .responsive-title-wrapper h4 {
        font-weight: 600;
        font-size: 1.75rem;
        line-height: 1.1;
        letter-spacing: -0.25px;
        text-transform: capitalize;
        margin: 0;
    }

    .responsive-title-wrapper span {
        color: #000000;
        width: 25px;
        height: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        background: rgb(242, 244, 248);
        padding: 5px;
    }

    .passenger-left-bottom .icon-box-wrapper {
        border-bottom: 2px solid #DDE1E6;
    }

    .go-trip-tabs-2 .passenger-counters .right {
        width: 100%;
        margin-top: 20px;
        max-width: 500px;
        margin: 0 auto !important;
    }

    .passenger-counters .right .description {
        width: auto;
    }

    .column-1st {
        border-radius: none;
    }

    .passenger-counters.active {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 30px;
    }

    .icon-wrapper .iconn svg {
        font-size: 14px;
    }

    .mbPassengersSubmit {
        position: relative;
        display: block !important;
        background-color: #146AFF;
        padding: 12px 18px;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        border-radius: 40px;
        border: unset;
        outline: unset;
        bottom: 0px;
        max-width: calc(100% - 30px);
        width: 100%;
        margin: 0 auto;
    }

    .passenger-counters.passenger-counters-try .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        margin-bottom: 30px !important;
        gap: 40px !important;
    }

    .passenger-counters.active {
        right: 0 !important;
    }

}

@media(max-width:575px) {
    .go-trip-tabs-2 .right {
        width: 50%;
    }

    .go-trip-search-form {
        width: 100%;
        padding: 15px;
        margin: auto;
        overflow: hidden;
    }
}

/*********** calender *************/
#ui-datepicker-div {
    padding: 20px;
}

#go-trip-departureTime {
    margin-top: 15px;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #fff !important;
    background: #fff !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    font-weight: 600 !important;
    color: #171D21 !important;
}

/* .time-options{
    border-top: 1px solid rgb(221, 225, 230);
    padding-top: 20px !important;
} */
.ui-datepicker th {
    color: #171D21 !important;
}


/***************** checkout page css ******************/
/* Modal styles */
.go-trip-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.go-trip-modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px; /* Maximum width */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    animation: go-trip-fadeIn 0.5s;
}

.go-trip-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.go-trip-close:hover,
.go-trip-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes go-trip-fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Map styles */
#go-trip-pickup-map, #go-trip-dropoff-map {
    height: 400px;
    width: 100%;
}

/* Button styles */
.go-trip-select-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.go-trip-select-btn:hover {
    background-color: #45a049;
}
.container {
    margin: 0px auto;
    max-width: 1200px;
    padding: 32px 16px;
    padding: 2rem 1rem;
}

.details_title h2 {
    font-size: 36px;
    line-height: 39.6px;
    color: #171d21;
    font-weight: 500;
    margin-bottom: 32px;
    font-family: "Poppins", serif;
}

.details_payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 113px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.details_payment .contact-left-box {
    max-width: 656px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 656px;
    flex: 1 0 656px;
}

.details_payment .contact-right-box {
    padding: 16px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
    max-width: 367px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 367px;
    flex: 1 0 367px;
}

.contact-left-box .contact_info_box {
    padding: 16px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
}

.contact-left-box .contact_info_box h3,
.pickupDrop_off h3 {
    font-size: 22px;
    color: #171d21;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.25px;
    letter-spacing: -0.015625rem;
    margin: 0px;
    font-family: "Poppins", serif;
}

.pickupDrop_off .border-box,
.contact-left-box .contact_info_box .border-box {
    background-color: rgb(221, 225, 230);
    margin: 16px -16px;
    height: 1px;
}

.form .input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form .input-box .f_name {
    width: 50%;
}

.pickup_Point input,
.pickup_off_point input,
.form .input-box .f_name input {
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    background: rgb(242, 244, 248);
    padding: 16px 12px 16px 10px;
    border: 1px solid rgb(242, 244, 248);
    box-shadow: unset;
}

.pickup_Point input::-webkit-input-placeholder,
.pickup_off_point input::-webkit-input-placeholder,
.form .input-box .f_name input::-webkit-input-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.pickup_Point input::-moz-placeholder,
.pickup_off_point input::-moz-placeholder,
.form .input-box .f_name input::-moz-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.pickup_Point input:-ms-input-placeholder,
.pickup_off_point input:-ms-input-placeholder,
.form .input-box .f_name input:-ms-input-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.pickup_Point input::placeholder,
.pickup_off_point input::placeholder,
.form .input-box .f_name input::placeholder {
    color: #4c5258;
    font-size: 16px;
}

.pickup_Point input:hover,
.pickup_off_point input:hover,
.form .input-box .f_name input:hover {
    border: 1px solid #146aff;
}

.pickup_Point input:focus,
.pickup_off_point input:focus,
.form .input-box .f_name input:focus {
    outline: 1.5px solid #146aff;
}

.form .input-box .sur_name {
    width: 50%;
}

.form .input-box .sur_name input {
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    background: rgb(242, 244, 248);
    padding: 16px 12px 16px 10px;
    border: 1px solid rgb(242, 244, 248);
}

.form .input-box .sur_name input::-webkit-input-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.form .input-box .sur_name input::-moz-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.form .input-box .sur_name input:-ms-input-placeholder {
    color: #4c5258;
    font-size: 16px;
}

.form .input-box .sur_name input::placeholder {
    color: #4c5258;
    font-size: 16px;
}

.form .input-box .sur_name input:hover {
    border: 1px solid #146aff;
}

.form .input-box .sur_name input:focus {
    outline: 2px solid #146aff;
}

.form .add-contact {
    text-align: end;
}

.form .add-contact button {
    color: #146aff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    margin-top: 20px;
    background-color: transparent;
    border: none;
}

.form .add-contact h3:hover {
    color: #0653d9;
}

.confirm_box input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #878d96;
    cursor: pointer;
}

.confirm_box label {
    line-height: 18.62px;
    color: #171d21;
    font-size: 14px;
    font-family: "Poppins", serif;
    position: relative;
    top: -5px;
    left: 5px;
    cursor: pointer;
}

/* special box css */
.details_payment .contact_info_box_2 {
    margin-top: 16px;
    padding: 20px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
}

.contact_info_box_2 .all_popup_box {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact_info_box_2 .all_popup_box .message_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.contact_info_box_2 .all_popup_box .message_box p {
    color: #4c5258;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    font-family: "Poppins", serif;
}

.contact_info_box_2 button {
    background-color: transparent;
    border: none;
    font-size: 16px;
    line-height: 18px;
    color: rgb(76, 82, 88, 0.5);
    cursor: pointer;
}

/* third box css */
.contact_info_box.third_box {
    margin-top: 16px;
}

.upgrade_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    border: 1px solid rgb(54, 136, 255);
    border-radius: 0.75rem;
    padding: 16px;
    padding: 1rem;
    overflow: hidden;
}

.upgrade_box .upgrade_photo_box h2 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #171d21;
}

.upgrade_box .upgrade_photo_box .car_box {
    background-color: rgb(242, 244, 248);
    padding: 0px 16px;
    padding: 0px 1rem;
    border-radius: 0.5rem;
    height: 96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.upgrade_content_box .recommand h5 {
    color: #009c00;
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    padding: 6px;
    border: 1px solid #009c00;
    border-radius: 666px;
    width: 135px;
    margin-bottom: 16px;
}

.upgrade_content_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #171d21;
    margin-bottom: 16px;
}

.upgrade_content_box button {
    background-color: #146aff;
    font-weight: 500;
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 666px;
    border: none;
    cursor: pointer;
}

/*** four box css *****/
.contact_info_box.four_box {
    margin-top: 16px;
}

.contact_info_box.four_box .promo_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact_info_box.four_box button {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #146aff;
    background-color: #f2f4f8;
    border-radius: 666px;
    border: none;
    padding: 12px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.contact_info_box.four_box button:hover {
    background-color: #dde1e6;
}

.pay_method_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.payment_option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.payment_option input[type="radio"] {
    accent-color: #007bff;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.payment_option label {
    font-size: 14px;
    font-weight: 400;
    color: #171d21;
    line-height: 18.62px;
    cursor: pointer;
}

/* five box */
.contact_info_box.five_box {
    margin-top: 16px;
}



/* Modal  */

.modal-toggle {
    cursor: pointer;
    color: #268bd2;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(18, 22, 25, 0.3);
    z-index: 111;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    pointer-events: auto;
    display: none;
}

.modal-wrapper.active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 999999;
}

.modal-wrapper>div {
    width: 400px;
    min-height: 20%;
    height: auto;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    vertical-align: middle;
    padding: 24px;
    border-radius: 16px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(18, 22, 25, 0.12) 0px 4px 16px 0px;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.close {
    background: #F2F4F8;
    color: #146aff;
    text-align: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 8px;
    font-size: 16px;
    position: relative;
    z-index: 3;
}

.close:hover {
    background: #DDE1E6;
    color: #146AFF;
}

.modal_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.modal_header h2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 42px);
    flex: 0 0 calc(100% - 42px);
    font-size: 28px;
    line-height: 31px;
    font-weight: 500;
    color: #171d21;
    font-family: "Poppins", serif;
}

.modal_content {
    position: relative;
}

#openModalPromo .modal_content input {
    border-radius: 0.5rem;
    box-shadow: rgb(135, 141, 150) 0px 0px 0px 0px inset;
    border: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgb(242, 244, 248);
    padding: 12px 16px;
    padding: 0.75rem 1rem;
    -webkit-transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
    border: unset;
    outline: unset;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 34px;
}

#openModalrequirmt .modal_content textarea {
    width: 100%;
    min-height: 98px;
    padding: 18px;
    font-weight: 500;
    color: rgb(47, 52, 57);
    font-family: "Poppins", serif;
    border: 1px solid rgb(221, 225, 230);
    border-radius: 8px;
    margin-bottom: 16px;
}

#openModalrequirmt .modal_content button,
#openModalPromo .modal_content button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.25px;
    font-size: 16px;
    width: 100%;
    border-radius: 40px;
    background-color: #146AFF;
    color: #FFF;
    border: unset;
    font-family: "Poppins", serif;
    outline: unset;
    line-height: 18px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    --webkit-transition: 0.3s;
    --moz-transition: 0.3s;
}

#openModalrequirmt .modal_content button:hover,
#openModalPromo .modal_content button:hover {
    background-color: #0653D9;
}

.pickupDrop_off {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
    margin-top: 16px;
}

.war_message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.war_message svg path,
.war_message svg {
    fill: #146AFF;
    stroke: #146AFF;
    font-size: 16px;
}

.war_message p {
    font-family: "Poppins", serif;
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    color: #0653d9;
}

.pickup_Point,
.pickup_off_point {
    position: relative;
}

.pickup_Point {
    margin-bottom: 8px;
}

.pickup_Point input,
.pickup_off_point input {
    padding-left: 46px;
}

.pickup_Point svg,
.pickup_off_point svg {
    font-size: 17px;
    fill: rgb(23, 29, 33);
    stroke: rgb(23, 29, 33);
    position: absolute;
    top: 16px;
    left: 16px;
}

/* Sidebar   */
.itinerary_header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Poppins", serif;
    margin-bottom: 16px;
}

.itinerary_header h4 {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #171d21;
    font-family: "Poppins", serif;
}

.itinerary_header>button {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #146AFF;
    padding: 9px 14px;
    background-color: transparent;
    border: unset;
    outline: unset;
    font-family: "Poppins", serif;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 30px;
    cursor: pointer;
}

.itinerary_header>button:hover {
    background-color: #F2F4F8;
}

.itinerary_content {
    position: relative;
}

.itinerary_content ul {
    padding-left: 18px;
}

.itinerary_content ul li {
    font-size: 18px;
    line-height: 21px;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: #171d21;
    margin-bottom: 8px;
}

.itinerary_content ul li:last-child {
    margin: 0;
}

.itinerary_content .down_arrow_icon {
    position: absolute;
    top: 18px;
    left: -4px;
}

.itinerary_date {
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    color: #171d21;
    font-family: "Poppins", serif;
    margin: 8px 0;
}

.itinerary_top_qty {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.itinerary_top_qty span {
    font-size: 14px;
    line-height: 11px;
    font-weight: 400;
    color: #171d21;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 3px;
}

.itinerary_top_qty span svg {
    font-size: 11px;
}

.iti_pdt_item {
    position: relative;
    border-top: 1px solid rgb(221, 225, 230);
    border-bottom: 1px solid rgb(221, 225, 230);
    padding: 15px 0;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.iti_pdt_item_left h4 {
    font-family: "Poppins", serif;
    color: #171d21;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 4px;
;
}

.iti_pdt_item_left h5 {
    font-family: "Poppins", serif;
    margin-bottom: 8px;
    color: #5f686c;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
}

.iti_pdt_item_left .iti_pdt_qty span {
    font-size: 14px;
    line-height: 11px;
    font-weight: 400;
    color: #171d21;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 3px;
}

.iti_pdt_item_left .iti_pdt_qty svg {
    font-size: 11px;
}

.iti_pdt_item_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
}

.iti_pdt_item_right img {
    max-width: 100%;
    width: auto;
}


.itinerary_ft_hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.itinerary_ft_hd h5 {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    color: #000;
}

.itinerary_ft_hd p {
    font-family: "Poppins", serif;
    color: #000;
    font-size: 28px;
    line-height: 31px;
}

.itinerary_ft_cnt p {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    font-family: "Poppins", serif;
    color: #171d21;
    margin-bottom: 24px;
    padding-top: 14px;
    text-align: justify;
}

.itinerary_ft_ftCnt {
    border: 1px solid #00B000;
    padding: 14px;
    border-radius: 8px;
    background-color: #00000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    font-family: "Poppins", serif;
    color: #171d21;
    position: relative;
}

.itinerary_ft_ftCnt span {
    padding-left: 26px;
    display: block
}

.itinerary_ft_ftCnt img {
    position: absolute;
    left: 10px;
    top: 16px;
}

@media(max-width: 1199px) {
    .details_payment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        gap: 30px;
    }

    .details_payment .contact-right-box {
        max-width: 656px;
        width: 100%;
    }

}

@media(max-width: 767px) {

    .contact-left-box .contact_info_box h3,
    .pickupDrop_off h3 {
        font-size: 17px;
        line-height: 1.15;
    }
}

@media(max-width: 575px) {
    .contact_info_box .form .input-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .modal-wrapper>div {
        max-width: 400px;
        width: 90%;
    }

    .contact_info_box .form .input-box .f_name,
    .contact_info_box .form .input-box .sur_name {
        width: 100%;
    }

    div.upgrade_box .upgrade_photo_box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
        flex: 0 0 110px;
    }

    .upgrade_box .upgrade_photo_box img {
        max-width: 100%;
        width: auto;
    }

    .upgrade_box .upgrade_photo_box .car_box {
        height: 63px;
    }

    .itinerary_ft_ftCnt {
        font-size: 13px;
        line-height: 16px;
    }

    .confirm_box label {
        line-height: 24px;
        font-size: 12px;
        position: relative;
        top: -7px;
    }

    .upgrade_content_box button {
        font-size: 13px;
        padding: 10px 16px;
    }

    .upgrade_box .upgrade_photo_box h2 {
        font-size: 18px;
        line-height: 20px;
    }

    .upgrade_content_box p {
        font-size: 14px;
        line-height: 17px;
    }

    .war_message p {
        font-size: 12px;
        line-height: 14px;
    }

    .contact_info_box.four_box button {
        font-size: 13px;
        line-height: 13px;
    }

    .contact_info_box.four_box .promo_box {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }
}



/**
progress bar steps
 */
.gotrip-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #6D6875;
    height: 4rem;
}

.gotrip-steps > .gotrip-step {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 0.875rem;
    color: #6D6875;
}

.gotrip-steps > .gotrip-step:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #e6e6e6;
    color: #e6e6e6;
    width: 2rem;
    height: 2rem;
    text-align: center;
    margin-bottom: -4.2rem;
    line-height: 1.9rem;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1rem;
}

.gotrip-steps > .gotrip-step:after {
    content: '';
    position: absolute;
    display: block;
    background: #e6e6e6;
    width: 100%;
    height: 0.125rem;
    top: 1rem;
    left: 50%;
}

.gotrip-steps > .gotrip-step:last-child:after {
    display: none;
}

.gotrip-steps > .gotrip-step.is-complete {
    color: #6D6875;
}

.gotrip-steps > .gotrip-step.is-complete:before {
    content: '\2713';
    color: #146AFF;
    background: #d0e1ff;
    border: 2px solid #146AFF;
}

.gotrip-steps > .gotrip-step.is-complete:after {
    background: #146AFF;
}

.gotrip-steps > .gotrip-step.is-active:before {
    color: #FFF;
    border: 2px solid #146AFF;
    background: #146AFF;
    /* margin-bottom: -4.9rem; */
}

*, *:after, *:before {
    box-sizing: border-box;
}

.gotrip-steps {
    margin-bottom: 3em;
}




.autocomplete-items {
    border: 0 !important;
    margin-top: 2px;
    border-radius: 10px;
    max-height: 350px !important;
}
.autocomplete-item .address-parts {
    font-family: 'matterFont_1c0e0c';
}
.fast-part {
    font-size: 14px;
    color: #171d21;
}
.last-part {
    font-size: 12px !important;
    color: #697077 !important;
    font-weight: 400;
    margin-top: 0 !important;
    line-height: 1.2em;
}

.sp_day_container .my_row .go-trip-form-row button.gotrip-remove-day-btn {
    display: none;
}

.sp_day_container:last-child .gotrip-remove-day-btn {
    display: block !important;
}

.flight-number-handler {
    display: none;
}

.airport-flight-number-desk-box.active {
    display: block;
}

.flight-number-area {
    display: flex;
    align-items: center;
}

.icon-column {
    flex: 0 0 auto;
    margin-right: 10px;
}

.input-column {
    flex: 1;
}

.airport-flight-number-desk-box.flight-number-handler.active {
    max-width: 264px;
    background: #ffffff;
    padding: 0px 10px;
    border-radius: 5px;
    margin-top: 10px;
}

input.airport-flight-number-desk {
    border: unset;
}

.flight-number-area {}

.flight-number-area .icon-column {
    padding: 0px 10px;
}

.airport-flight-number-desk-box.flight-number-handler.active {
    border-radius: 30px 5px 5px 30px !important;
}

.mobile-flight-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.model-close-area {
    text-align: right;
}

.model-close-area a {
    background: rgb(20, 106, 255);
    margin-right: 20px;
    padding: 10px 22px;
    border-radius: 7px;
    color: #fff;
    font-weight: 500;
}

.model-close-area {
    display: none;
}

.remove-text-in-input {
    background: rgb(135, 141, 150) !important;
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
    color:#ffff !important;
    top:35% !important;
}

#gotrip-itinerary-form .remove-text-in-input {
    right: 7px !important;
}
button[disabled].gotrip-add-destination-btn {background: #0653d9ab;}

@media(max-width: 992px) {
    .airport-flight-number-desk-box.active {
        display: none;
    }

   .flight-number-mobile.flight-number-handler.active {
        display: block;
    }
    .model-close-area {
        display: block;
    }
}

@media (max-width: 450px) {
    .address-input {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    body .passenger-counters.active {
        left: 0px !important;
        width: 90vw !important;
        margin: auto !important;
    }
}


@media (max-width: 992px) {
    .sp_day_container .gotrip-destination-container button.gotrip-remove-destination-btn {
        top: 5px !important;
        right: 5px !important;
        background: #146aff !important;
    }
    .go-trip-form-row {
        width: 100% !important;
    }
}

