/* Menu Mobile */
.beban-side-menu .open__menu{
	cursor: pointer;
	display: flex
}
.beban-side-menu .mobile__menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: 0;
    bottom: 0;
    padding: 0px;
    background-color: #fff;
    width: 312px;
    height: 100%;
    z-index: 1000;
    box-shadow: -.5rem 0 2rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.beban-side-menu .show__menu {
    right: 0;
}

.beban-side-menu .close__menu{
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1000;
    text-align: center;
	height: 40px !important;
    width: 40px !important;
    border: 1.5px solid #EEEEEE !important;
    border-radius: 100px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beban-side-menu .close__menu:hover,
.beban-side-menu .close__menu:focus,
.beban-side-menu .beban_nav .open__menu:hover,
.beban-side-menu .beban_nav .open__menu:focus{
	background: transparent
}

.beban-side-menu .close__menu svg{
	width: 28px;
    height: 28px;
}

.beban-side-menu .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    transition: all 0.3s linear;
    pointer-events: none;
}

.beban-side-menu .show__overlay {
    opacity: 1;
    pointer-events: auto;
}


