/* Extracted from the WordPress render of why-choose-me - inline <style id="wp-custom-css"> block #7.
   Kept in original document order so the cascade / execution order is unchanged. */
#fixed-box {
    position: fixed;
    z-index: 999;
   	width: 22%;
     animation: flicker 0.5s infinite;
  }

  @keyframes flicker {
    0%, 100% {
      background-color: #e74c3c; 
    }
    50% {
      background-color: #ff0000;
    }
  }

@media only screen and (max-width: 600px) {
   #fixed-box {
    width: 100%;
  }
}


//home page header keyboard settings
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #00A3FF;
    outline-offset: 3px;
    border-radius: 4px;
}

.menu-link:focus-visible {
    color: #00A3FF;
}
