@media(min-width:1000px){
    .ac-all-models-wrapper{
        position: fixed;
        top: 4vw;
        width: 32vw;
        height: 95vh;
        background-color: #fff;
        justify-content: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        z-index: 9;
        right: -100vw;
        transition: right 1.5s;
    }
    .ac-all-models-wrapper.ac-open{
        right:0
    }
    .ac-all-models-wrapper a{
        font-family: "HyundaiSansHead-Regular";
        color: #000;
        text-decoration: none;
    }
    .ac-all-models-wrapper .ac-all-models{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 84%;
        overflow-y: auto;
        height: 89%;
        padding-bottom: 1.9rem;
    }
    .ac-all-models-wrapper .ac-all-models div{
        width: 12vw;
        border-bottom: 0.1rem solid #e4dbd2;
        padding: 3%;
        height: 10vw;
    }
    .ac-all-models-wrapper .ac-all-models div:nth-of-type(odd) {
        border-left: 0.1rem solid #e4dbd2;
    }
    /* .ac-all-models-wrapper .ac-all-models div:nth-last-of-type(2), */
    .ac-all-models-wrapper .ac-all-models div:last-of-type{
        border-bottom: 0;
        border-left: 0;
    }
    .ac-all-models-wrapper .ac-all-models img{
        width: 97%;
        transition: width 0.5s
    }
    .ac-all-models-wrapper .ac-all-models h3{
        font-weight: 100;
        margin-top: -0.8vw;
        font-size: 1vw;
        height: 1.5vw;
        transition: font-size 0.5s, margin-top 0.5s;
    }
    .ac-all-models-wrapper .ac-close-all-models{
        border-left: 0;
        position: relative;
        width: 100%;
    }
    .ac-all-models-wrapper .ac-close-all-models button {
        background-color: transparent;
        border: 0;
        float: left;
        margin-left: 18px;
        width: 2rem;
        height: 2rem;
    }
    .ac-all-models-wrapper .ac-close-all-models button svg{
        width: 100%;
        height: 100%;
    }
    .ac-all-models-wrapper .ac-all-models div:hover img{
        width: 90%;
    }
    .ac-all-models-wrapper .ac-all-models div:hover h3 {
        font-size: 1..2vw;
        margin-top: -0.7vw;
    }
}

@media(max-width:1000px){
    .ac-all-models-wrapper{
        display:none
    }
}