.features-tabs .features-tabs-menu {
    position: relative;
    display: inline-flex;
    margin: auto;
    padding: 4px;
    border-radius: 25px;
    border: 1px solid #0c84f640;
    background: #1082f61a;
    margin-top: 24px;
}

.features-tabs .features-tabs-menu li {
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 20px;
}

.features-tabs .features-tabs-menu li:not(:last-child) {
    margin-right: 0;
}

.features-tabs .features-tabs-menu li{
    margin: 0;
}

.features-tabs .features-tabs-menu li.active {
    color: #ffffff;
    font-family: var(--primaryfont-bold);
    font-weight: bold;
    background: #008ef5;
    box-shadow: 0 1px 10px rgb(0 0 0 / 18%);
}

.features-tabs-container {
    margin-top: 16px;
    position: relative;
}

.features-tabs-container .features-list {
    display: none;
    justify-content: space-between;
    margin-left: 32px;
    margin-bottom: 24px;
}

.features-tabs-container .features-list.active {
    display: block;
    animation: slides 1s ease;
}

.features-tabs-container .features-list>div {
    /* width: 40%; */
    text-align: left;
}

@media only screen and (max-width:991px) {
    .features-tabs .features-tabs-menu li:not(:last-child) {
        margin-right: 35px;
    }

    .features-tabs .features-tabs-menu li {
        font-size: 20px;
    }
}

@media only screen and (max-width:767px) {
    .features-tabs .features-tabs-menu {
        display: none;
    }

    .features-tabs-container {
        margin: 0;
    }

    .features-tabs-container .features-list {
        flex-direction: column;
        display: block;
    }

    .features-tabs-container .features-list:not(:last-child) {
        margin-bottom: 50px;
    }
}

@keyframes slides {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.code-block {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-bottom: 24px;
}

.code-block pre {
    background: #f7f7f7;
    color: #000;
    padding: 24px 85px 24px 16px;
    overflow-x: auto;
    overflow-y: auto;
    font-family: monospace;
    white-space: pre-wrap;
    border-radius: 16px;
    border-inline-start: 4px solid #29b5e8;
    font-size: 14px;
    max-height: 260px;
    transition: max-height .3s ease;
}

.code-block pre.expanded {
    max-height: none;
}

.code-block .copy-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #3a3a3a;
    color: #fff;
    border: 0;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: background .2s;
    font-family: var(--zf-primary-semibold);
}

.tab-wrapper {
    border: 1px solid #ccc;
    min-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.help-tab {
    overflow: hidden;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.help-tab button.active {
    background-color: #ccc;
}

.help-tab button:hover {
    background-color: #ddd;
}

.help-tab button {
    background-color: inherit;
    float: left;
    border: 0;
    outline: 0;
    cursor: pointer;
    padding: 14px 16px;
    transition: .3s;
    font-size: 17px;
}

.help-tabcontent {
    padding: 15px;
}

.content-panel-wrap>.api-content-panel.ztwo-col>div .api-content-inner-wrap>div{
    padding: 0;
}

.content-panel-wrap .ztwo-col .api-content-inner-wrap{
    padding: 0px 30px;
}