.SizeChartTabs {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    border-bottom: 1px solid #e5e5e5;
}

.SizeChartTabs-item {
    position: relative;
    flex: 0 0 auto;
    padding: 0.75rem 0;
    border: 0;
    background: transparent;
    color: #111;
    font: inherit;
    cursor: pointer;
}

.SizeChartTabs-item::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #111;
    content: "";
    opacity: 0;
}

.SizeChartTabs-item.is-active::after {
    opacity: 1;
}

.SizeChartTabs-item:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.SizeChartPanel-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.SizeChartPanel-description {
    margin-top: 0.75rem;
}

@media (min-width: 769px) {
    .SizeChartTabs {
        overflow-x: visible;
    }
}
