@font-face {/* boutons */
  font-family: 'backbold';
  src: url('Back to Black Bold.ttf');
}
/* @font-face {
  font-family: 'tangerine';
  src: url('tangerine_Regular.ttf');
} */
/* @font-face {
  font-family: 'tangerinebold';
  src: url('tangerine_Bold.ttf');
} */
@font-face {/* principale */
  font-family: 'odstemplikbold';
  src: url('odstemplikBold.otf');
}
html{
  font-family: Arial, sans-serif;
  font-size: 1.5em;
  /* font-family: odstemplikbold; */
  /* font-size: 2.2em; */
  cursor: default;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
  position: relative;
}
body{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

#body{
  min-height:100%;
  position: relative;
}
#size{
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  visibility: hidden;
}
a{
  color: blue;
}
input, select, textarea{
  font-family: Georgia, serif;
  /* font-family: odstemplikbold; */
  font-size: 1em;
  border: 1px solid;
  border-radius: 10px;
  height: 45px;
  background-color: rgb(245,245,245);
  box-shadow:2px 2px 5px #AAA;
  text-align: center;
  margin: 5px 0;
}
select{
  height: 55px;
}
option {
  font-family: Georgia;
  font-size: 0.8em;
}

.bouton, .boutonCook{
  cursor: pointer;
  position:relative;
  display: flex;
  align-items: center;
  width:150px;
  height: 30px;
  margin: 10px;
}
.bouton{
  font-family: backbold;
  font-size: 0.9em;
  height:50px;
  margin: 25px auto;
}
.bouton div, .boutonCook div{
  display: flex;
  align-items: center;
  justify-content: center;
  position:absolute;
  border:2px solid;
  border-color:rgb(140,140,140);
  border-radius:10px 0;
  width: 100%;
  height: 100%;
  background-color: rgb(245,245,245);
  box-shadow:2px 2px 5px #AAA;
  transition: 0.5s;
}
.bouton div:hover, .boutonCook div:hover{
  font-size: 0.8em;
  height: 94%;
  width: 94%;
  margin: 2%;
  background-color: white;
}
/********* HEADER ***********/
#header{
  display:flex;
  justify-content:center;
  width:100%;
  height:70px;
  background-color:rgb(220,220,220);
  box-shadow:2px 2px 5px #AAA;
}
#header a{
  display:flex;
  align-items:center;
}
#header img{
  width:30px;
  height:30px;
  margin-right:15px;
  padding:10px;
  border:2px solid;
  background-color:rgba(240,240,240);
  border-color:rgb(40,40,200);
  border-radius:20px;
}
#retourBTN{
  position:absolute;
  width: 150px;
  left:15px;
  top:-10px;
  visibility: hidden;
}
#retourBTN img{
  width:25px;
  height:25px;
  margin: 0 15px 0 -15px;
}

#panier{
  width:60px;
  height:60px;
  position:absolute;
  right:15px;
  top:5px;
  border-radius: 10px;
  background-image:url('../icones/panier.png');
  background-size:contain;
  background-repeat: no-repeat;
  font-size:1.2em;
  font-weight:bold;
  cursor:pointer;
}
.separateur{
  background-image: url('../icones/separateur.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 13px;
  width: 110px;
  margin: 30px auto;
}
/********* FOOTER ***********/
#footer{
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: times;
  font-size: 0.8em;
  /* background-color: rgb(40,40,40); */
  background-color: rgb(120,100,96);
  color:white;
}

#footerLiens{
  flex-direction: row;
}
#footerLiens a{
    text-decoration:none;
    width:200px;
    display:flex;
    align-items:center;
    /* justify-content:flex-start; */
    color:rgb(250,250,250);
}

/******** TOASTER ********/
#toast{
  visibility: hidden;
  width:100%;
  background-color: rgb(245,245,245);
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 0px;
  font-size:1.5em;
  color:blue;
}
#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

#mentionsLiens{
  width:80%;
  left:10%;
}

#etsy{display: none;}
#etsy img, #insta img, #pointsVente img, #facebook img{width:50px; border-radius: 10px; margin:5px}

/********** PHONE **********/

@media (max-width: 1200px){
  html{font-size: 1.8em;
  }
  #etsy img, #insta img, #pointsVente img, #facebook img{width:35px;}

  #retourBTN{
    font-size: 0em;
    width: 40px;
    height: 40px;
    left:5px;
  }
  #retourBTN img{
    width: 35px;
    height: 35px;
    margin: 0;
  }
  #header img{
    width:25px;
    height:25px;
    padding:5px;
  }
  #panier{
    width:40px;
    height:40px;
    font-size:0.9em;
    top:15px;
  }
  .boutonCook{
    font-size: 0.8em;
  }
  /* #footerLiens{
    flex-direction: column;
  }
    #footerLiens a{
      justify-content: center;
    }
  #footerLiensSeparateur{
    display: none;
  } */

}
