.supportMenuItem {
    color:#2a6496  !important;
  }

  .bad_email {
    border: 1px solid #777;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    margin-bottom:10px;
    border-radius: 4px;
    outline-style: none;
    outline-width: 0px;
    width:100%;
    margin-top:5px;
  }

  input:focus {
    border:1px solid #bbb;
  }

  .bad_email {
    background-color: #faa;
    border:1px solid red;
  }

  .bad_email:focus {
    border:1px solid red;
  }
  .bad_email span {
    font-weight: bold;
  }

  #javascriptScreen {
    position:absolute;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.9);
    text-align: center;
    z-index: 1000;
    font-weight: bold;
  }

  #cover {
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.3);
    z-index: 1000;
    display:none;
  }

  #emailusdiv {
    text-align: left;
    padding:20px;
    color:black;
    background-color: white;
    border-radius: 5px;
    width:320px;
    margin:0 auto;
    position:relative;
    margin-top:200px;
    box-shadow: 0 4px 7px #555;
    cursor:default;
  }

  #emailusdiv div {
    color:blue;
    text-align: right;
    cursor: pointer;
    margin-top:10px;
  }

  .blueLink {
    background:none;
    float:none;
    border:none;
    color: rgb(0, 136, 204);
    font-size: 16px;
    cursor:pointer;
  }

  .blueLink:hover,
  .blueLink:focus {
    text-decoration: none;
    color:#bdf;
  }

  .notification {
    background-color: #FFF997;
    border:1px solid yellow;
    padding:10px;
    text-align:center;
    margin-bottom:20px;
  }

  .rounded { border-radius: 4px; }

  .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }

  .inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    display: inline-block;
  }

  .inputfile:focus + label,
  .inputfile + label:hover {
    background-color: #43CAFF;
    background-image:none;
  }

  .inputfile + label {
    cursor: pointer; /* "hand" cursor */
  }

  .inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
  }

  .inputfile + label * {
    pointer-events: none;
  }

  .flashClass {
    animation-name: flashAnimation;
    animation-duration:3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
  }

  @keyframes flashAnimation {
    from {
      background-color: #FFEF5C;
    }
    to {
      background-color: white;
    }
  }

  @keyframes spinner {
    0% {
      transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }

    100% {
      transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
  }

  .loading-spinner {
    animation-play-state: running;
    opacity: 1;
    position: relative;
    float:right;
    margin-right:8px;
  }

  .loading-spinner::before {
    animation: 1.5s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 3px #dedede;
    border-bottom-color: #43CAFF;
    border-radius: 50%;
    content: "";
    height: 30px;
    left: 50%;
    opacity: inherit;
    position: absolute;
    top: 50%; 
    transform: translate3d(-50%, -50%, 0);
    width: 30px;
    will-change: transform;
  }



  #resultsContainer .result input {
    display:none;
  }

  #messageResultsContainer {
    -webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: 0;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
  }

  #messageResultsContainer .result {
    cursor:pointer;
    border-radius: 5px;
    padding:7px;
    margin:0;
  }

   #messageResultsContainer .result:hover {
    background-color: #fafaff;
   }

   #messageResultsContainer input {
    margin-right:7px;
    cursor:pointer;
   }

   .greyedout {
    background-color:#aaa !important;
    background-image:none;
   }
