body{
    overflow-x: hidden;
}
.toast{
    display: block;
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 4px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    /* border-left: 4px solid var(--mcd);
    border-top: 4px solid var(--mcd);
    border-right: 4px solid var(--mcd); */
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index: 99999999;
    visibility: hidden;
}

.toast.active{
    transform: translateX(0%);
    visibility: visible;
}

.toast .toast-content{
    display: flex;
    align-items: center;
}
.toast-content .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: var(--mcd);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    padding: 7px;
}
.fill-white{
    fill: #fff;
}
.fill-black{
    fill: #000;
}

.toast-content .message{
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text{
    font-size: .8rem;
    font-weight: 400;;
    color: #666666;
}

.message .text.text-1{
    font-weight: 600;
    color: #333;
}

.toast .close{
    position: absolute;
    top: 25px;
    right: 8px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    font-size: .8rem;
}

.toast .close:hover{
    opacity: 1;
}

.toast .progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #ddd;
}

.toast .progress:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--mcd);
}

.progress.active:before{
    animation: progress 2s linear forwards;
}

@keyframes progress {
    100%{
        right: 100%;
    }
}