/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/assets/scss/index.scss ***!
  \*******************************************************************************************************************************************************************************************/
body {
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 10px;
  margin-top: 10px;
}

#app {
  overflow-x: hidden;
  width: 100%;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.flex-item {
  margin-top: 10px;
  color: white;
  font-weight: bold;
}

.flex-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ligne {
  flex-direction: row;
}

.colonne {
  flex-direction: column;
}

.sliderContainer {
  position: relative;
  width: 70%;
}

.rangeInputLabel {
  justify-content: center;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  background-color: darkgrey;
  border: #1a1a1a 1px solid;
  height: 15px;
  opacity: 0.7;
  outline: none;
  transition: opacity 0.2s;
  width: 100%;
}
.slider:hover {
  opacity: 1;
}

.tooltip {
  background-color: #4CAF50;
  border-radius: 6px;
  color: white;
  margin-top: -30px;
  opacity: 0.9;
  padding: 5px 10px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -100%);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: limegreen;
  border: #1a1a1a 1px solid;
  cursor: pointer;
  height: 30px;
  width: 15px;
}

.graduations {
  display: flex;
  justify-content: space-between;
  width: 100%;
  bottom: -1px;
  position: relative;
}

.toggle-button {
  background-color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 60px;
}
.toggle-button::after {
  background-color: white;
  border-radius: 50%;
  content: "";
  height: 26px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: 0.3s;
  width: 26px;
}
.toggle-button.active {
  background-color: #4CAF50;
}
.toggle-button.active::after {
  transform: translateX(30px);
}

.select-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#selectOptions {
  overflow: auto;
  width: 200px;
}

.card {
  position: relative;
  border: 1px solid black;
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #f0f0f0;
  padding: 10px;
  box-sizing: border-box;
  font-size: calc(10px + 1vw);
}
@media (max-width: 768px) {
  .card {
    width: calc(30% - 20px);
  }
}
.card p, .card span, .card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  font-size: inherit;
}

.highlighted {
  background-color: yellow;
}

.small-text {
  font-size: 0.8em;
  color: gray;
}

body.dragging {
  user-select: none;
}

.tooltip.dragging {
  cursor: grab;
}

.tooltip.dragging {
  cursor: grabbing;
}

@media only screen and (max-width: 768px) {
  .select-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .select-container button {
    font-size: 20px;
    padding: 10px 20px;
  }
  .flex-item button {
    font-size: 20px;
    padding: 10px 20px;
  }
  .select-container button {
    font-size: 20px;
    padding: 10px 20px;
  }
  .sliderContainer {
    position: relative;
    width: 100%;
  }
  .tooltip {
    margin-top: -50px;
    padding: 10px 20px;
  }
}
