.tnaa-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
    padding: 42px 18px 18px;
}

@media (min-width: 1200px) {
    .tnaa-modal {
        padding: 62px 18px 18px;
    }
}

.tnaa-modal.fade-in {
    opacity: 1;
    pointer-events: auto;
}

.tnaa-modal.fade-out {
    opacity: 0;
    pointer-events: none;
}

.tnaa-modal--backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
}

.tnaa-modal--box {
    background: #FFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 732px;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.tnaa-modal--header {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-bottom: 1px solid #D0D5DD;
}

.tnaa-modal--header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.tnaa-modal--header-label {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.tnaa-modal--header-close-button {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #F4F5F7;
    border: 0;

    color: #585E6E;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.tnaa-modal--header-close-button:hover {
    background: #C3C4C6;
    color: #000;
}

.tnaa-modal--content {
    padding: 1rem;
}

