@import 'https://fonts.googleapis.com/css?family=Abel';
@import 'https://fonts.googleapis.com/css?family=Roboto';
@import url('/media/system/css/joomla-fontawesome.css');


:root {
  --main-color: #1c2472;
  --light-gray: #444444;
}

body.site img {
    max-width: 100%;
    height: auto;
}

body.site{
  background: #FFDF80;
}

body.site h1, 
body.site h2, 
body.site h3, 
body.site h4, 
body.site h5, 
body.site h6 {
    margin: 0 0 15px 0;
    font-family: 'Abel';
    font-weight: 300;
    color: var(--light-gray);
    text-transform: none;
}

#main-container{
  max-width: 1400px;
  background: #ffffff;
}

#main-content p, #main-content a{
  font-family: Verdana, Arial sans-serif;
}

#header{
  background: var(--main-color);
}

/* BURGER MENU */
/* 🟢 Cacher le burger en desktop */
#burger-menu {
    display: none; /* Caché par défaut */
}

/* 🟢 Afficher le burger et cacher le menu desktop en mobile */
@media screen and (max-width: 979px) {
    #burger-menu {
        display: inline-block; /* Affiché en mobile */
        font-size: 30px;
        cursor: pointer;
        color: black;
        padding: 10px 15px;
        border-radius: 5px;
        z-index: 1002;
    }

    #desktop-menu {
        display: none; /* Cache le menu classique */
    }

    /* Sidebar en mobile */
    #sidebar {
        position: fixed;
        top: 0;
        left: -250px; /* Caché par défaut */
        width: 250px;
        height: 100%;
        background: #333;
        color: white;
        transition: all 0.3s ease;
        z-index: 1001;
        /* padding-top: 30px; */
    }

    /* Effet overlay */
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    /* Quand le menu est ouvert */
    body.menu-open #sidebar {
        left: 0;
    }

    body.menu-open #overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Décalage du contenu principal */
    body.menu-open #main-container {
        margin-left: 250px;
        transition: margin-left 0.3s ease;
    }

    /* Iframe bas de page */

    #mod-custom97 iframe {
      width: 300px;
      height: 300px;
    }

    /* Menu mobile */

    #sidebar .nav {
      display: flex;
      flex-direction: column;
    }

    #sidebar  ul > li > a {
        color: #cccccc;
        padding: 10px 15px;
        text-decoration: none;
    }

    #sidebar ul > li  {
      padding-top: 10px;
      padding-bottom: 10px;  
      }

    #sidebar ul > li.active  {
      background-color: black;
      padding-bottom: 0px;
      /* font-weight: bold; */
    }

    #sidebar ul > li.active > ul  {
      background-color: #333;
    }

    #navigation {
      flex-direction: row-reverse;
    }

    /* barre de recherche */
  #search {
    background-color: #f9f9f9;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 14px;
    padding-bottom: 8px;
    line-height: 100%;
  }

  #search .search, #search .awesomplete {
    float: right;
  }

 #search .form-search .finder {
    display: none;
  } 
  
  .search .element-invisible{
    display: none;
  }

  .inputbox.search-query:before {
    content: "\f002";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-family: FontAwesome;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.2);
  }

  .inputbox.search-query {
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    line-height: normal;
    width: 200px;
    height: 30px;
    padding: 0 0 0 30px;
    border: 1px solid #eeeeee;
    background: #f9f9f9;
    color: #444444;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }

  #search .col-md-6:first-of-type {
    display: none;
  }

  .itemid-101 #sidebar-a .nav {
    display: none;
  }

  #main-content .row {
    flex-direction: column;
  }
  
  #content {
    order: 1;
  }
  
  #sidebar-a {
      order: 2;
      margin: 0 auto;
      width:auto;
  } 
  
  #sidebar-b {
    order: 3;
  }

  #header {
  padding: 15px 35px;
  }

  #main-content #sidebar-a ul > li > ul > li > a {
    color: #6897e3;
    padding: 5px 20px;
    display: block;
    text-decoration: none;
  }

  #main-content #sidebar-a .nav {
    margin-bottom: 40px;
  }

  /* Page contact */
  .itemid-107 #mod-custom403 iframe {
    width: auto;
  }
}

/* Version desktop */
@media screen and (min-width: 980px) {

  /* Cacher la sidebar du haut */
  #sidebar {
    display: none;
  }

  #mod-custom96 h3 {
    margin: 0px;
    margin-top: 10px;
  }

  h3, .h3 {
    font-size: 22px !important;
  }

  /* Barre bleu en haut */
  #header {
    padding: 12px 35px;
  }

  #header .col-md-9 {
    padding-left: 0px;
  }

  /* Logo */
  #mod-custom91 p {
    margin-bottom: 0px;
  }

  /* Navbar Desktop */
  #navigation {
      background-color: #ffffff;
      z-index: 99;
      padding-left: 20px;
      padding-right: 20px;
  }

  #navigation #desktop-menu ul {
    justify-content: flex-end;
  }

  #navigation #desktop-menu ul > li > a {
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    height: 80px;
    padding: 0 15px;
    line-height: 80px;
    color: #999999;
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: normal;
  }

  #navigation #desktop-menu ul > li.active > a {
    background-color: rgba(0, 0, 0, 0);
    color: #000000;
  }

  #navigation #desktop-menu ul > li:hover > a {
    color: #000000;
  }

 

  /* barre de recherche */
  #search {
    background-color: #f9f9f9;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 14px;
    padding-bottom: 8px;
    line-height: 100%;
  }

  #search .search {
    float: right;
  }

  .search .element-invisible {
    display: none;
  }

  .inputbox.search-query:before {
    content: "\f002";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-family: FontAwesome;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.2);
  }

  .inputbox.search-query {
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    line-height: normal;
    width: 200px;
    height: 30px;
    padding: 0 0 0 30px;
    border: 1px solid #eeeeee;
    background: #f9f9f9;
    color: #444444;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }

  

  /* Sidebar gauche Latest edition of Ecac News et plus bas */

  #sidebar-a .moduletable:nth-of-type(2) {
    margin-top: 35px;
  }

  #sidebar-a .moduletable:nth-of-type(2) h3,  #sidebar-a .moduletable:nth-of-type(3) h3, #sidebar-a .moduletable:nth-of-type(4) h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 17px !important;
    line-height: 22px;
    font-weight: normal;
    text-transform: none;
    color: #6897e3;
  }

  #sidebar-a #mod-custom216 img,  #sidebar-a #mod-custom215 img {
    margin-bottom: 35px;
  }

  #sidebar-a .acym__user__edit__email {
    margin-left: 10px;
  }

  #sidebar-a #field_1 input{
    margin-left: 5px;
  }

  #sidebar-a .fieldacyterms a {
    text-decoration: none;
    color: #6897e3;
  }

  #sidebar-a .btn {
    border: none;
    border-radius: 0;
    border-color: transparent;
    box-shadow: none;
    text-shadow: none;
    line-height: 22px;
    background: #1c2472;
    color: #ffffff;
  }
  #sidebar-a .btn:hover {
    background: black;  
  }



  /* Home page sidebar à droite */

  #sidebar-b {
    padding-left: 50px;
  }

 

  /* FOOTER */

  #mod-custom95 {
    text-align: center;
    color: #999999;
  }

  #mod-custom306 {
    padding-bottom: 20px;
  }

  #mod-custom306 p, #mod-custom95 p {
    font-family: Verdana, Arial sans-serif;
    font-size: 13px;
  }



  #mod-custom306 a:hover {
    text-decoration: underline;
  }

  /* Menu sous page dropdown */

  .nav-item ul {
    display: none; 
    position: absolute;
    background: white;
    /* padding: 5px 20px; */
    /* padding-top: 20px; */
  }

  #navigation #desktop-menu ul > li > a {
    height: auto;
    line-height: 20px;
    padding-top: 30px;
  }

  #navigation .nav-item ul > li > a:hover{
    background: #1c2472 !important;
    color: #ffffff !important;
    outline: none;
  }

  .nav-item:hover ul {
    display: block; 
    /* display: contents; */
  }

  #sidebar-a .nav-item:hover ul {
    /* display: block;  */
    display: contents;
  }

  .nav-item.item-102 ul > li > a {
    /* margin-bottom: 10px; */
  }

  /* Animation sous menu */
  @keyframes slideBottom {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  /* Masque le sous-menu par défaut */
  #navigation #desktop-menu ul > li > ul {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
      background: white;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }

  /* Applique l'animation seulement quand le parent est survolé */
  #navigation #desktop-menu ul > li:hover > ul {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      animation: slideBottom 0.3s ease-in-out;
  }

  #navigation #desktop-menu ul > li > ul > li > a {
    padding: 10px 50px 10px 30px;
  }

  /* Menu gauche sous page */

  #sidebar-a .nav-item.active ul {
    display: block;
    position: relative;
  }
  #sidebar-a .nav-item.active ul li a {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 13px !important;
    line-height: 0px;
    font-weight: normal;
    text-transform: none;
    color: #6897e3 !important;
    background:none !important;
  }

  #sidebar-a .nav-item.active ul li a:hover {
    color: #222222 !important;
  }

  /* Member-states sidebar-b */
  .member-states {
    display: flex;
    flex-direction: column;
  }

  /* Contact bas de page */

  #topd {
    padding: 35px;
    background-color: #f8f8f8;
    color: #000000;
  }

  #topd .col-md-12 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }


  
  .itemid-106 .activities-bloc {
    padding-left: 40px;
    padding-right: 40px;
  }

  #mod-custom98 {
    margin-left: 350px;
  }

  #mod-custom98 h2 {
      font-size: 30px;
      line-height: 38px;
      color: #000000;
  }

  #mod-custom98 p {
    font-size: 13px;
    font-family: Verdana, Arial sans-serif;
  }

  /* Page news */

  .itemid-105 .activities-bloc {
    padding-left: 40px;
  }

  /* Page activities */

  .itemid-103 .blog-items .activities-bloc {
    padding-left: 40px;
  }

  .itemid-103 .article-info {
    margin-bottom: 5px;
  }
}

 /* On enlève le message en anglais du breadcrumb */
 .mod-breadcrumbs__here {
  display: none;
}

/* HOME PAGE CONTENT CENTRAL */

.article-info-term, .createdby, .published , .category-name span:nth-of-type(1) {
  display: none;
}

.com-content-category-blog h2 {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}


.com-content-category-blog h2 a {
  color: #444444 !important;
}

#content a {
  text-decoration: none;
  color: #6897e3;
}

#content a:hover {
  text-decoration:underline;
  color: #222222; 
}

#content h1 {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
    font-size: 34px;
}

.category-name {
  font-size: 11px;
  font-family: Verdana, Arial sans-serif;
  color: #999999;
}

.com-content-article p {
  font-size: 13px;
  font-family: Verdana, Arial sans-serif;
}

#search a {
  color: #dddddd;
  text-decoration: none;
}

#search a:hover {
  color: #dddddd;
  text-decoration:underline;
}

/* blog template activities + news*/

.itemid-103 h2, .itemid-105 h2 {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}

.itemid-103 h2 a, .itemid-105 h2 a {
  color: #444444 !important;
}

.itemid-103 h2 a:hover, .itemid-105 h2 a:hover{
  text-decoration: none !important;
}

.itemid-103 .readmore.btn-primary, .itemid-105 .readmore.btn-primary, .itemid-106 .readmore.btn-primary {
  background: none;
  padding: 0;
  border: none;
  margin-bottom: 20px;
  font-size: 13px;
}

.itemid-103 p {
  margin-bottom: 5px;
}



#sidebar-a .item-104.nav-item.active ul li a {
  padding: 0px 20px !important;
  line-height: 15px;
}

/* News */

.itemid-105 .activities-bloc {
  width: 50%;
}

.itemid-105 .items-more li::marker {
  content: "";
}

/* Newspoint */

.itemid-130 .activities-bloc {
  width: 100%;
}

/* Events and meeting */

.itemid-106 .activities-bloc {
  width: 50%;
}

#sidebar-a .moduletable:nth-of-type(2) h3,  #sidebar-a .moduletable:nth-of-type(3) h3, #sidebar-a .moduletable:nth-of-type(4) h3 {
  color: #6897e3;
}

#sidebar-a .acym__user__edit__email {
  margin-left: 10px;
}

#sidebar-a #field_1 input{
  margin-left: 5px;
}

#sidebar-a .fieldacyterms a {
  text-decoration: none;
  color: #6897e3;
}

#sidebar-a .btn {
  border: none;
  border-radius: 0;
  border-color: transparent;
  box-shadow: none;
  text-shadow: none;
  line-height: 22px;
  font-size: 13px;
  background: #1c2472;
  color: #ffffff;
}
#sidebar-a .btn:hover {
  background: black;  
}

#sidebar-b h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 17px !important;
  line-height: 22px;
  font-weight: normal;
  text-transform: none;
  color: #444444;
}

#sidebar-b .latest-news h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
}

#sidebar-b ul {
  list-style: none;
  padding-left: 0px;
}

.latestnews {
  line-height: 0.4;
}

#sidebar-b a {
  color: #6897e3;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

#sidebar-b a:hover {
  color: #222222;
  text-decoration: underline;
}

#sidebar-b li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgb(221, 221, 221);
}

#sidebar-b .ecac-focus, #sidebar-b .ecac-strategy {
  background-image: -moz-linear-gradient(center top , #f9f9f9, #fff)!important;
  border: 4px solid #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), 0 85px 80px 0 #fff, 0 12px 8px -5px rgba(0, 0, 0, 0.4);
  padding: 20px;
  margin-top: 30px;
}

#sidebar-b .ecac-funded h3 {
  color: #6897e3;
  margin-top: 30px;
}

#topd {
  padding: 35px;
  background-color: #f8f8f8;
  color: #000000;
}

/* FOOTER */
#topfooter {
  margin-top: 25px;
  text-align: center;
}

#mod-custom306 a {
  color: #cccccc;
  text-decoration: none;
  font-family: Verdana, Arial sans-serif;
  font-size: 13px;
}

#content ul, .com-content-article__body {
  font-family: Verdana, Arial sans-serif;
  font-size: 13px;
}

/* Réseaux sociaux */

.uk-icon-button {
    box-sizing: border-box;
    display: inline-block;
    background: #1c2472;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    line-height: 35px;
    font-size: 18px;
    text-align: center;
    -webkit-animation: uk-slide-bottom-fixed 0.8s ease-in-out;
    animation: uk-slide-bottom-fixed 0.8s ease-in-out;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.uk-icon-button:hover {
  background-color: #f5f5f5;
  color: #222222;
  outline: none;  
} 

[class*='uk-icon-'] {
  font-family: 'Font Awesome 6 Brands';
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.uk-icon-twitter:before {
  content: "\f099";
}

.uk-icon-linkedin:before {
  content: "\f0e1";
}

#header #mod-custom92 {
  display: flex;
  justify-content: end;
}

#mod-custom223 {
  margin-bottom: 20px;
}

#desktop-menu .nav li:first-of-type:before {
  font-family: 'Font Awesome 6 Brands';
  /* content: "\e3af"; */
}

/* Bouton retour en haut */

#scrollTop {
    color: #444444;
    display: block;
    font-size: 25px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    position: fixed;
    right: 20px;
    text-align: center;
    bottom: 20px;
    transition: all 0.05s linear 0s;
    width: 20px;
    z-index: 1000;
    top: inherit;
    outline: none;
    text-decoration: none;
}

#scrollTop:after {
  /* content: "\f077"; */
  font-family: "Font Awesome 6 Brands";
}

#scrollTop:hover, #scrollTop:focus {
  color: #777777;
  font-size: 27px;
  outline: none;
  text-decoration: none;
}

/* Barre de séparation footer */

#topfooter::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px 0;
  margin-bottom: 20px;
  background-color: none;
  background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.itemid-101 #topfooter::before {
  display: none;
}

/* breadcrumbs */
.mod-breadcrumbs__item {
  font-family: Verdana, Arial sans-serif;
  font-size: 13px;
}

.mod-breadcrumbs__item.active {
  color:#000000 !important;
}

.mod-breadcrumbs.px-3, .mod-breadcrumbs.py-2 {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

/* Page external-relation */

.itemid-118 .nav-item ul, .itemid-190 .nav-item ul, .itemid-698 .nav-item ul, .itemid-133 .nav-item ul, .itemid-1297 .nav-item ul, .itemid-1308 .nav-item ul  {
  display: none;
  position: absolute;
  background: white;
  padding: 2px 0px;
  padding-top: 0px;
}

.itemid-118 .nav-item.item-118 ul, .itemid-133 .nav-item.item-133 ul {
  /* padding-left: 10px; */
}

.itemid-118 .nav-item.item-190 a, .itemid-190 .nav-item.item-190 a, .itemid-698 .nav-item.item-190 a, .itemid-133 .nav-item.item-133 a,  .itemid-1297 .nav-item.item-133 a,  .itemid-1308 .nav-item.item-133 a {
  line-height: 20px !important;
  padding: 0px !important;
  /* margin-left: 20px !important; */
}

#sidebar-a .item-698 a {
  padding: 10px 0px !important;
}

#sidebar-a .nav-item.active ul li a {
  line-height: 1.2;
  padding: 0px !important;
  padding-left: 15px !important;
}

/* Sidebar Menu de gauche  */

#sidebar-a {
  padding-right: 50px;
}

#sidebar-a a {
  font-size: 13px;
}

#main-content #sidebar-a ul {
  flex-direction: column;
}

#main-content #sidebar-a ul > li:first-child {
  margin-top: 10px;
}

#main-content #sidebar-a ul > li > a {
  color: #444444;
  padding: 10px 20px;
  display: block; 
  text-decoration: none;
}

#main-content #sidebar-a ul > li > a:hover {
  background: rgba(0, 0, 0, 0.05);
  outline: none;
}

#main-content #sidebar-a ul > li.active > a {
  background: #1c2472;
  color: #ffffff;
}

#main-content {
  padding: 35px;
}

/* Barre de navigation au scroll */
#navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  transition: all 3s ease-in-out, width 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  width: auto; 
  margin: 0 auto;
}

.scrolled-nav {
  position: fixed !important;
  width: 100vw !important;
  left: 0; 
  max-width: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.uk-table-hover tbody tr:hover {
	background: #eeeeee;
}

/* page news */

.itemid-105 #content h2 a {
    font-family: 'Abel';
    font-size: 34px;
    line-height: 39px;
    font-weight: normal;
    text-transform: none;
}

.itemid-105 #content p, .itemid-105 #content .readmore, .itemid-106 #content p, .itemid-103 #content p {
  font-family: Verdana, Arial sans-serif;
  font-size: 13px;
}

/* Page contact */

.itemid-107 #mod-custom117 h2 {
  font-size: 30px;
}

.itemid-107 #mod-custom117 p {
  font-size: 13px;
  margin: 10px 0 4px 0;
}

.itemid-190 em {
  color: #6897e3;
}

.itemid-190 #sidebar-b h3{
  color: #6897e3;
}

.itemid-190 p {
  font-size: 13px;
}

/* Page Ecac news */

.itemid-129 .activities-bloc {
  width: 100%;
}

/* Barre de recherche */

#search .search, #search .awesomplete {
  float: right;
}

#search .form-search .finder {
  display: none;
} 

.awesomplete #mod-finder-searchword427 {
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
    line-height: normal;
    width: 200px;
    height: 30px;
    padding: 0 0 0 30px;
    border: 1px solid #eeeeee;
    background: #f9f9f9;
    color: #444444;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;

}

.awesomplete #mod-finder-searchword427:focus {
  border: 1px solid #eeeeee;
  background: #f9f9f9;
  box-shadow: none;
  outline: 0;
  width: 220px;
}

/* Mettre tous les liens italiques en bleu */
em {
  color: #6897e3;
}

/* Module login */

li.nav-item{
  position: relative;
}

#loginmod {
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    background: #ffffff;
    padding: 12px;
    width: 240px;
    height: 212px;
}

li.item-1470:hover #loginmod{
  display: block;
}

#loginmod label {
	display: inline-block;
	margin: 0;
	line-height: 1.4;
	font-family: Verdana, Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
}

#loginmod input[type="text"], #loginmod input[type="password"] {
	height: 30px;
	max-width: 100%;
	padding: 4px 6px;
	border: 1px solid #dddddd;
	background: #dddddd;
	color: #444444;
	-webkit-transition: all 0.2s linear;
	-webkit-transition-property: border, background, color, box-shadow, padding;
	transition: all 0.2s linear;
	transition-property: border, background, color, box-shadow, padding;
  border-radius: 0;
  margin-bottom: 10px;
  font-size: 12px;
}

#login-form-243 span, #login-form-243 .input-password-toggle {
  display: none;
}

.mod-login__remember  {
  margin-top: 0px;
  margin-bottom: 10px;
}

.form-control {
	border-radius: 0;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: solid 1px #86b7fe;
  outline: 0;
  /* box-shadow: 0 0 0 .25rem #0d6efd40; */
}

#loginmod .mod-login__submit .btn {
	-webkit-appearance: none;
	margin: 0;
	border: none;
	overflow: visible;
	font: inherit;
  background-color: #1c2472;
  color: #ffffff;
  text-transform: none;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 12px;
	vertical-align: middle;
	line-height: 30px;
	min-height: 30px;
	font-size: 13px;
	text-decoration: none;
	text-align: center;
  border-radius: 0;
}

#loginmod .mod-login__submit {
  width: 65px;
}

#loginmod .mod-login__options.list-unstyled {
  color: #6897e3;
  font-size: 13px;
}

#loginmod .mod-login__options.list-unstyled a {
  padding: 0px !important;
  line-height: 1.4 !important;
  color: #6897e3 !important;
}

#loginmod .mod-login__options.list-unstyled a:hover {
  background: none !important;
  color: #222222 !important;
  text-decoration: underline !important;
}

#loginmod ul {
	padding-top: 10px !important;
}

/* Sidebar B titres en bleu */
#sidebar-b h3 {
  color: #6897e3;
}

/* Pour remettre certains titres noirs en fonction des modules */
#sidebar-b .latest-news h3, #sidebar-b .ecac-focus h3, #sidebar-b .ecac-strategy h3 {
  color: #444444;
}

/* Police de titres H1 */

#main-content h1, #main-content h2, #main-content h2 a  {
  font-family: Abel;
  font-size: 34px;
  line-height: 39px;
  font-weight: normal;
  text-transform: none;
}

/* paragraphe dans tableau */

tbody p, tbody td {
  font-size: 13px;
}

.uk-table th, .uk-table td {
  padding: 8px 8px;
}

/* Sous menu décalage sidebar A */

#sidebar-a ul > li > ul > li > ul > li {
  padding-left: 15px;
}

/* Module Ecac président */

#mod-custom168 img {
  height: auto;
}

/* Titres modules bas de page */

#content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: normal;  
  line-height: 28px;
  text-transform: none;
}

#content .moduletable h3 {
  line-height: 22px;
  font-size: 17px !important;
  color: #6897e3;
}

/* Page AFCAC and ECAC joint environmental workshop */

.itemid-1249 #search .col-md-6 {
  width: 100%;
}

.itemid-1249 #search {
  padding-left: 10px;
  padding-right: 10px;
}

/* Page ECAC resolution */

.itemid-228 #sidebar-b .ecac-strategy {
  margin-bottom: 35px;
}

#sidebar-a .item-1470{
	display: none;
}

body.site .p-2 {
    padding: 0 0.5rem !important;
}

#mod-finder-searchword427 {
    position: relative !important;
    display: block !important;
    overflow: visible !important;
}

#mod-finder-searchword427::before {
    content: "TEST";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background: red;
    color: white;
    display: block !important;
    z-index: 9999;
}

/* Page news toute résolution */
.itemid-105 .items-more h2 {
  font-size: 17px !important;
  padding-bottom: 5px;
}

.itemid-105 .items-more a {
  font-size: 13px;
}

.itemid-105 .items-more .com-content-blog__links {
  padding-left: 0px;
  margin-top: -5px;
  line-height: 1.1;
}

.itemid-105 .com-content-category-blog__navigation .com-content-category-blog__counter {
  display: none;
}

.itemid-105 .com-content-category-blog__navigation .pagination > li > a, .itemid-105 .com-content-category-blog__navigation .pagination > li > span {
  display: inline-block;
  min-width: -2.6px;
  padding: 3px 5px;
  line-height: 1.4;
  text-decoration: none;
  box-sizing: content-box;
  text-align: center;
  font-size: 13px;
}

.itemid-105 .com-content-category-blog__navigation .pagination {
  display: flex;
  justify-content: center;
}

.itemid-105 .com-content-category-blog__navigation .page-link.active, .active > .page-link {
  color: #ffffff !important;
  background-color:#1c2472 !important;
  border-color: #1c2472 !important;
}

.itemid-105 .com-content-category-blog__navigation .page-link.active:hover, .itemid-105 .active > .page-link:hover {
  color: #ffffff !important;
  background-color:#1c2472 !important;
  border-color: #1c2472 !important;
}

.itemid-105 .com-content-category-blog__navigation .page-link.active, .itemid-105 li > .page-link {
  background: #eeeeee !important;
  color: #444444 !important;
}

.itemid-105 .com-content-category-blog__navigation .page-link.active, .itemid-105 li:hover, .itemid-105 li > .page-link:hover {
  background-color: #f5f5f5 !important;
  color: #444444 !important;
  outline: none !important;
  text-decoration: none !important;
}

.itemid-105 .com-content-category-blog__navigation .page-item {
  margin-right: 3px;
  margin-left: 3px;
}

#sidebar-a img {
    border: 0 !important;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15), 0 85px 80px 0 #fff, 0 12px 8px -5px rgba(0, 0, 0, 0.4);
}