.scroll-up-btn {
  position: fixed;
  height: 49px;
  width: 45px;
  background: #05cb2e;
  right: 10px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}

.scroll-up-btn:hover {
  filter: brightness(90%);
}

.hover-row {
  cursor: pointer;
}

.hover-row:hover {
  box-shadow: 5px 5px 5px 5px gainsboro;
}

.underline-link:hover {
  text-decoration: underline;
}
.font-weight-bold {
  font-weight: 600;
}
.text-black-degray {
  color: rgb(66, 63, 63);
}
.font-family-all {
  font-family: Roboto, Helvetica, Tahoma, Arial;
}
