@media only screen and (max-width:991px){
    .theme-container, .content {
        padding: 0 1rem;
    }
    .homeburg-menu{
        display: flex;
        position: absolute;
        right: 1rem;
        width: 24px;
        height: 30px;
        flex-direction: column;
        gap: 4px;
        z-index: 1;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .homeburg-menu span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 50px;
        background: #3e3e3e;
    }
    
    .homeburg-menu.active span:nth-child(2) {
        display: none;
    }
    
    .homeburg-menu.active span:nth-child(1) {
        transform: rotate(45deg);
        margin: 0 0 -7px 0px;
    }
    
    .homeburg-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    .menu {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        background: #fff;
        width: 320px;
        box-shadow: 0px 0px 18px 0px #0000001f;
        flex-direction: column;
        padding: 20px;
        padding-top: 5rem;
        transform: translateX(500px);
        transition: all .2s;
    }
    .menu.active{
        transform: none;
    }
}
@media only screen and (max-width:768px){
    .table-title {
        margin: 10px 0 10px;
    }
    
    .table-title h2 {
        font-size: 18px;
    }
}
@media only screen and (max-width:500px){
    .menu{
        width: 100%;
    }
}