.buy-now-fixed {
  position: relative;
  margin: 5% 0;
  width: 90%;
  left: 5%;
  top: 0;
  display: block;
  animation: none;
  padding: 10px 38px;
  text-align: center;
  box-sizing: border-box;
  color: black;
  border: solid 1px black;
  font-family: din, Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 10;
  overflow: hidden;
  backface-visibility: hidden; }
  .buy-now-fixed:hover:after {
    top: 0;
    opacity: 1; }
  .buy-now-fixed:hover {
    color: white; }
  .buy-now-fixed:before, .buy-now-fixed:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.25s ease-in-out; }
  .buy-now-fixed:before {
    top: 0;
    background-color: white;
    opacity: 1; }
  .buy-now-fixed:after {
    top: 30px;
    background-color: black;
    opacity: 0;
    transition: all 0.15s ease-in-out; }

@keyframes show-button {
  0% {
    right: -300px; }
  100% {
    right: 100px; } }
@media screen and (min-width: 767px) {
  .buy-now-fixed {
    position: fixed;
    top: 19%;
    right: -300px;
    margin: auto;
    width: auto;
    left: auto;
    display: inline-block;
    animation: show-button 2s 1;
    animation-delay: 3s;
    animation-fill-mode: forwards; }
    .buy-now-fixed.buy-now-fixed-2 {
      top: 26%;
      animation-delay: 3.5s; }
    .buy-now-fixed.buy-now-fixed-3 {
      top: 33%;
      animation-delay: 4.1s; } }

/*# sourceMappingURL=fixed-button.css.map */
