/* Menu Drawer Config Init*/

.menu-drawer-content {
    z-index: 9;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
}

.menu-drawer-content.left {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.menu-drawer-content.dinamic.left {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.menu-drawer-background {
    z-index: 7;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--colorTransparent);
}

.menu-drawer-options {
    z-index: 8;
    position: fixed;
    height: 100%;
    top: 0px;
    right: 0px;
    background: var(--colorPrimary);
}

.menu-drawer-content.left .menu-drawer-options {
    z-index: 8;
    position: fixed;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--colorPrimary);
}

.menu-drawer-options-toolbar {
    width: 100%;
    height: 72px;
    background: var(--colorPrimary);
}

.menu-drawer-options-toolbar span {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.menu-drawer-options-toolbar h1 {
    font-size: 22px;
    height: fit-content;
    margin-left: 16px;
    margin-top: auto;
    margin-bottom: auto;
}

.menu-drawer-options {
    transition: 0.2s;
    width: 600px;
}

.menu-drawer-options .menu-drawer-header {
    padding-top: 72px;
    /*height: 30%;*/
    width: 100%;
    border-bottom: 1px solid var(--colorDivider);
}

.menu-drawer-options .menu-drawer-body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 70%;
    width: 100%;
    background: var(--colorDivider);
}

.menu-drawer-options .menu-drawer-body .menu-drawer-option {
    padding: 16px;
    user-select: none;
    cursor: pointer;
}

.menu-drawer-content.hide {
    pointer-events: none;
}

.menu-drawer-content.hide .menu-drawer-header.left {
    transition: 0.2s;
    opacity: 0;
    transform: translate(-600px);
}

.menu-drawer-content.hide .menu-drawer-options.left {
    transition: 0.2s;
    opacity: 0;
    transform: translate(-600px);
}

.menu-drawer-content.hide .menu-drawer-header.right {
    transition: 0.2s;
    opacity: 0;
    transform: translate(600px);
}

.menu-drawer-content.hide .menu-drawer-options.right {
    transition: 0.2s;
    opacity: 0;
    transform: translate(600px);
}

.menu-drawer-options-toolbar {
    user-select: none;
    border-bottom: 1px solid var(--colorDivider);
}

.menu-drawer-content.hide .menu-drawer-options .menu-drawer-options-toolbar {
    display: none !important;
}

.menu-drawer-content.hide .menu-drawer-background {
    transition: 0.2s;
    background: rgba(0, 0, 0, 0.0);
}

@media screen and (min-width:580px){
    .menu-drawer-content.left {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0px;
        right: 0px !important;
    }
    .menu-drawer-content.hide .menu-drawer-header.left {
        transition: 0.2s;
        opacity: 0;
        transform: translate(0px) !important;
    }
    .menu-drawer-content .menu-drawer-options.left {
        transition: 0.2s;
        right: 0px;
        left: unset;
        opacity: 1;
    }
    .menu-drawer-content.hide .menu-drawer-options.dinamic.left {
        transition: 0.2s;
        opacity: 0;
        transform: translate(0px) !important;
    }
}

@media screen and (max-width:580px) {
    .menu-drawer-options {
        width: 85%;
    }
    .menu-drawer-options.full {
        width: 100%;
    }
    
}

.menu-drawer-footer {
    height: 120px;
    width: 100%;
    display: flex;
    border-top: 1px solid var(--colorDivider);
}