/* Error de minimización. Devolviendo el contenido no minimizado.
(14,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(29,14): run-time error CSS1039: Token not allowed after unary operator: '-color-secondary'
(34,14): run-time error CSS1047: Expected number or percentage value in rgb function, found 'from'
(34,19): run-time error CSS1046: Expect comma, found 'var('
(34,24): run-time error CSS1047: Expected number or percentage value in rgb function, found '-color-secondary'
(34,40): run-time error CSS1046: Expect comma, found ')'
(34,53): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(39,14): run-time error CSS1047: Expected number or percentage value in rgb function, found 'from'
(39,19): run-time error CSS1046: Expect comma, found 'var('
(39,24): run-time error CSS1047: Expected number or percentage value in rgb function, found '-color-secondary'
(39,40): run-time error CSS1046: Expect comma, found ')'
(39,53): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(46,20): run-time error CSS1039: Token not allowed after unary operator: '-font-default'
(61,14): run-time error CSS1039: Token not allowed after unary operator: '-font-color-primary'
 */
/**
* File Name: Site.css 
* File description: estilos para la parte publica de la aplicación.
* Author: Cordoware, Consultoría Tecnológica S.L.
* Author URL: https://cordoware.com
*/

/* Imports de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Elemento Raíz del documento */
:root {
	/* Fuentes */
	--font-default: "Nunito", sans-serif;
	--font-color-primary: #ffffff;
	
	/* Colores */
	--color-primary: #185a7d;
	--color-secondary: #3399cc;
}

/* HTML Overrride */
li {
	text-align:center;
	font-size:small;
}

a {
	color: var(--color-secondary);
	text-decoration: none;
}

	a:hover {
		color: rgb(from var(--color-secondary) r g b / 0.8);
		text-decoration: none;
	}

	a:active {
		color: rgb(from var(--color-secondary) r g b / 0.9);
		text-decoration: none;
	}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-default);
	font-optical-sizing: auto;
	font-style: normal;
	background-image: url(../Images/bg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

/* Custom CSS: layout */
.bg-dark-gradient {
	background-color: #000000d6;
}

.contents-wrapper {
	color: var(--font-color-primary);
	padding: 40px;
}
	.contents-wrapper .logo-link {
		text-align: center;
		margin: 0px auto 4em auto;
		display: block;
	}

	.contents-wrapper .logo-link img {
		max-width: 340px;
		filter: brightness(0) invert(1);
	}

	.contents-wrapper .help-text {
		color: #dddddd;
		font-size: 0.9rem;
	}

.copyright-fixed-wrapper {
	font-size: 12px;
	position: fixed;
	bottom: 0;
	right: 0;
	color: #fff;
	padding: 20px;
	text-align: right;
}

	.copyright-fixed-wrapper img {
		vertical-align: middle;
		margin-bottom: 10px;
		max-height: 36px;
	}


/* Custom CSS: login page */

.form-signin {
	width: 100%;
	max-width: 340px;
	margin: 0px auto 0px auto;
}

	/* forms */
	.form-signin .form-signin-heading, .form-signin .checkbox {
		margin-bottom: 10px;
	}

	.form-signin h5 {
		font-size: 13px;
		text-align: center;
	}

	.form-signin .validation-summary-errors > ul {
		position: center;
		list-style-type: none;
		padding: 0px;
		margin-top: 20px;
		font-size: 12px;
	}

	.form-signin .small {
		color: #888;
		font-size: 0.75rem;
	}

	.form-signin .checkbox {
		font-weight: normal;
		margin: 0em 0px 20px 0px;
	}

	.form-signin .form-control {
		position: relative;
		font-size: 14px;
		height: auto;
		padding: 8px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

		.form-signin .form-control:focus {
			z-index: 2;
		}

	.form-signin .username {
		margin-bottom: -1px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.form-signin .password {
		margin-bottom: 10px;
		margin-top: -1px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}





	.bg-image-vertical {
		position: relative;
		overflow: hidden;
		background-repeat: no-repeat;
		background-position: right center;
		background-size: auto 100%;
	}

	.img-bg {
		height: 100vh !important;
		width: 100% !important;
		opacity: 0.9;
	}

	@media (min-width: 1025px) {
		.h-custom-2 {
			height: 100%;
		}
	}

