/* CSS Document */

:root{
	
	--main: #E4E1D5;
	--texto: #3A5B7B;
	--subtexto: #93B5B7;
	--rellenos: #B49381;
	--remarcado: #EC9109;
	
}


.container-general{

	width: 80%;
	max-width: 80%;
	padding: 35px;
	color: var(--texto);
	font-size: 18px;
	font-weight: 600;
	margin-left: 20%;
	background-color: #E5E5E5;
	
}

.areaControl{
	
	min-width: 100%;
	max-width: 100%;
	min-height: 40px;
	overflow: auto;
	display: flex;
	flex-direction: row;
	
}

.secControl{
	
	margin-right: 10px;
	min-width: 180px;
	max-width: 180px;
	min-height: 100%;
	
}

.barra{
	
	width: 100%;
	height: 15px;
	border-radius: 5px;
	background-color: #F8F8F8;
}

.barraComplete{
	
	background-color: var(--texto);
}

.btnControl{
	
	border: none;
	border-radius: 5px;
	width: 130px;
	height: 40px;
	outline: none;
	background-color: var(--subtexto);
	color: #FFFFFF;
	
}

.docUploaded{

	background-color: var(--subtexto) !important;
	color: #FFFFFF;
	padding: 5px;
	border-radius: 5px;
	
}

.btnUpload{
	
	border: none;
	border-radius: 5px;
	max-width: 45px;
	height: 30px;
	outline: none;
	background-color: var(--subtexto);
	background-image: url("../img/iconos/upload.svg");
	background-size: 25px 40px;
	background-position: center;
	background-repeat: no-repeat;
	color: #FFFFFF;
	
}

.btnMulti{
	
	border: none;
	border-radius: 5px;
	width: 45px;
	height: 30px;
	outline: none;
	background-color: var(--subtexto);
	background-image: url("../img/iconos/upload.svg");
	background-size: 25px 40px;
	background-position: center;
	background-repeat: no-repeat;
	color: #FFFFFF;
}

.secCheck{
	
	display: flex;
	flex-direction: row;
	align-content: flex-end;
	justify-content: flex-end;
	
}

.secCheck label{
	
	display: inline-flex;
	
}

.secCheck input[type='checkbox']{
	
	display: inline-flex;
	margin-right: 15px;
	
}

.btnControl:hover{
	
	cursor: pointer;
	outline: 2px solid var(--rellenos);
	
}

.btnUpload:hover{
	
	cursor: pointer;
	outline: 2px solid var(--rellenos);
	
}

.btnMulti:hover{
	
	cursor: pointer;
	outline: 2px solid var(--rellenos);
	
}

.rowDoc{
	
	display: flex;
	flex-direction: column;
	align-content: center;
	
}

.rowLabelBtn{
	
	display: flex;
	flex-direction: row;
	align-content: center;
	
}

.rowDoc button{
	
	display: inline-flex;
	
}

.labelTituloInput{
	
	display: inline-flex;
	min-width: calc(100% - 45px);
	max-width: calc(100% - 45px);
	
}

.effectPar {
  
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

.loader-page {
    position: absolute;
    z-index: 25000;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
  }
  .loader-page::before {
    content: "";
    position: absolute;
    border: 2px solid rgb(50, 150, 176);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176,0);
    border-top: 2px solid rgba(50, 150, 176,0);
    animation: rotarload 1s linear infinite;
    transform: rotate(0deg);
  }
  @keyframes rotarload {
      0%   {transform: rotate(0deg)}
      100% {transform: rotate(360deg)}
  }
  .loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(50, 150, 176,.5);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
  }