body {
    width: 100%;
    height: 100%;
    margin: 0;
}

#menu {
    position: fixed;
    top: 0;
    right: -6.5rem;
    overflow-y: auto;
    z-index: 1005;
    background-color: #ededed;
    width: 6.5rem;
    height: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
    text-align: center;
}
#menu2 {
    position: fixed;
    top: 0;
    right: -6.5rem;
    overflow-y: auto;
    z-index: 2;
    background-color: #ededed;
    width: 6.5rem;
    height: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
    text-align: center;
}

body.open #menu {
    right: 0;
    padding-bottom: 1.45rem;
}
body.open #menu2 {
    right: 0;
    padding-bottom: 0;
}
.c-filter-button-block2{
    position: fixed;
    right: -6.5rem;
    width: 5.9rem;
    bottom:0;
    padding: 0.3rem;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.open .c-filter-button-block2{
    position: fixed;
    right: 0;
    bottom:0;
    width: 5.9rem;
    -webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
}

.site-overlay{
    z-index: 1003;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: visibility 0s ease, opacity .2s ease;
    -moz-transition: visibility 0s ease, opacity .2s ease;
    -o-transition: visibility 0s ease, opacity .2s ease;
    transition: visibility 0s ease, opacity .2s ease;
}

body.open .site-overlay{
    visibility: visible;
    opacity: .5;
}
/* MAIN PAGE */
.page-wrap {
    position: relative;
    -webkit-transition: all .3s ease-in;
       -moz-transition: all .3s ease-in;
         -o-transition: all .3s ease-in;
            transition: all .3s ease-in;
}
body.open .page-wrap {
    /*margin-right: 6rem;*/
    -webkit-transform: translate3d(-6.5rem, 0, 0);
    -moz-transform: translate3d(-6.5rem, 0, 0);
    -ms-transform: translate3d(-6.5rem, 0, 0);
    -o-transform: translate3d(-6.5rem, 0, 0);
    transform: translate3d(-6.5rem, 0, 0);
}
