

.body{
    height: 100vh;
    overflow: hidden;
}

.nav-sub-heading{
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    color: var(--abacustheme);
    margin-top: -18px;
    margin-left: 127px;
}




.container-notification{
    font-family: "Nunito", sans-serif;
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 11;
    animation: action 1s infinite alternate;
}



.container-notification i:hover{

    color: #000;

}

.container-notification .box-noti{
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 16px 45px 18px 18px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
    position: relative;
}

/* .container-notification .box-noti i{
    position: absolute;
    right: 15px;
    top: 10px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
} */
 

#hide:checked ~ .box-noti{
    animation: hide_box 0.8s ease forwards;
}

@keyframes hide_box {

    0%{
        transform: translateX(0%);
    }
    40%{
        transform: translateX(5%);
    }
    80%{
        transform: translate(0%);
    }
    100%{
        transform: translate(cal(100% + 30px));
    }
    
}

.container-notification .logo-noti{
    height: 90px;
    width: 90px;
    margin-right:15px ;

}


.container-notification .logo-noti img{
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.box-noti .right-noti{
    display: flex;
    flex-direction: column;
}

.box-noti .right-noti .text-1-noti{
    font-size: 18px;
    font-weight: 600;
    color: var(--abacustheme)

}


.box-noti .right-noti a{

    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 6px 0;
    background: var(--abacusbutton);
    text-decoration: none;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}



/* .box-noti .right-noti a:hover{
    background-color: violet;
    color: white;
    
} */