.profile-btn-container {
    position: relative;
}

.profile-btn-container:hover .profile-btn-dropdown {
    display: block;
}

.profile-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529!important;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-weight:bold;
    background-color: #FFF5B8!important;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    float:right;
    border-radius: 4px;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    background-position: .8rem center!important;
    border-radius: 100px;
    padding-left: 2.5rem!important;
    width: auto;
    min-height: 38px;
    background-image: url("user-profile.svg")!important;
    background-repeat: no-repeat!important;
}

.profile-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.icon-button[aria-expanded="true"] {
    background-color: #e5e5e5;
}

.profile-btn__text {
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: .5rem;
    font-family: "abel_probold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.profile-btn-dropdown {
    padding-top: 1rem;
    right: .5rem;
    border: 1px solid #e5e5e5;
    padding: 0;
    position: absolute;
    top: 38px;
    right: 0;
    display: none;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid rgba(35,35,35,0.15);
    border-radius: 4px;
    width: 328px;
    z-index: 999;
}


.profile-btn-dropdown .profile-btn-dropdown-header {
    padding: 1rem;
    background: #ffffff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.profile-btn-dropdown-header .user, .profile-btn-dropdown-header .location {
    width: calc(50% - .5rem)!important;
}

.profile-btn-dropdown-header .item {
    font-family: "abel_probold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.profile-btn-dropdown ul {
    list-style:none;
    padding:0;
    margin:0;
}

.profile-btn-dropdown li {
    border-top: 1px solid #e5e5e5;
}

.profile-btn-dropdown a.dropdown-item {
    padding: 1rem;
    display: block;
    font-size: 15px;
    font-family: "abel_probold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #212529;
    background:#ffffff;
}

.profile-btn-dropdown a.dropdown-item:hover {
    background: #f4f4f4;
}

.recent-history-btn-container {
    position: relative
}

.recent-history-btn-container:hover .recent-history-dropdown-content {
	animation: slide-down 200ms ease-in-out forwards;
    transform-origin: top center;
    display: block
}

@keyframes slide-down {
    0% {
        transform: scaleY(0)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(1)
    }
}

.recent-history-btn {
    display: inline-block;
    text-align: center;
    user-select: none;
    margin: 0px;
    padding: 0px;
}
.recent-history-btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

.recent-history-dropdown-content {
	display: none;
    padding-top: 1rem;
    border: 1px solid #e5e5e5;
    padding: 0;
    position: absolute;
    top: 38px;
    right: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: none;
    border-radius: 4px;
    width: 370px;
    max-height: 450px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 999;
	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
}

.recent-history-dropdown-content > ul {
  	list-style: none;
    padding: 2px;
    margin: 0;
}

.recent-history-dropdown-content::-webkit-scrollbar {
    display: none;
}

.recent-history-dropdown-content .dropdown-content-item {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
    line-height: 1.4em;
    font-weight: bold;
    color: #A5A5A9;
    font-weight: bold;
    background: white;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 2px 0.4em;
    border-bottom: 1px solid #d3d3d3;
}

.recent-history-dropdown-content .dropdown-content-button {
	justify-content: center !important;
}

.recent-history-dropdown-content .dropdown-content-button-link,
.recent-history-dropdown-content .dropdown-content-button-link:hover {
	background-color: #59595B;
    margin: 10px 0px;
    padding: 5px 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 7px;
}

.recent-history-dropdown-content .dropdown-content-item-left {
	background-position: 0;
    width: 20px;
    height: 20px;
    padding: 0px 20px 0px 10px;
    margin: 0px;
    float: left;
}

.recent-history-dropdown-content .dropdown-content-item-middle {
	width: 90% !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.recent-history-dropdown-content .dropdown-content-item-middle-text {
	max-width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-history-dropdown-content .dropdown-content-item-right {
	padding: 0px 5px 0px 0px;
}


