.opacidad{
	text-align: center;
	background-color: rgb(214, 219, 223); 
	margin-top:20px;
}

   .avatar{
     display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--mainBrandColor);
}
 
.avatar.small{
    width: 30px;
    height: 30px;
    color: white;
}
.avatar.medium{
    width: 60px;
    height: 60px;   
}
.avatar.big{
    width: 80px;
    height: 80px;
    color: white;
} 
.text-mayuscula{
    text-transform: uppercase;
}
    @media only screen and (max-width: 700px) {
      video {
        max-width: 100%;
      }
    }
    .loading_new {
        justify-content: center;
        align-items: center;
        transition: 1s all;
        opacity: 0;
        width: 100%;
        height:100px;
    }
    .loading_new.show {
        
        opacity: 1;
    }
    .loading_new .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);
      }
    }
    
    

/*-------------------- Form Login --------------------*/
.form-login fieldset {
   border: none;
   padding: 0;
   margin: 20px 0;
   position: relative;
}
.form-login fieldset input {
   width: 100%;
   height: 48px;
   color: #333;
   padding: 15px 40px 15px 15px;
   border-radius: 5px;
   font-size: 14px;
   outline: none !important;
   border: 1px solid rgba(0, 0, 0, 0.3);
   box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
   vertical-align: top;
}
.form-login button {
   width: 100%;
   outline: none !important;
  /* background: linear-gradient(-5deg, #79b52c, #94d63d);*/
   border: none;
   text-transform: uppercase;
   font-weight: bold;
   box-shadow: 0 3px 0px rgba(115, 136, 89, 0.2);
   text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.error-msg-login {
    color: red;
 }

/*-------------------- Login --------------------*/
.login {
   z-index: 1;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
   overflow: hidden;
   display: flex;
}
.login-classic {
   width: 100%;
   padding: 30px 50px;
}

.login-classic h2 {
   font-size: 16px;
   font-weight: normal;
   margin-top: 23px;
   margin-bottom: 43px;
   text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/*-------------------- Progress Bar File Upload --------------------*/
.progress-wrp {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  height: 30px;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

.progress-wrp .progress-bar {
  height: 100%;
  border-radius: 3px;
  /*background-color: #0099CC;*/
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

.progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

#progress-upload-group {
   background-color: #FFFFFF;
   overflow-y: scroll;
   max-height: 230px;
   text-align: justify;
   padding-right: 10px;
   padding-left: 10px;
}

/*-------------------- Modal View Content --------------------*/
.modal-body .data-show-content {
  overflow-y: scroll;
  height:300px;
  text-align: justify;
  padding: 5px;
  padding-right: 10px
}