.wcoc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.wcoc-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wcoc-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: 340px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left .3s ease;
    overflow: hidden;
}

body.admin-bar .wcoc-sidebar{
	top: 32px;
    bottom: 0;
    height: auto;
}


.wcoc-sidebar.active {
    left: 0;
}

.wcoc-level {
    position: absolute;
    inset: 0;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.wcoc-level.active {
    transform: translateX(0);
}

.wcoc-level.previous {
    transform: translateX(-100%);
}

.wcoc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #ddd;
}

.wcoc-level ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wcoc-level li {
    border-bottom: 1px solid #eee;
}

.wcoc-level a,
.wcoc-parent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    border: 0;
    background: none;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    color: #000;
    text-transform: uppercase;
    min-height:40px;
    line-height: inherit;
}

@media (min-width: 768px) {
    .top-back{
        display: none;
    }
}