/* PAGE */

body {
	background-position: center top;
	background-repeat: repeat-y;
    background-color: rgb(242, 98, 36);
    
	color: rgb(85, 85, 85);
	
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.page {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.view {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.container {
	min-width: 320px;
	
	box-shadow: 0px 0px 40px rgb(60, 60, 60);
}

/* DEFAULT */

h2 {
	margin-top: 20px;
    margin-bottom: 20px;
	
	font-size: 30px;
}
h3 {
    margin-top: 0px;
    margin-bottom: 20px;
    
    font-size: 24px;
}
h4 {
    margin-top: 0px;
    margin-bottom: 10px;
    
    font-size: 18px;
}

.form-control {
    border-radius: 0px;
}

.text-primary {
    color: rgb(242, 98, 36);
}
.text-normal {
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

.bg-transparent {
	background-color: rgba(255, 255, 255, 0);
}

.btn.btn-square {
    /*border-radius: 0px;*/
}
.btn.btn-primary {
    color: white;
    background-color: rgb(242, 98, 36);
    border-color: #ccc;
}
.btn:hover.btn-primary {
    background-color: rgb(230, 38, 5);
}
.btn.btn-default {
    color: black;
    background-color: white;
    border: 2px solid rgb(242, 98, 36);
}
.btn:hover.btn-default {
	color: white;
    background-color: rgb(242, 98, 36);
}

.radio input[type=radio]{
	position: absolute;
	visibility: hidden;
}
.radio input[type=radio]:checked ~ .check::before{
	background: rgb(0, 174, 240);
}
.radio input[type=radio]:checked ~ span{
	font-weight: bold;
}
.radio label {
	padding-left: 50px;
	
	margin-top: 5px;
	margin-bottom: 5px;
	
	font-size: 18px;
}
.radio .check{
	display: block;
	position: absolute;
	
	top: 8px;
	left: 20px;
	
	height: 20px;
	width: 20px;
	
	border: 2px solid rgb(0, 174, 240);
	border-radius: 50%;
}
.radio .check::before {
	display: block;
	position: absolute;
	
	content: '';
	
	top: 3px;
	left: 3px;
	
	height: 10px;
	width: 10px;
	
	margin: auto;
	
	border-radius: 50%;
}

.errors {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

/* LOGO */

div.logo {
    width: 100%;
    
    text-align: center;
}
div.logo img {
    width: 100%;
}
div.logo-box {
    display: inline-block;
    vertical-align: top;

    padding: 5px;
    
    width: 80%;
    
    margin-top: -30px;
    margin-bottom: 15px;
    
    background-color: white;
    border: 1px solid rgb(217, 217, 217);
}
div.logo-wrapper {
    width: 100%;

    padding-top: 15px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 15px;
    
    border: 1px solid rgb(234, 234, 234);
}

/* CLOCK */

div.clock {
	width: 100%;
    
    text-align: center;
}
div.clock-box {
	display: inline-block;
    vertical-align: top;
	
	width: 130px;
	height: 140px;
	
	margin-top: 15px;
    margin-bottom: 15px;
	
	padding-top: 90px;
	
	background: url('../img/clock_background.png') no-repeat;
	
	font-weight: bold;
}
div.clock-item {
	display: inline-block;
    vertical-align: top;
	
	width: 80px;
	height: 50px;
	
	background-color: rgba(255, 255, 255, 0.7);
	
	border: 2px solid rgb(24, 24, 24);
}
div.clock-item h6 {
	margin-top: 0px;
    margin-bottom: 2px;
    
    padding-bottom: 5px;
    padding-top: 5px;
	
	background-color: rgb(24, 24, 24);
	
	color: white;
	font-size: 10px;
	font-weight: bold;
	
	text-transform: uppercase;
}

/* BUTTON BOX */

div.button-box {
	margin-top: 15px;
    margin-bottom: 15px;
	
	text-align: center;
}

/* NUMBER */

div.number {
	text-align: center;
}
div.number-box {
	display: inline-block;
	vertical-align: top;
	
	margin-bottom: 15px;
	
	padding-left: 7px;
	
	text-align: left;
}
div.number-item {
	display: inline-block;
	vertical-align: middle;
	
	width: 40px;
	height: 40px;
	
	padding-top: 9px;
	
	margin-top: 4px;
	margin-bottom: 4px;
	margin-right: 7px;
	
	border-radius: 50%;
	
	text-align: center;
	
	font-size: 18px;
	
	line-height: 1.1;
}
div.number-item.main {
	margin-top: -15px;
	margin-bottom: -10px;
}
div.number-item.success:hover,
div.number-item.info:hover,
div.number-item.danger:hover {
	text-decoration: none;
	cursor: pointer;
}
div.number-item.success {
	color: rgb(89,133,39);
	background-color: rgb(226,251,190);
	border: 2px solid rgb(141,198,63);
	text-decoration: underline;
}
div.number-item.info {
	color: rgb(0, 91, 126);
	background-color: white;
	border: 2px solid rgb(48, 187, 240);
	text-decoration: underline;
}
div.number-item.primary {
	color: rgb(0, 91, 126);
	background-color: rgb(208, 248, 255);
	border: 2px solid rgb(48, 187, 240);
}
div.number-item.danger {
	color: rgb(169,69,27);
	background-color: rgb(255, 211, 192);
	border: 2px solid rgb(242, 98, 36);
	text-decoration: underline;
}

/* WATERMARK */

div.watermark-box {
	display: inline-block;
	position: absolute;
	top: 20px;
	
	left: 50%;
	
	z-index: 1;
}
div.watermark-box.shifted {
	top: 290px;
}
div.watermark-item {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	
	left: -50%;
	
	width: 250px;
	height: 250px;
	
	padding-top: 64px;
	
	border-radius: 50%;
	
	text-align: center;
	
	font-size: 94px;
	line-height: 1.1;
	
	opacity: 0.15;
}
div.watermark-item.primary {
	color: rgb(0, 91, 126);
	background-color: rgb(208, 248, 255);
	border: 2px solid rgb(48, 187, 240);
}

/* LEGEND */

div.number-legend-box {
	display: inline-block;
	vertical-align: top;
}
div.number-legend-item {
	display: inline-block;
	vertical-align: middle;
	
	width: 16px;
	height: 16px;
	
	margin: 5px;
	
	border-radius: 50%;
}
div.number-legend-item.success {
	background-color: rgb(141,198,63);
}
div.number-legend-item.info {
	background-color: rgb(48, 187, 240)
}
div.number-legend-item.danger {
	background-color: rgb(242, 98, 36);
}

/* IMAGE */

div.image-box {
	width: 100%;
	height: 250px;
	
	margin-top: 20px;
	
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	
	background-image: url('../img/image_background.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	
	border: 1px solid rgb(217, 217, 217);
	
	text-align: center;
}
div.image-box img {
	display: inline-block;
	vertical-align: middle;
	
	height: 100%;
	max-width: 800px;
	
	/*border: 1px solid rgb(217, 217, 217);*/
}

/* NAVIGATION */

nav.navbar {
    margin-bottom: 0px;
    
    background-color: white;
    border-radius: 0px;
    border-bottom: 1px solid rgb(217, 217, 217);
}
nav.navbar a {
	cursor: pointer;
}

/* WRAPPER */

div.wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
	
	min-height: min-content;
	min-height: -moz-min-content;
	min-height: -webkit-min-content;
	min-height: -o-min-content;
	
    padding-left: 15px;
    padding-right: 15px;
    
    background-color: white;
}
div.wrapper .row{
    display: flex;
    flex-wrap: wrap;
	flex: 1;
}

/* SIDEBAR */

aside.sidebar {
	padding-bottom: 15px;
	
    background-color: rgb(241, 241, 241);
    border-right: 1px solid rgb(217, 217, 217);
	
	z-index: 20;
}
aside.sidebar h4 {
	margin-left: -15px;
	margin-right: -15px;
	
	margin-top: 15px;
	margin-bottom: 15px;
	
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	padding-right: 30px;
	
	background-color: white;
	border-top: 1px solid rgb(217, 217, 217);
	border-bottom: 1px solid rgb(217, 217, 217);
	
	font-weight: bold;
	font-size: 16px;
}
aside.sidebar p {
	padding-left: 15px;
	padding-right: 15px;
}

/* CONTENT */

section.content {
	padding-bottom: 15px;
	
    background-color: white;
	
	overflow: hidden;
	
	z-index: 20;
}
section.content div.overlay {
	position: relative;
	z-index: 10;
}
section.content h4 {
    margin-top: 30px;
	margin-bottom: 10px;

	font-weight: bold;
	font-size: 16px;	
}
section.content table tr th,
section.content table tr td {
    vertical-align: middle;
	text-align: center;
}
section.content hr {
    margin-top: 30px;
	margin-bottom: 30px;
	
	border-top: 1px solid rgb(217, 217, 217);
}
section.content .panel {
	margin-top: 10px;
	margin-bottom: 0px;
}
section.content .panel .panel-heading {
	padding: 5px 15px;
}

/* SIGN IN FORM */

div.sign-in-form { }
div.sign-in-form h2 {
    text-align: center;
}

/* FOOTER */

footer {	
    padding-top: 15px;
    padding-bottom: 20px;
    
    background-color: white;
    border-top: 1px solid rgb(217, 217, 217);
    
    text-align: center;
	
	z-index: 10;
}

/* XXL */
@media screen and (min-width: 1760px) {
    /* PAGE */
	body {
		background-image: url('../img/partners_background_xxl.png');
	}
}
/* XL */
@media screen and (min-width: 1600px) and (max-width: 1759px) {
	/* PAGE */
	body {
		background-image: url('../img/partners_background_xl.png');
	}
}
/* LG */
@media screen and (min-width: 1200px) {
    
}
/* MD */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* LOGO */
    div.logo-box {
        width: 90%;
    }
}
/* SM */
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* LOGO */
    div.logo-box {
        width: 100%;
    }
    div.logo-wrapper {
        padding-top: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 5px;
    }
}
/* XS */
@media screen and (max-width: 767px) {
	/* PAGE */
	.page {
		display: block;
	}
	.view {
		display: block;
	}
	.container {
		box-shadow: 0px 20px 40px -20px rgb(60, 60, 60);
	}
	/* NAVIGATION */
	nav.navbar {
		padding-bottom: 30px;
	}
     /* LOGO */
    div.logo-box {
        width: 210px;
    }
    /* WRAPPER */
	div.wrapper{
        display: block;
    }
    div.wrapper .row{
        display: block;
    }
    /* SIDEBAR */
    aside.sidebar {
        border-right: none;   
    }
	aside.sidebar h4 {
		padding-left: 15px;
		padding-right: 15px;
	}
	aside.sidebar p {
		padding-left: 0px;
		padding-right: 0px;
	}
    /* CONTENT */
    section.content {
        border-top: 1px solid rgb(217, 217, 217);
    }
}