.checkBox, #chkAll {
    width: 1.1rem;
    height: 1.1rem;
}
.fa {
    font-size: 1.3vw;
    cursor: pointer;
}
.scroll-to-top{
position: fixed;
    bottom: 13px;
    right: 20px;
    z-index: 1;
    font-size: 4vw;
    /* border: none; */
    outline: none;
    background-color: #17a2b8;
    color: white;
    cursor: pointer;
    padding: 9px;
    border-radius: 4px;
    display: none;
}
.scroll-to-top:hover{
    background-color: #0b6b7b;
}

.wrapper {
    display: grid;
    align-items: stretch;
} 

#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /* top layer */
    z-index: 9999;
}

.overlay {
    display: none;
    position: absolute;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
}
/* display .overlay when it has the .active class */
.overlay.active {
    display: block;
    opacity: 1;
}

#dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
   
    align-items: center;
}
#dismiss:hover
{
 background: white;
}
#dismiss:hover>i
{
    color:#6d7fcc;
}