@charset 'UTF-8';
/* Slider */

.btn-style-flatOutline {

  color: white;
  border: 2px solid #f8981d;
  border-radius: 10%;
  font-size: 13px;
  padding: 15px 32px;
}

input[type='checkbox'] {
  display: none;
}
input[type='checkbox']:checked ~ .toggle {
  background: #009688;
  left: 30px;
  transition: .5s;
}
input[type='checkbox']:checked ~ .switch {
  background: #6DBEB7;
  transition: .5s;
}

.switch {
  display: block;
  width: 50px;
  height: 25px;
  background: #939393;
  border-radius: 20px;
  position: absolute;
  top: 0;
  transition: .5s;
}

.toggle {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: -3px;
  left: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: .5s;
}

.togcard {
  display: inline-block;
  margin: 10px;
  width: 15px;
  height: 20px;
  text-align: center;
  position: relative;
}

#switch2:checked ~ .toggle {
  background: #3F51B5;
}
#switch2:checked ~ .switch {
  background: #9CA5D7;
}


