// De jolis boutons automatisés

.bouton {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid;
  @include transit();
  color: $blanc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;

  &.pill {
    border-radius: 50px;

    &:hover, &:focus {
      background-color: transparent;
      background-image: none;
      text-decoration: none;
    }
  }
}

//Gestion des images
.alignright {
  float: right;
  margin: 0 0 30px 30px;
}

.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}



picture img {
  margin-bottom: 0;
}

// Boutons de slider
.slider_controls {
  display: table;

  .slick_nav {
    display: table-cell;
    padding: 2px;
    cursor: pointer;
  }
}

// Une classe permettant d'avoir des colonnes de même hauteur (non dispo par défaut dans materialize). Ajouter simplement la classe autoadjust à un row.
.row.autoadjust{
  &>.col{
    display: flex;
    align-items: center
  }
}

// Reproduit le comportement de la classe de bootstrap permettant de supprimer les gouttières (non dispo par défaut dans materialize). Ajouter simplement la classe nogutters à un row.
.row.nogutters{
  margin-left: 0;
  margin-right: 0;
  >.col{
    padding-right: 0;
    padding-left: 0;
  }
}


/* same height */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.vcenterflex {
  align-items: center;
}

//special cols 

.row>.col.m55 {
  width: 45.83333% ;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row>.col.m65 {
  width: 54.16667% ;
  margin-left: auto;
  left: auto;
  right: auto;
}

//ul list dotlist

ul {
  margin-bottom: 20px;
  li {
    color: $grisf;
    font-family: $deffont;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
  }
  &.dotlist {
    li {
      color: $noir;
      margin-bottom: 10px;
      &::before {
        display: inline-block;
        content: url(../img/bullet_list.png);
        width: 18px;
        height: 18px;
        // border-radius: 50px;
        border: none;
        // background-image: $goldengradient;
        // background-color: #c89519;
        margin-right: 4px;
        top: 2px;
        position: relative;
        // transform: scale(1);
        color: transparent;
        pointer-events: none;
      }
    }
  }
  &.simplelist {
    li {
      color: $noir;
      margin-bottom: 4px;
      &::before {
        content: url(../img/bullet_list.png);
        width: 18px;
        height: 18px;
        display: inline-block;
        // font-family: "Flaticon";
        // font-style: normal;
        // font-weight: normal;
        // font-variant: normal;
        // line-height: 1;
        // text-decoration: inherit;
        // text-rendering: optimizeLegibility;
        // text-transform: none;
        // -webkit-font-smoothing: antialiased;
        // font-size: 11px;
        margin-right: 5px;
        margin-top: 0;
      }
    }
  }
  &.nextlist {
    li {
      margin-bottom: 12px;
      display: flex;
      &::before {
        content: "\f106";
        display: inline-block;
        font-family: "Flaticon";
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        text-decoration: inherit;
        text-rendering: optimizeLegibility;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        margin-right: 5px;
        margin-top: 3px;
      }
    }
  }
}

.uppercase {
  text-transform: uppercase;
}

.gold {
  color: $bleu_at_f;
}

.goldengradientbg {
  background-image: $goldengradient;
}
.blackbg {
  // background-color: $noir;
  background-image: $goldengradient;
}

.grisbg {
  background-color: $grisc;
}

.nobottommargin {
  margin-bottom: 0 !important;
}

.relative {
  position: relative;
}

.whitetxt {
  color: $blanc !important;
}
.blacktxt {
  color:$noir;
}

.goldentgradienttext {
  color: $blanc;
  // background-image: $goldengradient !important;
  // background-clip: text;
  // -webkit-background-clip: text;
  // color: transparent !important;
}
