/* Cover */
section.cover .cover-main p,
section.cover .cover-main span {
    color: #fff;
    font-weight: 700;
}

section.cover .cover-main > p:last-child a {
    border: 1px solid var(--theme-color,#fac818);
    color: var(--theme-color,#fac818);
}

section.cover .cover-main > p:last-child a:last-child {
    background-color: var(--theme-color,#fac818);  
    color: #21252a;  
}




.progress {
    background-color: var(--theme-color,#fac818);
}

/* Sidebar */
.sidebar li {
    font-weight: 700;
    margin: 0;
    font-size: 20px;
    background-color: #21252a;
    color: yellowgreen;
}

.sidebar ul li.active > a {
    color: var(--theme-color,#fac818);
    font-size: 20px;
}


.sidebar ul li a {
    color: white;
    font-size: 20px;
    padding: 1px;
    font: lighter ;
}


.sidebar {
    background-color: #21252a;
}


/* Global */
ul,
.markdown-section ul {
    padding: 0;
}

ul li {
    list-style: none;
}


.sidebar-toggle {
    background: linear-gradient(transparent, #21252a);
}


.sidebar-toggle span {
    background-color: #fac818;
}


.markdown-section a {
    color: var(--theme-color,#0492e4);
}

.markdown-section blockquote {
    border-left: 4px solid var(--theme-color,#fac818);
}


.markdown-section blockquote p {
    color: #2c3e50;
}


.markdown-section em {
    color: #fac818;
}




.markdown-section code {
    color: blueviolet;
}

p.tips {
    padding: 10px 15px;
    background-color: var(--theme-color,green);
    color: green;
    font-weight: bold;
}

.width-50 {
    width: 50%;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.clearfix:after {
    content: '';
    clear: both;
    display: block;
}







body {
    font-size: 18px;
}



ul {
    list-style-type: none;
    color: #FFG;
}

li a {
    text-decoration: none;
}




.box {
        border-radius: 5px;
        background: rgba(101, 101, 101, 0.7); margin: auto; padding: 12px;
    }

    .lightbox {
        zoom: 1.5;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.8);
        text-align: center;
        margin: auto;

    }

    div.horizontal {
        display: flex;
        justify-content: center;
        height: 100%;
    }

    div.vertical {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

/*Couleur texte champs*/


    ::-webkit-input-placeholder {
       color: #34495e;
       text-align: center;
    }

    ::-moz-placeholder {
       color: #34495e;
       text-align: center;
    }

    :-ms-input-placeholder {
       color: #34495e;
       text-align: center;
    }







/*contactez nous*/



* {
  box-sizing: border-box;
}


/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}


.container {
    max-width:600px;
    width:100%;
    margin:0 auto;
    position:relative;
}

input[type=submit] {
  background-color: #FAC818;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}



/*exemple barre de recherche*/



.wrapper{
  max-width: 450px;
  margin: 150px auto;
}

.wrapper .search-input{
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.search-input input{
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.search-input.active input{
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li{
  display: block;
}
.autocom-box li:hover{
  background: #efefef;
}

.search-input .icon{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #644bff;
  cursor: pointer;
}







/*barre de recherche*/

.search .clear-button.show svg {
    display: none;
}

.search .clear-button.show {
    position: relative;
    display: block;
    border-radius: 10px;
    height: 20px;
    width: 22px;
    background: #0492e4;
    margin-left: 7px;
}

.search .clear-button.show:before {
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    content: "x";
    display: block;
    text-align: center;
}

.search {
    margin-bottom: 0 !important;
    color: #fff;
}

.search * {
    clear:  left;
}

.search iframe {
    display: none;
}

.search .search-keyword,
.search a:hover {
    color: var(--theme-color,#0492e4);
}

