#open {
  position: fixed;
  background-color: transparent;
  /*border: solid black 2px;*/
  border: 0;
  border-radius: 50px;
  top: 50%;
  right: 1.5em;
  font-size: 14px;
  padding: 0px;
  margin: 0px;
  z-index: 100;
  opacity: 0;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
  box-shadow: 0px 0px 4px 2px rgb(0 0 0 / 20%);
}
#open:hover{
  box-shadow: none !important;
}

#close {
  border: 0;
  border-radius: 50px;
  font-size: 1.3em;
  padding: 0px;
  margin: 0px;
  background-color: rgba(0, 0, 0, 0);
  color: whitesmoke;
}

.hiddenSection{
  display: none !important;
}

.zoomM{
  width: 80% !important;
}
.showmodal {
  pointer-events: auto !important;
  opacity: 1 !important;
}

.modal_container_accesibilidad {
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  position: fixed;
  pointer-events: none;
  opacity: 0;  
  top: 0;
  height: 100%;
  width: 375px;
  transition: opacity 0.3s ease;
  right: 0em;
  z-index: 99;
  padding-top: 20vh;
}
.modalAccesibilidad {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: whitesmoke;
  width: 100%;
  max-width: 100%;
  padding: 0px;
  border-radius: 20px;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.2);
  margin: 0px;
  z-index: 100;
  height: fit-content;
  max-height: 88%;
  min-height: 30vh;
}
.cabeceraModal {
  border-radius: 20px 20px 0px 0px; 
  background-color: #009ee2; 
  width: 100%;
}
.subcabeceraModal{
  display: flex;
  padding: 16px 12px;
  justify-content: space-between;
  align-items: center;
}
.sectionModal {
  font-family: 'Maven Pro', sans-serif;
  background-color: #009ee2;
  width: 50%;
  font-size: 1.2em;
  font-weight: 700;
  color: whitesmoke;
  border: none;
}

svg g path{
  fill: #009ee2;
}

.h1-commands{
    color: #009ee2;
    text-align: center;

}
.containerCuerpoAccesibilidad{
  flex-direction: column;
  padding: 0px 20px 20px 20px;
  font-size: 1.1em;
}
.containerCuerpoAccesibilidad p span{
  font-weight: 600;
}

#commands {
  display: flex;
  flex-flow: column wrap;
}

#shorcuts {
  display: flex;
  flex-flow: column wrap;
}

#commands li{
  font-size: 1.1em;
}

.cuerpo-modal{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /*testing*/
  width: 100%;
}

.btn-accesibilidad{
  background-color: #ffffff;
  color: #009ee2;
  font-size: 1.2em;
  font-weight: 500;
  margin: 2% !important;
  box-shadow: 1px -1px 2px rgb(0 0 0 / 20%);
  border-radius: 12px !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-accesibilidad:hover{
  color: #009ee2;
  opacity: 0.9;
}

.btn-accesibilidad:focus,
.btn-accesibilidad:focus-visible{
  border: none;
}

.btn-matrix{
  flex-grow: 1;
  flex-wrap: wrap;
  display: flex;
  margin: 0;
  justify-content: space-evenly;
  align-items: center;
  /*testing*/
  width: 100%;
}

/* Arrange buttons */
.btn-matrix > .btn {
   width: 46%;  /* force buttons to have the same width regardless of content */
}

/* Decorations */
.btn-matrix {
  margin: 3px;
}

.form-colores{
  display: flex;
  justify-content: left;
  align-items: baseline;
  /*align-content: center;*/
}
.form-colores label{
  margin-bottom: 0;
  margin-right: 5px;
}
#selectColores{
  max-width: 50%;
}

.icono-cuerpo-accesibilidad{
  width: 30%;
}

.flechaBack{
  color: #009ee2;
}

.back-menu-bar{
  width: 100%;
  height: 40px;
  position: absolute;
}
.back-menu-bar button{
  background-color: transparent;
  font-size: 1.3em;
  color: white;
  margin-left: 10px;
}

.back-menu-bar button:hover,
.back-menu-bar button:focus{
  color: #cdcdcd;
  border: none;
}

.cuerpo-modal-wrapper{
  flex-grow: 1;
  overflow-y: auto;
}

.icono-btn-accesibilidad{
  max-width: 50%;
  margin-bottom: 10px;
}

.imagen-instructivo-comandos{
  width: 80%;
}

#link-instructivo-comandos{
  text-decoration: underline;
}

.btn-iniciar-lectura{
  background-color: #009ee2;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
  border-radius: 7px;
}

.btn-iniciar-lectura:hover,
.btn-iniciar-lectura:focus{
  opacity: 0.8;
  color: white;
}

/*Quitar shortcuts mobile*/
@media (max-width: 840px) {
  #shortcutsButton{
    display: none;
  }
}