@font-face {
    font-family: 'Museo Sans 100';
    src: url('../font/MuseoSans-100.eot');
    src: url('../font/MuseoSans-100.eot?#iefix') format('embedded-opentype'),
        url('../font/MuseoSans-100.woff2') format('woff2'),
        url('../font/MuseoSans-100.woff') format('woff'),
        url('../font/MuseoSans-100.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans 500';
    src: url('../font/MuseoSans-500.eot');
    src: url('../font/MuseoSans-500.eot?#iefix') format('embedded-opentype'),
        url('../font/MuseoSans-500.woff2') format('woff2'),
        url('../font/MuseoSans-500.woff') format('woff'),
        url('../font/MuseoSans-500.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans 700';
    src: url('../font/MuseoSans-700.eot');
    src: url('../font/MuseoSans-700.eot?#iefix') format('embedded-opentype'),
        url('../font/MuseoSans-700.woff2') format('woff2'),
        url('../font/MuseoSans-700.woff') format('woff'),
        url('../font/MuseoSans-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Museo Sans 300';
    src: url('../font/MuseoSans-300.eot');
    src: url('../font/MuseoSans-300.eot?#iefix') format('embedded-opentype'),
        url('../font/MuseoSans-300.woff2') format('woff2'),
        url('../font/MuseoSans-300.woff') format('woff'),
        url('../font/MuseoSans-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}



body, p, a, h1, h2, h3, h4, h5, h6, b, i, span, div, ul, li, ol {
    font-family: 'Museo Sans 300', Arial, Helvetica, sans-serif;
}

.icon.icon-small {
    font-size:0.7rem
}

header {
    background-color: #36475e;
}
header .text-primary {
    color: #fff !important;    
}
header a {
    color: #000;
}header a:hover {
    color: #333;
}

.btn.btn-primary {
    background-color: #80a9e1;
    border-color: #80a9e1;
    color: #fff !important;
}

.btn.btn-primary, .btn.btn-primary:active, .btn.btn-primary:hover {
    border-color: #80a9e1 ;
    color: #80a9e1 ;
}

.btn.btn-secondary {
    background-color: #80a9e1;
    border-color: #80a9e1;
    color: #fff !important;
}

.btn.btn-secondary, .btn.btn-secondary:active, .btn.btn-secondary:hover {
    border-color: #80a9e1 ;
    color: #80a9e1 ;
}

.dropdown.aligned-dropdown {
    width: 100%;
    display: inline-grid;
    grid-template-columns: auto;
}

.dropdown.aligned-dropdown .hidden {
    /* hidden, has width but no height */
    visibility: hidden;
    height: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
    border-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.dropdown .menu.hidden {
    display: none;
}

.dropdown.dropdown-input {
    margin-bottom: 1rem;
}

.dropdown-toggle, 
.dropdown-toggle:active, 
.dropdown-toggle:hover, 
.dropdown-toggle:focus {
    margin-bottom: 0px !important;
    cursor:pointer;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.dropdown-toggle .placeholder {
    color: #bcc3ce;
}

.datetime-picker .menu:focus-within:not(.hidden) {
    display: block;
}

.datetime-picker .menu {
    padding: 0px;
    max-height: 50rem;
}

.timepicker {
    width: 100%;
}


.timepicker .time-part {
    display:-ms-flexbox;
    display:flex;
    -ms-flex-direction:column;
    flex-direction:column;
    align-items:center;
    width: 2rem;
}

.timepicker .time-divider {
    font-size: 1.5rem;
}

.timepicker .time-number, 
.timepicker .time-number:focus,
.timepicker .time-number:active {
    font-size: 1.5rem;
    text-align:center;
    padding: 0px;
    margin: 0.1rem;
    border: none;
}

.material-symbols-outlined {
    font-size:1.5rem;
}

.material-symbols-outlined.icon-small {
    font-size:1.3rem;
}

.material-symbols-outlined.icon-large {
    font-size:1.8rem;
}

.material-symbols-outlined.icon-tiny {
    font-size:1.0rem;
}

.overlay-container {
    position: relative;
}

.loading.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(247,248,249,.75);
    top: 0px;
    left: 0px;
    z-index: 10;
}

.flex-centered-vertical{
    align-items:center;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-align:center;
}

.ml-auto{
    margin-left:auto
}

.mt-auto{
    margin-top:auto
}

.datatable {
    height: 100%;
    overflow: auto;
    /*padding-bottom: 3rem*/;
}

/* fade out bottom effect*/

.blur-bottom {
    position: relative;
}

.table-footer {
    position: sticky;
    bottom   : 0;
    left     : 0;
}

.table-footer.loading {
    position: sticky;
    width: 100%;
    height: 3rem;
}

.blur-bottom .table-footer:after {
    display: block;
    content  : "";
    position : absolute;
    z-index  : 1;
    bottom   : 0;
    left     : 0;
    pointer-events   : none;
    background-image : linear-gradient(to bottom, 
                      rgba(255,255,255, 0), 
                      rgb(255,255,255, 1) 90%);
    width    : 100%;
    height   : 6em;
}

.blur-top:before {
    content  : "";
    position : absolute;
    z-index  : 1;
    top      : 0;
    left     : 0;
    pointer-events   : none;
    background-image : linear-gradient(to top, 
                      rgba(255,255,255, 0), 
                      rgba(255,255,255, 1) 90%);
    width    : 100%;
    height   : 4em;
}

.datatable.blur-top:before {
    top      : 2rem;
}

.datatable table {
    border-collapse: separate; 
}
  

.datatable thead tr th {
    position: sticky;
    top: 0;
    border-collapse: separate;
    z-index: 1;
}

.datatable thead th {
    background-color: white;
}

.scrollbar-no-width, .dropdown .menu {
    scrollbar-width: none;
}
.scrollbar-no-width::-webkit-scrollbar,
.dropdown .menu::-webkit-scrollbar {
    display: none;
}

.overflow-auto {
    overflow: auto;
}

.content-90-height-container {
    display: flex;
    flex-direction: column;
    height : 90vh;
  }

/*
so that a dropdown inside of an accordion can flow 
out if the accordion is expanded.
*/
.accordion input:checked~.accordion-body {
    overflow: visible;
}


/* APPLIED DESIGN CUSTOM CSS SECTION */
body {
    font-size: 0.7rem;
}


.navbar {
    background: #fff;
    color: #000;
    border-bottom: 3px solid #ff9100;
}

.off-canvas .off-canvas-sidebar {
    padding: 1.5em .5em;
    background: #192e3c;
    color: #fff;
}

.btn, .btn:active, .btn:hover {
    border: 0.05rem solid #c1bfbf;
    border-color: #c1bfbf;
    color: #3b4351;
}

.btn:focus, .btn:hover {
    background: #f2f2f2;
    text-decoration: none;
}

.btn.btn-primary {    
    background-color: #192e3c;
    border-color: #192e3c;
}
.btn.btn-primary:active, .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:hover {
    background-color: #0e1921;
    border-color: #0e1921;
    text-decoration: none;
}

.btn.btn-secondary {    
    background-color: #ff9100;
    border-color: #ff9100;
    color: #fff;
}
.btn.btn-secondary:active, .btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:hover {
    background-color: #d17700;
    border-color: #d17700;
    text-decoration: none;
    color: #fff;
}

.btn.btn-link {
    border: none;    
    color: #333;
}
.btn.btn-link:active, .btn.btn-link:hover, .btn.btn-link:focus, .btn.btn-link:hover {
    border: none;
    text-decoration: none;
    color: #333;
    background-color: rgba(128, 169, 225, 0.1);
}

.btn.btn-link:focus {
    box-shadow:0 0 0 .1rem rgba(209, 119, 0,.2);
}

.color-orange {
    color: #ff9100;
}

.header-title {
    margin-left: 1em;
}

.header-title a {
    color: #333;
}

.off-canvas .off-canvas-content {
    padding: 1rem 1.5rem;
}

.menu .menu-item>a:focus, 
.menu .menu-item>a:hover {
    color: #333;
    background-color: rgba(128, 169, 225, 0.1);
    box-shadow: none;
}

.accordion-menu .menu .menu-item>a:focus, 
.accordion-menu .menu .menu-item>a:hover {
    background: inherit;
    color: #fff;
    box-shadow: none;
}

table {
    border-color: #c1bfbf;
}

.form-input {
    margin-bottom: 1rem;
    border: 0px none;
    border-bottom: 1px solid #c1bfbf;
    border-radius: 0px;
}

.form-input:active, .form-input:focus {
    outline: none;
    border-bottom: 1px solid #192e3c;
}

.form-input:focus {
    border-color: #192e3c;
    box-shadow: 0 0 0 0.1rem rgba(25, 46, 60, 0.2);
}
html {
    height: 100%;
    overflow: hidden;
}

.login-container {
    background-image: url('/assets/img/login_background.png');
    background-repeat: no-repeat;
    background-position: 20%;
    background-size: 45%;
}

.off-canvas {
    background-color: #fff;
}

.notification-container {
    position: absolute;
    top: 60px;
    right: 20px;
    width: auto;
    z-index: 1000;
  }

.login-form .toast.toast-error {
    background: none;
    color: red;
    border: 0px none;
}

.toast.toast-error, .toast.toast-success, .toast.toast-warning, .toast.toast-primary {
    background: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #d8d8d6;
    color: #000;
    padding: 12px;
    min-width: 300px;
}
.toast .btn {
    color: #bcbcbc;
}
.toast.toast-error i {
    color: #851d1d;
}
.toast.toast-warning i {
    color: #fec61d;
}
.toast.toast-success i {
    color: #3ea043;
}
.toast.toast-primary i {
    color: #80a9e1;
}

.elipsis {
    width: 22rem;
    height: 20rem;
    position: absolute;
    background: #ff9100;
    border-radius: 50%;
    left: -11.2rem;
    top: -10.2rem;
    border: 5px solid #192e3c;
}
.border-5px-blue {        
    border: 5px solid #192e3c;
}
.calendar .calendar-date .date-item.date-today {
    color: #ff9100;
    border-color:rgba(209, 119, 0,.2);
}

.calendar .calendar-date .date-item:focus{
    box-shadow:0 0 0 .1rem rgba(209, 119, 0,.2);
}

.calendar .calendar-date .date-item:focus,
.calendar .calendar-date .date-item:hover{
    background:#fefeff;
    border-color:rgba(209, 119, 0,.2);
    color:#d17700;
    text-decoration:none;
}

.calendar .date-selected .date-item, 
.calendar .date-selected .date-item:hover,
.calendar .date-selected .date-item:focus,
.calendar .date-selected .date-item:active,
.calendar .date-selected .date-item.date-today {
    background: #ff9100;
    border: none;
    color: #fff;
}
.form-input:-ms-input-placeholder {
    color:#bcc3ce;
    opacity: 1;
   }
   .form-input::-ms-input-placeholder {
    color:#bcc3ce;
    opacity: 1;
   }
   .form-input::placeholder {
    color:#bcc3ce;
    opacity: 1;
   }

   .full-height {
    height: 100vh;
   }


   #sidebar.closed {
    min-width: 50px;
    width: 4.5em;
   }
   #sidebar.closed .sidebar-content{
    display: none;
   }
   .btn.btn-primary.sidebar-toggle {
    color: #ff9100 !important;
    height: 2.1rem;
   }

