a.clickthrough-button {
  position: absolute;
  top: 5px;
  right: 100px;
  padding: 10px 25px 10px 43px !important;
  line-height: 18px;
  font-size: 15px;
  letter-spacing: -0.7px;
  font-family: Inter;
  font-weight: 375;
  color: white;
  cursor: pointer;
  border-radius: 99px;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.175);
  color: #323639;
  transition: opacity 0.2s linear, transform 0.3s ease, color 0.1s linear, background-color 0.1s !important;
  z-index: 2;
}
a.clickthrough-button::before {
  content: "";
  display: block;
  position: absolute;
  left: 11px;
  top: 9px;
  width: 20px;
  height: 20px;
  background: url(/img/sense-ui-icons/sense-ui-icons/link.svg) no-repeat center;
  background-size: 18px;
  filter: brightness(0) invert(0.3);
}
a.clickthrough-button:hover {
  opacity: 0.7;
}
a.clickthrough-button:active {
  transform: scale3d(0.95, 0.95, 1);
  opacity: 0.5;
}
body.disable-sorting a.clickthrough-button:not(.is-open) {
  opacity: 0;
  transform: translateY(-3px);
}
html.darkmode a.clickthrough-button {
  color: white;
  background: #2c2c2c;
}
html.darkmode a.clickthrough-button::before {
  filter: brightness(0) invert(1);
}
