.tab-components {
    padding: var(--spacing-07) 0 var(--spacing-01);
}


.tab-list-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.tab-components__lists {
    text-align: center;
    display: flex;
    align-items: center;
    border-bottom: 4px solid rgba(0, 0, 0, 0.14);
}

.tab-components__title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--black);
    padding-bottom: var(--spacing-01);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 220px;
}

.tab-components__title:hover:after,
.tab-components__title.tab-active:after {
    position: absolute;
    content: '';
    height: 4px;
    width: 100%;
    bottom: -4px;
    left: 0;
    right: 0;
    background: var(--primary-red);
}


.tab-components__content-wrapper {
    padding-top: var(--spacing-07);
}

.tab-components.tabbed-enable .tab-components__content:not(.tab-active) {
    display: none;
}


.tab_components__head {
    margin: 0 auto 96px;
    max-width: 820px;
}

.tab-components.tabbed-disable .tab_components__head{
    margin-bottom: 30px;
}

.tab-components.tabbed-disable .tab-components__content{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    
}


[data-theme="dark-theme"] .tab-components__content-wrapper {
    padding-top: 20px;
}

[data-theme="dark-theme"] .tab-components__content{
    justify-content: center;
}

[data-theme="dark-theme"] .code-box-head {
    background: #272727;
    padding: 13px 30px 10px;
    height: 48px;
}

[data-theme="dark-theme"] .code-logo img {
    margin-right: 5px;
}

[data-theme="dark-theme"] pre[class*="language-"] {
    margin: 0;
    background: var(--black);
    border-radius: 0;
    height: 320px;
    overflow: auto;
}

[data-theme="dark-theme"] .token.keyword {
    color: var(--orange);
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
}

.token.operator, 
.token.entity, 
.token.url,[data-theme="dark-theme"]  
.token.string, 
.style .token.string, 
.token.variable, 
[data-theme="dark-theme"] .token.punctuation {
    color: var(--primary-red);
    background: none;
}

[data-theme="dark-theme"] .code-box__ellipse{
    display: none;
}
[data-theme="dark-theme"] .code-logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
}

[data-theme="dark-theme"] .code-logo span{
    font-weight: 700;
    margin-left: 8px;
}

[data-theme="dark-theme"] code[class*="language-"], 
[data-theme="dark-theme"] pre[class*="language-"] {
    color: var(--white);
    font-size: 13px;
    line-height: 20px;
}

[data-theme="dark-theme"] code[class*="language-"]{
    overflow: visible;
}

pre[class*=language-].line-numbers{
    padding-left: 90px;
}
.line-numbers .line-numbers-rows{
    border-right: none;
    left: -65px;
}

@media all and (min-width: 768px) {
    .tab-components {
        padding: var(--spacing-09) 0;
    }

    .tab-components.tabbed-disable{
        padding-bottom: 70px;
    }   

    .tab-components__lists {
        max-width: 255px;
        margin: 0 30px;
    }

    .tab-components.tabbed-disable .tab-components__content{
        gap: 10px;
    }

    .tab-components.tabbed-disable .code-box{
        width: 584px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media all and (min-width: 992px) {
    .tab-components__tabs-wrapper {
        margin: 0;
        justify-content: space-evenly;
        border-bottom: 4px solid rgba(0, 0, 0, 0.14);
    }

    .tab-components__lists {
        border-bottom: none;
    }
    .tab-components.tabbed-disable .tab-components__content{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
    .tab-components.tabbed-disable .code-box{
        width: 100%;
    }
}