.share-icon {
  width: 20px;
  height: 20px;
  padding: 0 7px 3px 0;
  vertical-align: middle;
  opacity: 1 !important;
  filter: none !important;
}

.sharediv {
  position: relative;
  top: 22px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 24px;
}

.sharebutton,
sharebutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text) !important;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.sharebutton:hover,
sharebutton:hover,
.sharebutton:focus-visible,
sharebutton:focus-visible {
  color: var(--text) !important;
  background: var(--surface-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.toastdiv {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toastbox {
  position: fixed;
  top: 105%;
  z-index: 20;
  width: min(300px, calc(100% - 32px));
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-hover);
  text-align: center;
  transition: transform 260ms ease;
}

.toastbox.toast-tox--active {
  transform: translateY(-150px);
}

@media (max-width: 600px) {
  .sharebutton-mb {
    display: none;
  }

  .sharebutton-img {
    margin-right: auto;
    margin-left: auto;
  }
}
