/* Css toast message */
.toast {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    padding: 20px 0;
    min-width: 400px;
    max-width: 450px;
    border-left: 4px solid;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
}

.toast + .toast{
    margin-top: 20px;
}
#toast {
    position: fixed;
    top: 50px;
    left: 20px;
    z-index: 100;
}

.toast__private {
    display: flex;
}

.toast__icon {
    font-size: 24px;
}

.toast__close {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: absolute;
    top: 1px;
    right: 1px;
}

.toast__icon,
.toast__close {
    padding: 0 16px;
    line-height: 52px;
}

.toast__body {
    flex-grow: 1;
}

.toast__msg {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

.toast--success {
    border-color: #28a785;
}

.toast--success .toast__icon {
    color: #28a785;
}

.toast--warning {
    border-color: #ffc107;
}

.toast--warning .toast__icon {
    color: #ffc107;
}

.toast__background {
    height: 4px;
    position: absolute;
    bottom: 0;
}


@media (max-width: 576px){
    .toast {
       width: 300px;
    }
}