.body{
    position: relative;
}
.vehilce-details-view {
    width: 100%;
    position: relative;
    min-height:1920px;
    padding:50px;
}

.vehicle-images {
    width: 35%;
    position: relative;
    left: 20%;
}

.related-vehicles{
    width: 70%;
    position:relative;
    left:20%;
}

.vehicle-details {
    width: 30%;
    padding: 10px;
    position: absolute;
    left: 60%;
    top: 50px;
    min-height: 200px;
    background-color: rgb(255, 247, 247);
    border: 1px dotted blue;
    box-shadow: #717171;
    border-radius: 10px;
}

/* Slider */
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides > img{
    max-height: 400px;
}


/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    /* margin-top: -22px; */
    padding: 16px;
    padding-top: 35%;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 100%;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 100px;
    width: 100px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot > img {
    height: 100px;
    width: 100px;
    border-radius: 5px;
}

.vehicle-img-small > .active > img{
    border: 2px dotted red;
}
.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 2s;
}

.fade:not(.show) {
    opacity: 1;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}




/* Price Calculator */

#priceCalculated{
    text-align: right;
}




/* Media Screen */

@media only screen and (max-width: 378px) {
    table.table.table-light.table-hover.table-striped.table-bordered {
        font-size: xx-small;
    }
    .dot {
        height: 50px;
        width: 50px;
    }
    .dot > img {
        height: 50px;
        width: 50px;
    }
}
@media only screen and (max-width: 1285px) {
    .vehicle-images , .related-vehicles {
        left: 25%;
    }
    .vehicle-details{
        left: 65%;
    }
    
}
@media only screen and (max-width: 1038px) {
    .vehicle-images , .related-vehicles {
        left: 30%;
    }
    .vehicle-details{
        left: 70%;
    }
    
}
@media only screen and (max-width: 991px) {
    .vehicle-images , .related-vehicles {
        width: 100%;
        position: relative;
        left: 0;
    }

    .vehicle-details {
        width: 100%;
        padding: 10px;
        position: relative;
        left: 0;
        top: 0;
        min-height: 200px;
        background-color: rgb(255, 247, 247);
        box-shadow: #717171;
        border-radius: 10px;
    }
}
