.iwtsua_sidepanel {
    position: fixed;
    top: 50%;
    height: auto;
    background: #00000038;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
    z-index: 999999;
}

.iwtsua_sidepanel.iwtsua-sidepane-left {
    top: 25%;
    transform: translate(0, -50%);
}

.iwtsua_sidepanel.iwtsua-sidepane-right {
    top: 50%;
    transform: translate(0, -50%);
    left: auto;
    right: 0;
}

.iwtsua_sidepanel.iwtsua-sidepane-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.iwtsua_sidepanel.iwtsua-sidepane-bottom {
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translate(-50%, 0);
}

.iwtsua_sidepanel .iwtsua-logout-box-inner {
    padding: 35px 15px 25px 15px;
    width: fit-content;
}

.iwtsua_sidepanel .iwtsua-logged-user-name {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

.iwtsua_sidepanel .iwtsua-logged-user-name span {
    font-weight: bold;
}

.iwtsua_sidepanel .iwtsua-closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 36px;
    color: #fff;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#iwtsua_sidepanel.iwtsua_sidepanel .iwtsua_btn_logout_box {
    padding: 10px 17px;
    background: #1e77ec;
    margin: 0px;
    border: none;
    color: #fff;
    margin-top: 9px;
    outline: none;
    opacity: 1;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    border-radius: 0;
    transition: 0.3s;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: capitalize;
    text-decoration: none;
}

#iwtsua_sidepanel.iwtsua_sidepanel .iwtsua_btn_logout_box:hover {
    background-color: #00ce3d;
}

.iwtsua_sidepanel .iwtsua-logged-user-container {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.iwtsua_sidepanel .iwtsua-logout-user-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e77ec;
    box-shadow: 0px 0px 6px rgb(252 252 252 / 40%);
    cursor: pointer;
    display: none;
}

.iwtsua_sidepanel .iwtsua-logout-user-icon img {
    width: 40px;
    pointer-events: none;
}

@media (max-width: 767px) {
    .iwtsua_sidepanel .iwtsua-logout-user-icon {
        display: flex;
    }
    .iwtsua_sidepanel .iwtsua-logout-box-inner {
        display: none;
    }
}