
:root {
    /* Largueur du menu*/
    --with-menu: 250px;
    /*padding global*/
    --padding-global: 10px;
    /*Color*/
    --color-global: white;
    /*Background Color*/
    /*--background-color:#090e11;*/
    --background-color: rgba(9, 14, 17, 0.95);
    /**Background element**/
    --backgroundElement-color-full: #13181a;
    --backgroundElement-color: rgb(14 18 20);
    --backgroundElement-color-secondary: rgb(16 21 24);
    --Primary : #49368f;
    --Secondary : hsl(207, 100%, 74%);
    /**color complÃ©mentaire**/
    /*--backgroundComplementaire-color:#30383d;*/
    --backgroundComplementaire-color: rgba(255, 255, 255, 0.05);
}

*,
:after,
:before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--color-global);
    text-decoration: none;
}

body.light {
    /*Color*/
    --color-global: #090e11;
    /*Background Color*/
    /*--background-color:#121212;*/
    --background-color: #ffffff;
    /**Background element**/
    --backgroundElement-color: #dbdbdb;
    --backgroundComplementaire-color: rgba(255, 255, 255, 0.2);
}

html{
    scroll-behavior: smooth;
  }

h1,
h2,
h3,
h4,
h5 {
    font-weight: 400;
}

.center-header h1{
    padding: 20px var(--padding-global);
    background: rgb(60 39 118);
    color: var(--color-global);
    border-radius: 5px;
    margin-bottom: var(--padding-global);
    text-align: center;
    font-weight: 700;
    border: solid 2px rgba(255, 255, 255, 0.1);
}
body {
    background-color: var(--background-color);
    font-size: 16px;
    font-family: Arial,"Liberation Sans",sans-serif;
}

.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
}

hr{
    border: 2px solid;
    border-radius: 5px;
}
a{
    color: var(--Secondary);
    font-weight: 600;
}

a:hover{
    font-weight: bold;
}

 input:focus,
 input:valid {
  border: solid 1px!important;
  border-color: var(--color-global)!important;
}
.container {
    margin-bottom: -55px;
    min-height: 100%;
    overflow: auto;
    margin-left: var(--with-menu);
    position: relative;
}

.center {
    position: relative;
    width: 100%;
    top: 0px;
    margin-left: 0;
    padding: var(--padding-global);
    min-height: 90vh;
    line-height: 1.5rem;
}

.Logo {
    padding: 1rem 2rem;
}

.search {
    width: calc(var(--with-menu) - 20px) !important;
    margin-left: 10px !important;
    color: var(--color-global);
    padding-bottom: calc(var(--padding-global)*1.5) !important;
}

.search input {
    font-size: 15px;
    font-weight: 500;
    outline: none;
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: var(--backgroundComplementaire-color);
}

.search input {
    padding: 0 15px 0 15px;
}

.search .bx-search {
    position: absolute;
    left: 10;
    font-size: 22px;
}

.menu-left {
    position: fixed;
    float: left;
    width: var(--with-menu);
    margin-left: 0;
    height: calc(100vh);
    top: 0;
    bottom: 0;
    z-index: 1;
    border: solid 2px rgba(255, 255, 255, 0.1);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
}

.menu-left span {
    display: none;
}

.menu {
    margin-top: 1rem;
    padding: 0px 20px 100px 20px;
    /* height: 85vh; */
    overflow-y: scroll;
    font-size: 0.60rem;

}

.menu-left hr{
    border: 2px solid var(--Primary);
}
.menu-left h2 {
    font-weight: 100;
}

.sub-menu{
    position: relative;

    list-style: none;
}
.sub-menu:before{
    content: "";

    position: absolute;
    top: 50%;

    left: 5px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .2);
    width: 3px;
    height: 90%;
    border-radius: 3px;

}
.sub-menu li {
    padding: 10px 20px 10px 20px;
    cursor: pointer;
}

.sub-menu li:hover,
.sub-menu li.active {
    /*border-radius: 0 66px 66px 0;*/
    border-radius: 20px;
}

.sub-menu li:hover {
    background-color: var(--backgroundComplementaire-color) !important;
}

.sub-menu li.active {
    background-color: var(--color-global) !important;
    color: var(--backgroundElement-color-full);
}

.content,
.content-inner,
.half {
    width: 100%;
    padding: var(--padding-global);
    background-color: var(--backgroundComplementaire-color);
    border-radius: 5px;
    display: flex !important;
    flex-direction: column;
    border: solid 2px rgba(255, 255, 255, 0.1);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    gap: var(--padding-global);
}

.half.centered{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content .element{
    margin-top: 3px;
    margin-left: var(--padding-global);
    gap: 0.5rem;
    display: flex;
    flex-direction: column;

}

.content {
    gap: .6rem;
    margin-bottom: var(--padding-global);
    border: solid 2px rgba(255, 255, 255, 0.1);
    list-style-type: circle;
}

.content-inner-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.content ul{
    margin-left: 50px;
    margin-top: -10px;
}

.content img{
    border: solid 2px rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.btn-text {
    position: relative;
    letter-spacing: .3px;
    margin-right: 20px;
}

.btn-text:after {

    content: ' ';
    display: inline-block;
    border-bottom:  2.5px solid var(--Secondary);
    border-right: 2.5px solid  var(--Secondary);
    height: 10px;
    width: 10px;
    margin-left: 5px;
    transform: rotate(-45deg);
    line-height: 30px;
    text-align: center;
    transition: all .2s;
    text-transform: none;
}

p{
    padding: var(--padding-global);
}

.btn-text:hover:after {
    margin-left: 10px;
}

.half {
    width: 49.5%;
}

header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: var(--backgroundElement-color);
    border-bottom: solid 1px var(--backgroundComplementaire-color);
    display: none;
}

header>div>img {
    padding-top: var(--padding-global);
    margin-left: var(--padding-global);
}

.sitemap {
    width: 100%;
    border-top: solid 1px var(--backgroundElement-color);
    background-color: var(--backgroundElement-color-secondary);
    color: var(--color-global);
    min-height: 150px;
    padding: var(--padding-global);
}

footer {
    width: 100%;
    border-top: solid 1px var(--backgroundElement-color);
    color: var(--color-global);
    margin-top: -50px;
    font-size: 0.9rem;
    bottom: 0;
    position: relative;
    margin-top: 20px;
}

.footer {
    display: flex;
    padding: var(--padding-global);
    justify-content: space-between;
    background-color: var(--backgroundElement-color);
    border: solid 2px rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar-track,
.menu-left::-webkit-scrollbar-track {
    -webkit-box-shadow: outline 0 0 6px var(--backgroundElement-color);
    background-color: var(--backgroundElement-color);
}

*::-webkit-scrollbar,
.menu-left::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: var(--color-global);
}

*::-webkit-scrollbar-thumb,
.menu-left::-webkit-scrollbar-thumb {
    border-radius: 5px;
    height: 120px;
    background-color: var(--color-global);
}

.badge {
    display: inline-block;
    min-width: 70px;
    padding: 2px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--backgroundElement-color-full);
    text-align: center;
    border-radius: 6px;
    border: solid 2px rgba(255, 255, 255, 0.1);
}

/*  -----------------------------------------*/

.badge:empty {
    display: none;
}

a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.badge-get {
    background-color: rgb(56, 132, 255);
}

.badge-post {
    background-color: rgb(38, 203, 124);
}

.badge-delete {
    background-color: rgb(255, 70, 66);
}

.badge-put {
    background-color: rgb(247, 125, 5);
}

.mark {
    background-color: #ffdd4b;
    color: #1c1c29!important;
}

/** END BADGE*/

/** Recherche*/
.noResult {
    display: flex;
    flex-direction: column;
    margin: 3rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 5px rgb(0 0 0 / 30%);
    border-radius: 6px;
    padding: 2rem;
}

.noResult.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
}

.method.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0!important;
    margin-top: 0!important;
    margin-bottom: 0!important;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
}

b{
    font-weight: bold;
}

code {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

pre {
    background-color: rgba(0, 0, 0, 0.3);
    padding: var(--padding-global);
    border-radius: 5px;
    overflow-x: auto;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

pre code {
    background-color: transparent;
    padding: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--padding-global) 0;
}

table th,
table td {
    padding: 10px;
    text-align: left;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

table th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
@media (max-width: 991.98px) {
    .Logo {
        position: relative;
        /* width: 60px; */
        height: 100px;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    .menu-left::after {
        display: none;
    }
    .menu-left.actif>.burger>.line,
    .menu-left.close>.burger span,
    .menu-left.close>.menu {
        display: none;
    }
    .sub-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .sub-menu:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 2px;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, .2);
        width: 3px;
        height: 100%;
        border-radius: 5px;
    }
    .sub-menu li {
        padding: 5px 0 5px 15px;
        border-radius: 66px;
    }
    .sub-menu li:hover {
        border-radius: 66px;
    }
    .menu-left.close {
        width: 35px;
        height: 35px;
        padding: 5px 5px;
        cursor: pointer;
        position: fixed;
        top: var(--padding-global);
        right: var(--padding-global);
        z-index: 99;
    }
    .menu {

    }
    .container,
    footer {
        margin-left: 0 !important;
        width: 100%;
        position: relative;
    }
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 25;
        display: block;
        background-color: var(--backgroundElement-color-full);
    }
    .menu-left.close>.burger>.line {
        width: 25px;
        height: 4px;
        background: var(--color-global);
        margin-top: 4px;
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }
    .menu-left.close .Logo,
    .menu-left.close footer,
    .menu-left.actif .search {
        display: none;
    }
    .search {
        left: 0px;
        position: fixed;
        top: 10px;
    }
    .menu-left.actif {
        position: fixed;
        left: 0;
        top: 0px;
        bottom: 0px;
        width: 100%;
        background-color: var(--backgroundElement-color-full);
        z-index: 1000;
        height: 100vh;
        /* display: flex; */
        flex-direction: column;
        gap: 5px;
    }
    .menu-left.actif span {
        display: block;
        position: absolute;
        top: 35px;
        right: 10px;
        transform: translate(-50%, -50%);
        font-size: 40px;
        color: #fff;
        z-index: 100;
        cursor: pointer;
    }
    .menu-left.actif span:hover {
        color: #FF005B;
    }
    .content-inner-split {
        display: flex;
        flex-direction: column!important;
        gap: 6px;
    }
    .half {
        width: 100%;
    }
    .content {
        display: flex !important;
        flex-direction: column;
        gap: var(--padding-global);
        margin-left: 0px;
        width: 100%;
        z-index: 1;
    }
    .center {
        position: sticky;
        width: 100%;
        margin-left: 0px;
        z-index: 5;
        margin-top: 80px;
    }
    .overflow-off {
        overflow: hidden !important;
    }
    .overflow-on {
        overflow: inherit;
    }

}