/*.modal_content {
    background-color: rgb(104, 31, 62);
    max-width: 360px;
    height: inherit;
    box-shadow: 0 2px 5px rgba(132, 165,21, 0.5);
}
*/
/*= = = = = = = = = = = = = = = = = M  O  D  A  L    S  M  A  L  L    = = = = = = = = = = = = = = =  = = =*/
.modal_container-small{
    /*display: inline-block;*/
    display: flex;
    background-color: #858d5c43;
    align-items: center;
    justify-content: center;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    top: inherit;
    right: 20%;
    height: auto;
    width: 20vh;
    color: rgb(255, 255, 255);
    z-index: 301;
    /*position: relative;
    top: -50px;
    background-color: #0AAA19;*/
}

.modal_small {
   background-color: rgba(180, 170, 162, 0.5); 
   width: 90%;
   /*max-width: 200px;*/
   padding: 10px 10px;
   border-radius: 5px;
   box-shadow: 0 2px 4px rgba(0,0,0, 1);
   text-align: center;
   text-decoration: none;
}

/*= = = = = = = = = = = = = = = = = M  O  D  A  L 2= = = = = = = = = = = = = = = = = = =  = = =*/


.modal-container.active {
    position: fixed;
    width: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 991;
}
.modal-container.active img{
    width: 80;
    aspect-ratio: 2/2;  /* Proporcion de la imagen ancho / alto */

    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1;
    z-index: 995;
    box-shadow: 6px 6px 3px 3px rgb(255, 255, 255);
    border: solid 1px #ffffff;
    background-color: rgb(2, 39, 41, 0.7);
   /* aspect-ratio: 1/1;  /* Proporcion de la imagen ancho / alto */
}
.modal-container.active::after {
    content:'';
    position: fixed;
    /*width: 100vw;
    height: 100vh;*/
    top: 0;
    left: 0;
    background-color: rgba(21, 11, 54);
    z-index: 0;
}
  /*= = = = = = = = = = = = = = = = = M  O  D  A  L 3= = = = = = = = = = = = = = = = = = =  = = =*/
  .modal_container_full{
    /*display: inline-block;*/
    display: flex;
    background-color: rgba(48, 51, 1, 0.7);
    align-items: center;
    justify-content: center;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    top: 25px;
    margin: auto;
    width: 100%;
    height: auto;
    color: rgb(255, 255, 255);
    z-index: 600;
    /*position: relative;
    top: -50px;
    background-color: #0AAA19;*/
}


.modal_content {
    position:relative;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    transition: all 0.3s;
    width: 98%;
    height: auto;
  }
  
  /* Estilo para el contenido del modal */
.modal-dialog {
    position: fixed;
    width: 98%;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
  }
  /* Contenido del modal */

  .modal-contenttttttttttttttttttttttttttttttttttttttttttt {
    background-color: rgb(20, 18, 54, 0.5);
    margin: auto; /* Margen del 15% desde la parte superior y centrado */
    padding: 20px;
    border: 1px solid #888;

    width: 90%; /* Ancho del contenido del modal */
  }

.show {
    pointer-events: auto;
    opacity: 1;
}

.modal_dialog_middle {
  /*background-color: rgba(4, 3, 49, 0.7);*/
  display: block;
  min-width: 50%;
  margin: auto;
  color: #ffffff;
  font-size: 1em;
}
.modal_body {
  min-width: 95%;
  margin: auto;
  font-size: 0.75em;
  align-self: center;
}