﻿#chauffeur-container {
    background-image: url(/img/chauffeur.jpg);
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#chauffeur-div {
    min-height: 80dvh;
    background: rgba(0, 0, 0, 0.75);
    border: 4px solid #120e0e;
    padding: 25px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 2;
}

.progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: #198754;
    z-index: -1;
    transition: width 0.3s;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: #1A1A1A;
    border: 3px solid #AEC9E5;
    color: #AEC9E5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    transition-delay: 0s;
}

    .step-circle:after {
        content: none;
        transition: all ease 1s;
        transition-delay: 1s;
    }

    .step-circle.active-step {
        background-color: #198754;
        border: 3px solid #fff;
        color: #fff;
        transition-delay: 0.2s;
    }

    .step-circle:nth-last-child(1 of .active-step) {
        background-color: #1A1A1A;
        color: white;
    }

        .step-circle:nth-last-child(1 of .active-step):after {
            content: '';
            position: absolute;
            top: 37px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #e8e8e8;
            clear: both;
            z-index: -1;
        }


.request-container {
    min-height: 60dvh;
    position: relative;
}

#step-carousel {
    margin-top: 15px;
    border: 1px dashed;
}

.carousel {
    position: relative;
    perspective: 100px;
}

.carousel-item {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    counter-increment: item;
    min-height: 60dvh;
}

    .carousel-item h2 {
        padding: 20px;
    }

#vehicle-carousel {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 0 30px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    transition: all 0.2s;
}

    #vehicle-carousel::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

.vehicle-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 10px;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}


.hotel-option {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding: 0 30px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    transition: all 0.2s;
}

    .hotel-option::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

.vehicle-card {
    border: none;
    max-width: 250px;
    transition: all 0.3s;
}

    .vehicle-card.active {
        background-color: #f8f9fa8a !important;
    }

    .vehicle-card .card {
        transition: all 0.3s;
        background: #f8f9fa21;
        backdrop-filter: brightness(0.5);
        -webkit-backdrop-filter: brightness(0.5);
    }

    .vehicle-card .card-body {
        min-height: 400px;
        min-width: 150px;
        text-align: center;
    }

.vehicle-details {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    left: 0;
}

.vehicle-card.active .card {
    background: transparent !important;
    color: black !important;
    backdrop-filter: brightness(1);
    -webkit-backdrop-filter: brightness(1);
}

.vehicle-card.active .vehicle-img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.selected-car-card {
    height: 250px;
}

    .selected-car-card .vehicle-img {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }

@@media(max-width:425px) {

    .vehicle-card {
        border: none;
        width: 225px;
        transition: all 0.3s;
        max-width: 85%;
        margin: 0 10px;
        padding: 0;
    }

        .vehicle-card .card {
            transition: all 0.3s;
            width: 100%;
        }

        .vehicle-card .card-body {
            height: 400px;
            width: 100%;
            text-align: center;
            margin: 0;
            padding: 0;
        }

    .vehicle-img {
        width: 150px;
        height: 150px;
        top: 25px;
        position: relative;
        margin: 0;
    }
}



#adult-show .fa-person {
    font-size: 1.7rem;
}

#children-show .fa-child {
    font-size: 1.4rem;
}

#baby-show .fa-baby {
    font-size: 1rem;
}

.card-body .fa-hotel {
    font-size: 140px;
}

.star-details {
    margin-top: 20px;
}


.star-card {
    border: none;
    max-width: 300px;
    transition: all 0.3s;
}

    .star-card .card {
        transition: all 0.3s;
    }

    .star-card .card-body {
        min-height: 300px;
        min-width: 200px;
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

.star-details {
    text-align: center;
    width: 100%;
}

.star-card.active .card {
    background: transparent !important;
    color: black !important;
}

.star-card.active .btn-outline-light {
    border-color: #000;
    color: #000 !important;
}

.alert-danger {
    --bs-alert-bg: #c93845;
}

#travellers-div i.fa-person {
    font-size: 1.7rem;
}

#travellers-div i.fa-baby {
    font-size: 1rem;
}

.vehicle-check + .btn:not(.active):hover {
    background: #3f3f3f;
}

    .vehicle-check + .btn:not(.active):hover img {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }


#summary-container i.fa-person {
    font-size: 1.7rem;
}

.t-p .text-info, .t-p.text-info, .a-p .text-info, .a-p.text-info {
    color: #AEE8F3 !important;
}

.fa-hotel::before {
    content: "\f594" !important;
}

.selected-car-card {
    align-items: center;
    background: #f8f9fa8a !important;
    color: #000;
}

.custom-map-control-button {
    width: 40px;
    border-radius: 5px;
}
