/* VISOR DE FACTURA */
.FacturaVisorFondo{
    width: 100%;
    float: left;
    background: #515558;
}

.FacturaVisor{
    background: #ffffff;
    width: 60%;
    padding: 2%;
    margin: 3% 18%;
    float: left;
    border-radius: 7px;
    border: 1px solid #282923;
}

label.requerido:after
{
  color: #f92659;
  content: " *";
}

p.mensaje-error{
	color: #e74a3b;
	text-align: center;
}

::-webkit-scrollbar
{
	-webkit-appearance: none;
	width: 11px;
}
::-webkit-scrollbar-thumb
{
	border-radius: 0px;
	background-color: #396d85;
	-webkit-box-shadow: 0 0 1px #396d85;
	border-radius: 5px;
}

/* CARGANDO */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 1s all;
    opacity: 0;
}
.loading.show {
    opacity: 1;
}
.loading .spin {
    border: 3px solid hsla(185, 100%, 62%, 0.2);
    border-top-color: #3cefff;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
        transform: rotate(360deg);
	}
}

.g-recaptcha{
    margin: 1px auto !important;
    width: auto !important;
    height: auto !important;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -o-center;
    text-align: -ms-center;
}

/* MAYUSCULAS EN LOS CAMPOS */
div.texto-escondido{
    font-size: 1px;
}

