/***********
            contenedor para flex y modal
***********/
@import url('https://fonts.googleapis.com/css?family=Righteous&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    font-family: "Helvetica neue", sans-serif;
}

.ingresos_container, .ingresos_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 99999999;
    display: none;
    
}

.ingresos_container {
    background: rgba(0,0,0,.8);
}

#container-login{
    display: none;
}

.ingresos_flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ingresos_login {
    position: relative;
    margin: auto;
    border-radius: 2px;
    background: white;
}

.close-modal-CX5{
  float: right;
  margin-top: -30px;
  margin-right: 30px;
  font-weight: 800;
  color: var(--activo);
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.anime-close{
  margin-right: -15px;
  margin-top: -38px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;

  color: #fff;
  background: var(--activo);
}

/* checkbox */

.container-saldo {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
  }
  
  /* Hide the browser's default checkbox */
.container-saldo input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container-saldo:hover input ~ .checkmark {
    background-color: var(--activo);
  }
  
  /* When the checkbox is checked, add a blue background */
  .container-saldo input:checked ~ .checkmark {
    background-color: var(--activo);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container-saldo input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container-saldo .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #container-saldo-reset{
    display: none;
  }

.ingresos_wd25 { width: 30%; }

.ingresos_wd50 { width: 50%; }

.ingresos_wd60 { width: 60%;}

.ingresos_wd80 { width: 80%;}

.ingresos_wd99 { width: 99%; }