@charset "utf-8";
/* CSS Document */
:root {
	--bs-yellow: #FFC107;
	--yellow-light: #FFFF99;
	--yellow-dark: #DBA400;
	--navy: #001F3F;
	--ivss: #020266;
	--white: #FFFFFF;
	--success: #268300;
	--info: #0DCAF0;
	--primary: #0D6EFD;
	--gray: #ADB5BD;
	--gray-dark: #343A40;
	--purple: #6F42C1;
	--orange: #FD7E14;
	--orange-light: #FB9946;
	--black: #000000;	
	--danger: #DC3545;
	--red-dark: #FF0018;
	--brown: #800000;
	--fuchsia: #FF00FF;
	--pend: #888888;
	--text: #212529;
	--texto: #00A65A;
	--indigo: #6610F2;
	--pink: #F012BE;
	--aceituna: #3D9970;
	--violet: #712CF9;
	--gray-light: #F0F4F7;
	--azure: #F0FFFF;
	--honeydew: #F0FFF0;
	--font-family-Jost: Jost, sans-serif;
}

/**************************/
/* definición de scrollbar /
/**************************/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-thumb {
	background: #BBBBBB;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #EEEEEE;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:active {
	background-color: #999999;
}
::-webkit-scrollbar-track {
	background: #2A2A2A;
	border-radius: 4px;
}
/****************************/
body {
	overflow-x: hidden;
	max-height: 100%;
}
a, 
a:hover, 
a:focus {
    color: inherit !important;
    text-decoration: none;
    transition: all 0.3s;
}
aside {
	display: block;
	position: absolute !important;
}
img {
	border-style: none;
}
/*input[type=radio] {
	position: absolute;
	display: none;
}
input[type=radio]:checked + .label-radio {
	color: var(--white);
	background-color: var(--info);
}*/
input:required {
	border: 1px solid var(--red-dark);
}
select:required {
	border: 1px solid var(--red-dark);
}
.necessary {
	border: 1px solid var(--orange-light);	
}
textarea {
	resize: none;
}
.active-tab {
	color: var(--text) !important;
	background-color: #F8F9FA !important;
}
.active-tab:hover {
	color: var(--text) !important;
	background-color: #F8F9FA !important;
}
.delete {
	position: absolute;
	margin-left: 2px;
	margin-top: -5px;
}
.banking {
	font-weight: bold;
	color: var(--info);
	background-color: rgba(0, 123, 255, 0.13) !important;
}
.holiday {
	/*font-weight: bold;
	color: var(--danger);*/
	background-color: rgba(255, 0, 0, 0.13) !important;
}
.bd-callout {
	padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;	
}
.bd-callout+.bd-callout {
    margin-top: -0.25rem;
}
.bd-callout-info {
    border-left-color: #5bc0de;
}
.bd-callout-success {
    border-left-color: #268300;
}
.bd-callout-warning {
    border-left-color: #f0ad4e;
}
.bd-callout-danger {
    border-left-color: #d9534f;
}
.bg-azure {
	background-color: var(--azure);
}
.bg-honeydew {
	background-color: var(--honeydew);
}
.bg-orange {
	background-color: var(--orange);
}
.bg-indigo {
	background-color: var(--indigo);
}
.bg-navy {
	background-color: var(--navy);
	/*color: var(--white);*/
}
.bg-ivss {
	background-color: var(--ivss);
}
.bg-gray-light {
	background-color: var(--gray-light);
	color: var(--black);
}
.bg-yellow-light {
	background-color: var(--yellow-light) !important;
	color: var(--black);
}
.text-bg-gray {
	background-color: var(--gray);
	color: var(--text);
}
.text-bg-orange {
	color: #000 !important;
	background-color: var(--orange) !important;
}
.text-bg-brown {
	color: #fff !important;
	background-color: var(--brown) !important;
}
.text-bg-pink {
	color: #fff !important;
	background-color: var(--pink) !important;
}
.text-bg-fuchsia {
	color: #fff !important;
	background-color: var(--fuchsia) !important;
}
.text-bg-indigo {
	color: #fff !important;
	background-color: var(--indigo) !important;
}
.text-bg-ivss {
	color: #fff !important;
	background-color: var(--ivss) !important;
}
.btn-indigo {
	color: var(--white) !important;
	background-color: var(--indigo);
	border-color: var(--indigo);
}
.btn-indigo:hover {
    color: var(--white) !important;
    background-color: var(--violet) !important;
    border-color: var(--violet) !important;
}
.text-indigo {
	color: var(--indigo);
}
.text-orange {
	color: var(--orange);
}
.text-bg-navy {
	background-color: var(--navy) !important;
	color: var(--white) !important;
}
.text-bg-navy:hover {
	background-color: var(--navy) !important;
	color: var(--white) !important;
}
.text-violet {
	color: var(--violet);
}
.mt-6 {margin-top: 4rem !important}
.sidebar-right {
	width: 265px;
	/*height: 100vh;*/
	display: block;
	/*position: fixed;*/
	position: absolute;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1040;
}
.sidebar-right ul {
	list-style: none;
	padding: 0;
}
.sidebar {
	width: 265px;
	height: 100vh;
	position: fixed;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	top: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1040;
}
.sidebar ul li i {
	margin-right: 10px;
}
.sidebar ul li a {
	text-decoration: none;
	color: var(--white);
	padding: 10px;
	display: block;
	white-space: nowrap;
}
.sidebar ul li a:hover {
	border-radius: 4px;
	background-color: var(--gray-light);
	color: var(--black) !important;
	/*width: 220px;*/
}
.sidebar:hover {
	width: 265px;
}
.main-header {
    transition: margin-left .3s ease-in-out;
    margin-left: 265px;	
    border-bottom: 1px solid #dee2e6;
}
.content-wrapper {
	transition: margin-left .3s ease-in-out;
	margin-left: 265px;
}
.colapsado {
	transition: width .3s ease-in-out;
	width: 46px;
}
/*.sidebar .active {
.sidebar {
	margin-left: -202px;
}*/
.expand {
    transition: margin-left .3s ease-in-out;
    margin-left: 48px;
}
.margin-navbar-top {
	margin-top: 68px;
}
/*.label-radio {
	color: var(--black);
	display: inline-block;
	cursor: pointer;
	font-weight: bold;
	padding: 0 10px;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
}
.radio-group {
	display: inline-block;
	border-radius: 5px;
	overflow: hidden;
	line-height: 1.5;
	margin-top: 5px;
}*/
.table-thead-fixed {
	width: 100%;
}
.table-thead-fixed tbody {
	overflow-y: scroll;
	width: 100%;
	height: 50vh;
}
.table-thead-fixed thead, 
.table-thead-fixed tbody {
	display: block;
}
.column-month tr td {
	border: 1px solid #CED4DA;
	padding: 0;
}
.column-month tr td:nth-child(even) {
	background-color: #E5E9FF;
}
.hide {
	display: none;
}
.hidden {
	visibility: hidden;
}
.visible {
	visibility: visible;
}
.month {
	table-layout: fixed;
	width: 100%;
} 
.month tr td {
	text-align: center;
	border: 1px solid #DEE2E6;
}
.month tr td:hover {
	background-color: rgba(51, 122, 183, 0.30);
	cursor: pointer;
	color: var(--text);
}
.month-active {
	background-color: var(--info) !important;
	color: var(--white);
	font-weight: bold;
}
.calendar tbody td:nth-child(1), .calendar tbody td:nth-child(7) {
	background-color: rgba(255, 0, 0, 0.13);
}
.calendar tbody tr td {
	border: 1px solid #DEE2E6;
	text-align: right;
	vertical-align: top;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.calendar thead tr th {
    text-align: center;
    border: 1px solid #DEE2E6;
    background-color: #F0F0F0;
}
.calendar-month tbody tr td {
	width: 100px;
	height: 10vh;
}
.rotate {
	transform: rotate(180deg);
	/* Legacy vendor prefixes that you probably don't need... */
	/* Safari */
	-webkit-transform: rotate(180deg);
	/* Firefox */
	-moz-transform: rotate(180deg);
	/* IE */
	-ms-transform: rotate(180deg);
	/* Opera */
	-o-transform: rotate(180deg);
}
.resizer {
	width: 1px;
	/*height: 25px;*/
	border-radius: 3px;
	position: relative;
	/*left: 10px;
	top: -5px;*/
	background: var(--white);
	cursor: e-resize;
}
.slider {
	border-radius: 5px;
	background: #E0E0E0;
	background: linear-gradient(left top, #E0E0E0, #EEEEEE);
	width: 310px;
	height: 1px;
	margin: 5px;
}
.hiddencon {
	margin: 0;
	padding: 0;
	width: 240px;
	position: fixed;
	right: -250px;
	-moz-border-radius: 0px 0px 0px 10px;
	-webkit-border-radius: 0px 0px 0px 10px;
	border-radius: 0px 0px 0px 10px;
}
.hiddencon:hover {
	right: 0px;
}
.hiddencon-label {
	padding: 12px;
	position: absolute;
	display: inline-block;
	font-size: 15px;
	-moz-border-radius: 20px 0px 0px 20px;
	-webkit-border-radius: 20px 0px 0px 20px;
	border-radius: 20px 0px 0px 20px;
	right: 220px;
	width: 60px;
}
.hiddencon, .hiddencon-label {
	-moz-transition: all 1.5s ease-in-out;
	-webkit-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.hiddencon a {
    padding: 4px;
    text-decoration: none;
    font-size: 12px;
    display: block;
	cursor: pointer;
    transition: 0.3s;
}
/*.email {
	background-color: var(--gray);
	color: var(--text);
	float: left;
	padding: 0.25rem 0.5rem;
	font-size: 0.7875rem;
	border-radius: 0.25rem;
}*/
/*.calendar-anual tbody tr td {
	text-align: left;
	border: 1px solid #DEE2E6;
}
.calendar-anual thead tr:nth-child(1) th:nth-child(even) {
	background-color: #EFEFEF;
}*/

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	z-index: 1;
	/*visibility: hidden;
	opacity: 0;*/
}
/*.overlay:target {
	visibility: visible;
	opacity: 1;
}*/
.popup {
	margin: 0 auto;
	top: calc(50% - 60px);
	padding: 20px;
	/*background: var(--white);*/
	border-radius: 5px;
	width: 30%;
	position: relative;
	/*transition: all 5s ease-in-out;*/
}
/*.popup h2 {
	margin-top: 0;
	color: #333333;
	font-family: Tahoma, Arial, sans-serif;
}*/
.popup .close {
	position: absolute;
	top: 0;
	right: 10px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333333;
}
.popup .close:hover {
	color: #06D85F;
}
.popup .content {
	max-height: 30%;
	overflow: auto;
}


/* El texto de contenido donde flota el video */
.txt_contenido{
	text-align: justify;
}

/* Efectos que damos al mandar a flotar el video */
@-webkit-keyframes fade-in-up {
	0% {
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/* El texto de contenido donde flota el video */
@keyframes fade-in-up {
	0% {
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/* Contenedor principal del video */
.contenedor_video {
	padding: 45px;
	display: block;
	margin: 0 auto;
}

/* El subcontenedor con la clase .video con el elemento HTML video */
.video video {
	max-width: 100%;
	max-height: 100%;
	width: 750px;
	height: 450px;
	background-color: #e6e5e6;  
}

/* Contenedor del video flotante o sticky */
.videoflotante {
	position: fixed;
	top: 50px;
	right: 20px;
	-webkit-transform: translateY(100%);
		transform: translateY(100%);
	width: 345px;
	height: 200px;
	-webkit-animation: fade-in-up .25s ease forwards;
		animation: fade-in-up .25s ease forwards;
	border: 5px solid #888d92;
}

/* Cuando cerramos el video flotante, volvemos su posición al estado inicial */
.videoflotante2 {
	position: initial;
}

/* Botón cerrar el video flotante */
.btn_cerrar{
	font-size: 30px;
	position: absolute;
	margin-top: -50px;
	margin-left: 320px;
	cursor: pointer;
}

/* Oculta el botón para cerrar el video flotante */
.btn_cerrar_cls{
	display: none;
}

/* Propiedades CSS para que se ajuste a los dispositivos móviles con max-width de 360px */
@media(max-width: 360px)
{
	.video video {
		max-width: 100%;
		max-height: 100%;
		width: 100%;
		height: 220px;
		background-color: #e6e5e6;  
	}

	.videoflotante {
		width: 245px;
		height: 135px;
		top: 40px;
	}

	.btn_cerrar {
		margin-top: -49px;
		margin-left: 220px;
	}

}
