.popup{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup.is-open{
    display: block;
}

.popup__dialog{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: min(500px, calc(100% - 40px));
    min-height: min(400px, calc(100vh - 40px));
    max-height: calc(100vh - 40px);
    padding: 48px 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-sizing: border-box;
    text-align: center;
}

.popup__title{
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
}

.popup__icon{
    display: block;
    width: auto;
    height: auto;
    max-width: 80px;
    margin: 0 0 56px;
}

.popup__description{
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: lowercase;
    color: #000000;
    cursor: pointer;
}

.popup__description:hover{
    text-decoration: underline;
}

body.popup-open{
    overflow: hidden;
}

@media (max-width: 768px){
    .popup__dialog{
        padding: 36px 24px;
        min-height: auto;
    }

    .popup__title{
        margin-bottom: 16px;
        font-size: 22px;
    }

    .popup__icon{
        margin-bottom: 44px;
    }

    .popup__description{
        font-size: 18px;
    }
}
