
/*Back to top Button
------------------------------------*/
#topcontrol {
  color: #fff;
  z-index: 99;
  width: 30px;
  height: 30px;
  font-size: 20px;
  background: #222;
  position: relative;
  right: 14px !important;
  bottom: 11px !important;
  border-radius: 3px !important;
}

#topcontrol:after {
  /*top: -2px;*/
  left: 8.5px;
  content: "\f106";
  position: absolute;
  text-align: center;
  font-family: FontAwesome;
}

#topcontrol:hover {
    color: #fff;
    background: #18ba9b;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*Counter Large
------------------------------------*/
.counters {
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .counters {
    margin-bottom: 30px;
  }
  .counters:last-child {
    margin-bottom: inherit;
  }
}

.counters span {
  font-size: 35px;
}

.counters span.counter-icon {
   display: block;
   margin-bottom: 10px;
}

.counters span.counter-icon i {
   color: #fff;
   padding: 16px;
   min-width: 65px;
   font-size: 30px;
   position: relative;
   background: #72c02c;
}

.counters span.counter-icon i:after {
   width: 0; 
   height: 0;
   left: 38%;
   content: " "; 
   bottom: -7px;
   display: block; 
   position: absolute;
   border-top: 7px solid #72c02c;
   border-left: 7px solid transparent;
   border-right: 7px solid transparent;
   border-left-style: inset; /*FF fixes*/
   border-right-style: inset; /*FF fixes*/
}

.counters:hover span.counter-icon i {
   border-color: #000;
}

.counters p {
	color: #fff;
}

/*Counter Small
------------------------------------*/
.counters-small {
  text-align: center;
   color: #fff;
}

.counters-small {
	margin-bottom: 30px;
}
.counters-small:last-child {
	margin-bottom: inherit;
}

.counters-small span {
  font-size: 16px;
}

.counters-small span.counter-icon {
   display: block;
   margin-bottom: 8px;
}

.counters-small span.counter-icon i {
   color: #fff;
   padding: 8px;
   min-width: 40px;
   font-size: 20px;
   position: relative;
   background: #72c02c;
}

.counters-small span.counter-icon i:after {
   width: 0; 
   height: 0;
   left: 38%;
   content: " "; 
   bottom: -7px;
   display: block; 
   position: absolute;
   border-top: 7px solid #72c02c;
   border-left: 7px solid transparent;
   border-right: 7px solid transparent;
   border-left-style: inset; /*FF fixes*/
   border-right-style: inset; /*FF fixes*/
}

.counters-small:hover span.counter-icon i {
   border-color: #000;
}

.counters-small span.counter span {
	font-size: 14px;
}

.counters-small p {
	color: #fff;
}