*{ box-sizing: border-box;}

body
{
  margin: 0px;
  background: #282828;
  line-height: 178%;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

h1 {margin: 0 0 5% 0;}

h2 {
  flex-basis: 100%;
  text-align: center;
}

p, ul {margin-top: 0;}

p {line-height: 180%;}

a {text-decoration: none;}

.container
{
  max-width: 1024px;
  min-width: 270px;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

#logo a 
{
  color: #C6A687;
}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

.button,
.button a
{
  padding: 1%;
  background: #282828;
  letter-spacing: 0.20em;
  letter-spacing: 5%;
  text-transform: uppercase;
  /* font-weight: 400; */
  color: #FFF;
  border-radius: 20px;
  /* cursor: pointer; */
  width: 125px;
}

.buttonAvertissement
{
  fill: #ff0;
  transition: fill 1.5s, stroke 1.5s, stroke-width 1.5s, stoke-opacity 1.5s;
}

.buttonAvertissement:hover {
  fill: white;
  stroke: white;
  stroke-width: 25px;
  stroke-opacity: .5;
}

.contenu button{
  margin: 1% 1%;
}

#svg_avertissement{
  width: 180px;
  cursor: pointer;

}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header {padding: 2% 2%;}

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/

#menu li,
#menuPrincipale li {  display: inline-block;}

#menu li a,
#menuPrincipale li a
{
  padding: 0.5em 0.7em;
  color: #FFFFFF;
}

#menu li:hover a, #menu li.active a,
#menuPrincipale li:hover a, #menuPrincipale li.active a
{
  background: rgba(63,69,69,0.8);
  border-radius: 20px;
  color: rgba(255,255,255,0.8);
}

.show-on-mobile{
  display: none;
}

/*********************************************************************************/
/* Page                                                                          */
/*********************************************************************************/

#page
{
  padding: 2% 0.5%;
  background: #C6A687;
  opacity: .8;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {padding: 5% 0%;}

#copyright p
{
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: 0.80em;
  color: rgba(255,255,255,0.5);
}

.justifyCenter{
  justify-content: center;
}


/*********************************************************************************/
/* Contenu                                                                       */
/*********************************************************************************/

.contenu
{
  text-align: center;
  margin: .5%;
}

.avertissement{
  flex-basis: 30%;
  order: -1;
}

.flexBasis50{
  flex-basis: 49%;
}

.armeArmureFlexBasis{
  flex-basis: 19%;
  flex-grow: 1;
}

.contenuH1_boutique{
  flex-basis: 50%;
  text-align: left;
}

.contenuBackground{
  background-color: rgba(255,255,255,0.1);
}

.contenu  {padding: .5%;}


.contenu figure{
  overflow: hidden;
  margin: 5%;
}

.contenu img{
  width: 100%;
}

th{
  padding: 0% 0.5%;
}

td{
  padding: 2% 0.5%;
}

/*********************************************************************************/
/* Fenêtre modale                                                                       */
/*********************************************************************************/

.overlay,
.modal_container{
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
}

.modal_container{
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay{
  position: absolute;
  background-color: rgba(0,0,0,0.8);
}

.modal_window{
  position: relative;
  z-index: 10;
  background-color: #FFFFFF;
  padding: 1rem 3rem 3rem;
  width: 90%;
  max-width: 30rem;
  max-height: 100vh;
  overflow: auto;
}

.hide {display: none !important;}

/*********************************************************************************/
/* Gallerie d'image                                                                     */
/*********************************************************************************/

.containerGallery{
  flex-direction: column;
  align-items: center;
  width: 415px;
}
.full-img {
  background-color: rgba(255,255,255,0.1);
  /* position: relative; */
  /* display: block; */
  width: auto;
}

.full-img img{
  width: none;
  height: 100%;
}

.contenuGallery{
  flex-basis: 50%;
}

.thumb-bar {
  /* width: 640px; */
}

.thumb-bar img {
  /* display: block; */
  width: 20%;
  /* float: left; */
  cursor: pointer;
}

/*********************************************************************************/
/* @media                                                                       */
/*********************************************************************************/


@media screen and (max-width: 420px){

  .armeArmureFlexBasis { flex-basis: 49%;}
  .armeArmureFlexBasis { flex-basis: 49%;}
  .avertissement{ flex-basis: 100%;}
  .flexBasis50{ flex-basis: 100%}
  .contenuH1_boutique{ 
    flex-basis: 100%;
    text-align: center;
  }
  
  /******** Menu mobile ************/
  .hide-on-mobile{ display: none; }
  .show-on-mobile{ display: block; }
  

  #menuPrincipale{
    position: absolute;
    background-color: #282828;
    width: 100%;
    left: 0;
    top: 6%;
    padding: 2rem;
    overflow: auto;
    z-index: 1;
  }

  #menuPrincipale li,
  #menuPrincipale a{
    width: 100%;
    color: #fff;
    text-decoration: none;
  }

  #menuPrincipale > ul > li{
    border-top: 1px solid #fff;
  }

  #menu li:hover a, #menu li.active a,
  #menuPrincipale li:hover a, #menuPrincipale li.active a
  {
    background: none;
    border-radius: none;
    color: none;
  }

}