/**
 *
 * CSS file for the styling of the back to top (btt) button
 *
 * This file is written by Yaya MNH48 and licensed under MIT
 *
 */

.backtotop, .backtotop a, .backtotop:visited, .backtotop a:visited {
  font-family: 'Fira Code', 'Twemoji Mozilla', ui-monospace, monospace;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: 1px white solid;
  outline: none;
  background-color: #605;
  color: white;
  cursor: pointer;
  padding: 0px 15px 0px 15px;
  border-radius: 10px;
  font-size: 30px;
}

.backtotop:lang(ms-Arab) {
  left: 30px;
  right: unset;
}

.backtotop:lang(ms-Brgn) {
  left: 20px;
  bottom: 30px;
  right: unset;
  padding: 15px 0px 15px 0px;
}

.backtotop:hover {
  background-color: darkgray;
  cursor: pointer;
  text-decoration: none;
  color: #605;
}
