.animate-blink {
animation: blink 0.7s step-end infinite;
}
@keyframes blink {
50% { opacity: 0; }
}


/*Theme toggle switch*/
.switch {
  font-size: 15px;
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #73C0FC;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px; 
  border-radius: 20px;
  left: 2px;
  bottom: 2px;
  z-index: 2;
  background-color: #e8e8e8;
  transition: .4s;
}

.sun svg {
  position: absolute;
  top: 4px;     
  left: 30px;   
  z-index: 1;
  width: 20px;  
  height: 20px;
}

.moon svg {
  fill: #73C0FC;
  position: absolute;
  top: 4px;     
  left: 4px;    
  z-index: 1;
  width: 20px;
  height: 20px;
}

.sun svg {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.moon svg {
  animation: tilt 5s linear infinite;
}

@keyframes tilt {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.input:checked + .slider {
  background-color: #183153;
}

.input:focus + .slider {
  box-shadow: 0 0 1px #183153;
}

.input:checked + .slider:before {
  transform: translateX(24px);
}