.dropdown_container {
    position: relative;
    display: inline-block;
}
#actions_drop_btn.dropdown_action_btn {
    position: relative;
    padding: 9px;
    height: 22px;
    background: #E3F1FB;
    box-sizing: border-box;
}
.dropdown_action_btn {
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
}
.dropdown_action_btn.disabled {
    opacity: .3;
    pointer-events: none;
}
.dropdown_action_btn span {
    position: relative;
    top: -2px;
    display: inline-block;
}
#dropdown_email {
      top: 0;
}
.dropdown_action_btn:hover span,
.dropdown_action_btn.open span {
    text-decoration: underline;
}
.dropdown_action_btn .icn_dropdown_arrow_up,
.dropdown_action_btn .icn_dropdown_arrow_up_white {
    left: 3px;
}
.dropdown_action_btn:hover .icn_dropdown_arrow_up,
.dropdown_action_btn.open .icn_dropdown_arrow_up {
    background-position: -120px -75px;
}
/* Dropdown Content */
.dropdown_action_btn + .dropdown {
    position: absolute;
    top: 51px;
    right: -1px;
    display: none;
}
#actions_dropdown {
    top: 23px;
}
#user_dropdown {
    top: 25px;
    left: -15px;
    width: auto;
    min-height: 1px;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
}
#user_dropdown > li {
    list-style: none;
    font-size: 14px;
    color: #4D4D4D;
    line-height: 30px;
    padding: 2px 0 5px 10px;
    cursor: pointer;
}
#user_dropdown > li:hover {
    color: #15ABFF;
}
#user_dropdown > li:nth-last-child(2) {
    padding: 6px 0 6px 9px;
    border-top: 1px solid #DCDCDC;
}
.open .dropdown,
.dropdown.open {
    display: block;
}
.dropdown > a {
    display: block;
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
    text-align: right;
    line-height: 24px;
    color: #4D4D4D;
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
}
.dropdown > a + a {
    border-top-color: #E6E6E6;
}
.dropdown > a:hover {
    background-color: #09F;
    color: #F6F6F6;
}

.dropdown > ul,
.dropdown {
    position: relative;
    top: 4px;
    z-index: 4;
    text-align: left;
    margin: 0;
    padding: 0;
    border: 1px solid #A0A0A0;
    background: #FFF;
    box-shadow: 0 8px 8px rgba(0,0,0,.16);
    box-sizing: border-box;
}
.dropdown {
    width: 275px;
	min-height: 240px;
    padding-bottom: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.dropdown_nodrives {
    min-height: 0;
}
.dropdown h2 {
    margin: 0;
    padding: 13px 20px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #9FC8DF;
}
.dropdown hr {
    height: 0;
    margin: 20px;
    border: 0;
    border-top: 1px solid #E8E9E8;
}

.dropdown_nodrives hr {
    height: 0;
    margin: 20px;
    border: none;
}

.dropdown footer {
    text-align: center;
}
.dropdown footer button {
    width: 160px;
    height: 32px;
    padding: 0;
    line-height: 32px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.dropdown > ul > li {
    list-style: none;
    width: 238px;
    height: 40px;
    padding: 13px 12px;
    border-bottom: 1px solid #9FC8DF;
    box-sizing: border-box;
    cursor: pointer;
}
.dropdown > ul > li:last-child {
    border-bottom: 0;
}
.dropdown > ul > li:hover {
    color: #15ABFF;
}
.dropdown > ul > li:active,
.dropdown > ul > li:focus {
    background: #E3F1FB;
    color: #4B5A69;
}
#user_dropdown ul > li {
    display: inline-block;
}
#getting_started_button {
    cursor: pointer;
}

/* Header Dropdown: Shared: */
#shared_drop_container .icn_dropdown_arrow_up_white {
    position: relative;
    top: -3px;
    display: inline-block;
    opacity: .6;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}
#shared_drop_container.selected .icn_dropdown_arrow_up_white,
#shared_drop_container:hover .icn_dropdown_arrow_up_white {
    opacity: 1;
}