.sidebar-container{
    display: none;
}

@media screen and (max-width:776px) {
.sidebar-container{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #e8e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.sidebar-container.close{
    display: none;
    animation: 0.5s slideoff linear forwards;
}

@keyframes slideoff {
    from{
        transform: translateX(0);
        display: flex;
    }
    to{
        transform: translateX(-100%);
        display: none;
    }
}

.sidebar-container.open{
    display: flex;
    animation: 0.5s slidein linear forwards;
}

@keyframes slidein{
    from{
        transform: translateX(-100%);
        display: none;
    }
    to{
        transform: translateX(0);
        display: flex;
    }

}

.xmark{
    height: 80px;
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.x-icon{
    height: 30px;
    width: 30px;
    color: black;
    cursor: pointer;
    border-radius: 50%;
}

.x-icon:hover{
    scale: 1.02;
}

.banner-holder{
   display: flex;
   flex-direction: column;
   margin-top: 30px;
   gap: 30px;
   align-items: center;
   width: 100%;
}

.icon-banner{
    font-size: 18px;
    background-color: #666666;
    /* background-image: linear-gradient(to right,rgb(20, 91, 24),rgb(20, 91, 24)); */
    border-radius: 5px;
    font-weight: bolder;
    height: 50px;
    width: 80%;
    color: white;
    align-content: center;
    text-align: center;
    text-decoration: none;
}
}