.fixed-btn {
  position: fixed;
  top: calc(50% - 40px);
  left: 50%;
  transform: translateX(-50%);
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}
.fixed-btn .fixed-btn-button {
  background: transparent;
  border: none;
  padding: 0;
  pointer-events: all;
  outline: none !important;
}
.fixed-btn .fixed-btn-button .text,
.fixed-btn .fixed-btn-button .alternative-text {
  background: transparent;
  position: relative;
}
.fixed-btn .fixed-btn-button .text:before,
.fixed-btn .fixed-btn-button .alternative-text:before {
  content: "";
  position: absolute;
  background: #fff;
  height: 30px;
  width: 18px;
  right: -5px;
  top: 2px;
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 1367px) {
  .fixed-btn .fixed-btn-button .text:before,
  .fixed-btn .fixed-btn-button .alternative-text:before {
    height: 100%;
    width: 20px;
    right: 0;
    top: 0;
  }
}
.fixed-btn .fixed-btn-button .text {
  display: inline-block;
  text-transform: uppercase;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  top: -7px;
}
@media (max-width: 1024.98px) {
  .fixed-btn .fixed-btn-button .text {
    display: none;
  }
}
.fixed-btn .fixed-btn-button.config .text {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  top: -6px;
}
.fixed-btn .fixed-btn-button.config .text:before {
  top: 1px;
}
.fixed-btn .fixed-btn-button.config .iconfont-2-config {
  border: 2px solid #b51f20;
  color: rgb(159.2287735849, 27.2712264151, 28.1509433962);
  font-size: 1.375rem;
  line-height: 2.3;
}
@media (min-width: 1367px) {
  .fixed-btn .fixed-btn-button.config .iconfont-2-config {
    font-size: 1.75rem;
    line-height: 2.3;
  }
  .fixed-btn .fixed-btn-button.config .iconfont-2-config:before {
    position: relative;
    top: 3.5px;
    left: 0.5px;
  }
}
@media (max-width: 1024.98px) {
  .fixed-btn {
    bottom: 12px;
    top: auto;
    left: unset;
    right: 75px;
    transform: unset;
  }
  .fixed-btn .round-partial-link .icon {
    color: #fff;
    background-color: #b51f20;
  }
}
.fixed-btn {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.fixed-btn.is-intersecting-destination {
  visibility: hidden;
  opacity: 0;
}