body{
    font-family: 'Maven Pro', sans-serif;
    overflow-x: hidden;
}

.geslacht{
    margin-top: 20px;
}

.merk{
    margin-top: 20px;
}

.naam{
    margin-top: 30px;
}

.kleur{
        margin-top: 12px;
}

.swiper{
    width: 100%;
    }

.swiper-button-prev::after {
    color: black; 
}

.swiper-button-next::after {
    color: #000; 
}

.swiper-pagination-bullets{
    color: black;
}

input[type="checkbox"]:checked  {
    color: #ef7d13;
}

#modal{
    position: absolute;
    z-index: 100;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0,0 , 0.5);
    width: 100%;
    height: 100vh;
}

#modalImg{
    width: 100%;
    height: 80%;
    object-fit: contain;
}

.close{
    position: absolute;
    margin-top: -500px;
    margin-left: 300px;
}

.close:hover{
    cursor: pointer;
}

@media screen and (min-width: 900px) {
    .naam{
        margin-top: 0px;
    }
   .merk{
       margin-top: 10px;
    }
    .geslacht{
        margin-top: 40px;
    }
    .kleur{
        margin-top: 12px;
    }
    .swiper{
        width: 325px;
        height: 100%;
    }


    #modal{
        position: absolute;
        z-index: 100;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5);
        /* background-color: rgba(255, 255, 255, 0.9); */
    }
    
    #modalImg{
        width: 50%;
    }
    
    .close{
        position: absolute;
        margin-left: 1300px;
        margin-top: -600px;
    }
    
    .close:hover{
        cursor: pointer;
    }
    
}


.disable{
    opacity: 0;
    animation: dissolve 1s;
    position: absolute;
    right: 300;
}

@keyframes dissolve{
    0%{
        margin-left: 0;
        opacity: 1;
        display: flex;
    }
    100% {
        opacity: 0;
        display: none;
        position: absolute;
        right: -250px;
    }
}