@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.btn {
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.btn-all {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: white;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
}
.btn-all .stop {
  width: 60px;
  height: 60px;
  background: red;
  border-radius: 100%;
  position: relative;
}
.btn-all .stop:after {
  width: 40px;
  height: 3px;
  background: white;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  content: "";
  margin: auto;
}

.btn-primary {
  background: #ff9044;
  border: 1px solid #ff9044;
  color: white;
}
.btn-primary:hover {
  border: 1px solid #ff9044;
  background: none;
  color: #ff9044;
  font-weight: bold !important;
}

.btn-secondary {
  border: 1px solid #ff9044;
  color: #ff9044;
}
.btn-secondary:hover {
  background: #ff9044;
  color: white;
}

.btn-danger {
  border: 1px solid #ca0909;
  background: #ca0909;
  color: white;
}
.btn-danger:hover {
  background: none;
  color: #ca0909;
  border: 1px solid #ca0909;
}

.btn-action {
  border: 1px solid black;
  color: black;
}

.btn-special {
  border: 1px solid #ff9044;
  color: #ff9044;
}
.btn-special:hover {
  color: white;
  background: #ff9044;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: space-between;
}
.container .sidebar-left {
  width: calc(25% - 40px);
  padding: 20px;
  background: #faf4ed;
  border-right: 1px solid #eae3d9;
  max-height: 100vh;
  overflow: auto;
}
.container .sidebar-right {
  width: calc(20% - 40px);
  padding: 20px;
  background: #faf4ed;
  border-left: 1px solid #eae3d9;
  max-height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.container .center-content {
  flex: 1;
  display: flex;
}

h2 {
  font-size: 24px;
}

#nos-recettes ul {
  margin: 0;
  padding: 0;
}
#nos-recettes ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 10vh;
  width: 100%;
  background: url("../img/img-recettes-ee205379d51f85c4a02032c8c49f06f2.png");
  background-size: cover;
  background-position: center center;
  margin-top: 20px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nos-recettes ul li:hover {
  cursor: pointer;
}
#nos-recettes ul li:hover div {
  font-weight: bold;
}
#nos-recettes ul li:hover:before {
  opacity: 0.2;
  background: #ff9044;
}
#nos-recettes ul li:before {
  background: black;
  opacity: 0.6;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  z-index: 1;
}
#nos-recettes ul li div {
  color: white;
  position: relative;
  z-index: 2;
}

#stock-restant .infos-stock {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
#stock-restant .infos-stock .infos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#stock-restant .infos-stock .infos h3 {
  color: #b4b2b2;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
#stock-restant .infos-stock .infos span {
  color: #b4b2b2;
}
#stock-restant .infos-stock .progression-stock {
  background: #b4b2b2;
  width: 100%;
  height: 15px;
  border-radius: 20px;
  position: relative;
  margin-top: 5px;
}
#stock-restant .infos-stock .progression-stock .progression {
  background: rgb(254, 183, 81);
  background: linear-gradient(90deg, rgb(254, 183, 81) 0%, rgb(255, 115, 59) 100%);
  width: 50%;
  position: absolute;
  left: 0;
  right: 50%;
  top: 0;
  bottom: 0;
  border-radius: 20px;
}
#stock-restant a {
  margin-top: auto;
}

#accueil {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: auto;
}
#accueil .content {
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#accueil h4 {
  font-size: 24px;
}
#accueil .ou {
  padding: 15px;
  width: fit-content;
  border-top: 1px solid #b4b2b2;
  border-bottom: 1px solid #b4b2b2;
  margin: 15px 15px 30px 15px;
  font-size: 30px;
}
#accueil .btn {
  padding: 15px;
  font-size: 24px;
  font-weight: normal;
}

#recette-par-qr {
  padding: 20px;
  width: 100%;
}
#recette-par-qr .form-group {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  align-items: center;
}
#recette-par-qr .form-group input[type=checkbox] {
  height: 50px;
  width: 50px;
}
#recette-par-qr h2 {
  text-align: center;
}
#recette-par-qr p {
  text-align: center;
}
#recette-par-qr p.total {
  text-align: right;
  font-size: 24px;
}
#recette-par-qr .btn {
  display: block;
  margin: auto;
  margin-top: 30px;
}
#recette-par-qr .btn-primary {
  width: 550px;
  font-size: 35px;
  font-weight: lighter;
}
#recette-par-qr .btn-danger {
  width: 150px;
}
#recette-par-qr ul.clavier-quantite {
  display: flex;
  margin: 0;
  padding: 0;
}
#recette-par-qr ul.clavier-quantite li {
  text-align: center;
  border: 1px solid #ff9044;
  padding: 17px 0;
  font-size: 25px;
  color: #ff9044;
  border-radius: 15px;
  flex: 1;
  margin: 5px;
  list-style: none;
}
#recette-par-qr ul.clavier-quantite li.delete {
  border: 1px solid #ca0909 !important;
  color: #ca0909;
}
#recette-par-qr ul.clavier-quantite li:hover {
  background: #ff9044;
  color: white;
  cursor: pointer;
}

.selecteur {
  width: 100%;
  height: 40px;
  position: relative;
  margin: 10px 0 10px 0;
}
.selecteur .curseur {
  position: absolute;
  height: 15px;
  width: 15px;
  top: 7px;
  cursor: pointer;
  background: white;
  border: 5px solid #ff9044;
  left: -12.5px;
  border-radius: 100%;
  z-index: 100;
}
.selecteur .barre {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  height: 1px;
  top: 19px;
  background: #ff9044;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.selecteur .barre li {
  list-style: none;
  height: 25px;
  border-left: 1px solid #ff9044;
}
.selecteur .barre li:nth-child(2n+0) {
  height: 35px;
}

#modal-configurer {
  display: none;
}

.modal-bg {
  position: fixed;
  top: 0;
  z-index: 100000;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  display: none;
}
.modal-bg .modal-qr-code {
  position: absolute;
  top: 30px;
}
.modal-bg .modal-qr-code img {
  width: 256px;
  height: 256px;
}
.modal-bg .modal-progression-commande {
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 650px;
  padding: 40px;
  font-weight: bold;
}
.modal-bg .modal-progression-commande .btn-secondary {
  margin-bottom: 20px;
  font-size: 20px;
}
.modal-bg .modal-progression-commande h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.modal-bg .modal-progression-commande h4, .modal-bg .modal-progression-commande p {
  margin: 0;
}
.modal-bg .modal-progression-commande .alerte {
  padding: 10px;
  background: #a9ffa1;
  border: none;
  text-transform: unset;
  margin-bottom: 20px;
}
.modal-bg .modal-progression-commande ul.progression {
  padding: 0;
  right: 0;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  width: calc(100% - 40px);
  position: relative;
  margin: 30px 0;
}
.modal-bg .modal-progression-commande ul.progression li {
  list-style: none;
  margin: 10px;
  position: relative;
  flex: 1;
  text-align: center;
}
.modal-bg .modal-progression-commande ul.progression li div {
  position: absolute;
  left: 0;
  height: 5px;
  background: orange;
  top: -10px;
  width: 0%;
}
.modal-bg .modal-progression-commande ul.progression li:after {
  right: -20px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  content: "";
  position: absolute;
  background: white;
  border: 1px solid #b4b2b2;
  top: -20px;
  z-index: 5;
}
.modal-bg .modal-progression-commande ul.progression li:before {
  position: absolute;
  left: -1px;
  right: -10px;
  top: -10px;
  z-index: 0;
  height: 5px;
  background: #b4b2b2;
  content: "";
}
.modal-bg .modal-progression-commande ul.progression li:first-child {
  flex: 0;
  width: 5px;
  left: 0;
  position: absolute;
}
.modal-bg .modal-progression-commande ul.progression li:first-child:before {
  height: 0;
}
.modal-bg .modal-progression-commande ul.progression li:first-child:after {
  left: -10px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  content: "";
  position: absolute;
  background: white;
  border: 1px solid #b4b2b2;
  top: -15px;
  z-index: 5;
}
.modal-bg .modal-progression-commande ul.progression li.finish:after {
  background: #a9ffa1;
  border: 1px solid #a9ffa1;
  padding-top: 5px;
  height: 20px;
  content: "✓";
}
.modal-bg .modal-progression-commande ul.progression li.finish:before {
  background: #a9ffa1;
}
.modal-bg .modal-envoyer-mail {
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  padding-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}
.modal-bg .modal-envoyer-mail input {
  text-indent: 5px;
  width: 300px;
}
.modal-bg .modal-envoyer-mail label {
  display: block;
  text-align: center;
  margin: 20px;
}
.modal-bg .close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: 3px solid #ff9044;
  color: #ff9044;
  text-decoration: none;
  background: white;
}
.modal-bg .close:hover {
  background: white;
}
.modal-bg .close:after {
  content: "X";
  position: absolute;
  left: 11px;
  top: 7px;
  font-family: Arial;
  font-weight: lighter;
  font-size: 20px;
}
.modal-bg .modal-secure {
  width: 650px;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
.modal-bg .modal-configurer {
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 50px;
  position: relative;
}
.modal-bg .modal-configurer .close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: 3px solid #ff9044;
  color: #ff9044;
  text-decoration: none;
  background: white;
}
.modal-bg .modal-configurer .close:hover {
  background: white;
}
.modal-bg .modal-configurer .close:after {
  content: "X";
  position: absolute;
  left: 11px;
  top: 7px;
  font-family: Arial;
  font-weight: lighter;
  font-size: 20px;
}
.modal-bg .secure-result {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.modal-bg .secure-result li {
  list-style: none;
  text-align: center;
  background: black;
  color: white;
  display: flex;
  margin: 20px;
  justify-content: center;
  align-items: center;
  font-size: 47px;
  padding-top: 10px;
  border-radius: 20px;
  width: 100px;
  height: 80px;
}
.modal-bg .return {
  border: 2px solid #ff9044;
  padding: 10px;
  border-radius: 20px;
  color: #ff9044;
  margin-left: auto;
  margin-right: 20px;
  width: 76px;
  text-align: center;
}
.modal-bg .keyboard {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal-bg .keyboard .ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-bg .keyboard .ligne a {
  margin: auto;
  border: 2px solid #ff9044;
  flex: 1;
  text-align: center;
  height: 95px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  margin: 20px;
  border-radius: 20px;
  text-decoration: none;
}

#qr-code img {
  width: 80%;
  height: auto;
}

#preview-livraison, #qr-code {
  width: 100%;
  position: absolute;
  text-align: center;
  background: #eae3d9;
  bottom: 0;
  right: 0;
  left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
#preview-livraison .contour-verre, #qr-code .contour-verre {
  background: #faf4ed;
  width: 200px;
  height: 30vh;
  z-index: 10;
  position: relative;
  margin: auto;
}
#preview-livraison #verre, #qr-code #verre {
  width: 100%;
  height: 100%;
  background: white;
  position: relative;
  overflow: hidden;
}
#preview-livraison #verre:after, #qr-code #verre:after {
  border-left: 150px solid #eae3d9;
  border-top: 100vh solid transparent;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
#preview-livraison #verre:before, #qr-code #verre:before {
  border-right: 150px solid #eae3d9;
  border-top: 100vh solid transparent;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
#preview-livraison #verre .contenu, #qr-code #verre .contenu {
  width: 200%;
  margin-left: -50%;
  height: 30%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  z-index: 1;
  margin-top: -5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preview-livraison #verre .contenu:nth-of-type(1), #qr-code #verre .contenu:nth-of-type(1) {
  background: #ff9044;
  z-index: 5;
  position: relative;
  height: 38%;
}
#preview-livraison #verre .contenu:nth-of-type(2), #qr-code #verre .contenu:nth-of-type(2) {
  background: #f4bb64;
  z-index: 4;
  position: relative;
  height: 38%;
}
#preview-livraison #verre .contenu:nth-of-type(3), #qr-code #verre .contenu:nth-of-type(3) {
  background: #f8c888;
  z-index: 3;
  position: relative;
  height: 38%;
}
#preview-livraison #verre .contenu:nth-of-type(4), #qr-code #verre .contenu:nth-of-type(4) {
  background: #f6daaf;
  z-index: 3;
  position: relative;
  height: 38%;
}
#preview-livraison #verre .contenu:nth-of-type(5), #qr-code #verre .contenu:nth-of-type(5) {
  background: #fde8c6;
  z-index: 3;
  position: relative;
  height: 38%;
}
#preview-livraison #verre .contenu:nth-of-type(6), #qr-code #verre .contenu:nth-of-type(6) {
  background: white;
  z-index: 3;
  position: relative;
  height: 38%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.header a {
  color: #ff9044;
}

.panel-admin {
  width: 100%;
  padding: 10px 20px;
  background: url("../img/fond-d93318b8a0d88a80ef1d04bb64d37d4e.png");
}
.panel-admin .contenu-administration {
  background: white;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #b4b2b2;
}

#accueil-administration .panels {
  display: flex;
  flex-wrap: wrap;
}
#accueil-administration .panels div {
  border: 2px solid #9b9a9a;
  padding: 20px 40px;
  text-align: center;
  font-size: 12px;
  width: 150px;
  border-radius: 20px;
  margin: 40px auto auto auto;
}
#accueil-administration .panels div img {
  height: 80px;
  width: auto;
}

#recette-administration table {
  margin-top: 20px;
  width: 100%;
}
#recette-administration table td {
  padding: 10px 5px;
  min-width: 50px;
}
#recette-administration table thead tr {
  position: relative;
}
#recette-administration table thead tr:nth-of-type(1):after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  background: #b4b2b2;
  height: 2px;
  background: black;
  bottom: -5px;
}
#recette-administration table tbody tr {
  position: relative;
}
#recette-administration table tbody tr:after {
  position: absolute;
  bottom: 0;
  height: 1px;
  left: 0;
  right: 0;
  content: "";
  background: #b4b2b2;
}
#recette-administration table tbody tr:last-child:after {
  background: none !important;
}

.alerte {
  display: block;
  margin: 0 20px;
  padding: 20px;
  border: 1px solid #ff9044;
  border-radius: 15px;
}

.text-center {
  text-align: center;
}

.position-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.search {
  position: relative;
  margin-top: 15px;
}
.search img {
  position: absolute;
  left: 10px;
  top: 6px;
  opacity: 0.5;
  transition: all 500ms;
}
.search input {
  text-indent: 35px;
  border-radius: 15px;
  border: 1px solid #eae3d9;
  height: 35px;
  width: 45px;
  transition: all 500ms;
}
.search input:focus {
  width: 150px;
  border: 1px solid black;
}
.search:hover input {
  width: 150px;
  border: 1px solid black;
}
.search:hover img {
  opacity: 1;
}

#ajouter-une-recette .form-group, #ajouter-un-aliment .form-group, #generer-un-qr .form-group, #gestion-stock .form-group {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  align-items: center;
}
#ajouter-une-recette .egal, #ajouter-un-aliment .egal, #generer-un-qr .egal, #gestion-stock .egal {
  margin: 0 15px;
}
#ajouter-une-recette .quantites, #ajouter-un-aliment .quantites, #generer-un-qr .quantites, #gestion-stock .quantites {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
#ajouter-une-recette label, #ajouter-un-aliment label, #generer-un-qr label, #gestion-stock label {
  width: 250px;
  display: inline-block;
}
#ajouter-une-recette input, #ajouter-une-recette textarea, #ajouter-un-aliment input, #ajouter-un-aliment textarea, #generer-un-qr input, #generer-un-qr textarea, #gestion-stock input, #gestion-stock textarea {
  flex: 1;
  text-indent: 5px !important;
}
#ajouter-une-recette .input1, #ajouter-un-aliment .input1, #generer-un-qr .input1, #gestion-stock .input1 {
  display: flex;
  align-items: center;
}
#ajouter-une-recette .input2, #ajouter-un-aliment .input2, #generer-un-qr .input2, #gestion-stock .input2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ajouter-une-recette .input2 label, #ajouter-un-aliment .input2 label, #generer-un-qr .input2 label, #gestion-stock .input2 label {
  text-align: center;
}
#ajouter-une-recette .input1, #ajouter-une-recette .input2, #ajouter-un-aliment .input1, #ajouter-un-aliment .input2, #generer-un-qr .input1, #generer-un-qr .input2, #gestion-stock .input1, #gestion-stock .input2 {
  flex: 1;
}
#ajouter-une-recette .input1 input, #ajouter-une-recette .input2 input, #ajouter-un-aliment .input1 input, #ajouter-un-aliment .input2 input, #generer-un-qr .input1 input, #generer-un-qr .input2 input, #gestion-stock .input1 input, #gestion-stock .input2 input {
  flex: 1;
  max-width: 50px;
}
#ajouter-une-recette .tgl-btn, #ajouter-un-aliment .tgl-btn, #generer-un-qr .tgl-btn, #gestion-stock .tgl-btn {
  width: 4em;
}
#ajouter-une-recette .double-input, #ajouter-un-aliment .double-input, #generer-un-qr .double-input, #gestion-stock .double-input {
  display: flex;
  flex: 1;
  margin: 0 0 10px 0;
}
#ajouter-une-recette .double-input:last-child, #ajouter-un-aliment .double-input:last-child, #generer-un-qr .double-input:last-child, #gestion-stock .double-input:last-child {
  margin-bottom: 0;
}
#ajouter-une-recette .double-input input[type=text], #ajouter-un-aliment .double-input input[type=text], #generer-un-qr .double-input input[type=text], #gestion-stock .double-input input[type=text] {
  max-width: 50px;
  position: relative;
  margin: 0 0 0 10px;
}
#ajouter-une-recette .double-input .select, #ajouter-un-aliment .double-input .select, #generer-un-qr .double-input .select, #gestion-stock .double-input .select {
  flex: 1;
}
#ajouter-une-recette .double-input a, #ajouter-un-aliment .double-input a, #generer-un-qr .double-input a, #gestion-stock .double-input a {
  margin-left: 10px;
}
#ajouter-une-recette .form-ingredient, #ajouter-un-aliment .form-ingredient, #generer-un-qr .form-ingredient, #gestion-stock .form-ingredient {
  flex: 1;
  display: flex;
}
#ajouter-une-recette .form-ingredient a, #ajouter-un-aliment .form-ingredient a, #generer-un-qr .form-ingredient a, #gestion-stock .form-ingredient a {
  color: #ff9044;
  float: right;
}
#ajouter-une-recette .no-space, #ajouter-un-aliment .no-space, #generer-un-qr .no-space, #gestion-stock .no-space {
  justify-content: normal;
}

input[type=text], input, select {
  border: 1px solid #eae3d9;
  text-indent: 35px;
  border-radius: 15px;
  height: 35px;
  transition: all 500ms;
  padding: 0;
}
input[type=text]:hover, input[type=text]:active, input[type=text]:focus, input:hover, input:active, input:focus, select:hover, select:active, select:focus {
  border-color: #ff9044;
  outline: none !important;
}

select {
  text-indent: 5px;
  flex: 1;
  background: white;
}

textarea {
  border: 1px solid #eae3d9;
  text-indent: 35px;
  border-radius: 15px;
  height: 100px;
  margin: 0;
  padding: 0;
}
textarea:hover, textarea:active, textarea:focus {
  border-color: #ff9044;
  outline: none !important;
}

.ajouter {
  width: 35px;
  height: 35px;
  background: white;
  border: 1px solid black;
  text-decoration: none;
  display: flex;
  border-radius: 100%;
  position: relative;
}
.ajouter:after {
  position: absolute;
  content: "+";
  font-size: 34px;
  top: -6px;
  left: 6px;
  color: black;
  font-weight: 0;
}
.ajouter:hover {
  background: black;
}
.ajouter:hover:after {
  color: white;
}

.supprimer {
  width: 35px;
  height: 35px;
  background: #de6f6f;
  border: 1px solid #de6f6f;
  text-decoration: none;
  display: flex;
  border-radius: 100%;
  position: relative;
}
.supprimer:after {
  position: absolute;
  content: "-";
  font-size: 34px;
  top: -6px;
  left: 10px;
  color: white;
  font-weight: lighter;
}
.supprimer:hover {
  background: white !important;
}
.supprimer:hover:after {
  color: #de6f6f;
}

.ajouter-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ajouter-flex a {
  margin-left: 10px;
}

.checkbox-wrapper-6 .tgl {
  display: none;
}

.checkbox-wrapper-6 .tgl,
.checkbox-wrapper-6 .tgl:after,
.checkbox-wrapper-6 .tgl:before,
.checkbox-wrapper-6 .tgl *,
.checkbox-wrapper-6 .tgl *:after,
.checkbox-wrapper-6 .tgl *:before,
.checkbox-wrapper-6 .tgl + .tgl-btn {
  box-sizing: border-box;
}

.checkbox-wrapper-6 .tgl::-moz-selection,
.checkbox-wrapper-6 .tgl:after::-moz-selection,
.checkbox-wrapper-6 .tgl:before::-moz-selection,
.checkbox-wrapper-6 .tgl *::-moz-selection,
.checkbox-wrapper-6 .tgl *:after::-moz-selection,
.checkbox-wrapper-6 .tgl *:before::-moz-selection,
.checkbox-wrapper-6 .tgl + .tgl-btn::-moz-selection,
.checkbox-wrapper-6 .tgl::selection,
.checkbox-wrapper-6 .tgl:after::selection,
.checkbox-wrapper-6 .tgl:before::selection,
.checkbox-wrapper-6 .tgl *::selection,
.checkbox-wrapper-6 .tgl *:after::selection,
.checkbox-wrapper-6 .tgl *:before::selection,
.checkbox-wrapper-6 .tgl + .tgl-btn::selection {
  background: none;
}

.checkbox-wrapper-6 .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-wrapper-6 .tgl + .tgl-btn:after,
.checkbox-wrapper-6 .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.checkbox-wrapper-6 .tgl + .tgl-btn:after {
  left: 0;
}

.checkbox-wrapper-6 .tgl + .tgl-btn:before {
  display: none;
}

.checkbox-wrapper-6 .tgl:checked + .tgl-btn:after {
  left: 50%;
}

.checkbox-wrapper-6 .tgl-light + .tgl-btn {
  background: #f0f0f0;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
}

.checkbox-wrapper-6 .tgl-light + .tgl-btn:after {
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease;
}

.checkbox-wrapper-6 .tgl-light:checked + .tgl-btn {
  background: #9FD6AE;
}

#gestion-stock .stock {
  margin: 15px 15px 50px 15px;
  display: flex;
  justify-content: space-between;
}
#gestion-stock .stock h4 {
  margin-bottom: 20px;
}
#gestion-stock .stock .btn {
  margin-right: 10px;
}
#gestion-stock .vidage-en-cours {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(250, 245, 238, 0.87);
  border-radius: 20px;
  z-index: 100;
  width: 80%;
  margin: auto;
  height: 70vh;
}
#gestion-stock .vidage-en-cours .preview {
  height: 200px;
  width: 500px;
}
#gestion-stock .vidage-en-cours .preview:after {
  width: 500px;
}
#gestion-stock .vidage-en-cours .preview:before {
  width: 500px;
}
#gestion-stock .vidage-en-cours .preview .niveau:after {
  width: 498px;
}
#gestion-stock .vidage-en-cours .preview .niveau-1 {
  height: 1% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-1:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-1:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-2 {
  height: 2% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-2:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-2:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-3 {
  height: 3% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-3:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-3:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-4 {
  height: 4% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-4:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-4:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-5 {
  height: 5% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-5:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-5:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-6 {
  height: 6% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-6:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-6:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-7 {
  height: 7% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-7:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-7:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-8 {
  height: 8% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-8:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-8:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-9 {
  height: 9% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-9:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-9:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-10 {
  height: 10% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-10:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-10:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-11 {
  height: 11% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-11:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-11:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-12 {
  height: 12% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-12:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-12:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-13 {
  height: 13% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-13:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-13:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-14 {
  height: 14% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-14:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-14:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-15 {
  height: 15% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-15:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-15:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-16 {
  height: 16% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-16:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-16:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-17 {
  height: 17% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-17:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-17:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-18 {
  height: 18% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-18:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-18:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-19 {
  height: 19% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-19:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-19:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-20 {
  height: 20% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-20:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-20:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-21 {
  height: 21% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-21:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-21:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-22 {
  height: 22% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-22:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-22:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-23 {
  height: 23% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-23:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-23:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-24 {
  height: 24% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-24:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-24:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-25 {
  height: 25% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-25:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-25:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-26 {
  height: 26% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-26:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-26:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-27 {
  height: 27% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-27:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-27:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-28 {
  height: 28% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-28:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-28:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-29 {
  height: 29% !important;
  background: #c95858;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-29:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-29:after {
  background: #ca0909;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-30 {
  height: 30% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-30:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-30:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-31 {
  height: 31% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-31:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-31:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-32 {
  height: 32% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-32:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-32:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-33 {
  height: 33% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-33:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-33:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-34 {
  height: 34% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-34:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-34:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-35 {
  height: 35% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-35:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-35:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-36 {
  height: 36% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-36:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-36:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-37 {
  height: 37% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-37:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-37:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-38 {
  height: 38% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-38:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-38:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-39 {
  height: 39% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-39:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-39:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-40 {
  height: 40% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-40:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-40:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-41 {
  height: 41% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-41:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-41:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-42 {
  height: 42% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-42:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-42:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-43 {
  height: 43% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-43:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-43:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-44 {
  height: 44% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-44:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-44:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-45 {
  height: 45% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-45:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-45:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-46 {
  height: 46% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-46:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-46:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-47 {
  height: 47% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-47:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-47:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-48 {
  height: 48% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-48:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-48:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-49 {
  height: 49% !important;
  background: #ff9369;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-49:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-49:after {
  background: #ff743b;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-50 {
  height: 50% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-50:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-50:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-51 {
  height: 51% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-51:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-51:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-52 {
  height: 52% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-52:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-52:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-53 {
  height: 53% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-53:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-53:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-54 {
  height: 54% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-54:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-54:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-55 {
  height: 55% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-55:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-55:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-56 {
  height: 56% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-56:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-56:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-57 {
  height: 57% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-57:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-57:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-58 {
  height: 58% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-58:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-58:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-59 {
  height: 59% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-59:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-59:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-60 {
  height: 60% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-60:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-60:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-61 {
  height: 61% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-61:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-61:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-62 {
  height: 62% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-62:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-62:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-63 {
  height: 63% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-63:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-63:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-64 {
  height: 64% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-64:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-64:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-65 {
  height: 65% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-65:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-65:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-66 {
  height: 66% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-66:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-66:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-67 {
  height: 67% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-67:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-67:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-68 {
  height: 68% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-68:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-68:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-69 {
  height: 69% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-69:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-69:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-70 {
  height: 70% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-70:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-70:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-71 {
  height: 71% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-71:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-71:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-72 {
  height: 72% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-72:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-72:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-73 {
  height: 73% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-73:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-73:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-74 {
  height: 74% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-74:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-74:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-75 {
  height: 75% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-75:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-75:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-76 {
  height: 76% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-76:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-76:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-77 {
  height: 77% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-77:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-77:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-78 {
  height: 78% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-78:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-78:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-79 {
  height: 79% !important;
  background: #fddc83;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-79:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-79:after {
  background: #ffc765;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-80 {
  height: 80% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-80:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-80:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-81 {
  height: 81% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-81:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-81:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-82 {
  height: 82% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-82:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-82:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-83 {
  height: 83% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-83:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-83:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-84 {
  height: 84% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-84:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-84:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-85 {
  height: 85% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-85:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-85:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-86 {
  height: 86% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-86:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-86:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-87 {
  height: 87% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-87:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-87:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-88 {
  height: 88% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-88:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-88:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-89 {
  height: 89% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-89:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-89:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-90 {
  height: 90% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-90:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-90:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-91 {
  height: 91% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-91:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-91:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-92 {
  height: 92% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-92:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-92:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-93 {
  height: 93% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-93:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-93:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-94 {
  height: 94% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-94:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-94:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-95 {
  height: 95% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-95:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-95:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-96 {
  height: 96% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-96:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-96:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-97 {
  height: 97% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-97:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-97:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-98 {
  height: 98% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-98:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-98:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-99 {
  height: 99% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-99:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-99:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-100 {
  height: 100% !important;
  background: #98ebbd;
  z-index: 1;
}
#gestion-stock .vidage-en-cours .preview .niveau-100:before {
  position: absolute;
  bottom: -15px;
  width: 500px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
#gestion-stock .vidage-en-cours .preview .niveau-100:after {
  background: #71eba8;
  z-index: 1;
}
#gestion-stock .vidage-en-cours h4 {
  margin-bottom: 30px;
  font-size: 30px;
}

.big-plateaux .quart, .big-plateaux .demi, .big-plateaux .huitieme {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: bold;
}
.big-plateaux .quart span, .big-plateaux .demi span, .big-plateaux .huitieme span {
  padding: 5px 7px;
  background: white;
  border-radius: 5px;
  border: 1px solid grey;
}
.big-plateaux .rempli {
  z-index: -1;
}
.big-plateaux .preview-plateau {
  height: 55vh !important;
  padding-left: 55vh !important;
}
.big-plateaux .zone-est:after {
  width: 100px !important;
  right: -101px !important;
}
.big-plateaux .zone-nord:after {
  height: 40px !important;
  top: -41px !important;
}
.big-plateaux .zone-ouest:after {
  width: 40px !important;
  left: -41px !important;
}

.plateaux, .big-plateaux {
  display: flex;
}
.plateaux a, .big-plateaux a {
  text-decoration: none;
  color: black;
  font-weight: normal;
}
.plateaux .preview-plateau, .big-plateaux .preview-plateau {
  margin: auto;
  width: 19%;
  height: 0;
  padding-bottom: 19%;
  border-radius: 100%;
  background: lightgrey;
  position: relative;
}
.plateaux .preview-plateau p, .big-plateaux .preview-plateau p {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.plateaux .preview-plateau:before, .big-plateaux .preview-plateau:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  height: 0;
  padding-bottom: 25%;
  background: rgba(86, 86, 86, 0.27);
  margin: auto;
  content: "";
  position: absolute;
}
.plateaux .preview-plateau:after, .big-plateaux .preview-plateau:after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10%;
  height: 0;
  padding-bottom: 10%;
  background: white;
  margin: auto;
  content: "";
  position: absolute;
  border-radius: 100%;
}
.plateaux .preview-plateau .zone-est, .big-plateaux .preview-plateau .zone-est {
  position: absolute;
  right: 4%;
  width: 25%;
  height: 0;
  background: white;
  padding-bottom: 39%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.plateaux .preview-plateau .zone-est .demi, .big-plateaux .preview-plateau .zone-est .demi {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
}
.plateaux .preview-plateau .zone-est .quart, .big-plateaux .preview-plateau .zone-est .quart {
  position: absolute;
  width: 100%;
  left: 0;
  border-bottom: 1px solid #b4b2b2;
  top: 0;
  right: 0;
  height: 50%;
}
.plateaux .preview-plateau .zone-est .quart:nth-of-type(2), .big-plateaux .preview-plateau .zone-est .quart:nth-of-type(2) {
  top: 50%;
}
.plateaux .preview-plateau .zone-est .huitieme, .big-plateaux .preview-plateau .zone-est .huitieme {
  position: absolute;
  height: 33%;
  right: 0;
  border-bottom: 1px solid #b4b2b2;
  top: 0;
  left: 0;
  bottom: 0;
}
.plateaux .preview-plateau .zone-est .huitieme:nth-of-type(2), .big-plateaux .preview-plateau .zone-est .huitieme:nth-of-type(2) {
  top: 33%;
}
.plateaux .preview-plateau .zone-est .huitieme:nth-of-type(3), .big-plateaux .preview-plateau .zone-est .huitieme:nth-of-type(3) {
  top: 67%;
  border-bottom: none;
}
.plateaux .preview-plateau .zone-est:after, .big-plateaux .preview-plateau .zone-est:after {
  top: 0;
  bottom: 0;
  width: 20px;
  background: white;
  content: "";
  position: absolute;
  right: -21px;
}
.plateaux .preview-plateau .zone-ouest, .big-plateaux .preview-plateau .zone-ouest {
  position: absolute;
  left: 4%;
  width: 25%;
  height: 0;
  background: white;
  padding-bottom: 39%;
  top: 0;
  bottom: 0;
  border-left: 1px solid #b4b2b2;
  margin: auto;
}
.plateaux .preview-plateau .zone-ouest:after, .big-plateaux .preview-plateau .zone-ouest:after {
  top: 0;
  bottom: 0;
  width: 20px;
  background: white;
  content: "";
  position: absolute;
  left: -21px;
}
.plateaux .preview-plateau .zone-ouest .quart, .big-plateaux .preview-plateau .zone-ouest .quart {
  position: absolute;
  width: 100%;
  left: 0;
  border-bottom: 1px solid #b4b2b2;
  top: 0;
  right: 0;
  height: 50%;
}
.plateaux .preview-plateau .zone-ouest .quart:nth-of-type(2), .big-plateaux .preview-plateau .zone-ouest .quart:nth-of-type(2) {
  top: 50%;
}
.plateaux .preview-plateau .zone-ouest .huitieme, .big-plateaux .preview-plateau .zone-ouest .huitieme {
  position: absolute;
  height: 33%;
  right: 0;
  border-bottom: 1px solid #b4b2b2;
  top: 0;
  left: 0;
  bottom: 0;
}
.plateaux .preview-plateau .zone-ouest .huitieme:nth-of-type(2), .big-plateaux .preview-plateau .zone-ouest .huitieme:nth-of-type(2) {
  top: 33%;
}
.plateaux .preview-plateau .zone-ouest .huitieme:nth-of-type(3), .big-plateaux .preview-plateau .zone-ouest .huitieme:nth-of-type(3) {
  top: 67%;
  border-bottom: none;
}
.plateaux .preview-plateau .zone-ouest .demi, .big-plateaux .preview-plateau .zone-ouest .demi {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
}
.plateaux .preview-plateau .zone-nord, .big-plateaux .preview-plateau .zone-nord {
  position: absolute;
  left: 0;
  right: 0;
  width: 39%;
  height: 0;
  border-top: 1px solid #b4b2b2;
  background: white;
  padding-bottom: 25%;
  top: 4%;
  margin: auto;
}
.plateaux .preview-plateau .zone-nord:after, .big-plateaux .preview-plateau .zone-nord:after {
  left: 0;
  right: 0;
  height: 20px;
  background: white;
  content: "";
  position: absolute;
  top: -21px;
}
.plateaux .preview-plateau .zone-nord .demi, .big-plateaux .preview-plateau .zone-nord .demi {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.plateaux .preview-plateau .zone-nord .quart, .big-plateaux .preview-plateau .zone-nord .quart {
  position: absolute;
  width: 50%;
  left: 0;
  border-right: 1px solid #b4b2b2;
  top: 0;
  bottom: 0;
}
.plateaux .preview-plateau .zone-nord .quart:nth-of-type(2), .big-plateaux .preview-plateau .zone-nord .quart:nth-of-type(2) {
  left: calc(50% + 1px);
  width: calc(50% - 1px);
}
.plateaux .preview-plateau .zone-nord .huitieme, .big-plateaux .preview-plateau .zone-nord .huitieme {
  position: absolute;
  width: 33%;
  left: 0;
  border-right: 1px solid #b4b2b2;
  top: 0;
  bottom: 0;
}
.plateaux .preview-plateau .zone-nord .huitieme:nth-of-type(2), .big-plateaux .preview-plateau .zone-nord .huitieme:nth-of-type(2) {
  left: calc(33% + 1px);
}
.plateaux .preview-plateau .zone-nord .huitieme:nth-of-type(3), .big-plateaux .preview-plateau .zone-nord .huitieme:nth-of-type(3) {
  left: calc(66% + 2px);
  width: calc(34% - 1px);
  border: none;
}
.plateaux .preview-plateau .huitieme:hover, .plateaux .preview-plateau .demi:hover, .plateaux .preview-plateau .quart:hover, .big-plateaux .preview-plateau .huitieme:hover, .big-plateaux .preview-plateau .demi:hover, .big-plateaux .preview-plateau .quart:hover {
  cursor: pointer;
}
.plateaux .preview-plateau .huitieme:hover .rempli:before, .plateaux .preview-plateau .demi:hover .rempli:before, .plateaux .preview-plateau .quart:hover .rempli:before, .big-plateaux .preview-plateau .huitieme:hover .rempli:before, .big-plateaux .preview-plateau .demi:hover .rempli:before, .big-plateaux .preview-plateau .quart:hover .rempli:before {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.09);
  z-index: 2;
  position: absolute;
  content: "";
}
.plateaux .preview-plateau .rempli, .big-plateaux .preview-plateau .rempli {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.plateaux .preview-plateau .rempli span, .big-plateaux .preview-plateau .rempli span {
  text-align: center;
}

.preview {
  height: 80px;
  width: 250px;
  background: #b4b2b2;
  position: relative;
}
.preview:after {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #9b9a9a;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview:before {
  position: absolute;
  top: -15px;
  width: 250px;
  background: #b4b2b2;
  height: 30px;
  content: "";
  border-radius: 100%;
  z-index: 1;
}
.preview .niveau {
  position: absolute;
  bottom: 0;
  height: 90%;
  left: 0;
  right: 0;
  background: #ff9044;
}
.preview .niveau:after {
  content: "";
  position: absolute;
  top: -15px;
  width: 248px;
  background: #ff9044;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-1 {
  height: 1% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-1:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-1:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-2 {
  height: 2% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-2:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-2:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-3 {
  height: 3% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-3:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-3:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-4 {
  height: 4% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-4:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-4:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-5 {
  height: 5% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-5:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-5:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-6 {
  height: 6% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-6:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-6:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-7 {
  height: 7% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-7:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-7:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-8 {
  height: 8% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-8:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-8:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-9 {
  height: 9% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-9:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-9:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-10 {
  height: 10% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-10:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-10:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-11 {
  height: 11% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-11:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-11:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-12 {
  height: 12% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-12:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-12:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-13 {
  height: 13% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-13:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-13:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-14 {
  height: 14% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-14:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-14:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-15 {
  height: 15% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-15:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-15:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-16 {
  height: 16% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-16:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-16:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-17 {
  height: 17% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-17:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-17:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-18 {
  height: 18% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-18:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-18:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-19 {
  height: 19% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-19:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-19:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-20 {
  height: 20% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-20:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-20:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-21 {
  height: 21% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-21:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-21:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-22 {
  height: 22% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-22:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-22:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-23 {
  height: 23% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-23:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-23:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-24 {
  height: 24% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-24:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-24:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-25 {
  height: 25% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-25:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-25:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-26 {
  height: 26% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-26:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-26:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-27 {
  height: 27% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-27:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-27:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-28 {
  height: 28% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-28:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-28:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-29 {
  height: 29% !important;
  background: #c95858;
  z-index: 1;
}
.preview .niveau-29:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #c95858;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-29:after {
  background: #ca0909;
  z-index: 1;
}
.preview .niveau-30 {
  height: 30% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-30:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-30:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-31 {
  height: 31% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-31:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-31:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-32 {
  height: 32% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-32:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-32:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-33 {
  height: 33% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-33:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-33:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-34 {
  height: 34% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-34:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-34:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-35 {
  height: 35% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-35:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-35:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-36 {
  height: 36% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-36:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-36:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-37 {
  height: 37% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-37:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-37:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-38 {
  height: 38% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-38:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-38:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-39 {
  height: 39% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-39:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-39:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-40 {
  height: 40% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-40:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-40:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-41 {
  height: 41% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-41:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-41:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-42 {
  height: 42% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-42:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-42:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-43 {
  height: 43% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-43:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-43:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-44 {
  height: 44% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-44:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-44:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-45 {
  height: 45% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-45:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-45:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-46 {
  height: 46% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-46:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-46:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-47 {
  height: 47% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-47:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-47:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-48 {
  height: 48% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-48:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-48:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-49 {
  height: 49% !important;
  background: #ff9369;
  z-index: 1;
}
.preview .niveau-49:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #ff9369;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-49:after {
  background: #ff743b;
  z-index: 1;
}
.preview .niveau-50 {
  height: 50% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-50:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-50:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-51 {
  height: 51% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-51:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-51:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-52 {
  height: 52% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-52:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-52:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-53 {
  height: 53% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-53:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-53:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-54 {
  height: 54% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-54:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-54:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-55 {
  height: 55% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-55:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-55:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-56 {
  height: 56% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-56:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-56:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-57 {
  height: 57% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-57:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-57:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-58 {
  height: 58% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-58:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-58:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-59 {
  height: 59% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-59:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-59:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-60 {
  height: 60% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-60:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-60:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-61 {
  height: 61% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-61:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-61:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-62 {
  height: 62% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-62:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-62:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-63 {
  height: 63% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-63:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-63:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-64 {
  height: 64% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-64:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-64:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-65 {
  height: 65% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-65:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-65:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-66 {
  height: 66% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-66:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-66:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-67 {
  height: 67% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-67:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-67:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-68 {
  height: 68% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-68:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-68:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-69 {
  height: 69% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-69:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-69:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-70 {
  height: 70% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-70:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-70:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-71 {
  height: 71% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-71:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-71:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-72 {
  height: 72% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-72:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-72:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-73 {
  height: 73% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-73:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-73:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-74 {
  height: 74% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-74:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-74:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-75 {
  height: 75% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-75:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-75:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-76 {
  height: 76% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-76:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-76:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-77 {
  height: 77% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-77:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-77:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-78 {
  height: 78% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-78:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-78:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-79 {
  height: 79% !important;
  background: #fddc83;
  z-index: 1;
}
.preview .niveau-79:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #fddc83;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-79:after {
  background: #ffc765;
  z-index: 1;
}
.preview .niveau-80 {
  height: 80% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-80:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-80:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-81 {
  height: 81% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-81:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-81:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-82 {
  height: 82% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-82:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-82:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-83 {
  height: 83% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-83:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-83:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-84 {
  height: 84% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-84:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-84:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-85 {
  height: 85% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-85:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-85:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-86 {
  height: 86% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-86:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-86:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-87 {
  height: 87% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-87:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-87:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-88 {
  height: 88% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-88:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-88:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-89 {
  height: 89% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-89:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-89:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-90 {
  height: 90% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-90:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-90:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-91 {
  height: 91% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-91:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-91:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-92 {
  height: 92% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-92:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-92:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-93 {
  height: 93% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-93:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-93:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-94 {
  height: 94% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-94:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-94:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-95 {
  height: 95% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-95:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-95:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-96 {
  height: 96% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-96:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-96:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-97 {
  height: 97% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-97:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-97:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-98 {
  height: 98% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-98:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-98:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-99 {
  height: 99% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-99:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-99:after {
  background: #71eba8;
  z-index: 1;
}
.preview .niveau-100 {
  height: 100% !important;
  background: #98ebbd;
  z-index: 1;
}
.preview .niveau-100:before {
  position: absolute;
  bottom: -15px;
  width: 250px;
  background: #98ebbd;
  height: 30px;
  content: "";
  border-radius: 100%;
}
.preview .niveau-100:after {
  background: #71eba8;
  z-index: 1;
}

.toggle {
  display: flex;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.toggle li {
  background: white;
  cursor: pointer;
  padding: 10px;
  list-style: none;
  border-right: 1px solid #b4b2b2;
  border-top: 1px solid #b4b2b2;
  border-bottom: 1px solid #b4b2b2;
}
.toggle li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.toggle li:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.toggle li:hover {
  background: #f8c4a0;
}
.toggle li.active {
  background: #ff9044;
}
.toggle li:nth-of-type(1) {
  border-left: 1px solid #b4b2b2;
}

#indicateurs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
#indicateurs .indicateur {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#indicateurs .indicateur .bulle {
  width: 15px;
  height: 15px;
  background: #a9ffa1;
  border-radius: 100%;
  margin-right: 15px;
}
#indicateurs .indicateur .bulle.ouvert {
  background: #ca0909 !important;
}

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

.keyboard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(14, 35px);
  gap: 5px;
  padding: 10px;
  background-color: #e0e0e0;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  width: 400px;
  z-index: 10000000;
}

.key {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
}

.key:active {
  background-color: #ddd;
}

.input-field {
  width: 500px;
  height: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  padding: 5px;
}

.hidden {
  display: none;
}

.proportion-des-ingredients .ingrendient {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: flex-end;
  /* Style de la piste (track) pour Chrome */
  /* Style de la piste (track) pour Firefox */
  /* Couleur avant le curseur dans Firefox */
  /* Style du curseur (thumb) pour Chrome et Firefox */
  /* Pour IE */
}
.proportion-des-ingredients .ingrendient .delete {
  width: 50px;
}
.proportion-des-ingredients .ingrendient h4 {
  width: 150px;
}
.proportion-des-ingredients .ingrendient .slider {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-content: flex-end !important;
  align-items: flex-end;
}
.proportion-des-ingredients .ingrendient .slider input {
  width: 80%;
}
.proportion-des-ingredients .ingrendient .slider input[type=text] {
  border: none;
  width: 20px;
  border-bottom: 1px solid;
  border-radius: 0;
  text-align: center !important;
  padding: 0 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  text-indent: 0;
  position: relative;
}
.proportion-des-ingredients .ingrendient .slider input[type=text]:after {
  position: absolute;
  content: "%";
}
.proportion-des-ingredients .ingrendient .group-proportion {
  display: flex;
  align-items: center;
}
.proportion-des-ingredients .ingrendient label {
  float: right;
}
.proportion-des-ingredients .ingrendient input[type=range] {
  -webkit-appearance: none; /* Supprime le style par défaut dans WebKit */
  appearance: none;
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.15s ease-in-out;
  background: linear-gradient(to right, #ff6939 0%, #ff6939 var(--value), #ddd var(--value));
  margin: 10px 0;
}
.proportion-des-ingredients .ingrendient input[type=range]:hover {
  opacity: 1;
}
.proportion-des-ingredients .ingrendient input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  background: transparent;
  border-radius: 5px;
}
.proportion-des-ingredients .ingrendient input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 5px;
}
.proportion-des-ingredients .ingrendient input[type=range]::-moz-range-progress {
  background-color: #ff6939;
  height: 10px;
  border-radius: 5px;
}
.proportion-des-ingredients .ingrendient input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  /* Centrage vertical du curseur */
  margin-top: -6px; /* Ajuste cette valeur pour centrer */
}
.proportion-des-ingredients .ingrendient input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
}
.proportion-des-ingredients .ingrendient input[type=range]::-ms-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
}
.proportion-des-ingredients .ingrendient select {
  border: none;
  width: 20%;
  flex: unset !important;
}

/*# sourceMappingURL=style.css-ca018c3dd57070c3d7610066bfa8c80e.map */
