@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", serif;
  background-color: rgba(92, 147, 173, 0.5803921569);
  margin: 0;
}
body textarea {
  font-family: "Poppins";
  font-size: 1em;
}

header {
  position: relative;
  background-color: rgba(92, 147, 173, 0.5803921569);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.356);
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img:nth-child(1) {
  height: 80px;
}
header .logo img:nth-child(2) {
  width: 40%;
}
header a {
  text-decoration: none;
  color: black;
  transition: all 0.3s;
}
header a:hover {
  transform: scale(1.05);
  text-decoration: underline;
}

h1,
h2 {
  text-align: center;
  font-weight: 300;
}

#storeHeader {
  margin: 0;
}

h3 {
  font-weight: 200;
  text-align: center;
}

.rangementRack .container {
  display: flex;
  flex-direction: column;
}
.rangementRack .container #skiModeContainer {
  margin: auto;
}
.rangementRack .container #skiModeContainer .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.rangementRack .container #skiModeContainer .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.rangementRack .container #skiModeContainer .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}
.rangementRack .container #skiModeContainer .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.rangementRack .container #skiModeContainer input:checked + .slider {
  background-color: #2196F3;
}
.rangementRack .container #skiModeContainer input:checked + .slider:before {
  transform: translateX(20px);
}
.rangementRack .container #commentSection {
  text-align: center;
}
.rangementRack .container #commentSection textarea {
  width: 350px;
  height: 100px;
  text-align: center;
}
.rangementRack .container #commentSection h3 {
  margin-bottom: 0;
}
.rangementRack #tablesContainer > div {
  max-width: 1240px;
  margin: 20px auto;
  text-align: center;
  justify-content: space-around;
  display: flex;
}
.rangementRack #tablesContainer > div table input {
  background-color: white;
  width: 7vh;
  height: 4vh;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
}
.rangementRack .big-b {
  /* 8 */
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  margin: 0 16px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  background-color: #f0ecfc;
  background-image: linear-gradient(315deg, #f0ecfc 0%, #5c94ad 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.rangementRack .big-b span {
  position: relative;
  display: block;
  width: 200px;
  height: 100%;
}
.rangementRack .big-b:before, .rangementRack .big-b:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #5c94ad;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
            -4px -4px 6px 0 rgba(116, 125, 136, .2), 
  inset -4px -4px 6px 0 rgba(255,255,255,.5),
  inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.rangementRack .big-b:before {
  height: 0%;
  width: 2px;
}
.rangementRack .big-b:after {
  width: 0%;
  height: 2px;
}
.rangementRack .big-b:hover:before {
  height: 100%;
}
.rangementRack .big-b:hover:after {
  width: 100%;
}
.rangementRack .big-b:hover {
  background: transparent;
}
.rangementRack .big-b span:hover {
  color: #5c94ad;
}
.rangementRack .big-b span:before,
.rangementRack .big-b span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #5c94ad;
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
            -4px -4px 6px 0 rgba(116, 125, 136, .2), 
  inset -4px -4px 6px 0 rgba(255,255,255,.5),
  inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.rangementRack .big-b span:before {
  width: 2px;
  height: 0%;
}
.rangementRack .big-b span:after {
  height: 2px;
  width: 0%;
}
.rangementRack .big-b span:hover:before {
  height: 100%;
}
.rangementRack .big-b span:hover:after {
  width: 100%;
}
.rangementRack td button {
  background-color: white;
  border-radius: 2px;
  border: none;
  transition: all 0.3s;
}
.rangementRack td button:hover {
  cursor: pointer;
  background-color: #ac3333;
  color: white;
  transform: scale(1.05);
  transition: all 0.3s;
}
.rangementRack .del {
  background-image: linear-gradient(340deg, #f0ecfc 0%, #ac3333 24%);
}
.rangementRack .del:before, .rangementRack .del:after {
  background: #ac3333;
}
.rangementRack .del span:hover {
  color: #ac3333;
}
.rangementRack .del span:before,
.rangementRack .del span:after {
  background: #ac3333;
}
.rangementRack .big-b.save {
  margin: auto;
}
.rangementRack .allbtns {
  display: flex;
  justify-content: center;
}
.rangementRack #configContainer > div {
  width: 40%;
  margin: auto;
}
.rangementRack #configContainer > div div {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}
.rangementRack .highlight {
  background-color: lightgreen !important;
  transition: background-color 0.5s ease-out;
}
.rangementRack #searchContainer {
  margin: auto;
}
.rangementRack #searchContainer input {
  font-size: 1em;
  margin: 0;
  padding: 2px;
  height: 20px;
  width: 200px;
  border-radius: 4px;
}
.rangementRack #searchContainer button {
  background-color: #5c94ad;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.542);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.rangementRack #searchContainer button:hover {
  background-color: #488794;
}
.rangementRack footer p {
  text-align: center;
  font-size: 0.8em;
}

.storage .storagePack {
  display: flex;
}
.storage .storagePack p {
  margin-left: 20px;
}
.storage .identifiant {
  background-color: white;
  border-radius: 16px;
}
.storage #stockList .past-item {
  background-color: #f0f0f0;
  /* Couleur de fond grisée */
  opacity: 0.6;
  /* Réduire l'opacité */
}
.storage #stockList .is-today {
  background-color: rgba(26, 135, 26, 0.46);
}
.storage #stockForm > div {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.storage #stockForm > div input {
  font-size: 1.1em;
}
.storage #stockForm > div:nth-child(1) label {
  margin: 0;
}
.storage #stockForm > div:nth-child(1) input {
  margin: 0;
  padding: 2px;
  height: 20px;
  width: 200px;
}
.storage #stockForm .formStorage > div {
  flex-direction: column;
}
.storage #stockForm .formStorage > div > div {
  width: 100%;
  justify-content: space-between;
}
.storage #stockForm > div:nth-child(3) div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.storage #stockForm > div:nth-child(3) input {
  text-align: center;
  margin: 0 10px;
  width: 50px;
  height: 30px;
}
.storage #stockForm > div:nth-child(3) input[type=number] {
  -moz-appearance: textfield;
}
.storage #stockForm > div:nth-child(3) input::-webkit-outer-spin-button,
.storage #stockForm > div:nth-child(3) input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.storage #stockForm > div:nth-child(3) label {
  margin: 0;
}
.storage #stockForm textarea {
  width: 350px;
  height: 60px;
  text-align: center;
  margin: auto;
  margin-bottom: 16px;
}
.storage .formStorage {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin: 0;
}
.storage .formStorage tbody td {
  font-size: 1em;
  border: none;
}
.storage .formStorage tbody td label {
  margin: 0;
  font-weight: bold;
}
.storage .formStorage tbody td input {
  text-align: center;
  width: 50px;
  height: 30px;
  font-size: 1.1em;
  margin-bottom: 0;
}
.storage .formStorage tbody td input[type=number] {
  -moz-appearance: textfield;
}
.storage .formStorage tbody td input[type=number]::-webkit-outer-spin-button, .storage .formStorage tbody td input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.storage #stockFormContainer,
.storage #stockListContainer {
  margin: 20px auto;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.storage h1,
.storage h2 {
  text-align: center;
}
.storage form label,
.storage form input,
.storage form button,
.storage form textarea {
  display: block;
  margin-bottom: 15px;
}
.storage form button {
  width: 30%;
  margin: auto;
}
.storage button {
  background-color: #5c94ad;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.storage button:hover {
  background-color: #488794;
}
.storage .stock-item {
  background-color: #e9f7f9;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #d6e4e7;
  border-radius: 5px;
  position: relative;
}
.storage .stock-item button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}
.storage .stock-item button:hover {
  background-color: #e60000;
}/*# sourceMappingURL=styles.css.map */