.container-doc{
    padding: 0 15px;
    max-width: 1800px;
    margin: 0 auto;
}

.doc-section{
    margin-bottom: 80px;
}

.change-doc{
    position: absolute;
    bottom: -50px;
    display: block;
    font-size: 13px;
    right: 0;
    left: 0;
}

.api-docs h2 {
    font-size: 28px;
    background-color: #f5f2f0;
    padding: 8px 15px;
    margin: 0 -20px 15px -20px;
}

.api-docs .first-h2{
    padding-top: 40px;
    margin-top: -40px;
}

.api-docs p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.doc-nav {
    list-style: none;
    padding-left: 0;
}
.doc-nav li {
    margin-bottom: 10px;
}
.doc-nav a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}
.doc-nav a.active {
    font-weight: 700;
    text-decoration: underline;
    color: #f7941d;
}
pre {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 20px;
}

code.success{
    color: #30c725;
}

code.method{
    color: #254bc7;
}

#doc-container{
    position: relative;
    overflow: visible;
}
#doc-content, #doc-menu{
    padding: 40px 20px;
}
#doc-menu{
    position: sticky;
    top : 80px;
    height: 100vh;
    background-color: #f5f2f0 ;
}

.required{
    text-decoration: underline;
}

@media screen and (max-width: 1400px){
    .doc-nav li{
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px){
    #doc-menu{
        overflow-y: scroll;
    }
}

@media screen and (max-width: 1024px){
    #doc-menu{
        height: auto;
    }
}

@media screen and (min-width:992px){
    .page-wrapper{
        overflow: visible !important;
    }
}
@media screen and (max-width: 991px){
    .change-doc{
        bottom: -20px;
    }
}

@media screen and (max-width: 768px){
    pre > code > span,
    pre > code{
        font-size: 15px !important;
    }
}