@media only screen and (max-width: 400px) {
  :root {
    --ancho-editor-registro-usuarios:  100%;
    --izquierda-editor-registro-usuarios:  0%;
    --registro-ancho-popup:  100%;
  }
}
@media only screen and (min-width: 401px) and (max-width: 700px) {
  :root {
    --ancho-editor-registro-usuarios:  70%;
    --izquierda-editor-registro-usuarios:  11.5%;
    --registro-ancho-popup:  80%;
  }
}
@media only screen and (min-width: 701px) and (max-width: 1200px) {
  :root {
    --ancho-editor-registro-usuarios:  70%;
    --izquierda-editor-registro-usuarios:  11.5%;
    --registro-ancho-popup:  60%;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --ancho-editor-registro-usuarios:  50%;
    --izquierda-editor-registro-usuarios:  22.5%;
    --registro-ancho-popup:  50%;
  }
}
.onTopRegistro, .registroAbierto, .registroCerrado {
  z-index: 9999;
  width: 100%;
  min-height: 100%;
  margin: 0%;
  padding: 0%; 
  display: none; 
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;       
  background-color: rgba(255,255,255,0.3);
  color: #000000;
  opacity: .8;
  top: 0%;   
  left: 0%;
}
.registroAbierto{
  display: flex;
  }
  .registroCerrado{
    display: none;
  }
.popupRegistro {
    width: var(--ancho-editor-registro-usuarios);
    height: 85%;
    position: absolute;
    color: #000000;
    background-color: #ffffff;
    stroke-width: 0.2em;
    border-color: #000000;
    border-radius: 5%;
    border-style: solid;
    /* To align popup window at the center of screen*/
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 5%;
    padding-top: 0%;
    top: 5%;                        
    left: var(--izquierda-editor-registro-usuarios);
    overflow-y: auto;
    overflow-x: hidden;
}
.divRegistroDatoContainer{
    margin-bottom: 2%;   
    padding: 1%;
    padding-right: 3%;
    padding-bottom: 3%;
    stroke-width: 0.05em;
    border-color: #000000;
    border-radius: 5%;
    border-style: solid;
   }
.divRegistroDato{
 margin: 2%;   
 padding: 1%;   
}

.textoRegistro{
    color: #000000;

   }

   .inputTextRegistro{
    width: 100%;
   }

   .btnCrypto{
    background-color: rgba(151, 93, 0, 0.7);
    border-radius: 5px;
    cursor: pointer;
    color: rgb(251, 255, 0);
    padding: 5px 7px;
    text-align: center;
   }
   .btnCrypto:hover{
    background-color: rgba(0, 151, 106, 0.7);
    color: rgb(255, 0, 0);
   }
   .btnCrypto:active{
    background-color: rgba(151, 0, 0, 0.7);
    color: rgb(0, 255, 21);
   }
   .botonFormRegistro{
    background-color: rgb(255, 255, 255,0.7);
    border-style: solid;
    border-color: rgb(43, 43, 43);
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 5px 7px;
    text-align: center;
    font-size: 12px;
    box-shadow: 0 7px rgb(141, 141, 141);
    margin: 5px 0px 5px 5px;
  }
  
  .botonFormRegistro:hover{
    background-color: rgba(151, 151, 151, 0.178);
    border-color: rgba(187, 187, 187, 0.918);
    color:  rgba(0,0,0,0.5); 
    transform: translateY(1px);
  }
  
  .botonFormRegistro:active{
    background-color: rgb(223, 152, 0.5);
    border-color: rgba(0,0,0,0.5);
    color:  rgba(0,0,0,1); 
    box-shadow: 0 3px rgb(223, 152, 0.5);
    transform: translateY(4px);
  }
  .selectUrlRegistro,
  .selectUrlRegistroItem{
    overflow: hidden;
    max-width: inherit;    
  }
  .labelPequeno{
    font-size: small;
  }