.tlh-equipment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tlh-equipment-badges__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 17px 8px 10px;
    border-radius: 999px;
    border: 1px solid #bfd9ac;
    background: #eef5e7;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.tlh-equipment-badges__dot {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    background: #6da35f;
}

.tlh-equipment-badges__text {
    color: #6da35f;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.tlh-equipment-badges {
    justify-content: end;
}

.tlh-equipment-badges__badge--available {
    border-color: #bfd9ac;
    background: #eef5e7;
}

.tlh-equipment-badges__badge--available .tlh-equipment-badges__dot {
    background: #6da35f;
}

.tlh-equipment-badges__badge--available .tlh-equipment-badges__text {
    color: #6da35f;
}

@media (max-width: 992px) {
    .tlh-equipment-badges {
        justify-content: start;
    }
}

@media (max-width: 767px) {
    .tlh-equipment-badges__badge {
        padding: 14px 20px;
        gap: 10px;
    }

    .tlh-equipment-badges__text {
        font-size: 15px;
    }

    .tlh-equipment-badges__dot {
        width: 13px;
        height: 13px;
        min-width: 13px;
    }
}

.tlh-equipment-badges__badge--saving {
    background: #ffe284;
    border-color: #d1ae37;
}
.tlh-equipment-badges__badge--saving .tlh-equipment-badges__dot {
    background: #7a610a;
}
.tlh-equipment-badges__badge--saving .tlh-equipment-badges__text {
    color: #7a610a;
}
