a{
	text-decoration:none
}
.circulo {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: red;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
  margin:0px auto;
  padding:3%;
  color:#FFF
}
.circuloBlanco {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
  margin:0px auto;
  padding:3%;
  color:#333
}

.circulo > h2 {
	font-family: sans-serif;
	color: white;
	font-size: 5px;
	font-weight: bold;
}
.botonesLabel{
	padding:2px !important; 
	font-size:12px !important
}
.Titulos{
    font-size: 20px !important;
    font-weight: bold;
}
.errorsText{
    color:red;
    font-size: 12px !important;
	
}
.infoText{
    color:rgb(117, 42, 238);
    font-size: 12px  !important;
	
}
.succesText{
    color:#59d05d;
    font-size: 12px  !important;
	
}
.warningText{
    color:#9F6000;
    font-size: 12px  !important;
	
}
.dangerText{
    color:#D8000C;
    font-size: 12px  !important;
	
}
.grisText{
    color:#999;
    font-size: 12px  !important;
	
}
.cropContenedor{
    width:100%;
    height: 100%;
    object-fit: cover;
    /*object-fit: contain;*/
}
.contenedorImagen{
    width: 60px;
    height:60px;
}
.redondeados{
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border: 0px solid #000000;
	padding:5px;
}
.Inline{
    position:relative;
    display: inline-block;
    display: -moz-inline-stack;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    max-width:500px;
    margin:auto;
    position:relative;
    overflow:inherit;
    padding-right: 10px;
    padding-bottom: 15px;
    text-align: left !important;
}

.Contenedores{
    position:relative;
    display: inline-block;
    display: -moz-inline-stack;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    width:500px;
    margin:auto;
    position:relative;
    overflow:inherit;
    padding-right: 10px;
    padding-bottom: 15px;
    text-align: left !important;
}

@media (max-width: 900px) {
    .Inline{
        width: 100%;
        padding-right: 0px;
    }
    .Contenedores{
        width: 100%;
        padding-right: 0px;
    }
}
.ColorBackDiv{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 1px solid #f2f2f2;
    margin-bottom:15px;
    padding:20px;
    position:relative;
}

.ColorBackDivSombra{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 1px solid #f2f2f2;
    margin-bottom:15px;
    padding:20px;
    position:relative;
}
.ColorBackDivSombra:hover{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 1px solid #f2f2f2;
    margin-bottom:15px;
    padding:20px;
    position:relative;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(166,161,166,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(166,161,166,1);
box-shadow: 0px 0px 10px 0px rgba(166,161,166,1);
}

.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center !important;
}
.table-responsive{
    width: 100%;
    overflow:auto;
}
.table {
    /*color: #333;
    width: 100%;
    border-collapse: collapse;*/
    /*border: 2px solid #f7f3f3;*/
}
td{
	vertical-align:top !important;
}
.td, .th {
    border: 1px solid transparent;
    height: 30px;
    background: red;
}

.th {
    background: #B8DAFF;
    font-weight: bold;
    padding: 10px;
}

.td {
    background: #FAFAFA;
    text-align: left;
    padding: 8px;
}

.tr:nth-child(even)
.td { background: #F1F1F1; }  

.tr:nth-child(odd)
.td { background: #FEFEFE; } 
.tr td:hover { background: #666; color: #FFF; }
.tr:hover .td { background: #d0dafd; color: #339; }


/* custom checkbox */
.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.check {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #ccc;
}
.checkbox:hover input ~ .check {
    border: 2px solid #2489C5;
}
.checkbox input:checked ~ .check {
    background-color: #2489C5;
    border:none;
}
.check:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox input:checked ~ .check:after {
    display: block;
}
.checkbox .check:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio .check {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.radio:hover input ~ .check {
    border: 2px solid #2489C5;
}
.radio input:checked ~ .check {
    background-color: #2489C5;
    border:none;
}
.radio .check:after {
    content: "";
    position: absolute;
    display: none;
}
.radio input:checked ~ .check:after {
    display: block;
}
.radio .check:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.ContenedoresRedondeados{
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 0px solid #000000;
    padding:15px;
    background:#fbfbfb
}
.Select{
    -webkit-appearance: none;
        -moz-appearance: none;
             appearance: none;
     background-color: transparent;
     border-color: #6b7280;
     border-width: 1px;
     border-radius: 5px;
     padding-top: 0.5rem;
     padding-right: 0.75rem;
     padding-bottom: 0.5rem;
     padding-left: 0.75rem;
     font-size: 1rem;
     line-height: 1.5rem;
     --tw-shadow: 0 0 #0000; height:44px;
}

.infoAlert, .successAlert, .warningAlert, .dangerAlert {
    border: 1px solid;
    /*margin: 10px 0px;*/
    padding:10px 10px 10px 10px;
    background-repeat: no-repeat;
    background-position: 10px center;
	font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
	text-align:left;
	width:auto;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 0px solid #000000;

}
.infoAlert {
    color: #00529B;
    background-color: #BDE5F8;
    /*background-image: url('imagenes/info.jpg');*/
}
.successAlert {
    color: #4F8A10;
    background-color: #DFF2BF;
    /*background-image:url('imagenes/correcto.JPG');*/
}
.warningAlert {
    color: #9F6000;
    background-color: #FEEFB3;
    /*background-image: url('imagenes/ojo.JPG');*/
}
.dangerAlert {
    color: #D8000C;
    background-color: #FFBABA;
    /*background-image: url('imagenes/error.jpg');*/
}
.backRosa{
    background:rgb(247, 52, 205)
}
.backAzul{
    background:rgb(52, 185, 247)
}
.backRojo{
    background:red
}
.backVerde{
    background:#C30
}



.sliderPublicidad {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 200px;
	border:3px solid #333;
	border-radius: 20px;
	margin: 0 auto;
	padding: 0;
}
.sliderPublicidad > div {
	position:absolute;
	top:0;
	left:0;
}
.sliderPublicidad img {
	width:100%;
	min-height:200px;
	margin:0;
	padding:0;
	border:0;
}
.sliderPublicidad p {
	position: absolute;
	bottom: 30px;
	left: 0;
	display: block;
	width: 200px;
	height: 24px;
	margin:0;
	padding: 2px 0;
	color: #eee;
	background: #990000;
	font-size: 14px;
	line-height:22px;
	text-align:center;
}
.paginacion {
  display: inline-block;
}
.paginacion a {
  color: black;
  float: left;
  padding: 8px 16px;
}
.paginacion a.activo {
  background-color: green;
  color: white;
}
.paginacion a:hover:not(.activo){
  background-color: gray;
}
.tooltip-container {
	position: relative;
	display: inline-block;
}
.tooltip-text {
	visibility: hidden;
	width: 120px;
	background-color: #000;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 125%; /* Posiciona el tooltip encima del elemento */
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
}
.tooltip-container:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.zelect {
    display: inline-block;
    background-color: white;
    min-width: 100%;
    cursor: pointer;
    line-height: 36px;
    border: 1px solid #dbdece;
    border-radius: 6px;
	position: relative;
}
.zelected {
	font-weight: bold;
    padding-left: 10px;
}
.zelected.placeholder {
	color: #999f82;
}
.zelected:hover {
	border-color: #c0c4ab;
    box-shadow: inset 0px 5px 8px -6px #dbdece;
}
.zelect.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.dropdownZelect {
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #dbdece;
  	border-top: none;
    position: absolute;
    left:-1px;
    right:-1px;
    top: 36px;
    z-index: 2;
    padding: 3px 5px 3px 3px;
}
.dropdownZelect input {
    font-family: sans-serif;
    outline: none;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dbdece;
    box-sizing: border-box;
    width: 96%;
    padding: 7px 0 7px 10px;
}
.dropdownZelect ol {
	padding: 0;
    margin: 3px 0 0 0;
    list-style-type: none;
    max-height: 150px;
    overflow-y: scroll;
}
.dropdownZelect li {
	padding-left: 10px;
}
.dropdownZelect li.current {
	background-color: #e9ebe1;
}
.dropdownZelect .no-results {
	margin-left: 10px;
}