#custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0003;
    width: 100%;
    min-height: 100vh;
    z-index: 999999;
}
.api-section {
    margin-top: 60px;
}



.api-sidebar-menu__link {
    color: #464646;
    position: relative;
}

.api-sidebar-menu__link::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -14px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #21252d;
}

.api-sidebar-submenu {
    padding-left: 15px;
    border-left: 1px solid #cacaca;
    margin: -5px 0;
    margin-top: 5px;
}

.api-sidebar-submenu__link {
    color: #464646;
}

.api-sidebar-submenu__item {
    padding: 5px 0;
}

/* ================================ Right Content ===============================  */
.api-content-wrapper {
    border-left: 1px solid #cacaca;
    padding-left: 30px;
}

@media (max-width: 991px) {
    .api-content-wrapper {
        border-left: 0;
        padding-left: 0px;
    }
}

.api-content__heading {
    margin-bottom: 0px;
    border-bottom: 1px solid #ddd;
}

.api-content__subheading {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.api-content__desc {
    margin-bottom: 20px;
    margin-top: 8px;
}

/* ================================ Table ======================= */

.api-table {
    margin: 0;
    font-size: 15px;
}

.api-table thead tr th {
    background-color: #1c3147;
    text-align: center;
    font-size: 15px;
    padding: 10px;
    color: #fff;
    font-family: "Teko", sans-serif;
    font-weight: 500;
    border-bottom: 0;
    border-right: 1px solid #cacaca;
}

.api-table thead tr th:first-child {
    text-align: left;
    border-radius: 5px 0 0 0;
}

.api-table thead tr th:last-child {
    border-radius: 0 5px 0 0;
    text-align: right;
    border-right: 0
}

.api-table tbody {
    border: 0 !important;
    background-color: #fff;
}

.api-table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 15px;
    border-width: 1px;
    border: 0;
    font-family: "Teko", sans-serif;
    color: #212529;
    border: 1px solid #cacaca;
}

.api-table tbody tr:last-child td {
    border-bottom: 1px solid #cacaca;
}

@media (max-width: 991px) {
    .api-table tbody tr:last-child td {
        border-bottom: 0;
    }
}

.api-table tbody tr td::before {
    content: attr(data-label);
    font-family: "Teko", sans-serif;
    font-size: 15px;
    color: #212529;
    font-weight: 500;
    display: none;
    width: 50% !important;
    text-align: left;
}

.api-table tbody tr td:first-child {
    text-align: left;
}

.api-table tbody tr td:last-child {
    text-align: right;
}

.api-table tbody tr:nth-child(even) {
    background-color: #f5fafd;
}

@media (max-width: 991px) {
    .api-table .table--responsive--lg thead {
        display: none;
    }

    .api-table .table--responsive--lg tbody tr {
        display: block;
    }

    .api-table .table--responsive--lg tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 35px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid #c9c3c36b;
        justify-content: flex-end;
    }

    .api-table .table--responsive--lg tbody tr td:last-child {
        border: none;
    }

    .api-table .table--responsive--lg tbody tr td::before {
        display: block;
    }
}

@media (max-width: 991px) {
    .api-table .table--responsive--lg tbody tr td {
        border: none;
    }
}

/* highlited Text */
.right-highlited__heading {
    background-color: #314459;
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-radius: 5px 5px 0 0;
}

h6.right-highlited__title {
    color: #fff;
}
.clipboard-btn{
    position: relative;
}

.api-docs-section {
    margin-bottom: 20px;
}

.animate-border {
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
}

.animate-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 150px;
    background: #f9b5b8;
    animation: animateThis 1s linear infinite;
}

@-webkit-keyframes animateThis {
    0% {
        left: 0;
    }

    100% {
        left: 100%;

    }
}


.border-line-area {
    position: relative;
    text-align: center;
    z-index: 1;
}

.border-line-area::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    z-index: -1;
}

.border-line-title {
    display: inline-block;
    padding: 3px 10px;
    background-color: #fff;
}
