.tct-tabs {
    width: 100%;
    box-sizing: border-box;
}

.tct-tabs *,
.tct-tabs *::before,
.tct-tabs *::after {
    box-sizing: border-box;
}

.tct-tabs__nav {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin: 0 0 24px;
    padding: 0;
}

.tct-tabs__button,
.tct-tabs__button[type="button"] {
    -webkit-appearance: none;
    appearance: none;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 14px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
    color: inherit;
    font: inherit;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.tct-tabs__button:hover,
.tct-tabs__button[type="button"]:hover {
    text-decoration: none;
}

.tct-tabs__button.is-active,
.tct-tabs__button[type="button"].is-active {
    background-color: #91358c;
    color: #fff;
}

.tct-tabs__button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

.tct-tabs__panels,
.tct-tabs__panel {
    width: 100%;
}

.tct-tabs__panel[hidden] {
    display: none !important;
}

.tct-tabs__notice {
    padding: 12px 14px;
    border: 1px dashed #b7b7b7;
    background: #fafafa;
    color: #444;
    font-size: 13px;
}

@media (max-width: 767px) {
    .tct-tabs--mobile-scroll .tct-tabs__nav {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .tct-tabs--mobile-scroll .tct-tabs__button,
    .tct-tabs--mobile-scroll .tct-tabs__button[type="button"] {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
