.sidebar-wh {
    width: 400px;
    height: 100vh;
    position: fixed;
    right: -410px;
    top: 0;
    background-color: #fff;
    z-index: 9999;
    transition: all .3s;
    box-shadow: 0px 0px 10px lightgray;

}

.showSidebar {
    right: 0px!important;

}

.close-sidebar-btn {
    width: 21px;
    height: 21px;
    cursor: pointer;
    outline: 0!important;
    background-image: url(../../img/icons/cancel.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sidebar-top {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.sidebar-body-list {
    width: 100%;
    margin: 0;
    padding: 0 70px;
    margin-top: 50px;
}

.sidebar-body-link {
    width: 100%;
    border-bottom: 1px solid#E8E8E8;
}

.sidebar-body-link:hover a {
    color: #edcd9e;
}

.sidebar-body-link:hover .sidebar-body-link-inner {
    color: #edcd9e;
}

.sidebar-body-link-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0px;
    transition: all .2s;
    font-size: 19px;
    cursor: pointer;
    color: #1B1B1B;
}

.sidebar-body-link a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0px;
    transition: all .2s;
    font-size: 19px;
    
}


