


/* ======= Toast message ======== */

#toast2 {
    position: fixed;
    top: 83px;
    right: 32px;
    z-index: 999999;
}

.toast2 {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 2px;
    padding: 10px 0;
    min-width: 300px;
    max-width: 450px;
    border-left: 4px solid;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
    transition: all linear 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(calc(100% + 32px));
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.toast--success {
    border-color: #47d864;
}

.toast--success .toast__icon {
    color: #47d864;
}

.toast--info {
    border-color: #2f86eb;
}

.toast--info .toast__icon {
    color: #2f86eb;
}

.toast--warning {
    border-color: #ffc021;
}

.toast--warning .toast__icon {
    color: #ffc021;
}

.toast--error {
    border-color: #ff623d!important;
}

.toast--error .toast__icon, .toast--error .toast__title {
    color: #ff623d;
}
.toast2 i{
    font-weight: 300;
}

.toast2 + .toast2 {
    margin-top: 24px;
}

.toast__icon {
    font-size: 24px;
}

.toast__icon,
.toast__close {
    padding: 0 16px;
}

.toast__body {
    flex-grow: 1;
}

.toast__title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.toast__msg {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
    margin-bottom: 0;
}

.toast__close {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    #toast2{
        top: 60px;
        right: 3px;
    }
    .toast2{
        min-width: 200px;
        padding: 5px 0;
    }
    .toast__icon {
        font-size: 15px;
    }
    .toast__icon, .toast__close {
        padding: 0 10px;
    }
    .toast__title {
        font-size: 14px;
    }
    .toast__msg {
        font-size: 15px;
        margin-top: 4px;
    }
    .toast2+.toast2 {
        margin-top: 7px;
    }
}