/* This will hide the blinking cursor when the user clicks on the input */
#searchbox input:focus + .blinking-cursor {
  visibility: hidden;
}

#searchbox input:not(:placeholder-shown) + .blinking-cursor {
  visibility: hidden;
}

.blinking-cursor {
  font-weight: 100;
  font-size: 30px;
  color: #2e3d48;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: rgba(239, 211, 7, 0.7);
  }
}

@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: rgba(239, 211, 7, 0.7);
  }
}

@-webkit-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: rgba(239, 211, 7, 0.7);
  }
}

@-ms-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: rgba(239, 211, 7, 0.7);
  }
}

@-o-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: rgba(239, 211, 7, 0.7);
  }
}
