body {
    position: relative;
}

.main-container {
    min-height: 100vh;
    padding-bottom: 105px;
}

.content {
    margin: auto;
    padding: 20px 30px 30px;
    width: 92%;
    max-width: 1420px;
}

nav {
    background-color: #555a5b;
}


nav,
#navbar-sub,
#profile-nav {
    min-height: 64px;
}

nav * {
    color: white;
}

nav::after {
    content: "";
    display: block;
    clear: both;
}

#home-link img {
    height: 28px;
    width: 28px;
}

#navbar-sub,
#profile-nav {
    display: flex;
}

#navbar-sub {
    float: left;
}

#profile-nav {
    float: right;
}

.nav-block {
    height: 62px;
}

.nav-block a:not(.btn) {
    display: block;
    padding: 19px 22px;
}

.nav-block:hover:not(.dropdown) {
    background-color: #414949;
}

.nav-block > a:hover {
    color: white;
    text-decoration: none;
}

#profile-nav {
    margin-right: 50px;
}

.profile-btn {
    background-color: #06B5A3;
    box-shadow: 1px 2px 7px #141313;
    color: white;
    display: flex;
    margin-top: 12px;
    margin-left: 12px;
    width: 195px;
}

#profile-btn-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 210px;
}

.profile-btn:hover {
    background-color: #058e80;
    color: white;
}

.profile-btn:focus {
    box-shadow: none;
}

#profile-caret {
    margin-top: 3px;
}

.page-header {
    margin-bottom: 12px;
}

.nav-credit-display {
    margin: 18px 17px 0 0;
    background-color: #787878;
    border-radius: 6px;
    padding: 0 6px;
    height: 26px;
}

.nav-credit-display:hover {
    background-color: #9c9a9a;
    color: white;
    text-decoration: none;
}

.description-sect {
    margin-bottom: 12px;
}

.flex-container {
    display: flex;
}

.search-container {
    position: relative;
}

.search-container .dropdown-menu {
    width: 100%;
}

.dropdown-menu {
    cursor: pointer;
    max-height: 200px;
    overflow-y: auto;
    width: 230px;
}

.dropdown-menu .dropdown-item {
    padding: 10px;   
}

label {
    margin-bottom: 0;
}

.page-operations-sect {
    min-height: 42px;
    position: relative;
}

.page-operations-sect::after {
    clear: both;
    content: "";
    display: block;
}

.page-operations-sect .pagination {
    bottom: 0;
    position: absolute;
}

.page-operations-sect .sort-operation {
    float: right;
    width: 210px;
}


.return-link {
    margin-bottom: 12px;
}

.page-index {
    font-weight: 600;
    text-align: center;
}

button:disabled {
    cursor: default;
}

footer {
    background-color: #474B4B;
    bottom: 0;
    color: white;
    margin-top: -85px;
    min-height: 85px;
    padding-bottom: 28px;
    position: absolute;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 570px) {
    #navbar-sub, 
    #profile-nav {
        display: block;
        float: none;
    }

    #profile-nav {
        margin-right: 0;
    }

    .nav-credit-display {
        margin-left: 22px;
    }

    .profile-nav-block {
        padding-bottom: 8px;
    }
}