.ct_custom.switch {
    background: var(--Color-greyscale-200);
    display: flex;
    width: 100px;
    height: 36px;
    padding: 2px;
    border-radius: 4px;
    align-items: flex-start;
    position: relative;
}
.ct_custom.switch .tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    height: 100%;
    width: 100%;
    position: relative;
}
.ct_custom.switch .tab-inner > div {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: default;
}
.ct_custom.switch .tab-inner > div p {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.25px;
    transition: all 0.1s;
}
.ct_custom.switch .tab-inner > div:not(.active) {
    cursor: pointer;
    color: var(--Color-greyscale-900);
}
.ct_custom.switch .tab-inner .tab.active p {
    color: var(--Color-greyscale-900);
}
.ct_custom.switch .tab-inner .tab:not(.active) p {
    color: var(--Color-greyscale-700);
}
.ct_custom.switch .tab-inner > div:not(.active):hover p {
    color: var(--Color-greyscale-900);
}
.ct_custom.switch .tab-inner .tab-active-bg {
    width: calc(50% - 1px);
    height: 100%;
    border-radius: 4px;
    position: absolute;
    background: var(--Color-greyscale-000);
    z-index: 0;
    left: 0;
    transition: all 0.2s ease;
}

.ct_custom.switch.disabled{
    pointer-events: none;
    opacity: 0.5;
}