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

@charset "UTF-8";

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

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


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

:root {
    --color-gris: #2a2a2a;
    --color-gris-claro: whitesmoke;
    --color-blanco: #ffffff;
    --color-rojo-claro: #EF3A3F;

    --main-color-1: #c8d23d;
    --main-color-2: #d0050b;

    --text-color-1: #333333;
    --text-color-2: #ffffff;

	--color-menu: #2a2a2a;
}


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

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

html {
	font-size: 16px;
	scrollbar-width: none !important;
}

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;
}


/** 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;
  }


/** 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-1);
}

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

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

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

h1 {
    color: var(--text-color-1);
    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-1);
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1rem;
}

a {
	color: var(--text-color-1);
	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: vertical;
}

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-1);
    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;
}

/** 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;
}

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

#html {
	height: 100%;
	padding: 10px;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #e5e5e5;
	color: var(--text-color-1);
	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;
}

.flexCharts {
    margin-bottom: 2rem;
    
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: flex-start;
}
.flexCharts > div {
    width: 30%;
}

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

.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: 200px;
}

.ck-media__wrapper {
    WIDTH: 50%;
}

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

#contenedor {
	position: relative;
    min-height: 98vh;
    clear: both;
    background-color: #ffffff;
	width: 100vw;
	padding: 45px 10px 100px 50px;
	overflow-x: hidden;
}

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

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

#cabecera {
	height: 55px;
    padding: 10px 30px 10px 0;
    background-color: var(--color-menu);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
}

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

#cabeceraNoAccess {
	height: 100px;
    padding: 10px 40px 10px 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    border-bottom: 3px solid var(--main-color-1);
}

#cabeceraNoAccess img {
	width: auto;
	height: 70px;
}
#cabeceraNoAccess .logoGrupo {
	width: auto;
	height: 50px;
}


#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;    
	left: 0;
}

#pie p {
    text-align: center;
    color: var(--text-color-2);
    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-2);
	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;
}

.botoneraNuevosRegistrosAyuda {
	margin-bottom:-1rem !important;
}

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

#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;
}

.tagProgramaAbierto {
    background-color: #057502 !important;
}

.tagSuperdelegado {
    background-color: var(--main-color-2) !important;
}

.tagDelegado {
    background-color: #3fa7ff !important;
}
.tagBusinessNow {
    background-color: #870ecd !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-1);
    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;
}

/*** INTERFAZ NUEVA *******************************************/
.cabeceraLogin{
	width: 100% !important;
    height: 80px !important;
	background-color: var(--color-menu);
    position: absolute;
    z-index: 99;
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
	padding: 1rem;
	border-bottom: 5px solid var(--main-color-2);
}
.cabeceraLogin img {
    width: auto;
    height: 40px;
}

#contenedorLogin{
	width: 100vw;
    height: 100vh;
    background-color: var(--color-menu);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contenidoLogin{
	background-color: #b7b7b7;
    width: 60%;
	height: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bloqueImagenesLogin{
	height: 100%;
	width: 40%;
	background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}
#fondoTransparente {
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 210, 61, 0.7);
}

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

.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-1);
}

.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-1);
    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-1);
    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-1);
    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_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: #efefef !important;
    border: 0 !important;
}

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

.fs-dropdown {
    background-color: #efefef !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;
}

.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 10px 0px 12px;
	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 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;
}
.botonInforme:hover p {
	color: #ffffff;
}

.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;
}

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

.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;
}

/** 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;
}
.cabeceraVM p {
	color: var(--color-blanco);
}

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


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

.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);
}

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

.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; */
}

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

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

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


/** 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: 20000;
    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-1);
}
.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;
}

.tablaResultados .media{
	width: 30%;
	margin: 0 auto;
	float: none !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-1);
    padding: 5px;
}

.tablaResultados li::marker{
	color: var(--main-color-4);
}

.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;
}


/** 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;
}

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

.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);
}

.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 img {
    margin-left: 10px;
    width: 25px;
    height: 25px;
}

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

.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;
}

/* GALERÍA */

.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;
}

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

.botonesGaleria {
    width: 40px;
}

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

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

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

.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;
}


/** 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%;
}

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

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

.posicionRanking {
    font-size: 1rem;
	color: #66C1AE;
	font-weight: bold;
}


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

.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;
}

#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;
}


.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;
}


/** MENU NUEVO ──────────────────────────────────────────────────────────────────────────────────────────── */
#bloqueMenuNuevo{
	position: fixed;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 200px;
    height: calc(100vh - 55px);
    background-color: var(--color-menu);
    z-index: 999;
    top: 55px;
    left: 0;
	transition: all 0.3s ease;
	overflow: scroll;
	overflow-x: hidden;
	scrollbar-width: none;
	
	clip-path: inset(0px 160px 0px 0px);
}

#bloqueMenuNuevo:hover{
	clip-path: inset(0px 0px 0px 0px) !important;
}
.menuNuevo{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	height: 100vh;
    justify-content: space-between;
}
.menuNuevo ul{
	display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
	float: left;
	list-style: none;
	padding: 0;
    align-items: flex-start;
}

.menuNuevo li {
	cursor: pointer;
	margin: 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: .7rem;
	font-weight: bold;
	display: flex;
	align-items: center;

	width: 100%;
	min-height: 40px;
	transition: all 0.3s ease;
	color: #fff;
	align-items: center;
	/* justify-content: center; */
	justify-content: left;
}
.menuNuevo li i{
	font-size: 1.2rem;
	display: flex;
	width: 40px;
	justify-content: center;
}

#bloqueMenuNuevo .menuNuevo li span{
	display: flex;
    width: 160px;
} 

.menuNuevo .tabOn{
	background-color: var(--main-color-2);
}
.menuNuevo li:not(.tabOn):hover{
	color: var(--main-color-1)!important;
}

.contenedorMenu{
	display: none !important;
	transition: all 0.3s ease;
}
#bloqueMenuNuevo:hover .contenedorActivo{
	display: flex !important;
}
.contenedorActivoChincheta{
	display: flex !important;
}

.contenedorActivo{

	padding-left: 1rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	flex-direction: column;
	gap: 1rem;
	transition: all 0.3s ease;
	background-color: #5d575b;
    padding: 1rem;
	width: 100%;
    top: -1rem;
    position: relative;
}
.contenedorActivo a{
	color: #fff;
}

.contenedorActivo a:hover{
	color: var(--main-color-1);
}


.logoMenu{
	display: none;
	padding: 1rem;
	margin-top: 20px;
	width: 100%;
	transition: all 0.3s ease;
	align-items: center;
    justify-content: center;
}
.logoMenu img.logoGrupo {
	height: 30px;
}
#bloqueMenuNuevo:hover .logoMenu{
	display: flex;
}
#datosUsuarioNuevo{
	display: flex;
    flex-direction: column;
    padding: 1rem;
}
#datosUsuarioNuevo #botoneraCabeceraNueva{
	display: flex;
}
#datosUsuarioNuevo #botoneraCabeceraNueva p{
	color: #fff;
}
#datosUsuarioNuevo #botoneraCabeceraNueva img{
	width: 35px;
	height: auto!important;
}
#datosUsuarioNuevo #botoneraCabeceraNueva .bloqueUsuarioCabecera{
	display: flex;
	align-items: center;
    gap: 0.7rem;
	margin-left: 0.5rem;
}
#datosUsuarioNuevo #botoneraCabeceraNueva .bloqueUsuarioCabecera p{
	font-size: 0.9rem;
}
.imgLogoCabecera{
	width: 200px;
	display: flex;
	align-items: center;
    justify-content: flex-start;
	padding-left: 8px;
}

.botonCabecera{
	display: flex;
    align-items: center;
	margin: 0.5rem 1rem;
}
.botonCabecera p{
	font-size: 1.2rem;
}
.botonCabecera:hover{
	cursor: pointer;
}
.botonCabecera:hover p{
	color: var(--main-color-1) !important;
}

.botonesMenuMovil{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.botonesMenuMovil p{
	color: #fff;
	font-size: 1rem;
}
.contenedorChincheta{
	width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 0 1rem;
}
.contenedorChincheta i{
	rotate: -40deg;
    color: #ffff;
}
.contenedorChincheta i:hover{
	cursor: pointer;
    color: var(--main-color-1);
}
.contenedorChincheta .seleccionado{
	color: var(--main-color-1);
}

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

/** DELEGADOS ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

.bloqueDelegados {
	margin-top: 3rem;

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

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

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

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

.fichaDelegado p {
	margin-bottom: .4rem;
	text-align: left;
	word-wrap: break-word;
}

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

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

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

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

/* Estilos nuevos */
/***********************/

.iconUserOffDelegados {
	position: absolute;
	left: 1.2rem;
	color: red
}

.iconsNumComerciales {
	display: flex;
	gap: 10px;
	position: absolute;
	right: 1.2rem;
}

.fichaSuperDelegado{
	border: 3px solid #FFD700;
}

.fichaSuperDelegado img.fotoEmpleado {
	border: 3px solid #FFD700;
}

/** COMPRADORES ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

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

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

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

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

.bloqueDatosFichaCompradores {
	position: relative;
	margin: 0 1rem;
	padding: 1rem;
	border: 2px solid #d8d8d8;
}
.bloqueDatosFichaCompradores_1 {
	flex-basis: 39%;
}
.bloqueDatosFichaCompradores_2 {
	flex-basis: 59%;
}
.bloqueDatosFichaCompradores_3 {
	flex-basis: 100%;
}
.bloqueDatosFichaCompradores_4 {
	flex-basis: 100%;
}

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

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

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

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

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

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

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

	flex-basis: 70%;
}

.bloqueDatosFichaCompradores_3 .flexDatosCompradores > div:first-child {
	flex-basis: 30%;
}

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


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

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

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

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

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

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

/* Estilos nuevos de comerciales */
/******************************/
.bloqueCabeceraFichaCompradores{
	display: flex;
	justify-content: space-between;
}
.botoneraFichaCompradores{
	display: flex;
	gap: 20px;
}
.botoneraFichaCompradores img{
	width: 30px;
	cursor: pointer;
}

/*****************************/
#datosAcceso{
	margin-left: 1rem;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/*****************************/
.flexFichaCompradoresLogistic{
	display: flex;
	width: 100%;
	margin-bottom: 1rem;
}
.flexFichaCompradoresLogistic div{
	/* width: 100%; */
}
.bloqueDatosFichaCompradores img.iconoTitulo{
	width: 30px;
}
.flexFichaCompradoresDatosLogistic{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
	padding-left: 0.5rem;
}

.flexFichaCompradoresDatosLogistic p{
	/* padding-left: 2rem; */
}

/****************************/
.contenedorComercialPastillas{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: flex-start;
    gap: 2.5rem !important;
	margin-top: 3rem;
}
.botoneraComercialPastillas{
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	align-items: center;
    margin-bottom: 0.5rem;
}
.botoneraComercialPastillas h1{
	color: var(--color-blanco);
	text-align: left;
	margin: 0;
}
.botoneraComercialPastillas img{
	width: 30px;
	cursor: pointer;
}
#iconoRojo{
	color: var(--color-rojo-claro);
}
/****************************/
.bloqueComercialPastillas{
	width: 30%;
	display: flex;
	flex-direction: column;
	background: #2a2a2aed;
	padding: 1.5rem;
	border-radius: 12px;
}
.bloqueComercialDatosPastilla{
	background: whitesmoke;
    padding: 1rem;
    margin: 2rem 0 0 0;
	border-radius: 10px;
}
.bloqueTituloComercialDatosPastilla h2{
	margin-top: 0.4rem;
	text-align: left;
}
#sharedWith{
	font-family: 'Open Sans', sans-serif;
}
.bloqueTituloIconosComercialDatosPastilla{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.bloqueTituloBotoneraComercialDatosPastilla{
	display: flex;
	/* gap: 10px; */
    flex-direction: column;
	justify-content: space-evenly;
}

.bloqueTituloBotoneraComercialDatosPastilla img{
	cursor: pointer;
	width: 30px;
}
.bloqueTituloBotoneraComercialDatosPastilla i{
	cursor: pointer;
	width: 30px;
}
.bloqueComercialDatosPastillaInfo p{
	/* text-align: right; */
}
/******************/
.bloqueComercialPastillasDobleBloque{
	width: 47%;
}
.contenedorComercialDobleBloque{
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 0.5rem 0;
    padding: 2rem 0 1rem 0;
	border-top: 2px dashed #d8d8d8;
}
.bloqueDatosPastillaDobleBloque{
	flex-basis:45%;
	margin-top: 0
}
#contenedorDatosPastillaDobleDireccion{
	width: 20px;
}

/****************/
.iconoEliminarClonacion{
	position: absolute;
    top: 2rem;
    right: 1rem;
    width: 100%;
    max-width: 40px;
    cursor: pointer;
}

.bClonacion {
	height: 25px;
	font-size: .8rem;
	line-height: 25px;
	letter-spacing: 1px;
	color: var(--main-color-2) !important;
	background-color: transparent !important;
	margin: 1rem !important;

	border: 1px solid var(--main-color-2) !important;

    background-image: url(../imagenes/nuevoNegro.svg);
    background-repeat: no-repeat;
    background-size: 1.2rem;
    background-position: 10px center;
    padding: 0px 10px 0px 35px;
}
.bClonacion:hover {
	color: #ffffff !important;
	background-color: var(--main-color-2) !important;
}

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

.hrGris{
    height: 2px;
	border-width: 0px;
	background: #d8d8d8;
	margin: 1.5rem 0;
}

/* Copiar */
.flexCopiaCompradores{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
	gap: 3rem;
}
.flexCopiaCompradoresSalida, .flexCopiaCompradoresLlegada{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
	flex-direction: column;
    flex-basis: 45%; /* Ordenador */
    width: 100%; /* Tablet y Movil */
}
.flexCopiaCompradoresDatosSalida, .flexCopiaCompradoresDatosLlegada	{
	margin-left: 1rem;
	width: 100%;
	padding-right: 1rem;
}

/******************/
.bloqueCompradores{
	border-radius: 5px;
    border-color: #d8d8d8;
}
.pastillaCompradores{
	background-color: #efefef;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin: 0.5rem 1rem;
}
.pastillaCompradores:hover{
	background-color: #cccccc;
}
.pastillaCompradores p{
	cursor: default;
	text-align: left;
    width: 100%;
}
.pastillaCompradores img{
	width: 25px;
	margin: 0 1rem;
	cursor: pointer;
}
.textoBloqueCompradores{
	text-align: center;
	cursor: default;
}

/****************************/
.cabeceraCompradoresCopia{
	display: flex;
	flex-direction:column;
    align-items: center;
}

.cabeceraCompradoresCopia 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;
}
.bloqueCompradoresCopia{
	display: flex;
	flex-direction: column;
}
.filaCompradoresCopia{
	background-color: #ffffff;
}
.tarjetaDatosCuotas{
	text-align:left; 
	display:flex;
	background-color: #eceef0;
	padding: 5px 40px;
	align-items: center;
}
.cabeceraCuotas{
	display: flex;
	background-color: #333333;
	padding: 6px 43px;
	align-items: center;
}
.cabeceraCuotas p{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
	text-align: center;
	width: 100%
}
.bloquePaquete{
	border-width: thin;
    border-style: solid;
    padding: 1rem;
	overflow-x: hidden;
    height: 400px;
}

.bloquePaquete img{
	width: 30px;
}

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

/*********************/
.bloqueComercialDatosPastillaAlojamientos{
	margin-top: 0;
	width: 100%;
}
.bloqueComercialDatosPastillaInfoAlojamientos p{
	text-align: right;
}
.bloqueDatosPastillaDobleBloqueCoches{
	flex-basis: 40%;
}
.bloqueDatosPastillaDobleBloqueCochesKilometros{
	margin-left: 2rem;
	flex-basis: 20%;
}
/********************/
/* Alojamiento */
.flexNochesRequeridas{
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.flexNochesRequeridas div{
	padding: 0.5rem;
}
/* Coches */
.flexCosteCoches{
	gap: 0.5rem;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

/** ESTADISTICAS ─────────────────────────────────────────────────────────────────────────────────────────────────────── */

#tituloEstadisticas {
    margin: 0px;
    margin-top: 25px;
    margin-bottom: 5px;
    height: 40px;
    border-bottom: 1px solid #cccccc;
}

#tituloEstadisticas img {
    float: left;
    margin-right: 10px;
}

#tituloEstadisticas h1 {
    float:left;
    margin: 0px;
    margin-top: 6px;
}

#bloque1Estadisticas {
    float:left;
    margin: 0px;
    width: 130px;
}

#bloque2Estadisticas {
    float:left;
    margin: 0px;
    margin-left: 6px;
    margin-right: 6px;
    padding-left: 6px;
    padding-right: 6px;
    width: 332px;
    border-left: 2px solid #cccccc;
    border-right: 2px solid #cccccc;
}

#bloque3Estadisticas {
    float:left;
    margin: 0px;
    width: 310px;
}

#bloque4Estadisticas {
    float:left;
    margin: 0px;
    margin-left: 6px;
    margin-right: 6px;
    padding-left: 6px;
    padding-right: 6px;
    width: 50%;
    border-left: 2px solid #cccccc;
    border-right: 2px solid #cccccc;
}

.datoEstadisticas {
    display: table;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.datoEstadisticas img {
    float: left;
    margin: 0px;
    margin-right: 5px;
}

.contenidoDatoEstadisticas {
    float: left;
}

.contenidoDatoEstadisticas ul {
    margin: 0px;
    margin-bottom: 8px;
}

.contenidoDatoEstadisticas p, .contenidoDatoEstadisticas li {
    margin: 0px;
    font-size: .8em;
}

#menuEstadisticasCompradores {
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    display: table;
}

.bloqueDatosResumenGlobales {
    display: flex;
	width: 100%;
    /* margin: 0px;
    margin-left: auto;
    margin-right: auto; */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #868686;
}

.columnaDatosResumen {
    margin: 0px;
    margin-left: 1%;
    margin-right: 1%;
    width: 48%;
    /* float:left; */
}

.datoResumen {
    margin: 0px;
}

.datoResumen img {
    margin: 0px;
    margin-bottom: 5px;
    float: left;
}

.datoResumen p {
    margin: 0px;
    float: left;
    display: table;
    text-align: left;
    font-size: .8em;
}

.bloqueEstadisticasDetalladas {
    margin: 0px;
    margin-bottom: 25px;
    padding-bottom: 1em;
    border-bottom: 1px solid #333333;
}

.bloqueEstadisticasDetalladas h1 {
    margin: 0px;
}

.bloqueEstadisticasDetalladas2 {
	margin: 0px;
    margin-bottom: 25px;
	background: #e8e8e8;
    padding: 1rem;
    border: 1px solid #888888;
	border-radius: 8px;
}
.bloqueEstadisticasDetalladas2 h1 {
	margin: 0px;
}

.flexEstadisticasDetalladas {
	display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
	align-items: center;
    gap: 0.5rem;
}

.estadisticasParciales {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 15px;
	margin-right: 1rem;
    /* float: right; */
	display: flex;
	justify-content: flex-end;
}
.flexEstadisticasParciales{
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid;
    border-radius: 8px;
    background: var(--color-gris);
	padding: 0.5rem 1rem;
}
.flexEstadisticasParciales p {
	color: var(--text-color-2);
}

.descargaPDF {
    margin: 0px;
    margin-top: 10px;
    float: left;
}

.descargaPDF p {
    margin: 0px;
    float: left;
    display: table;
    text-align: left;
    font-size: .8em;
}

.descargaPDF a {
    color: #000000;
}

.botonDesplegar {
    cursor: pointer;
}
.botonDesplegar:hover {
    opacity: 0.4;
}
.botonDesplegar_ON {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

.bloqueDatosProvincia {
    padding-top: 1.5em;
    display: none;
}
