.account-cont {
    display: inline-block;
    position: relative;
}
.account-cont .btn-account {
    background-color: #eeeeee;
    border: medium none;
    border-radius: 4px;
    color: #303030;
    height: 40px;
    padding: 4px 0 0 0;
    position: relative;
    width: 40px;
}
.account-cont.desktop .account-content-cont {
    background-color: var(--white);
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    color: #666666;
    display: none;
    font-size: 0.875rem;
    left: 0;
    margin-top: 4px;
    padding: 10px;
    position: absolute;
    top: 100%;
    width: 200px;
    z-index: 7;
}
.account-cont .account-content-cont.open {
    display: block;
}
.account-cont .account-header {}
.account-cont .lnk-view-account {
    align-items: center;
    background-color: var(--whitesmoke);
    border-radius: 8px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-decoration: none;
}
.account-cont .account-content {
    display: flex;
    flex-direction: column;
}
.account-cont .lnk-account {
    color: #555555;
    display: flex;
    gap: 8px;
    padding: 5px 0;
    text-decoration: none;
    transition: all 0.5s ease 0s;
}
.account-cont .lnk-account:hover {
    color: #0fabc6;
}
.account-cont .lnk-account i {
    align-items: center;
    display: flex;
    flex: 0 0 30px;
    justify-content: center;
}
.account-cont .btn-close-account {
    align-items: center;
    background-color: #0fabc6;
    border: medium none;
    color: #fff;
    display: flex;
    height: 30px;
    justify-content: center;
    left: -30px;
    padding: 0;
    position: absolute;
    top: 0;
    width: 30px;
}
/****************************************
 ***** mobile style
 ****************************************/
.account-cont.mobile .account-content-cont {
    background-color: var(--whitesmoke);
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    transition: all 0.5s ease 0s;
    z-index: 7;
}
.account-cont.mobile .account-content-cont.open {
    right: 0;
}
.account-cont.mobile .account-content {
    max-height: 100vh;
    overflow-y: scroll;
}