.cea-badge {
    position: absolute;
    top: 18px;
    padding: .25em .75em;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 99;
}

.cea-badge.sale-badge {
    left: 18px;
}

.cea-badge.secondary-badge {
    right: 18px;
}

.cea-badge.percentage-badge {
    left: 18px;
    top: 50px;
}

/* Product FAQs */

.cea-product-faq {
    width: 100%;
    margin-top: 30px;
}

.cea-product-faq__items {
    width: 100%;
}

.cea-product-faq__item {
    margin: 0;
    background: #f3f3f3;
    border-radius: 10px;
    margin-bottom: .25em;
}

.cea-product-faq__question {
    position: relative;
    display: block;
    width: 100%;
    padding: 11px 56px 11px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    font-family: "CenturyGothic", Sans-serif;
}

.cea-product-faq__question::-webkit-details-marker {
    display: none;
}

.cea-product-faq__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    color: #111827;
}

.cea-product-faq__item[open] .cea-product-faq__question::after {
    content: "-";
}

.cea-product-faq__answer {
    padding: 0 20px 18px 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
}

.cea-product-faq__answer p {
    margin: 0 0 12px;
}

.cea-product-faq__answer p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .cea-product-faq__question {
        font-size: .9rem;
        padding: .5em 2.5em .5em .8em;
    }

    .cea-product-faq__question::after {
        right: 10px;
    }

    .cea-product-faq__answer {
        padding: .5em 1em;
        font-size: .8rem;
    }
}