.sdc-tabs {
    .sdc-tab {
        background-color: @white;
        border: 1px solid @silver;
        border-left: none;
        display: inline-block;
        height: 36px;
        text-align: center;
        cursor: pointer;
        padding: 2px 10px 0 10px;
        margin: 0;


        &:first-child {
            border-left: 1px solid @silver;
        }
        &.sdc-tab-active {
            background-color: @silver;
        }
        &[disabled] {
            opacity: 0.3;
            cursor: default;
        }
    }
    &.sdc-tabs-header {
        .sdc-tab {
            .heading-2;
        }
    }
    &.sdc-tabs-menu {
        .sdc-tab {
            .body-1;
            padding: 0px 10px 4px 10px;
        }
    }
    .sdc-tab-content {
        margin-top: 30px;
    }
}
