html, body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
    background-color: #ffffcc;
}

.nopadding {
    padding: 0 !important;
}

#rhs {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffcc;
}
 
.mobile {
    position: fixed;
    top: 0;
    background: #000060;
    background: rgba(0,0,96,0.8);
    z-index: 100;
    height: 100vh;
    color: #ffffcc;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}

.mobile div {
    background-color: #cccccc;
    padding-left: 10px;
}

.mobile a {
    font-size: 1.5rem;
    color: black;
}

.open-menu {
    display: block;
}

.jscs-menu-items {
    list-style: none;
    padding-left: 10px;
    padding-right: 10px;
}

#sidebar > div {
    border: outset 2px white;
}

.jscs-menu-item {
    margin: 8px 0;
}
.jscs-menu-item > a {
    color: #f5d800;
    font-size: 1.5rem;
    text-decoration: none;
}
.jscs-menu-item > a:hover {
    color: #f5d800;
    text-decoration: none;
}
.jscs-menu-item > a:visited {
    color: #f5d800;
    font-weight: bold;
}
.jscs-menu-item:hover {
    background-color: #666666;
}
.ifr_resp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Extra small devices (phones, 600px and down) */


/* Small devices (portrait tablets and large phones, 600px and up) */
/*
@media only screen and (min-width: 576px) {
}
 */

/* Medium devices (landscape tablets, 768px and up) */
/*
@media only screen and (min-width: 768px) {
}*/

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .mobile {
        position: relative;
        display: block;
        background: #000060;
        background: rgba(0,0,96,1.0);
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
/*
@media only screen and (min-width: 1200px) {
}
*/