@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

.popup-container {
    width: 90%;
    min-width: 288px;
    max-width: 770px;
    min-height: 381px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999999;
    box-shadow: 0 0 8px #000;
    display: none;
}

.popup-logo-container {
    width: 143px;
    height: 148px;
    top: 0;
    margin-left: 52px;
    background: #f0bc5e;
    position: relative;
}

.popup-logo {
    position: absolute;
    top: 23px;
    left: 20px;
    width: 102px;
    height: 104px;
}

.popup-title {
    margin: 32px 6.75%;
    margin-bottom: 16px;
    letter-spacing: 6px;
    font-weight: bold;
    font-size: 30px;
    color: #F0BC5E;
}

.popup-info {
    margin: 0 6.75%;
    width: 296px;
    max-width: 90%;
    color: #202625;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Montserrat', sans-serif;
}

.popup-close-container {
    position: absolute;
    width: 33px;
    height: 33px;
    top: 20px;
    right: 28px;
    background: #f0bc5e;
    cursor: pointer;
}

.popup-close {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {

    .popup-title {
        font-size: 26px;
    }

    .popup-info {
        font-size: 14px;
    }

}