/* * for supported in all modern browsers * Copyright inpleworks, Co. * https://xetemplate.com */
.xet-layout-quickbutton {
  z-index: 88;
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  background-color: var(--xet-theme-content-bg-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: var(--xet-theme-transition-all);
}
.xet-layout-quickbutton a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  color: var(--xet-theme-text-strong-color);
}
.xet-layout-quickbutton a > i {
  font-size: 1.25rem;
}
.xet-layout-quickbutton.is-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .xet-layout-quickbutton {
    right: 2rem;
    bottom: 2rem;
  }
  .xet-layout-quickbutton a:hover {
    border-color: var(--xet-theme-color) !important;
    background-color: var(--xet-theme-color) !important;
    color: #fff !important;
  }
}
@media (min-width: 1200px) {
  .xet-layout-quickbutton a {
    width: 4rem;
    height: 4rem;
  }
  .xet-layout-quickbutton a > i {
    font-size: 1.5rem;
  }
}
body.color_scheme_dark .xet-layout-quickbutton {
  background-color: var(--xet-theme-dark-content-bg-color);
}
body.color_scheme_dark .xet-layout-quickbutton a {
  color: var(--xet-theme-dark-text-strong-color);
}
/*# sourceMappingURL=7062e10c198ed7baf0edfd821a05f26e0d69c28b.quickbutton.scss.map */
