html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    color: #0D0D0D;
    font-family: "Open Sans", sans-serif;
}

.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

.wrapper {
    display: flex;
    flex: 1;
    min-height: 100vh;
    max-height: 100vh;
}

.sidebar {
    /*position: fixed;
    width: 200px;
    top: 60px;
    left: 0;
    bottom: 0;
    border-right: 1px solid #e5e5e5;
    z-index: 1000;*/
    min-width: 200px;
    max-width: 200px;
    margin-top: 60px;
    border-right: 1px solid #e5e5e5;
}

.main-content {
    flex-grow: 1;
    /*margin-left: 200px;*/
    margin-top: 60px;
    overflow-y: auto;
}

@media (max-width:992px) {
    .main-content {
        margin-left: 0;
    }
}

.side-link {
    border-radius: 6px;
}

    .side-link:hover {
        background-color: #ececec;
    }

.side-link-active {
    font-weight: bold;
    background-color: #ececec;
}

.text-main-color {
    color: #0D0D0D !important;
}

.text-footer-color {
    color: #7D7D7D;
}

.dropdown-toggle {
    outline: 0;
}

.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
}
    
.btn-toggle:hover,    
.btn-toggle:focus {
    color: rgba(0, 0, 0, .85);
    background-color: #ececec;
}

    
.btn-toggle::before {        
    width: 1.25em;        
    line-height: 0;    
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");    
    transition: transform .35s ease;    
    transform-origin: .5em 50%;    
}

    
.btn-toggle[aria-expanded="true"] {        
    color: rgba(0, 0, 0, .85);
}

        
.btn-toggle[aria-expanded="true"]::before {           
    transform: rotate(90deg);
}

.btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
    background-color: #ececec;
}

.side-link-active {
    font-weight: bold;
    background-color: #ececec;
}
