/**
 * @file
 * Modules styles
 *
 * Modules are reusables CSS objects (components).
 * They can be utilized
 */


/**
 * TNS slider
 */
.tns-controls,
.tns-nav {
  text-align: center;
}
.tns-controls button {
  font-weight: bold;
  font-size: 1.2em;
  color: #fff;
  background: rgba(0,0,0,0.25);
  border: none;
}
.tns-nav button {
  display: inline-block;
  margin: 0 2px;
  height: 12px;
  width: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  border: none;
}


/**
*  Image Hero
**/

@media(min-width: 1400px){
  .content-heading__image{
    height: 350px;
    overflow: hidden;
  }
}


/**
*  Misc
**/
.cta{
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 5px auto;
  transition: 0.25s;
  text-decoration: none;
  position: absolute;
 }
 .cta--primary{
  background-color: #C4C4C4;
  color: #000;
  border: 2px solid #C4C4C4;
 }
 .cta--primary:hover {
  background-color: #000;
  color: #C4C4C4;
}
@media(min-width: 640px){
  .cta{
    margin: 15px auto;
   }
}


/**
*  Page Contact
**/

.webform-submission-contact-form{
  font-size: 1.125rem;
}
.webform-submission-contact-form input,
.webform-submission-contact-form textarea{
  background-color: #FBFBFB;
  border: solid 1px #C4C4C4;
  display: flex;
  display: block;
  width: 90%;

}
.webform-submission-contact-form input{
  height: 50px;
}
.webform-submission-contact-form .webform-button--submit{
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  margin: 0.5rem auto;
  transition: 0.25s;
  text-decoration: none;
  display: inline-block;
  background-color: var(--primary);
  color: var(--neutral-pure);
  border: 2px solid var(--primary);
  width: 30%;
}
.webform-button--submit:hover{
  background-color: var(--neutral-pure);
  color: var(--primary);
}
.field--name-field-adresse iframe{
  max-width: 100%;
}

.webform-confirmation-modal--content {
  background-color: white;
}


/*
* Cookies module custom colors
*/
/* Small banner */
.cookiesjsr-banner, .cookiesjsr-btn{
  background-color: var(--primary);
}
.cookiesjsr-btn.important{
  color:var(--primary);
}
/* Popin */
.cookiesjsr-service-group.active .cookiesjsr-service-group--content,
.cookiesjsr-service-group.active .cookiesjsr-service-group--tab{
  background-color: var(--primary);
}
.cookiesjsr-btn.invert{
  border-color: var(--primary);
  color: var(--primary);
}
.cookiesjsr-btn.important.invert{
  border-color: var(--primary);
  background-color: var(--primary);
}
.cookiesjsr-service--always-on span{
  padding:0.5rem 1rem;
  border:2px solid #fff;
  font-weight: 700;
}


/**
 * Tabs
 */
 .block-local-tasks-block ul{
  margin:0;
  background-color:#000;
  /* display: flex; */
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.8rem;
}

.block-local-tasks-block li{
  margin:0;
}
.block-local-tasks-block li a{
  color:#fff;
  font-weight: 700;
  text-transform: uppercase;
  padding:0.8rem 1rem;
}
.block-local-tasks-block li.is-active a,
.block-local-tasks-block li a:hover{
  color:#000;
  background-color: #C4C4C4;
}
