/*
Theme Name: Flat Bootstrap Child
Theme URI: http://xtremelysocial.com/wordpress/child/
Description: Child theme for Flat Bootstrap. Includes a stylesheet (style.css) for you to restyle any of the CSS and a functions.php file to change theme parameters or components. Both files include samples of a few common things you might want to do.
Author: XtremelySocial
Author url: http://xtremelysocial.com
Version: 1.5
License: GNU General Public License
License URI: http://www.opensource.org/licenses/GPL-3.0
Template: flat-bootstrap
Template Version: 1.9
Tags: one-column, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, featured-images, featured-image-header, full-width-template, flexible-header, theme-options, sticky-post, threaded-comments, light, translation-ready, rtl-language-support, custom-background
*/

/* 
 * IMPORT the parent theme's stylesheet(s). NOTE: This was moved to functions.php for
 * performance reasons.
 */
/*@import url("../flat-bootstrap/style.css");*/

/* PUT YOUR CHANGED STYLES HERE 
 * 
 * The best way to do this is to copy in the relevant section from the parent's style.css
 * file, change what you want, and remove the lines that you didn't change.
 *
 * NOTE: All these examples here are included just to show you how to do the most common
 * things that users have requested, such as changing colors and the look of buttons, etc.
*/

/* Change the content (page) header to dark blue. */
.content-header {
  background-color: #2980b9;
}

/* Change the main link color to dark blue. Note that the hover color is set using a
 * neat trick with the opacity tag. This simply lightens whatever the link color is. That
 * way we don't need to try to figure out a hover color that looks good.
 */
a {
  color: #D3A76E;
}
a:hover,
a:focus {
  color: #D3A76E;
  opacity: .75;
}

/* Make the buttons square, if you'd like. */
.btn {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  transition: all .2s ease-in-out;
}

/* PUT ANY NEW STYLES TO USE IN YOUR CONTENT AREAS HERE SO YOU CAN EASILY PASTE THIS
 * SECTION IF YOU CHANGE THEMES
 */

/*--------------------------------------------------------------
# CUSTOM
--------------------------------------------------------------*/

/* -------- Commons --------*/

hr{
  background-color: #D3A76E;
  height: 2px;
  border-top: none;
}

p.title{
  margin: 0px auto 40px;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

p.title.with-borders{
  border: 2px solid #D3A76E;
}

#content{
  background-color: white;
  margin-top: 80px;
}

.home-page #content{
  margin-top: 0px!important;
}

a[type="button"].btn-hollow{
  border: 2px solid #D3A76E!important;
  padding: 15px 25px;
}

a[type="button"].btn-hollow:hover{
  background-color: #D3A76E!important;
  color: #fff!important;
}

.pagination>li>a, .pagination>li>span, span.page-numbers.current{
  color: #7f8c8d;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus,
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus, span.page-numbers.current{
  background-color: #D3A76E;
  border-color: #D3A76E;
}

.call-to-action{
  background-color: #2A2F42;
  color: #fff;
}
.call-to-action p {
  min-height: 50px;
}

.call-to-action h2{
  text-transform: uppercase;
}

.call-to-action .row .row div{
  margin-top: 40px;
}

.call-to-action .col-lg-4 {
  padding: 40px;
  border: 3px solid #fff;
  width: 30%;
  float: left;
}
.call-to-action .col-lg-4 a.btn {
  width: 100%;
  display: block;
  white-space: initial;
}
.call-to-action .col-lg-offset-1 {
  margin-left: 4%;
}

.call-to-action hr{
  width: 40%;
  margin: 30px auto;
}

.after-footer{
  background-color: #2A2F42;
}

.sticky .entry-title:after {
  display: none;
}

/* -------- Navbar & Header menu --------*/

header nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 100;
}

header nav .navbar-static-top {
  border-bottom: none;
}

header nav .navbar-static-top.with-border-bottom {
  border-bottom: 1px solid #F2F3F8;
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
}

.navbar{
  border: none;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all .2s ease-in-out;
}

.navbar .container {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .navbar ul.navbar-nav{
    clear: right;
  }
  .call-to-action .col-lg-4 {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
  .call-to-action .col-lg-4 a.btn, .call-to-action p {
    min-height: initial;
  }
}

@media screen and (min-width: 768px) {
  .navbar ul.navbar-nav{
    /* float: right; */
  }
}

.navbar ul.navbar-nav li,
.navbar ul.navbar-nav li.active a:hover{
  background-color: #fff!important;
}

.navbar ul.navbar-nav li.active a{
  background-color: #fff;
  color: #D3A76E;
}

#header-logo{
  float: left;
  padding-left: 10px;
}
#header-logo a {
  display: block;
  max-width: 130px;
}

#header-logo img{
  height: 50px!important;
}

#header-menu{
  float: right;
}

#header-menu li > a{
  padding: 1vw 1vw 0 0;
  font-size: 1em;
}

#header-menu li > ul > li > a{
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  #header-menu li a{
    padding: 10px 15px;
  }

  #header-logo,
  #header-menu{
    width: 100%;
  }
}

.navbar-header .logo-absolute {
  position: absolute;
}

/* -------- Footer menu --------*/
nav#footer-navigation a:hover {
  color: #f2f2f2;
}

/* -------- Home --------*/

.home-top-block{
  color: white;
  position: relative;
  background-color: #2A2F42;
  margin-top: 81px;
}

.home-top-block #triangle-bottomright {
  position: absolute;
  top: 0;
  left: -250px;
  width: 0;
  height: 0;
  border-bottom: 650px solid #2A2F42;
  border-left: 250px solid transparent;
}

@media screen and (max-width: 1199px) {
  .home-top-block h1{
    position: relative;
    margin: 0px;
  }

  .home-top-block #twitter-btn{
    text-align: center;
  }

  .home-top-block .slider-wrapper{
    display: none;
  }

  .home-top-block .search-form-wrapper{
    position: relative;
    display: block;
    padding: 20px 60px;
  }

  .home-top-block .search-form-wrapper form input[type="submit"]{
    clear: left;
    margin: auto;
  }

  .call-to-action .col-lg-4 {
    padding: 20px;
  }
  .call-to-action .col-lg-4 a.btn {
    font-size: 18px;
  }

}

@media screen and (min-width: 1200px) {
  .home-top-block h1{
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 40%;
    color: #2A2F42;
    font-weight: 400;
  }

  .home-top-block #twitter-btn{
    position: absolute;
    bottom: 3%;
    left: 4%;
    z-index: 1;
  }

  .home-top-block .slider-wrapper{
    position: relative;
  }

  .home-top-block .slider-wrapper img{
    height:  650px !important;
    width: auto !important;
  }

  .home-top-block .search-form-wrapper{
    position: absolute;
    top:0;
    right: 0;
    padding: 60px;
    width: 650px;
    height: 650px;
    background-color: #2A2F42;
  }

  .home-top-block .search-form-wrapper form input[type="submit"]{
    float: right;
  }
}

.home-top-block h1{
  padding: 30px 60px;
  text-shadow: 1px 1px 2px #2A2F42;
}

.home-top-block .search-form-wrapper{
  color : #C5C8DB;
}

.home-top-block .search-form-wrapper > p:first-child{
  font-size: 25px;
  font-weight: 400;
}

.home-top-block .search-form-wrapper hr{
  width: 25%;
  background-color: #C5C8DB;
  margin: 20px auto 5px;
  height: 3px;
}

.home-top-block .search-form-wrapper h4{
  font-size: 20px;
  font-weight: 300;
}

.home-top-block .search-form-wrapper form ul li:first-child label,
.home-top-block .search-form-wrapper form ul li:first-child input{
  width: 100%;
}

.home-top-block .search-form-wrapper form ul{
  padding-left: 0px;
}

.home-top-block .search-form-wrapper form ul li label input{
  padding: 10px!important;
}

.home-top-block .search-form-wrapper form ul li label input.sf-input-text{
  color: #000!important;
}

.home-top-block .search-form-wrapper form ul li:nth-child(2),
.home-top-block .search-form-wrapper form ul li:nth-child(3),
.home-top-block .search-form-wrapper form ul li:nth-child(3),
.home-top-block .search-form-wrapper form ul li:nth-child(4),
.home-top-block .search-form-wrapper form ul li:nth-child(5),
.home-top-block .search-form-wrapper form ul li:nth-child(6){
  display: inline-block;
  width: 49%!important;
}
/*our css ei*/
/*home form*/
.searchandfilter ul {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}
.searchandfilter ul li {
  list-style: none;
  display: block;
  padding-right: 10px;
  padding: 10px 0;
  margin: 0;
}
.searchandfilter label {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.searchandfilter>ul>li[data-sf-combobox="1"] label {
  display: block;
}
.searchandfilter select.sf-input-select {
  min-width: 170px;
}
/*form juridic*/
.searchandfilter li[data-sf-field-input-type=checkbox] label, .searchandfilter li[data-sf-field-input-type=radio] label, .searchandfilter li[data-sf-field-input-type=range-radio] label, .searchandfilter li[data-sf-field-input-type=range-checkbox] label {
  padding-left: 10px;
}
#myForm .select2-container .select2-search--inline {
  width: 100%;
  padding: 0;
}
#myForm .select2-container ul {
  padding: 0 !important;
}
#myForm .select2-container .select2-search--inline .select2-search__field{
  width: 100% !important;
  margin-top: 0;
}
#myForm .select2-container .select2-selection--multiple{
  overflow: hidden;
}
#myForm .select2-container {
  width: 100% !important;
}

  /*span.select2.select2-container.select2-container--default {*/
  /*width: 100% !important;*/
/*}*/
/* end ei css*/
.home-top-block .search-form-wrapper form ul li:nth-child(2),
.home-top-block .search-form-wrapper form ul li:nth-child(4),
.home-top-block .search-form-wrapper form ul li:nth-child(6){
  padding-right: 20px;
}

.home-top-block .search-form-wrapper form ul li label > span{
  width: 100%!important;
}

.home-top-block .search-form-wrapper form ul li label > span .select2-selection {
  height: 40px;
  padding-top: 5px;
}

.home-top-block .search-form-wrapper form ul li .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  right: 5px;
}

.home-top-block .search-form-wrapper form input[type="submit"]{
  background-color: #D3A76E;
  border-radius: 0px;
  padding: 15px 50px!important;
  font-size: 20px;
  transition: all .2s ease-in-out;
}

.home-top-block .search-form-wrapper form input[type="submit"]:hover{
  opacity: 0.75;
}

.home.starred-cases .btn,
.home.recent-news .btn{
  color: #2A2F42;
  margin-top: 15px;
}

.home.starred-cases hr{
  width: 40%;
  margin: 10px auto 0px;
}

.home.recent-news hr{
  width: 20%;
  margin: 0px auto;
}

.home.starred-cases article{
  padding: 20px;
  height: 350px;
}

.home.recent-news article{
  padding: 20px!important;
  height: 690px;
}

@media screen and (max-width: 992px) {
  .home.recent-news article,
  .home.starred-cases article{
    height: auto;
  }

  .home.starred-cases a[type="button"],
  .home.recent-news a[type="button"]{
    margin-bottom: 30px;
  }
  .call-to-action .col-lg-4 a.btn {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home.starred-cases article > p{
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}

.home.recent-news article > p{
  margin-bottom: 0px;
}

.home.starred-cases article h3 a,
.home.recent-news article h3 a,
.home.recent-news article a.read-more{
  color: #D3A76E;
}

.home.starred-cases a.see-more{
  position: absolute;
  color: #D3A76E;
  margin-right: 20px;
  margin-top: 30px;
  bottom: 40px;
  right: 20px;
}

@media screen and (max-width: 992px) {
  .home.starred-cases a.see-more{
    position: relative;
    color: #D3A76E;
  }
}

.home.starred-cases article:before,
.home.starred-cases article:after,
.home.recent-news article:before,
.home.recent-news article:after{
  content: '';
  position: absolute;
  width: calc(100% - 20%);
  height: calc(100% - 20%);
  border: 1px solid #F2F3F8;
  z-index: 50;
  pointer-events: none;
}

.home.starred-cases article:before,
.home.recent-news article:before{
  top: 0px;
  left: 15px;
  border-width: 2px 0 0 2px;
}

.home.starred-cases article:after,
.home.recent-news article:after{
  bottom: 25px;
  right: 15px;
  border-width: 0 2px 2px 0;
}

.home .whoweare{
  margin: 0px 0px 20px;
  background-image: url('/wp-content/uploads/2017/05/fond2-v2.jpg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%;
}

@media screen and (min-width: 1200px) {
  .home .whoweare .flex-parent{
    display: flex;
  }

  .home .whoweare .flex-child{
    margin: auto;
  }
}

.home .whoweare > div > div{
  padding: 50px;
  color: white;
  background-color: #2A2F42;
}

.home .whoweare .description{
  padding: 20px 40px 40px;
}

.home .whoweare .description > p:first-child{
  /*text-transform: uppercase;*/
  font-weight: 900;
}

.home.whoweare .description:before,
.home.whoweare .description:after{
  content: '';
  position: absolute;
  width: calc(100% - 85%);
  height: calc(100% - 80%);
  border: 1px solid #F2F3F8;
  pointer-events: none;
}

.home.whoweare .description:before{
  top: 0px;
  left: 15px;
  border-width: 2px 0 0 2px;
}

.home.whoweare .description:after{
  bottom: 25px;
  right: 15px;
  border-width: 0 2px 2px 0;
}

.home .whoweare .see-more{
  padding-top: 0px!important;
}

/* -------- Search results --------*/

.cases_count {
  padding-top: 15px;
}

.cases_count p.results-count {
  margin: 0px;
}

.search-results{
  padding-top: 10px;
}

.search-results .case-excerpt{
  padding: 15px;
}

.search-results .case-excerpt article{
  background-color: #F2F3F8;
  margin-bottom: -15px;
  padding: 40px 40px 10px;
}

.search-results .case-excerpt article h3{
  margin-top: 0px;
}

.search-results .case-excerpt h3.entry-title a,
.search-results .case-excerpt a.read-more,
.single-case h3{
  color: #D3A76E;
}

.search-results .case-excerpt .metadata{
  text-transform: uppercase;
  font-weight: 400;
}

.search-results .case-excerpt .summary{
  margin-top: 20px;
  margin-bottom: 20px;
}

.search-results .case-excerpt a.see-more{
  color: #D3A76E;
}

.search-results .case-excerpt article:before,
.search-results .case-excerpt article:after{
  content: '';
  position: absolute;
  width: calc(100% - 96%);
  height: calc(100% - 92%);
  border: 1px solid #2A2F42;
  pointer-events: none;
}

.search-results .case-excerpt article:before {
  top: 35px;
  left: 35px;
  border-width: 3px 0 0 3px;
}

.search-results .case-excerpt article:after {
  bottom: 20px;
  right: 35px;
  border-width: 0 3px 3px 0;
}

.no-results.not-found .btn{
  color: #555;
}

/* Search & filter form */

.search-filter-form{
  margin-top: 25px;
  margin-bottom: 50px;
  padding: 25px;
  background-color: #F2F3F8;
}

.search-filter-form p:first-child{
  font-size: 25px;
}

.search-filter-form form > ul > li[data-sf-field-input-type="checkbox"],
.search-filter-form form > ul > li[data-sf-field-input-type="daterange"],
.search-filter-form form > ul > li[data-sf-field-type="search"]{
  background-color: white;
  margin-bottom: 25px;
  padding: 15px;
}

.search-filter-form form > ul > li[data-sf-field-type="search"]{
  margin-top: 40px!important;
}

.search-filter-form form > ul > li[data-sf-field-type="search"] input,
.search-filter-form form > ul > li[data-sf-field-type="search"] label,
.search-filter-form form > ul > li[data-sf-field-input-type="multiselect"] label > div{
  width: 100%;
}

.search-filter-form form > ul > li[data-sf-field-input-type="checkbox"] ul{
  padding-left: 0px!important;
}

.search-filter-form form > ul > li[data-sf-field-input-type="checkbox"] ul > li{
  margin: 0px!important;
  padding: 0px;
}

.search-filter-form form > ul > li[data-sf-field-input-type="checkbox"] ul > li > label{
  display: inline;
}

.search-filter-form form > ul > li[data-sf-field-input-type="daterange"] ul{
  padding-left: 0px!important;
}

.search-filter-form form > ul > li[data-sf-field-input-type="daterange"] ul > li{
  display: inline-block;
  margin-right: 5px;
  margin-top: 0px!important;
  width: 40%;
}

.search-filter-form form > ul > li[data-sf-field-input-type="daterange"] ul > li input{
  width: 100%;
}

.ui-datepicker-month,
.ui-datepicker-year{
  color: black;
}

.search-filter-form form > ul > li[data-sf-field-type="submit"] input{
  background-color: #D3A76E;
  font-weight: 900;
  padding: 15px 30px;
  float: right;
  border-radius: 0px;
}

.search-filter-form form > ul > li[data-sf-field-type="reset"]{
  display: inline;
}

.search-filter-form form > ul > li[data-sf-field-type="reset"] a{
  color: #D3A76E;
}

/* -------- Single case --------*/

.single-case{
  background-color: #F2F3F8;
}

.single-case .back-to-search{
  padding-left: -10px;
  margin-bottom: 10px;
}

.single-case .metadatas{
  position: relative;
  margin-bottom: 30px;
}

.single-case span.metadata{
  text-transform: uppercase;
  font-weight: 400;
}

.single-case .metadatas-header:before,
.single-case .metadatas-header:after{
  content: '';
  position: absolute;
  width: calc(100% - 96%);
  height: calc(100% - 94%);
  border: 1px solid #2A2F42;
  pointer-events: none;
}

.single-case .metadatas-header:before {
  top: 0;
  left: -10px;
  border-width: 3px 0 0 3px;
}

.single-case .metadatas-header:after {
  bottom: -10px;
  right: -15px;
  border-width: 0 3px 3px 0;
}

.single-case hr{
  height: 2px;
  margin: 15px auto;
}

.single-case .links-block{
  margin-top: 20px;
}

/* -------- News --------*/

.news article{
  padding: 20px;
  height: 690px;
}

@media screen and (max-width: 992px) {
  .news article,
  .news.starred-cases article{
    height: auto;
  }
}

.news article > p{
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}

.news article > p{
  margin-bottom: 0px;
}



.new.entry-title{
  font-family: "Raleway", Arial, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
}

.news.starred-cases article h3 a,
.news article h3 a,
.news article a.read-more{
  color: #D3A76E;
}

.news.starred-cases article:before,
.news.starred-cases article:after,
.news article:before,
.news article:after{
  content: '';
  position: absolute;
  width: calc(100% - 20%);
  height: calc(100% - 20%);
  border: 1px solid #F2F3F8;
  z-index: 50;
  pointer-events: none;
}

.news.starred-cases article:before,
.news article:before{
  top: 0px;
  left: 15px;
  border-width: 2px 0 0 2px;
}

.news.starred-cases article:after,
.news article:after{
  bottom: 25px;
  right: 15px;
  border-width: 0 2px 2px 0;
}

/* -------- Single news --------*/

.single-news .back-to-news{
  padding-left: 0px;
  margin-bottom: 10px;
}

.single-news .pannel-background{
  position: absolute;
  top: 150px;
  left: 0;
  background-color: #F2F3F8;
  height: 50%;
  width: 100%;
}

.single-news .entry-content .row div{
  background-color: white;
}

.single-news .news-content{
  margin-top: 20px;
}

.single-news .entry-content > .row > div:before,
.single-news .entry-content > .row > div:after{
  content: '';
  position: absolute;
  width: calc(100% - 3%);
  height: calc(100% - 5%);
  border: 1px solid #F2F3F8;
  pointer-events: none;
}

.single-news .entry-content > .row > div:before {
  top: 0;
  left: -3px;
  border-width: 3px 0 0 3px;
}

.single-news .entry-content > .row > div:after {
  bottom: -10px;
  right: -3px;
  border-width: 0 3px 3px 0;
}

/* -------- Case submission form / Contact form --------*/

.acf-form, .acfef-form,
.caldera_forms_form{
  background-color: #F2F3F8;
}

.acfef-form .select2-container .select2-selection--multiple ul.select2-selection__rendered {
  width: auto;
  float: left;
}
.acfef-form .select2-container--default .select2-selection--multiple {
  overflow: hidden;
}
/*.acfef-form .select2-container .select2-search--inline {
  display: inline-block;
}*/

.acfef-form .acf-fields.-border {
  border: 0;
  background: none;
}

.acf-form, .acfef-form{
  padding-bottom: 100px;
}

.acf-form .acf-tab-wrap.-top,
.acfef-form .acf-tab-wrap.-top{
  background-color: white;
}

.acf-form .acf-tab-button,
.acfef-form .acf-tab-button,
.acfef-form label,
.acf-form label{
  text-transform: uppercase;
}

.acf-form li.active a,
.acfef-form li.active a{
  background-color: #F2F3F8!important;
}

.acf-form li a,
.acfef-form li a{
  background-color: #F9FAFC!important;
}

.acf-form ul.acf-tab-group{
  padding-left: 0px;
  border-bottom: none!important;
}

.acf-form ul.acf-tab-group li a,
.acfef-form ul.acf-tab-group li a,
.caldera_forms_form
{
  padding: 20px 40px;
  border: none;
}

.acf-form .acf-fields > .acf-field {
  border: none;
  padding: 15px 40px;
}

.acf-form .acf-field .acf-label label ,
.acfef-form .acf-field .acf-label label {
  font-size: 13px;
}

.acf-form .acf-form-submit,
.acfef-form .acf-form-submit,
.caldera_forms_form input[type="submit"]{
  float: right;
}

.caldera_forms_form input[type="submit"]{
  color: white;
}

.acf-form .acf-form-submit,
.acfef-form .acf-form-submit{
  margin: 20px 40px;
}

.acf-form .acf-form-submit input,
.acfef-form .acf-form-submit input,
.caldera_forms_form input[type="submit"]{
  background-color: #D3A76E!important;
  padding: 20px 40px;
  border-radius: 0px;
}

.caldera_forms_form label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

/**
 * Adjust Select2 input heights to match the Bootstrap default.
 */
.select2-container .select2-choice {
  height: 40px!important;
  line-height: 40px!important;
}

/* -------- Sign-up / Connection --------*/


.background-blue{
  background-color: #2A2F42;
}

.bbp-login-form .bbp-submit-wrapper,
#register-page form input[type="submit"]{
  float: none;
  text-align: center;
  margin: 25px 0 15px;
}

.bbp-login-form input[type="text"],
.bbp-login-form input[type="password"]{
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  color: #C5C8DB;
  padding: 10px 20px;
  margin-bottom: 15px;
  width: 60%;
}

.bbp-login-form .x_recaptcha_wrapper,
#register-page .security-question-section{
  display: inline-block;
  margin-top: 20px!important;
  float: none!important;
}

.bbp-login-form .sgr-recaptcha > div {
  width: auto!important;
}

.bbp-login-form button:hover,
#signup-page form input[type="submit"]:hover{
  background-color: #D3A76E!important;
}

#login-page,
#signup-page {
  padding-top: 20px;
  background-color: #2A2F42;
  color: #fff;
}

.acces-forum {
  margin-top: 10px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.acces-forum .form-title {
  font-size: 24px;
}

#login-page .links{
  font-size: 15px;
  padding-top: 20px;
}

.acces-forum:before,
.acces-forum:after{
  content: '';
  position: absolute;
  width: calc(100% - 20%);
  height: calc(100% - 20%);
  border: 0.5px solid #F2F3F8;
  z-index: 50;
  pointer-events: none;
}

.acces-forum:before,
.acces-forum:before{
  top: 0px;
  left: 15px;
  border-width: 1px 0 0 1px;
}

.acces-forum:after,
.acces-forum:after{
  bottom: -10px;
  right: 15px;
  border-width: 0 1px 1px 0;
}

#register-page form input[type="text"],
#register-page form input[type="password"],
#register-page form input[type="email"],
#register-page form input[type="number"]{
  width: 80%!important;
  margin-top: 15px!important;
  padding: 10px 20px!important;
  border: none!important;
  background-color: rgba(0, 0, 0, 0.2)!important;
  color: #C5C8DB!important;
}

#register-page .submit{
  /*margin-right: 35px;*/
  float: none!important;
  text-align: center;
}

#register-page .submit input{
  border: 2px solid #fff;
  border-radius: 0;
  padding: 10px 16px;
  font-size: 20px;
  background-color: transparent;
  color: white;
}

#register-page .submit input:hover{
  border: 2px solid #fff;
}

html.login-signup{
  height: 100%;
}

body.login-signup{
  height: 100%;
  position: relative;
  /*background-color: #2A2F42;*/
}

header.login-signup{
  position: relative;
}

#page.login-signup{
  min-height: 100%!important;
  position: relative;
  background-color: #2A2F42;
}

#content.login-signup{
  margin-bottom: 100px;
  background-color: #2A2F42;
  color: white;
}

footer.login-signup{
  /*height: 105px;*/
  width: 100%;
  position: absolute;
  bottom: 0;
}

.bp_register #buddypress .standard-form #basic-details-section,
.bp_register #buddypress .standard-form #profile-details-section{
  float: none;
  width: 100%;
}

.bp_register #buddypress label{
  display: none!important;
}

/* -------- Pages Partenaires / Soutiens & Conseil d'administration --------*/

.titre-partenaire, .name-member {
  font-size: 24px;
  font-weight: bold;
}

.partner, .executive-board{
  margin-bottom: 20px;
}


/* -------- Forum --------*/w

                            #buddypress div.dir-search{
                              margin-top: -35px;
                            }

.bbp-search-form{
  margin-bottom: 20px;
}

#bbp-search-form .button,
#bbp-search-form .button:hover,
#bbp-search-form .button:focus{
  border-color: #D3A76E;
  background-color: #D3A76E;
}

#twitter-btn {
  margin-right: 10px;
}

#twitter-btn img {
  margin-top: 5px;
}

#don-btn {
  display: inline-block;
  margin-top: 8px;
  margin-right: 10px;
  padding: 5px 10px;
  background: #D3A76E;
}

/* ZTO_COOKIES 08/2019 - Surcharge bandeau consentement Cookies (Cookiebot) */
#CybotCookiebotDialog a, #CybotCookiebotDialog div, #CybotCookiebotDialogBodyContentTitle {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif!important;
}

#CybotCookiebotDialogBody, #CybotCookiebotDialogDetailBody {
  max-width: 900px!important;
}

.CybotCookiebotDialogDetailBodyContentCookieTypeTableContainer table {
  table-layout: auto!important;
}

#CybotCookiebotDialogDetailBodyContentTextAbout p {
  font-size: 9pt!important;
}
