
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html,
body {
 	height: 100%;
}

:root{
	--lochmara-50: #f0f9ff;
	--lochmara-100: #e0f1fe;
	--lochmara-200: #b9e4fe;
	--lochmara-300: #7cd0fd;
	--lochmara-400: #36b9fa;
	--lochmara-500: #0ca0eb;
	--lochmara-600: #0086d3;
	--lochmara-700: #0165a3;
	--lochmara-800: #065686;
	--lochmara-900: #0b486f;
	--lochmara-950: #072d4a;

	--torch-red-50: #fff0f2;
	--torch-red-100: #ffdde1;
	--torch-red-200: #ffc0c7;
	--torch-red-300: #ff95a1;
	--torch-red-400: #ff586a;
	--torch-red-500: #ff243c;
	--torch-red-600: #fe1a33;
	--torch-red-700: #d60017;
	--torch-red-800: #b00417;
	--torch-red-900: #910b1a;
	--torch-red-950: #500009;
}
body {
	display: flex;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: var(--lochmara-600);
}
h2{	
	font-family: 'Roboto', sans-serif;
	font-weight: bolder;
	color: var(--lochmara-950);
}
.form-signin {
	max-width: 400px;
	padding: 15px;
}
#sessionOK{	
	background-color: var(--lochmara-300);
	border-color: var(--lochmara-950) !important;
	box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.75);
}
.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	font-family: 'Roboto', sans-serif;
	margin-bottom: -1px;
}

.form-signin input[type="password"] {
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
}

.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

.b-example-divider {
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
	height: 100vh;
}

.bi {
	vertical-align: -.125em;
	fill: currentColor;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

/*MODAL*/
.modal .modal-content{
	background: transparent !important;
	box-shadow: 0px 0px 7px 0px rgba(255,255,255,1);
	backdrop-filter: blur(10px);
}
.modal .modal-content .modal-header{
	background-color: rgba(39,48,60,.5);
}
.modal .modal-content .modal-header .modal-title{
	color: #fff;
}
.modal .modal-content .modal-header button{
	color: #fff !important;
}
.modal .modal-content .modal-body{
	background-color: rgba(255, 255, 255, .5);
	color: #000;
}
.modal .modal-content .modal-footer{
	background-color: rgba(39,48,60,.5);
}

.btn-mined{
	background-color: var(--lochmara-950);
	color: #c4c8cf;
	border: 1px solid #858e9d;
	transition: all .3s;
}
.btn-mined:hover{
	background-color: var(--lochmara-800);
	border: 1px solid #858e9d;
	box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.75);
	color: #fff;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../assets/images/gif/Juggler.gif') 50% 50% no-repeat rgba(52,61,77,0.7);
    background-size: 10%;
}