/*

  Moving arrow down css

*/

      .bounce {
        display: inline-block;
        position: relative;
        -moz-animation: bounce 1s infinite linear;
        -o-animation: bounce 0.5s infinite linear;
        -webkit-animation: bounce 1s infinite linear;
        animation: bounce 1s infinite linear;
        colr:000;
      }
      @-webkit-keyframes bounce {
          0% { top: 0; }
          50% { top: -0.2em; }
          70% { top: -0.3em; }
          100% { top: 0; }
      }
      @-moz-keyframes bounce {
          0% { top: 0; }
          50% { top: -0.2em; }
          70% { top: -0.3em; }
          100% { top: 0; }
      }
      @-o-keyframes bounce {
          0% { top: 0; }
          50% { top: -0.2em; }
          70% { top: -0.3em; }
          100% { top: 0; }
      }
      @-ms-keyframes bounce {
          0% { top: 0; }
          50% { top: -0.2em; }
          70% { top: -0.3em; }
          100% { top: 0; }
      }
      @keyframes bounce {
          0% { top: 0; }
          50% { top: -0.2em; }
          70% { top: -0.3em; }
          100% { top: 0; }
      }




.forum_button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4a742;
  border: none;
  color: black;
  text-align: center;
  font-size: 28px;
  padding: 5px;
  width: 220px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.forum_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.forum_button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.forum_button:hover span {
  padding-right: 25px;
}

.forum_button:hover span:after {
  opacity: 1;
  right: 0;
}


