.btn-side-menu{
    position: fixed;
    top: 45%;
    left: 0px;
    background-color: #000;
    color: #fff;
    border-radius: 0px;
    padding: 30px 10px;
    display: none;
}




label{
    color: #fff;
}


.alert{
    position: fixed;
    z-index: 1;
    top: 20px;
    right: 20px;
}

.alert-slide-in {
    transform: translateX(100%); /* Start off-screen to the right */
    animation: slideInLeft 0.5s forwards; /* Slide in to the left */
}

@keyframes slideInLeft {
    to {
        transform: translateX(0); /* End at the normal position */
    }
}



@media only screen and (max-width: 768px) {
    .btn-side-menu{
        display: block;
    }
  }
