.admin-information {
    background-image: url(/javax.faces.resource/images/pages/login/fondo.webp.xhtml) !important;
    background-size: cover;
}

.form-group input {
    background-color: cornsilk !important;
}

.loading-spinner {
    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;

}

.status-dialog {
    background-color: rgba(1, 1, 1, 0) !important;
    border: none !important;
    box-shadow: none !important;
}

.loading-spinner.show-spinner {
    border-radius: 50%;
    position: relative;
    width: 52px;
    height: 52px;
    opacity: 1;
}

.loading-spinner .spin {
    border: 10px solid rgba(46, 136, 255, 0.25);
    border-top-color: #2E88FF;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    animation: spin 1s linear infinite;

}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.login-content {
    border-radius: 6px;
    background-color: rgba(37, 39, 41, 0.97);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    padding: 128px 50px;
    text-align: center;
}

.login-wrapper {
    text-align: center;
    width: 350px;
    min-height: 440px;
    padding: 50px 20px;
    margin: 10% auto 0 auto;
    border-radius: 2px;
    background: #ffffff;
    box-sizing: border-box;
}

.welcome-information h1 {
color: #ffffff;
font-size: 3em;
margin-bottom: 0;
}

.welcome-information h2 {
color: #ffffff;
font-size: 2em;
margin-bottom: 0;
}

.welcome-information span {
color: #ffffff;
font-size: 1.5em;
}

.form-group {
width: 100%;
position: relative;
}

.form-group span {
position: absolute;
top: 17px;
left: 12px;
color: #000000;
font-size: 1.3em;
}

.form-group .ui-inputnumber {
position: initial;
}

.form-group input {
width: 100%;
margin: 12px 0;
padding: 25px 12px 6px;
border-radius: 2px;
border: solid 1px #d8dadc;
background-color: #ffffff;
}

.p-grid {
margin-left: 2.7em !important;
margin-right: 2.7em !important;
}

.welcome-information .exception-wrapper .exception-content {
background-color: rgba(37, 39, 41, 0.8) !important;
}

.select-mb {
padding: 5px 12px;
border-color: #c1c1c1;
box-shadow: none;
display: block;
width: 100%;
height: 28px;
font-size: 12px;
line-height: 1.428571429;
color: #555;
vertical-align: middle;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
font-family: 'Roboto', sans-serif;
text-transform: none;
margin: 0;
box-sizing: border-box;
background-color: aliceblue;
padding-left: 1px;
}

@media (max-width: 992px) {
.exception-body .exception-wrapper .exception-content {
padding: 30px 0 !important;
}
}

@media (max-width: 600px) {

.logo_extendido {
display: none;
}

.logo_corto {
width: 95px;
}

}

@media (min-width: 601px) {

.logo_extendido {
width: 400px;
}

.logo_corto {
display: none;
}

}

/***********************
****** SLIDESHOW *******
************************/

* {box-sizing: border-box}
body {font-family: 'Roboto', sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev {
    left: 0;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    left: 5%;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #2E88FF;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 3.5s;
    animation-name: fade;
    animation-duration: 3.5s;
}

@-webkit-keyframes fade {
    from {opacity: .001}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .001}
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}