
#neatnotif{display: none;}

.notification {
    position: fixed;
    right: 20px;
    top: 30px;
    padding: 0px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    
    color: var(--white);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    animation: fadeInAnimation ease-in-out 0.25s forwards;;
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),
                0px 6px 10px 0px rgba(0,0,0,0.14),
                0px 1px 18px 0px rgba(0,0,0,0.12);
}

.not-success{background-color: var(--success);}
.not-warning{background-color: var(--warning);}
.not-danger{background-color: var(--danger);}

/*
.none {
    display: none;
}

.hide {
    visibility: hidden;
    animation: fadeOutAnimation ease-in-out 0.25s forwards;
}*/

.notification__body {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    padding: 10px 0px 10px 0px;
}

.notification__body__first {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    width: 250px;
}

.notification__body__first > svg {
    height: 24px;
    width: 24px;
    min-width: 24px;
    min-height: 24px;
    fill: var(--text);  
}

.notification__body > svg:nth-last-child(1) {
    cursor: pointer;
    margin: auto;
    min-width: 24px;
    min-height: 24px;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        min-height: 40px;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        min-height: 60px;
        visibility: visible;
    }
}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
        min-height: 60px;
        visibility: visible;
    }
    100% {
        opacity: 0;
        min-height: 40px;
        visibility: hidden;
    }
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}