/* ────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */
/** ESTILOS INTRANET																								  */
/* ────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

@charset "UTF-8";

/** FUENTES ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i');


/** COLORES ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

:root {
    --main-color-1: #00aa9d;
    --main-color-2: #00554e;
    --color-festivo: #bd3b07;
    --color-evento-diario: #a0a0a0;
    --color-ausencia-vacaciones: #0da100;
    --color-ausencia-vacaciones-ptes: #b6f0b0;
    --color-ausencia-enfermedad: #4239bb;
    --color-ausencia-paternidad: #d7da34;
    --color-ausencia-permiso-retribuido: #20bbd6;
    --color-ausencia-otros: #9c069c;
	--color-tarea-pendiente: #edd52b;
	--color-tarea-completada: #5ab751;
	--color-tarea-no-completada: #da1616;
	--color-vehiculo-no-propio: #dc8b00;
    --text-color: #000000;
    --text-color-destacado: #dc6600;
}


/** CONFIGURACIÓN CSS ─────────────────────────────────────────────────────────────────────────────────────────────── */

.max-img {
	width: 100%;
	height: auto;
}

html {
	font-size: 16px;
}

body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus
textarea:-webkit-autofill, textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
	border: 0px solid green !important;
	-webkit-text-fill-color: inherit !important;
	-webkit-box-shadow: 0 0 0px 1000px inherit inset !important;
	box-shadow: 0 0 0px 1000px inherit inset !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

*:focus {
	outline: none !important;
}
input:focus, select:focus, textarea:focus {
    outline: 1px solid #265686 !important;
}
input[type='radio']:focus, input[type='checkbox']:focus {
    outline: none !important;
}
input:disabled {
	color: #666666 !important;
}
textarea:disabled {
	color: #666666 !important;
}

.noselect, label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-button {
	display: none;
	height: 13px;
	border-radius: 0px;
	background-color: #AAA;
}
::-webkit-scrollbar-button:hover {
	background-color: #AAA;
}
::-webkit-scrollbar-thumb {
	background-color: #808080;
    border-radius: 0;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #808080;
    border-radius: 0;
    cursor: pointer;
}
::-webkit-scrollbar-track {
	background-color: #c0c0c0;
}
::-webkit-scrollbar-track:hover {
	background-color: #c0c0c0;
}

::placeholder {
	font-weight: 400;
}

::-ms-input-placeholder {
	font-weight: 400;
}
::-ms-input-placeholder {
	font-weight: 400;
}

*, *::before, *::after {
	box-sizing: border-box;
}


/** VM ────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

#ovm {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 100000;
	background-color: transparent;
	background-color: rgba(0,0,0,0.5);
}

#vm {
	width: 500px;
	min-height: 150px;
	max-width: 95%;
	max-height: 75%;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 20px;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	background-color: #ffffff;
	background-color: rgba(255,255,255,0.9);
	border: 1px solid #666666;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;		
	border-radius: 5px;
	/*-webkit-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.5);*/
	overflow: auto;
}

#vm img {
	width: 64px;
	height: 64px;
	display: block;
	margin: 0px auto 15px auto;
	clear: both;
}

#vm p {
	margin-bottom: 10px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	text-align: justify;
	color: #333333;
}

#vm h2.cont {
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	color: #333333;
}

.bCerrar {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 10px !important;
	height: 10px !important;
	margin: 0px !important;
	cursor: pointer;
}

.bVM {
	position: absolute;
	left: 0px;
	bottom: 20px;
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-around;
}

.bSI {
	padding: 6px 0px 6px 0px;
	cursor: pointer;
	width: 100px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 2px;
	font-size: .8rem;
	font-weight: 400;
	background-color: #3083c9;
	color: #ffffff;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-o-transition: color 0.2s;
	-ms-transition: color 0.2s;
	transition: color 0.2s;
}

.bSI:hover {
	color: #cccccc;
}

.bNO {
	padding: 6px 0px 6px 0px;
	cursor: pointer;
	width: 100px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 2px;
	font-size: .8rem;
	font-weight: 400;
	background-color: #3083c9;
	color: #ffffff;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-o-transition: color 0.2s;
	-ms-transition: color 0.2s;
	transition: color 0.2s;
}

.bNO:hover {
	color: #cccccc;
}

/**********************************************************/

#ovm .loading {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/**********************************************************/

.cabeceraVM {
	padding: .5rem;
	background-color: var(--main-color-2);
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.contenidoVM {
	padding: 1.5rem;
    overflow: auto;
    max-height: 90vh;
}
.contenidoVM > p {
	margin-bottom: 1rem;
}
.contenidoVM .uploadifive-button {
	width: 100% !important;
}


/** SELECTIZE ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

.selectize-control.single .selectize-input, .selectize-dropdown.single {
	border: 0 !important;
	background-color: #efefef !important;
	background-image: none !important;
}
.selectize-dropdown, .selectize-input, .selectize-input input {
	color: #000000 !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: .9rem !important;
    line-height: normal !important;
}
.selectize-dropdown .active {
	background-color: #1e90ff !important;
	color: #ffffff !important;
  }


/** FLIPSWITCH ────────────────────────────────────────────────────────────────────────────────────────────────────── */

.onoffswitch {
	position: relative; 
	width: 82px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
	display: block; 
	overflow: hidden; 
	cursor: pointer;
	border: 1px solid #eaeaea; 
	border-radius: 0px;
}
.onoffswitch-inner {
	margin-left: -100%;
	width: 200%; 
	display: block; 
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    box-sizing: border-box;
	padding: 0; 
	width: 50%;
	height: 33px; 
	display: block; 
	float: left; 
	line-height: 33px;
	font-size: 12px; 
	color: white; 
	font-family: Trebuchet, Arial, sans-serif; 
}
.onoffswitch-inner:before {
    content: "SÍ";
    padding-left: 12px;
	background-color: #EFEFEF; 
	color: #000000;
    text-align: left;
}
.onoffswitch-inner:after {
    content: "NO";
    padding-right: 12px;
	background-color: #EFEFEF; 
	color: #000000;
    text-align: right;
}
.onoffswitch-switch {
	position: absolute; 
	top: 0; 
	bottom: 0;
    right: 45px;
	margin: 4px;
	width: 25px; 
	display: block; 
    background: #CCCCCC;
	border: 0; 
	border-radius: 0px;
	transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
    background-color: var(--main-color-1);
}

/****/

.onoffswitchEstado {
	width: 110px !important;
}
.onoffswitchEstado .onoffswitch-inner:before {
    content: "ABIERTO" !important;
}
.onoffswitchEstado .onoffswitch-inner:after {
    content: "CERRADO" !important;
}
.onoffswitchEstado .onoffswitch-switch {
	right: 77px;
}


/** TOGGLE ────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.toggle {
    box-sizing: border-box;
    margin: 0 0 1.5rem;
	font-size: 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.toggle input {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
}
.toggle input + label {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: .75rem 2rem;
    display: inline-block;
    border: solid 1px var(--main-color-1);
    background-color: #FFFFFF;
    font-family: 'Roboto', Arial, Helvetica;
    font-size: .9rem;
    line-height: 140%;
    text-align: center;
	box-shadow: 0 0 0 rgba(255,255,255,0);
    cursor: pointer;
	transition: border-color .15s ease-out,
				color .25s ease-out,
				background-color .15s ease-out,
                box-shadow .15s ease-out;
}
.toggle input:first-of-type + label {
    border-radius: .5rem 0 0 .5rem;
    border-right: none;
}
.toggle input:last-of-type + label {
    border-radius: 0 .5rem .5rem 0;
    border-left: none;
}
.toggle input:hover + label {
    border-color: var(--main-color-1);
}
.toggle input:checked + label {
	background-color: var(--main-color-1);
	color: #FFFFFF;
	box-shadow: 0 0 10px rgba(#a8a8a8, .5);
	border-color: var(--main-color-1);
	z-index: 1;
}
.toggle input:focus + label {
    outline: none;
    outline-offset: .45rem;
}


/** ELEMENTOS GENERALES ───────────────────────────────────────────────────────────────────────────────────────────── */

body {
    margin: 0px;
    padding: 0px;
    background-color: #cccccc;
}

body.F {
    background-color: #FFFFFF;
}

body.FM {
	padding: 10px 50px 10px 50px;
    background-color: #FFFFFF;
	overflow: auto;
	white-space: nowrap;    
}

body.scrollOff {
    overflow: hidden;
}

form {
    margin: 0px;
    padding: 0px;
}

p {
	margin: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.1rem;
    text-align: justify;
    color: var(--text-color);
}

p.nota {
    margin-top: 1.5rem;
    font-size: .8rem;
    font-style: italic;
}

blockquote {
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.1rem;
    text-align: justify;
}

li {
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.1rem;
}

h1 {
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    text-align: justify;
}
h1.tituloSubTabla {
    margin-top: .3rem;
	font-size: 0.9rem;
	font-style: italic;
}

h2 {
    color: var(--text-color);
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1rem;
}

a {
	color: var(--text-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	display: block;
	border: 0px;
	border-style: none;
	margin: 0px;
	padding: 0px;
}

.clear { clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0; }

iframe {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    border: 0px;
}

iframe.oculto {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    visibility: hidden;
    /*display: none;*/
}

textarea {
    resize: none;
}

table {
    margin: 0px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
}
th {
    text-align: left;
}
td {
    font-size: .9rem;
    line-height: 1.1rem;
}

fieldset {
	position: relative;
    margin: 0px;
	margin-bottom: 25px;
    padding: 10px;
    padding-top: 4rem;
	border: 2px solid #d8d8d8;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;	
	border-radius: 5px;	    
}

legend {
	position: absolute;
	top: 1rem;
	width: 100%;
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
	font-size: .8rem;
	line-height: 2rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 1px;
}
legend img {
	margin-right: .5rem;
	float: left;
	max-width: 2rem;
}

.aviso {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
	color: #c5181f;
}

.avisoVerde {
	color: #23a720;
}

.avisoRojo {
	color: #c5181f;
}

input.inputLogin:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #efefef inset;
	box-shadow: 0 0 0 1000px #efefef inset;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #efefef inset;
	box-shadow: 0 0 0 1000px #efefef inset;
}

#txtTags {
	text-transform: lowercase;
}

/**********************************************/

#html {
	height: 100%;
	padding: 10px;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #e5e5e5;
	color: var(--text-color);
	border-radius: 6px 0px 0px 6px;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;	
}


#html p {
	margin: 0px 0px 5px 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	text-align:justify;
}

#html p a {
	color: #753681;
	text-decoration: underline;
}

#html p a:hover {
	text-decoration: none;
}

#html p.sistema {
	color: #753681;
	font-size: 0.8rem;
	font-weight: 700;
}

#html p.sistema a {
	font-weight: 700;
}

#html p.sistema img {
	display: none;
}

#html p span.hora {
	color: #000000;
	font-size: 0.8rem;
}

.vacio {
	border: 0px !important;
	height: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.flex2 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
.flex3 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.flexCharts {
    margin-bottom: 2rem;
    
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: flex-start;
}
.flexChartsReporting {
	justify-content: center !important;
}
.flexCharts > div {
    width: 30%;
}
.flexCharts .grafico{
	width: 30%;
}
.flexCharts .rueda{
	width: 20%;
	max-width: 400px;
}

.bloqueCharts{
	background: #ededed;
    padding: 1.5rem;
	margin: 0 2rem;
}
.bloqueCharts .tituloChart{
	text-align: center;
}


/**********************************************/

.videoResponsive {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.videoResponsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/**********************************************/

.ck-editor__editable {
    min-height: 400px;
}

/** CAPAS ─────────────────────────────────────────────────────────────────────────────────────────────────────────── */

#contenedor {
	position: relative;
    width: calc(100% - 40px);
    min-height: calc(100vh - 40px);
    margin: 5px auto 20px auto;
    padding-bottom: 100px;
    clear: both;
    background-color: #ffffff;
}

/*******************************************************/

#cabecera {
	padding: 10px 20px;
	height: 100px;
	background-color: #FFFFFF;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: space-between;      
	border-bottom: 3px solid var(--main-color-2);
}

#cabecera img {
	width: auto;
	height: 70px;
}
#cabecera img.logoGrupo {
	height: 40px;
}

#pie {
	position: absolute;
	bottom: 0px;
	width: 100%;
    height: 30px;
    background-color: var(--main-color-2);
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;    
}

#pie p {
    text-align: center;
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: .7rem;    
}

/*******************************************************/

#contenido {
    margin: 10px 10px 10px 10px;
}

/*******************************************************/

#rutaSeccion {
    min-height: 25px;
    margin-top: 10px;
    background-color: var(--main-color-1);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;    
}

#rutaSeccion img {
	height: 14px;
    margin: 0px 4px;
}

#rutaSeccion img.separador {
    height: 8px;
    margin: 1px 1px 0px 4px;
}

#rutaSeccion h1, #rutaSeccion h2, #rutaSeccion h3 {
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: .8rem;
    line-height: 20px;    
    color: #FFFFFF;    
}

/*******************************************************/

#ayuda {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
    margin-bottom: 1rem;
	background-color: #dce4eb;
    padding: 10px;
}  

#ayuda img.iconoAyuda {
    width: 25px;
    height: 25px;
}

#ayuda p {
	width: calc(100% - 30px);
    font-size: .8rem;
    line-height: normal;
}

/*******************************************************/

#botoneraNuevosRegistros {
	margin-bottom: 1rem;
	background-color: #dce4eb;
    padding: 10px;

	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: stretch;
}

/*******************************************************/

#bloqueBuscador {
    position: relative;
}

#buscador {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;	
}

img.selectorBuscador {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    max-width: 30px;
}

/*******************************************************/

#mensajeResultados {
    margin: 5rem auto;
    padding: 2rem;
    width: 35%;
    border-left: 3px solid #D0D0D0;
    border-right: 3px solid #D0D0D0;
    border-radius: 10px;
}

#mensajeResultados img {
	margin-bottom: 1rem;
	max-width: 64px;
}

/*******************************************************/

.tag {
	cursor: pointer;
	display: inline-table;
	margin: .5rem .5rem .3rem 0;
	padding: .3rem .5rem .3rem .5rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #ffffff;
	background-color: #6998b7;
	border-radius: 5px;
 	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.tag:hover {
	color: transparent;
    background-image: url("../imagenes/eliminar.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.tagNoEdit {
	margin: .2rem .5rem 0 0;
	cursor: default !important;
}
.tagNoEdit:hover {
	color: #ffffff !important;
	background-image: none !important;
}

.tagServicioPrevencion {
    background-color: #23a720 !important;
}


/** PANTALLA LOGIN ────────────────────────────────────────────────────────────────────────────────────────────────── */

#formularioLogin  {
    width: 400px;
    max-width: calc(100% - 20px);
	margin: 100px auto 0px auto;
}

#formularioLogin img {
	width: 120px;
	margin: 0px auto 20px auto;
}

#formularioLogin input {
	width: 100%;
	margin-bottom: 20px;
	height: 35px;
	padding: 5px;
    color: var(--text-color);
    border: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;    
	background-color: #efefef;
}

#formularioLogin p.mensaje {
	margin: 0px;
	margin-bottom: 10px;
    text-align: center;
}


/** PANTALLA ACCESO ────────────────────────────────────────────────────────────────────────────────────────────────── */

#formularioAcceso  {
    width: 400px;
    max-width: calc(100% - 20px);
	margin: 100px auto 0px auto;
}

#formularioAcceso img {
	width: 200px;
	margin: 0px auto 20px auto;
}

#formularioAcceso input {
	width: 100%;
	margin-bottom: 20px;
	height: 35px;
	padding: 5px;
    color: var(--text-color);
    border: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;    
	background-color: #efefef;
}

#formularioAcceso p.mensaje {
	margin: 0px;
	margin-bottom: 10px;
    text-align: center;
}


/**********************************************/

.cm {
	position: relative;
	height: 30px;
}

.mLogin {
	position: absolute;
	display: none;
	box-sizing: border-box;
	width: 100%;
	padding: 2px;
	margin-top: 4px;
	color: #ffffff;
	background-color: #ce0008;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9em;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
}


/** FORMULARIOS ───────────────────────────────────────────────────────────────────────────────────────────────────── */

.campoObligatorio {
    color: #ff0000;
    font-weight: 700;
    font-size: .8rem;
}

.campoFormularioError {
    border: 2px solid #cf4636 !important;
}

.bloqueCampoFormulario {
    margin: 0 .5rem 10px .5rem;
}

.ent, .lnk {
	display: none;
}

.bloqueCampoEditor {
    margin: 0px;
    margin-bottom: 10px;
}

.bloqueCampoFormulario p, .bloqueCampoEditor p {
    margin: 0px;
    font-size: .8rem;
    color: var(--text-color);
}

.bloqueCampoFormulario p.secundario {
    margin: 0px;
    margin-left: 0.6rem;
    font-size: .8rem;
    line-height: 2rem;
    width: 100%;
}

.bloqueCampoFormulario > input {
	width: 100%;
	height: 35px;
	margin: 0px;
	padding: 5px;
    color: var(--text-color);
    border: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;    
	background-color: #efefef;
	float: left;
}

.bloqueCampoFormulario > select {
	height: 35px;
	margin: 0px;
	padding: 4px;
    color: var(--text-color);
    border: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;    
    background-color: #efefef;
}


.bloqueCampoFormulario > textarea {
	width: 100%;
	margin: 0px;
	padding: 5px;
    color: var(--text-color);
    border: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;    
    background-color: #efefef;
}

.bloqueCampoFormulario > input[type='radio'] {
	width: 20px !important;
	height: 20px !important;
}
.bloqueCampoFormulario > input[type='checkbox'] {
	width: 20px !important;
	height: 20px !important;
}

.bloqueCampoFormulario img {
	display: inline;
    cursor: pointer;
    /*margin-top: 1px;*/
    margin-left: 5px;
}

input[type="date"] {
	width: 150px;
}

input[name="chkNoticiaDestacada"] {
	float: left;
	width: 28px;
	height: 28px;
	margin: 4px 4px 0px 0px;
}

.bCampoFormulario_100 {
	width: calc(100% - 20px);
}
.bCampoFormulario_90 {
	width: calc(90% - 20px);
}
.bCampoFormulario_85 {
	width: calc(85% - 20px);
}
.bCampoFormulario_80 {
	width: calc(80% - 20px);
}
.bCampoFormulario_75 {
	width: calc(75% - 20px);
}
.bCampoFormulario_70 {
	width: calc(70% - 20px);
}
.bCampoFormulario_60 {
	width: calc(60% - 20px);
}
.bCampoFormulario_50 {
	width: calc(50% - 20px);
}
.bCampoFormulario_45 {
	width: calc(45% - 20px);
}
.bCampoFormulario_40 {
	width: calc(40% - 20px);
}
.bCampoFormulario_35 {
	width: calc(35% - 20px);
}
.bCampoFormulario_30 {
	width: calc(30% - 20px);
}
.bCampoFormulario_25 {
	width: calc(25% - 20px);
}
.bCampoFormulario_20 {
	width: calc(20% - 20px);
}
.bCampoFormulario_15 {
	width: calc(15% - 20px);
}
.bCampoFormulario_10 {
	width: calc(10% - 20px);
}
.bCampoFormulario_5 {
	width: calc(5% - 20px);
}

/**********************************************************/

.fs-label-wrap {
    background-color: #ededed !important;
    border: 0 !important;
}

.fs-label {
    font-family: 'Open Sans', sans-serif !important;
    font-size: .9rem !important;
}

.fs-dropdown {
    background-color: #ededed !important;
    border: 1px solid #7a9cd3 !important;
    width: 300px !important;
    margin-top: 0 !important;
}

.fs-optgroup-label {
    font-family: 'Open Sans';
    font-size: 0.8rem;
    text-align: left !important;
}

#bloqueCampoActividad .fs-dropdown {
    width: 450px !important;
}
#bloqueCampoCNAE .fs-dropdown {
    width: 450px !important;
}
#bloqueCampoIAE .fs-dropdown {
    width: 450px !important;
}

.fs-search input {
    float: none !important;
    background-color: #ffffff !important;
}

.fs-option {
    padding: 3px 8px !important;
}

.fs-option-label {
    margin-left: 1.3rem;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: .9rem !important;
}

.fs-option.selected .fs-checkbox i {
    background-color: rgb(38, 86, 134) !important;
}

/*******************************************************/

.ck-editor__editable_inline p {
    margin: 1rem 0;
}


/** BOTONES ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

.boton {
	display: table;
	height: 35px;
	margin: 0px auto;
	padding: 0px 10px 0px 12px;
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	line-height: 33px;
	letter-spacing: 2px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid var(--main-color-1);	
	border-radius: 3px;
	background-color: var(--main-color-1);	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.boton:hover {
	color: var(--main-color-1);
	background-color: transparent;
}

.botonOff {
	opacity: 0.2;
	display: table;
	height: 35px;
	margin: 0px auto;
	padding: 0px 10px 0px 12px;
	cursor: default;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	line-height: 33px;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid var(--main-color-1);	
	color: #ffffff;
	background-color: var(--main-color-1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.botonOff:hover {
	color: #ffffff !important;
	background-color: var(--main-color-1) !important;
}

#botonAccionOff {
	display: none;
}

.botonInforme {
	margin: 0px auto;
	padding: 0px 15px 0px 17px;
	height: 30px;
	width: 300px;
	cursor: pointer;
	border: 1px solid #2e7d32;	
	background-color: transparent;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
}
.botonInforme:hover {
	background-color: #2e7d32;	
}
.botonInforme:hover p{
	color:#ffffff;
}
.botonInforme img {
	margin-right: .5rem;
	margin-top: 1px;
	max-height: 25px;
	float: left;
}
.botonInforme:hover img {
	filter: grayscale(1);
}
.botonInforme p {
	margin: 0;
	float: left;
	font-family: 'Open Sans', sans-serif;
	font-size: .9rem;
	line-height: 30px;
	letter-spacing: 2px;
	color: #2e7d32;
	text-align: center;
	text-transform: uppercase;
}

.botonInformeRojo {
	margin: 0px auto;
	padding: 0px 15px 0px 17px;
	height: 30px;
	width: 300px;
	cursor: pointer;
	border: 1px solid #e24141;	
	background-color: transparent;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
}
.botonInformeRojo:hover {
	background-color: #e24141;	
}
.botonInformeRojo img {
	margin-right: .5rem;
	margin-top: 1px;
	max-height: 25px;
	float: left;
}
.botonInformeRojo:hover img {
	filter: grayscale(1);
}
.botonInformeRojo p {
	margin: 0;
	float: left;
	font-family: 'Open Sans', sans-serif;
	font-size: .9rem;
	line-height: 30px;
	letter-spacing: 2px;
	color: #e24141;
	text-align: center;
	text-transform: uppercase;
}
.botonInformeRojo:hover p {
	color: #ffffff;
}

.botonRemesa {
	height: 35px;
	margin: 0px auto;
	padding: 0px 10px 0px 12px;
	cursor: pointer;
	border: 1px solid var(--main-color-1);	
	border-radius: 3px;
	background-color: var(--main-color-1);	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.botonRemesa:hover {
	background-color: transparent;
}
.botonRemesa p {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: .9rem;
	line-height: 30px;
	letter-spacing: 2px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
}
.botonRemesa:hover p {
	color: var(--main-color-1);
}

/**********************************************************/

.bPequenio {
	height: 25px;
	font-size: .8rem;
	line-height: 25px;
	letter-spacing: 1px;
	color: var(--main-color-1) !important;
	background-color: transparent !important;
}
.bPequenio:hover {
	color: #ffffff !important;
	background-color: var(--main-color-1) !important;
}

.bPequenioOff {
	height: 25px;
	font-size: .8rem;
	line-height: 25px;
	letter-spacing: 1px;
	color: #ffffff !important;
	background-color: #c0c0c0 !important;
	border: 1px solid #c0c0c0;
}

/**********************************************************/

.bEntrar {
	width: 250px;
}

/**********************************************************/

.bVolver {
	cursor: pointer;
	float: right;
	clear: all;
    padding-left: 24px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	line-height: 30px;
	letter-spacing: 2px;
	color: #666666;    
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ4OSA0ODkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4OSA0ODk7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPgo8Zz4KCTxwYXRoIGQ9Ik00MjkuNCwyNTUuMDMzYy0zNS40LTQzLjEtMTAyLjEtOTQuNC0yMTkuNy05OC44di03OS44YzAtNC43LTIuNy05LjEtNy0xMS4xcy05LjQtMS40LTEzLDEuNkw0LjUsMjE5LjYzMyAgIGMtMi44LDIuMy00LjUsNS44LTQuNSw5LjRjMCwzLjcsMS42LDcuMSw0LjQsOS40bDE4NS4yLDE1My4zYzMuNywzLDguNywzLjcsMTMsMS42YzQuMy0yLDctNi4zLDctMTEuMXYtNzkuNSAgIGM3Ni44LDAuMywxOTQuMiw2LDI1Ni41LDExNS45YzIuMiwzLjksNi4zLDYuMiwxMC43LDYuMmMxLDAsMi4xLTAuMSwzLjEtMC40YzUuNC0xLjQsOS4xLTYuMyw5LjEtMTEuOCAgIEM0ODkuMSwzNzEuNTMzLDQ3My40LDMwOC42MzMsNDI5LjQsMjU1LjAzM3ogTTE5Ny40LDI3OC4yMzNMMTk3LjQsMjc4LjIzM2MtMy4zLDAtNi40LDEuMy04LjcsMy42cy0zLjYsNS40LTMuNiw4Ljd2NjUuNyAgIGwtMTUzLjUtMTI3LjFsMTUzLjYtMTI2Ljd2NjUuN2MwLDYuNyw1LjQsMTIuMiwxMi4xLDEyLjNjMTc2LDEuNywyNDEuNiwxMDksMjYwLjcsMTg0LjQgICBDMzgyLjIsMjc4LjMzMywyNjguNywyNzguMjMzLDE5Ny40LDI3OC4yMzN6IiBmaWxsPSIjNjY2NjY2Ii8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==');
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto 20px;
}

/**********************************************/

.botonBuscar {
	width: 120px;
	margin: 18px 1rem 0px 1rem;
}

.botonVerTodo {
	width: 120px;
	margin: 18px 1rem 0px 1rem;
}

/**********************************************/

.bRecortarFoto {
	display: none;
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	color: var(--main-color-1);
	border: 1px solid var(--main-color-1);
	background-color: transparent;	
	background-image: url("../imagenes/crop.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 1.2rem;
}
.bRecortarFoto:hover {
	color: #ffffff;
	background-color: var(--main-color-1);
}

.bGuardarSesion:hover {
	background-color: rgba(50,50,50,0.8);
}

/**********************************************/

.bInicio {
	margin: 1rem auto;
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	color: var(--main-color-1) !important;
	background-color: transparent !important;
	background-image: url("../imagenes/up-chevron.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: .9rem;
}
.bInicio:hover {
	color: #ffffff !important;
	background-color: var(--main-color-1) !important;
}

.bNuevo {
	margin: 0;
	margin-left: 1rem;
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	background-image: url("../imagenes/add.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 1.2rem;
}

.bInsertar {
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/save.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	/* width: 100px; */
}

.bEliminar {
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/eliminar.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	/* width: 100px; */
}

.bConfirmar {
    margin-top: 2rem;
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/ok.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	/* width: 100px; */
}

.bEnviar {
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/send.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;		
}

.bDuplicar {
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/clonar.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	/* width: 100px; */
}

.bSiguiente {
	position: fixed;
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/der.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

.bAtras {
	position: fixed;
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/izq.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
}

.botonesEV {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: start;
}
/**********************************************/

.bInsertarConcepto {
	margin-bottom: 1.5rem;
	float: right;
}
.bInsertarConcepto p {
    margin-top: 0.2rem;
}

/**********************************************/

.bInsertarGasto {
	margin-bottom: 1.5rem;
	float: right;
}
.bInsertarGasto p {
    margin-top: 0.2rem;
}

/**********************************************/

.bClonar {
	margin: 0;
	margin-left: 0;
    margin-bottom: 1rem;
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	background-image: url("../imagenes/clonar.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 1.2rem;
    float: right;
}

/**********************************************/
.bGeolocalizacion {
	padding: 0px 10px 0px 40px;
	background-image: url("../imagenes/map-location.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	/* width: 100px; */
}

/**********************************************/
.bMapaAñadir {
	margin: 0;
	/* margin-left: 1rem; */
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	background-image: url("../imagenes/add.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 1.2rem;
}

.bMapaEliminar {
	margin: 0;
	margin-left: 1rem;
	padding: 0px 10px 0px 35px;
	height: 25px;
	font-size: .8rem !important;
	line-height: 25px;
	background-image: url("../imagenes/menos.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 1.2rem;
}

.flexMapa{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    width: 100%;
    margin: 0.5rem;
}


/** PAGINACIÓN ────────────────────────────────────────────────────────────────────────────────────────────────────── */

.filaPaginacion {
    width: 100%;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#numResultadosPaginacion {
    margin: 5px;
    padding-right: 5px;
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: flex-start;
	border-radius: 6px;
	background-color: #3083c9;
}

#numResultadosPaginacion p {
    margin: 0px 5px;
    font-size: 0.7rem;
    color: #ffffff;
}

#numResultadosPaginacion select {
    padding: 0px 2px;
    height: 25px;
    border: 0px;
	font-size: .7rem;
	color: #ffffff;
	background-color: #3083c9;
}

.resultadosBusqueda p {
    padding: 0 .5rem;
    font-weight: bold;
    color: #cf4636;
    border: dotted 1px #cf4636;
}

#controlesPaginacion {
    margin: 5px;
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: flex-start;	
}

#controlesPaginacion img {
	margin: 0px 2px;
	height: 25px;
}

#controlesPaginacion img.off {
   opacity: 0.2;
}

#controlesPaginacion p {
    margin: 0px 5px;
    font-size: 0.7rem;
    color: #333333;
}


/** ACCESO ────────────────────────────────────────────────────────────────────────────────────────────────────────── */

#cajaCodigoAcceso  {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 130px;
    padding: 25px 25px 15px 25px;
    background-color: #eeeeee;
    text-align: center;      
}

#cajaCodigoAcceso p.mensaje {
    text-align: center;
}

#cajaCodigoAcceso div.intentos {
    font-size: 1rem;
    color: #444444;
    font-weight: 400;
    text-align: center;
}

#bloquePanelBotones {
	width: 250px;
	margin: 0px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
	background: rgb(122,188,255); /* Old browsers */
	background: -moz-linear-gradient(-45deg, rgba(122,188,255,1) 0%, rgba(96,171,248,1) 48%, rgba(56,122,209,1) 85%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 48%,rgba(56,122,209,1) 85%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 48%,rgba(56,122,209,1) 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#387ad1',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	-webkit-box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.75);
	box-shadow: inset 2px 2px 10px 0px rgba(0,0,0,0.75);
}

#bloquePanelBotones img {
	cursor: pointer;
	float: left;
	width: 40px;
	margin: 5px;
}

#bloquePanelBotones img:hover {
	opacity: 0.8;
}


/** AVISO BLOQUEO IP ──────────────────────────────────────────────────────────────────────────────────────────────── */

.fondoIPB {
    background-color: #000000; 
}

.logoIPB {
 	margin: 30px;
 	padding: 0px;
 	margin-left: auto;
 	margin-right: auto;
}

.textoIPB {
	width: 1000px;
 	margin: 0px;
 	padding: 0px;
 	margin-top: 10px;
 	margin-left: auto;
 	margin-right: auto;
 	margin-bottom: 30px;
    font-size: 1rem;
    color: #ffffff;
    text-align: justify;
    line-height:normal;
}

.textoIPB b {
	color: #ff0000;
}


#logosIPB {
	margin: 0px;
 	padding: 0px;
}

#logosIPB img {
	margin: 30px;
 	padding: 0px;
}


/** MENU ──────────────────────────────────────────────────────────────────────────────────────────────────────────── */

nav#bloqueMenu {
	margin: 10px; 
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: space-between;		
}

#menu {
    width: calc(100% - 150px);
    height: 140px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #aaaaaa;
    overflow: hidden;
}

#menu #tabs {
    padding: 10px;
    padding-bottom: 0px;
    background-color: #000000;
}

#menu #tabs ul {
    float: left;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

#menu #tabs li {
    cursor: pointer;
    margin: 0px;
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 6px;
    float: left;
    background-color: #d0d0d0;
    font-family: 'Open Sans', sans-serif;
    font-size: .7rem;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; 
    border-bottom: 1px solid #000000;
}

#menu #tabs li:hover {
    background-color: #bab9b9;
}

#menu #tabs li.tabOn {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

/**********************************************/

.contenidoTabs {
    display: none;
    height: 95px;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
}

/**********************************************/

.opcionMenu {
    cursor: pointer;
    display: inline-table;
    white-space: nowrap;
    width: 80px;
    margin: 0px;
    margin-top: 15px;
    margin-right: 5px;
}

.opcionMenu:hover img {
    opacity: 0.5;
}

.opcionMenu img {
    width: 32px;
    height: 32px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 5px;
}

.opcionMenu p {
    white-space: normal;
    text-align: center;
    margin: 0px;
    line-height: 1rem; 
    font-size: .8rem;
}

/**********************************************/

#fMenu {
	display: none;
	position: fixed;
	z-index: 9;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

#botonMenuMovil {
	position: fixed;
    top: 7px;
    left: 7px;
    z-index: 2000;
    padding: 1px;
    cursor: pointer;
    background-color: var(--main-color-2);
    border-radius: 5px;
}

#botonMenuMovil .bar1, #botonMenuMovil .bar2, #botonMenuMovil .bar3 {
	margin: 5px;
    width: 25px;
    height: 5px;
    display: block;
    background-color: #ffffff;
	border-radius: 5px;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
#botonMenuMovil .bar1 {
	transform-origin: right top;
}
#botonMenuMovil .bar3 {
	transform-origin: right bottom;
}

#botonMenuMovil .bar:last-child {
    margin-bottom: 0;
}

.menuAbierto .bar2 {
    opacity: 0;
}
.menuAbierto .bar1 {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
}
.menuAbierto .bar3 {
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}

#menuLateralMovil {
	position: fixed;
	z-index: 10;
	top: 0px;
	left: -240px;
	width: 240px;
	height: 100%;
	padding: 55px 5px 0px 5px;
	overflow-y: auto;
	background-color: #000000;
	background-color: rgba(0,0,0,0.8);
	-webkit-transition: left 0.4s ease;
	-moz-transition: left 0.4s ease;
	-ms-transition: left 0.4s ease;
	-o-transition: left 0.4s ease;
	transition: left 0.4s ease;	
}
#menuLateralMovil.open-sidebar {
    left: 0;
}

#menuLateralMovil h2 {
	margin: 0 0 .6rem 0;
	padding: 0px 5px;
	font-size: 1rem;
	font-weight: 300;
	color: #ffffff;
	background-color: #265686;
}

#menuLateralMovil ul {
    margin: 0;
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    list-style: none;
}

#menuLateralMovil ul li {
	cursor: pointer;
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 22px;
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 22px;
	color: #ffffff;
	text-decoration: none;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	background-position: 0px 2px;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;	
}

#menuLateralMovil ul li.submenuM {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 0.7rem;
}


/** MÓDULO DATOS USUARIO ──────────────────────────────────────────────────────────────────────────────────────────── */

#datosUsuario {
    box-sizing: border-box;
	position: relative;
    width: 140px;
    height: 140px;
    padding: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #AAAAAA;
}

#moduloUserLogin {
    margin:0px;
    width: 100%;
}

#moduloUserLogin p {
    text-align: center;
    font-family: monospace;
    font-size: .8rem;
    line-height: .9rem;
    color: #000000;
    margin: 0;
}

#botoneraDatosUsuario {
    margin: 0;
    margin-top: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

.opcionMenu2 {
    cursor: pointer;
    float: left;
    margin: 5px;
}

.opcionMenu2 img {
    display: table;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 5px;
}

.opcionMenu2:hover img {
    opacity: 0.5;
}

.opcionMenu2 p {
    white-space: normal;
    text-align: center;
    margin: 0px;
    line-height: 1.1rem; 
    font-size: .70rem;
}


/** TABLAS ────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.tablaLogs {
    height: 300px;
    overflow: auto;
}

h2.tituloLogs {
    margin-top: 30px;
    padding: 5px;
    background-color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.tablaResultados {
	width: 100%;
}

.tablaResultados a:link, .tablaResultados a:active, .tablaResultados a:visited {
    text-decoration: none;
    color: var(--text-color);
}
.tablaResultados a:hover {
    text-decoration: none;
}

.tablaResultados table {
	width: 100%;
}

.tablaResultados thead th {
    background-color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
	padding: 5px;
}
.tablaResultados thead th a {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}

.tablaResultados thead th.celdaCabecera2 {
    background-color: #666666;
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
	padding: 3px;
}

.tablaResultados thead th img, .tablaResultados tbody td img {
	margin: 0px auto;
	width: 25px;
	max-height: 25px;
	cursor: pointer;	
}
.tablaResultados thead th img {
	float: none !important;
}
.tablaResultados tbody td > img {
	float: none;
}

.filaDatos td {
	position: relative;
	z-index: 1;
}

.botonesTabla div {
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: center;  
}

.menuBotones {
	cursor: pointer;
	display: none;
}

.bloqueBotones {
	position: absolute;
	top: 1px;
	left: 2px;
	display: none;
  	padding: 2px;
	background-color: rgba(0,0,0,0.7);
}

.bloqueBotones img {
	float: left;
    margin: 2px 5px 2px 5px !important;
}

td.botonesTabla img {
    margin: 0px 5px 0px 5px !important;
}

.botonesTabla img.off {
	cursor: default;
	opacity: 0.1;
}

.N {
	cursor: pointer;
}

.tablaResultados tbody td {
    margin: 0px;
    padding: 0px;   
    border-bottom: 1px solid #BEBEBE;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    text-align: center;
    color: var(--text-color);
    padding: 5px;
}

.tablaResultados input[type="checkbox"] {
    width: 30px;
    height: 30px;
}

.filaDatos {
    background-color: #ffffff;
}
.filaDatos:hover {
    background-color: #EEEEEE;
}

.filaDatosBaja {
    background-color: #ffd3d3;
}
.filaDatosBaja:hover {
    background-color: #EEEEEE;
}

.filaDatos_Sub {
    display: none;
    background-color: #ffffff;
    margin-bottom: 10px;
}

.filaDatos_Sub_Ajax {
	padding-bottom: 2rem !important;
}

.filaCargandoDatos  {
    display: none;
}

.filaCargandoDatos p {
    margin: 10px;
    font-weight: 700;
    font-size: 11px;
    color: #5F5F5F;
}

.colgadorSubTabla {
    background-image: url('../imagenes/colgadorSubTabla.svg');
    background-repeat: no-repeat;
}

.subTabla {
    padding-top: 8px;
}

.subTabla img.loading {
	padding: 5px 0px 5px 0px;
	width: auto;
	height: auto;
    margin-left: 0px;
    margin-right: 0px;
}

table .separador {
	height: 20px;
	background-color: #BEBEBE;
}

.menuBotonesSubmenu {
	cursor: pointer;
}


/** PANTALLA ACCESO DENEGADO ──────────────────────────────────────────────────────────────────────────────────────── */

#mensajeAccesoDenegado {
	margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    padding: 25px;
	width: 90%;
	max-width: 600px;
    background-color: #EEEEEE;
    border: 0px;
}
#mensajeAccesoDenegado p {
	margin-bottom: 2rem;
}

#mensajeAccesoDenegado img.iconoError {
    margin-right: 15px;
	max-width: 4rem;
	float:left;
}


/** PANTALLA INICIO ───────────────────────────────────────────────────────────────────────────────────────────────── */

#gridHome {
	margin-top: 3rem;
	padding: 0 2rem;

	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
  	align-items: flex-start;
}

.moduloGridHome {
	margin: 1rem;
}
.moduloGridHome .contenidoVM {
	border: 1px solid #5f5f5f;
    border-top: 0;
}

.moduloPanel{
	width: 35%;
}

.contenidoModulo{
	height: 450px;
}

#gridHome_Calendario {
	width: 40%;
}
#gridHome_Calendario .calendario {
	margin-top: 0;
}

.bloqueFichaRepositorioInicio {
	margin-bottom: 1rem;
	padding: .2rem;

	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.bloqueFichaRepositorioInicio:last-child {
	margin-bottom: 0;
}
.bloqueFichaRepositorioInicio:hover {
	background-color: #eaeaea;
}
.bloqueFichaRepositorioInicio .iconoFichaRepositorioInicio {
    margin: 0px;
    overflow: hidden;
    flex-basis: 13%;
}
.bloqueFichaRepositorioInicio .iconoFichaRepositorioInicio img {
	margin-right: 1rem;
	max-height: 50px;
	cursor: pointer;
}
.bloqueFichaRepositorioInicio .datosFichaRepositorioInicio {
	flex-basis: 87%;
}
.bloqueFichaRepositorioInicio .datosFichaRepositorioInicio h1 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.1rem;
	text-align: left;
}
.bloqueFichaRepositorioInicio .datosFichaRepositorioInicio p {
	margin: 0;
}
.bloqueFichaRepositorioInicio .datosFichaRepositorioInicio p.fecha {
	font-size: .7rem;
}
.bloqueFichaRepositorioInicio .datosFichaRepositorioInicio p.rutaCarpeta {
	font-size: .8rem;
	line-height: .9rem;
}

.bloqueTareaNoTerminada h1{
	color: var(--color-tarea-no-completada);
}
.bloqueTareaNoTerminada p{
	color: var(--color-tarea-no-completada);
}

img.imgNoDocs {
    margin: 0 auto 2rem auto;
	max-width: 150px;
}
p.msgNoDocs {
	margin-bottom: 2rem;
	text-align: center;
}

/*#gridHome_QR_Control {
	margin: 1rem;
	padding: .5rem;
	width: 20%;
	border: 1px solid #5f5f5f;
	border-radius: 3px;

	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
  	align-items: stretch;
}
#gridHome_QR_Control img {
	max-width: 200px;
}
#gridHome_QR_Control .ultimoFichaje {
	padding-top: 2rem;
    padding-left: 1rem;
    border-left: 1px dotted #5f5f5f;
}
#gridHome_QR_Control .ultimoFichaje p {
	text-align: left;
}*/

/***********************************************************/

.enlacesInicioWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.bloqueEnlacesInicio {
    margin: 2rem 2rem 1rem 2rem;
    padding: 0px;
    min-width: 200px;
}

.tituloEnlacesInicio {
    margin: 0px;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #c0c0c0;
}
.tituloEnlacesInicio img {
    margin:0px;
    margin-right: 15px;
    width: 64px;
    float:left;
    border: 0px;
}
.tituloEnlacesInicio h1 {
    margin: 0px;
    margin-top: 1.3rem;
    float: left;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
}

.contenidoEnlacesInicio {
    margin-bottom: 1.5rem;
    
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.enlaceInicio {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    width: 130px;
}
.enlaceInicio img {
    margin: 0px auto;
    width: 96px;
}
.enlaceInicio p {
    margin-top: 10px;
    font-size: .8rem;
    font-weight: 700;
    color: #333333;
    line-height: normal;
    text-align: center;
}

.lineaSeparador {
    width: 850px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #BEBEBE;
}


/** SUBIDA / RECORTE DE FOTOS ─────────────────────────────────────────────────────────────────────────────────────── */

.selectorFotos {
	float: left;
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: flex-start;  
}

.selectorFotos .indicadorFoto {
	width: 35px;
	height: 35px;
	margin-right: 10px;
}

.selectorFotos .eliminarFoto {
	cursor: pointer;
	width: 35px;
	height: 35px;
	margin-right: 10px;
	display: none;
}

.selectorFotos input {
	height: 35px;
	margin-right: 10px;
}

#objArchivoFoto {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

#objArchivoFoto + label {
	display: table;
    height: 25px;
    margin: 0px 10px 0px 0px;
    padding: 0px 7px 0px 7px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7em;
    line-height: 25px;
    letter-spacing: 2px;
    color: var(--main-color-1);
    text-align: center;
    text-transform: uppercase;
	border: 1px solid var(--main-color-1);
	border-radius: 3px;
    background-color: transparent;	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#objArchivoFoto:focus + label, #objArchivoFoto + label:hover {
    color: #ffffff;
	background-color: var(--main-color-1);
}

/**********************************************/

.datosRecorte {
	position: relative;
	float: right;
	display: flex;
	flex-wrap: nowrap;
  	align-items: stretch;
  	justify-content: space-between; 	
	width: 400px;
    margin-bottom: 20px;
    padding: 10px;
	border: 1px solid #d8d8d8;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;	
	border-radius: 10px;	    
	-webkit-box-shadow: inset 0px 0px 20px -2px rgba(178,178,178,0.2); 
	box-shadow: inset 0px 0px 20px -2px rgba(178,178,178,0.2);
	background-color: #effaee;

	display: none;
}

.datosRecorte p {
	font-family: monospace;
	font-size: .8rem;
	color: #666666;
}

.datosRecorte img {
	height: 40px;
}

.datosRecorte div.posicion {
	width: 60px;
}

.datosRecorte div.tam {
	width: 90px;
}

.datosRecorte div.destino {
	width: 160px;
	padding-left: 5px;
	border-left: 1px solid #d8d8d8;
}

.datosRecorte div.destino div {
	display: none;
}

.datosRecorte div.destino div img {
	height: 20px;
	float: left;
	margin-right: 3px;
}

.datosRecorte div.destino div.avisoFoto p {
	font-size: 0.9rem;
	line-height: 20px;
	color: #ff0000;
	font-weight: 700;
}

/**********************************************/

#previoImagenContenedor {
    width: 50%;
    margin: 10px auto 10px auto;
}

#logo {
	display: block;
	margin: 0px auto;
	margin-bottom: 10px !important;
}

#previoImagen {
    width: 100%;
    margin-bottom: 10px !important;
}


/** SELECCIÓN / SUBIDA DE FOTOS ───────────────────────────────────────────────────────────────────────────────────── */

#bloqueSubidaArchivos {
    margin-left: 10px;
    margin-right: 10px;
}

#bloqueSelectorArchivos {
    margin: 10px;
}

.fotoSeleccion {
    width: 12%;
    margin: 1%;
    float: left;
    overflow: hidden;
}

.fotoSeleccion img {
    display: block;
    margin: 0px;
    width: 100%;
    cursor: pointer;
}

.fotoSeleccion p {
    margin: 0px;
    padding: 2px;
    font-size: 0.7rem;
    line-height: 1.2rem;
    background-color: #cccccc;
}


/** AGENDA ────────────────────────────────────────────────────────────────────────────────────────────────────────── */
#flexleyendaAgenda{
	border-radius: 3px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 31px;
}
#leyendaAgenda {
	padding: 1rem;
	background-color: #eaeaea;
	border: 1px solid #dadada;
	border-radius: 3px;

	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;	
  	align-items: stretch;
}
#leyendaAgenda p {
	margin: 0;
	margin-right: 2rem;
	padding-left: .3rem;
	line-height: 1.3rem;
	font-size: .8rem;
    text-align: left;
}

p.leyenda_festivos {
	border-left: 1.3rem solid var(--color-festivo);
}
p.leyenda_vacaciones {
	border-left: 1.3rem solid var(--color-ausencia-vacaciones);
}
p.leyenda_vacaciones_pendiente {
	border-left: 1.3rem solid var(--color-ausencia-vacaciones-ptes);
}
p.leyenda_enfermedad {
	border-left: 1.3rem solid var(--color-ausencia-enfermedad);
}
p.leyenda_paternidad {
	border-left: 1.3rem solid var(--color-ausencia-paternidad);
}
p.leyenda_permiso {
	border-left: 1.3rem solid var(--color-ausencia-permiso-retribuido);
}
p.leyenda_otros {
	border-left: 1.3rem solid var(--color-ausencia-otros);
}

#bloqueInfoAgenda {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
  	align-items: center;
}

.bloqueSelectorAnio {
	padding: 1.5rem;

	display: flex;
	flex-wrap: nowrap;
	justify-content: center;	
  	align-items: center;
}
.bloqueSelectorAnio p {
	margin: 0;
}
.bloqueSelectorAnio p:nth-child(odd) {
	font-size: 2.2rem;
	color: #666666;
	cursor: pointer;
}
.bloqueSelectorAnio p#anioCalendario {
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: 2rem;
	font-weight: bold;
	color: #333333;
}

.bloqueInfoVacaciones {
	padding-left: 1rem;
	border: 1px solid var(--main-color-2);

	display: flex;
	flex-wrap: nowrap;
	justify-content: center;	
  	align-items: center;
}

.diasVacaciones {
	margin: 0 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.diasVacaciones p i {
	color: var(--main-color-2);
}
.diasVacaciones span.contadorVacaciones {
	font-weight: bold;
	font-size: 1.2rem;
}

.botonResumenVacaciones {
    margin-left: 1.5rem;
    padding: 1.1rem;
    background-color: var(--main-color-2);
    cursor: pointer;
}
.botonResumenVacaciones p {
    color: #ffffff;
    font-size: 1.8rem;
}

/***/

#calendarioAnual {
	margin: 0 2rem; 

	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
  	align-items: stretch;
}

#calendarioMensual {
	margin: 0 2rem; 
}

.calendario {
	margin-top: 2rem;

    flex-basis: 23%;
}

.barraCalendario {
	height: 3rem;

	display: flex;
	flex-wrap: wrap;
  	align-items: center;
  	justify-content: space-between;
}

.barraCalendario2 {
	margin-bottom: .5rem;
	border-bottom: 1px solid #666666;
}

.barraCalendario img {
	cursor: pointer;
	margin: 0 .3rem 0 .3rem;
	height: 2rem;
}

.barraCalendario img.off {
	opacity: 0.3;
	cursor: auto;
	margin: 0 .3rem 0 .3rem;
	height: 2rem;
}

.barraCalendario p,.barraCalendario2 p {
    margin: 0px;
    padding: 0px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.barraDiasSemana {
	background-color: #cccccc;
	
	display: flex;
	flex-wrap: nowrap;
  	align-items: center;
  	justify-content: space-around;	    
}

.barraDiasSemana .diaSemana {
	flex-grow: 1;
	flex-basis: 0;

	font-family: 'Open Sans', sans-serif;	
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #333333;
}

.barraSemana {
	background-color: #ffffff;
	
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: stretch;
}

.cal_dia, .cal_dia_vacio {
	margin: .2rem;
	/*height: 2rem;*/
	background-color: #f1f1f1;
	cursor: pointer;

	flex-grow: 1;
	flex-basis: 0;

	display: flex;
	flex-wrap: wrap;
  	align-items: center;
  	justify-content: center;

    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    transition: background-color 0.3s;

    min-height: 50px;
    padding: .5rem;
}
.cal_dia_vacio {
	background-color: transparent;
	cursor: default;
}
.cal_dia:hover {
    background-color: #bcc1c5;
}
.cal_dia > p {
    font-family: 'Open Sans', sans-serif;	
    font-size: 0.8em;
    font-weight: 400;
    text-align: center;
    color: #333333;
    
    width: 100%;
    margin: 0;
}

.cal_FinSemana {
	background-color: #ffd69a !important;
}

.cal_DiaMarcado {
    background-color: #49a0ae !important;
}
.cal_DiaMarcado p {
    color: #ffffff;
}

.cal_hoy {
    justify-content: center !important;
}
.cal_hoy > p {
    margin-bottom: 0.1rem !important;
    padding: 0.2rem;
    width: 25px !important;
    border-radius: 200px;
    background-color: var(--main-color-1);
    text-align: center !important;
    color: #ffffff;
}

.cal_DiaEsperando {
    background-color: #e9e051 !important;
}
.cal_DiaEsperando p.descripcionEventoDiario {
    font-size: .7rem;
    line-height: .8rem;
}

.cal_DiaFestivo {
    background-color: var(--color-festivo) !important;
}
.cal_DiaFestivo p {
	color: #FFFFFF;
}
.cal_DiaFestivo p.descripcionEventoDiario {
    font-size: .7rem;
    line-height: .8rem;
}

.cal_EventoDiario {
    background-color: var(--color-evento-diario) !important;
}
.cal_EventoDiario p {
	color: #FFFFFF;
}
.cal_EventoDiario p.descripcionEventoDiario {
    font-size: .7rem;
    line-height: .8rem;
}

.cal_DiaVacaciones {
	background-color: var(--color-ausencia-vacaciones) !important;
}
.cal_DiaVacaciones_Pendiente {
	background-color: var(--color-ausencia-vacaciones-ptes) !important;
}
.cal_DiaVacaciones p, .cal_DiaVacaciones_Pendiente p {
	color: #FFFFFF;
}
.cal_DiaEnfermedad {
	background-color: var(--color-ausencia-enfermedad) !important;
}
.cal_DiaEnfermedad p {
	color: #ffffff;
}
.cal_DiaPaternidad {
	background-color: var(--color-ausencia-paternidad) !important;
}
.cal_DiaPermiso {
	background-color: var(--color-ausencia-permiso-retribuido) !important;
}
.cal_DiaPermiso p {
	color: #ffffff;
}
.cal_DiaOtros {
	background-color: var(--color-ausencia-otros) !important;
}
.cal_DiaOtros p {
	color: #ffffff;
}
.cal_TareaPendiente {
	background-color: var(--color-tarea-pendiente) !important;
}
.cal_TareaPendiente p {
	color: #000000;
}
h1.cal_TareaPendiente{
	color: #000000 !important;
}
.cal_TareaCompletada {
	background-color: var(--color-tarea-completada) !important;
}
.cal_TareaCompletada p {
	color: #ffffff;
}
.cal_TareaNoCompletada {
	background-color: var(--color-tarea-no-completada) !important;
}
.cal_TareaNoCompletada p {
	color: #ffffff;
}

#calendarioMensual .cal_dia, #calendarioMensual .cal_dia_vacio {
	height: auto;
	min-height: 6rem;
	align-items: flex-start !important;
}
#calendarioMensual .cal_dia {
    position: relative;
}
#calendarioMensual .cal_dia > p {
    margin-bottom: .5rem;
	text-align: right;
    width: 95%;
}
#calendarioMensual .cal_dia .contenidoDiaCalendario {
	width: 95%;
}
#calendarioMensual .cal_hoy {
    justify-content: flex-end !important;
}

.pastillaEventoAgenda {
	position: relative;
	margin-bottom: .2rem;
	padding: .2rem;
	padding-right: 1rem;
	border-radius: 3px;
}
.pastillaEventoAgenda:hover {
	border: 2px solid #FFFFFF !important;
}
.cal_DiaFestivo .pastillaEventoAgenda:hover {
    border: 0 !important;
}
.cal_DiaFestivo .pastillaTarea:hover {
    border: 2px solid #FFFFFF !important;
}
.pastillaEventoDiario:hover {
    border: 0 !important;
}
.pastillaEventoAgenda p {
	font-size: .7rem;
	line-height: .8rem;
	font-weight: 400 !important;
    text-align: left;
}
.pastillaEventoAgenda img {
	position: absolute;
	right: .1rem;
	top: .2rem;
	max-width: 12px;
}

.pastillaEventoAgenda.cal_DiaVacaciones {
	border: 2px solid var(--color-ausencia-vacaciones);
}
.pastillaEventoAgenda.cal_DiaVacaciones_Pendiente {
	border: 2px solid var(--color-ausencia-vacaciones-ptes) ;
}
.pastillaEventoAgenda.cal_DiaEnfermedad {
	border: 2px solid var(--color-ausencia-enfermedad) ;
}
.pastillaEventoAgenda.cal_DiaPaternidad {
	border: 2px solid var(--color-ausencia-paternidad) ;
}
.pastillaEventoAgenda.cal_DiaPermiso {
	border: 2px solid var(--color-ausencia-permiso-retribuido) ;
}
.pastillaEventoAgenda.cal_DiaOtros {
	border: 2px solid var(--color-ausencia-otros) ;
}

/* RESERVA VEHICULOS*/
.pastillaEventoAgenda.cal_DiaReservaFinalizada {
	border: 2px solid var(--color-tarea-completada);
	background-color: var(--color-tarea-completada) !important;
}
.pastillaEventoAgenda.cal_DiaReservaEnCurso {
	border: 2px solid var(--color-evento-diario);
	background-color: var(--color-evento-diario) !important;
}
.pastillaEventoAgenda.cal_DiaReservaNoEmpleado {
	border: 2px solid var(--color-vehiculo-no-propio);
	background-color: var(--color-vehiculo-no-propio) !important;
}

/***/

.pastillaRedondaEventoAgenda {
	margin: .2rem;
	border-radius: 100px;
    float: left;
}
.pastillaRedondaEventoAgenda:hover {
	border: 3px solid #FFFFFF !important;
}
.cal_DiaFestivo .pastillaRedondaEventoAgenda:hover {
    border: 0 !important;
}
.pastillaRedondaEventoAgenda img {
	max-width: 42px;
    border-radius: 100px;
}
.pastillaRedondaEventoAgenda.cal_DiaVacaciones {
	border: 3px solid var(--color-ausencia-vacaciones);
    background-color: transparent !important;
}
.pastillaRedondaEventoAgenda.cal_DiaVacaciones_Pendiente {
	border: 3px solid var(--color-ausencia-vacaciones-ptes);
    background-color: transparent !important;
}
.pastillaRedondaEventoAgenda.cal_DiaEnfermedad {
	border: 3px solid var(--color-ausencia-enfermedad);
    background-color: transparent !important;
}
.pastillaRedondaEventoAgenda.cal_DiaPaternidad {
	border: 3px solid var(--color-ausencia-paternidad);
    background-color: transparent !important;
}
.pastillaRedondaEventoAgenda.cal_DiaPermiso {
	border: 3px solid var(--color-ausencia-permiso-retribuido);
    background-color: transparent !important;
}
.pastillaRedondaEventoAgenda.cal_DiaOtros {
	border: 3px solid var(--color-ausencia-otros);
    background-color: transparent !important;
}

/***/

.bloquePinCumpleanios {
    position: absolute;
    top: .5rem;
    left: .5rem;

    display: flex;
	flex-wrap: wrap;
  	align-items: flex-start;
  	justify-content: flex-start;
}
.pinCumpleanios {
    margin-right: .5rem;
}
.pinCumpleanios img {
    max-width: 1.3rem;
}

img.fotoCumpleanios {
    margin-right: 2rem;
    margin-bottom: 1rem;
    float: left;
    max-width: 100px;
    border-radius: 100px;
}

h1.tituloFichaCumpleanios {
    text-align: right;
}

/***/

.fichaEvento h1 {
	margin: 0 0 1rem 0;
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.fichaEvento p {
	margin: .5rem 0;
}

.botonesFichaTarea{
	display: flex;
	justify-content: space-between;
}
.botonesFichaTarea img{
	width: 25px;
	margin-right: 1rem;
	cursor: pointer;
}
.botonesFichaTarea .boton{
	margin: 0px !important;
}

.bloqueTodoDia{
	display: flex;
    align-items: center;
}
.bloqueTodoDia #chkTodoDia{
	margin-right: 0.5rem;
}

.filaTareas{
	cursor: default;
	margin-bottom: 0;
}

.filaTareas h1:hover {
	cursor: pointer;
	color: #a50b0b;
}
.filaTareas .centroTareas:hover {
	cursor: pointer;
	color: #a50b0b;
	font-weight: bold;
}
/**********************************************/

input[name="txtTag"], input[name="txtEmail"] {
	text-transform: lowercase;
}

.tag {
	cursor: pointer;
	display: inline-table;
	margin: .5rem .5rem .3rem 0;
	padding: .3rem .5rem .3rem .5rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	color: #ffffff;
	background-color: #6998b7;
	border-radius: 5px;
 	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;	
}
.tag:hover {
	color: transparent;
    background-image: url("../imagenes/eliminar.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.tagNoEdit {
	margin: .2rem .5rem 0 0;
	cursor: default !important;
}
.tagNoEdit:hover {
	color: #ffffff !important;
	background-image: none !important;
}

.mas {
	cursor: pointer;
	height: 26px;
	margin-bottom: 10px;
}
.mas:hover {
	opacity: 0.6;
}

.buscadorCalendario{
	width: 25%;
	margin-right: 1rem;
    /* margin-bottom: 25px; */
    padding: 10px;
    border: 2px solid #d8d8d8;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.campoBuscadorAgenda{
	display: flex;
    justify-content: flex-start;
    align-items: center;
}

/** DIAS FESTIVOS ─────────────────────────────────────────────────────────────────────────────────────────────────── */

.calendarioEventosDiarios {
	margin: 0 auto;
	width: 50%;
}


/** USUARIOS ──────────────────────────────────────────────────────────────────────────────────────────────────────── */

#bLogin {
	width: calc(25% - 20px);
}

#bPassword {
	width: calc(25% - 20px);
}

#bConfirmacionPassword {
	width: calc(25% - 20px);
}

#bPermisos {
	width: calc(25% - 20px);
}

#bPermisos select {
	width: 100%;
}


/** SECCIONES ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

#bIdSeccion {
	width: 100px;
}

#bBSSeciones {
	width: 200px;
}

#bBSSeciones select {
	width: 100%;
}

#bNombreSeccion {
	width: 80%;
}


/** EMPLEADOS ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueEmpleados {
	margin-top: 3rem;

	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.fichaEmpleado {
	position: relative;
	margin: 1rem;
	margin-bottom: 3rem;
	padding: 1rem;
	width: 23%;
	border: 1px solid #5F5F5F;
	border-radius: 3px;
	background-color: #f6f6f6;
	flex-basis: 23%;
}

.fichaEmpleado img.fotoEmpleado {
	position: absolute;
	top: -20%;
    left: calc(100% - 60%);
	margin: 0 auto;
	width: 20%;
	border: 1px solid #5F5F5F;
	border-radius: 100px;
}

.fichaEmpleado h1 {
	margin: 0;
	margin-top: 1.5rem;
	font-size: 1rem;
	text-align: center;
	line-height: 1.2rem;
}

.fichaEmpleado p {
	margin-bottom: .4rem;
	text-align: left;
}

.fichaEmpleado p.cargo {
	margin-bottom: 1rem;
	text-align: center;
	font-style: italic;
	color: var(--main-color-2);
}

.fichaEmpleado p.email {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.fichaEmpleado .botoneraEmpleado {
	position: absolute;
	bottom: .5rem;
	right: .5rem;
}
.fichaEmpleado .botoneraEmpleado i {
	margin-left: .3rem;
	color: #a0a0a0;
	cursor: pointer;
}
.fichaEmpleado .botoneraEmpleado i:hover {
	color: #000000;
}
.fichaEmpleado .botoneraEmpleado i.botonSubBotonera {
	display: none;
}
.fichaEmpleado .botoneraEmpleado i.botonCerrarSubMenu {
	color: var(--main-color-1);
}
.fichaEmpleado .botoneraEmpleado i.botonCerrarSubMenu:hover {
	color: var(--main-color-1);
}

/**********************/

.flexEmpleadosMto {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

#bloqueFotoEmpleado {
	flex-basis: 25%;
}
#bloqueInformacionEmpleado {
	flex-basis: 73%;
}
#bloqueJornadaEmpleado {
	flex-basis: 25%;
}
#bloqueInformacionEmpresa {
	flex-basis: 73%;
}


/** REPOSITORIO ───────────────────────────────────────────────────────────────────────────────────────────────────── */

#breadcrumbsRepositorio {
	margin-bottom: 1rem;

	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.breadCrumb {
	position: relative;
	margin: .2rem;
	padding: .2rem .5rem .2rem .7rem;
	height: 25px;
	background-color: #b3b3b3;
}
.breadCrumb:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 25px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 5px solid #b3b3b3;
}
.breadCrumb:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 0;
    height: 25px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 5px solid #ffffff;
}
.breadCrumb p {
	margin: 0;
	color: #ffffff;
}

#contenidoRepositorio {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

#contenidoRepositorioFormacionPresencial{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
	width: 100%;
}

.bloqueFichaRepositorio {
    margin: 0 1.5rem 1.5rem 1.5rem;
	padding: 0px;
	max-width: 135px;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.botoneraFichaRepositorio {
    margin:0px;
	margin-top: .5rem;
    margin-right: 0.3rem;
    max-width: 30px;
}
.botoneraFichaRepositorio img {
    margin: 0px;
	margin-bottom: 8px;
	width: 25px;
	max-height: 25px;
	cursor: pointer;
}
.botoneraFichaRepositorio .botonSubBotonera{
	display: none;
}
.iconoFichaRepositorio {
	margin: 0px;
	overflow: hidden;
}
.iconoFichaRepositorio img {
    margin: 0 auto;
	max-height: 100px;
	cursor: pointer;
}
.iconoFichaRepositorio h1 {
    margin: 0px;
    line-height: 1rem;
    text-align: center;
    font-size: 0.8rem;
}

/****************************************/

#estadoSubidaMasiva {
    margin: 0 auto;
    width: 95%;
    height: 200px;
    background-color: #f0f0f0;
    border: 1px solid #c0c0c0;
    overflow-y: scroll;
    display: none;
}


/** CONTROL HORARIO ───────────────────────────────────────────────────────────────────────────────────────────────── */

.buscadorControlHorario {
	justify-content: space-between !important;
}
.contenidoBuscadorControlHorario {
	flex-basis: 90%;

	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
img.reload {
    margin-top: 1rem;
    margin-left: 1rem;
    max-width: 30px;
    cursor: pointer;
}
.buscadorControlHorario > img.qrcode {
	max-width: 60px;
	float: right;
	cursor: pointer;

	flex-basis: 10%;
}

.celdaFestivo {
	background-color: var(--color-festivo) !important;
	color: #ffffff !important;
}

.celdaAusencia {
	background-color: var(--color-ausencia-otros) !important;
	color: #ffffff !important;
}

.celdaFinde {
	background-color: #ffd69a !important;
	color: #000000 !important;
}

/******************************/

.tablaControlHorario {
	margin: 0 auto;
}

.filaDia {
	margin: .5rem 0;
    border: 1px dashed #aeaeae;

	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.filaAusencia {
	background-color: var(--color-ausencia-otros) !important;
}
.filaAusencia p {
	color: #ffffff !important;
}

.filaFestivo,
.filaFestivo .celdaFinde {
	background-color: var(--color-festivo) !important;
}
.filaFestivo p {
	color: #ffffff !important;
}
.filaVacaciones {
	background-color: var(--color-ausencia-vacaciones) !important;
}
.filaVacaciones p {
	color: #ffffff !important;
}
.filaEnfermedad {
	background-color: var(--color-ausencia-enfermedad) !important;
}
.filaEnfermedad p {
	color: #ffffff !important;
}
.filaPaternidad {
	background-color: var(--color-ausencia-paternidad) !important;
}
.filaPaternidad p {
	color: #ffffff !important;
}
.filaPermiso {
	background-color: var(--color-ausencia-permiso-retribuido) !important;
}
.filaPermiso p {
	color: #ffffff !important;
}

.celdaControlHorario  {
	padding: .5rem;
}
.celdaControlHorario p {
	margin: 0;
	text-align: center;
}

.celdaDia {
	flex-basis: 15%;

	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.celdaFichajes {
	flex-basis: 60%;

	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.celdaFichajes p {
	width: 100%;
}
.celdaGeolocation {
    flex-basis: 5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.celdaGeolocation img {
    cursor: pointer;
}
.celdaTotal {
	flex-basis: 20%;

	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.pastillaFichaje {
	margin: .2rem 1rem .2rem 0;
    padding: .3rem;
    border: 1px solid #aeaeae;
    border-radius: 8px;
}
.pastillaFichaje p img {
	margin-left: .3rem;
	max-width: 16px;
	float: right;
}

.pastillaIntervaloFichaje {
	position: relative;
	background-color: #f1f1f1;
}
.pastillaIntervaloFichaje:hover {
	background-color: #aeaeae;
}
.pastillaIntervaloFichaje p {
    color: var(--text-color) !important;
}
.pastillaIntervaloFichaje:hover p {
	color: #aeaeae !important;
}
.pastillaIntervaloFichaje:hover p img {
	visibility: hidden;
}

.pastillaIntervaloFichaje > .botoneraPastillaFichaje {
	position: absolute;
	top: 3px;
	margin: 0 auto;
	width: 90%;
	display: none;
}
.pastillaIntervaloFichaje > .botoneraPastillaFichaje > .contenidoBotoneraPastillaFichaje {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.pastillaIntervaloFichaje > .botoneraPastillaFichaje > .contenidoBotoneraPastillaFichaje > img {
	max-width: 20px;;
}
.pastillaIntervaloFichaje:hover > .botoneraPastillaFichaje {
	display: block;
}
.pastillaIntervaloFichaje:hover > .botoneraPastillaFichaje > .contenidoBotoneraPastillaFichaje > img {
	cursor: pointer;
}

.pastillaAusencia {
	background-color: var(--color-ausencia-otros) !important;
}
.pastillaAusencia p {
	color: #ffffff;
}

.filaTotalesMes {
	margin: .5rem 0;
    background-color: #556180;
}
.filaTotalesMes .celdaTotalesMes p {
	text-align: right !important;
	color: #FFFFFF !important;
}
.filaTotalesMes .celdaTotalesMes p span {
	font-weight: 700;
	font-size: 1rem;
}

.filaTotalesSemana {
    background-color: #f1f1f1;
}
.celdaTotalesSemana p {
    font-size: 0.7rem;
    text-align: right;
    font-style: italic;
}

.diferenciaHorasNegativa {
	color: #e2696e !important;
}
.diferenciaHorasPositiva {
	color: #7fe077 !important;
}

/******************************/

#bocadilloGeolocation {
    position: absolute;
    top: 0;
    left: 665px;
    padding: 1rem;
    width: 150px;
    min-height: 100px;
    background-color: #999999;
    border-radius: 10px;
    display: none;
}

.contenidoBocadilloGeolocation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.contenidoBocadilloGeolocation:before {
    content:"";
    position: absolute;
    top: 10px;
    left: 145px;
    width: 0;
    height: 0;
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    border-left: 15px solid #999999;
}

img.cerrarBocadillo {
    position: absolute;
    top: .4rem;
    left: .4rem;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/******************************/

.fotoFichaje {
	margin: 2rem auto;
	max-width: 60%;
	overflow: hidden;
}
.fotoFichaje img {
	width: 100%;
    border: 1px solid #f1f1f1;
	border-radius: 200px;
}
.fotoFichaje p {
	margin: 1rem auto 0 auto;
	text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3rem;
}

p.ultimoFichaje {
	text-align: center;
}

.botoneraFichajes {
	margin-top: 2rem;
}
.botoneraFichajes > p {
	text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3rem;
}

.botoneraFichajes .contenidoBotoneraFichajes {
    margin-top: 1rem;
    
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.botoneraFichajes .contenidoBotoneraFichajes .boton {
	flex-basis: 45%;
}

/******************************/

.contenedorBolsaHoras {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.bloqueSumaHoras {
    padding: 1rem;
    background-color: #d0d0d0;
    border: 1px solid #c8c8c8;
    border-radius: 50px;
    float: right;

    flex-basis: 30%;
}

p.horasTrabajadas {
    margin: 2rem;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.4rem;
}
p.horasDiferencia {
    margin: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.2rem;
}

img.imgWanted {
    max-width: 350px;

    flex-basis: 30%;
}


/** COLABORADORES ─────────────────────────────────────────────────────────────────────────────────────────────────── */

.flexComisiones {
    align-items: stretch !important;
}

.bloqueSeccionEmpresa {
    margin: 0 1rem 1rem 1rem;
    padding: .5rem 1rem;
    border: 2px dashed #e1e1e1;
}
.bloqueSeccionEmpresa h1 {
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--main-color-1);
}

.bloqueServicioEmpresa p {
    line-height: 35px;
    text-align: left;
}

/** INFORMES ──────────────────────────────────────────────────────────────────────────────────────────────────────── */

.botoneraInformes {
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: 60%;
    
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

#numRegistrosInforme {
    margin:0px;
    margin-bottom: 10px;
    border-bottom: 1px solid #BEBEBE;
    height: 20px;
}
#numRegistrosInforme p {
    margin: 0px;
    margin-left: 5px;
    margin-right: 20px;
    padding: 0px;
    color: #000000;
    float:left;
}
#numRegistrosInforme img {
    float: left;
    margin:0px;
    margin-top: 2px;
}

.columnaInforme {
    margin:0px;
    margin-bottom: 20px;
    width: 200px;
    float:left;
}
.columnaInforme input {
    margin: 0px;
    margin-right: 5px;
    float: left;
}
.columnaInforme p {
    margin: 0px;
    margin-top: -3px;
    float: left;
}


/** CLIENTES ──────────────────────────────────────────────────────────────────────────────────────────────────────── */

p.tipoCentro {
    margin-bottom: .5rem;
    font-style: italic;
    color: #ef0000;
}

.filaBaja {
    background-color: #e9a4a4;
}
.filaBaja td {
    color: #666666 !important;
}

.contenedorComerciales {
    margin-bottom: 1rem;
}

/******************************/

.bloqueBaja {
    width: 100%;
    display: none;
}

/******************************/

.fichaCentro {
	margin-bottom: 2rem;
}
.fichaCentro > h1 {
	margin: 0 0 .2rem 0;
	font-size: 1.6rem;
	line-height: 1.5rem;
	text-align: left;
}
.fichaCentro h1 span {
	font-size: .9rem;
	color: #265686;
	font-weight: normal;
	cursor: pointer;
}

.datosFichaCentro {
	margin-top: 2rem;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.botoneraBloquesCentro {
	margin: 1.5rem auto;
	width: 100%;

	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.botoneraBloquesCentro > div {
	margin: 0 1.5rem;
	padding: .5rem;
	width: 125px;
	border: 2px dotted #ffffff;
}
.botoneraBloquesCentro > div img {
	margin: 0 auto;
	margin-bottom: .5rem;
	max-width: 50px;
	cursor: pointer;
}
.botoneraBloquesCentro > div p {
	text-align: center;
	font-size: .8rem;
	font-weight: 600;
	line-height: .9rem;
}
.botoneraBloquesCentro > div:hover {
	background-color: #f1f1f1;
    border: 2px dotted #e3e3e3;
}

.bloqueDatosFichaCentro {
	position: relative;
	margin: 0 1rem;
	padding: 1rem;
	border: 2px solid #d8d8d8;
}
.bloqueDatosFichaCentro_1 {
	flex-basis: 30%;
}
.bloqueDatosFichaCentro_2 {
	flex-basis: 70%;
}
.bloqueDatosFichaCentro_3 {
	flex-basis: 100%;
}
.bloqueDatosFichaCentro_4 {
	flex-basis: 100%;
}

.bloqueDatosFichaCentro header {
	margin-bottom: .5rem;
}

.bloqueDatosFichaCentro img.iconoTitulo {
	margin-right: .5rem;
	float: left;
	max-width: 30px;
}

.bloqueDatosVentanaMover{
	display: inline-flex;
    align-items: center;
	background-color: #ffffff;
	cursor: pointer;
}

.bloqueDatosVentanaMover:hover {
    background-color: #EEEEEE;
}

.nombreDocumentoVentana{
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 1rem;
    margin-bottom: 1rem;
}

.nombreDocumentoVentana img{
	width: 30px;
    margin: 0 0.5rem;
}
.bloqueDatosVentanaMover img.iconoTitulo {
	margin-right: .5rem;
	max-width: 30px;
}

#contenidoDocumentosCentro{
	display: flex;
    flex-direction: column;
}

.bloqueDatosFichaCentro header p {
	line-height: 30px;
    text-align: left;
}

#bloqueSeccionFichaCentros img.loadingFC {
	max-width: 150px;
    float: none;
	margin: 1rem auto;
	display: none;
}

.datosContactoCentro {
	margin-top: 1rem;
}
.datosContactoCentro > div {
	margin-top: .3rem;
}
.datosContactoCentro p {
	line-height: 30px;
	
}
.datosContactoCentro p a {
	text-decoration: underline;
}
.datosContactoCentro p.email, .datosContactoCentro p.web {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.flexDatosEmpresa {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}
.flexDatosEmpresa > div {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 2px dashed #d8d8d8;

	flex-basis: 30%;
}
.flexDatosEmpresa > div:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;

	flex-basis: 70%;
}

.bloqueDatosFichaCentro_3 .flexDatosEmpresa > div:first-child {
	flex-basis: 30%;
}

.bloqueDatosCentroBaja {
    border: 2px solid #c20e0e;
    background: #e4abab;
}

/******************************/

.flexCentrosMto {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

#flexCentrosMto_1 {
	flex-basis: 73%;
}
#flexCentrosMto_2 {
	flex-basis: 25%;
}
#flexCentrosMto_3 {
	flex-basis: 49%;
}

#bloqueConvenios {
    height: 93%;
}
#bloqueFotoCentro {
    height: 93%;
}

/******************************/

#tablaDocumentos, #tablaFacturas {
    margin-top: 1.5rem;
}

.bloqueDatosFichaCentro .bloqueFichaRepositorio {
    margin-left: 0rem;
    max-width: 130px;
}

.bloqueDatosFichaCentro .iconoFichaRepositorio {
    position: relative;
}
.bloqueDatosFichaCentro .iconoFichaRepositorio img.iconoArchivoDocumento {
    margin-right: 0 !important;
    float: none;
    max-width: none;
    max-height: 85px;
    cursor: pointer;
}
.bloqueDatosFichaCentro .iconoFichaRepositorio img.estado {
    position: absolute;
    right: 2px;
    top: 63px;
    margin-right: 0;
    max-width: 20px;
}

.bNuevoDocumentoCentro {
    position: absolute; 
    top: 1rem; 
    right: 1rem;
}

.bNuevaCarpetaCentro {
    position: absolute; 
    top: 1rem; 
    right: 15rem;
}

.bNuevoPresupuestoETT {
    position: absolute; 
    top: 1rem; 
    right: 15rem;
}

/******************************/

.textoCobro {
    font-size: .8rem;
    font-style: italic;
}

.tablaResultadosCuotas {
	width: 75% !important;
}

/******************************/

.trabajoDesactivado {
	background-color: #ffb0b0;
}

.descripcionTrabajo {
	font-size: .8rem;
	line-height: .9rem;
	color: #666666;
}

/******************************/

#selectorTarifasArchivadas {
    display: none;
    float: right;
}

/** PRESUPUESTOS ──────────────────────────────────────────────────────────────────────────────────────────────────── */

#bloqueServiciosPresupuesto {
    margin-top: 1rem;
}

.bloqueConceptoPresupuesto {
    margin-top: .5rem;
    padding: .5rem 0 0 0;
    border-top: 2px dashed #bbbbbb;
}

.bloqueConceptoPresupuesto p.numConcepto {
    margin-top: 1.6rem;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 2rem;
    color: #eb8934;
}

.bloqueConceptoPresupuesto img {
    margin-top: 1rem;
    margin-left: 1.5rem;
    max-width: 35px;
    cursor: pointer;
}


/** FACTURAS ──────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueTotalConcepto {
    margin-top: 1rem;
    padding: .5rem;
    width: 100%;
    border: 1px solid var(--main-color-2);
}
.bloqueTotalConcepto p {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.bloqueTotalesFactura {
    margin: 1rem 0;
    padding: .5rem 0;
    float: right;
    border: 1px solid #BEBEBE;
    background-color: #f2f2f2;
}
.bloqueTotalesFactura .flex {
    justify-content: flex-end;
}
.bloqueTotalesFactura p {
    margin: .2rem 1rem;
}
.bloqueTotalesFactura p i {
    color: var(--main-color-1);
}

/******************************/

.bloqueCobro {
    margin: 0 1rem 1rem 1rem;
    padding: .5rem;
    border: 2px dashed #c0c0c0;

    flex-basis: 30%;
}
.bloqueCobro > img {
    margin-bottom: .5rem;
}


/** FACTURAS SOPORTADAS ───────────────────────────────────────────────────────────────────────────────────────────── */

#totalFactura {
    margin-left: .5rem;
    padding: .5rem;
}
#totalFactura p {
    margin-bottom: .5rem;
    padding-bottom: .5rem;
    font-size: 1rem;
    text-align: left;
    border-bottom: 1px dashed #c0c0c0;
}
#totalFactura p span {
    font-size: 1rem;
    font-weight: bold;
}
#totalFactura p:last-child span {
    font-size: 1.1rem;
    color: var(--main-color-1);
}

.bloqueTotalesFacturas {
    box-sizing: border-box;
    position: fixed;
    right: 2.5%;
    bottom: 3rem;
    margin: 0 auto;
    padding: 0.7rem 1rem;
    min-height: 2.5rem;
    background-color: rgb(221 228 235);
    border: 1px solid #d46301;
    z-index: 99;
}

.flexTotalesSoportadas {
    justify-content: flex-end !important;
}

.bloqueTotalesFacturas .flex p {
    margin-right: 1.5rem;
}


/** GESTIÓN DE CUOTAS ─────────────────────────────────────────────────────────────────────────────────────────────── */

p.textoObservacionesFacturacion {
    margin-bottom: 1.5rem;
}
p.textoObservacionesFacturacion span {
    font-style: italic;
}


/** INFORME DE REMESAS ────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueContadorSeleccionados {
    box-sizing: border-box;
    position: fixed;
    left: 10%;
    bottom: 2rem;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    width: 80%;
    min-height: 2.5rem;
    background-color: rgb(221 228 235);
    border: 1px solid #d46301;
    z-index: 99;

    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.bloqueContadorSeleccionados > p {
    margin: 0;
    font-size: .9rem;
    font-weight: bold;
}

.bloqueContadorSeleccionados > .botonera {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
.bloqueContadorSeleccionados > .botonera .botonRemesa {
    margin-left: 1rem;
}

.bloqueContadorSeleccionados .bloqueCampoFormulario {
    margin-bottom: 0px;
}

.filaDatosFactura {
    cursor: pointer;
}


/** REGISTRO SALARIAL ─────────────────────────────────────────────────────────────────────────────────────────────── */

.tablaResultadosRegistroSalarial {
    margin: 0 auto;
    margin-bottom: 2.5rem;
    width: 55%;
}

/****************/

#bloqueMedia {
    display: none;
}

.botonInformeRegistroSalarial {
    margin:0; 
    margin-left:3rem; 
    margin-top: 1.3rem;
}

.filaCategoria {
    background-color: #d0d0d0;
    text-align: left !important;

}

.brechaSalarial {
    background-color: #bd3636;
    color: #ffffff !important;
}

/** FORMADORES ──────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosFichaFormador_1 {
    flex-basis: 100%;

}
.bloqueDatosFichaFormador_2 {
	flex-basis: 80%;
}

.bloqueBotonCalendarioFicha{
	display: flex;
    align-items: center;
    justify-content: center;
}
.bloqueFichaFormaciones header p{
	line-height: 15px !important;
	margin-bottom: 1rem;
}
.centrosFicichaFormaciones header{
	display: flex;
	margin: 1rem 0;
}
.rojo{
	color: red;
}
.botonFichaFormador{
	margin: 0;
    margin-left: 1rem;
    padding: 0px 10px 0px 10px;
    height: 25px;
    font-size: .8rem !important;
    line-height: 25px;
	position: absolute;
    top: 1rem;
    right: 10rem;
}
.botonFichaFormador_1{
	margin: 0;
    margin-left: 1rem;
    padding: 0px 10px 0px 10px;
    height: 25px;
    font-size: .8rem !important;
    line-height: 25px;
	position: absolute;
	top: 1rem;
    right: 1rem;
}

.flexDatosFormadores {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
/* .flexDatosFormadores > div {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 2px dashed #d8d8d8;

	flex-basis: 50%;
}
.flexDatosFormadores > div:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;

	flex-basis: 50%;
} */
.flexDatosFormadores > div:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    flex-basis: 45%;
}
.flexDatosFormadores > div {
	/* margin-left: 1rem; */
	padding-left: 1rem;
	border-left: 2px dashed #d8d8d8;
	flex-basis: 45%;
	/* margin-top: 1rem; */
}

.flexBotoneraFichaFormador{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

/** GESTIÓN PROYECTORES ───────────────────────────────────────────────────────────────────────────────────────────── */
.bloqueFechasPrestamo{	
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}


/** TRABAJADORES ──────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosFichaTrabajador_1 {
    flex-basis: 30%;
}
.bloqueDatosFichaTrabajador_2 {
    flex-basis: 50%;
}
.bloqueDatosFichaTrabajador_3 {
    flex-basis: 20%;
	display: flex;
    align-items: center;
}
.bloqueDatosFichaTrabajador_3 img {
    margin: 0 auto;
    max-width: 150px;
}
.bloqueDatosFichaTrabajador_4 {
	flex-basis: 50%;
}


/** CONTRATACIONES ────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueSelectorCentroTrabajador {
    flex-basis: 49%;
}

.bloqueDiasSemanaContratacion .cl-switch {
    margin-right: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.bloqueDatosFichaContratacion > p {
    text-align: left;
}

.itemFichaContratacion {
    color: var(--main-color-1);
}

.filaInactivo {
    background-color: #dadada;
}

.avisoTrabajadorActivo {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #c20e0e;
    border-radius: 8px;
}
.avisoTrabajadorActivo p {
    margin: 0;
    font-size: .8rem;
    color: #c20e0e;
    text-align: center;
}

.datoSedeContratacion {
    font-size: .8rem;
    font-style: italic;
}


/** CALCULADORA DE TARIFAS ETT ────────────────────────────────────────────────────────────────────────────────────── */

.bloqueAvisoConvenio {
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: .5rem 1rem;
    border: 1px solid var(--text-color-destacado);
    border-radius: 10px;
    width: 95%;
}

#bloqueCategoriasCalculadora .cabeceraCategoriaConvenio {
    margin: 0 0 1rem 0;
    padding: .3rem 1rem;
    background-color: var(--main-color-2);
    display: table;
}
#bloqueCategoriasCalculadora .cabeceraCategoriaConvenio h2 {
    margin: 0;
    font-size: 1rem;
}

#bloqueCategoriasCalculadora .datosCategoriaConvenio {
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
    display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
}

#bloqueCategoriasCalculadora .datosCategoriaConvenio > div {
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 2px dashed #d8d8d8;
}
#bloqueCategoriasCalculadora .datosCategoriaConvenio > div:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

#bloqueCategoriasCalculadora .tablaResultadosCategoriaConvenio {
    margin: 0 0 3rem 0;
}
.tablaResultadosCategoriaConvenio thead th {
    font-size: 0.8rem;
}


#bloqueDatosAcademicos {
    flex-basis: 40%;
}
#bloqueOtraInformacion {
    flex-basis: 58%;
}


/** PROCESOS DE SELECCION ─────────────────────────────────────────────────────────────────────────────────────────── */

.pizarraProcesos {
    margin: 2rem auto 0 auto;
    padding: 1rem;
    width: clamp(450px, 60%, 70%);
    min-height: 400px;
    border-radius: 10px;
    border: #B78240 solid 13px;
    box-shadow: inset 0 -4px 1px rgba(0, 0, 0, 0.3), -1px -1px 1px rgba(0, 0, 0, 0.2), 0 2px 0 rgba(0, 0, 0, 0.3);
    background-image: url(../imagenes/blackboard.png);
}

p.totalPuestos {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    float: right;
    font-family: 'DJBChalkItUp', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #7bbcd0;
    background-image: url("../imagenes/chalk_line.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.tarjetaProcesoSeleccion {
    margin-bottom: 2.5rem;
    display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.tarjetaProcesoSeleccion.tarjetaOver {
    padding-bottom: 1rem;
    border-bottom: 2px dashed #d8d8d8;
}

.tarjetaProcesoSeleccion .botoneraTarjeta {
    flex-basis: 35px;
    min-width: 35px;
}
.tarjetaProcesoSeleccion .datosTarjeta {
    position: relative;
    padding-bottom: 1rem;
    flex-grow: 1;
}
.tarjetaProcesoSeleccion .estadoTarjeta {
    flex-basis: 35px;
    min-width: 35px;
}

.botoneraTarjeta {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}
.contenidoBotoneraTarjeta {
    display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
}
.contenidoBotoneraTarjeta i {
    margin: 0px 5px 0px 5px;
    font-size: 1.1rem;
    color: #d8d8d8;
    font-weight: normal;
    cursor: pointer;
}
.tarjetaProcesoSeleccion:hover .botoneraTarjeta {
    display: block;
}

.tarjetaProcesoSeleccion p {
    font-family: 'DJBChalkItUp', Arial, Helvetica, sans-serif;
    color: #d8d8d8;
    text-align: left;
}
.tarjetaProcesoSeleccion p.centro {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #ffb0b0;
    display: table;
}
.tarjetaProcesoSeleccion p.puesto {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.2rem;
    display: table;
}
.tarjetaProcesoSeleccion p.tipoContratacion {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.1rem;
    display: table;
}
.tarjetaProcesoSeleccion p.fechaIncorporacion {
    padding-left: 1rem;
    font-size: 1.1rem;
    display: table;
}

.tarjetaProcesoSeleccion .estadoTarjeta img {
    max-width: 30px;
    float: right;
}

.sortable-placeholder {
    margin: 10px;
    border: 2px dotted #d8d8d8; 
    visibility: visible !important;
    height: 100px; 
}
.sortable-placeholder * {
    visibility: hidden;
}


/** CALCULADORA DE HORAS ──────────────────────────────────────────────────────────────────────────────────────────── */

.celdaTotalCalculadoraHoras {
    margin-left: 5rem;
    font-weight: 700;
}

.celdaTotalCalculadoraHoras p {
    padding-top: .5rem;
    line-height: 3.4rem;
}

.totalHorasCalculadora {
    margin-right: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--main-color-1);
    float: left;
}
.totalHorasCalculadora p {
    font-weight: 700;
    font-size: 1rem;
}


/** GALERÍAS DE FOTOS ─────────────────────────────────────────────────────────────────────────────────────────────── */

.nuevaGaleria {
    cursor: pointer;
    margin: 10px 0px;
    padding: 10px;
    background-color: #333333;
}

.nuevaGaleria img {
    display: block;
    margin: 0px;
    padding: 0px;
    width: 25px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.grupoGalerias {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.bloqueGaleria {
	width: calc(20% - 20px);
	margin: 10px 0px 10px 0px;
    padding: 5px;
    background-color: #000000;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.botonesGaleria {
    width: 40px;
}

.botonesGaleria img {
	cursor: pointer;
	width: 25px;
    margin: 7px 10px 7px 5px;
}

.bloqueFotoGaleria {
	width: calc(100% - 40px);
}

img.fotoGaleria {
	width: 100%;
	height: auto;
}

img.fotoGaleriaOff {
	width: 100%;
	height: auto;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

/**********************************************/

.bloqueSubidaFotos {
	position: relative;
	overflow: hidden;
	padding: 10px;
	background-color: #000000;
	margin-bottom: 10px;
}

.datosSubidaFotos {
	position: absolute;
	height: 45px;
	top: 0px;
	left: 280px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}

.datosSubidaFotos p {
	margin: 0px;
	font-size: 1.5em;
	color: #ffffff;
}

.datosSubidaFotos img {
	margin-left: 10px;
	width: 25px;
	height: 25px;
}

.datosSubidaFotos p.pesos {
	width: 50px;
	margin: 0px 0px 0px 10px;
	padding-top: 2px;
	font-size: 0.6em;
	color: #ffffff;
}

.datosSubidaFotos p.mensajeEstado {
	margin: 0px;
	margin-left: 10px;
	font-size: 1.5em;
	color: #ffffff;
}

.bloqueSubidaFotos .uploadifive-queue-item {
	display: none !important;
}

/**********************************************/

img.previoFotoMto {
	margin: 0 auto;
	margin-bottom: 2rem;
	max-width: 200px;
}


/** ALUMNOS ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosFichaAlumno {
    flex-basis: 100%;

    display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
}

.bloqueDatosFichaAlumno > div {
    flex-basis: 30%;
}

.otrosDatosAlumno{
	margin-left: 1rem;
}

.otrosDatosAlumno p{
	margin: 0.5rem;
	text-align: left;
}

.tituloCredencialesAlumno img{
	margin-right: 0.5rem;
    float: left;
    max-width: 2rem;
}

.tituloCredencialesAlumno h1{
	color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 1px;
	width: 100%;
}

.tituloCredencialesAlumno{
	margin: 1rem -0.1rem;
	margin-top: 2rem;
}

.bGenerarAlumno{
    padding: 0px 10px 0px 10px;
    height: 25px;
    font-size: .8rem !important;
    line-height: 25px;
    margin-bottom: 1rem;
}


/** VÍDEOS ────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueVideo {
	margin: 1.5rem 1rem .5rem 1rem;
    padding: 0;
	background-color: #fcfcfc;
	border: 1px solid #666666;

	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.botonesVideo {
    width: 40px;
}
.botonesVideo img {
	cursor: pointer;
	width: 25px;
    margin: 7px 10px 7px 5px;
}

.portadaVideo {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.portadaVideo img {
	margin: 0;
}

.portadaVideo p.tituloVideo {
	position: absolute;
	bottom: 100%;
	padding: .5rem;
	width: 100%;
	background-color: #000000;
	opacity: 0.9;
	color: #ffffff;
	font-size: .9rem;
	line-height: 1.1rem;
	text-align: left;
	transition: bottom 0.5s;
}
.portadaVideo:hover p.tituloVideo {
	bottom: 0;
}

img.fotoVideo {
	height: 180px;
	width: auto;
}

img.fotoVideoOff {
	height: 180px;
	width: auto;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

/**********************************************/

.bloqueLogosPlataformas {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
  	align-items: center;
  	justify-content: center;
}
.bloqueLogosPlataformas img {
    height: 35px;
    margin: 5px 20px;
    padding: 5px;
    background-color: #ffffff;
}


/** GESTION KIT DIGITAL ──────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueMtoKitDigital > fieldset {
    flex-basis: 49%;
}


/** CURSOS ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

.filaBajaCurso{
	background-color: #fff9d3;
}

.bloqueDatosFichaCurso {
    flex-basis: 100%;

    display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
}

.bloqueDatosFichaCurso > div {
    flex-basis: 50%;
}

.bloqueFichasCursos{
	display: flex;
	align-items: center;
	margin: 1rem;
}
.bloqueFichasCursos p{
	margin: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.1rem;
    text-align: left;
    color: var(--text-color);
}

.bloqueTotalPrecio {
	margin: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border: 1px solid var(--main-color-2);
    background-color: #efefef;
}
.bloqueTotalPrecio p {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.bloqueCoeficiente {
	margin: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border: 1px solid var(--main-color-2);
    background-color: #efefef;
	display: inline;
}
.bloqueCoeficiente p {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

#campoBonificado {
	width: 100%;
    flex-wrap: wrap;
}

.bloqueCodigos{
	justify-content: space-between;
}
.bloqueCodigos fieldset{
	padding-top: 1rem; 
	flex-basis: 49%;
}

.bloqueSesionesCurso img {
    margin-top: 1rem;
    margin-left: 0.5rem;
    max-width: 35px;
    cursor: pointer;
}
.bloqueSesionesCurso p.numSesion {
    margin-top: 1.6rem;
    margin-right: 0.5rem;
	margin-bottom: 1rem;
    font-weight: bold;
    font-size: 2rem;
    color: #eb8934;
}

.tituloSeccion img {
    /* margin-top: 1rem; */
    /* margin-left: 1.5rem; */
	margin-right: 0.5rem; 
    max-width: 35px;
    cursor: pointer;
}

.tituloSeccion p{
	display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}


#seccionAlumnosCurso .fs-dropdown {
    width: 95% !important;
	max-height: 300px;
}

#selectTipoCursos .fs-dropdown {
    width: 95% !important;
	max-height: 300px;
}

#selectTipoCursos .fs-label-wrap .fs-label {
 	height: 35px;
}

#bonificado{
	cursor: pointer;
	text-decoration: underline;
}
#centros{
	cursor: pointer;
	text-decoration: underline;
}

.bloquePaquete{
	border-width: thin;
    border-style: solid;
    padding: 1rem;
	overflow-x: scroll;
    height: 400px;
}

.bloquePaquete img{
	width: 30px;
}

.bloquePaquete p{
	padding: .5rem;
	cursor: pointer;
}
#bloquePaqueteContenedor{
	margin-left: 2rem;
}

.bloqueCentrosCurso{
	border-bottom: groove;
	margin-bottom: 1rem;
    border-color: #f7f7f7;
}

.tituloBloque{
	width: 100%;
    margin: 1rem;
    font-weight: 600;
}

.tagEmpresaFacturacion{
	background-color: #23a720 !important;
}

.datosFichaCursos{
	margin-top: 2rem;
	display: grid;
	
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 800px auto;

	column-gap: 10px;
	row-gap: 10px;
}

.bloqueCoeficienteFicha {
	margin: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border: 1px solid var(--main-color-2);
    background-color: #efefef;
}

.bloqueCoeficienteFicha p {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.bloqueDatosFichaCurso_1 {
	grid-column-start: 1;
  	grid-column-end: 2;
  	grid-row-start: 1;
  	grid-row-end: 2;

	overflow: scroll;
}

.bloqueDatosFichaCurso_2 {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 2;
	grid-row-end: 3;
}

.bloqueDatosFichaCurso_3 {
	grid-column-start: 2;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 3;

	overflow: scroll;
}

.bloqueDatosFichaCurso_4 {
	grid-column-start: 2;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;

	overflow: scroll;
}

.bloqueDatosCentroFicha{
	margin: 0.3rem;

	/*display: grid;

    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;

	grid-auto-flow: row;
	row-gap: 10px;*/
	display: flex;
	padding: 0.3rem;
	
}

.bloqueDatosCentroFicha p{
	
	text-align: start !important;
	margin: 0.2rem 3rem 0.2rem 0 !important;
}

.bloqueComerciales p{
	margin-left: 0.5rem !important;
	text-align: start !important;
}

.bloqueComercialesCentro{
	display: flex;
	flex-direction: column;
	padding: 0.3rem;
    margin: 0.3rem;
}

.bloqueComercialesCentro #tituloComerciales{
	text-decoration: underline;
    cursor: pointer;
}

.tituloBloqueDatosCentro{
	/*grid-column: 1/4;*/
	background-color: #d5862d;
	width: 100%;
	align-items: center;
    display: flex;
    min-height: 28px;
    border-bottom-style: groove;
	padding: 0.3rem;
	justify-content: space-between;
}
.tituloBloqueDatosCentro p{
	text-align: left;
}

.bloqueCentroFicha{
	background-color: #ffffff;
    border: groove;
    border-radius: 5px;
    margin: 1rem 0;
}

.bloqueCentroFicha_1 p{
	margin: 0.2rem;
}

.codigoFundae{
	color: #a50b0b;
}

.formadores{
	color: #665c5c;
}


.informeFormador .fs-label{
	height: 35px;
}

.bloqueDatosEnvioGestoria {
    position: relative;
    padding: 1rem;
    border: 2px solid #d8d8d8;
}

.bloqueDatosEnvioGestoria div{
	margin: 1rem 0;
	display: flex;
    align-items: center;
}

.bloqueDatosEnvioGestoria img.iconoTitulo {
    margin-right: 0.5rem;
    float: left;
    max-width: 30px;
}

.bloqueDatosEnvioGestoria header {
    margin-bottom: 0.5rem;
	display: flex;
    align-items: center;
}

.botonEnvioGestoria{
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 1rem;
}
.botonEnvioGestoria p{
	color: #646464;
}


/* CAMBIA EL FORMATO DE LAS BARRAS DE SCROLL  ──────────────────────────────────────────────────────────────────*/

.bloqueDatosFichaCurso_1::-webkit-scrollbar {
    -webkit-appearance: none;
}

.bloqueDatosFichaCurso_1::-webkit-scrollbar:vertical {
    width:10px;
}

.bloqueDatosFichaCurso_1::-webkit-scrollbar-button:increment,.bloqueDatosFichaCurso_1::-webkit-scrollbar-button {
    display: none;
} 

.bloqueDatosFichaCurso_1::-webkit-scrollbar:horizontal {
    display:none
}

.bloqueDatosFichaCurso_1::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.bloqueDatosFichaCurso_1::-webkit-scrollbar-track {
    border-radius: 10px;  
}

/*────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosFichaCurso_3::-webkit-scrollbar {
    -webkit-appearance: none;
}

.bloqueDatosFichaCurso_3::-webkit-scrollbar:vertical {
    width:10px;
}

.bloqueDatosFichaCurso_3::-webkit-scrollbar-button:increment,.bloqueDatosFichaCurso_3::-webkit-scrollbar-button {
    display: none;
} 

.bloqueDatosFichaCurso_3::-webkit-scrollbar:horizontal {
    display:none
}

.bloqueDatosFichaCurso_3::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.bloqueDatosFichaCurso_3::-webkit-scrollbar-track {
    border-radius: 10px;  
}

/*────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosFichaCurso_4::-webkit-scrollbar {
    -webkit-appearance: none;
}

.bloqueDatosFichaCurso_4::-webkit-scrollbar:vertical {
    width:10px;
}

.bloqueDatosFichaCurso_4::-webkit-scrollbar-button:increment,.bloqueDatosFichaCurso_4::-webkit-scrollbar-button {
    display: none;
} 

.bloqueDatosFichaCurso_4::-webkit-scrollbar:horizontal {
    display:none
}

.bloqueDatosFichaCurso_4::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.bloqueDatosFichaCurso_4::-webkit-scrollbar-track {
    border-radius: 10px;  
}

/*────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloquePaquete::-webkit-scrollbar:horizontal {
    display:none
}


/** SELECT2 ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

.select2-container--default .select2-selection--single {
	height: 35px !important;
	margin: 0px !important;
	padding: 4px !important;
    color: var(--text-color) !important;
    border: 0px !important;
    font-family: 'Open Sans', sans-serif !important;;
    font-size: .9rem !important;    
    background-color: #efefef !important;
}

.select2-results__options {
    background-color: #efefef;
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 300px !important;
}


/** EQUIPOS ─────────────────────────────────────────────────────────────────────────────────────────── */

.fichaEquipo {
	margin-bottom: 2rem;
}
.fichaEquipo > h1 {
	margin: .4rem 0 .2rem 0;
	font-size: 1.6rem;
	line-height: 1.5rem;
	text-align: left;
}
.fichaEquipo h1 span {
	font-size: .9rem;
	color: #265686;
	font-weight: normal;
	cursor: pointer;
}

.datosFichaEquipo {
	margin-top: 2rem;
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.bloqueDatosFichaEquipo{
	position: relative;
	margin: 1rem 1rem;
	padding: 1rem;
	border: 2px solid #d8d8d8;
	flex-basis: 100%;
    /* display: flex; */
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
}


.bloqueFichasEquipos{
	display: flex;
	align-items: center;
	margin: 1rem;
	width: 100%;
}
.bloqueFichasEquipos p{
	margin: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.5rem;
    text-align: left;
    color: var(--text-color);
}

.width_50 {
	width:50%;
}

.bloqueDatosFichaEquipo img.iconoTitulo {
	margin-right: .5rem;
	margin-bottom: .5rem;
	float: left;
	max-width: 30px;
}

.bGenerarQR{
    padding: 0px 10px 0px 10px;
    height: 25px;
    font-size: .8rem !important;
    line-height: 25px;
    margin-bottom: 1rem;
}

#cmbTipoIP, #cmbTipoEquipo{
	width: 100% !important;
}

/** PREVENCION ─────────────────────────────────────────────────────────────────────────────────────────── */
/************* CLIENTES PREVENCIÓN ***************/

.progress {
    width: 100%;
    border-radius: 5px;
    background-color: #e6f3fa;
}
 
.progress-bar {
    height: 100%;
    display: flex;
    align-items: center;
    transition: width 0.25s;
    border-radius: 5px;
}

.progreso100{
	background: #4c9f5e;
}
.progreso75{
	background: #b9b715;
}
.progreso50{
	background: #f6d661;
}
.progreso25{
	background: #e37b22;
}
.progress-bar-text {
    margin-left: 10px;
    font-weight: bold;
    color: #000000;
}

/************* PLANTILLAS PREVENCIÓN ***************/
.bloqueTarjetaPlantilla{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 20%;
	border: 3px solid #b5bbbb;
	margin: 1rem;
	background-color: #dadbdb;
    border-radius: 1rem;
	padding: 1rem;
	min-height: 300px;
}
.bloqueTarjetaPlantilla h2{
	text-align: center;
	width: 100%;
	margin-top: 0rem;
	margin-bottom: 0.5rem;
}
#bloqueTarjetas{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.bloqueTarjetasTerminadas{
	border: 3px solid green;
}
.bloqueTarjetaVisita{
	background-color: #ffffff;
}

.botonesTarjeta{
	display: flex;
    justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 1rem 0 1rem 0;
}
.botonesTarjeta img{
	width: 37px;
	cursor: pointer;
}
.botonesTarjeta p.numTarjeta {
    font-weight: bold;
    font-size: 2rem;
    color: #eb8934;
}
.insertarTareas{
	cursor: pointer;
	margin-top: 0.5rem;
}
.insertarTareas:hover{
	color:#7c7a7a !important;
}
.contenedorTarjetas{
	justify-content: center;
	width: 100%;
}

.bloqueDatosTarjeta{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}
.bloqueDatosTarjeta div{
	margin: 1rem 0;
}
.bloqueDatosTarjeta p{
	width: 100%;
	margin-top: 0.5rem;
}
.bloqueDatosTarjeta .estadoTarjeta{
	text-align: center;
    font-size: 0.8rem;
    margin-top: 0;
    color: #565553;
}

.tagTarjetaPrevencion{
	background-color: #62aba2;
	margin-top: 0.5rem !important;
}

.colorTarjeta{
	width: 100%;
	height: 10px;
	border-radius: 1rem;
}

.tareasTarjeta{
	border-top: 2px solid #999797;
    padding-top: 0.5rem;
	width: 100%;
	margin-top: 0.5rem;
}
.tareasTarjeta img{
	cursor: pointer;
	width: 20px;
}
.tareasTarjeta header{
	display: flex;
	justify-content: space-between;
}

.contenidoTareasTarjeta{
	display: none;	
}

.contenidoTarea{
    border-left: groove;
    border-top-color: rgba(223, 217, 217, 0.44);
}
.contenidoTarea p{
	margin: 1rem;
}
.contenidoTarea i.botonBorrar{
	cursor: pointer;
    margin-left: 1rem;
}
.contenidoTarea i.botonTerminarTarea{
	cursor: pointer;
    margin-left: 0.5rem;
}

.botonesAccionesTarjeta{
	display: flex;
}
.botonesAccionesTarjeta img{
	width: 25px;
	margin-left: 1rem;
}

.tareaTerminada p{
	color: #27841d;
}

/**********************************************/
.bInsertarTarjeta {
	margin-bottom: 1.5rem;
	float: right;
}
.bInsertarTarjeta p {
    margin-top: 0.2rem;
}

/**********************************************/
.botonNuevoAnio img{
	width: 20px;
	display: flex;
    align-items: center;
}

.breadCrumbTablero{
	cursor: pointer;
	position: relative;
    margin: 0.2rem;
    padding: 0.2rem 0.5rem 0.2rem 0.7rem;
    height: 25px;
    background-color: #b3b3b3;
}
.breadCrumbTablero:hover{
	background-color: #dc6600 !important;
}
.breadCrumbTablero:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 25px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 5px solid #b3b3b3;
}
.breadCrumbTablero:hover:after {
	border-left: 5px solid #dc6600;
}
.breadCrumbTablero:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 0;
    height: 25px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 5px solid #ffffff;
}
.breadCrumbTablero p {
	margin: 0;
	color: #ffffff;
}

.bloqueTituloTablero{
	display: flex;
	align-items: flex-end;
}
.bloqueTituloTablero i{
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
	cursor: pointer;
}
.bloqueTituloTablero h1{
	margin-top: 1rem;
    margin-bottom: 0;
    font-size: 30px;
}

.tareasTarjeta .bPequenio p{
	line-height: inherit;
}

/**********************************************/
#map {
	height: 600px;
	/* The height is 400 pixels */
	width: 100%;
	/* The width is the width of the web page */
  }


/** Material Formativo ─────────────────────────────────────────────────────────────────────────────────────────── */

.tituloMaterialForm{
	margin-left: 2rem;
	font-size: 2rem;
}

.bloqueMaterialFormativo{
	background-color:#ffa2002d ;
	margin-bottom: 1rem;;
}

.imagenCabMaterialForm{
	margin-left:1rem !important;
	/* margin-bottom: 1rem; */
}

h1.tituloMaterialFormativo {
    margin-right:3rem;
}


/** Reseñas ─────────────────────────────────────────────────────────────────────────────────────────── */
.contenedorReview{
	padding-top:2%;
	padding-bottom:2%;
	padding-left: 5%;
	padding-right: 5%;
	margin:10%;
	margin-left:20%;
	margin-right:20%;
	background-color: #00000000;
	border-color:#808080;
}
.tituloResena{
	padding-bottom:2%;
}
.botonSi, .botonNo{
	padding-left:5%;
	padding-right:5%;
	text-align: center;
}
.containerGoogleReview{
	padding: 5%;
}
.botonReview{
	padding: 0% !important;
	border:#ffffff !important;
	width:50%;
	height:50%;
	display: flex;
} 
.botonReview:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}



/** Vehiculos ─────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDatosReserva {
    flex-basis: 100%;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin-top: 1.6rem;	
}

.bloqueDatosVehiculo{
	display: flex;
	align-items: center;
	margin-top: 1.6rem;
	margin-bottom: 0.8rem;
}
.bloqueDatosVehiculo p{
	margin: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.1rem;
    text-align: left;
    color: var(--text-color);
}

.bloqueDatosFichaVehiculo {
    position: relative;
    margin: 0 1rem;
    padding: 1rem;
    border: 2px solid #d8d8d8;
}
.bloqueDatosFichaVehiculo img.iconoTitulo {
	margin-right: .5rem;
	float: left;
	max-width: 30px;
}

.flexVehiculosMto {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.flexVehiculosMto fieldset.bloqueFotoVehiculo{
	position: relative;
    margin-right: 10px;
    margin-bottom: 25px;
    padding: 10px;
    padding-top: 4rem;
    border: 2px solid #d8d8d8;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#bloqueFotoVehiculo {
	flex-basis: 25%;
}
#bloqueDatosVehiculosMto {
	flex-basis: 73%;
}
/** PROVEEDORES ─────────────────────────────────────────────────────────────────────────────────────────────────────────── */
.datosContactoProveedor{
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


.botoneraBloquesProveedor {
	margin: 1.5rem auto;
	width: 100%;

	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.botoneraBloquesProveedor > div {
	margin: 0 1.5rem;
	padding: .5rem;
	width: 125px;
	border: 2px dotted #ffffff;
}
.botoneraBloquesProveedor > div img {
	margin: 0 auto;
	margin-bottom: .5rem;
	max-width: 50px;
	cursor: pointer;
}
.botoneraBloquesProveedor > div p {
	text-align: center;
	font-size: .8rem;
	font-weight: 600;
	line-height: .9rem;
}
.botoneraBloquesProveedor > div:hover {
	background-color: #f1f1f1;
    border: 2px dotted #e3e3e3;
}

.bloqueDatosFichaProveedor {
	position: relative;
	margin: 0 1rem;
	padding: 1rem;
	border: 2px solid #d8d8d8;
}
.bloqueDatosFichaProveedor1 {
	flex-basis: 30%;
}
.bloqueDatosFichaProveedor2 {
	flex-basis: 70%;
}
.bloqueDatosFichaProveedor3 {
	flex-basis: 100%;
}
.bloqueDatosFichaProveedor4 {
	flex-basis: 100%;
}

.bloqueDatosFichaProveedor header {
	margin-bottom: .5rem;
}

.bloqueDatosFichaProveedor img.iconoTitulo {
	margin-right: .5rem;
	float: left;
	max-width: 30px;
}
.fichaProveedor {
	margin-bottom: 2rem;
}
.fichaProveedor > h1 {
	margin: 0 0 .2rem 0;
	font-size: 1.6rem;
	line-height: 1.5rem;
	text-align: left;
}
.fichaProveedor h1 span{
    font-size: .9rem;
    color: #265686;
    font-weight: normal;
    cursor: pointer;
}

.fichaProveedorSpan  {
    font-size: .9rem;
    color: #265686;
    font-weight: normal;
    cursor: pointer;
}

#totales {
    background-color: #999393;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-align: right;
    color: #000000;
    padding: 5px;
}

/** LEAD MANAGMENT ──────────────────────────────────────────────────────────────────────────────────────────── */
.tableroLead{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr auto; 
	padding: 1rem;
}

.flexLead{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}.flexLead img{
	width: 20px;
}
.breadCrumbLead {
	position: relative;
	margin: .2rem .4rem;
	padding: .3rem .5rem .2rem .7rem;
	height: 30px;
	background-color: #658cb3;
}
.breadCrumbLead:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 30px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 10px solid #658cb3;
}
.breadCrumbLead:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    width: 0;
    height: 30px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 10px solid #ffffff;
}
.breadCrumbLead p {
	margin: 0;
	color: #ffffff;
	text-align: center;
	font-size: 1rem;
}

.contenidoTableroLeads{
	display: flex;
	background-color: #ededed;
	border-radius: 0.5rem;
	width: 95%;
	justify-self: center;
	flex-direction: column;
}
.contenidoLeads{
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row: 2;
}
        
.contenidoPresentacion{
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row: 2;
}

.contenidoNegociacion{
	grid-column-start: 3;
	grid-column-end: 4;
	grid-row: 2;
}

.contenidoSeguimiento{
	grid-column-start: 4;
	grid-column-end: 5;
	grid-row: 2;
}
.contenidoCierre{
	grid-column-start: 5;
	grid-column-end: 6;
	grid-row: 2;
}

.tarjetaTableroLeads{
	background-color: #ffffff;
    margin: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.tarjetaTableroLeads p{
	font-size: .8rem !important;
	color: #6c6c6c !important;
}
.flexTarjetaLead{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.flexTarjetaLead p{
	color: inherit !important;
}
.flexTarjetaLead2{
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.bloqueFotoLeads{
	margin-top: 0.5rem;
	padding: 0.5rem;
}
.bloqueFotoLeads img{
	width: 25px;
	cursor: pointer;
}
.bloqueFotoLeads .imagenRedonda{
	width: inherit;
    border-radius: 100px;
	max-width: 42px;
}
/** LEAD MANAGMENT ──────────────────────────────────────────────────────────────────────────────────────────── */
.dhcp{
	align-items: center!important;
}
.dhcp img{
	max-width: 2rem;
}
.dhcp p{
	color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 1px;
	margin-left: 1rem;
}
.flexDHCP{
	display: flex;
    justify-content: space-between;
    padding: 1rem 0;
	align-items: center;
	margin-left: 10px;
}
.flexDHCP .bPequenio{
	margin: 0!important;
}
.hr_dhcp{
	border: 1px solid #d8d8d8;
}