.page-link{
  color: white;
}

.childA{
  animation: left-to-rightA 1s ease-in-out forwards  ;
}

.childR{
  animation: left-to-rightR 1s ease-in-out forwards  ;
}

@keyframes left-to-rightA{
  100%{
    transform:  translateX(150%) ;
    background-color: #1cc95e;
  }
}

@keyframes left-to-rightR{
  100%{
    transform:  translateX(150%) ;
    background-color: #c91c1c;
  }
}

.big-checkbox {width: 20px; height: 20px;}

.pagination{
  margin: auto;
width: 80%;
padding: 10px;
}

/* #back{background-color: rgb(47, 157, 221);} */

#back{background-color: darkdarkblue;}
    
h2 {

  color: white;
}

#asd {

    color: grey;
}

#close {

    color: grey;
}

.espacio {

    color: #f8f9fa
    ;
}

#bar {
  /* background-color:  #1C658C; */
  background-color: darkblue;
  border-radius:  10px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.colordropdown {
  background-color: 
  #ffffff;
}

.table{
  background-color: darkblue;
}

body{
  /* background-color:  #398AB9 */
  background-color: darkblue
}

table {
    border: 1px solid white;
    table-layout: fixed;
    
  }
  
  /* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }