/* JS Button Scroll Top */
.b-xbacktotop{
  width: 45px;
  display: block;
  position: fixed;
  /* opacity: 0; */
  bottom: -45px;
  right: 15px;
  z-index: 9;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #bbb;
  font-size: 11px;
  transition: .4s;
}
.b-xbacktotop._show{
  /* opacity: 1; */
  bottom: 45px;
}

.b-xbacktotop:hover{
  text-decoration: none;
  color: #333;
}

/* Если открыт xpopup, то скрываем */
.b-html-xpopup .b-xbacktotop {
  display: none !important;
}

.b-xbacktotop__btn{
  width: 45px;
  height: 45px;
  display: block;
  margin-bottom: 3px;
  background: var(--global-brand-primary) url(images/up-arrow.png) center center no-repeat;
  opacity: 0.8;
  border-radius: 50%;
  transition: .3s;
}

.b-xbacktotop:hover .b-xbacktotop__btn{
  opacity: 1;
  background-color: var(--global-brand-primary-darker);
}

@media (max-width: 1024px) {
  .b-xbacktotop__link{
    display: none;
  }
}