#gac-discount-bar {
    border: 1px solid #e5e5e5;
    padding: 18px 20px 16px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #ffffff;
    position: relative;
    font-family: inherit;
}

.gac-discount-bar__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gac-discount-bar__progress {
    flex: 1;
    height: 10px;
    background: #ebebeb;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.gac-discount-bar__progress-bar {
    height: 100%;
    width: 0;
    background: repeating-linear-gradient(
        45deg,
        #15803d,
        #15803d 12px,
        #16a34a 12px,
        #16a34a 24px
    );
    transition: width .35s ease-in-out;
}

.gac-discount-bar__icon {
    flex: 0 0 auto;
    color: #15803d;
}

.gac-discount-bar__percent-value {
    font-size: 13px;
    font-weight: 600;
    color: #15803d;
    margin-top: 6px;
}

.gac-discount-bar__message {
    font-size: 14px;
    color: #222;
}
