
@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;

	--purple-heart-50: #fbf6fe;
	--purple-heart-100: #f5e9fe;
	--purple-heart-200: #edd7fd;
	--purple-heart-300: #dfb8fa;
	--purple-heart-400: #cb8af6;
	--purple-heart-500: #b75def;
	--purple-heart-600: #a33ce1;
	--purple-heart-700: #8428b9;
	--purple-heart-800: #7628a1;
	--purple-heart-900: #612182;
	--purple-heart-950: #420c5f;

	--blue-charcoal-50: #e5f3ff;
	--blue-charcoal-100: #d1ebff;
	--blue-charcoal-200: #abd6ff;
	--blue-charcoal-300: #79baff;
	--blue-charcoal-400: #4689ff;
	--blue-charcoal-500: #1c5bff;
	--blue-charcoal-600: #0038ff;
	--blue-charcoal-700: #003bff;
	--blue-charcoal-800: #0032dc;
	--blue-charcoal-900: #0528aa;
	--blue-charcoal-950: #010721;
}
body {
	display: flex;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
	background-attachment: fixed;
	background-image: url('../../assets/images/fondos/fondoLogin.jpg');
	background-position: top center;
	background-size: cover;
}
h2{	
	font-family: 'Roboto', sans-serif;
	font-weight: bolder;
	color: var(--blue-charcoal-100);
}
.form-signin {
	max-width: 400px;
	padding: 10px;
}
#sessionOK{	
	background-color: var(--blue-charcoal-950);
	border-color: var(--blue-charcoal-600) !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(--blue-charcoal-700);
	color: #c4c8cf;
	border: 1px solid #858e9d;
	transition: all .3s;
}
.btn-mined:hover{
	background-color: var(--blue-charcoal-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/load-8510_256.gif') 50% 50% no-repeat rgba(52,61,77,0.7);
    background-size: 10%;
}

@media only screen and (max-width: 600px) and (min-width: 400px){	

	.loader {
	    background-size: 30%;
	}
}