.nd-alert {
    position: fixed;
    right: 35px;
    top: 100px;



    width: max-content;
    height: auto;

    padding: 20px 40px 18px 18px;

    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.10);
    z-index: 9999999999999;
}

.nd-alert__inner {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.nd-alert__close {
    position: absolute;
    right: 8px;
    top: 8px;
}
.nd-alert__close {
    display: flex;
}
.nd-alert__close i{
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.nd-alert__close i::before {
    background-color: #B7BDCE;
}
.nd-alert__close:hover i::before {
    background-color: #444444;
}


.nd-alert__right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nd-alert__top {
    color: var(--green, #326E5B);
    font-feature-settings: 'liga' off, 'clig' off;

    /* H4 reg */
    font-family: "Source Serif Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 125% */
}

.nd-alert__bottom {
    color: var(--Black, #444);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

@media screen and (max-width: 450px){
    .nd-alert  {
        max-width: 320px;
    }
}