.wl-brand-accent
{
    color: var(--e-global-color-accent);
}

/* How it works - Steps */
.hiw-step .elementor-icon-box-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    column-gap: 20px !important;
    text-align: left !important;
}


.hiw-step .elementor-icon-box-icon {
    position: relative !important;

    flex: 0 0 88px !important;
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
    height: 88px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 50% !important;
    background: #ffffff !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


.hiw-step .elementor-icon-box-icon .elementor-icon {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hiw-step .elementor-icon svg {
    width: 36px !important;
    height: 36px !important;
}

.hiw-step .elementor-icon-box-content {
    flex: 1 1 auto !important;
    min-width: 0;
    margin: 0 !important;
}


.hiw-step::before {
    top: -7px !important;
    left: 68px !important;

    width: 28px !important;
    height: 28px !important;

    font-size: 13px !important;
    line-height: 28px !important;
}


.hiw-step .elementor-icon-box-title {
    margin: 0 0 6px !important;
}


@media (max-width: 767px) {
    .hiw-step .elementor-icon-box-wrapper {
        column-gap: 16px !important;
    }

    .hiw-step .elementor-icon-box-icon {
        flex-basis: 76px !important;
        width: 76px !important;
        min-width: 76px !important;
        max-width: 76px !important;
        height: 76px !important;
    }

    .hiw-step .elementor-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    .hiw-step::before {
        top: -6px !important;
        left: 57px !important;

        width: 26px !important;
        height: 26px !important;

        font-size: 12px !important;
        line-height: 26px !important;
    }
}

.hiw-step,
.hiw-step .elementor-widget-container,
.hiw-step .elementor-icon-box-wrapper {
    overflow: visible !important;
}

.hiw-step::before {
    content: attr(data-step) !important;

    position: absolute !important;
    top: 0 !important;
    left: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 28px !important;
    height: 28px !important;

    border-radius: 50% !important;
    background-color: #e8506b !important;
    color: #fff !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    z-index: 20 !important;
    pointer-events: none;
}

@media (max-width: 767px) {
    .hiw-step::before {
        top: 0 !important;
        left: 55px !important;

        width: 26px !important;
        height: 26px !important;

        font-size: 12px !important;
    }
}

/* Homepage - Popular devices containter */
.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.popular-header h2 {
    margin: 0;
    line-height: 1.1;
}

.popular-header .cta {
    white-space: nowrap;
    flex-shrink: 0;
}
/* ================================
   Meelie FAQ
   Desktop: content cards
   Mobile: accordion
================================ */


/* Section wrapper */

.meelie-faq-section {
    margin-top: 0px;
    margin-bottom: 0px;
}

.meelie-faq-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.meelie-faq-title {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    color: #13233C;
}


/* FAQ list */

.meelie-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* FAQ item/card */

.meelie-faq-item {
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(19, 35, 60, 0.03);
}


/* Remove default details marker */

.meelie-faq-question::-webkit-details-marker {
    display: none;
}

.meelie-faq-question::marker {
    display: none;
}


/* Question - closed state */

.meelie-faq-question {
    position: relative;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #13233C;
    list-style: none;
}


/* Question - open state */

.meelie-faq-item[open] .meelie-faq-question {
    padding-bottom: 10px;
}


/* Answer */

.meelie-faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #41506A;
}

.meelie-faq-answer p {
    margin: 0 0 14px;
}

.meelie-faq-answer p:last-child {
    margin-bottom: 0;
}

.meelie-faq-answer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.meelie-faq-answer strong {
    font-weight: 600;
    color: #13233C;
}

.meelie-faq-answer em {
    font-style: italic;
}


/* ================================
   Desktop
   FAQ behaves like content cards.
   Plus/minus icon hidden.
================================ */

@media (min-width: 768px) {
    .meelie-faq-question {
        padding-right: 24px;
    }

    .meelie-faq-question::after {
        display: none;
    }
}


/* ================================
   Mobile
   FAQ behaves like accordion.
   Plus/minus icon visible.
================================ */

@media (max-width: 767px) {
    .meelie-faq-section {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .meelie-faq-inner {
        padding: 0 18px;
    }

    .meelie-faq-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 1.3;
    }

    .meelie-faq-list {
        gap: 12px;
    }

    .meelie-faq-item {
        border-radius: 16px;
    }

    .meelie-faq-question {
        cursor: pointer;
        padding: 18px 54px 18px 20px;
        font-size: 16px;
        line-height: 1.45;
    }

    .meelie-faq-item[open] .meelie-faq-question {
        padding-bottom: 8px;
    }

    .meelie-faq-question::after {
        content: "+";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        line-height: 1;
        font-weight: 500;
        color: #E84967;
    }

    .meelie-faq-item[open] .meelie-faq-question::after {
        content: "−";
    }

    .meelie-faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
        line-height: 1.7;
    }
}


/* ================================
   Very small screens
================================ */

@media (max-width: 420px) {
    .meelie-faq-inner {
        padding: 0 16px;
    }

    .meelie-faq-title {
        font-size: 24px;
    }

    .meelie-faq-question {
        padding: 17px 50px 17px 18px;
        font-size: 15px;
    }

    .meelie-faq-item[open] .meelie-faq-question {
        padding-bottom: 8px;
    }

    .meelie-faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .meelie-faq-question::after {
        right: 18px;
        font-size: 22px;
    }
}