.sticky-ads {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  box-shadow: rgba(9, 32, 76, .1);
  z-index: 1;
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(61, 61, 61, 0.71)
}

.sticky-ads-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 0 0;
  position: absolute;
  right: 0;
  top: -30px;
  background-color: rgba(61, 61, 61, 0.71);
  box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .08);
  background-image: 
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><!--! Font Awesome Free 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc. --><path d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/></svg>");
  background-repeat: no-repeat;
  cursor: pointer;
}

.hide {
  Display: none;
}

.show {
  opacity: 1
}

#scrollT {
  width: 100px;
  height: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 0;
  position: absolute;
  top: -30px;
  background-color: rgba(61, 61, 61, 0.71);
  box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .08);
}