/**
 *
 * Apply your custom CSS here
 *
*/

.scroll-to-top {
  position: fixed;
  display: block;
  right: -100px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #1c2b36;
  color: #fff;
  text-align: center;
  z-index: 100;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.scroll-to-top:hover,
.scroll-to-top:focus {
  background-color: #2baab1;
  color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.scroll-to-top.active {
  right: 10px;
}
.statistic-box {
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.statistic-box .statistic-title {
  text-transform: uppercase;
  font-size: 16px;
  z-index: 2;
}
.statistic-box .statistic-value {
  font-size: 36px;
  font-weight: 600;
  z-index: 2;
}
.statistic-box .statistic-icon-background {
  position: absolute;
  font-size: 110px;
  right: -5px;
  bottom: -20px;
  opacity: 0.2;
}