/* Search Section */
.car-list-banner {
    width: 100%;
    height: 350px;
    background-image: url("../../Images//Tesla/car-view-cover.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.search-bar-area {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar {
    width: 30%;
    height: 36px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 5px;
}

.search-bar input {
    color: #ffffff;
    width: 94%;
    background-color: transparent;
    border: none;
}

.search-bar input::placeholder {
    color: #ffffff;
    font-family: gotham-book, serif;
}

.search-bar input:focus, textarea:focus, select:focus {
    outline: none;
}


/* Filter Cars Section */
.filter-cars select {
    width: 100%;
    color: #ffffff;
    background-color: transparent;
    padding: 10px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    /*font-family: cocogoose-ultralight, serif;*/
    margin-bottom: 10px;
}

.filter-cars select option {
    background-color: #317aad;
}

.filter-cars h3 {
    color: #ffffff;
    background-color: #003471;
    padding: 20px;
    margin-bottom: 0;
}

.filter-cars-background {
    background: linear-gradient(45deg, #005393, #0497f1);
}

.filter-value-input input {
    color: #ffffff;
    width: 45%;
    padding: 5px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: transparent;
}

.vehicle-location-input::placeholder, .filter-value-input input::placeholder {
    color: #ffffff;
}

.vehicle-location-input:focus, .filter-value-input input:focus, textarea:focus, select:focus {
    outline: none;
}

.filter-cars label {
    color: #ffffff;
    font-size: 13px;
    font-family: cocogoose-ultralight, serif;
}

.vehicle-location-input {
    width: 100%;
    color: #ffffff;
    padding: 5px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: transparent;
    font-family: cocogoose-ultralight, serif;
}

.filter-cars button {
    color: #ffffff;
    font-size: 20px;
    background: linear-gradient(45deg, #a00005, #cd1217);
    width: 100%;
    padding: 20px;
    border-radius: 5px !important;
    border: none;
}


/* Our Stock Section */
.our-stock h3 {
    color: #ff0000;
    font-family: orbitron-black, serif;
    float: left;
}

.our-stock h5 {
    font-family: robot-go, serif;
    font-size: 125%;
}
.our-stock .singleVehicle {
    width: 98%;
    margin-bottom: 20px;
}
.our-stock h2 {
    font-family: robot-go, serif;
    font-weight: lighter;
    opacity: .8;
    font-size: 160%;
}

.our-stock a {
    font-family: cocogoose-ultralight, serif;
    font-weight: bolder;
    color: #000;
    border: 2px solid #d42d12;
}

.car-name {
    font-family: gotham-book, serif;
}

.our-stock-card-p {
    background-color: #D3D3D3FF;
    width: 47%;
    padding: 5px;
    border-radius: 5px;
    font-size: 15px;
    font-family: gotham-medium, serif;
}

.our-stock-card-button {
    border: 1px solid #d42d12;
    padding: 2%;
    color: #d42d12;
    font-family: gotham-medium;
    font-size: 135%;
}
.our-stock-card-button:hover {
    color: #686868;
}

a.load-more-btn {
    font-family: gotham-medium, serif;
    font-size: larger;
    background-color: #f5d000;
    border-radius: 5px !important;
    border: none;
    text-decoration: none;
    cursor: pointer;
}
    a.load-more-btn:hover{
        color: #fff;
    }
.our-stock .protuctHR {
    border: 2px solid #0077c3;
    margin: 20px 10px 30px;
    opacity: 1;
}
.our-stock .image-context {
    height: 150px;
    width: 100%;
    overflow: hidden;
}
    .our-stock .image-context > .image {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        display: table;
        transition: all 1s;
    }
    .our-stock .image-context > .image:hover {
        height: 110%;
        width: 110%;
    }
        .our-stock .image-context > .image > .w-mark {
            color: rgba(255,255,255,.5);
            font-size: 30px;
            font-weight: bold;
            height: 100%;
            width: 100%;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            pointer-events: none;
        }

        .our-stock .image-context > .image > .sold {
            background-color: rgba(255, 255, 255, 0.70);
            color: #ccc;
            font-size: 30px;
            font-weight: bold;
            height: 100%;
            width: 100%;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }
            .our-stock .image-context > .image > .sold > img {
                width: auto;
                object-fit: cover;
                max-height: 70px;
                object-position: center;
            }
@media only screen and (max-width: 600px) {
    /* Search Section */
    .car-list-banner {
        height: 175px;
    }

    .search-bar-area {
        height: 175px;
    }

    .search-bar {
        width: 300px;
    }

    .search-bar input {
        width: 90%;
    }
    .our-stock h3 {
        float: none;
    }

    .our-stock-card-p {
        font-size: 12px;
    }

    .our-stock .card-body h2, h5 {
        font-size: 18px !important;
    }
}