#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 450px;
    margin-top: 60px;
    transform: translateX(-450px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, rgb(198, 196, 133) 0%, rgba(198, 196, 133, .6) 100%);
    overflow: scroll;
}

.sidebarMenuInner {
    margin: 0;
    padding: 0;
    /* border-top: 1px solid #4d9078; */
}

.sidebarMenuInner li {
    list-style: none;
    color: #f78154;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 5px;
    cursor: pointer;
    border-bottom: 0;
}

.sidebarMenuInner li a {
    color: #f78154;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

input[type="checkbox"]:checked~#sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox].openSidebarMenu {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    width: 22px;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #f78154;
    ;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}


/* =================================== submeniu =============================*/

.sidebarMenuInner li ul {
    left: -9999em;
    position: absolute;
    z-index: 1000;
    background-color: rgb(198, 196, 133);
}

.sidebarMenuInner li ul li {
    padding: 2em;
    /* width: auto; */
}

.sidebarMenuInner li ul li a {
    font-size: .725em;
    width: 10rem;
}

.sidebarMenuInner li:hover ul {
    left: auto;
    display: inline-block;
}

.sidebarMenuInner .drop li a {
    border-top: 0;
    width: 15rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal !important;
}