 /*-------COMPONENTS-------*/
 p {
  margin: inherit;
 }
 .wm-50
 {
    width: calc(50% - 15px) !important;
 }

 @media (max-width:767px) {
  .wm-50
  {
      width: 100% !important;
  }
 }

h1 {
  font-size: 24px;
  font-family: -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  Roboto,
  Helvetica, Arial, sans-serif;
}

h2 {
  font-size: 20px;
  font-family: -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  Roboto,
  Helvetica, Arial, sans-serif;
}

 .btn-primary-abs
 {
   position: absolute;
   top: 2px;
   right: 2px;
   border: 1px solid #272822;
   border-radius: 4px;
   background-color: transparent;
   color: #272822;
   padding: 5px 10px;
   font-size: 12px;
   cursor: pointer;
   transition: 0.3s;
 }

 .btn-primary-abs:hover
 {
   background-color: #272822;
   color: white;
 }

 .information-container
 {
  background-color: #F5F8F9;
  /*border: 1px solid #ced4da;*/
  font-weight: 300;
  color: #778289;
  border-radius: 4px;
  padding: 20px 20px;
  font-size: 14px;
 }

 .information-container > hr
 {
  opacity: 0.08;
  margin: 8px 0 4px 0;
 }

 .information-container a
 {
  color: #181818;
  text-decoration: none;
  font-weight: 400;
  transition: 0.1s;
 }

 .information-container a:hover
 {
    color: #fe8cc5;
 }
 /*---------LAYOUT---------*/
 main 
 {
    display: flex;
    height: 100vh;
    width: 100%;
    background-color: #161615;
 }

.main-left 
{
    height: 100%;
    width: 300px;
    background-color: #161615;
    overflow: auto;
    padding: 15px 15px 0 15px;
    transition: 0.6s;
}
.main-right {
    width: calc(100% - 300px);
    background-color: white;
    /*border-top-left-radius: 20px;
    border-top-right-radius: 20px;*/
    border-radius: 20px;
    border: 10px solid #161615;
    /*border-right: 10px solid #161615;
    border-top: 10px solid #161615;
    border-bottom: 10px solid #161615;*/
    padding: 30px;
    overflow: auto;
    transition: 0.6s;
}

.nav-select
{
  width: 100%;
  height: 40px;
  background-color: #282828;
  background-image: url(/img/icones/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  color: white;
  text-align: left;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #282828;
  border-radius: 20px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.nav-label
{
  color: #a8a8a8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 15px;
}

.nav-ul
{
  list-style: none;
  padding-left: 0px;
}

.nav-ul > li 
{
  width: 100%;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  font-size: 16px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.nav-ul > li:hover
{
  background-color: #40e04d;
}

.nav-ul > li a
{
  color: white;
  text-decoration: none;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}

.nav-ul > li:hover a
{
  color: #161615;
  /*text-shadow: #fe8cc5 0 0 10px;*/
}

@media (max-width: 1099px) {
  .main-left 
  {
      width: 120px;
      padding: 5px 5px 0 5px;
  }
  .main-right {
      width: calc(100% - 120px);
  }

  .nav-label
  {
    font-size: 8px;
  }

  .nav-ul > li, .nav-select 
  {
    font-size: 12px;
  }
}
 /*--------CODE BLOC--------*/
 .code-container {  
    width: 100%;  
    margin: 0 auto;  
  }  
  .code-container code[data-claire-semantic]::before {
    content: attr(data-claire-semantic);
    color: rgba(0,0,0,.6);
    font-size: 12px;
    position: absolute;
    top: -18px;
    left: 0;
  }

  .code {  
    font-family: monospace;
    /*color: #d63384 !important;  */
    color: #F8F8F2 !important;
    font-size: 12px;   
    line-height: 1.5;  
    overflow: auto;  
    white-space: pre-wrap;  
    counter-reset: line;  
  }  
    
  .code code {  
    display: block;  
    padding: 0 10px;  
    background-color: #272822;
    border: 1px solid #ccc;  
    border-radius: 5px;  
    position: relative;  
  }  
    
  .code .code-line
  {
    width: 100%;
  }
  .code .code-line::before {  
    content: counter(line);  
    font-family: monospace;
    font-size: 14px;  
    color: #7a7a7a;  
    padding-right: 10px;  
    position: absolute;  
    left: 15px;  
    counter-increment: line;  
  }

  .code .code-line:hover::before{  
    color: #fff !important;  
  }
  
  .code-color-balise { color: rgb(50, 179, 205); }
  .code-color-fonction { color: rgb(215, 189, 94); }
  .code-color-attribut { color: rgb(179, 241, 255); }
  .code-color-commentaire { color: limegreen; }
  .code-color-default { color: #fe8cc5; }

  .code-copy-btn
  {
    position: absolute;
    top: 32px;
    right: 15px;
    border: 1px solid white;
    border-radius: 4px;
    background-color: transparent;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
  }

  .code-copy-btn:hover
  {
    background-color: white;
    color: #272822;
  }
  /*--------CODE BLOC--------*/
  