
/*Estrellas en listados actividades*/
.icono-estrella {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 20px;
  height: 20px;
}

/* MiniQuiz en actibidades*/
.accordion-item {
    display: block !important;
    overflow: hidden;
    clear: both;
}

.accordion-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row-reverse;
}

.accordion-pregunta {
    flex: 1;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    clear: both;
}

.accordion-content p {
    display: block !important;
    padding: 10px 20px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .accordion-content p {
    opacity: 1;
}

/* Arreglo footer */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 0 auto;
}

/* Quitar margen párrafos Elementor */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* RGPD */
.textos-legales {
    font-size: 10px;
    line-height: 1.3em;
    margin: 20px 0;
    opacity: 0.8;
}

button.cky-btn {
    font-size: 10px;
}

/* Gracias por tu compra */
a.woocommerce-button.button.view {
    color: white;
    border-radius: 0.7em;
}