@charset "utf-8";


.modalWrapper{
    display: none;
}


.modalImageWrapper {

    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100vh;

} 

.modalImageWrapper img{
    width: max-content;
    max-width: 80%;
    max-height: 95%;
    cursor: pointer;
}


.modalCloseButton:before {
    transform: rotate(45deg);
}

.modalCloseButton:after {
    transform: rotate(-45deg);
}

.modalCloseButton:before, .modalCloseButton:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: #fff;
}

.modalCloseButton:hover {
    opacity: 1;
}

.modalCloseButton{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
        
}


.modalOpen{
    display: block;
}



