.button_menu {
    opacity:0;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor:pointer;
    height:40px;
}

.show {
    opacity:0!important;
}
.navigation_active {
    transform: translateX(0)!important;
}

.button_menu_item {
    background-color: red;
    height: 2px;
    width: 40px;
}

.button_menu_item::before {
    content:'';
    background-color: red;
    height: 2px;
    width: 40px;
    position: absolute;
    top: 19px;
}

.button_menu_item::after {
    content:'';
    background-color: red;
    height: 2px;
    width: 40px;
    position: absolute;
    top: 9px;
}

.button_close{
    cursor:pointer;
    position:absolute;
    top:30px;
    right:20px;
    width:40px;
    height:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    display:none;
}

.button_close_item {
    width:30px;
    height:2px;
    background:red;
    transform: rotate(45deg);
}

.button_close_item::after {
    content:'';
    width:30px;
    height:2px;
    background:red;
    position:absolute;
    top:0px;
    right:0px;
    transform: rotate(90deg);
}

.scroll {
    overflow: hidden;
}

.burger_bg{
    position: fixed;
    z-index: 1;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(41, 41, 41, 0.6);
    cursor: pointer;
}

.is-burger-bg {
    width: 100vw;
}

