.dsi-background{
    background-image:url('#APP_IMAGES#fondo-prov.JPG');
    background-color: #fff;    
    background-size: cover;
    background-position: center;
}

.t-Login-container{
    max-width:80% !important;
}


.t-Body-wrap {
    margin: 30px 0; 
}

div#panel-1{ 
    background: rgba(255, 255, 255, 0.69) !important;
    border-radius: 5px;
}

.dsi-footer {
    background-color: #000;
    height: 45px;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.footer-info ul li{
        list-style: none;
        float: left;
    margin-right: 20px;
    color: #fff;
    font-size: 12px;
}

div#bttn-login{
width: 90%;
margin: 0 auto;
}

button#login-bttn {
    float: right !important;
    width:100%;
    font-weight: bold;
    background-color: #0090D1;
    color: #fff;
    margin-top:15px;
}

button#login-bttn:hover{
    background-color: #0198DD;
}


button#cambio-email-bttn span,
button#restore-pass-bttn span,
button#register-bttn span {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.49);
}

button#cambio-email-bttn span:hover,
button#restore-pass-bttn span:hover,
button#register-bttn span:hover {
    color: rgb(0, 131, 197);
}

/*button#register-bttn {
    margin-top:10px;
    margin-left: 55px;
    padding-top: 0px;
    padding-bottom: 0px;
}

button#restore-pass-bttn{
    margin-top:10px;
    margin-left: 30px;
    padding-top: 0px;
    padding-bottom: 0px;
}*/

div#region-bttn button {
   /* float: left;
    min-width: 30%;*/
}

button#cambio-email-bttn:hover,
button#register-bttn:hover,
button#restore-pass-bttn:hover{
        box-shadow: none !important;
}

div#region-bttn {
    margin-top: 10px;
    border-top: 1px solid #8E8E8E;
    text-align: center;
}

button#cambio-email-bttn span,
button#restore-pass-bttn span, 
button#register-bttn span {
    font-weight: bold;
    /*color: #4f9fcf;*/
    color:rgba(0, 0, 0, 0.68);
}


.left-region .t-Region-headerItems--title {
    border-bottom: 1px solid #8E8E8E;
}


span.dsi-note {
    font-size: 11px;
    font-style: italic;
    padding-left: 10px
}


.t-Form-inputContainer span.display_only:hover{
    background :transparent !important;
}

span.display_only {
    font-size: 11px !important;
    font-style: italic !important;
    padding-left: 10px !important;
    font-weight: normal !important;
    margin-left: 25% !important;
}

/*div#dsi-login-field {
    margin-top: 10px;
    width: 320px;    
}*/
div#dsi-login-field {
    margin-top: 10px;
    width: 100%;
    padding: 0 15px;
}


#dsi-login-field .t-Form-labelContainer, 
#dsi-login-field .t-Form-inputContainer {
    padding: 0 5px;
}


.dsi-desarrollado-por {
    float: right;
}

.dsi-desarrollado-por p {
    float: left;
    margin: 0px;
    padding: 4px 5px 0 0;
    color: #fff;
    font-size: 10px;
}

div#login-info-panel {
    background: rgba(64, 64, 64, 0.45);
    padding: 15px;
    margin-left: 15px;
    border-radius: 5px;
}

div#login-info-panel{
/*font-family: 'Source Sans Pro', sans-serif;*/
}

div#login-info-panel h1 {   
    color:#fff;
    font-weight: 100;
    font-size:50px;
}

div#login-info-panel h1 strong {
    color: rgb(16, 191, 0);
font-weight: bold !important;
}


div#login-info-panel p{
    letter-spacing: normal;
    /*margin-bottom: 30px;*/
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 24px;   
}

ul.info-3.fade-in.three {
    margin: 0 40px;
}
ul.info-3.fade-in.three li {
    color: #fff;
    font-style: italic;
    font-weight: bold;
}

.delay2 {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}



/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}

.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}

.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

/*---make a basic box ---*/
.box{
width: 100px;
height: 100px;
position: relative;
margin: 10px;
color: white;
padding: 40px;  
float: left;
border: 1px solid #fff;
background: #27a5d2;
border-radius: 10px;
}


/********************************notificaciones*************************/
.info-alert  {
    background-color: rgba(255, 86, 76, 0.81);
    border-radius: 5px;
    color: #fff;
}

.info-informative {
    background-color: rgba(145, 189, 245, 0.79);
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}


.info-informative .logo.col.col-3,
.info-alert .logo.col.col-3 {
    font-size: 66px;
    text-align: center;
    margin-top: 11px;
}

.info-informative .logo.col.col-3{
     font-size: 55px;
    text-align: center;
    margin-top: 11px;
}


.info-alert .col.col-12 a {
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
}


.info-informative .col.col-12 a{
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.info-informative .col.col-12,
.info-alert .col.col-12 {
    text-align: right;
    margin-bottom: 11px;
}

.info-offline-panel {
    width: 90%;
    margin: 0 auto;
}

.info-offline {
    background: rgba(255, 204, 0, 0.67);
    margin: 15px 0;
    border-radius: 5px;
}

.info-offline .logo {
    font-size: 40px;
    text-align: center;
    padding-top: 20px;
}

.info-offline p {
    font-size: 13px;
}

/*******Vencimientos***************************/



body{
    background: #ecf0f1;
}

#container-main{
    margin:40px auto;
    width:95%;
    min-width:320px;
    max-width:960px;
}

#container-main h1{
    font-size: 40px;
    text-shadow:4px 4px 5px #16a085;
}

.accordion-container {
    width: 100%;
    margin: 0 0 20px;
    clear:both;
}

.accordion-titulo {
    position: relative;
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 300;
    background: #0190d1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

div.accordion-content p {
    font-size: 11px;
}

.accordion-titulo.open {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.accordion-titulo.open {
    background: #0198DD;
    color: #fff;
}
.accordion-titulo:hover {
    background: #0198DD;
}

.accordion-titulo span.toggle-icon:before {
    content:"+";
}

.accordion-titulo.open span.toggle-icon:before {
    content:"-";
}

.accordion-titulo span.toggle-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 38px;
    font-weight:bold;
}

.accordion-content {
    display: none;
    padding: 10px 20px;
    overflow: auto;
        background: #fff;
        border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.accordion-content p{
    margin:0;
}

.accordion-content img {
    display: block;
    float: left;
    margin: 0 15px 10px 0;
    width: 50%;
    height: auto;
}


.dsi-table table tbody tr th {
    background: #FFF;
    color: #666 !important;
    font-size: 12px !important;
    line-height: 16px;
    padding: 8px 12px 8px 12px;
    font-weight: 700;
}


.dsi-table table tbody tr td {
    font-size: 12px !important;
    color: #393939;
    line-height: normal;
    border: 1px solid #dadada !important;
    cursor: auto !important;
    vertical-align: middle;
    padding: 6px 10px;
    text-align: center;
    margin: 0;
    width: 25%;
}

.dsi-descarga a {
    color: #656565;
}
.dsi-descarga {
    text-align: right;
    padding: 10px 10px 0 0;
}



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

@media (max-width: 767px) {
    .accordion-content {
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
  .dsi-desarrollado-por p {
    display: none;
  }
}
