﻿@charset "utf-8";

html {
    height: 100% !important;
    /*background-color: #ececec !important;*/
}

.hidden {
    display: none;
}

body {
    /*margin: 100px 0 0 0;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #222;
    height: 100% !important;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    padding: 0rem 1rem 0rem 1rem;
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.side-nav {
    margin-top: 38px !important;
}

.modal-xlg {
    width: 95% !important;
    max-width: none !important;
}

/*.modal-dialog {
    max-width: none !important;
}*/

@media screen and (min-width:992px) {
    body {
        margin-top: 90px;
    }
}

@media screen and (max-width:991px) {
    body {
        margin-top: 55px;
    }
}

.nav > li {
    position: relative;
}

.navbar-brand {
    float: left;
    height: 100%;
}

    .navbar-brand.logo {
        position: fixed;
        left: 0;
        top: 0;
    }

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.alignleft {
    float: left;
}

.alignright {
    text-align: right;
}

.aligncenter {
    text-align: center;
}

.light-gray-background {
    background-color: #999;
}

a:link, a:visited, a:active, a:focus {
    color: #f26329;
    text-decoration: none;
    text-transform: none;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

a:hover {
    color: #222;
}

p {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #333;
    font-weight: 800;
}

.ms-choice, .ms-choice:focus {
    border: 0px solid #aaa !important;
}

.hdr {
    position: relative;
}

header {
    width: 100%;
    height: auto;
    min-height: 100%;
    padding-bottom: 0;
    padding-left: 0%;
    position: absolute;
    visibility: visible;
    overflow: hidden;
    display: inline;
    margin: -100px 0 0 0;
    z-index: -1;
    -moz-animation-name: dropHeader;
    -moz-animation-iteration-count: once;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: .9s;
    -webkit-animation-name: dropHeader;
    -webkit-animation-iteration-count: once;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: .9s;
    animation-name: dropHeader;
    animation-iteration-count: once;
    animation-timing-function: ease-in;
    animation-duration: .9s;
}

    header:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        margin-left: 0px;
        border-bottom: 730px solid transparent;
        border-left: 1690px solid #ddd;
    }

@-moz-keyframes dropHeader {
    0% {
        top: -1200px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes dropHeader {
    0% {
        top: -1200px;
    }

    100% {
        top: 0;
    }
}

@-o-keyframes dropHeader {
    0% {
        top: -1200px;
    }

    100% {
        top: 0;
    }
}

@keyframes dropHeader {
    0% {
        top: -1200px;
    }

    100% {
        top: 0;
    }
}


#login {
    padding-top: 50px;
    max-width: 735px;
    margin: 0 auto;
}

    #login p {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-family: 'Open Sans', sans-serif;
        font-size: 17px;
        margin: 20px auto 10px 0;
    }

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fade-in.fone {
        -webkit-animation-delay: 0.7s;
        -moz-animation-delay: 0.7s;
        animation-delay: 0.7s;
    }

    .fade-in.ftwo {
        -webkit-animation-delay: 1.2s;
        -moz-animation-delay: 1.2s;
        animation-delay: 1.2s;
    }

    .fade-in.fthree {
        -webkit-animation-delay: 1.6s;
        -moz-animation-delay: 1.6s;
        animation-delay: 1.6s;
    }

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.box {
    width: auto;
    height: 100%;
    min-height: 300px;
    background-color: rgba(255,255,255,.9);
    border: 10px solid rgba(0,0,0,.1);
    margin: 40px 0;
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
    display: none;
}

.box.is-dragover {
    background-color: grey;
}

.box.has-advanced-upload {
    background-color: white;
    outline: 2px dashed black;
    outline-offset: -10px;
}

    .box.has-advanced-upload .box__dragndrop {
        display: inline;
    }

.box.is-uploading .box__input {
    visibility: hidden;
}

.box.is-uploading .box__uploading {
    display: block;
}


.brand img {
    max-width: 100%;
}

#btm {
    color: #eee;
    font-size: 10px;
    letter-spacing: 1px;
}

    #btm a:hover {
        color: #fff;
    }

#sidebar-menu-toggle-button {
    position: absolute;
    top: 40px;
    cursor: pointer;
    font-size: 18px;
}

#sidebar > ul {
    display: block;
}

@media screen and (min-width:992px) {
    /*#wrapper {
        padding-left: 225px;
    }*/

    #page-wrapper {
        padding: 0px 10px 10px 225px;
    }

    .navbar-toggle {
        display: none;
    }

    /*#sidebar-menu-toggle-button{
        position: absolute;
        top: 40px;
        cursor: pointer;
        font-size: 18px;
    }*/
}

@media screen and (max-width:991px) {
    /*#wrapper {
        padding-left: 0px;
    }*/

    #page-wrapper {
        width: 100%;
        padding-left: 0px;
        background-color: #F6F6F6;
    }

    .navbar-toggle {
        float: none;
    }

    #sidebar {
        padding-left: -225px;
    }

    #sidebar-menu-toggle-button {
        display: none;
    }
}

/* Overflow Viewport Height */

.huge {
    font-size: 50px;
    line-height: normal;
}

footer a:hover {
    color: #eeeeee;
}

.ui-iggrid > .btn {
    max-width: 34px;
    min-width: 34px;
    margin: 2px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

    input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 50px white inset;
        -webkit-text-fill-color: #333;
    }

.btn {
    color: #eee !important;
    margin: 2px;
}

tbody > tr > td > .btn-sm {
    margin: 2px 0px 2px 0px;
    min-width: 32px;
    max-width: 32px;
    padding: 2px 7px;
    text-align: center;
    align-content: center;
    height: 32px;
}

tbody > tr > td > span > .btn-sm {
    margin: 2px 0px 2px 0px;
    min-width: 32px;
    max-width: 32px;
    padding: 2px 7px;
    text-align: center;
    align-content: center;
    height: 32px;
}

.btn-dropdown {
    background-color: transparent;
    color: #333 !important;
    text-align: left !important;
}

    .btn-dropdown:hover {
        color: #606060 !important;
    }


.tt-dropdown-menu {
    background-color: #F6F6F6;
    border: 1px solid #ccc;
    box-shadow: 0px 1px 2px rgba(74, 74, 74, 0.2);
    padding: 5px 0px;
    min-width: 100px;
    text-align: left;
}

.tt-dataset-search-results {
    padding: 3px;
    width: 500px;
    text-align: left;
    background-color: #fff;
}

.tt-hint {
    background: rgb(246, 246, 246) none repeat scroll 0% 0% !important;
}

.modal-content .tt-hint {
    background: #fff none repeat scroll 0% 0% !important;
}


.tt-dataset-search-results:active {
    background-color: #EAEAEA;
}

span.ui-iggrid-headertext {
    color: #fff !important;
}

.ui-widget-header {
    background: #454545 !important;
    color: #fff !important;
}

.logo-lg {
    display: block;
    max-width: 220px !important;
}

.logo-sm {
    display: block;
    width: 30px !important;
    margin: 0px;
    margin-left: 20px;
    padding-bottom: 10px;
}

/* #Navigation
================================================== */

@media screen and (min-width: 992px) {
    /*.logo-lg{
        display: block;
    }

    .logo-sm{
        display: none;
    }*/

    .top-nav {
        padding: 0 45px 0 15px;
        min-height: 85px;
    }
}

@media screen and (max-width: 991px) {
    /*.logo-lg{
        display: none;
    }

    .logo-sm{
        display: block;
        width: 30px !important;
        margin: 0px;
    }*/

    /*.logo-sm{
	    padding-bottom: 10px;
        margin-left: 20px;
    }*/

    .top-nav {
        padding: 0 10px 0 15px !important;
        /*min-height: 85px;*/
    }
}

.logo img {
    width: 100%;
    padding: 0;
    margin-left: -17px;
}

.top-nav > li {
    display: inline-block;
}

    .top-nav > li > a {
        /*padding-top: 15px;*/
        padding-bottom: 0px;
        line-height: 20px;
        color: #999;
    }

        .top-nav > li > a:hover,
        .top-nav > li > a:focus,
        .top-nav > .open > a,
        .top-nav > .open > a:hover,
        .top-nav > .open > a:focus {
            color: #fff;
            background-color: transparent;
        }

.top-nav > .open > .dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    border: 1px solid rgba(0,0,0,.15);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

@media (min-width: 992px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width: 992px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px;
            }

        .navbar-nav.navbar-right:last-child {
            margin-right: -15px;
        }
}

/* Side Navigation */

@media(min-width:992px) {
    .side-nav {
        position: fixed;
        top: 90px;
        left: 225px;
        width: 225px;
        margin-left: -225px;
        border: none;
        border-radius: 0;
        overflow-y: auto;
        background-color: #222;
    }

        .side-nav > li > a {
            width: 225px;
        }

        .side-nav li a:hover,
        .side-nav li a:focus {
            outline: none;
            background-color: #000 !important;
        }
}

.side-nav > li > ul {
    padding: 0;
}

    .side-nav > li > ul > li > a {
        display: block;
        padding: 10px 15px 10px 38px;
        text-decoration: none;
        color: #999;
    }

        .side-nav > li > ul > li > a:hover {
            color: #fff;
        }

footer {
    color: #aaa;
    margin: 30px 0;
    clear: both;
}

.footer a {
    font-size: 10px;
}

/* #Media Queries
================================================== */

@media screen and (max-width: 1366px), screen and (max-height: 768px) {
    header:after {
        border-bottom: 650px solid transparent;
        border-left: 1200px solid #eeeeee;
    }

    #login {
        padding-top: 10px;
    }
}

@media only screen and (max-width: 959px) {
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    header:after {
        border-bottom: 500px solid transparent;
        border-left: 800px solid #eeeeee;
    }

    .container {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
}


@media only screen and (min-width: 480px) and (max-width: 767px) {
    header:after {
        border-bottom: 500px solid transparent;
        border-left: 600px solid #eeeeee;
    }

    .container {
        margin: 0 0 0 7%;
    }
}


@media only screen and (max-width: 479px) {
    header:after {
        border-bottom: 500px solid transparent;
        border-left: 800px solid #eeeeee;
    }

    .navbar-header {
        width: 100px;
        float: right;
    }

    .alignleft {
        float: none;
        text-align: left;
    }

    .container {
        width: 100%;
        margin: 0 auto;
    }
}

/* z-index bug fix for date picker element */
.ui-datepicker {
    z-index: 1050 !important;
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

.modal-xlg {
    width: 95% !important;
    max-width: none !important;
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: absolute !important;
}

@media (min-width: 992px) {
    .side-nav {
        position: absolute !important;
    }
}

.card-header {
    cursor: pointer !important;
}

.card-header > h5 > button.btn {
    color: #000 !important;
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif !important;
}

.custom-accordion-header {
    margin-bottom: 10px;
}

input[type="checkbox"] {
    transform: scale(1.5);
}

.form-check, .form-check > input, .form-check > label {
    cursor: pointer !important;
}

.text-red {
    color: #dc3545;
}