/**
 * 2012-2025 OpalFreeShippingGauge
 *
 * @author    JFO <jfourt@opal.fr>
 * @copyright 2012-2025 OPAL
 * @license   http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
 */

#opal-freeshipping-gauge {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    height: 100%;
}

#opal-freeshipping-gauge .header_item {
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 100%;
	margin: -25px 0 0 5px;
}

/* Style pour la jauge avec barre de progression */
.opal-fsg-container {
    min-width: 200px;
}

.opal-fsg-message {
    text-align: center;
    margin-bottom: -10px;
    font-size: 13px;
    color: #1e1e3f;
}

.opal-fsg-progress-container {
    height: 5px;
    background-color: #bbb;
    border-radius: 4px;
    overflow: hidden;
}

.opal-fsg-progress-bar {
    height: 100%;
    background-color: #1e1e3f;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Style pour le texte simple */
.opal-fsg-text {
    display: flex;
    align-items: center;
}

.opal-fsg-text i {
    margin-right: 5px;
    color: #25b9d7;
}

/* Style pour la jauge complétée */
.opal-fsg-completed {
    display: flex;
    align-items: center;
    color: #1e1e3f;
	margin-top: 22px;
}

.opal-fsg-completed i {
    margin-right: 5px;
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .opal-fsg-container {
        min-width: 150px;
    }
    
    .opal-fsg-message,
    .opal-fsg-text span {
        font-size: 12px;
    }
}