﻿/* Content sizing / containers */
body {
	height: calc(100vh);
	overflow: hidden;
	font-size: 1rem;
}

.body-content {
	overflow-y: auto;
	overflow-x: hidden;
}

.fill-viewport-height {
	min-height: 100vh;
}

.fill-viewport-width {
	min-width: 100vw;
}

footer {
	padding-top: 10px;
}

.footer { 
	bottom: 0; 
	z-index: 10;
}

/**** OVERRIDES *******/
/* Kendo overrides */
.k-grid td {
	line-height: 1em;
}

.k-grid .k-filter-row th, .k-grid-header th.k-header {
	padding: .75em .6em 1em .6em;
}

.k-header.k-grid-toolbar, .k-toolbar.k-grid-toolbar {
	text-align: right;
}

.k-grid-header th.k-header>.k-link {
	font-size: 1rem;
}

div.k-filter-menu-container > label > input[type=radio] {
	margin: 0 4px 0 4px;
}

/*.k-grid a.btn-primary {
    color: #fff;
}

.k-grid a.btn-danger {
    color: #fff;
}*/

/* Bootstrap overrides */
.navbar-dark .navbar-nav .nav-link {
	color: rgba(255,255,255,0.85);
}

.custom-control-label::before, .custom-control-label::after {
	left:-2rem;
	margin-top:2px;
}

.toast {
	min-width: 300px;
}

.toast-body {
	color: black;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-toggle.no-icon::after, .dropdown-toggle.no-icon::before {
	content: unset !important;
}

.navbar.navbar-dark .navbar-nav .nav-link:hover, .navbar.navbar-dark .navbar-nav .nav-link:focus, .navbar.navbar-light .navbar-nav .nav-link:hover, .navbar.navbar-light .navbar-nav .nav-link:focus, .btn:hover, .btn:focus {
	text-decoration: none !important;
}

.navbar-light .navbar-nav .nav-link {
	color: black;
}

.form-control {
	padding: 1rem 0;
	font-size: .95rem;
	width: calc(100% - 1rem);
	margin-left: 1rem;
	height: 1rem;
}

	.form-control.form-select {
		height: auto;
	}

textarea.form-control {
	height: auto;
	min-height: 300px;
}

.card-deck.cards-fluid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: .5rem;
}

.card-text {
	color: black;
}

.btn-link {
	text-decoration: auto;
}

/**** CUSTOM STYLES *******/
/* Progess bars / indicators */
.postback-progress-background {
	position:fixed;
	background-color: #000;
	z-index: 1100 !important;
	opacity: .65;
	overflow: hidden;
	text-align: center;
	padding-top: 20%
}

.postback-progress-content {
	z-index: 1200;
	padding-top: 20%
}

/* Backgrounds */
.bg-blue {
	background-color: #00467f !important;
	color: white;
}

.bg-blue-light {
	background-color: #2980b9 !important;
	color: white;
}

.bg-blue-dark {
	background: #2C3B48 !important;
	color: white;
}

.bg-black {
	background-color: #222 !important;
	color: white;
}

	.bg-black hr {
		border-top-color: #484848 !important;
	}

.bg-tech-abstract {
	position: relative;
	background-image: url('/images/background_tech_abstract.jpg');
	background-repeat: no-repeat;
	background-position: 50% 0;
	-ms-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}

.bg-tech-abstract::before {
	background: rgba(0, 0, 0, .5);	
}

.bg-tech-abstract::after {
	background: rgba(132, 155, 193, .56);
	background: -webkit-linear-gradient(60deg, rgba(132, 155, 193, .56), rgba(0, 70, 127, .95));
	background: -o-linear-gradient(60deg, rgba(132, 155, 193, .56), rgba(0, 70, 127, .95));
	background: -moz-linear-gradient(60deg, rgba(132, 155, 193, .56), rgba(0, 70, 127, .95));
	background: linear-gradient(60deg, rgba(132, 155, 193, .56), rgba(0, 70, 127, .95));

}

.bg-tech-abstract::before, .bg-tech-abstract::after {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Images and Icons */
i.icon-size-xxl {
	font-size: 7rem !important;
}

.btn-panel-minimize i:first-of-type {
	margin-right:-10px;
}

h1 > i.material-icons {
	font-size: 2rem;
	margin-top: -5px;
}

/* Grids and lists */
.table-lg tbody tr {
	height: 4rem;
}

/* Typography */
.text-size-09 {
	font-size: .9rem !important;
	font-weight: 400;
}

.text-size-1 {
	font-size: 1rem !important;
	font-weight: 400;
}

.text-size-1-2 {
	font-size: 1.2rem !important;
	font-weight: 400;
}

.text-size-2 {
	font-size: 2rem !important;
	font-weight: 400;
}

a.no-underline:hover {
	text-decoration: unset !important;
}

.text-navbar-white {
	color:#d5dae6;
}

/* Transforms and animations */
.rotate-180 {
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Navigation */
nav .dropdown-menu-end { right: 0; left: auto; }
nav .dropdown-menu:not(.dropdown-menu-end) {
	min-width:12rem !important;
}