
/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #f04e57;
  color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  font-size: 15px;
  right: 15px;
  bottom: 15px;
  border-radius:50px;
  transition: background 0.5s;
  z-index:1000;
}
.back-to-top:hover{
	background:#006eae !important;
}

.back-to-top i {
  padding-top: 11px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

}

