/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

 #login{
  width: 30%;
  margin: auto;
  padding: 80px 20px;
}
a.logo {
  font-size: 24px;
  color: #f2f2f2;
  float: left;
  margin-top: 1px;
  text-transform: uppercase;
}


#sidebar {
  width: 170px;
  height: 800px;
  position: absolute;
  background: #2f323a;
  /*
  position: -webkit-sticky;
position: sticky;
top: 20px;
position: absolute;
top: 50px; 
width: 180px;

  background: #2f323a;
  */
}

#sidebar h5 {
  color: #f2f2f2;
  font-weight: 500;
}

.img-circle{
  border-radius:50%;
  padding: 6px 2px;
}

.centered {
  text-align: center;
}

#paneladmin{

  margin-top: 15px;
  margin-left: 200px;

}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  
}

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%;
}

.bg_color{
  width: 6000px;
  height: 60%;
  background: #13032d;
  position: absolute;
  top: 0;
}

.wave{
  width: 6000px;
  height: 100%;
  position: absolute;
  top: 150px;
  left: 0;
  background-image: url('/static/img/svgF.svg');
  background-position: bottom;
}

.w1{
  animation: w1 12s linear infinite;
}

.w2{
  animation: w2 12s linear -.25s infinite, desplazamiento 12s ease -.25s infinite;
  opacity: 0.5;
}

@keyframes w1 {
  0%{
      margin-left: 0;
  }
  100%{
      margin-left: -1600px;
  }
}

@keyframes w2 {
  0%{
      margin-left: 0;
  }
  100%{
      margin-left: -1600px;
  }
}

@keyframes desplazamiento {
  0%, 100%{
      transform: translateY(-25px);
  }

  50%{
      transform: translateY(10px);
  }
}