/*//////////////////*/
/* SESSION ONLY CSS */
/*//////////////////*/
.hidden {
    display: none;
}

.session-upper-container {
	padding: 2vh 0;
    margin-top: 15vh;
}

.session-container {
	background-color: #3f5364;
    color: white;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0px 4px 5px 5px #0000002e;
}

.session-logo {
    text-align: center;
    padding-top: 15px;
}

/*//////////////////*/
/* SIDEBAR ONLY CSS */
/*//////////////////*/

.sidebar {
    background-color: #3f5364;
    width: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    box-shadow: 0px 4px 5px 2px #0000000f;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.2s ease;
    overflow: hidden;
}
.sidebar-section {
    width: 100%;
    padding: 20px 0px;
}
.sidebar-section.full {
    flex-grow: 1;
}

.sidebar-section a, .sidebar-section button {
    font-size: 23px;
    background-color: transparent;
    border: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 30px;
    position: relative;
    text-align: left;
    color: #feb600;
}
.sidebar-section a:hover, .sidebar-section button:hover {
    background-color: #2f3d48;
}
.sidebar-title {
    display: none;
    font-size: 15px;
    position: absolute;
    left: 70px;
    top: 10px;
    text-align: left;
}

.sidebar-section a.active {
    background-color: #2f3d48;
    border-radius: 30px 0px 0px 30px;
}

.sidebar.open {
    width: 240px;
    align-items: left !important;
}
.sidebar.open .sidebar-title {
    display: inline;
}

.sidebar-button {
    position: absolute;
    top: 10px;
    left: 24px;
    z-index: 2;
    font-size: 24px;
    display: none;
}
.sidebar-button button {
    background-color: transparent;
    color: white;
    border: none;
}

/* //////////// */
/* // CONTAINER */
/* //////////// */

body {
    background-color: #f1f1f1;
}

.main-container {
    margin-left: 80px;
    max-height: 100vh;
    padding: 0px 1%;
    overflow: scroll;
    overflow-x: hidden;
}
.main-container.open {
    margin-left: 240px;
}

.container-custom {
    width: 85%;
}

.section {
    padding: 24px;
    margin: 16px 0px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 4px 0px #cccccc;
}
.section-title {
    background-color: #3f5364;
    color: #feb600;
    margin: -24px;
    margin-bottom: 24px;
    padding: 12px 24px;
}
.section-title * {
    margin-bottom: 0px;
}

.breadcrumbs a {
    color: #feb600;
}

.table th {
    background-color: #bdc6ce;
}
.table td {
    vertical-align: bottom;
}

.text-group {
    margin-bottom: 8px;
}
.text-group * {
    margin-bottom: 0px;
}

/* //////////// */
/* //  INPUT    */
/* //////////// */

input, textarea {
    background-color: #fdfdfd !important;
}

.primary-button {
    color: #3f5364;
    background-color: #feb600;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color .25s;
    border: none;
    font-size: 18px;
}
.primary-button:hover {
    color: #3f5364;
    background-color: #dea002;
    text-decoration: none;
}
.primary-button.alt {
    background-color: #4c4c4c;
    color: #ffffff;
}
.primary-button.alt:hover {
    background-color: #616161;
}

/* //////////////////// */
/* //  MEDIA QUERIES    */
/* //////////////////// */

.blur-cover {
    background-color: #0000004d;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.blur-cover.small-hidden {
    display: none;
}

@media (max-width: 700px) {
    .sidebar.small-hidden {
        width: 0px;
    }
    .sidebar-button {
        display: block;
    }
    .main-container {
        margin-left: 0px !important;
    }
}

/* //////////////////// */
/* //  FOOTER   */
/* //////////////////// */

footer {
    padding: 0px 24px 0px 24px;
    word-break: break-all;
}
footer a{
    color: #feb600;
}
footer a:hover, footer a:active, footer a :focus {
    color: #dea002;
}