/* Hiding the translate button */
#recite-header .recite-sprite-button-translate {
  display: none;
}
#reciteme-button {
  /* Button Styling and Placement */
  background: #0c479d;
  width: 50px;
  height: 50px;
  bottom: 14px;
  right: 14px;
  position: fixed;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
}
#reciteme-button:hover {
  /* Hover Color */
  background: #366dbf;
  transform: scale(1.1) !important;
  border: 2px solid #0c479d;
}
#reciteme-button img {
  /** Button Image Size */
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.a11y-inline-trigger {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  text-decoration: none;
  display: inline;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.a11y-inline-trigger::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Keep keyboard accessibility visible */

.a11y-inline-trigger:focus, .a11y-inline-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}
.a11y-inline-trigger:hover {
  text-decoration: underline;
}