@font-face {
	font-family: 'roboto_medium_regular';
	src: url('../webfonts/roboto-medium-webfont.woff2') format('woff2'),
		url('../webfonts/roboto-medium-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'roboto_condensed_light';
	src: url('../webfonts/robotocondensed-light-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-light-webfont.woff') format('woff'),
		url('../webfonts/robotocondensed-light-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condensed_regular';
	src: url('../webfonts/robotocondensed-regular-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

:root {
	--color-one:
		#010080;
	--color-two: #91BD3C;
	--color-three:
		#010080;
	/*--color-three: #0366D6;*/

	--form-color: #14111A;

	--accent-color: #fff;
	/*--accent-color: #455A64;*/
	--border-color:
		#010080;
}

body,
html {
	font-family: 'roboto_condensed_light';
	width: 100vw;
	height: 100vh;
	background-color: var(--accent-color);
	color: #000;
	font-size: 15px;
}

scroll-container {

	overflow-y: scroll;
	scroll-behavior: smooth;
}

.full-box {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
}

.form-neon {
	border: 1px solid #91BD3C;
	background-color: #FFF;
	padding: 15px;
	border-radius: 20px;
	box-shadow: 0 0 20px 5px #686868;
}

/*----------  Page headers styles  ----------*/
.page-header {
	padding: 30px 20px 10px 20px;
}

.page-header> :nth-child(1) {
	padding-bottom: 7px;
}

.page-header> :nth-child(2) {
	font-size: 18px;
}

/*----------  Page nav tabs  ----------*/
.page-nav-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.page-nav-tabs li,
.page-nav-tabs li a {
	height: 40px;
	line-height: 40px;
}

.page-nav-tabs li {
	margin: 5px 20px;
}

.page-nav-tabs li a {
	color: darkblue;
	font-size: 17px;
	min-width: 200px;
	width: auto;
	display: block;
	text-align: center;
	user-select: none;
	transition: all .2s ease-in-out;
	border-bottom: 2px solid transparent;
}

.page-nav-tabs li a.active {
	color: var(--color-three);
	cursor: none;
	pointer-events: none;
}

.page-nav-tabs li a:hover {
	text-decoration: none;
	color: #333;
	border-bottom: 2px solid #333;
}

/*----------  Edit bootstrap styles  ----------*/
.form-control[readonly] {
	background-color: transparent;
}

.form-control:focus,
.form-control:active {
	outline: none;
	box-shadow: none;
	border: none;
}

.form-control-file:active,
.form-control-file:focus {
	outline: none;
}

.table .btn {
	margin-bottom: 0;
}

.table thead th {
	color: var(--color-three);
}

.table tbody tr {
	color: #333;
	transition: all .2s ease-in-out;
}

.table-dark,
.table {
	background-color: #fff;
}

.table-dark {
	border: 1px solid var(--accent-color);
}

.table-dark thead tr {
	background-color: var(--accent-color);
}

.table-dark td,
.table-dark thead th,
.table-dark th {
	border-bottom: solid 1px darkblue;
}

.table-dark tr:hover {
	color: var(--color-three);
	background-image: linear-gradient(to right, transparent, rgba(24, 100, 112, .25) 100%, transparent);
}

.page-link {
	transition: all .2s ease-in-out;
}

.page-link:hover,
.page-link.active {
	background-color: var(--color-three);
	color: #FFF;
}

table form {
	margin-bottom: 0;
}

/*----------  Text Styles  ----------*/
.roboto-medium {
	font-family: 'roboto_medium_regular';
}

.roboto-condensed-light {
	font-family: 'roboto_condensed_light';
}

.roboto-condensed-regular {
	font-family: 'roboto_condensed_regular';
}

/*----------  Page 404 styles  ----------*/
.container-404 {
	background: #000428;
	background: linear-gradient(to right, #91BD3C,
			#010080);
	color: #fff;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*----------  login Styles  ----------*/
.login-container {
	width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: relative;
background-image: -webkit-linear-gradient(150deg, #010080, #2f5fa7);
background-image: -moz-linear-gradient(150deg, #010080, #2f5fa7);
background-image: -o-linear-gradient(150deg, #010080, #2f5fa7);
background-image: linear-gradient(150deg, #010080, #2f5fa7);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.login-content {
	width: 95%;
	max-width: 320px;
	height: auto;
	border: 1px solid blue;
	background: #f2f6fa;
	opacity: .95;
	border-radius: 25px;
	padding: 15px;
	color: var(--accent-color);
	box-shadow: 10px 10px 25px 0 darkblue;
	position: relative;
}

.btn-login {
	width: 90%;
	padding: 10px 0;
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	margin-top: 30px;
	background-color: blue;
	color: var(--accent-color);
	border: 1px solid blue;
	transition: all .2s ease-out;
}

.btn-login:hover {
	background-color: darkblue;
	border: 1px solid darkblue;
	text-decoration: none;
	color: #fff;
}

.btn-login:active,
.btn-login:focus {
	outline: none;
}

.reg-login {
	display: block;
	text-align: center;
}

/*----------  Register Styles  ----------*/
header {
	width: 100vw;
	height: auto;
	position: fixed;
	overflow: hidden;
}

video {
	width: 100%;
	height: 100%;
	position: relative;
}

.register-container {
	width: 100vw;
	height: 190vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('../assets/img/wall.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* background: #0575E6;
	background: -webkit-linear-gradient(to right, #021B79, #0575E6);
	background: linear-gradient(to right, #021B79, #0575E6); */
	position: relative;
}

.register-content {
	width: 95%;
	max-width: 80vh;
	height: auto;
	border: 1px solid #91BD3C;
	background-color: #f2f6fa;
	opacity: .95;
	border-radius: 25px;
	padding: 15px;
	color: var(--accent-color);
	box-shadow: 10px 10px 25px 0 #010080;
	position: relative;
}

.reg-login {
	display: block;
	text-align: center;
}

/*----------  Page layout Styles  ----------*/
.main-container {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.page-content,
.nav-lateral {
	height: 100%;
	overflow: hidden;
}

.page-content {
	position: relative;
	padding-left: 260px;
	transition: all .25s ease-in-out;
	padding-bottom: 2px;
}

/*  Nav Lateral */
.nav-lateral {
	width: 260px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all .2s ease-in-out;
	background-image: url('../assets/img/fondo_nav.jpg');
	background-position: center center;
	background-size: cover;
}

.nav-lateral-bg {
	display: none;
}

.nav-lateral-content {
	max-width: 300px;
	height: 100%;
	background-color: rgba(36, 41, 46, .7);
}

.nav-lateral-bar {
	height: 3px;
	background-color: var(--color-three);
}

.nav-lateral-avatar {
	padding: 40px 0;
}

.nav-lateral-avatar i {
	display: none;
}

.nav-lateral-avatar img {
	width: 50%;
	margin: 0 auto;
	display: block;
	border: 4px solid #FFF;
	border-radius: 100%;
}

.nav-lateral-avatar figcaption {
	margin-top: 20px;
	color: #FFF;
}

.nav-lateral-menu {
	height: auto;
}

.nav-lateral-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-lateral-menu ul li {
	width: 100%;
	height: auto;
}

.nav-lateral-menu ul li a {
	display: block;
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-decoration: none;
	color: #FFF;
	font-size: .95em;
	box-sizing: border-box;
	padding-left: 20px;
	transition: all .2s ease-in-out;
}

.nav-lateral-menu ul li a.active {
	color: #FFF;
	background-color: var(--color-three);
}

.nav-lateral-menu ul li a:hover {
	color: #fff;
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .1) 50%, transparent);
}

.nav-lateral-menu ul li ul {
	display: none;
	border: 1px solid var(--color-three);
	background: rgba(20, 30, 48, .5);
}

.nav-lateral-menu ul li ul a {
	padding-left: 45px;
}

.show-nav-lateral-submenu {
	display: block !important;
}

.nav-lateral-menu .fa-chevron-down,
.nav-lateral-menu .fa-chevron-up {
	float: right;
	height: 45px;
	line-height: 45px;
	margin-right: 7px;
	transition: all .2s ease-in-out;
}

/*  Page content */
.navbar-info {
	height: 50px;
	border-bottom: 1px solid #010080;
	text-align: right;
	padding-right: 10px;
	background-color:
		#010080;
}

.navbar-info a {
	color: var(--accent-color);
	height: 50px;
	min-width: 40px;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	transition: all .2s ease-out;
	user-select: none;
}

.navbar-info a:hover {
	color: darkblue;
	background-image: radial-gradient(circle, rgba(250, 30, 78, .1), transparent 80%);
}

.navbar-info a:active,
.navbar-info a:focus {
	outline: none;
}

/*----------  Home Styles  ----------*/
.tile-container {
	text-align: center;
	padding: 1px 1px;
}

.tile {
	height: 150px;
	width: 300px;
	margin: 10px;
	display: inline-block;
	text-decoration: none;
	color: var(--accent-color);
	border: 1px solid #010080;
	border-radius: 3px;
	user-select: none;
	transition: all .2s ease-in-out;
	background-color: #FFF;
	box-shadow: 5px 5px 10px 0 #010080;
}

.tile:hover {
	height: 167px;
	width: 297px;
	text-decoration: none;
	border-radius: 20px;
	border-color: darkblue;
}

.tile:focus,
.tile:active {
	outline: none;
	height: 137px;
	width: 290px;
}

.tile-tittle {
	font-size: .8em;
	margin: 0;
	width: 100%;
	padding: 0;
	height: 40px;
	line-height: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #010080;
	transition: all .2s ease-in-out;
	font-family: 'roboto_medium_regular';
	color:
		#010080;
}

.tile:hover .tile-tittle {
	color: #FFF;
	border-color: var(--color-three);
	border-radius: 10px 10px 0 0;
	background-color: darkblue;
}

.tile-icon {
	width: 100%;
	height: 160px;
	box-sizing: border-box;
	padding-top: 22px;
}

.tile-icon>i {
	font-size: 40px;
	color:
		#010080;
}

.tile-icon>p {
	font-family: 'roboto_medium_regular';
	height: 35px;
	line-height: 35px;
	color:
		#010080;
}

.tile:hover .tile-icon>i,
.tile:hover .tile-icon>p {
	color: darkblue;
}

/**----- Iconos live search dropdown-----*/
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
	color: #333333;
	text-align: center;
}

.bootstrap-select.form-control {
	z-index: 999;
}

.bootstrap-select .dropdown-menu .dropdown-item {
	max-width: 100%;
}

.bootstrap-select .dropdown-menu .inner {
	overflow-x: hidden;
}

/**---------- Iconos de Descarga---------*/
.download {
	width: 30px;
	padding-top: 10px;
	transition: all .2s ease-in-out;
}

.download:hover {
	width: 35px;
	transition: all .2s ease-in-out;
}

.download:active {
	width: 30px;
	transition: all .2s ease-in-out;
}

/*----------  Breakpoints  ----------*/
@media (max-width: 767px) {
	.nav-lateral {
		width: 100%;
		overflow: hidden;
		display: none;
		background-image: none;
	}

	.nav-lateral.active {
		display: block;
		z-index: 9999;
	}

	.nav-lateral-bg {
		width: 100%;
		height: 100%;
		background-color: rgba(3, 3, 3, .4);
		position: relative;
		display: block;
		z-index: 2;
	}

	.nav-lateral-content {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
		transform: translateX(-400px);
		transition: all .3s ease-in-out;
		background-color: darkblue;
	}

	.nav-lateral.active .nav-lateral-content {
		transform: translateX(0);
	}

	.nav-lateral-avatar i {
		height: 50px;
		width: 50px;
		line-height: 50px;
		color: #FFF;
		cursor: pointer;
		font-size: 25px;
		position: absolute;
		top: 5px;
		right: 0;
		text-align: center;
		display: block;
		transition: all .2s ease-out;
	}

	.nav-lateral-avatar i:hover {
		color: var(--color-three);
	}

	.page-content {
		padding-left: 0;
	}
}


/*  Bootstrap breakpoints */
@media (min-width: 576px) {}

@media (min-width: 768px) {
	.nav-lateral.active {
		width: 70px;
	}

	.page-content.active {
		padding-left: 70px;
	}

	.nav-lateral.active .nav-lateral-avatar figcaption {
		display: none;
	}

	.nav-lateral.active .nav-lateral-avatar img {
		width: 50px;
		height: 50px;
	}

	.nav-lateral.active .nav-lateral-menu span {
		display: none;
	}

	.nav-lateral.active .nav-lateral-menu .show-nav-lateral-submenu a {
		padding-left: 18px;
	}
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

/*----------  Keyframes  ----------*/

.content-normas-select {
	width: 100%;
	border-bottom: solid 1px lightgray;
	padding: 0px 0px;
	padding-bottom: 5px !important;
}

.content-normas-select .col-md-4 .norma-item {
	background-color: #d4efdf;
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 5px;
	margin-right: 10px;
	margin-top: 10px;
}

.content-normas-select .col-md-4 span {
	margin-right: 10px;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
}

.normas-container-checks {
	border: solid 1px lightgray;
	border-top: none !important;
	max-height: 300px;
	height: 300px;
	overflow: auto;
}

.custom-multi-select {
	position: relative;
	width: 100%;
}

#options-list,
#options-list-productos {
	display: none;
	background: white;
	border: 1px solid #ccc;
	width: 100%;
	max-height: 150px;
	overflow-y: auto;
	z-index: 10;
}

#options-list label,
#options-list-productos label {
	display: block;
	letter-spacing: 1px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
}

label {
	color: darkblue !important;
}

input:focus {
	border-bottom: darkblue;
}

#options-list label input,
#options-list-productos label input {
	margin-right: 10px;
}

#tags-container,
#tags-container-productos {
	margin-top: 5px;
	display: flex;
	flex-wrap: wrap;
}

.tag {
	background-color: #d4efdf;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 2px;
	display: flex;
	align-items: center;
	width: auto;
	justify-content: space-between;
	font-size: 14px;
}

.tag span {
	cursor: pointer;
	margin-left: 5px;
	font-weight: bold;
	color: darkgreen;
	font-size: 18px;
}

.tag span:hover {
	color: green;
	font-weight: bold;
}

.select2-container--default .select2-selection--single {
	border: none !important;
	border-bottom: 1px solid lightgray !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	margin-top: 10px !important;
}

.page-link {
	color:
		#010080 !important;
}

.page-link.active,
.page-link:hover {
	color: white !important;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff !important;
	background-color:
		#010080 !important;
	border-color:
		#010080 !important;
}

.custom-file-control,
.form-control,
.is-focused .custom-file-control,
.is-focused .form-control {
	background-image: linear-gradient(0deg,
			#010080 2px, rgba(0, 150, 136, 0) 0), linear-gradient(0deg, rgba(0, 0, 0, .26) 1px, transparent 0);
}

.btn.btn-raised.btn-success {
	color: #fff;
	background-color:
		#010080 !important;
	border-color:
		#010080 !important;
}

.btn.btn-success {
	background-color:
		#010080 !important;
	color: white !important;
	border-color:
		#010080 !important;
}

.btn.btn-success:hover {
	color:
		#010080 !important;
	background-color: white !important;
	border: solid 1px #010080 !important;
}

.tab button {
	color:
		#010080 !important;
}

.tab button.active {
	background-color:
		#010080 !important;
	color: white !important;
}