.tcl-fixed-panel {
  position: fixed;
  z-index: 5;
  top: 50%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tcl-fixed-panel--bottom {
  -webkit-transform: inherit;
      -ms-transform: inherit;
          transform: inherit;
  top: inherit;
  bottom: 65px;
}
.tcl-fixed-panel__item {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  margin: 10px 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.tcl-fixed-panel__item--share {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.tcl-fixed-panel__item--share svg {
  width: 32px;
  height: auto;
}
.tcl-fixed-panel__item--back-to-top {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.tcl-fixed-panel__item > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.tcl-fixed-panel__item--hover:hover .tcl-fixed-panel__label {
  opacity: 1;
}
.tcl-fixed-panel__item--hover .tcl-fixed-panel__label {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tcl-fixed-panel[data-show=true] > * {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tcl-fixed-panel__label {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #111111;
  width: 110px;
  padding: 8px 0;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tcl-fixed-panel__icon {
  margin-bottom: 12px;
}

.tcl-section--light .tcl-fixed-panel__label {
  color: #111111;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
}