#page .app-dl-modal {
    display: none;
}

#page .btn-app-dl {
    width: 100%;
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 72px;
    background: #ff008c;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border: none;
    gap: 16px;
}

@media screen and (min-width: 768px) {
    #page .btn-app-dl-wrapper {
        display: flex;
        justify-content: center;
    }

    #page .btn-app-dl {
        font-size: 24px;
        line-height: 140%;
        transition: all 0.2s ease-in;
        width: 400px;
    }

    #page .btn-app-dl:hover {
        background: #cc0070;
        cursor: pointer;
    }

    #page .app-dl-modal {
        width: 100%;
        height: 100vh;
        padding: 0 24px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: fixed;
        background: rgba(0, 0, 0, 0.25);
        top: 0;
        left: 0;
        z-index: 98;
    }

    #page .app-dl-modal div.app-dl-modal-inner {
        display: flex;
        padding: 32px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 32px;
        background: #fff;
    }

    #page .app-dl-modal div.app-dl-modal-inner p.lead {
        color: #000;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 150% */
    }

    #page .app-dl-modal div.app-dl-modal-inner .btn-close {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    #page .app-dl-modal div.app-dl-modal-inner .btn-close:hover {
        cursor: pointer;
    }
}