#sidebarMenu {
    height: 88%;
    position: fixed;
    left: 0;
    width: 325px;
    margin-top: 94px;
    transform: translateX(-325px);
    transition: transform 350ms ease-in-out;
    background: #f1f1f1;
    border-top: 5px solid #f1f1f1;
   max-height: 100vh;
   overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.sidebarMenuInner{
    margin:0;
    padding:0;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}
input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.masthead-search {
    position: absolute;
    top: -6px;
    left: -18px;
    height: 36px;
    width: 36px;
    border-radius: 10%;
    background: #f1f1f1;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 72px;
    left: 15px;
    height: 22px;
    width: 22px;
}
.horizontal {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    margin: auto;
    margin-top: -10px;
    margin-left: -10px;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    border: 2px solid orange;
    transition: all .35s ease-in-out;
}
.diagonal.part-1 {
    content: "";
    width: 12px;
    height: 2px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 15px;
    right: 9px;
    background: orange;
    -webkit-transform: rotate(38deg);
    -moz-transform: rotate(38deg);
    transform: rotate(38deg);
    transition: all .35s ease-in-out;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    content: "";
    width: 15px;
    height: 3px;
    display: block;
    margin: 0;
    position: absolute;
    top: 10px;
    left: -6px;
    border-radius: 50%; 
    border: none;
    background: red;
    -webkit-transform: rotate(-47deg);
    -moz-transform: rotate(-47deg);
    transform: rotate(-47deg);
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    content: "";
    width: 15px;
    height: 3px;
    display: block;
    position: absolute;
    top: 10px;
    left: -6px;
    background: red;
    -webkit-transform: rotate(47deg);
    -moz-transform: rotate(47deg);
    transform: rotate(47deg);
}


@media only screen and (max-width: 898px) {
#sidebarMenu {
    height: 90%;
    position: fixed;
    left: 0;
    width: 275px;
    margin-top: 94px;
    transform: translateX(-275px);
    transition: transform 250ms ease-in-out;
    background: #f1f1f1;
   max-height: 100vh;
   overflow: auto;
  -webkit-overflow-scrolling: touch;
  }
}