.button-tipo-pago{
  border: 1px solid #28a745;
  border-radius: 0.25rem;
  padding: .375rem .75rem;
}

.button-tipo-pago:hover{
  cursor:  pointer;
  background-color: #28a745;
  color:  #fff;
}

.button-tipo-pago-isClicked{
  background-color: #28a745;
  color:  #fff;
}

a:link {
	text-decoration: none;
	color: black;
}

.metodo-pago-detalle-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*ESTILOS LOGIN*/
.inputLogin{
	max-width: 350px;
}
.divLogin{
	margin: auto;
	/*background: yellow;*/
	max-width: 350px;
}
.contenedorLogin{
	background: rgba(251, 252, 252, 0.5);
}
.botonLogin{
	width: 280px;
	max-width: 280px;
}
/*FIN ESTILOS LOGIN*/

/*ESTILOS HOME*/
.contenedorTotal{
	background: rgba(245, 250, 248, 0.62);
}
.btnMenu{
	background: #FFFFFF;
}
.imgMenu{
	max-width: 80px;
}
.btnCaja:hover{
	cursor: pointer;
}
/*FIN ESTILOS HOME*/
/*ICONOS GOOGLE*/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px !important;  /* Preferred icon size */
  display: inline-block !important;
  line-height: 1 !important;
  text-transform: none !important;
  letter-spacing: none !important;
  word-wrap: normal !important;
  white-space: nowrap !important;
  direction: ltr !important;
  position: fixed !important;
  position: relative !important;
  float: left !important;
}
  /*FIN ICONOS GOOGLE*/

  /*ESTILOS CAJA*/
  .inputCajaBP{
  	width: 230px;
  	max-width: 230px;
  	display: inline-block !important;
  	border: 1px solid gray;
  	border-radius: 5px;
  	height: 40px;
  }
  .inputCajaBPR{
  	width: 205px;
  	max-width: 205px;
  	display: inline-block !important;
  	border: 1px solid gray;
  	height: 40px;
  }


  .inputCajaDetalle{
  	width: 310px;
  	max-width: 310px;
  	display: inline-block !important;
  	border: 1px solid gray;
  	height: 40px;
  }

  .inputCajaCantidad{
  	width: 90px;
  	max-width: 90px;
  	display: inline-block !important;
  	border: 1px solid gray;
  	height: 40px;
  }
  @media (min-width: 1200px) and (max-width: 1340px) {
  	.CajaCantidad{
  		max-width: 200px !important;
  	}
  	.CajaDetalle{
  		max-width: 400px !important;
  	}
  	.CajaCodigo{
  		max-width: 400px !important;
  	}
  }
  /*FIN ESTILOS CAJA*/

  /*ESTILOS ARQUEO*/
  .inputArqeoFecha{
      width: 230px !important;
      max-width: 230px !important;
      display: inline-block !important;
      border: 1px solid gray !important;
      border-radius: 5px;
      height: 40px !important;
    }
  /*FIN ESTILOS ARUQO*/

  /*ESTILOS RUTAS*/

  .inputRutaHora{
      width: 102px !important;
      max-width: 102px !important;
      display: inline-block !important;
      border: 1px solid gray !important;
      border-radius: 5px !important;
      height: 40px;
    }
  
  /*FIN ESTILOS RUTAS*/

  /*ESTILOS INFORMES*/
  .contInfVta{

  }
  /*FIN ESTILOS INFORMES*/

  /*ESTILOS CUENTAS CORRIENTES*/
  .icon-update-products-list:hover{
    cursor: pointer;
  }
  .list-code-result{
    position: absolute; 
    background-color: white; 
    width: 240px;
    border: thin solid;
    border-radius: 5px;
    padding: 2px;
  }
  .spinner-get-descuentos-cuentas{
     top: 65px; 
     bottom: 0; 
     left: 0; 
     right: 0; 
     width: 100%; 
     position: absolute; 
     background-color: rgba(169,169,169,0.7);
     display: flex; 
     justify-content: center; 
     align-items: center; 
     z-index: 1;
  }
  .inputCajaAddDescuento{
    width: 230px;
    max-width: 230px;
    display: inline-block !important;
    border: 1px solid gray;
    border-radius: 5px;
    height: 40px;
    margin-bottom: 0 !important;
  }
  .addDescuentoContainer{
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
    background-color: #F4F6F6;
    margin-left: 5px;
    width: 420px;
    max-width: 600px;
  }
  .addDescuentoContainer input:first-child{
    width: 120px;
    max-width: 120px;
  }
  .addDescuentoContainer input[id^="porcDescuento"]{
    width: 140px;
    max-width: 140px;
  }

  .icon-add-descount:hover{
      cursor: pointer;
  }

  .inputError{
    border-color: red;
  }
  .inputError::placeholder{
    color:  red;
  }
  /*FIN ESTILOS CUENTAS CORRIENTES*/

/*OBSERVACIONES DE DEVOLUCIONES*/
.observationsContainer{
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #FFFFFF;
  display: none;
  -webkit-animation: showObservations 0.2s ease-out forwards;
  -moz-animation: showObservations 0.2s ease-out forwards;
  animation: showObservations 0.2s ease-out forwards;
  animation: showObservations 0.2s ease-out forwards;
  will-change: opacity;
  border-radius: .3rem;
}
.observationsContainerBody{
  display: none;
  height: 100%;
  grid-template-rows: 40px 1fr;
  gap: 10px;
}  

@keyframes showObservations {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hideObservations {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.hideObservations {
  animation: hideObservations 0.2s ease-out forwards;
}

.observationsContainerHeader{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.observationsFilterAndDataContainer{
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.material-icons:not(#noneDataIcon):hover{
      cursor: pointer;
}

.addObservationsSection{
  display: flex;
  flex-direction: column;
  gap: 10px;
  button {
      width: max-content;
      align-self: center;
  };
  textarea{
    width: 100%;
  	display: inline-block !important;
  	border: 1px solid gray;
  	border-radius: 5px;
  	height: 100px;
    padding: 5px;
    &::placeholder{
      font-style: italic;
    }
  }
}

.observationsDataContainer{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.observationCard{
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 30px 1fr 30px;
  box-shadow: 0px 0px 9px 0px rgba(212,212,212,0.8);
  -webkit-box-shadow: 0px 0px 9px 0px rgba(212,212,212,0.8);
  -moz-box-shadow: 0px 0px 9px 0px rgba(212,212,212,0.8);
  header{
      background-color: #ffc107;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
  };
  section{
      display: flex;
      justify-content: start;
      align-items: center;
      text-align: start;
      padding: 10px;
      border: 1px solid #ffc107;
      border-top: none;
      border-bottom: none;
  };
  footer{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      border: 1px solid #ffc107;
      border-top: none;
      padding: 10px;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
  };
}

.observationEmpty{
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #000;
  border: 1px solid #bdbdbd;
  border-radius: 15px;
  #noneDataIcon{
    font-size: 48px !important;
    color: #a6acaf;
    
    
  }
}

.loadingData{
  position: absolute;
  background: #fff;
  width: 100%;
  min-height: 100%;
  z-index: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  animation:  0.2s ease-out forwards;
}

.hideLoading{
  animation:  hideLoading 0.2s ease-out forwards;
}



@keyframes hideLoading {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* FIN OBSERVACIONES DE DEVOLUCIONES*/