﻿.esh-identity {
  line-height: 2.5rem;
  position: relative;
  text-align: right;
}

.esh-identity-section {
  display: inline-block;
  width: 100%;
}

.esh-identity-name {
    display: inline-block;
    color: white
}

.esh-identity-name--upper {
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .esh-identity-name {
        font-size: 0.85rem;
        color: #f0ece8
    }
}

.esh-identity-image {
    display: inline-block;
    height: 23px;
    width: 1.4rem;
}

.esh-identity-drop {
    background: #ffffff61;
    height: 10px;
    width: 10rem;
    overflow: hidden;
    padding: .5rem;
    position: absolute;
    right: 0;
    top: 2.5rem;
    transition: height 0.35s;
    z-index: 1;
}

.esh-identity:hover .esh-identity-drop {
    border: 0px solid #000000;
    height: 5rem;
    transition: height 0.35s;
}

.esh-identity-item {
  cursor: pointer;
  transition: color 0.35s;
    padding: 3px 3px 3px 3px;
}

.esh-identity-item:hover {
    color: #e5e5ea;
    transition: color 0.35s;
    }

