@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);


/*------------------------------FOOTER----------------------------------*/

footer{
  margin-top: 5em;
  background-color: #333;
  font-size: 0.9em;
  color:#F1F1F1;
  text-transform: uppercase;
  position: absolute;
  width: 85%;
}

footer div.container{
  background-color: #333;
  border-bottom: none;
}

.copy{
  display: initial;
}

.logo-footer{
  margin-left: 3em;
}

#email{
  text-transform: lowercase;
}



/*-------------------------------NOS SERVICES------------------------------*/

.closebtn{
  color: #333;
}

.leftbox , .rightbox{vertical-align: top;}

.inputposition{width: 20px;
    background-color: transparent;
    background-color: transparent;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: normal;
    color: #fff;}


    .inputcoffre{width: 130px;
    background-color: transparent;
    background-color: transparent;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: normal;
    color: #777;}

.inputcoffre:focus{background-color: #444;color: #fff;}

input.submit  {
    text-decoration: none;
    color: black;
    font-weight: bold;
    background-color: #666;
    padding: 0.5em;
    box-shadow: 0px 0px 0.5em 0.1em rgba(0,0,0,0.25);
    font-size: 0.9em;
    border: none;
    border-style: none;
}

input.submit:hover {
    background-color: #D4D4D4;
    box-shadow: -1px 1px, -2px 2px, -3px 3px, -4px 4px;
    transform: translate3d(4px, -4px, 0);
    color: #666;
    transition: 0.5s;
}



/*switch*/

.switch {
  position: relative;
    display:inline-block;
    vertical-align: middle;
    width: 25px;
    height: 10px;
    padding: 1px;
    margin-left: 10px;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
    border-radius: 18px;
    box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    box-sizing: content-box;
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  box-sizing:content-box;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #d6d6d6;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  box-sizing:content-box;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaaaaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #FFFFFF;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #E1B42B;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-handle {
  position: absolute;
    top: 4px;
    left: 4px;
    width: 4px;
    height: 4px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
  background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
  left: 18px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
 
/* Transition
========================== */
.switch-label, .switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

/*fin switch*/

.attention{position: absolute;left:1em;top:1em;}
.msgattention{position: relative;left:3em;width: 80%;}
.alert {
  padding: 20px;
  background-color: #ff9800;
  color: #333;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
  position: fixed;
  text-align: center;
  width: 50%;
  top: 30em;
  left: 25%;
  box-shadow: 0px 0px 1em 1em rgba(0,0,0,0.7);
  border: 1px solid #111;
  font-weight: bolder;
  z-index: 20;
}


.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}




.lienpage:hover:before,
.lienpage:focus:before {
  padding: 0.4em;
  padding-bottom: 0.4em;
  content: attr(aria-label);  
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; 
  white-space: nowrap;  
  padding-right: 1em;
  padding-left: 1em;
  background: #222;
  color: #999;
  border-radius: 4px;
  font-size: 1em;
}




.lienpage:hover{
  filter: drop-shadow(-1px 2px 2px #666);
  transition: 0.3s;
  z-index: 20;
}

.lienpage[aria-label]:hover:after,
.lienpage[aria-label]:focus:after {
  content: "▲";
  position: absolute;
  bottom: -0.2em;
  left: 50%;
  transform: translateX(-50%); 
  font-size: 20px;
  color: #222;
  font-size: 1em;
}

.mipage{width: 440px;display: inline-block;text-align: center;vertical-align: top;}

.donjon{width: 430px;
    border-collapse: collapse;font-size: 11px;
    padding: 10px;}

.dofus {
    width: 95%;}

.succesdj{padding: 5px;
    width: 70px;}

.nomdonjon{font-size: 1.2em;padding-bottom: 5px;}

.dofus{background-color: rgba(54,54,54,0.8);border: 0.1em solid #111;}

.fiche{background-color: rgba(0,0,0,0.5);}

.lienali{display: inline-block;margin-right: 4em;margin-left: 4em;margin-top: -5em;}

.lienali:hover img {filter: drop-shadow(-1px 2px 2px #666);}


.Slide1, .Slide2, .Slide3, .Slide4, .Slide5, .Slide6, .Slide7, .Slide8, .Slide9, .Slide10, .Slide11, .Slide12, .Slide13, .Slide14, .Slide15 {display: none}

  .prev, .next {
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  padding: 0.05em;
  padding-left: 4px;
  padding-right: 4px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
}



.next {
  right: 0;
  margin-left: 1em;
}



.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
  color:white;
}


input:focus{outline: none;}

.bouttonaffiche{background-color: transparent;
    color: #f1f1f1;
    border: none;
    border-radius: 2em;
    padding: 0.3em;
    width: 30px;
    height: 30px;
    cursor: pointer;
  font-size: 1em;}

.bouttonaffiche:hover{background-color: rgba(0,0,0,0.1);
    box-shadow: 0px 0px 0.4em 0.1em rgba(0,0,0,0.1);}


a.liensicone:hover{filter: drop-shadow(-0px 0px 4px #999);
    transition: 0.1s;}

ul.explication{text-align: justify; font-weight: initial; list-style: initial;}

.liendofus:hover{filter: drop-shadow(-0px 0px 4px #999);transition: 0.1s;}

.option input{text-decoration: none; border : none; 
    font-weight: bold; color: #111;font-family: 'Open Sans', sans-serif;
    font-size: 1em; background-color: transparent;cursor: pointer;}

.option{font-size: 1.3em; display: inline-block;}

#avertissementbox , #information , .msgalert {display: none;}

#information{height: 80%;
    overflow: auto;background-color: #999;box-shadow: 0px 0px 1em 1em rgba(0,0,0,0.3);top: 3em;}


#information::-webkit-scrollbar {
  width: 8px;
}

#information::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 6px;
}
     
#information::-webkit-scrollbar-thumb {
  background: #555; 
  border-radius: 6px;
}

#information::-webkit-scrollbar-thumb:hover {
  background: #666; 
}



#avertissementbox:target{display: block;}
#information:target{display: block;}
.msgalert:target{display: block;}

.listmembre{border-spacing: 5px 0.2em;margin-top: 0;}

td.supprperso{text-align: right;vertical-align: middle;width: 40px;}

div.boxmembre{border: solid 1.5px #333;width: 90%;padding: 10px;height: 200px;overflow: auto;}

.addperso{display: inline-block;}

td{text-align: center;border-collapse: collapse;}
table{border-spacing: 1em 0em;margin-right: 1em; margin-top: 1em;width: 95%;}
td.haut {border: 1px solid;vertical-align: top;border-color:  #333  #333 transparent  #333;}
td.bas{border: 1px solid;vertical-align: top;border-color: transparent #333 #333 #333 ;padding-bottom: 0.5em;}
td.milieu{border: 1px solid;vertical-align: middle;border-color: transparent #333;padding-left: 1em;padding-right: 1em;}

.titre:after{
  width: 80px;
  height: 1px;
  background: #FFA300;
  content: ' ';
  display: block;
  margin-top: 0.5em;
}

.titre{
  margin-top: 2em;
  color:#666;
  font-size: 1.2em;font-weight: initial;
}


.box{
  margin-top: 2em;
  display: inline-block;
  width: 45%;
  text-align: center;
   border: 1px solid #333;
   padding: 0.2em;
   padding-bottom: 0.5em;
   margin-right: 0.5em;
}


.lien-page{
  fill: #FFA300;
  background-color: #666;
  padding: 0.5em;
  border-radius: 3em;
}

.lien-page:hover{
  fill: #999;
  background-color: #333;
  padding: 0.5em;
  border-radius: 1em;
  box-shadow: -1px 1px, -2px 2px, -3px 3px, -2px 2px;
      transform: translate3d(1px, -1px, 0);
      color:  #666;
      transition: 0.3s;
}

.lien-pages{
  fill: #FFA300;
  background-color: #666;
  padding: 0.5em;
  border-radius: 1em;
}



.lien-pages:hover{
  fill: #999;
  background-color: #333;
  padding: 0.5em;
  border-radius: 1em;
  box-shadow: -1px 1px, -2px 2px, -3px 3px, -2px 2px;
      transform: translate3d(1px, -1px, 0);
      color:  #666;
      transition: 0.3s;
}

.titre-box{
  text-transform: uppercase;
  font-size: 1.1em;
  color: #333;
  font-weight: 400;
  margin-bottom: 0.5em;
}

.body-box{
  margin-bottom: 0.2em;
}


/*-------------------------------BARRE 1-----------------------------------*/

input.checka{display: none;}

a.boutton:hover svg { fill: #666; }
a.boutton:hover #user { border: 2px solid  #666; }

@media only screen and (min-width: 780px) {


  .logo-titre:after{
  width: 80px;
  height: 1px;
  background: #FFA300;
  content: ' ';
  display: block;
  margin-top: 0.5em;
  }

  .presentation {
  text-align: justify;
  }

}

.logo-titre{
  color:#FFFFFF;
  font-size: 1.2em;font-weight: initial;
}

.logo-titre:after{
  width: 80px;
  height: 1px;
  background: #FFA300;
  content: ' ';
  display: block;
  margin-top: 0.5em;
}


#user{
  border: 2px solid  #FFA300;
  padding-right: 0.3em;
  padding-left: 0.3em;
  border-radius: 3em;
  margin-right: 0.2em;
}

.container {
  background-color: #444;
  padding: 1em;
  display: flex;
  margin: 0em;
  margin-top: 0px;
  border-bottom: 2px solid BLACK;
}

.push-right {
  margin-left: auto;
    margin-top: 0.5em;
}

.item {
  padding: 0px;
}


a.boutton {
  text-decoration: none;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #666;
  padding: 0.5em;
  margin-right: 1em;
  box-shadow: 0px 0px 0.5em 0.1em rgba(0,0,0,0.25);
  font-size: 0.8em;
}


a.boutton:hover{
  background-color:#D4D4D4;
  box-shadow: -1px 1px, -2px 2px, -3px 3px, -4px 4px;
      transform: translate3d(4px, -4px, 0);
      color:  #666;
      transition: 0.5s;
}


.presentation{
  margin-left: 0em;
  width: 50%;
  color:#DCDCDC;
}

.presentation h2{
  color: #FFFFFF;
}



/*-----------------------HEADER--------------------------*/

header{
  margin-right: 0px;
  margin-left: 0px;
  width: 100%;
  background: url(img/communaute.jpg) no-repeat ; background-size : cover;
  padding-bottom: 3em;
  padding-top: 2em;
  text-align: right;
}


#nomperso{font-size: 1.2em;text-align: center;}




.edit:target  , .messagealerte:target{
  display: block;
  z-index: 10;
}


.edit , .messagealerte{
    display: none;
}

.lab {
    fill: #FFA300;
}

.coffrecontenubox{overflow: auto;height: 400px}


.imiterinput{text-decoration: none;
    color: black;
    font-weight: bold;
    background-color: #666;
    padding: 0.5em;
    box-shadow: 0px 0px 0.5em 0.1em rgba(0,0,0,0.25);
    font-size: 0.9em;
    border: none;
    border-style: none;}

.imiterinput:hover {
    background-color: #D4D4D4;
    box-shadow: -1px 1px, -2px 2px, -3px 3px, -4px 4px;
    transform: translate3d(4px, -4px, 0);
    color: #666;
    transition: 0.5s;
}

.boxgroupe{width: 200px;}

div.liensicone{width: 27px;}

.outilsgroupe{width: 28%;display: inline-block;vertical-align: top;text-align:left;}
.outilsgroupecoffre{width: 68%;display: inline-block;vertical-align: top;text-align:left;}

.outilsgroupecoffre table a.lienpage {margin-left: 70px;   margin-top: -40px;}

.membregroupe {width: 48%;
    display: inline-block;
    vertical-align: top;}

.textaddmembre{position: absolute; top: 150px; padding: 10px; margin-right: 10px; color: #f1f1f1;}

div#addunmembre .blocint{height: 30em;}

div#addmonperso div.blocint{width: 50%;}

#parametregroupe{    top: 280px;
    margin-left: 105px;    position: absolute;}

    div#paramgroupe div.blocint{height: 18em;}

    a.next , a.prev {font-size: 1em;width: 100px;}






.bouttondecal{margin-left: -34px;}

#switch{
    width: 25px;
    height: 13px;
    display: inline-block;
    margin-top: 8px;
    margin-left: 5px;
    background-color: rgba(0,0,0,0.1);
}

.toggle{
    position: absolute;
    border: 1.2px solid #f1f1f1;
    border-radius: 20px;
    -webkit-transition: border-color .6s  ease-out;
    transition: border-color .6s  ease-out;
    box-sizing: border-box;
}

input.boutcheck:checked ~ .toggle{
    border-color: rgba(137, 194, 217, .4);
    -webkit-transition: all .5s .15s ease-out;
    transition: all .5s .15s ease-out;
}

.toggle-button{
    position: absolute;
    top: 2px;
    width: 6px;
    bottom: 2px;
    right: 15px;
    background-color: #f1f1f1;
    border-radius: 19px; 
    cursor: pointer;
    -webkit-transition: all .3s .1s, width .1s, top .1s, bottom .1s;
    transition: all .3s .1s, width .1s, top .1s, bottom .1s;
}

input.boutcheck:checked ~ .toggle .toggle-button{
    top: 3px;
    width: 16.5px;
    bottom: 3px;
    right: 3px;
    border-radius: 23px;
    background-color: #89c2da;
    box-shadow: 0 0 16px #4b7a8d;
    -webkit-transition: all .2s .1s, right .1s;
    transition: all .2s .1s, right .1s;
}


.toggle-text-on{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 36px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    -webkit-user-select: none; /* Chrome/Safari */    
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */


    color: rgba(0,0,0,0);
}

input.boutcheck:checked ~ .toggle .toggle-text-on{
    color: #3b6a7d;
    -webkit-transition: color .3s .15s ;
    transition: color .3s .15s ;
}

.toggle-text-off{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    line-height: 36px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: bold;
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    cursor: pointer;

    color: #444249;
}

input.boutcheck:checked ~ .toggle .toggle-text-off{
    color: rgba(0,0,0,0);
}

/* used for streak effect */
.glow-comp{
    position: absolute;
    opacity: 0;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(75, 122, 141, .1);
    box-shadow: 0 0 12px rgba(75, 122, 141, .2);
    -webkit-transition: opacity 4.5s 1s;
    transition: opacity 4.5s 1s;
}

input.boutcheck:checked ~ .toggle .glow-comp{
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}


input.boutcheck{display: none;}

.description {
        border: solid 1.5px #222;
        border-radius: 0.5em;
        resize: none;
        height: 200px;
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-weight: lighter;
    }

    .description {background-color: transparent;}

    #compteurevenement{font-size: 0.8em;
    margin: 0;
    padding: 0;
    margin-left: 2em;
    line-height: 1em;
    
  }

.description::-webkit-scrollbar {
  width: 8px;
}

.description::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 6px;
}
     
.description::-webkit-scrollbar-thumb {
  background: #555; 
  border-radius: 6px;
}

.description::-webkit-scrollbar-thumb:hover {
  background: #666; 
}


  .compteur{color: #999;}

@import url('https://fonts.googleapis.com/css?family=Roboto');


.rating-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  width: 100%;
}

.rating-text p {
  color: rgba(0, 0, 16, 0.8);
  font-size: 1.3rem;
  padding: 0.3rem;
}

.rating {
  background-color: rgba(0, 0, 16, 0.8);
  padding: 2px 2px 1px 2px;
  border-radius: 2.2rem;
}

svg.radiobonhomme {
  fill: rgb(242, 242, 242);
  height: 1.2rem;
  width: 1.2rem;
  margin: 1px;
}

.rating-form-2 svg.radiobonhomme {
  height: 3rem;
  width: 3rem;
  margin: 0.5rem;
}

#radios label {
  position: relative;
}

input[type="radio"] {
  position: absolute;
  opacity: 0;
}

input[type="radio"] + svg.radiobonhomme {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

input + svg.radiobonhomme + label {
  cursor: pointer;
}


input[class="happy"]:hover + svg.radiobonhomme,
input[class="happy"]:checked + svg.radiobonhomme,
input[class="happy"]:focus + svg.radiobonhomme {
  fill: rgb(0, 204, 79);
}



input[class="sad"]:hover + svg.radiobonhomme,
input[class="sad"]:checked + svg.radiobonhomme,
input[class="sad"]:focus + svg.radiobonhomme {
  fill: rgb(229, 132, 0);
}


      .mauvais{color: #FE7B77;}

      .nonvalide{background-color: #BD6464;}





.rule {
  margin: 10px 0;
  border: none;
  height: 1.5px;
  background-image: linear-gradient(left, #f0f0f0, #c9bbae, #f0f0f0);
}

/* ===== Select Box ===== */
.sel {
  display: inline-block;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  min-width: 150px;

}

.sel::before {
  position: absolute;
  content: '▾';
  font-family: 'Open Sans', sans-serif;
  font-size: 2em;
  color: #999;
  right: 20px;
  top: calc(50% - 0.5em);
  margin-right: -40px;
}

.sel.active::before {
  transform: rotateX(-180deg);
}



.sel.active .sel__placeholder {
  visibility: hidden;
}


.sel.active .sel__placeholder::before {
  visibility: visible;
}



.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}



/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}



/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin:0;
}

/* Opéra*/
input[type=number]::-o-inner-spin-button,
input[type=number]::-o-outer-spin-button { 
  -o-appearance: none;
  margin:0
}

.deroul:focus{
  background-color: rgba(0,0,0,0.8);
}

.box-afficheliste{
  width: 250px;
  height: 200px;
  color: white;
  background-color: #333;
  padding: 10px;
  text-align: center;
  display: inline-block;
}

.block-afficheliste{
  text-align: right;
  position: sticky;
  top: 10px;
  margin-right: 20px;
  z-index: 20;
  margin-bottom: -227px;

}

.closebox{
  position: absolute;
  z-index: 30;
  margin-left: 250px;
  margin-top: 5px;
}

#cadre-affiche-liste{
  display: none;
}

