#actividad .fondo-actividad{
  height: 300px;
  background-image: url(../img/vectores/imagen-actividad.png);
  background-size: 710px;
  background-repeat: no-repeat;
  background-position: center;
}

#actividad .pregunta{
  padding: 30px;
  background-color: #f2edd6;
  border: #c6bf9c 1.5px solid;
}
#actividad .pregunta h3{
  margin:0;
  color:#000;
}
#actividad .respuestas{
  width: 100%;
  padding: 30px;
  background-color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
#actividad .respuestas div {
    display: inline-block;
    width: 40%;
    position: relative;
    color: #464646;
    font-size: 1.375rem;
    margin-right: 1.5625rem;
    padding: 1.25rem 2rem;
    font-weight: 800;
    cursor: pointer;
    border: 2px solid #d2d2d2;
    border-radius: 0.3125rem;
    margin: 20px 20px;
}
input {
    display: none;
}
#actividad .respuestas label {
    margin: 0;
    width: 90%;
    float: right;
    text-transform: inherit;
    text-align: justify;
}
#actividad .respuestas div:after {
    content: "";
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.3125rem;
    background-color: #FFE5F9;
}
#actividad .respuestas div.active:before {
    display: block;
    z-index: 2;
}
#actividad .respuestas div:before {
    content: "\e92b";
    top: 50%;
    left: 24px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.4375rem;
    line-height: 1;
    font-weight: 400;
    display: none;
    color: #fff;
    z-index: 1;
    font-family: "lined-icons";
    position: absolute;
}
#actividad .respuestas div.active.active:after {
    background: linear-gradient(to right, #c6bf9c, #88805b);
}
#actividad .respuestas div span {
    top: 50%;
    left: 27px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
#actividad .respuestas div.active span {
    display: none;
}
#actividad .respuestas div.active {
    color: #c6bf9c;
    border: 2px solid #c6bf9c;
    border-bottom: 3px solid #c6bf9c;
    border-radius: 0.3125rem;
    background-color: #f2edd6;
}

.extras-actividad{
  background-color: white;
  padding: 30px;
  border-radius: 0 0 20px 20px;
}

.resultados-alert>div{
  width: 300px;
  height: 160px;
  padding: 10px 20px;
}

.texto-respuesta {
    background-color: #fff;
    text-align: center;
    padding: 30px;
}
.texto-respuesta>div {
    background-color: #ffe5f9;
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 30px;
}
.texto-respuesta p {
    margin: 0;
    font-weight: 600;
}
