/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.glow2_mobile_container{
  width: 100%;
  position: relative;
}
.glow2_boton_mobile{
  align-items: center;
  background: rgba(0, 0, 0, .7);
  border: 3px solid #6954f3;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
  color: #00ffe0;
  font-size: 70px;
  font-weight: 500;
  position: absolute;
  transition: transform 0.5s ease;
  /* Definimos la transición para transform*/
  transform-origin: center;   
}
.active.glow2_boton_mobile{
  transform: rotate(45deg); 
}
@media(max-width: 400px){
  .active.glow2_boton_mobile{
    transform: rotate(45deg) scale(.8); 
  }  
  .glow2_boton_mobile{
    transform: scale(.8);
  }
}

.glow2_mobile_text{
  display: none;
  position: relative;
  padding: 15px 25px;
  box-sizing: border-box;
  max-width: 450px;
  margin: 0 auto;
}
/* Corchete izquierdo */
.glow2_mobile_text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  border-left: 3px solid #00FFE0;   /* Línea vertical izquierda */
  border-top: 3px solid #00FFE0;    /* Línea superior del corchete */
  border-bottom: 3px solid #00FFE0; /* Línea inferior del corchete */
}

/* Corchete derecho */
.glow2_mobile_text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  border-right: 3px solid #00FFE0;  /* Línea vertical derecha */
  border-top: 3px solid #00FFE0;    /* Línea superior del corchete */
  border-bottom: 3px solid #00FFE0; /* Línea inferior del corchete */
}
.glow2_mobile_text_title,
.glow2_mobile_text_description{
  text-align: center;
  color: #FFF;
}
.glow2_mobile_text_title{
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
.glow2_mobile_text_description{
  font-size: 14px;
  line-height; 16px;
}