.attribute-colors-title {
    width: 100%;
    margin: 0 0 14px;
    text-align: center;
    text-transform: uppercase;
}

.attribute-color-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 5px 0 22px;
    padding: 0 12px;
}

.attribute-color-tab {
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    background: #fff;
    color: #333;
    cursor: pointer;
    font: inherit;
    padding: 8px 20px;
}

.attribute-color-tab:hover,
.attribute-color-tab.is-active {
    border-color: #333;
    background: #333;
    color: #fff;
}

@media (max-width: 774px) {
    .attribute-color-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .attribute-color-tab {
        flex: 0 0 auto;
    }
}


