:root {
    --bs-primary: #7CBA00;
    /* --bs-code-color: #7CBA00; */
}

body {
    color: #666;
    font-size: 15px;
    background-color: #fff;
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

a {
    transition: all 0.3s ease-in-out;
}

input,
select {
    color: #666;
    font-size: 15px;
}

p {
    color: #666;
    line-height: 24px;
    margin-bottom: 16px;
}

h1 {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

h2 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

h3 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

h4 {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.btn-link {
    color: #7CBA00 !important;
    font-weight: 600;
    text-decoration: none;
}

.btn-link:hover {
    color: #679A00 !important;
}

.page-content ul li {
    margin: 4px 0;
}

.btn-link:hover svg path {
    stroke: #679A00 !important;
}

.btn-primary {
    font-size: 15px;
    padding: 6px 16px 5px;
    background-color: #7CBA00 !important;
    border-color: #7CBA00 !important;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #679A00 !important;
    border-color: #679A00 !important;
}

.btn-secondary {
    color: #555;
    font-size: 15px;
    padding: 6px 16px 5px;
    background-color: transparent !important;
    border-color: #ddd !important;
    border-radius: 30px;
}

.btn-secondary:hover {
    color: #555;
    background-color: #e8e8e8 !important;
    border-color: #e8e8e8 !important;
}

/* Button Menu */
.btn-menu {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    /*background-color: #F8F8F8;*/
    margin: 0px;
    padding: 0;
    position: relative;
    z-index: 9;
}

.btn-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
    margin: 3px 0;
    border-radius: 20px;
}

.hd-open .btn-menu span {
    opacity: 0;
    /* background-color: #002330; */
}

/* #header.sticky .btn-menu span{
    background-color: #002330;
} */
.hd-open .btn-menu span:first-child {
    opacity: 1;
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hd-open .btn-menu span:last-child {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-6px, -7px);
    transform: rotate(45deg) translate(-6px, -7px);
}


.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

hr {
    opacity: 0.2;
}

#wrapper {
    min-height: 100vh;
    position: relative;
}

/*** Header ***/
header.topbar {
    height: 70px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo {
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 260px;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.topbar-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.search-box {
    width: 384px;
    padding: 0 12px 0 24px;
}

.search-box input {
    background-image: url('../images/search-icon2.svg');
    background-position: calc(100% - 11px) center;
    background-repeat: no-repeat;
}

.apidropdown-box {
    width: 384px;
    padding: 0 24px 0 12px;
}

.topbar-action {
    display: none;
}

.topbar-action a {
    margin-left: 16px;
}

/*** Sidebar ***/
.sidebar-left {
    width: 260px;
    padding: 70px 0 0;
    position: fixed;
    top: 0;
    bottom: 0;
    background-color: #fff;
    border-right: 1px solid #eee;
}

.sidebar-menu {
    height: 100%;
    padding: 20px 24px;
    overflow: auto;
}

.sidebar-menu::-webkit-scrollbar {
    width: 3px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 2px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 2px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    border-left: 1px solid #ddd;
    padding-left: 8px;
}

.sidebar-menu ul li.menu-title {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    border: none;
    margin: 24px 0 8px;
}

.sidebar-menu ul li.menu-title:first-child {
    margin-top: 0;
}

.sidebar-menu ul li.active {
    border-left: 1px solid #7CBA00;
}

.sidebar-menu ul li a {
    display: block;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
}

.sidebar-menu ul li a:hover {
    color: #7CBA00;
}

.sidebar-menu ul li.active>a {
    background-color: #F4F4F5;
}

.sidebar-menu ul ul li {
    border: none;
    padding-left: 12px;
}

.sidebar-menu ul ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 10px 12px;
    line-height: 1;
}

.sidebar-menu ul ul li a .endpoint-txt {
    color: #666 !important;
    transition: all 0.3s ease-in-out;
}

.sidebar-menu ul ul li a:hover,
.sidebar-menu ul ul li a:hover span {
    color: #7CBA00 !important;
}

.sidebar-menu ul ul li a span:nth-child(2) {
    color: #bbb !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

/*** Content ***/
.main-content {
    margin-left: 260px;
    border-left: 1px solid #eee;
}

.page-content {
    max-width: 1000px;
    padding: 106px 24px 40px;
    margin: 0 auto;
}

.endpoint-txt,
.param-txt {
    color: #a5a5a5;
}

.text-bg-info {
    color: #5DA8FF !important;
    font-weight: 500;
    text-transform: uppercase;
    background-color: rgba(93, 168, 255, 0.15) !important;
    border: 1px solid #5DA8FF;
    border-radius: 5px;
    margin-right: 8px;
    padding: 4px 8px 3px;
}

.text-bg-success {
    color: #679A00 !important;
    font-weight: 500;
    text-transform: uppercase;
    background-color: rgba(103, 154, 0, 0.15) !important;
    border: 1px solid #679A00;
    border-radius: 5px;
    margin-right: 8px;
    padding: 4px 8px 3px;
}

.text-bg-light {
    color: #666 !important;
    font-weight: 500;
    text-transform: lowercase;
    background-color: #F4F4F5 !important;
    border: 1px solid #D4D4D8;
    border-radius: 5px;
    margin-right: 8px;
    padding: 4px 8px 3px;
}

.code-toolbar {
    max-height: 320px;
    overflow-y: auto;
}

.card {
    /* border: none; */
    border-radius: 15px;
    overflow: hidden;
}

.card-header {
    color: #fff;
    line-height: 1;
    background-color: #27272A;
    padding: 16px 16px 14px;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.card pre {
    border-top: 1px solid #3F3F46;
    background-color: #18181B;
    padding: 16px;
    margin: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    /* overflow-x: auto; */
}

.language-markup {
    /* color: #7ec699 !important; */
    /* font-weight: 600 !important; */
    background-color: #18181B !important;
}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1279px) {
    /* .container {
    max-width: 100% !important;
  } */
}

@media screen and (max-width: 1199px) {
    .search-box,
    .apidropdown-box {
        display: none;
    }

    .main-content {
        margin: 0;
    }

    header.topbar {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .topbar-right {
        justify-content: flex-end;
        margin-right: 24px;
        border: none;
    }

    .topbar-action {
        display: flex;
        align-items: center;
    }

    .sidebar-left {
        width: 0;
        overflow-x: hidden;
        transition: 0.5s;
        z-index: 9;
    }

    .bd-open {
        overflow: hidden;
    }

    .bd-open #wrapper:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(4px);
        background-color: hsla(240, 5%, 65%, .25);
        z-index: 1;
    }

    .hd-open .sidebar-left {
        width: 260px;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 567px) {}

@media screen and (max-width: 479px) {}

@media screen and (max-width: 424px) {}

@media screen and (max-width: 350px) {}

@media screen and (max-width: 320px) {}