/* ===== ACCESIBILITATE WIDGET ===== */

#a11y-wrap{
  position: fixed !important;
  right: 15px !important;
  top: 120px !important;
  left: auto !important;
  bottom: auto !important;

  z-index: 2147483647 !important;
  pointer-events: none;
}

#a11y-btn{
  pointer-events: auto;
  width: 84px;
  height: 84px;
  background: #d40000;
  color: #fff;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-size: 40px;
  line-height: 84px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  user-select: none;
  transition: transform .25s ease;
}

#a11y-panel{
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;

  width: 260px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow: hidden;

  transform: translateX(110%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

#a11y-wrap.open #a11y-panel{
  transform: translateX(0);
  opacity: 1;
}

#a11y-wrap.open #a11y-btn{
  transform: translateX(-260px);
}

#a11y-panel button{
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
}

#a11y-panel button:hover{ background:#f2f2f2; }

#a11y-panel i{
  width: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 8px;
  color: #d40000;
}



/* Funcții */
html.bw{ filter: grayscale(100%); }

/* Subliniere linkuri */
html.underline-links a{
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

