:root {
  --color1: #7dc6ef;
  --color2:  #0e95cd;
}

/* GENERAL */

body{
  background: #f1f1f1;
  font-family:  'Roboto', sans-serif;
  font-size:  12px;
  color: #777777;
}

body a{
  color:  var(--color2);
  text-decoration:  none;
}

body a:hover, body a:focus {
    color: #777777;
    text-decoration: none;
}

img,
iframe{
  max-width:  100%;
}

#wrapper{
  margin-top: 28px;
}

header {
    padding: 31px 0;
}

.container{
  background: #ffffff;
  max-width: 1270px;
  margin:  0 auto;
  padding: 0 50px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 10.5px 0;
    font-family: inherit;
    font-weight: bold;
    line-height: 21px;
    color: inherit;
    text-rendering: optimizelegibility;
}

h1, h2, h3 {
    color: #1c1c1c;
    font-size: 20px;
    line-height: 50px;
    position: relative;
    margin-bottom: 20px;
}

h1{
  font-size: 25px;
}

#content h2{
  margin-top: 0;
}

h1.visible-first:after, h2.visible-first:after, h3.visible-first:after {
    width: 100%;
    opacity: 1;
}

h1:after, h2:after, h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #477cbe;
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

p{
  clear:  both;
}

/* RECHERCHE */

#actions{
  text-align:  right;
  font-size:  20px;
  text-transform:  uppercase;
  font-weight: bold;
}

#actions a{
  color: #777777;
}

#actions a:hover{
  color:  var(--color2);
}

#actions .login, #actions .socials{
  display:  inline-block;
}

#actions .login{
  padding-right:  10px;
}

#actions .socials ul{
  border-left: 1px solid #777777;
  padding-left:  5px;
}

#actions .socials ul li{
  list-style:  none;
  display:  inline-block;
}

#actions .socials ul li a{
  padding: 5px;
}

#search {
    text-align: right;
}

#search .search {
    display: inline-block;
    padding: 5px;
    border: 1px solid #477cbe;
}

#search .search-query,
#search .search-query:focus {
    max-width: 100%;
    min-width: 315px;
    border: 0;
    height: 30px;
    outline: none;
}

#search .fa-search {
    border-left: 1px solid #477cbe;
    padding: 5px 15px;
    color: #477cbe;
    font-size: 20px;
    cursor: pointer;
}

/* MENU */

#menu{
  background: var(--color1);
}

#menu .container{
  background: url('../images/fond-nav-row.png') no-repeat top center / cover;
}

#menu nav{
  padding: 0;
}

#menu nav ul{
  border-left:  1px solid #494949;
}

#menu nav a{
  color:  #FFFFFF;
  text-decoration:  underline;
  text-decoration:  none;
  font-size:  25px;
  font-weight: 900;
  text-transform:  uppercase;
  line-height:  47px;
  display:  block;
  padding:  0 19px;
  border-right:  1px solid #494949;
  transition: all 0.5s ease;
  position:  relative;
}

#menu nav li.active a,
#menu nav li a:hover{
  background:  var(--color1);
}

#menu nav li a:before{
  opacity: 1;
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}
#menu nav li a span.menu-title {
  position: relative;
}
#menu nav li a span.menu-title{
  position: relative;
  z-index: 3;
  display: block;
}
#menu nav li a:before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  opacity: 0;
  z-index: 1;
  background: #7dc6ef;
  transform: scale(2);
  -o-transform: scale(2);
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#menu nav li a:hover:before{
  opacity: 1;
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
}

#users{
    padding: 15px 50px;
}

/* USERS */

#users {
    background: url('../images/fond-slider.png') no-repeat center top / cover;
}

/* ASIDEs */

#aside-left ul.nav,
#aside-right ul.nav{
  display:  block;
}

#aside-left ul.nav li span.separator {
    border-bottom: 3px solid #477cbe;
    color: #000000;
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0;
}

/* MAIN */

#content{
  padding-bottom:  40px;
  padding-top: 20px;
}

.blog-item {
    clear: both;
}

#content h3{
  line-height: 50px;
}

/* MAIN BOTTOM */

div#mainbottom {
    padding-bottom: 20px;
}

#mainbottom ul.nav{
  text-align:  right;
  display:  block;
}

#mainbottom ul.nav li {
    display: inline-block;
    list-style: none;
    padding: 5px;
}

/* FOOTER */

footer {
    background: #e6e6e6;
    color: #777777;
    padding:  20px 0;
}

footer .container{
  background:  none;
}

/* RESPONSIVE */

@media (max-width: 768px){

  #logo{
    text-align:  center;
    padding-bottom:  20px;
  }
  
  .navbar-toggler{
    color:  #ffffff;
    font-size:  35px;
  }

  .navbar-toggler:focus{
    outline: none;
    border:  0;
    box-shadow:  none;
  }

  #menu nav ul{
    border:  0;
    padding: 15px 0;
  }

  #menu ul,#menu ul li{
    display:  block;
  }

  #menu nav ul li a{
    border:  0;
  }

  #actions,#search{
    text-align:  center;
  }
}

/* SPECIFIQUE */

.cat-children > h3{
  display:  none;
}

#content .title_top {
    background: none !important;
    border: 0 !important;
}

#content .title_top h1 {
    font-size: 25px !important;
    text-align: left;
}

#content .dj-cattree-box{
  border:  0 !important;
}

#content #dj-classifieds .dj-item .title_top h2 {
    display: inline-block;
    padding-bottom: 10px;
    width: 80%;
}

#content .cat_title_desc h2:after,
#content .item_box_in h2:after,
.profile-items h3:after{
  display:  none !important;
}

.cat_row_title {
    display: none;
}

.badge-info{
  color:  var(--color1);
  font-size:  20px;
}

.com-contact dt, 
.com-contact dd,
.article-info dt,
.article-info dd{
  display:  inline-block;
}

.djcf_contact {
    width: 44.9%;
    float: left;
}

img.cat_tree_icon {
    display: block;
    height: 100px !important;
    margin: 0 auto !important;
}

.dj-cattree > li{
  min-height: 180px;
}

input#search-searchword {
    max-width: 100%;
    width: 500px;
}

#aside-left .moduletable h3 {
    margin-bottom: 0;
}

.dj-items-blog nav.pagination__wrapper {
    margin: 0 auto;
}

/* PHOCA DOWNLOAD */

#phoca-dl-categories-box .card-body h3{
  padding-bottom: 20px;
  line-height: 30px;
}

#phoca-dl-categories-box .card-body p{
  margin-bottom: 5px;
}

#phoca-dl-categories-box .card-body{
  padding-bottom: 10px;
}

body.site .dj-item .djc_thumbnails .djc_thumbnail {
    margin-bottom: 10px !important;
}