/***** Wrapper *****/

.wrapper-home-menu {
    display: block;
}

/***** sidebar-menu-home *****/

.sidebar-menu-home {
    z-index: 999999;
    width: 15vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -505px;
    background: var(--secondary-color-vex);
    color: #fff !important;
    transition: all .3s;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
    text-align: left;
}

.sidebar-menu-home.active {
    left: 0;
}

/***** Dark overlay-menu-home *****/

.overlay-menu-home {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.overlay-menu-home.active {
    display: block;
    opacity: 1;
}

.dismiss {
    width: 35px;
    height: 35px;
    transition: all .3s;
    background: transparent;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    color: var(--primary-color-vex);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dismiss:hover,
.dismiss:focus {
    background: white;
    color: var(--primary-color-vex);
}

.div-category {
    cursor: pointer;
}

.div-menu-item {
    text-decoration: none !important;
}

.div-menu-item span.active {
    color: var(--primary-color-vex) !important;
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .sidebar-menu-home {
        width: 25vw !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar-menu-home {
        width: 35vw !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .sidebar-menu-home {
        width: 50vw !important;
    }
}


@media (max-width: 767px) {
    .sidebar-menu-home {
        width: 100vw;
    }
}

