/*==================================
            TOAST
==================================*/

.toast{

    position:fixed;

    top:30px;

    right:30px;

    display:flex;

    align-items:center;

    gap:18px;

    min-width:360px;

    padding:20px 25px;

    background:white;

    border-left:6px solid #40c463;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transform:translateX(450px);

    opacity:0;

    transition:.45s;

    z-index:99999;

}

.toast.show{

    transform:translateX(0);

    opacity:1;

}

.toast-icon{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#40c463;

    color:white;

    font-size:22px;

    font-weight:bold;

}

.toast-content h4{

    color:#163c29;

    margin-bottom:6px;

}

.toast-content p{

    color:#666;

    font-size:14px;

    line-height:1.5;

}