/* === Offres de Bienvenue === */
.offre-bienvenue {
    background: #FFF6E0;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offre-bienvenue span:not(.aide) {
    font-family: var(--police-worksans-bold);
}

.offre-bienvenue * {
    color: #D19166;
    font-size: clamp(12px, calc(12px + ((16 - 12) * ((100vw - 400px) / (1900 - 400)))), 16px) !important;
}
body .offre-bienvenue sup {
  font-size: clamp(9px, calc(9px + ((13 - 9) * ((100vw - 400px) / (1900 - 400)))), 13px) !important;
}

.offre-bienvenue .aide {
    border-color: #D19166;
    min-width: 16px;
}

.offre-bienvenue .info-hover {
    position: relative;
    cursor: help;
    display: inline-block;
    margin-left: 5px;
}

.offre-bienvenue .info-hover>span:first-child {
    font-size: 14px;
    color: #333;
}

.offre-bienvenue .tooltip {
    display: none;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
    width: 220px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.offre-bienvenue .tooltip::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}





/* Popup styles */
.offre-bienvenue .popups_information .popup_offre_bienvenue_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.offre-bienvenue .popups_information.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100000000;
}