body,
html {
  padding: 0px;
  margin: 0px;
}

h1,
h4 {
  padding: 0px;
  margin: 0px;
}

ol {
  margin: 0px auto;
  padding: 0px 21px;
}

/* ok */
.titulo-interactiva {
  font-size: 1.2em;
  color: #009b7f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 67vh;
  pointer-events: none;
}


.contendor-bienvenida {
  display: flex;
  width: 100%;
  height: 100vh;
  background-image: url(./assets/img/fondo.png);
  background-size: 100% 100%;
  background-position: center center;
  background-color: #222020cc;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-blend-mode: soft-light;

}


/* Imagenes */
.responsive {
  width: 100%;
  height: fit-content;
}



.contenido-actividad-bienvenida {
  width: 64%;
  height: 74%;
  margin: 0px auto;
  padding: 12px;
  opacity: 1;
  overflow: hidden;
  background-blend-mode: hard-light;
}

.tituloPresentacion {
  display: none;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}


/* css actividad nueva*/

.contenedor-actividad {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  width: 100%;
  align-content: center;
}

#video {
  display: none
}

#video video {
  width: 93vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 3.5em;
  font-family: 'Calibri', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #ebeded;
  padding: 0px 0px !important;
  margin: 0px 0px !important;
  text-shadow: 2px 2px 6px #ad612a;
}



.button {
  width: 100%;
  display: inline-block;
  /*  outline: 1px solid #009b7f;
    outline-offset: 2px; */
  text-decoration: none;
  text-align: center;
  padding: 6px 0px;
  border-bottom: solid 4px #6A5982;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font: 1em Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #E5FFFF;
  background: #9D85BE;
  -webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  -moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  margin: 23px auto;
  cursor: pointer
}

.button:hover {
  width: 100%;
  margin: 0px auto;
  padding: 6px 0px;
  border-bottom: solid 4px #6A5982;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font: 1em Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #E5FFFF;
  background-color: #9964e2;
  background-image: -moz-linear-gradient(top, #9964e2 0%, #a93094 100%);
  background-image: -moz-linear-gradient(top, #9964e2 0%, #a93094 100%);
  background-image: -moz-linear-gradient(top, #9964e2 0%, #a93094 100%);
  background-image: -moz-linear-gradient(top, #9964e2 0%, #a93094 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b9c8a', endColorstr='#3b9c8a', GradientType=0);
  background-image: linear-gradient(top, #9964e2 0%, #a93094 100%);
  -webkit-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  -moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
  margin: 23px auto;
  transform: scale(1.1, 1.1);
  transition: transform 0.2s ease-in-out;
}

.button:not(:hover) {
  transform: scale(1, 1);
  transition: transform 0.2s ease-in-out;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  justify-content: center;
  z-index: 1;
  align-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.modal-content {
  position: relative;
  /* padding: 0; */
  width: 50vh;
  /* display: grid; */
  /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%); */
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  flex-direction: column;
}

#videoMobile {
  display: none
}

/* .modal-content::after{
  position:absolute;
  content:'X';
  color: white;
  float: right;
  font-size: 12px;
  font-weight: bold;
  margin-right: 13px;
}  */

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -100px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -100px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-right: 13px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.modal-body {
  padding: 2px 16px;
}

a.icon-play {
  width: 100px;
  height: 100px;
  border: solid 2px #fff;
  border-radius: 100px;
}


.disabledbutton {
  pointer-events: none;
  filter: grayscale(1)
}

.contenedor-boton-continuar {
  width: 40%;
  margin: 0px auto;
}

.logo{
  position: absolute;top: 0px;z-index: 1;
}

@media only screen and (max-width: 600px) {

  .contenedor-boton-continuar {
    width: 100%;
    margin: 0px auto;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 2.5em;
  }

  .tituloPresentacion {
    top: 17%;
    width: 100%;
  }


  #video {
    width: 100vw;
  }

  #video video {
    width: fit-content;
  }

  .contenedor-actividad {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    width: 100%;
    align-content: center;
  }
}