.account-navigation {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #5e071e;
    border: solid 1px #e9e9e9;
    border-radius: 5px;
    background: #fff;
    justify-content: space-between;
    box-shadow: 0 1px 2px 0 rgb(190 190 190 / 50%);
    cursor: pointer;
    height: 40px;
    padding: 0 5px;
    top: 15px;
    min-width: 210px;
    transition: .6s cubic-bezier(.25, .1, .25, 1);
    -moz-transition: .6s cubic-bezier(.25, .1, .25, 1);
    -webkit-transition: .6s cubic-bezier(.25, .1, .25, 1);
    -o-transition: .6s cubic-bezier(.25, .1, .25, 1);
}

.account-navigation:hover {
    background: #f8f8f8;
}

.account-navigation > div {
    margin: 0 10px;
}

.account-navigation__avatar img {
    width: 85%;
    vertical-align: middle;
}

.account-navigation.active .account-navigation__icon img {
    transform: scaleY(-1);
}

.account-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 999;
    background: #fff;
    color: #202020;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgba(190, 190, 190, 0.5);
    border: solid 1px #e9e9e9;
    background-color: #fff;
    min-width: 210px;
}

.account-dropdown a {
    color: #202020;
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e9e9e9;
}

.account-dropdown a:last-child {
    border-bottom: 0;
}

.account-dropdown a:hover {
    color: #5e071e;
}

.account-dropdown a svg {
    margin-right: 15px;
    width: 20px;
}

.account-dropdown.oppened {
    display: block;
}

.account-dropdown__content {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}