
.button_translate  {
 position: fixed;
right: 18%;
top:0%;
width: 200px;

 
}
.en{


  font-family: abel;
  color:#333;

}

.es{


  font-family: abel;
  color:#00a1ff;
}

.check{
   position:relative;
   width:50px;
   background: #FA9B83;
   margin-left: 0px;

}

.check:before{
  content:'';
  position:absolute;
  width :50px;
  height:20px;
  border-radius:20px;
  background: #DFD7D5;
}

.check:after{
  content:'';
  position:absolute;
  left: 0px;
  width :20px;
  height:20px;
  background:#fff;
  border-radius:20px;
  transition:0.25s;
  border:2px solid #333;
  box-sizing : border-box;
  }
.check:checked:after{
  left:25px;
  border:2px solid #00a1ff;
}


.check:checked:before{
   background :#00a1ff;
}
.dives{
   background:#DF4119;
   padding:25px;
   display:none;

}