.popup {
    position: fixed;
    left: 0;
    top: 0;

    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;

    opacity: 0;
    z-index: 1000;
    transition: 300ms;

    display: none;
}

.popup .innerPopup {
    max-width: 500px;
    min-width: 400px;
    background-color: #2a2d33;
    box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 50px));
    padding: 25px;

    transition: 300ms;
    color: white;
    box-sizing: border-box;
}

.popup .innerPopup h3 {
    font-size: 23px;
    margin-bottom: 20px;
    padding-right: 25px;
}

.popup .innerPopup h3.big {
    font-size: 28px;
}

.popup .innerPopup h3.center {
    width: 100%;
    text-align: center;
    display: block;
}

.popup .innerPopup p {
    line-height: 1.3em;
}



.popup .innerPopup h3.topHeader {
    padding-right: 50px;
}

.popup .innerPopup .normalButton {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    background-color: rgb(43, 116, 43);
    border-radius: 5px;
    padding: 7px 15px;
    margin-top: 25px;
    display: block;
    width: max-content;
    margin-left: auto;
    cursor: pointer;
}

.popup .innerPopup .normalButton.center {
    margin-left: auto;
    margin-right: auto;
}

.popup .innerPopup .closeIcon {
    height: 35px;
    position: absolute;
    top: 19px;
    right: 23px;
    cursor: pointer;
}

.popup .innerPopup .mainTopIcon {
    width: 60%;
    display: block;
    margin: 20px auto;
    margin-bottom: 30px;
}

.popup .innerPopup p.center {
    display: block;
    width: 100%;
    text-align: center;
}

.popup .innerPopup a {
    color: rgb(172, 172, 255);
}

.popup.enable {
    display: block;
    /*backdrop-filter: blur(4px);*/
}

.popup.show {
    opacity: 1;
}

.popup.show .innerPopup {
    /*top: 50%;*/
    transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
    .popup .innerPopup h3 {
        font-size: 20px;
    }

    .popup .innerPopup {
        width: 92%;
        min-width: 0px;
    }
}