
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

html,
body {
 	height: 100%;
}

body {
	display: flex;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
	background-size: cover;
	background-position: center;
	transition: background-image 4s ease-in-out;
}

.form-signin {
	max-width: 400px;
	padding: 15px;
}
.form-signin #sessionOK{	
	background-color:  #fff;
	border-color: #014e6b;
}
.form-signin .form-floating:focus-within {
	z-index: 2;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
}

.form-signin input[type="email"] {
	margin-bottom: -1px;
}

.form-signin input[type="password"] {
	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: #00adef;
	color: #c4c8cf;
	border: 1px solid #858e9d;
	transition: all .3s;
}
.btn-mined:hover{
	background-color: #00adef;
	border: 1px solid #fff;
	box-shadow: 0px 0px 8px 2px rgba(0,173,239,0.75);
	color: #fff;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../assets/images/gif/procesando.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%;
	}
}