.pop-all {
    cursor: pointer;
}

.pop-all .pop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 1rem;
    z-index: 10;
}

.pop-all .pop .pop-section {
    position: relative;
    width: 25vw;
}

.pop-all .pop .pop-section img {
    width: inherit;
    border-radius: calc(var(--border-radius) * 2);
}

.pop-all .pop .pop-section .close {
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: 1.5%;
    right: 2%;
    background-image: url("../../img/all/close.svg");
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.pop-all .opacity {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9;
    opacity: 0.8;
}


@media screen and (max-width: 992px) {

    .pop-all .pop {
        left: 0;
        top: 0;
    }

    .pop-all .pop .pop-section {
        width: 70vw;
    }

    .pop-all .pop .pop-section .close {
        width: 3rem;
        height: 3rem;
    }
    
}

@media screen and (max-width: 768px) {

    .pop-all .pop {
        left: 0;
        top: 0;
    }

    .pop-all .pop .pop-section .close {
        width: 3rem;
        height: 3rem;
    }
    

    .pop-all .pop .pop-section {
        width: 70vw;
    }
    
}