dialog.toast {
    &:not(.show){
        display: flex;
    }
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
    right: 15px;
    top: 50px;
    position: fixed;
    z-index: 10;
    margin: 0px 15px 0px 0px;
    inset-inline-start: unset;
    inset-inline-end: 0;
    opacity: 0;
    transition: 0.4s all;
    justify-content: space-between;
    &[open] {
        opacity: 1;
    }

    &.hidden {
        display: none;
    }

    .box-message {
        color: #FFFFFF;
        font-size: 1.2rem;
    }

    .close {
        background: transparent;
        border: none;
        color: #f5f5f5;
        font-size: 1.4rem;
        cursor: pointer;
        width: 32px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}