.quote-tweet-popup {
    background: #55ACEE url(/wp-content/plugins/quote-tweet/images/twitter_logo_sm.png) no-repeat center center;
    position: absolute;
    width: 60px;
    /* ml = half of width to center */
    
    margin-left: -30px;
    height: 60px;
    margin-top: -75px;
    display: none;
    cursor: pointer;
    color: white;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: rgba(255, 255, 255, 0.5) 1px 1px 1px;

    animation: .5s fadeIn;
    -webkit-animation: .5s fadeIn;
    -moz-animation: .5s fadeIn;
}
.quote-tweet-popup:after {
    content: "";
    position: relative;
    border: 5px solid transparent;
    border-top-color: #55ACEE;
    bottom: -60px;
    margin: 0 auto;
    width: 1px;
    display: block;
}

::selection {
	color:white;
    background: #55ACEE;
}
::-moz-selection {
	color:white;
    background: #55ACEE;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
