@charset "UTF-8";

@font-face {
  font-family: "tweetSelection";
  src: url("fonts/tweetSelection.eot");
  src: url("fonts/tweetSelection.eot?#iefix") format("embedded-opentype"),
       url("fonts/tweetSelection.woff") format("woff"),
       url("fonts/tweetSelection.ttf") format("truetype"),
       url("fonts/tweetSelection.svg#t") format("svg");
  font-weight: normal;
  font-style: normal;
}

@keyframes pop-upwards {
  0% {
    transform: matrix(.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }

  20% {
    transform: matrix(.99, 0, 0, 1, 0, 2);
    opacity: .7;
  }

  40% {
    transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }

  70% {
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }

  100% {
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

.tweet-selection {
  border-radius: 4px;
  margin-left: -35px;
  background: #14485f;
  color: #FFF;
  width: 65px;
  height: 35px;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease-out;
  opacity: 0;
  animation: pop-upwards 180ms forwards linear;
}

.tweet-selection:after {
  border: 8px solid;
  border-color: #14485f transparent transparent;
  margin-top: 0;
  margin-left: -7px;
  left: 50%;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  transition: border-color 180ms ease-out;
}

.tweet-selection:hover:after {
  border-color: #55acee transparent transparent;
}

.tweet-selection:before {
  font: normal normal normal 18px/39px "tweetSelection";
  display: block;
  width: 65px;
  height: 35px;
  text-align: center;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "t";
}

.tweet-selection:hover {
  background: #55acee;
}
