/* --------------------------------------------------------------------------------------------- */
/* ########################################## SWITCH ########################################### */
/* --------------------------------------------------------------------------------------------- */
.switch { position: relative; display: inline-block; width: 54px; height: 22px; min-width: 54px; }
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #76c2ff;
  -webkit-transition: 0.4s;
  transition: 0.4s; }
.slider:before {
  position: absolute;
  content: "";
  height: 34px;
  width: 34px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px #2020203d;
  background: white url('../images/switch/sunny.png');
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center; }

input:checked + .slider { background-color: #ccc; }
input:focus + .slider { box-shadow: 0 0 1px #2196f3; }
input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
  background: #5c5c5c url('../images/switch/night.png');
  background-repeat: no-repeat;
  background-position: center; }