/*
Theme Name: Styl Bud Eko
Author: Synteza IT
Author URI: http://syntezait.pl
*/
 

#back-top {
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 999;
}

#back-top a {
  width: 50px;
  height: 50px;
  display: flex;
  background: #225E4C;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  /* transition */
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#back-top a svg path {
  fill: #fff;
}
#back-top a:hover {
  color: #000;
}

#back-top a:hover span {
  background-color: #777;
}

@media screen and (max-width: 768px) {
  #back-top {
    display: none !important;
    visibility: hidden;
  }
} 