/*tamaño de letra general*/
html {
    font-size: 14px;
}

body {
    background-color:#eee
}

.text-white {
    color: white;
}

.text-white-b {
    color: white;
    font-weight: bold;
}

.text-navy {
    color: navy;
}
.text-navy-b {
    color: navy;
    font-weight: bold;
}

.text-blue {
    color: blue;
}
.text-blue-b {
    color: blue;
    font-weight: bold;
}

.text-red {
    color: red;
}
.text-red-b {
    color: red;
    font-weight: bold;
}

a { 
    /* <a href ... sin decoración */
    text-decoration: none;  
}

fieldset{
    /*Bordes de todos los fieldsets ... el "!important" hace que tome este valor después de los de bootstrap por defecto*/
	webkit-border-radius:10px !important;  
	moz-border-radius:10px !important;  
	border-radius:10px !important;  
    margin-left: 15px !important;  
    border: 1px solid lightblue !important;  
}

.cursor-pointer {
    /*Pone el cursor en pointer*/
    cursor: pointer; 
}

/* Cambiar opciones de tooltip */
.tooltip-inner {
    background-color: #2f4fff;
    text-align: justify;
    width: auto !important;
    opacity: 1.0 !important;
}

/* opciones checkbox chequeado*/
.form-check-input:checked {
    background-color: #0d6efd; /* Change this color as needed */
    border-color: #0d6efd;
}

/*popup para ampliar fotos*/
#popup_foto a, #popup_foto a:visited {
	position: relative;
}
#popup_foto a span {
	display: none;
}
#popup_foto a:hover span {
	display: block;
	position: absolute;
	top: -70px;
	left: 30px;
    border: 1px solid grey;
    background: SteelBlue;
    padding: 3px;
    color: white;
}
