/* On the hompage, style the content switcher element */
/* Add transition to the slider element */
#brxe-cpighd .x-toggle-switch_multiple-slider {
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /* Smooth transition for position AND border-radius */
    transition: all 0.3s ease-in-out;
}

/* When second button is active - rounded bottom corners */
#brxe-cpighd .x-toggle-switch_label:nth-child(2).x-toggle-switch_label-active ~ .x-toggle-switch_multiple-slider {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
}