.header-infos-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.central-div {
    display: flex;
    align-items: center;
}

.invisible-div {
    width: 150px;
}

.header-infos-banner {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
}

.header-infos-text {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-align: center;
    vertical-align: middle;
    text-align: center;
    margin: 0;
    transition: opacity 0.5s ease-in-out;
}

.header-infos-text.fade-out {
    opacity: 0;
}

.header-infos-text .percent,
.header-infos-text .cashback-word,
.header-infos-text .highlight {
    font-weight: 700;
}

.cashback-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cashback-arrow:hover {
    opacity: 0.8;
}

.central-sales {
    font-family: Montserrat;
    color: #FAFBFC;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.4px;
    text-align: center;
}

.central-sales-number {
    font-family: Montserrat;
    color: #FAFBFC;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-align: center;
}

@media (max-width: 768px) {
    .central-div, .invisible-div  {
        display: none;
    }

    .header-infos-container {
        width: 100%;
        justify-content: center;
    }

    .header-infos-banner {
        flex: 1;
        width: 100%;
        justify-content: space-between;
        padding: 10px 16px;
    }

    .header-infos-text {
        flex: 1;
        text-align: center;
        margin: 0;
    }

    .cashback-arrow {
        flex-shrink: 0;
    }

}
