
#vue_fav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    align-items: center;
}

.container {
    height: auto;
    width: 100%;
    max-width: 1550px;
    padding: 0px 20px;
}

.favorieten-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    text-align: center;
    background-image: url("http://rvlautos.nl/wp-content/uploads/2023/10/RVL Auto's september 2023-63.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}
    
.favorieten-header h1 {
    color: #FFFFFF;
    font-family: "Montserrat", Montserrat;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 80px;
}

.favorieten-header h1:after {
     content: '';
    width: 200px;
    height: 0.1em;
    display: inline;
    position: absolute;
    left: 50%;
    /*Top: 10px;*/
    margin-top: 10px;
    transform: translate(-50%, 65px) skew( -20deg, 0deg);
    -webkit-transform: translate(-50%, 65px) skew( -20deg, 0deg);
    background: rgb(1,85,159);
    background: linear-gradient(90deg, rgba(1,85,159,1) 0%, rgba(0,128,200,1) 100%);
    transform-origin: top left;
}

#card-container {
    margin-top: 100px;
    width: 100%;
    max-width: 1550px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
}

.auto-container {
    display: flex;
    flex-direction: row;
}

.flex-invisible {
        visibility: hidden;
    }
    
@media only screen and (max-width: 700px) {
    .container {
            width: 100%;
    }
    
    #card-container {
            padding: 0px 20px 0px 20px;
    }
}
    
@media only screen and (max-width: 600px){
    
    .favorieten-header {
        min-height: 480px;
    }
    
    .favorieten-header h1
        {
    font-size: 40px;
    
        }
    }