@charset "UTF-8";
/*Theme Name: Bookelis_121_en
Theme URI: www.bookelis.fr
Description: 
Author URI: www.lafischduwb.com
Version: 1.0*/

@charset "UTF-8";
/*DEBUT GENERAL SITE*/
html {
    margin-top: 0!important;
}
body {
    margin: 130px 0 0 0;
}
body.home:not(.bandeau){
  margin-top: 70px;
}
body.bandeau{
  margin:0;
}

:root {
    --dark-color: #414141;
    --bright-color: #fbf9f9;
}
.bright{
  background-color: var(--bright-color);
}
p,a,span,li,ul,h1,h2,h3,h4,h5,h6{
  color:var(--dark-color);
}
p,a,span,li,ul{
  font-size: 16px;
}
a,a:hover{
  text-decoration: none;
}
a:hover{
  color: var(--secondary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dark_bkg {
    color: var(--dark-color);
}
.wp-block-image img {
    height: auto;
    width: 100%
}
#main_container {
    min-height: calc(100vh - 60px);
    margin-top: 105px;
}
body.bandeau:not(.home) #main_container{
      margin-top: 40px;
}
body.bandeau.home #main_container{
      margin-top: 0;
}
img {
    width: 100%;
}

.std_btn {
    padding: 0 20px;
    margin-top: 10px;
    border: 2px solid var(--secondary-color);
}
.std_btn .arrow_inside {
    margin-left: 0;
    font-size: 20px;
    width: 0;
    margin-top: 0px;
    height: 30px;
    overflow: hidden;
    color: var(--secondary-color);
    -webkit-transition: all 0.3s ease-in-out ;
    -o-transition: all 0.3s ease-in-out ;
    transition: all 0.3s ease-in-out ;
}
.std_btn:hover .arrow_inside{
    margin-left: 15px;
    width: 20px;  
} 
.big_btn {
    background: var(--dark-color);
    text-align: center;
    display: block;
    color: #fff;
    width: 260px;
    padding: 15px 15px;
    margin: 45px 0;
    text-transform: uppercase;
}
.big_btn:hover{
  color: #fff;
}
.line{
    position: absolute;
    width: 70%;
    height: 1px;
    background: var(--primary-color);
    left: 24px;
    top: 70%;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out ;
    -o-transition: all 0.3s ease-in-out ;
    transition: all 0.3s ease-in-out ;
}
.line.top {
    width: 50%;
}
.content_author {
    padding: 15px;
    background: #e2e0fa;
}
.bottom_titre{
  position: relative;
}
.bottom_titre:after {
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 5px;
    content: "";
    background-color: var(--primary-color);
}
.half_border{
  position: relative;
}
.half_border:before, 
.half_border:after{
  position: absolute;
  content: "";
  background-color: var(--primary-color);
}
.half_border:before{
  height: 1px;
  width: 1px;
  height: 100%;
  top: 0;
}
.half_border:after {
  width: 70%;
  height: 1px;
  bottom: 0;
}
.left_line:after{
    position: absolute;
    left: -10px;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
    background-color: var(--primary-color);  
}
/*MEDIA QUERY GENERAL SITE*/
@media (max-width:768px) {
  .line {
      width: 90%;
  }
  .half_border:before, 
  .half_border:after,
  #title_list_book:before{
    display: none;
  }
}
/*@media (max-width:500px) {
}*/
/*FIN GENERAL SITE*/
/*DEBUT NAV*/
.main_menu {
    margin:0;
}
.my_burger {
    display: none;
}
.wrapper_nav {
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(102,102,102,1);
            box-shadow: 0px 3px 3px 0px rgba(102,102,102,1);
    background: #fff;
}
.wrapper_nav:not(.bandeau),
.wrapper_nav.bandeau #container_nav.fixed{
    height: 70px;
    position: fixed;
    top:0;
}
.wrapper_nav.bandeau #container_nav{
      background: #fff;
      z-index: 999999;
      -webkit-box-shadow: 0px 3px 3px 0px rgb(102 102 102);
      box-shadow: 0px 3px 3px 0px rgb(102 102 102);
}
.main_menu li{
    margin-right: 20px;
    display: inline-block;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    padding: 16px;
}
.main_menu li a{
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    display: block;
}
.main_menu li.current_page_item a,
.main_menu li.current-menu-item a{
  border-bottom: 2px solid var(--primary-color) !important;
}
/*MEDIA QUERY NAV*/
@media (max-width:991px) {
    header {
      min-height: 0;
    }
    .menu-top_menu-container{
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;    
        -webkit-transform: translateX(-100%);    
            -ms-transform: translateX(-100%);    
                transform: translateX(-100%);
        -webkit-transition:-webkit-transform .5s ease-in;
        transition:-webkit-transform .5s ease-in;
        -o-transition:transform .5s ease-in;
        transition:transform .5s ease-in;
        transition:transform .5s ease-in, -webkit-transform .5s ease-in;
        background-color: rgba(255,255,255,0.9);
    }
    .main_menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 100%;
    }
    .main_menu li{
        margin-bottom: 15px;
        -webkit-transition: color .3s .15s ease-in;
        -o-transition: color .3s .15s ease-in;
        transition: color .3s .15s ease-in;
    }
    .my_burger {
        position: fixed;
        z-index: 9999999999;
        top: 0;
        display: block;
        right: 20px;
    }
    label {
      display: inline-block;
      padding: 7px 10px;
      background-color: transparent;
      cursor: pointer;
      margin: 10px;
      z-index: 3;
    }
    .bar {
      display: block;
      background-color: var(--dark-color);
      width: 30px;
      height: 3px;
      border-radius: 5px;
      margin: 5px auto;
      -webkit-transition: background-color .5s ease-in, width .5s ease-in, -webkit-transform .5s ease-in;
      transition: background-color .5s ease-in, width .5s ease-in, -webkit-transform .5s ease-in;
      -o-transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
      transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
      transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in, -webkit-transform .5s ease-in;
    }
    .main_content,.bar,.top,.bottom,.middle{
        -webkit-transition:width .5s ease-in, -webkit-transform .5s ease-in;
        transition:width .5s ease-in, -webkit-transform .5s ease-in;
        -o-transition:transform .5s ease-in, width .5s ease-in;
        transition:transform .5s ease-in, width .5s ease-in;
        transition:transform .5s ease-in, width .5s ease-in, -webkit-transform .5s ease-in;
    }
    input[type="checkbox"]#myInput {
      display: none;
    }
    .top.translate {
      -webkit-transform: translateY(0px) rotateZ(45deg);
          -ms-transform: translateY(0px) rotate(45deg);
              transform: translateY(0px) rotateZ(45deg);
    }

    .bottom.translate {
      -webkit-transform: translateY(-15px) rotateZ(-45deg);
          -ms-transform: translateY(-15px) rotate(-45deg);
              transform: translateY(-15px) rotateZ(-45deg);
    }
    .middle.translate {
      width: 0;
    }
    .menu-top_menu-container.translate{
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }
    .menu-item-has-children{
        min-height: 226px !important;
    }
    .menu-item-has-children:after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }
}
/*FIN NAV*/
/*DEBUT HEADER*/
header .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.prenom_nom span:nth-child(1){
    font-size: 24px;
}
.prenom_nom span:nth-child(3),.pseudo span{
    font-size: 40px;
    line-height: 0.4;
}
#header_beandeau{
  height: 300px;
  background-size: cover;
  background-position: center;
}
#header_beandeau a span{
  font-size: 45px;
}
#header_beandeau p{
  font-size: 30px;
}
#header_beandeau p, 
#header_beandeau a span{
  color: #fff;
}
#auteur_responsive{
  display: none;
  margin-left:15px;
  position: relative;
  z-index: 9999999;
}
#auteur_responsive span{
  font-size: 20px;
}
@media (max-width:991px) {
  #auteur_responsive{
    display: flex;
  }
  #header_beandeau{
    display: none;
  }
  #container_nav{
    height: 70px !important;
    position: fixed;
    top: 0;
    height: 0;
  }
  body.bandeau:not(.home) #main_container {
    margin-top: 80px;
  }
  body.bandeau.home #main_container {
      margin-top: 40px;
  }
}
/*FIN HEADER*/
/*DEBUT AUTHOR PAGE*/
  #author_page {
      height: 250px;
      position: relative;
  }
  #wrapper_h1_author {
      position: absolute;
      right: 20%;
      top: 30%;
  }
  #author_page h1{
    position: relative;
  }
  #author_page h1:after{
    position: absolute;
    left: -10px;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
    background-color: var(--primary-color);
  }
  #author_page .prenom_nom span:nth-child(1){
    font-size: 40px;
  }   
  #author_page .prenom_nom span:nth-child(3){
    font-size: 60px;
    line-height: 0.4;
  }  
  #tof_author img{
    max-width: 400px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(130,130,130,0.4);
            box-shadow: 0px 0px 5px 0px rgba(130,130,130,0.4)
  }
  .wrapper_content_author{
    position: relative;
    height: 100%;
  }
  .wrapper_content_author .content_author {
    position: absolute;
    left: -100px;
    top: -75px;
  }
  #rs_author img{
    width: 30px;
    display: block;
    margin-bottom: 10px;
  }
  #rs_author{
    position: absolute;
    top: 30%;
    right: 0;
  }
@media (max-width:991px) {
  #content_author {
    position: relative;
    left: 0;
    top: 0;
    margin: 30px 0;
  }  
  .wrapper_content_author .content_author {
      position: relative;
      left: 0;
      top: 0px;
  }
}
@media (max-width:576px) {
  #author_page {
      height: auto;
  }
  #wrapper_h1_author {
    position: relative;
    right: 0;
    top: 0;
    margin: 30px 0 0 10px;
  }
  #rs_author img {
    width: 30px;
    display: inline;
    margin-bottom: 10px;
  }
  #rs_author {
      position: relative;
      top: 0;
      right: 0;
  }
}
/*FIN AUTHOR PAGE*/


/*DEBUT HOME*/
.home #main_container{
  margin-top: 55px;
}
#last_book {
    background-color: var(--dark-color);
}
#wrapper_content_livre_home{
    padding-right: 100px;
}
#wrapper_img_livre_home {
    padding: 45px;
}
#wrapper_img_livre_home img {
    -webkit-box-shadow: 10px 10px 30px 0px rgba(255,255,255,1);
            box-shadow: 10px 10px 30px 0px rgba(255,255,255,1);
}
#wrapper_content_livre_home p, 
#wrapper_content_livre_home h1{
  color: #fff;
}
#plus_book_home{
    background-color: #ccc;
    width: 150px;
    border: none;
    padding: 5px 20px;
}
#author_home{
  margin-top: 70px;
}
.wrapper_bio_home{
    max-width: 80%;
    margin: auto;
}
#author_home .content_author {
    padding-top: 100px;
    padding-right: 100px;
    width: 70%;
}
.wrapper_name_img_home {
    width: 30%;
    position: relative;
}
.bottom_titre {
    position: relative;
    margin-left: 45px;
    margin-top: -15px;
}
.author_home_name {
    position: absolute;
    top: -20px;
}
.author_home_name.home_prenom_nom span:last-child{
  line-height: 0;
}
#author_home img {
    height: 300px;
    width: auto;
    position: absolute;
    top: 90px;
    left: -70px;
}
.author_home_name span {
    font-size: 50px;
}
.wrapper_btn_home {
    margin-top: 70px;
    position: relative;
}
@media (max-width:991px) {
  #last_book{
    padding:15px 0;
  }
  #wrapper_img_livre_home{
    padding: 0;
    height: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #wrapper_content_livre_home {
      padding: 0;
  }
  #wrapper_img_livre_home img {
      max-width: 250px;
      margin-bottom: 30px;
      margin-top: 30px;
  }
  .wrapper_bio_home{
    max-width: 100%;
  }
  .wrapper_bio_home {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #author_home .content_author {
    padding-top: 15px;
    padding-right: 15px;
    width: 100%;
  }
.wrapper_name_img_home {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
  .author_home_name {
      position: relative;
      width: 100%;
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      top: 0;
  }
  #author_home img {
      position: relative;
      top: 0;
      left: 0;
      margin: 0 auto 30px auto;
  }
}
/*FIN HOME*/
/*DEBUT LISTE LIVRES*/
.livre{
  width: 50%;
}
.livre img{
  width: 150px;
}
.wrapper_short_list_livres {
    background-color: #fff;
    padding: 30px 0;
}
.wrapper_info_livre {
    padding: 5px 15px;
    margin-left: 10px;
    width: 250px;
}
.wrapper_short_list_livres .container:nth-child(1) h3 {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--primary-color);
            text-decoration-color: var(--primary-color);
}
.wrapper_info_livre h3 {
    margin: 5px 0;
    font-size: 24px !important;
}
.wrapper_info_livre span{
  font-size: 12px;
}
#tag_list {
    margin-bottom: 10px;
}
.tag_book{
    background: #fff;
    padding: 2px 5px;
    margin-right: 5px;
    font-size: 14px;  
}
.single-livres .tag_book{
    background: var(--dark-color);
    color: #fff;
}
@media (max-width: 991px){
  .livre{
    width: 100%;
    margin-bottom: 15px;
  }
  .wrapper_info_livre h3 {
      font-size: 30px !important;
  }
}
/*FIN LISTE LIVRES*/
/*DEBUT LISTE ACTUS*/
.item_actu {
    margin-bottom: 15px;
}
.wrapper_list_actu {
    padding-left: 100px;
    position: relative;
    padding-bottom: 35px;
    width: 70%;
    margin-left: 60px;
}
.half_border.wrapper_list_actu:before,
.half_border.wrapper_list_actu:after{
  left:50px;
}
.item_actu span {
    font-size: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.item_actu:hover span {
    margin-right: -15px;
}
.item_actu p{
    font-weight: bold;
  margin-bottom: 0
}

.title_actu {
    font-size: 36px;
    width: 100px;
    text-align: center;
    position: relative;
    margin-left: 60px;
}
.title_actu:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
  z-index: 999;
}
#all_actu {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#all_actu:hover {
  letter-spacing: 1px;
}
#list_book_home{
  margin-top: 45px;
}
@media (max-width: 991px){
  .wrapper_list_actu {
      width: 100%;
      margin-left: 0;
      padding-left: 50px;
  }
  .title_actu{
    margin-left: -50px;
  }
  .half_border.wrapper_list_actu:before, .half_border.wrapper_list_actu:after {
      left: 0;
  }


}
@media (max-width: 500px){
  .wrapper_list_actu {
      padding-left: 0px;
  }
  .title_actu:after{
    display: none;
  }
  .title_actu {
    margin-left: -14px;
  }
}
/*FIN LISTE ACTUS*/
/*DEBUT PAGE LISTE LIVRES*/
#title_list_book:before{
  content: "";
  position: absolute;
  left:calc(calc(8.33333% / 2) - 6px);
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid var(--primary-color);
  background-color: var(--bright-color);
  z-index: 99;
}
#page_list_livre .half_border{
  padding-bottom: 20px;
  padding-top: 30px;
}
#page_list_livre .half_border:before,
#page_list_livre .half_border:after{
  left: -50px;
}
#page_list_livre .content_author{
  margin-bottom: 30px;
}
#page_list_livre .content_author img{
  max-width: 150px;
  height: auto;
}
.pagination{
  position: absolute;
  right: 15px;
  bottom: 10px;
}
.pagination span,.pagination a{
    font-size: 14px;
}
.nb_page_blog {
    margin-right: 15px;
    padding-top: 7px;
}

.pagination span:not(.nb_page_blog),
.pagination a{
  margin-right: 5px;
    border: 1px solid var(--dark-color);
    padding: 5px;
    width: 25px;
    text-align: center;
    border-radius: 4px
}
.current.border_page{
  background-color: #ccc;
}
@media (max-width: 1200px){
  #title_list_book:before{
    left:26px;
  }
}
@media (max-width: 991px){
  #title_list_book:before{
    left:-55px;
  }
}
@media (max-width: 768px){
  #page_list_livre .content_author img{
    margin-bottom: 30px
  }
}
/*FIN PAGE LISTE LIVRES*/
/*DEBUT SINGLE LIVRE*/
#wrapper_single_livre .left_line {
    padding-left: 30px;
    margin-bottom: 45px;
}
#wrapper_single_livre img{
  max-width: 300px;
}
.content_single_livre h1 {
    font-size: 42px !important;
}
.content_single_livre h2 {
    font-size: 36px !important;
}
.content_single_livre h3 {
    font-size: 30px !important;
}
.wrapper_btn_arrow .std_btn{
  margin-top: 0;
}
.wrapper_nav_single{
  border-top: 2px solid var(--dark-color);
  margin-top: 15px;
  padding-top: 15px;
  height: 82px;
}
.wrapper_nav_single > div {
    max-width: 33%;
}
.wrapper_nav_single div:nth-child(3) a{
  float: right;
  text-align: right;
}
@media (max-width: 768px){
  #wrapper_single_livre .left_line {
      margin-top: 45px;
  }
  .wrapper_nav_single{
    height: auto;
  }
  .wrapper_nav_single > div {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
  }
  .wrapper_nav_single div:nth-child(3) a {
      float: none;
  }
  .wrapper_btn_arrow {
      margin: 10px 0;
  }
}
/*FIN SINGLE LIVRE*/
/*DEBUT ICON DE PARTAGE*/
#share_single *{
  width: 30px;
  margin-right: 5px;
  margin-bottom: 15px
}
#share_single{
  margin-top: 10px;
}
#share_single span img{
  width: 25px;
}
/*FIN ICON DE PARTAGE*/
/*DEBUT LISTE ARTICLES*/
#title_list_articles{
  margin-bottom:30px;
}
.item_article_img{
  height: 250px;
}
.item_article_img img{
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; 
}
.item_article_content p{
    height: 150px;
}
.item_article_content h2 {
    font-size: 26px !important;
    height: 120px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}
#page_list_articles .pagination {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    float: right;
}
.item_article_content span:nth-child(2) {
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}
blockquote {
font-family: Georgia, serif;
font-size: 18px;
font-style: italic;
width: 450px;
margin: 0.25em auto;
padding: 0.25em 40px;
line-height: 1.45;
position: relative;
color: #383838;
background:#ececec;
}
blockquote:before {
display: block;
content: "\201C";
font-size: 80px;
position: absolute;
left: -10px;
top: -10px;
color: #7a7a7a;
}
blockquote cite {
color: #999999;
font-size: 14px;
display: block;
margin-top: 5px;
}
blockquote cite:before {
content: "\2014 \2009";
}
blockquote p{
  margin-top: 20px;
  font-size: 30px;
  text-align: center;
}
/*FIN LISTE ARTICLES*/
/*DEBUT SINGLE ARTICLE*/
.img_content_single {
    height: 50vh;
}
.img_content_single img{
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single .content_single .is-type-video iframe{
  display: block;
  margin:auto;
}
/*FIN SINGLE ARTICLE*/
/*DEBUT CONTACT*/
#contact_form .wrapper_contact_form{
    background: #fff;
    padding: 30px;
}
#contact_form h1{
  margin-bottom: 30px;
}
#contact_form input{
  margin-bottom: 30px;
}
#contact_form input[type="checkbox"]{
  margin-bottom: 0;
  margin-top: 15px;
}
p#footer_contact,  p#footer_contact a{
    font-size: 14px;
    margin-top: 15px;
}
#menu-footer_menu {
    padding-left: 0;
}
#contact_form input,
#contact_form textarea{
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 10px;
    outline: none;
}
#contact_form input:focus,
#contact_form textarea:focus{
  border-bottom: 1px solid var(--primary-color);
}
#contact_form label{
  
}
.asterisque{
  color: red;
}
.wrapper_contact_form .big_btn{
    width: 180px;
    margin: 0; 
}
.wrapper_contact_form .big_btn:hover{
  cursor: pointer;
}
.wrapper_contact_form .wrapper_btn_home {
    margin-top: 20px;
}
.field_contact.frame,#frame_checkbox.frame{
  border: 2px solid red !important;
}
/*FIN CONTACT*/
/*DEBUT FOOTER*/
footer {
    padding: 15px 0;
    background-color: var(--dark-color);
    margin-top: 45px;
}
.home footer, 
.page-template-template-author footer{
  margin-top: 0 !important;
}
footer p, 
footer a,
footer span{
  color: #fff;
}
footer .title {
    font-size: 25px;
}
.author_footer_part p{
  text-decoration: underline;
  -webkit-text-decoration-color:var(--primary-color);
          text-decoration-color:var(--primary-color);
  text-decoration-thickness: 1px;
  margin-left: 10px

}
.author_footer_part img {
    max-width: 110px;
}
#menu-menu-footer {
    list-style: none;
    padding-left: 0;
}
/*FIN FOOTER*/
/*DEBUT RECHERCHE*/
#no_result img{
  max-width: 350px;
}
.search-field{
  border: none;
  padding: 10px 10px 11px 10px;
  outline: none;
}

.search-submit{
    background-color: #fff;
    border: none;
    padding: 8px;
    width: 40px;
    height: 44px;  
    outline: none;
}
.search-submit:hover{
  cursor: pointer;
}
.search-submit:focus{
  border:none;
}
/*FIN RECHERCHE*/
/*DEBUT 404*/
#not_found img{
  max-width: 250px;
}
.error404 .big_btn{
  width: 300px;
}
/*FIN 404*/
/*DEBUT VOTRE COMPTE EST ACTIVE*/
div#signup-content {
    width: 450px;
    margin: auto;
}
#signup-content a{
  font-weight: bold;
}
/*FIN VOTRE COMPTE EST ACTIVE*/