/*!
Theme Name: Digihub Child theme
Theme URI: https://bracketweb.com/digihubwp/
Template: digihub
Author: bracket-web
Author URI: https://themeforest.net/user/bracket-web
Description: This is a Child theme for Digihub WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: digihub-child
*/

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #F99D1C;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
  overflow: hidden;
  -webkit-animation: waveBtn 2.5s infinite;
  animation: waveBtn 2.5s infinite;
}

.scroll-to-top i {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 45px;
  -webkit-animation: updown 2.5s infinite;
  animation: updown 2.5s infinite;
}

.scroll-to-top:hover {
  background-color: #F05E26;
}

.scroll-to-top:hover i {
  color: #FFFFFF;
  -webkit-animation: unset;
  animation: unset;
}