#message-box-box{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
    display: grid;
    row-gap: 10px;
}
.message-box{
    min-width: 350px;
    min-height: 70px;
    background-color: #000;
    border-radius: 5px 0px 0px 5px;
    box-shadow: 0px 5px 20px 0 #00d3e285;
    padding: 3px 3px 3px 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    animation: message 300ms linear;
    color: #fff;
    font-family: 'baloo';
    direction: rtl;
    flex-direction: row-reverse;
}
.message-img{
    width: 50px;
    height: 50px;
    background-size: cover;
}
.success-img{background-image: url('./message-img/tick.svg');}
.error-img{background-image: url('./message-img/error.svg');}
.warn-img{background-image: url('./message-img/warn.svg');}
.message-text{
    padding-right: 5px;
}
.message-text p{
    font-size: 0.75em;
    max-width: 500px;
    line-height: 18px;
    padding-top: 10px;
}
.message-progress-box{
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    background-color: #d2d2d2;
}
.message-progress{
    content: "";
    width: 4%;
    height: 3px;
    background-color: black;
    display: block;
}
@keyframes progress {
    0%{
        width: 0%;
    }100%{
        width: 100%;
    }
}
@keyframes openMessage{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes closeMessage{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(100%);
    }
}