﻿#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 50px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #C0C0C0; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 4px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 16px; /* Increase font size */
}

#myBtn:hover {
  background-color: #787878; /* Add a dark-grey background on hover */
}
.twitter-share-button {
position:relative!important;top:5.2px;
}

.fb {
position:relative!important;top:8.5px;
}

.zoomIn{-webkit-animation:zoomIn 18s forwards;animation:zoomIn 18s forwards;-moz-animation:zoomIn 18sforwards;-o-animation:zoomIn 18s forwards}
.zoomOut{-webkit-animation:zoomOut 18s forwards;animation:zoomOut 18s forwards;-moz-animation:zoomOut 18sforwards;-o-animation:zoomOut 18s forwards}
.leftToRight{-webkit-animation:leftToRight 7s forwards;animation:leftToRight 7s forwards;-moz-animation:leftToRight 7s forwards;-o-animation:leftToRight 7s forwards}
.rightToLeft{-webkit-animation:rightToLeft 7s forwards;animation:rightToLeft 7s forwards;-moz-animation:rightToLeft 7s forwards;-o-animation:rightToLeft 7s forwards}
@keyframes zoomIn{0%{transform:scale(1)}100%{transform:scale(1.2)}}
@keyframes zoomOut{0%{transform:scale(1.2)}100%{transform:scale(1)}}
@keyframes leftToRight{0%{transform:scale(1.25) translate(-2.5%,0)}100%{transform:scale(1.25) translate(0,0)}}
@keyframes rightToLeft{0%{transform:scale(1.25) translate(2.5%,0)}100%{transform:scale(1.25) translate(0,0)}}


