[data-popup] {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(31, 31, 31, 0.6);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

[data-popup].active {
    display: flex;
}

.popup-cont {
    max-width: 828px;
    width: 100%;
    max-height: calc(100% - 20px);
    background-color: #D9D9D9;
    border-radius: 2px;
    padding: 78px 79px 57px 79px;
    box-sizing: border-box;
    overflow-y: scroll;
    position: relative;
}

.popup-cont::-webkit-scrollbar {
    display: none;
}

.popup-title {
    color: #4B4D52;
    font-family: "Apercu Pro";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    text-transform: uppercase;
    margin-bottom: 39px;
}

.popup-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #1F1F1F;
    font-family: "Apercu Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 34px;
}

.popup-cont form {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.popup-cont form label {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup-cont form label span {
    color: #1F1F1F;
    font-family: "Apercu Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.popup-cont form label input {
    color: #1F1F1F;
    font-family: "Apercu Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 35px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #1F1F1F;
    box-sizing: border-box;
}

.popup-cont form button {
    color: #FFF;
    font-family: "Apercu Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 6px;
    background: #7C7B78;
    margin-top: 26px;
}

.popup-cont form button:hover {
    background-color: #1F1F1F;
}

.popup-add {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    color: #1F1F1F;
    font-family: "Apercu Pro";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.popup-close {
    width: 58px;
    aspect-ratio: 1/1;
    height: fit-content;
    background-image: url(../img/prom/close.svg);
    background-size: 100% 100%;
    position: absolute;
    top: 14px;
    right: 15px;
}

@media (max-width: 1100px) {
    .popup-cont {
        padding: 32px;
    }

    .popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
    }

    .popup-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .popup-text {
        font-size: 20px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .popup-cont form {
        gap: 15px;
    }

    .popup-cont form label {
        gap: 10px;
    }

    .popup-cont form label span {
        font-size: 20px;
    }

    .popup-cont form label input {
        font-size: 18px;
        padding: 10px 20px;
    }

    .popup-cont form button {
        font-size: 18px;
    }
}