.block__interest-toast {
    position: fixed;
    z-index: 90;
    top: 24px;
    right: 24px;
    display: grid;
    width: min(360px, calc(100vw - 48px));
    min-height: 64px;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    color: #fff;
    background: #202020;
    box-shadow: 0 14px 36px rgb(0 0 0 / 24%);
}

.block__interest-toast[hidden] {
    display: none;
}

.b_interest-toast--text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.b_interest-toast--close {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 760px) {
    .block__interest-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}
