.ok-slide-profile {
    position: relative
}

.ok-slide-profile .ok-user-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    z-index: 999;
    background-color: #f4f6f8;
    color: #2260bf;
    width: 100%;
    height: 100%;
    max-width: 424px;
    box-shadow: rgba(34, 96, 191, 0.24) 0 0 48px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all .3s ease
}
.ok-user-profile-id{
    padding: 30px;
    background-color: rgba(34, 96, 191, 0.08);
    border-bottom: solid 1px rgba(34, 96, 191, 0.1);
    position: relative;
}

.ok-user-profile-id .close-drawer{position:absolute;top:40px;right: 24px;}

.ok-slide-profile .ok-user-drawer h2 {
    font-family: "Khand", sans-serif;
    font-size: 48px;
    margin: 0 0 28px 0;
    font-weight: 600;
    display: flex;
    width: 100%;
    align-items: center
}

.ok-slide-profile .ok-user-drawer ul {
    counter-reset: trending;
    max-height: 100%;
    overflow-y: auto
}

.ok-slide-profile .ok-user-drawer ul li {
    padding-left: 60px;
    position: relative;
    margin-bottom: 28px
}

.ok-slide-profile .ok-user-drawer ul li:last-child {
    margin-bottom: 0
}

.ok-slide-profile .ok-user-drawer ul li:before {
    counter-increment: trending;
    content: counter(trending) ". ";
    font-size: 54px;
    font-weight: 900;
    color: rgba(34, 96, 191, 0.24);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0.72
}

.ok-slide-profile .ok-user-drawer .ok-post-rtl a .ok-post-thumb {
    width: 90px;
    min-width: 90px;
    height: 70px
}

.ok-slide-profile .ok-user-drawer .ok-post-rtl a .ok-post-content-wrap h2 {
    font-size: 19px;
    font-weight: 600
}

.ok-slide-profile .ok-user-drawer.reveal-right-drawer {
    right: 0
}


.ok-user-profile-id{}
.ok-user-profile-id .ok-news-author {display: flex;align-items: center}
.ok-user-profile-id .ok-news-author h4{font-size: 22px;margin: 0;line-height: 1.4}
.ok-user-profile-id .ok-news-author h4 >span{font-size: 14px;line-height: 1;display: block;opacity: 0.5;font-weight: 400;color: black}
.ok-user-profile-id .author-icon{margin-right: 30px;}

.oke-user-avatar{
    height: 34px;
    width: 34px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}
.oke-loggedin-user{
    position: relative;
}
.oke-user-avatar img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ok-user-info-drop{
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top:calc(100% + 40px);
    right: 0;
    z-index: 9;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    min-width: 150px;
    box-shadow: rgba(0, 0, 0, 0.06) 0 0 24px;
}

.oke-loggedin-user:hover .ok-user-info-drop{
    top:calc(100% + 10px);
    opacity: 1;
    visibility: visible;
}
.ok-user-info-drop{
    color: black;
}
.ok-user-info-drop h5,
.ok-user-info-drop p{
    margin: 0;
}
.ok-user-info-drop p{
    border-bottom: solid 1px rgba(0,0,0,.1);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.ok-user-info-drop > a{
    color: rgba(0,0,0,.48);
    text-decoration: none;
    transition: all .3s ease;
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.ok-user-info-drop > a:hover{
    color: black;
}