.switch-wrap{
  position: absolute;
  top: 20px;
  right: 20px;
  box-sizing: content-box;
}


/* Hide default HTML checkbox */
.switch-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch{
  height: 50px;
  width: 50px;
  cursor: pointer;
  animation: 0.2s linear 0s 1 normal none running rotateLeft;
  transition: ease-in;
}

@media (max-width:840px){
  .switch{
    height: 40px;
    width: 40px;
  }
}
