@charset "utf-8";
/* CSS Document */
body, html {
	margin: 0;
	font-family: 'fira_sansregular';
    font-size: 16px;
	background: #ffffff;
    line-height: 23px;
}
#global {
	margin-left:auto;
	margin-right:auto;
	background-color:#fff;
}

.container,.sous_top, #menutop, #middleLeft, .bottom, .boutique_g, #sous_fiche_associations, #compte_content {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.container_p, .cke_editable, #ariane ul  {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


/** scroll to top */

#backtotop {
  display: inline-block;
  background-color: #d7d7d7a1;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#backtotop::after {
  content: "\f077";
  font-family: 'p900';
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: var(--color-fonce);
}
#backtotop:hover {
  cursor: pointer;
  background-color: var(--color-clair);
}
#backtotop:active {
  background-color: var(--color-clair);
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}