/**
*********************
* Import all the settings
********************
**/
/**
*********************
* Colors
********************
**/
/* Brand Colors */
/* Grayscale colors */
/* Accent colors. Primarily used for buttons */
/** Button & Link colors **/
@font-face {
  font-family: "Droid Sans";
  src: url("../../../fonts/Droid-Sans/DroidSans.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Droid Sans";
  src: url("../../../fonts/Droid-Sans/DroidSans-Bold.ttf");
  font-weight: 700;
}

/**
*********************
* Variables
********************
**/
/* Typography */
/* Transitions */
/* Container & spacings */
/** Button spacing **/
/* Border */
/* Breakpoints */
/**
*********************
* Breakpoint mixin
********************
**/
/**
*********************
* Colors
********************
**/
#backtotop {
  position: fixed;
  z-index: 1000;
  right: 0.625rem;
  bottom: 12.5rem;
  display: inline-block;
  visibility: hidden;
  width: 2.875rem;
  height: 2.875rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  border: 0.0625rem solid #2bafe9;
  background-color: rgba(255, 255, 255, 0.1);
}

#backtotop::before {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  content: "\f077";
  text-indent: 0;
  color: #2bafe9;
  font-family: "FontAwesome", sans-serif;
  font-size: 0.75rem;
}

#backtotop:hover {
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  border-color: #2077be;
}

@media only screen and (min-width: 62rem) {
  #backtotop {
    right: 7.625rem;
  }
}

#backtotop.show {
  visibility: visible;
  opacity: 1;
}

/*# sourceMappingURL=back_to_top.css.map */
