html{
    background-color: #F5F5F5;

}


body{
    margin: 0;
    padding: 0;
    height: 100%; /* needed for container min-height */
    min-width:320px;

}


@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1570px;
    }
}

@media (min-width: 1700px) {
    .container {
        width: 1670px;
    }
}

@media (min-width: 1800px) {
    .container {
        width: 1770px;
    }
}



/**
Set Type-face data
 */


@font-face {
    font-family: Century Gothic;
    /*noinspection CssUnknownTarget*/
    /*src: url('/css/fonts/GOTHIC.TTF');*/
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Century Gothic;
    /*noinspection CssUnknownTarget*/
    /*src: url('/css/fonts/GOTHICB.TTF');*/
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: Century Gothic;
    /*noinspection CssUnknownTarget*/
    /*src: url('/css/fonts/GOTHICI.TTF');*/
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: Century Gothic;
    /*noinspection CssUnknownTarget*/
    /*src: url('/css/fonts/GOTHICBI.TTF');*/
    font-weight: bold;
    font-style: italic;
}




*{
    /*font-family: "Century Gothic","Arial","sans-serif";*/

    transition:500ms;
    transition-timing-function: ease-in-out;
}



.main-window > h1{
    margin-left:30px;
}

h1 {
    margin:5px 0px 5px 0px;
    padding:0px;

    font-size: 24px;
    line-height:32px;
    letter-spacing: 0;
    color: #000000;
    opacity: 1;
}


h2 {

    margin:3.5px 0px 3.5px 0px;
    padding:0px;

    font-size: 18px;
    line-height:24px;
    letter-spacing: 0;
    color: #4D4F5C;
    opacity: 1;
}

h3 {

    margin:2px 0px 2px 0px;
    padding:0px;

    font-size: 16px;
    line-height:10px;
    letter-spacing: 0;
    color: #4D4F5C;
    opacity: 1;
}

h4 {

    margin:0px 0px 0px 0px;
    padding:0px;

    font-size: 14px;
    line-height:17px;
    letter-spacing: 0.21px;
    color: #4D4F5C;
    opacity: 1;
}

h5 {

    margin:0px 0px 0px 0px;
    padding:0px;

    font-size: 13px;
    line-height:17px;
    letter-spacing: 0.21px;
    color: #4D4F5C;
    opacity: 1;
}

h6 {

    margin:0px 0px 0px 0px;
    padding:0px;

    font-size: 8px;
    line-height:10px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #4D4F5C;
    opacity: 1;
}


.highlight{
    font-weight:bold;
}

h1.highlight{
    font-size:70px;
    line-height:70px;
    color:#4D4F5C;
}



h2.highlight{
    font-size:40px;
    line-height:40px;
    color:#4D4F5C;
}

h2.highlight.smaller{
    font-size:30px;
    line-height:30px;
}
h3.highlight{
    font-size:24px;
    line-height:29px;
    color:#4D4F5C;
}
h4.highlight{
    font-size:16px;
    line-height:20px;
    color:#4D4F5C;
}

p{
    font-size:11px;
    line-height:16px;
}

sub{
    font-size:9px;
    line-height:12px;
}



/**
Nav bar
 */

/** Mobile Nav Bar - folds out */
.hidden-md .nav-bar{
    height:100vh;
    position:fixed;
    width:300px;
    max-width:90vw;
    right:99.8%;
    transition: 300ms;
    transition-timing-function: ease-in-out;
    background:#232323;

    z-index: 9999;
    border-width:0px 1px 0px 0px;
    border-color:grey;
    border-style:solid;
    box-shadow: grey 0px 0px 5px;

}

/** Desktop Nav Bar */
.nav-column{
    padding-left:0px;

}

.nav-column .nav-bar{
    position:inherit;
    width:100%;
    transition: 300ms;
    transition-timing-function: ease-in-out;
    background:#232323;

    z-index: 9999;
    border-width:0px 1px 0px 0px;
    border-color:grey;
    border-style:solid;
    box-shadow: grey 0px 0px 5px;

}

.nav-bar *{
    transition:100ms;
    color:#EBEBEB;
    text-decoration: none !important;
}

.nav-bar a.nav-toggle{
    position:fixed;
    top:5px;
    left:10px;
    #color:black;
}

.nav-bar .nav-open *{
    color:black !important;
}

.nav-column .nav-bar .nav-container{
    position:fixed;
    background-color:#232323;
    width:16%;

}

/* root nav items. This effects the full block of navigation items */
.nav-bar .nav-items {
    padding: 25px 0px 50px 10px;
    margin-top: 0px;
    min-height: 100vh;
    letter-spacing: 0.21px;
    font-size: 18px;
    font-weight: bold;

}

/* This refers to the list of items in the nav section. This nav has the .fa-ul class for icon styling with font-awesome, but that's not needed for the custom styling selectors */
.nav-bar .nav-items > ul {
    margin-left: 50px;
}

/* These are any menu items, either top-level or sub-level. */
.nav-bar .nav-items > ul li {
    margin-top: 10px;

}

/* Any top-level item */
.nav-bar .nav-items > ul > li {

}

/* Sub-nav items list, hidden by default */
.nav-bar .nav-items ul.nav-sub {
    display: none;
}

/* On activating the top-level item, it should unhide the lower list. */
.nav-bar .nav-items ul > li.active > ul {
    display: block;

}


/* This is what should happen to parent elements on hover or active */
.nav-bar .nav-items ul > li:hover,
.nav-bar .nav-items ul > li:hover > a,
.nav-bar .nav-items ul > li:hover > a *,
.nav-bar .nav-items ul > li.active,
.nav-bar .nav-items ul > li.active > a,
.nav-bar .nav-items ul > li.active > a *,
.nav-bar .nav-items ul > li:active,
.nav-bar .nav-items ul > li:active > a,
.nav-bar .nav-items ul > li:active > a *,
.nav-bar .nav-items ul > li:focus,
.nav-bar .nav-items ul > li:focus > a,
.nav-bar .nav-items ul > li:focus > a * {

    color: #048BE6;
}

/* This is what should happen to sub elements on hover */
.nav-bar .nav-items ul.nav-sub > li:hover,
.nav-bar .nav-items ul.nav-sub > li:hover > a,
.nav-bar .nav-items ul.nav-sub > li:hover > a *,
.nav-bar .nav-items ul.nav-sub > li:active,
.nav-bar .nav-items ul.nav-sub > li:active > a,
.nav-bar .nav-items ul.nav-sub > li:active > a *,
.nav-bar .nav-items ul.nav-sub > li.active,
.nav-bar .nav-items ul.nav-sub > li.active > a,
.nav-bar .nav-items ul.nav-sub > li.active > a *,
.nav-bar .nav-items ul.nav-sub > li:focus,
.nav-bar .nav-items ul.nav-sub > li:focus > a,
.nav-bar .nav-items ul.nav-sub > li:focus > a * {
    color: #048BE6;
}


.nav-bar img.device-logo {
    position: absolute;

    top: 60px;
    width: 66.6666%;
    left:17%;

}


/**
 Top-right navigation with Account shortcuts
 */

div.settings-hover{
    position:fixed;
    top:0;
    right:0;
    padding:8px 15px 8px 15px;
    min-width:10px;
    min-height:10px;
    background-color:white;
    border-radius:5px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef;
    box-shadow: 3px 6px 3px #00000026;
    z-index:20;


}

div.settings-hover div.account-link{
    display:none;
}



div.settings-hover:hover{
    bottom:unset;
    top:0px;
    width:unset;
    min-width:10px;
}

div.settings-hover:hover div.account-bar-hint{
    display:none;
}

div.settings-hover:hover div.account-link{
    display:block;
}

div.settings-hover a {
    font-weight:bold;
    color: #363636;
}

/**
Adjust Breadcrumbs
 */
ul.breadcrumb{
    margin: 5px 0px 5px 0px;
    padding: 0px;

}

ul.breadcrumb li a, ul.breadcrumb li{

    font-size: 24px;
    line-height:24px;
    letter-spacing: 0;
    color: #000000;
    opacity: 1;

    height:32px;
}

/* Breadcrumb Seperator Character, match to parent selector height above */
.breadcrumb > li + li:before{
    content: " | ";
    vertical-align: top;
    line-height: 24px;
    font-size: 24px;
    height:24px;
}

.breadcrumb > li a{
    #color: #3E3B38 ;
    color:#000000;
    text-decoration: none;
    text-align: center;
}

.breadcrumb > .active{
    color:#000000;
    font-weight:bold;
}




/**
Body
 */

.wrapper {
    background-color: #F5F5F5;
}

@media(max-width:991px) {
    .wrapper .home {

        margin-top: 20px;
    }
}

@media(min-width:992px) {
    .wrapper .home {

        margin-top: 20px;
    }
}



@media(max-width:1400px) {
    .hidden-md-lg{
        display:none;
    }
}


body > div.header-wrapper.bg-cover > div.container > div > div {
    padding-top: 0px;
}




form.compact > div.form-group {
    margin-bottom: 0px;

}

.content.container{
    min-height:5vw;
}

/**
Custom shadowed UI block
**/

.ui-block{
    background-color:white;
    padding:15px 20px 15px 20px;

    border-radius:0px;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef;
    box-shadow: 3px 6px 3px #00000026;
    margin:10px;
    margin-bottom:30px;
}

.ui-block .grid-view{
    margin-top:20px;
}

.ui-block, .ui-block * {
    transition: none;
}
.disable-transitions, .disable-transitions *{
    transition: none;
}

/**
Footer
 */

footer#footer{
    margin-top:10px;
    padding-top:10px;
    background-color: #F5F5F5;
}


footer#footer div.container{
    min-height:auto;
    text-align:center;
    margin:0 auto;
}





/**
    Rescale big texts based on screen size
 */

@media (max-width: 767px) {
    h1 {
        font-size: 30px;
    }

}

@media (max-width: 355px) {
    h1 {
        font-size: 20px;
    }
    *{
        font-size:1.5rem;
    }
}

@media (max-width: 300px) {
    h1 {
        font-size: 6.5vw;
        line-height: 6.5vw;
    }

    a h5 {
        font-size:6vw;
        line-height:6vw;


    }
}



/** Fix glitchy modal padding */
body.modal-open{
    padding-right:0 !important;
}

body.modal-open div.modal{
    padding-right:0 !important;
}

body.modal-open div.modal-body{
    padding-bottom:19px;
}

.modal-dialog {
    margin-top: 95px;
}

/** Adjust Highcharts Tooltip */
.dashboard-highcharts-tooltip {
    min-width: fit-content;
    font-family: Helvetica, sans-serif;
}

[style="color:silver;font-family:'Unica One', sans-serif;font-size:12px;fill:silver;"] {
    font-family: Helvetica, sans-serif !important;
}

.highcharts-range-input > text > tspan {
    font-family: Helvetica, sans-serif;
}

.highcharts-range-label > text {
    font-family: Helvetica, sans-serif !important;
}

.highcharts-range-selector-group {
    transform: translate(-20px, 5px) !important;
}

/** Adjust Table Styling **/

.truncate {
    max-width: 50% !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.truncate:hover{
    overflow: visible;
    white-space: normal;
    word-break:break-all;
    width: auto;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border:none;

}
.table > thead > tr.filters > th, .table > thead > tr.filters > td {
    padding:5px 5px 5px 0px;

}

table.table-gridview {
    border:none;
}

table.table-gridview *{

    transition: 150ms linear;
}

table.table-gridview thead tr{
    border:none;
}

table.table-gridview > tbody > td{
    border:none;
}

table.table-gridview > tbody > tr td{
    border-bottom:1px solid #dfdfdf;
}

table.table-gridview > tbody > tr:hover{

    #border-left: 6px solid #048BE6;
}


table.table-gridview > tbody > tr:hover td{
    border-bottom:1px solid #048BE6;
    background-color: rgba(4, 164, 255, 0.02);

}

table.table-gridview.simple-pair tbody tr td:last-of-type{
    font-weight: bold;
}

table .clickable-hint{
    cursor:pointer;
}

table.table .thin-column{
    width: 1px;
}

table.table .thin-column, table.table .thin-column * {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
}

table.table-detailview {
    border:none;
}

table.table-detailview *{

    transition: 150ms linear;
}

table.table-detailview thead tr{
    border:none;
}

table.table-detailview > tbody > td{
    border:none;
}

table.table-detailview > tbody > tr{
    border-bottom:1px solid #dfdfdf !important;
}

table.table-detailview > tbody > tr > th{
    font-weight: normal;
}
table.table-detailview > tbody > tr > td{
    font-weight: bold;
}

.bold{
    font-weight: bold;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: "\e113";
}

a.desc:after {
    content: "\e114";
}

.sort-numerical a.asc:after {
    content: "\e113";
}

.sort-numerical a.desc:after {
    content: "\e114";
}

.sort-ordinal a.asc:after {
    content: "\e113";
}

.sort-ordinal a.desc:after {
    content: "\e114";
}


.clear {
    clear: both
}

.nobreak {
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

table.table + ul.pagination {
    margin-top: -5px;
    margin-bottom: 10px;
}

.inline-button {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.ajaxDropDownMenu.dropdown-menu {
    left: -300px;
}