﻿html, body {
    height: 100%;
    font-family: Montserrat;
    line-height: 21px;
}

.main-container{
    padding-top: 30px;
}

.main-container > div:first-child {
    padding-bottom: 30px;
    background-color: #FFFFFF;
}

h6 {
    font-weight: 700 !important;
}

h3.text-primary {
    padding-top: 15px;
}

.sf-SubmitButton {
    display: none
}

.js-h3-title {
    padding-top: 30px
}

.js-submit-button-container {
    padding-top: 30px
}

.js-validity-status-icon-container {
    margin: auto;
    padding-left: 0;
}

.fa-times-circle {
    color: red;
}

.fa-check-circle {
    color: green;
}

.fa-exclamation-triangle {
    color: #ECE354;
}



/***********************************************/
/*              Bootstrap Override             */
/***********************************************/
.alert-secondary {
    color: #FFFFFF;
    background-color: #949D9E;
    border-color: #798586;
}

.btn-outline-secondary:hover {
    color: #FFFFFF;
    background-color: #949D9E;
    border-color: #949D9E;
}



/*******************/
/* Kendo Override  */
/*******************/
.k-grid-toolbar {
    padding: .6em 1.3em .6em .4em !important;
}



/***********************************************/
/*              Menu and Layout                */
/***********************************************/

.navbar-dark .navbar-nav .nav-link {
    color:white;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

a.nav-link, a.nav-link:visited {
    text-decoration: none;
    position: relative;
    color: white;
    padding-left: 16px;
}

a.nav-link:hover {
    color: white;
}

a.nav-link:after, a.nav-link:visited:after {
    content: '';
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0%;
    background: white;
    transition: 0.2s;
}

a.nav-link:hover:after, a.nav-link:visited:hover:after {
    color: white;
    width: 15%;
}

a.nav-link.block, a.nav-link:visited.block {
    display: block;
    padding: 0.5em;
}

.navbar-expand-sm .navbar-nav .nav-link {
    padding-left: 16px;
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border: none;
}

a.dropdown-item, a.dropdown-item:visited {
    text-decoration: none;
    position: relative;
    color: white;
    padding-left: 16px;
}

a.dropdown-item:hover {
    color: white;
}

a.dropdown-item:after, a.dropdown-item:visited:after {
    content: '';
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0%;
    background: white;
    transition: 0.2s;
}

a.dropdown-item:hover:after, a.dropdown-item:visited:hover:after {
    color: white;
    width: 15%;
}

a.dropdown-item.block, a.dropdown-item:visited.block {
    display: block;
    padding: 0.5em;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: transparent;
}

.sub-menu-container {
    background-color: #7c5077 !important;
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 325px;
    position: fixed;
    /*top: 0;*/
    /*left: 0;*/
    height: 100vh;
    z-index: 999;
    background: #5d3c59;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -325px;
}

#content {
    position: absolute;
    width: calc(100% - 325px);
    margin-top: 55px;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
}

#content.active {
    width: 100%;
}

@media screen and (max-width: 576px) {
    #content {
        margin-top: 86px;
    }
}


