/*
==============================================
TABLE OF CONTENT
==============================================

1. General
2. Align Holders
3. Modals
4. Margins, Paddings
5. Backgrounds
6. Clearfix
7. Overflow
8. Visibility

==============================================
[END] TABLE OF CONTENT
==============================================
*/




/*-----------------------------------------
	1. General
-------------------------------------------*/
.container{
  max-width: 1170px;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  color: #1c303e;
  height: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
  line-height: 1.3;
  margin: 0px;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
}
h5,
h6 {
  font-weight: 600;
}
p{
  margin-bottom: 0px;
}



img{
	max-width: 100%;
	height: auto;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
}
a{
  color: #222;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
}

a:active, a:hover, a:focus {
    outline: 0 none;
    text-decoration: none;
}
button{
  cursor: pointer;
  background: none;
  outline: 0 none !important;
  border: none;
}

iframe{
  border: 0px;
}
input, textarea{
  outline: none;
  max-width: 100%;
}

ul{
  padding-left: 0px;
  margin-bottom: 0px;
}
li{
  list-style-type: none;
}

p{
  font-size: 15px;
  color: #999;
  line-height: 1.8;
  font-weight: 400;
}


::-moz-selection {
    background: #2d2d2d;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #2d2d2d;
    color: #fff;
    text-shadow: none;
}





/*-----------------------------------------
	2. Align Holders
-------------------------------------------*/
.left-holder{
	text-align: left !important;
}
.right-holder{
	text-align: right !important;
}
.center-holder{
	text-align: center !important;
}

@media screen and (max-width:767px) {
  .center-holder-xs{
    text-align: center !important;
  }
}


.vertical-middle{
    vertical-align: middle;
}

.vertical-center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 991px) {
  .vertical-center{
    display: block;
  }
}


/*-----------------------------------------
  3. Modals
-------------------------------------------*/
.modal {
  text-align: center;
  padding: 0!important;
  border-radius: 10px;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
  border-radius: 10px;
  z-index: 1;
}

.modal-dialog {
  width: 100%;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .modal:before {
    content: '';
    display: inline-block;
    height: 0%;
    width: 100%;
    vertical-align: middle;
    margin-right: -4px;
    border-radius: 10px;
    z-index: 1;
  }
}

.modal-backdrop.show {
    opacity: .8;
    z-index: 2;
}




/*-----------------------------------------
  4. Margins, Paddings
-------------------------------------------*/

/*------------------
    Margin Left
--------------------*/
.ml-0{
  margin-left: 0px !important;
}
.ml-15{
  margin-left: 15px;
}

/*------------------
    Margin top
--------------------*/
.mt-0 { margin-top: 0 !important}
.mt-1 { margin-top: 1px}
.mt-2 { margin-top: 2px}
.mt-3 { margin-top: 3px}
.mt-3 { margin-top: 4px}
.mt-5 { margin-top: 5px !important}
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-25 { margin-top: 25px }
.mt-30 { margin-top: 30px }
.mt-35 { margin-top: 35px }
.mt-40 { margin-top: 40px }
.mt-45 { margin-top: 45px }
.mt-50 { margin-top: 50px }
.mt-55 { margin-top: 55px }
.mt-60 { margin-top: 60px }
.mt-65 { margin-top: 65px }
.mt-70 { margin-top: 70px }
.mt-75 { margin-top: 75px }
.mt-80 { margin-top: 80px }
.mt-85 { margin-top: 85px }
.mt-90 { margin-top: 90px }
.mt-95 { margin-top: 95px }
.mt-100 { margin-top: 100px }
.mt-105 { margin-top: 105px }
.mt-110 { margin-top: 110px }
.mt-115 { margin-top: 115px }
.mt-120 { margin-top: 120px }
.mt-125 { margin-top: 125px }
.mt-130 { margin-top: 130px }
.mt-135 { margin-top: 135px }
.mt-140 { margin-top: 140px }
.mt-145 { margin-top: 145px }
.mt-150 { margin-top: 150px }

.mt--15{
  margin-top: -15px;
}

.margin-minus-120{
  margin-top: -120px;
}
@media screen and (max-width:767px) {
  .margin-minus-120{
    margin-top: 0px;
  }
}

@media screen and (max-width:767px) {
  .mt-0-xs{
    margin-top: 0px !important;
  }
}

.mt-15-xs{
  margin-top: 0px;
}
@media screen and (max-width:767px) {
  .mt-15-xs{
    margin-top: 15px;
  }
}

.mt-30-xs{
  margin-top: 0px;
}
@media screen and (max-width:767px) {
  .mt-30-xs{
    margin-top: 30px;
  }
}


@media screen and (max-width:767px) {
  .mt-35-xs{
    margin-top: 35px;
  }
}

.mt-60-md{
  margin-top: 60px;
}
@media screen and (max-width:991px) {
  .mt-60-md{
    margin-top: 0px;
  }
}


/*------------------
    Margin bottom
--------------------*/
.mb-0 { margin-bottom: 0 }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-25 { margin-bottom: 25px }
.mb-30 { margin-bottom: 30px }
.mb-35 { margin-bottom: 35px }
.mb-40 { margin-bottom: 40px }
.mb-45 { margin-bottom: 45px }
.mb-50 { margin-bottom: 50px }
.mb-55 { margin-bottom: 55px }
.mb-60 { margin-bottom: 60px }
.mb-65 { margin-bottom: 65px }
.mb-70 { margin-bottom: 70px }
.mb-75 { margin-bottom: 75px }
.mb-80 { margin-bottom: 80px }
.mb-85 { margin-bottom: 85px }
.mb-90 { margin-bottom: 90px }
.mb-95 { margin-bottom: 95px }
.mb-100 { margin-bottom: 100px }
.mb-105 { margin-bottom: 105px }
.mb-110 { margin-bottom: 110px }
.mb-115 { margin-bottom: 115px }
.mb-120 { margin-bottom: 120px }
.mb-125 { margin-bottom: 125px }
.mb-130 { margin-bottom: 130px }
.mb-135 { margin-bottom: 135px }
.mb-140 { margin-bottom: 140px }
.mb-145 { margin-bottom: 145px }
.mb-150 { margin-bottom: 150px }


.mb-15-xs{
  margin-bottom: 0px;
}
@media screen and (max-width:767px) {
  .mb-15-xs{
    margin-bottom: 15px;
  }
}

/*------------------
    Margin right
--------------------*/
.mr-20-md{
  margin-right: 20px;
}
@media screen and (max-width:767px) {
  .mr-30-md{
    margin-right: 0px;
  }
}


/*------------------
    Paddings
--------------------*/
.no-padding{
  padding: 0px !important;
}
.pb-0{
  padding-bottom: 0px !important;
}
.pt-0{
  padding-top: 0px !important;
}
.pl-0{
  padding-left: 0px;
}
.pl-0-md{
  padding-left: 0px;
}
@media screen and (max-width:991px) {
  .pl-0-md{
    padding-left: 15px;
  }
}
.pr-0{
  padding-right: 0px;
}


.p-15{
  padding: 15px;
}



.pl-15-md{
  padding-left: 15px;
}
@media screen and (max-width:991px) {
  .pl-15-md{
    padding-left: 0px;
  }
}

.pl-30-md{
  padding-left: 30px;
}
@media screen and (max-width:991px) {
  .pl-30-md{
    padding-left: 0px;
  }
}

.pl-45-md{
  padding-left: 45px;
}
@media screen and (max-width:991px) {
  .pl-45-md{
    padding-left: 0px;
  }
}

.pl-75-md{
  padding-left: 75px;
}
@media screen and (max-width:991px) {
  .pl-75-md{
    padding-left: 0px;
  }
}





.pr-30-md{
  padding-right: 30px;
}
@media screen and (max-width:991px) {
  .pr-30-md{
    padding-right: 0px;
  }
}

.pr-45-md{
  padding-right: 45px;
}
@media screen and (max-width:991px) {
  .pr-45-md{
    padding-right: 0px;
  }
}


.pr-75-md{
  padding-right: 75px;
}
@media screen and (max-width:991px) {
  .pr-75-md{
    padding-right: 0px;
  }
}





.padding-3-perc {
    padding: 3%;
}


.padding-5-perc {
    padding: 5%;
}


.padding-10-perc {
    padding: 10%;
}


.inner-5{
  padding: 5px;
}

.inner-10{
  padding: 10px;
}

.inner-15{
  padding: 15px;
}

.inner-30{
  padding: 30px;
}


.inner-40{
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .inner-40{
    padding: 30px;
  }
}


.inner-45{
  padding: 45px;
}
@media screen and (max-width: 767px) {
  .inner-45{
    padding: 30px;
  }
}



/*-----------------------------------------
  5. Backgrounds
-------------------------------------------*/
.background-center{
  background-position: center !important;
}

.background-left{
  background-position: left !important;
}

.background-right{
  background-position: right !important;
}






/*-----------------------------------------
  6. Clearfix
-------------------------------------------*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */



/*-----------------------------------------
  7. Overflow
-------------------------------------------*/
.overflow-hidden{
  overflow: hidden;
}
.display-b{
  display: block;
}



/*-----------------------------------------
  8. Visibility
-------------------------------------------*/
.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }


.z-index-9{
  z-index: 9;
}

.z-index-99{
  z-index: 99;
}

.z-index-999{
  z-index: 999;
}
.desc-partenaire p{
  color: #eee;
}
/*.project-classic-overlay h5{
  color: #eee;
  padding-top: 15px;
}*/
.path-actualites .form--inline label {
  display: none;
}
.path-evenements .form--inline label {
  display: none;
}
.path-evenements .views-exposed-form, .path-actualites .views-exposed-form{
  display: flow-root;
}
.path-evenements .views-exposed-form .form--inline, .path-actualites .views-exposed-form .form--inline{
  float: right;
  background-color: #1e4a75;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /*border-radius: 8px;*/
  height: 65px;
}
.path-evenements .views-exposed-form .form-actions, .path-actualites .views-exposed-form .form-actions{
  display: inline;
}
.path-evenements .primary-button , .path-actualites .primary-button{
  background: #d9fbff;
  border: 2px solid #d9fbff;
  color: #1e4a75;
  margin-top: inherit;
}
.path-evenements .primary-button:hover, .path-actualites .primary-button:hover {
  color: #d9fbff;
  border-color: #1e4a75;
  background: #1e4a75;
  margin-top: inherit;
}
.path-evenements .form-item .form-date, .path-actualites .form-item .form-date{
  background-color: #d9fbff;
    color: #1e4a75;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    border: none;
}
.form--inline .img-calender img{
    width: auto;
    height: 25px;
    margin-right: 10px;
}

.block-login-register{
  float: right;
  display: flex;
}
#block-loginformpopup, #block-registerformpopup{
  /*height: 80px;*/
  /*padding: 26px 16px 0px 16px;*/
  padding: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
.Login-popup-link, .Register-popup-link{
  border: 1px solid #003263;
}
.Login-popup-link a, .Register-popup-link a{
   padding: 15px;
}
.Login-popup-link:hover, .Register-popup-link:hover{
  border: 1px solid #0056b3;.ui-dialog
}
.ui-dialog{
  z-index: 99999 !important;
}
.js-form-item-mail .description, .js-form-item-name .description, .js-form-item-pass .description{
  display: none;
}
.path-frontpage .js-form-item label{
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 29px;
  color: #000000;
  font-weight: 600;
}
input[type="tel"], textarea, select, input[type="text"], input[type="number"], input[type="search"], input[type="password"], input[type="email"] {
  border-radius: 6px !important;
  background-color: #f4f4f4 !important;
  margin: 0 !important;
}
@media (min-width: 768px){
  .ui-dialog {
    width: 800px !important;
  }
}
.img-register img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
.ui-widget-header {
  border: none !important;
  background: none !important;
  color: #333333;
  font-weight: bold;
  text-align: center;
}
.ui-dialog .ui-dialog-buttonpane {
  border-color: transparent !important;
  background: none !important;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}
.ui-dialog .ui-dialog-title{
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 31px;
  color: #000000;
  font-weight: 700;
  float: none !important;
}
.btn-register{
  width: 143px;
  height: 46px;
  border-radius: 22px;
  background-color: #00509e;
}
.gg-chevron-right-o {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 100px;
  color: #2387ea !important;
}
.gg-chevron-right-o::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  left: 5px;
  top: 6px;
}
.link-produit-bloc{
  float: right;
  margin: -5% 10% 0 0;
}
.background-service-block{
  /*
  text-align: center;
  */
}
.title-service-block{
  position: absolute;
  top: 30%;
  margin-left: 10%;
}
.page-node-type-activites .title-service-block{
  position: absolute;
  top: 15%;
  max-width: 75%;
  text-align: center;
}
.page-node-type-produit .text-service-block{
  position: absolute;
  top: 40%;
  color: white;
  display: none;
}
.center-body-service-block a{
  position: absolute;
  top: 65%;
  right: 50%;
  color: white;
  display: none;
}
.center-body-service-block a i.gg-chevron-right-o{
  margin-left: 10px;
  display: none;
}
 .background-service-block img{
   border-radius: 5%;
   filter: brightness(0.75);
   max-height: 200px;
 }
.title-service-block h4{
  color: white;
}
div#background-service-block:hover img{
  filter: brightness(0.5);
}
div#background-service-block:hover .text-service-block{
  display: block;
}
div#background-service-block:hover .center-body-service-block a i.gg-chevron-right-o{
  display: block;
}
div#background-service-block:hover .center-body-service-block a{
  display: flex;
}
.page-node-type-produit div#background-service-block:hover .title-service-block{
  display: block;
 top: 30%;
  margin-left: 5%;
}
.page-node-type-activites div#background-service-block:hover .title-service-block{
  display: block;
  /*top: 30%;*/
  margin-left: 7%;
}
#views-exposed-form-produits-block-1 .js-form-required.form-required{
  display: none;
}
#views-exposed-form-produits-block-1 .form-actions{
  display: none;
}
.page-node-type-activites .bef-exposed-form .form--inline > .form-item {
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #ffffff;
  height: 100px;
}
.page-node-type-activites .form--inline ul {
  display: inline-flex;
}
.page-node-type-activites .form--inline ul li {
  padding: 100px;
  display: -webkit-box;
}
.page-node-type-activites .form--inline ul li a {
  font-size: 20px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
}
.page-node-type-activites .form--inline .img-calender img {
  width: auto;
  height: 50px;
  margin-right: 20px;
}
.page-node-type-activites .form--inline ul li:first-child:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  margin-left: 100px;
  background-color: #1780e9;
}
.page-node-type-activites .img-calender img{
  width: auto;
  height: 50px;
  margin-right: 20px;
}
.img-produit-nautique{
  padding: 20px 0px 25px 10px;
}
.produit-block-nautique{
  display: inline-flex;
}
.link-produit-bloc-nautique{
  float: right;
  margin: -6% -10% 0px 0px;
}
.block-inner-produit-nautique{
  padding-right: 50px !important;
}
.img-calender.img-produit-nautique:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  background-color: #1780e9;
}
.bef-link.bef-link--selected{
  color: #007bff;
}
.path-evenements .form-item-title input{
  padding: 0px !important;
  margin-left: 10px !important;
  text-align: center;
  height: 40px;
}.path-evenements .form-item-title{
  float: right;
}
.date-actualites-details i{
  color: #2387ea;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.date-actualites-details span{
  display: inline-block;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 25px 10px 0px;
}
.post-recent-bloc-content{
  padding: 0 !important;
  font-size: 10px;
  font-weight: bold;
}
.post-recent-bloc-date{
  color: #999;
  line-height: 2.8;
}
.post-recent-bloc-image a img{
  border-radius: 10%;
}
.page-actualites-img img{
  width: 100%;
  height: auto;
}
.bloc-activite-hp a{
  color: #007bff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}
/* Styling BEF Checkboxes to be like links so AJAX works. */
.views-exposed-form.bef-exposed-form input.form-radio {
  display: none;
}

/* Styling label like our links. */
.views-exposed-form.bef-exposed-form label {
  color: #083252;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  padding: 1rem 0 0;
}

/* Which means we need to add a hover state. */
.views-exposed-form.bef-exposed-form label:hover {
  color:  #007bff;;
}

/* Changes the label if the input is checked.  Like an active state. */
.views-exposed-form.bef-exposed-form input.form-radio:checked + label {
  color:  #007bff;;
  font-weight: 600;
}

/* Throw a little arrow before the active label. */
/*.views-exposed-form.bef-exposed-form input.form-radio:checked + label:before {
  border-color: transparent transparent transparent #0d5f9e;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  content: '';
  display: inline-block;
  height: 0;
  padding-right: 8px;
  width: 0;
}*/
.path-galerie .bef-exposed-form .form--inline,
.path-partenaire .bef-exposed-form .form--inline{
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #ffffff;
  height: 100px;
}
.path-galerie .bef-exposed-form .form--inline .form-radios > .form-radios,
.path-partenaire .bef-exposed-form .form--inline .form-radios > .form-radios{
  display: inline-flex;
}
.path-galerie .bef-exposed-form .form--inline .form-radios .form-item-type-1,
.path-partenaire .bef-exposed-form .form--inline .form-radios .form-item{
  padding: 0 100px 0 0;
  display: -webkit-box;
}
.path-galerie .bef-exposed-form .form--inline .form-radios .form-item-type-1 label,
.path-partenaire .bef-exposed-form .form--inline .form-radios .form-item label{
  font-size: 20px;
  line-height: 52px;
  font-weight: 700;
  text-align: center
}
.path-galerie .bef-exposed-form .form--inline .form-radios .form-item-type-1:not(:last-child) label:after,
.path-partenaire .bef-exposed-form .form--inline .form-radios .form-item:not(:last-child) label:after{
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  margin-left: 10%;
  background-color: #1780e9;
}
.path-galerie .img-calender, .path-partenaire .img-calender{
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 20px;
}
.path-galerie .form--inline .img-calender img, .path-partenaire .form--inline .img-calender img{
  width: auto;
  height: 50px;
}
/*
.path-partenaire .form--inline ul li:first-child:after{
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  margin-left: 100px;
  background-color: #1780e9;
}*/
/*.path-partenaire .bef-exposed-form .form--inline > .form-item{
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #ffffff;
  height: 100px
}*/
/*.path-galerie .bef-exposed-form .form--inline > .form-item{
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #ffffff;
  height: 100px
}*/
/*
.path-galerie .form--inline ul li:first-child:after{
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  margin-left: 100px;
  background-color: #1780e9;
}*/
/*.path-partenaire .project-classic-overlay .title-partenaire{
  font-size: 16px;
  line-height: 47px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}*/
/*.path-galerie .form--inline ul li a, .path-partenaire .form--inline ul li a{
  font-size: 20px;
  line-height: 52px;
  font-weight: 700;
  text-align: center
}*/
/*.path-galerie .form--inline ul li a:active, .path-partenaire .form--inline ul li a:active{
  color: #0056b3;
}*/
.path-partenaire .form--inline .form-required{
  display: none;
}
.path-partenaire .form--inline .form-actions{
  display: none;
}
/*.path-partenaire .form--inline ul{
  display: inline-flex;
}
.path-partenaire .form--inline ul li{
  padding: 100px;
  display: -webkit-box;
}*/
.path-galerie .form--inline .form-required{
  display: none;
}
.path-galerie .form--inline .form-actions{
  display: none;
}
/*
.path-galerie .form--inline ul{
  display: inline-flex;
}
.path-galerie .form--inline ul li{
  padding: 100px;
  display: -webkit-box;
}*/
.ajax-progress-throbber .throbber {
  display: none;
}
.ajax-progress-fullscreen{
  display: none;
}
.img-cartographie img{
  height: 100%;
}
/*.title-page-produit
{
  text-transform: uppercase;
}*/
.page-node-type-produit .gg-chevron-right-o, .page-node-type-activites .background-service-block .gg-chevron-right-o {
color: white !important;
}
.path-catalogue-des-cartes table, .path-carte-marine-papier table, .path-carte-electronique table {
  border-collapse: separate !important;
}
.first-row-tab th, .second-row-tab th{
  background-color: #003263 !important;
  color: white !important;
  padding: 10px;
}
.third-row-tab th{
  background-color: #a8c6e3 !important;
  color: white !important;
}
.views-field-field-lat-sud,.views-field-field-long-ouest, .views-field-field-lat-nord, .views-field-field-long-est{
  /*
  background-color: #a8c6e3 !important;
  */
}
.path-catalogue-des-cartes table tbody tr td, .path-carte-marine-papier table tbody tr td, .path-carte-electronique table tbody tr td{
  border-bottom: #e3e3e3 3px solid !important;
  height: 50px;
}
.bloc-recherche-catalogue-carte .form-actions{
  background-image: url(../filter/icons8_search_64px.png);
  height: 66px;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #2489eb;
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  background-position: center;
}
/*.img-recherche-catalogue-carte img{
  height: 66px;
  border-radius: 6px;
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-color: #2489eb;
}*/
.bloc-recherche-catalogue-carte .bef-exposed-form .form--inline .form-item {
   float: none;
}
.bloc-recherche-catalogue-carte .form--inline .form-item {
   margin-right: inherit !important;
}
.bloc-recherche-catalogue-carte .form-item {
   margin-top: 0 !important;
   margin-bottom: 0 !important;
  margin-right: 0 !important;
}
.bloc-recherche-catalogue-carte .form-item input[type="tel"],
.bloc-recherche-catalogue-carte .form-item textarea,
.bloc-recherche-catalogue-carte .form-item select,
.bloc-recherche-catalogue-carte .form-item input[type="text"],
.bloc-recherche-catalogue-carte .form-item input[type="number"],
.bloc-recherche-catalogue-carte .form-item input[type="search"],
.bloc-recherche-catalogue-carte .form-item input[type="password"],
.bloc-recherche-catalogue-carte .form-item input[type=date],
.bloc-recherche-catalogue-carte .form-item input[type="email"] {
  height: 66px;
  border-radius: 6px !important;
  filter: drop-shadow(0 0 4.5px rgba(0,0,0,0.27));
  background-color: #ffffff !important;
}
.bloc-recherche-catalogue-carte{
  width: 30%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 20px;
  border-radius: 6px;
  filter: drop-shadow(0 0 4.5px rgba(0,0,0,0.27));
}
.bloc-recherche-catalogue-carte .filter-date{
  display: inline-flex !important;
}
.bloc-recherche-catalogue-carte .primary-button{
  color: transparent;
  border-color: transparent;
  background: transparent;
  cursor: pointer;
}
.bloc-recherche-catalogue-carte .primary-button:hover{
  color: transparent;
  border-color: transparent;
  background: transparent;
  cursor: pointer;
}
.bloc-download-cartes-navigation{
  width: 380px;
  height: 125px;
  border-radius: 13px;
  background-color: #eff2fa;
  margin: 0 auto;
  display: flex;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4.5px rgba(0,0,0,0.27));
  text-align: center;
}
.container-img-title{
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-bloc-download-cartes{
  font-size: 20px;
  line-height: 38px;
  color: #1765c1;
  font-weight: 800;
  text-align: initial;
}

.pdf-bloc-download-cartes span{
  background-image: url(../filter/icons8_download_24px_1.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-color: #1765c1;
  background-size: 40px 40px;
  background-position: center;
}
.pdf-bloc-download-cartes a {
  color: transparent;
}
.pdf-bloc-download-cartes{
  display: flex;
  justify-content: center;
  align-items: center;
}
.bloc-download-cartes{
  background-image: url(../filter/background.png);
}


input,
textarea {
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  padding: 10px;
}

input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.input-group {
  clear: both;
  margin: 15px 0;
  position: relative;
}

.input-group input[type='button'] {
  background-color: #eeeeee;
  min-width: 20px;
  width: auto;
  transition: all 300ms ease;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  width: 38px;
  /*
  position: relative;
  */
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  /*
  left: -6px;
  */
  text-align: center;
  width: 45px;
  display: inline-block;
  font-size: 12px;
  margin: 0 0 5px;
  resize: vertical;
}

.button-plus {
  left: -13px;
}

input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
.commander-cartes-papier{
  width: 227px;
  height: 58px;
  border-radius: 7px;
  background-color: #3cb878;
  text-align: center;
  float: right;
}
.commander-cartes-papier a label{
  cursor: pointer;
  padding: 20px;
  border-radius: 53px;
  text-transform: uppercase;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 19px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
td.views-field.views-field-field-overview-cmp, td.views-field.views-field-nothing-1{
  width: 8% !important;
}
.commande-form .form-group #edit-btn input[type="button"] {
  background: none;
  border: none;
  color: #6facd7;
  font-size: initial;
  line-height: normal;
}
#edit-btn.form-no-label{
  font-size: 17px;
  line-height: 24px;
  color: #6facd7;
}
.commande-form .form-group label {
  font-size: 17px;
  line-height: 24px;
  color: #0b3258;
  font-weight: 600;
  width: 50%;
}
.commande-form .form-group .form-item-message label {
  font-size: 17px;
  line-height: 24px;
  color: #0b3258;
  font-weight: 600;
  width: 37%;
}
.btn-envoyer-commande{
  margin: 0 auto;
}
.btn-envoyer-commande input{
  border-radius: 7px;
  background-color: #3cb878;
  text-transform: uppercase;
  font-size: inherit;
  border: none;
  cursor: pointer;
}
.commande-form #edit-btn div{
  padding-bottom: 10px;
}
.commande-form .form-group{
  margin-bottom: initial;
  display: inline-flex;
  padding-right: 20px;
  padding-left: 30px;
}
.commande-form .form-group .js-form-item{
display: inline-flex;
  width: 90%;
 }
.title-modal-commande{
  font-size: 22px;
  line-height: 24px;
  color: #0b3258;
  font-weight: 700;
  text-align: left;
  padding: 25px 0 15px 50px;
}
.commande-form .details-commande .js-form-item{
  display: grid;
}
.commande-form .details-commande label{
  display: grid;
  margin-top: 15px;
}
.background-modal-block{
  border-bottom: black;
  border-bottom-style: solid;
  border-bottom-width: thin;
}
.modal-footer{
  float: right;
}
.commande-form .details-commande{
  display: inline-flex;
  padding-right: 80px;
  padding-left: 30px;
}
#modalYT{
  z-index: 9999999;
}
.section-block-timeline {
    position: relative;
    padding: 30px 0 30px 0;
    background-color: #fafafa;
    background-image: url(../images/backtime.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.background-groupe-avis-navigateurs{
  background-color: #eff2fa;
}

.col-md-4.img-rechreche-archives::after{
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  margin-left: 20%;
  background-color: #1780e9;
}



.bloc-recherche-groupe-avis-nav, .bloc-archives-groupe-avis-nav{
  position: relative;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  filter: drop-shadow(0 0 5px rgba(10,10,10,0.1));
  background-color: #a9cae5;
}
.title-rechreche-archives{
    text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}
.img-rechreche-archives img{
    width: 70px;
    height: auto;
    /*margin-top: 10%;*/
}
/*.link-recherche-archives i{
    margin-top: 150%;
}*/
.background-observation{
  background-image: url(../images/hydro5.png);
}
.bg-bloc4 {
  background-color: #31507f;
}
.img-observation img{
  height: 100% !important;
}
input#edit-submit-archive-gan {
  padding: 10px 15px 10px 15px;
}
.bloc-recherche-catalogue-carte .form-item select {
  height: 66px;
  border-radius: 6px !important;
  filter: drop-shadow(0 0 4.5px rgba(0,0,0,0.27));
  background-color: #ffffff !important;
  padding: 13px 50px;
  font-weight: 700;
  font-size: 20px;
}
.gan-view-btn span {
  background-image: url(../images/view.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-size: 37px 19px;
  background-position: center;
}
.gan-download-btn a, .gan-view-btn a {
  color: transparent;
  /*white-space: nowrap;*/
  width: 100%;
  height: 100%;
  display: contents;
}
.gan-download-btn span {
  background-image: url(../images/download.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-size: 32px 32px;
  background-position: center;
}
.btn-view-download_gan{
  display: flex;
  justify-content: flex-end;
}
.gan-view-btn a::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 50%;
  top: 25%;
  margin-left: 10%;
  background-color: #595959;
}

.first-line-gan span {
  visibility: hidden;
}
li:first-child .first-line-gan span {
  visibility: visible;
}
.view-avurnav table > thead > tr > th {
  background-color: #003263 !important;
  color: white !important;
}
.view-avurnav table td {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #5c5c5c;
  color: #5c5c5c;
}
.view-avurnav span.file--application-pdf {
  background-image: url(../images/icons8_eye_32px.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background-color: #5bc7ff;
  background-size: 32px 32px;
  background-position: center;
  vertical-align: middle;
}
.view-avurnav span.file--application-pdf a {
  color: transparent;
}
.view-avurnav table{
  border-collapse: separate !important;
}
.bloc-gan-pays div#background-service-block:hover .center-body-service-block a i.gg-chevron-right-o{
  display: block;
  color: white !important;
}
.title-item-autres-ouvrages{
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: 700;
  margin: auto;
}
.footer-item-autres-ouvrages{
  background-color: #17536d;
  height: 90px;
}
.bloc-item-autres-ouvrages .row{
  margin : 0 !important;
}
.bloc-item-autres-ouvrages .gan-view-btn a::after{
  display: none;
}
.img-item-autres-ouvrages{
  padding: 30px;
  height: 450px;
}
.item-autres-ouvrages{
  background-color: #4ba3c6;
}
.produits-ouvrages-nautiques .footer-item-autres-ouvrages a:nth-child(1) img, .view-autres-ouvrages .footer-item-autres-ouvrages a:nth-child(1) img{
  visibility: hidden;
  display: initial !important;
  height: 100%;
}
.produits-ouvrages-nautiques .footer-item-autres-ouvrages a.colorbox img, .view-autres-ouvrages .footer-item-autres-ouvrages a.colorbox img{
 display: none;
}
.produits-ouvrages-nautiques-command-btn {
  background-image: url(../images/supermarket.png);
  background-repeat: no-repeat;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  background-size: 37px 27px;
 
}
.produits-ouvrages-nautiques-view-btn{
  background-image: url(../images/view.png);
  background-repeat: no-repeat;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  background-size: 37px 22px;
 
}
.produits-ouvrages-nautiques-view-btn::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 50%;
  top: 25%;
  margin-left: 25%;
  background-color: #ffff;
}
.produits-ouvrages-nautiques-command-btn a{
  display: block;
  height: 100%;
}
.produits-ouvrages-nautiques-command-btn a label{
 visibility: hidden;
}
.img-item-produits-autres-ouvrages img{
  margin: 0 auto;
  display: block;
}
.view-produits-ouvrages-nautiques .bloc-item-autres-ouvrages .row {
  margin: 0 !important;
  padding: 10px;
}
.col-centered{
  float: none;
  margin: 0 auto;
}
.title-body-recherche-archives{
  text-align: center;
  margin: auto;
}
.view-autres-ouvrages .gan-view-btn span,
.view-marees .gan-view-btn span {
  background-image: url(../images/view.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  border-radius: 48px;
  background-size: auto;
  background-position: center;
}
.js-form-item.form-item.js-form-type-.form-type-.js-form-item-nodefield-date-gan.form-item-nodefield-date-gan.form-no-label{
  display: none;
}
.view-recheche-gans .view-filters .filter-date .form-item-field-date-gan-value-max label{
  display: none;
}
.view-recheche-gans .bloc-recherche-catalogue-carte {
  width: 65%;
}
.cd-horizontal-timeline.loaded {
    opacity: 1;
}
@media only screen and (min-width: 1100px){
    .cd-horizontal-timeline {
        margin: 6em auto;
    }
}
.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    transition: opacity .2s;
}
.cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
    /*max-width: 800px;*/
    margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::before {
    left: 0;
    background-image: linear-gradient(to right, #5f5f5f00, rgba(248, 248, 248, 0));
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}
.cd-horizontal-timeline .events {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 49px;
    height: 2px;
    background: #dfdfdf;
    transiton: transform .4s;
}
.cd-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 15px;
    color: #ffffff;
    transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -5px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    transition: background-color .3s, border-color .3s;
}
.cd-horizontal-timeline .filling-line {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #2387ea;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s;
}
.cd-horizontal-timeline .events-wrapper::after {
    right: 0;
    /* background-image: linear-gradient(to left, #4f5d6f, rgba(248, 248, 248, 0)); */
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}
.cd-timeline-navigation a.prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a {
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    transition: border-color .3s;
}
.cd-timeline-navigation a::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 50%;
    color: #2387ea;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    background: url(http://www.html5tricks.com/demo/jquery-horizon-line-switch/img/cd-arrow.svg) no-repeat 0 0;
}
.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}
.cd-timeline-navigation a.next {
    right: 0;
}
.cd-timeline-navigation a {
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    transition: border-color .3s;
}
.cd-timeline-navigation a.inactive::after {
    background-position: 0 -16px;
}
/*.cd-timeline-navigation a::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 50%;
    !* color: #2387ea; *!
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
  background: url(../images/screen-viewer-sprite.png) no-repeat 0 0;
}*/
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #eee;
    top: -30px;
    bottom: 158px;
    left: 50%;
    margin-left: -3px;
}
.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    margin: 2em 0;
    overflow: hidden;
    transition: height .4s;
}
.cd-horizontal-timeline .events-content li {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    padding: 0 5%;
    opacity: 0;
    animation-duration: .4s;
    animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content h2 {
    font-weight: bold;
    font-size: 2.6rem;
    font-family: "poppins", serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2387ea;
}
.cd-horizontal-timeline .events-content li > * {
    max-width: 800px;
    margin: 0 auto;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
    line-height: 1.6;
}
.cd-horizontal-timeline .events-content p {
    font-size: 1.4rem;
    color: #f1f1f1;
}
.cd-horizontal-timeline .events-content li.selected {
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateX(0);
}
.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
    color: #00a1ff;
}
.cd-horizontal-timeline .events a.selected::after {
    background-color: #2387ea;
    border-color: #2387ea;
}
.list-gan ul li:hover .item_title {
  color: #fff;
}
.section-block.background-groupe-avis-navigateurs .pdf-bloc-download-cartes span {
  background-image: url(../filter/icons8_download_24px_1.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 48px;
  background-color: #1765c1;
  background-size: 25px 25px;
  background-position: center;
}
.view-instructions-nautiques .gan-view-btn span,
.view-livre-des-feux-et-radiosignaux .gan-view-btn span{
  background-image: url(../images/view.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-size: 37px 19px;
  background-position: center;
}
.view-archive-gan .js-form-item-field-date-gan-value{
  display: none;
}
.view-recheche-gans .views-exposed-form.bef-exposed-form label{
  display: none;
}
.block-pays-gan .footer-item-service-block{
 background-color: #ffffff;
  padding: 20px;
}
.background-groupe-avis-navigateurs .section-block{
  background-color: inherit;
}
.block-pays-gan .row{
  margin: 0 !important;
}
/*.background-block-pays-gan img{
  width: 100%;
}*/
.view-derniere-gan .pdf-bloc-download-cartes span{
  background-image: url(../filter/icons8_download_24px_11.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-color: transparent;
  background-size: 30px 30px;
  background-position: center;
}
.section-block.bloc-gan-pays{
  background-color: #eff2fa;
}
/*
.view-derniere-gan .title-body-recherche-archives{
  padding: 0;
}
*/
.section-block.recherche-archive{
  background-color: #ffffff;
}
.recherche-archive .link-recherche-archives{
  position: relative;
}
.recherche-archive .link-recherche-archives a{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bloc-gan-pays .gg-chevron-right-o{
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 30px;
  height: 30px;
  border: 2px solid;
  border-radius: 100px;
  color: #2387ea !important;
}
.bloc-gan-pays .gg-chevron-right-o::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  left: 25%;
  top: 25%;
}
.bloc-gan-pays .title-pays-gan h4{
  letter-spacing: 1px;
  color: #003263;
}
.background-block-pays-gan{
background-color: #ffffff;
}
.section-block.background-groupe-avis-navigateurs{
  background-color: #eff2fa;
}
.page-node-type-activites .block-pays-gan .footer-item-service-block {
  background-color: #ffffff;
  padding: 20px 0;
  height: 90px;

}
.page-node-type-activites .block-pays-gan .footer-item-service-block .title-pays-gan h4{
   font-size: 20px;
   color: #003263;
}
.page-node-type-activites .block-pays-gan .footer-item-service-block .gg-chevron-right-o{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid;
  border-radius: 100px;
  color: #2387ea !important;
}
.page-node-type-activites .block-pays-gan .footer-item-service-block .gg-chevron-right-o::after{
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  left: 25%;
  top: 25%;
}
.page-node-type-home-page #block-produits .link-produit-bloc{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-node-type-home-page #block-produits .title-produit-bloc{
 margin: auto;
}
.view-derniere-gan .img-rechreche-archives img {
    width: 100px;
    height: auto;
    margin-top: 10%;
}
.pagination .pager__item.pager__item--ellipsis{
    display: none;
}
.img-item-autres-ouvrages img{
  height: 400px ;
}
.process-step-icon{
  height: 55px;
}

.maree-view-btn span{
  background-image: url(../images/view.png);
  filter: drop-shadow(0px 2px 12px rgba(31,31,31,0.06));
  background-repeat: no-repeat;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  background-size: 37px 19px;
  background-position: center;
}
.maree-view-btn a{
  color: transparent;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.bloc-maree-img-pdf{
  display: none;
}
.show-block-maree{
  display: block;
}
.bloc-maree-img-pdf-display{
  position: absolute;
}
.select-lang select {
  margin: 0 !important;
  text-transform: uppercase;
  font-weight: bold !important;
  background: transparent !important;
  border-radius: unset !important;
}
.select-lang {
  margin-left: auto;
}

#colorbox {
  outline: 0;
  z-index: 999999;
}
.gallery-item a.colorbox img{
display: none;
}
.gallery-item a:nth-child(1) img{
  visibility: visible !important;
  display: initial !important;
  height: 100% !important;
  max-height: 240px;
}
.footer-album-galerie{
  background-color:#003263;
  padding: 20px 0;
  height: 90px;
}
.title-album-galerie{
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}
.md-arrow {
  opacity: 1 !important;
}
.details-actualites{
  max-width: 100%;
}