.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    z-index: 998;

}
.popup {
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    position: fixed;
    top: 50%;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 999;


    

}

.popup__content {
    padding: 20px 40px;
    padding-bottom: 30px;
    text-align: center;
}

.popup__img{
    width: 100%;

} 

.popup__close {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;

}

.popup__close-svg {
    height: 30px;
    margin-right: 20px;
    margin-top: 15px;
    
}

.popup__button {
    margin-top: 24px;


}


@media only screen and (max-width: 575px) {
    .popup{
        width: 90%;
    }
}