.messages_notice__holder {
    position: fixed;
    pointer-events: none;
    top: 15vh;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 70vh;
    overflow: auto;
    z-index: 150;
}

.messages_notice {
    transition: 0.3s ease-in-out;
    opacity: 0;
    padding: 15px 60px;
    width: 460px;
    max-width: 100vw;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #151a22;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 16px;
}

.messages_notice.active {
    opacity: 1;
}