.accessibility {
  bottom: 0;
  position: absolute;
  right: 0;
  color: var(--ct-text-muted);
  left: 0 !important;
  z-index: 1100;
}

#assist-area {
  position: fixed;
  bottom: 0;
  background-color: var(--ct-primary);
  width: 100%;
  border-top: 2px solid #fff;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
  z-index: 999;
  padding: 15px 0 !important;
}

#assist-area .btns-container {
  margin: 0 auto;
  overflow-x: auto;
}

#assist-area .btns-area {
  opacity: 1;
  width: 100%;
  margin: 0 auto;
  transition: height 0.3s ease-in-out;
}

#assist-area .active-area {
  position: absolute;
  top: -4.38em;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 66px;
  width: 200px;
  background-image: url("./tab-bg.svg");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

#assist-area .active-area .activate-btn {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  pointer-events: all;
  width: 30px;
}

#assist-area .active-area .activate-lbl {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  pointer-events: all;
  width: 150px;
}

#assist-area .active-area .activate-lbl .texto {
  color: #fff;
  font-weight: 900;
  display: block;
  font-size: 16px !important;
}

#assist-area .active-btn .icono {
  border: 1px solid white!important;
  background-color: #e63742!important;
  color: white!important;
}

#assist-area .active-area .activate-btn .icono {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 150rem;
  border: 3px solid #fff;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 9px 0 rgb(0 0 0 / 15%);
  font-size: 20px !important;
}
#assist-area .btns-area .assist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 15px;
  margin: 15px 3px 0px;
}
#assist-area .btns-area .assist-btn span.texto {
  font-weight: 900;
  color: #fff;
  font-size: 14px !important;
}

#assist-area .btns-area .assist-btn span.icono {
  width: 42px;
  height: 42px;
  border-radius: 150rem;
  background-color: #fff;
  color: #e63742;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 25%);
  font-size: 16px !important;
}

#assist-area .btns-area .assist-btn span {
  text-align: center!important;
}

html.high-contrast{
  filter:grayscale(90%);
}

.fixed{
  position:fixed!important;
}

.hl-objects{
  outline: 3px dashed rgba(255, 229, 11, 0.5);
  background-color: rgba(255, 229, 11, 0.25);
}
.new-cursor{
  cursor: url("./cursor.png"), auto;
}
.new-cursor a:hover {
  cursor: url("./pointer.png"), auto;
}
.new-cursor .btn:hover {
  cursor: url("./pointer.png"), auto;
}
.cursor {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: all 150ms ease-in-out;
}
.cursor .hl {
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  background-color: rgba(255, 191, 0, 0.25);
}
.cursor.activo {
  opacity: 1;
  width:100%!important;
  height: 5px!important;
}

@media (max-width: 850px){
  #assist-area {
    border-top: 1px solid #fff;
    padding: 7.5px 0 !important;
  }

  #assist-area .active-area {
    top: -2.23em;
    height: 33px;
    width: 150px;
  }

  #assist-area .active-area .activate-btn .icono {
    width: 28px;
    height: 28px;
    font-size: 15px !important;
  }

  #assist-area .active-area .activate-lbl {
    top: 42px;
  }

  #assist-area .active-area .activate-lbl .texto {
    display: none;
  }

  #assist-area .btns-area .actions-area {
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  #assist-area .btns-area .actions-area .assist-btn {
    margin: 0 5px 20px;
  }

  #assist-area .btns-area .actions-area .assist-btn span.icono {
    width: 30px;
    height: 30px;
  }
}