body,
html {
    width: 100%;
    height: 90%;
    /*overflow: hidden;*/
}

body {
    font-family: 'FuturaBookC', sans-serif;
    margin-top: 5em;
    background: #fafafa;
    color: #333333;
}

.content-section {
    background: #ffffff;
    padding: 10px 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.navbar {
    font-size: 16px;
    transition: top 0.5s;
}

.navbar.navbar-hidden {
    top: -100px !important;
}

.navbar-brand {
    font-size: 16px;
    font-weight: bold;
}

.navbar.second-navbar {
    top: 3.2em;
    margin-bottom: 20px;
    z-index: 100;
}

.main-content {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
}

.dropdown-menu {
    z-index: 100;
}

.dropdown:hover > .dropdown-menu {
    display: block !important;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
    left: 100%;
    margin-top: -37px;
}

.dropdown-toggle::after {
    margin-bottom: -2px;
}

.dropdown-menu li a.active {
    color: #fff;
}

.custom-toggle-arrow {
    font-size: 18px;
    margin-top: 6px;
    line-height: 12px;
}

#container-after-second-navbar {
    padding-top: 3.8em;
}

.account-img-small {
    height: 30px;
    width: 30px;
    margin-top: 5px;
}


.tooltip_user {
    position: relative;
    display: inline-block;
}

.tooltip_user .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip_user .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip_user:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.button_link {
    background: none !important;
    border: none;
    padding: 0 !important;
    text-decoration: underline;
    cursor: pointer;
}

.dropdown-scroll {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}