.offcanvas-active {
    overflow: hidden;
}

.screen-overlay {
    width: 0%;
    height: 100%;
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(61, 61, 61, 0.158);
    transition: opacity .2s linear, visibility .1s, width 1s ease-in;
}

.screen-overlay.show {
    transition: opacity .5s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.offcanvas {
    width: 350px;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .2s;
    border-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    background-color: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
}

.offcanvas.offcanvas-right {
    right: 0;
    left: auto;
    transform: translateX(100%);
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
    transition: transform .2s;
}

.offcanvas .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.offcanvas-right>.user-menu>.user-header {
    height: 175px;
    padding: 10px;
    text-align: center;
}

.offcanvas-right>.user-menu>.user-header>img {
    z-index: 5;
    height: 90px;
    width: 90px;
    border: 3px solid;
    border-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.offcanvas-right>.user-menu>.user-header>p {
    z-index: 5;
    font-size: 17px;
    margin-top: 10px;
}

.offcanvas-right>.user-menu>.user-header>p>small {
    display: block;
    font-size: 12px;
}

/* .offcanvas-right>.user-menu>.user-body {
    border-bottom: 1px solid #495057;
    border-top: 1px solid #dee2e6;
    padding-bottom: 55px;
} */

.offcanvas-right>.user-menu>.dropdown-menu>.user-body::after {
    display: block;
    clear: both;
    content: "";
}