/** Float Accessibility */
.float-accessibility {
  position: fixed;
  width: auto;
  top: auto;
  bottom: 10%; /* stay near bottom */
  right: 10px; /* anchor right side */
  transition: all 0.3s linear;
  z-index: 10000;
  background-color: transparent; /* container transparent */
  padding: 0; /* prevent extra spacing */
}

/* only button circular */
#access-btn {
  background-color: #060270;
  border-radius: 50%;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, .4);

  padding: 10px;
  border: none;
  cursor: pointer;
}

#access-btn i,
#access-btn svg {
  color: black;
}

/* menu styling */
#access-menu {
  position: absolute;
  bottom: 60px; /* menu appears ABOVE the button */
  right: 0;
  width:100%;
  max-width: 300px;
  background-color: #000028;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .4);
  display: none;
  z-index: 10001;
}

#access-menu p,
#access-menu button {
  color: black;
}

#access-menu button {
  background-color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  /* border-radius:5px */
}

#access-menu button:hover {
    background-color: rgb(162, 162, 162);
}

.invert-view {
  mix-blend-mode:difference;
}

.grayscale-view {
   background-color:gray;
   mix-blend-mode:luminosity;
}

.big-cursor {
  cursor: none;
  width: 97px;
  height: 137px;
  background: url("/article-sources/images/pointer-cursor.gif") no-repeat left top;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 10000;
}

.reading-guide {
  position: fixed;
  width: 100%;
  height: 2px;
  background-color: red;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

.section-gradient-bluered {
  background: rgb(63, 94, 251);
  background: linear-gradient(135deg, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
}