﻿

#webAccount button {
    border: none;
    background: none;
    cursor: pointer;
}

#webAccount .fa-user {
    font-size: 25px;
    color: #fff;
}

/* Side content */

#webAccountSide {
    width: 300px;
    -webkit-transition: all .45s cubic-bezier(.3, 0, .15, 1);
    transition: all .45s cubic-bezier(.3, 0, .15, 1);
    margin-right: 0;
    display: block;
    height: 100%;
    left: auto;
    position: fixed;
    top: 0;
    padding: 0 0 0 20px;
    background: #F7F7F7;
    z-index: 8000;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    right: 0;
    overflow: auto;
}

#webAccountSide.isOpen {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#webAccountSideControlsContainer
{
    height: 60px;
}

#closeWebAccountSideButton {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    cursor: pointer;
}

.webAccountCurrentUser {
    margin-bottom: 20px;
    font-weight: 500;
}