.scrollToTopBtn {
  background-color: var(--e-global-color-116ad20);
  border-radius: 5px;
  border: 2px var(--e-global-color-116ad20) solid;
  /* color: white;*/
  cursor: pointer;
  /* font-size: 18px; */
  /* line-height: 48px; */
  width: 50px;
  height: 50px;
  /* place it at the bottom right corner */
  position: fixed;
  bottom: 50px;
  right: 50px;
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  transition: all 0.5s ease;
}

.scrollToTopBtn:hover {
  background-color: var(--e-global-color-332724a);
  border-color: var(--e-global-color-332724a);
}

.scrollToTopBtniIcon {
  background-image: url(../img/icons/chevron.svg);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  filter: var( --filter-white );
  text-align: center;
  width: 100%;
  height: 100%;
  display: table;
  
}

.scrollToTopBtniIcon:hover, .scrollToTopBtniIcon:hover > .scrollToTopBtniIcon.white, .scrollToTopBtniIcon.whiteWhover {
  filter: var( --filter-white );
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}

.showBtn.scrollingup {
  opacity: .6;
  transform: translateY(0);
}