
/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #366B2A;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: #366B2A;
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:#366B2A;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}






  

a.scrollup {
  --size: 50px;
  --margin: 16px;
  max-width: 0;
  max-height: 0;
  overflow: visible;
  position: fixed!important;
  transition: opacity .5s,visibility .5s;
  
  position: sticky;
  position: -webkit-sticky;
  bottom: var(--margin);
  left: calc(100% - var(--margin));
}
a.scrollup .scrollup-btn {
  display: inline-block;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 4px;
  width: var(--size);
  height: var(--size);
  color: white;
  fill: white;
  background-color: #04813b;
  text-decoration: none;
  font-weight: 900;
  font-family: 'Monospace', sans-serif;
  
  box-shadow: 2px 2px 5px #0007;
  
  position: absolute;
  bottom: 0;
  right: 0;
}
/* show text 'UP' if there is no any element inside .scrollup */
a.scrollup:not(:has(*))::before {
  content: 'UP';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Enable smooth scroll */
html:has(a.scrollup) {
  scroll-behavior: smooth;
}
/* Hide button on top */
html[data-scroll='0'] a.scrollup,
body.hide-scrollup a.scrollup,
a.scrollup.hide {
  opacity: 0;
  visibility: hidden;
}