.nda-banner {
    margin: 0 auto;
    width: 856px;
    border-radius: 32px;
    position: fixed;
    border: 1px solid #676767;
    left: 0;
    right: 0;
    bottom: 78px;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0;
    padding: 48px;
    display: flex;
    gap: 12px;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.nda-banner.-show {
    transform: translateY(0);
    opacity: 1;
}

.nda-banner__text {
    flex: 1;
    margin: 0;
    line-height: 18px;
    font-size: 12px;
    color: #000000;
}

.nda-banner__text b {
    font-weight: 600;
    display: block;
    padding-bottom: 8px;
}

.nda-banner__btn {
    height: 56px;
    width: 82px;
    flex: 0 0 auto;
    font-weight: 600;
    padding: 16px 29px;
    border-radius: 32px;
    cursor: pointer;
}

.nda-banner__btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .nda-banner {
        width: 821px;
        bottom: 66px;
    }
}

@media (max-width: 768px) {
    .nda-banner {
        width: 336px;
        border-radius: 24px;
        padding: 24px;
        bottom: 12px;
        flex-wrap: wrap;
    }

    .nda-banner__text {
        text-align: center;
        flex: 0 0 100%;
    }

    .nda-banner__btn {
        flex: 0 0 100%;
        margin-top: 12px;
        width: 288px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nda-banner {
        transition: none;
    }
}