/*
  Green : #95d0c4
  Salmon D : #f39597 
  Salmon L : #f9c0c2 
  Brown : #313131
*/

* {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Open Sans", Courier, monospace, sans-serif;
}

p,
a,
span {
  font-family: "Roboto", "Times New Roman", Times, sans-serif;
}

html {
  position: fixed;
  overflow: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

body {
  height: 100%;
  margin: 0;
  overflow: auto;
  background-color: rgba(49, 49, 49, 0.05);
  background-image: url("../images/bg_jungle.jpg");
  background-repeat: no-repeat;
  background-size: cover;

  color: white;
  max-width: 100%;

  font-family: "Roboto", "Times New Roman", Times, sans-serif;
  position: relative;
}

#main-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  /* margin-top: 2%; */
}

a {
  text-decoration: none;
  color: green;
}

.btn {
  background-color: #313131;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}

.btn-secondary {
  margin-left: 10px;
  background-color: rgba(58, 228, 241, 0.9);
  border-color: rgba(58, 228, 241, 0.9);
}

.btn:disabled {
  background-color: #d4d4d4;
  border: 0;
}

.error {
  color: red;
  font-weight: 600;
}

.success {
  color: green;
  font-weight: 600;
}

/* origin -main */
#origin {
  text-align: center;
}

#origin h1 {
  margin-top: 5%;
  margin-bottom: 30px;
}

#origin p {
  font-size: 0.9rem;
}

/* FILTER RELATED */
.category.category-eliquide.active {
  background-color: rgba(58, 228, 241, 0.8);
}

.category.category-materiel.active {
  background-color: rgba(58, 228, 241, 0.8);
}

/*  NEWS */

.new-encart {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: rgba(58, 228, 241, 0.9);
  padding: 15px;
  border-radius: 15px;
  /* z-index: 999; */
  color: white;
  font-weight: 600;
}

.contenance-encart {
  position: absolute;
  top: 35px;
  left: 20px;
  background-color: rgba(58, 228, 241, 0.9);
  padding: 15px;
  border-radius: 15px;
  /* z-index: 999; */
  color: white;
  font-weight: 600;
}

/* ACTION MESSAGE */
#action-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}

#action-message #panel {
  background-color: white;
  border-radius: 3px;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
  box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
}

#action-message #panel p {
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
}

/* DISSCLAIMER */
#disclaimer {
  background-color: rgb(145, 181, 223);
  text-align: center;
  padding: 10px 0px;
}

#disclaimer p {
  margin-bottom: 5px;
  font-weight: 600;
}

#disclaimer span {
  font-size: 0.9rem;
}

/* RESPONSIVE */

/* Up To : phone landscape & smaller + Tablet Portrait */
@media all and (min-width: 480px) {
}

/* Ipad */
@media all and (min-width: 900px) {
  #main-container {
    width: 100%;
  }
}

/* Laptop and + */
@media all and (min-width: 1180px) {
}
