:root {
  --container: min(800px, calc(100vw - var(--scrollbar-width)));
  --col_background: #f8f8f9;
  --col_hover: #3268d5;
  --colorTooltipBkgd: #333;
  --colorButtonON: #9ae55f;
  --colorButtonERR: #ff4f4f;
  --colorTextSuccess: #75b800;
  --colorTextError: #ce0f0f;
  --colorCatFrame: #227093;
  --colorCatMenu: #ffbd30;
  --colorCatMenuHover: #fac34d;
  --colorVVinfo2: #2270933b;
  --col_actions: rgb(7 85 168);

  --colorVV: rgb(179 38 24);

  --colMenuPilote: #ffbd30;
  --colMenuWing: #FB7A25;
  --colMenuFiles: #007FA9;
  --colMenuConfVar: #5D0D6E;
  --colMenuConfPage: #A1A27E;
}

@media (max-width: 400px) {
  .box {
    flex-basis: 100vw;
  }
}

html {
  height: 100%;
  overflow-x: clip;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  overflow-y: scroll;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  display: flex;
  align-items: flex;
  justify-content: center;
  background-color: var(--col_background);
  font-family: Helvetica, Arial, sans-serif;
}


a {
  text-decoration: none;
  color: var(--col_hover);
}
a:visited {
  color: var(--col_hover);
}

/* link tooltips */
a[title]::after {
  position: absolute;
  top: 100%;
  transform: translateX(-100%);
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
  z-index: 2000;
  background-color: var(--colorTooltipBkgd);
  color: #fff;
  font-weight: normal;
  content: attr(title);
}
a[title]:hover::after {
  opacity: 1;
} 

button {
  font-family: inherit;
}

.bold {
  font-weight: bold;
}

.boldLight {
  font-weight: 700;
}

.superContainer {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
/* structure */
.globalContainer {
  /* display: flex; */
  flex-direction: column;
  position: relative;
  width: var(--container);
  align-items: center;
}

.divWebsite {
  position: absolute;
  top: 5px;
  left: 8px;
  padding: 0px;
  color: black;
  font-size: 16px;
}
.divLang {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 0px;
  color: black;
  font-size: 16px;
}
.divTitle {
  display: flow-root;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  padding-top: 32px;
  font-size: 24pt;
  text-shadow: 0 0 0.1em rgb(206 206 206);
  color: rgb(114 16 7);
}

.inline-icon {
  filter: drop-shadow(1.5px 1.5px 2.5px rgba(0, 0, 0, 0.3));
  display: inline-block;
  width: 1.7em; /* Ajustez la taille */
  height: 1.7em;
  margin-bottom: -0.13em; /* Ajustez la position verticale */
  margin-right: -0.48em;
}

.stickyMenu {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  z-index: 1000;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  background: var(--col-background);
}
.sticky.isSticked {
  background: #fbe5d3;
  border-bottom: 1px solid rgb(189, 185, 185);
  transition: 0.1s;
}

.arrow {
  appearance: none;
  -webkit-appearance: none; /* Pour Safari et Chrome */
  -moz-appearance: none;
  position: static;
  min-width: 30px;
  width: 30px;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.left,
.right {
  flex: 0 0 auto;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}
/* Toolbar */
.toolBar {
  display: flex;
  position: static;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  z-index: 1000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollable-content {
  display: flex;
  height: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollable-content::-webkit-scrollbar {
  display: none;
}

/* Animate border color to attract the eye and know where to click */
.focusEye {
  border: 2px solid transparent;
  animation: yoyo 1s infinite;
}

/* Définition de l'animation */
@keyframes yoyo {
  0% {
    border-color: transparent;
  }
  35% {
    border-color: var(--colorButtonON);
  }
  100% {
    border-color: transparent;
  }
}

.toolButton {
  display: inline-block;
  flex-shrink: 0;
  border: 2px solid transparent;
  overflow: visible;
  border-radius: 5px;
  letter-spacing: -1px;
  color: rgb(160, 160, 160);
  width: 65px;
  height: 65px;
  margin: 3px;
  text-align: center;
  line-height: 1.5em;
  font-size: 10pt;
}

.toolSeparator {
  display: inline-block;
  flex-shrink: 0;
  overflow: visible;
  background-color: #8d8e90;
  width: 2px;
  height: 80%;
  margin: 5px;
  padding: -2px;
}
.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  background-color: #f1f1f1;
  top: 0;
  z-index: 1000; /* Make sure it stays on top */
}

.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Icons */
.iconStyle {
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
/* .iconHelp {
  margin-left: 5px;
  color: rgb(211, 20, 47);
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px rgba(211, 20, 47, 0.1));
}
.iconHelp:hover {
  color: var(--col_hover);
  filter: drop-shadow(0px 0px 2px rgba(50, 104, 213, 0.1));
} */
.iconSizeMenu {
  width: 30px;
  height: 30px;
}
.iconConfig {
  position: relative;
  top: -3px;
  width: 30px;
  height: 30px;
}
.iconSizeSpeaker {
  width: 30px;
  height: 39px;
  align-items: center;
  display: grid;
}
.iconExp {
  transform: scale(-1.15, 1.15) translate(-2px, -1px);
}
.iconImp {
  transform: scale(-1.15, 1.15) translate(-2px, -1px);
}
/* Button tooltips */
.toolButton .toolTip {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  transition: opacity 0.3s;
  background-color: var(--colorTooltipBkgd);
  color: #fff;
  width: calc(100% - 60px);
  max-width: 600px;
  transform-origin: bottom center;
  transform: translateX(-50%, -100px);
  left: 50%;
  border-radius: 6px;
  bottom: 0px;
  padding: 4px;
  text-align: center;
  font-size: 13px;
  line-height: 1.2em;
  letter-spacing: 0px;
  z-index: 1;
  margin-bottom: 20px;
}
/* Small arrow below */
.toolButton .toolTip::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.toolButton:hover .toolTip {
  visibility: visible;
  opacity: 1;
}

/* Lock/Unlock buttons */
.unlockHover {
  color: black;
}
.unlockHover:hover {
  color: var(--col_hover);
  cursor: pointer;
}
.unlockHoverFrame:hover {
  outline: 2px solid var(--col_hover);
  outline-offset: -2px;
}
.lockHover .iconStyle {
  fill: #8d8e90;
}
.unlockHover:hover .iconStyle {
  fill: var(--col_hover);
}

/* Drag & drop Open button */
.dragHover {
  outline: 2px solid var(--col_hover);
  outline-offset: -2px;
}
.dragHoverValid {
  outline: 2px solid var(--colorButtonON);
  outline-offset: -2px;
}
.buttonOn {
  background-color: var(--colorButtonON);
  border: 2px solid var(--colorButtonON);
}
.buttonErr {
  background-color: var(--colorButtonERR);
}
#fileInput {
  display: none;
} /* hide file input */

/* Edit configuration text */
.overlay {
  display: none;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(165, 165, 165, 0.85);
  justify-content: center;
  align-items: center;
  /* overflow-y: auto; */
  z-index: 1000;
}

.overlayHelp {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--col_background);
  z-index: 1000;
  overflow-y: scroll;
  height: 100%;
}

.containerHelp {
  /* position: absolute; */
  top: 0; /* Collé en haut */
  /* left: 50dvw;
      transform: translateX(-50%); 
      width: var(--container); */
  width: calc(min(100%, 800px));
  margin: 0 auto;
}

.FAQquestion {
  background-color: #afd5ff70;
  cursor: pointer;
  padding: 10px 10px 10px 15px;
  width: calc(100% - 10px);
  text-align: left;
  border: none;
  outline: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: black;
  border: 1.5px solid rgb(179, 217, 239);
  margin: 5px;
  border-radius: 3px;
}

/* Ajout de l'icône au début avec :before */
.FAQquestion:before {
  content: "\002B";
  font-size: 23px;
  color: #474747;
}

.FAQquestion.active:before {
  content: "\2212";
  font-size: 23px;
  color: #474747;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.FAQquestion:hover {
  background-color: #79b1f070;
}

.FAQremark {
  padding: 10px;
  font-size: 14px;
  text-align: justify;
}

.FAQanswer {
  padding: 5px 10px 14px 10px;
  font-size: 14px;
  text-align: justify;
  display: none;
  overflow: hidden;
}

.FAQframe {
  background-color: rgb(255 231 205 / 75%);
  border-radius: 0.4rem;
  padding: 10px;
  margin-bottom: 10px;
  border: 1.5px solid rgb(240, 145, 38);
}

.listFrame {
  margin: 0px 13px 0px 3px;
}
.list1 {
  list-style-type: disc;
  margin: 0px;
}

/* Liste imbriquée avec des tirets */
.list2 {
  list-style-type: "- ";
  margin: 0px 10px 0px 10px;
  width: calc(100% - 10px);
}

.helpTitle {
  font-size: 14pt;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5px 0px 15px;
  background-color: var(--col_background);
}

.stickyHelp {
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  background: var(--col-background);
  background: #e1e3ef;
  border-bottom: 1px solid rgb(189, 185, 185);
  z-index: 1000;
}

.styled-table {
  width: calc(100% - 10px);
  margin: 0 auto;
  margin-bottom: 5px;
  border-collapse: collapse;
  font-size: 0.9em;
  font-family: sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
  background-color: #4e3f43;
  color: #ffffff;
  text-align: center;
}

.styled-table th,
.styled-table td {
  padding: 5px 5px;
  text-align: center;
  font-size: 10pt;
}

.center {
  text-align: center;
}

.centerIcons {
  justify-content: center;
  opacity: 0.6;
}

.remindClicks{
  padding: 7px 9px 6px 9px !important;
}

.sndAlign {
  align-items: center;
  display: flex;
}

.questionBox {
  display: flex;
  flex-wrap: wrap;
  position: 50%;
  width: 500px;
  max-width: calc(100dvw - 10px);
  max-height: calc(100dvh - 10px);

  background-color: var(--col_background);
  border: 1px solid rgba(200, 200, 200, 0.7);
  border-radius: 5px;
  overflow-y: auto;
  justify-content: center;
  z-index: 1001;
}
.authBorder {
  box-shadow: 0px 0px 3px 3px rgb(17 145 196);
  border: none !important;
  border-radius: 12px;
}
.rndBorder {
  border-radius: 12px;
}
.inlineSymb {
  display: inline-flex;
  align-items: center;
}

.partContent {
  display: flex;
  width: 100%;
  padding: 10px;
  max-height: calc(100dvh - 90px);
}

.contentTextArea {
  height: 600px;
  flex-direction: column;
  color: white;
}
.contentMsg {
  min-height: 100px;
  max-width: 800px;
  text-align: center;
  width: 100%;
  display: block;
  align-content: center;
}
.infoMsg {
  max-width: 800px;
  padding: 10px;
  text-align: center;
  width: 100%;
  display: block;
  align-content: center;
}
.partBtn {
  height: 50px;
  align-items: center;
}

.vertBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
}
.sepSpace {
  height: 30px;
}
.sepLine {
  background-color: rgba(200, 200, 200, 0.4);
  height: 1px;
  width: 100%;
}

#configText {
  background: transparent;
  width: 100%;
  height: 100%;
  border: none;
  resize: none;
  outline: none;
}
.ctrlBtn {
  font-size: 10pt;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(200, 200, 200, 1);
  border-radius: 5px;
  margin: 5px 0px 5px 5px;
  padding: 5px 10px 5px 10px;
  min-width: 145px;
  height: 35px;
  color: #8f8e8e;
}
.btnNarrow {
  height: 30px;
  min-width: 115px !important;
}
.btnIcons {
  height: 30px;
  min-width: 45px !important;
}
.alignVertical {
  display: flex;
  flex-direction: column;
}
.btnConfirm {
  fill: rgb(23, 164, 42);
}
.btnCancel {
  fill: rgb(202, 36, 36);
}
.btnHover {
  color: black;
}
.btnHover:hover {
  background-color: rgba(207, 206, 206, 0.8);
  cursor: pointer;
}

.separator {
  border: 1px solid rgba(200, 200, 200, 0.4);
  width: 100%;
  height: 0px;
  margin: 10px 0px 10px 0px;
}

/* Toolbar menu */
.menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 140px;
  margin-top: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  z-index: 1000;
}
.menu div {
  display: block;
  float: none;
  padding: 12px 16px;
  border-radius: 5px;
  color: black;
  text-decoration: none;
  text-align: left;
  text-align: center;
}
.menu div:hover {
  cursor: pointer;
  color: var(--col_hover);
  border-radius: 5px;
}

/* Tone configurator */
#overlayTone {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgb(255, 255, 255);
  justify-content: center;
  justify-items: center;
  z-index: 1000;
}

#overlayToneLim {
  justify-items: center;
}

#overlayButtons {
  display: flex;
  flex-direction: line;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1000;
  align-items: center;
}

.speedBarLine {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 37px;
  left: 8px;
  align-items: center;
}
.nowrap{
  white-space: nowrap;
}

#plotDiv {
  position: relative;
  touch-action: none;
  width: var(--container);
  height: calc(100dvh - 42px);
  max-height: 800px;
}
#canvasGrid,
#canvasPlot {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
div.myplot-handle {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid transparent;
  /* cursor:n-resize; */
}
.cursorPointer {
  cursor: pointer;
}
.cursorNS {
  cursor: n-resize;
}
.cursorWE {
  cursor: e-resize;
}
.cursorNESW {
  cursor: all-scroll;
}
div.myplot-handle.handle-blue:hover {
  border: 1px dashed #5292f7;
}
div.myplot-handle.handle-red:hover {
  border: 1px dashed #bd1f1f;
}
div.myplot-handle.handle-grey:hover {
  border: 1px dashed grey;
}
div.myplot-handle-circle {
  position: relative;
  display: none;
  margin: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid #5292f7;
  background-color: white;
  border-radius: 10px;
  pointer-events: none;
}
div.handle-red div.myplot-handle-circle {
  border: 1px solid #ba2d2d;
}
div.handle-grey div.myplot-handle-circle {
  border: 1px dotted grey;
  background-color: #dddddd;
  border-radius: 0px;
  margin: 10px;
  width: 5px;
  height: 5px;
}
.theCircle {
  position: absolute;
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid #2830ab;
  background-color: #d8e9ee;
  border-radius: 12px;
  z-index: 1000;
}
.activeCircle{
  background-color: #79b9ed;
}
.inactiveCircle{
  background-color: #ffffff;
}
.crosshair-vert,
.crosshair-horiz {
  position: absolute;
  display: none;
  background-color: #bbbbbb;
}
.crosshair-vert {
  width: 1px;
  height: 100%;
}
.crosshair-horiz {
  width: 100%;
  height: 1px;
}

#divSimuVario {
  vertical-align: top;
}
/* Simu vario bar */
#simuVario {
  margin-top: 4px;
  position: relative;
  cursor: e-resize;
}
#simuVario_frame {
  position: static;
  display: flex;
  border: 1px solid rgb(189, 185, 185);
  height: 35px;
  border-radius: 4px;
  vertical-align: middle;
  align-items: center;
  z-index: 6;
  cursor: e-resize;
  margin-bottom: 3px;
  filter: drop-shadow(0px 0px 1px rgba(50, 104, 213, 0.3));
}

@-moz-document url-prefix() {
  #simuVario_frame {
    position: relative;
    display: flex;
    border: 1px solid rgb(189, 185, 185);
    height: 35px;
    border-radius: 4px;
    vertical-align: middle;
    align-items: center;
    z-index: 6;
    cursor: e-resize;
    margin-bottom: 3px;
    filter: drop-shadow(0px 0px 1px rgba(50, 104, 213, 0.3));
  }
}

#simuVario_bar {
  position: relative;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  z-index: 5;
  user-select: none;
  /* margin-top: 28px; */
}
#simuVario_text {
  pointer-events: none;
  font-size: 11pt;
  position: absolute;
  z-index: 1000;
  width: 719px;
  text-align: center;
}

.bar-green {
  background: linear-gradient(to right, transparent, rgb(57, 220, 57));
}
.bar-red {
  background: linear-gradient(to left, transparent, rgb(233, 30, 30));
}

/* Button speaker */
#buttonSpeaker {
  position: absolute;
  left: calc(100% - 38px);
  top: calc(100% - 2px);
}

.mainContent {
  flex: 1 1 auto; /* Allow boxes to grow and shrink */
  border-radius: 5px;
  text-align: center;
  margin: 10px;
}

ul {
  list-style-type: none;
  padding-left: 0px;
  margin-left: 0;
  width: 100%;
}

.FAQanswer ul{
  margin-left: 10px;
  margin-bottom: 3px;
}
.FAQanswer .list1 li{
  margin-top: 6px;
}
.FAQanswer .list2 li{
  margin-top: 0px;
}

/* aide simulateur */

.FAQremark ul{
  margin-left: 10px;
}
.FAQremark .list1 li{
  margin-top: 6px;
}
.FAQremark .list2 li{
  margin-top: 0px;
}

.list3{
  margin-bottom: 0px;
  margin-top: 0px;
}
.FAQremark .list3 li{
  display: inline-flex;
  align-items: center; /* Aligne sur l'axe vertical */
}
.inIcon{
  flex-shrink: 0;
  width: 20px;
  height: 20px; 
}



.grid-container {
  margin-top: 6px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-template-rows: repeat(3, 1fr); 
  gap: 4px; 
}

.fixed-col {
  background: #e9e1e1;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fluid-col {
  background: #f9f9f9;
  padding: 5px;
  align-content: center;
}




.listIcons{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


.VVinfoWrap {
  margin: 6px;
  max-height: 0px;
  overflow: hidden;
  /* transition: max-height 0.3s ease-in-out; */
}
.VVdebug {
  display: none;
  margin: 6px;
  background-color: rgb(248, 199, 175);
  border-radius: 0.5rem;
  border: 2px solid #ff5e29d1;
  padding: 12px;
  font-family: monospace;
}
.VVinfo {
  background-color: rgb(226, 236, 240);
  border-radius: 0.5rem;
  border: 2px solid #2270933b;
}
.infoPad {
  padding: 12px 9px 12px 13px;
  background-color: var(--colorVVinfo2);
}
.infoSep {
  padding-bottom: 5px;
}
#infoWidgets {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.infoRow {
  display: flex;
  flex-direction: row;
  text-align: left;
  flex-wrap: wrap;
  align-items: center;
}
.infoCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infoRowBlock {
  display: inline-block;
}
.infoBlock {
  min-width: 112px;
  height: 55px;
  margin-left: 9px;
  margin-right: 9px;
}
.fixWidth {
  width: 95px;
}
.txtBig {
  line-height: 1.2em;
  font-weight: 600;
  font-size: 12pt;
}
.txtSmall {
  font-size: 10pt;
  font-style: italic;
  line-height: 1.1em;
}
.tab {
  border: 2px solid var(--colorCatFrame);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.15s;
  margin: 5px;
}
.VVinfoSep {
  width: 100%;
  height: 2px;
}
.lineSpace {
  margin: 4px 0px 4px 0px;
}

.hideTab {
  display: none !important;
}
.showTab {
  display: block;
}

#menu1,
#menu2,
#menu3,
#menu4,
#menu5 {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  text-align: left;
}

.tab input:checked ~ .tab__content {
  max-height: 10rem;
}

.tab input:checked ~ .tab__label {
  background: var(--colorCatMenu);
}

.tab input:hover ~ .tab__label {
  background: var(--colorCatMenu);
}



.tab__label{
  display: flex;
  align-items: center;
  color: black;
  cursor: pointer;
  padding: 0.8rem;
}

.tab__label svg {
  margin-right: 0.8rem;
}

.pointerLink {
  cursor: pointer;
}

select {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 9px;
  font-size: 16px;
  width: 100%;
  border-radius: 2px;
}

option {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 19px;
  cursor: pointer;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 9px;
  font-size: 16px;
}
input[type="text"] {
  background-color: #f1f1f1;
  width: 100%;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 8px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}
.scrollable {
  max-height: 192px; /* Hauteur maximale avec défilement */
  overflow-y: auto; /* Activation du défilement vertical */
}

.inputField {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  background-color: #c7d9f1;
  padding: 5px;
}
.inputField:hover {
  background-color: rgb(180, 202, 230)
}
.frameIGC {
  padding: 0px;
}
.IGCmenu {
  background-color: #66a8ef;
}
.IGCsep {
  display: inline-block;
  flex-shrink: 0;
  overflow: visible;
  background-color: #6d8fe0;
  width: 2px;
  height: 25px;
  margin: 0px 8px 0px 8px;
}
.IGCboxChoice {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  align-items: center;
  color: #4d76ab;
}
.IGCchoice {
  display: flex;
  box-sizing: border-box;
  padding: 10px 0px 10px 0px;
}
.IGCchoiceSelect {
  cursor: pointer;
}
.IGCchoiceSelect:hover {
  color: #3d608e;
}
.IGCchoiceAction {
  color: rgb(15, 26, 92);
}
.alignRight {
  margin-left: auto;
  display: block;
  text-align: right;
}
.alignLeft {
  margin-right: auto;
  display: block;
  text-align: left;
}
.IGCtitList {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  text-align: center;
  padding: 10px 0px 10px 0px;
}
.centerButton {
  display: flex;
  width: 100%;
  justify-content: center;
}
.btnDel {
  color: #4d76ab;
  border: 1px solid #4d76ab;
  align-items: center;
  border-radius: 3px;
  padding: 4px 10px 4px 4px;
  margin-bottom: 5px;
}
.btnDelClickable {
  color: #cc0000;
  cursor: pointer;
  outline: 2px solid #e74141;
  outline-offset: -2px;
  background: #dde0f5;
}
.btnDelClickable:hover {
  background-color: #edc2c2;
}

.partSeparator {
  border: 1px solid var(--colorCatFrame);
  width: 100%;
}

.inputFieldBigTitle {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  min-width: 220px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 10px 0px 10px 0px;
}
.inputFieldTitle {
  font-weight: 500;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* width: 40%; */
  padding: 3px 10px;
  min-width: 220px;
}
.inputFieldChoice {
  width: 60%;
  height: 100%;
  min-width: 250px;
}
.isSwitch {
  padding-left: 10px;
}
.inputFieldData {
  width: 60%;
  height: 100%;
  min-width: 250px;
  padding-left: 12px;
}
.inputFieldRange {
  width: 60%;
  height: 100%;
  min-width: 250px;
  padding-left: 1px;
  padding-right: 6px;
}
.inputFieldRangeSpeedBar {
  width: 60%;
  height: 100%;
  min-width: 150px;
  padding-left: 1px;
}
.inputFieldHelp {
  text-align: justify;
  color: #3b3939;
  font-size: 9.5pt;
  width: 100%;
  height: 100%;
  min-width: 250px;
}
.helpBottom {
  padding: 8px 8px 8px 8px;
}
.helpTop {
  padding: 4px 12px 18px 12px;
}


.box {
  align-items: center;
  min-height: 35px;
  flex: 1 1 45%; /* Flexibilité pour occuper 45% de l'espace disponible */
  margin: 3px;
  box-sizing: border-box;
}
.box input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
}
.flex {
  display: flex;
}

.pageInfo {
  font-size: 10pt;
  text-align: center;
}

#optionAudio {
  flex-wrap: wrap;
  align-items: center;
}

.includeUnit {
  position: relative;
  display: inline-block;
}

.includeUnit .unit {
  position: absolute;
  right: 10px; /* Ajustez selon vos besoins */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999; /* Couleur grisée pour l'unité */
}

.includeUnit input {
  padding-right: 30px; /* Laisser de la place pour l'unité */
}

.flexCenter {
  justify-content: center;
  display: flex;
}

.btnPWA {
  background-color: rgb(250, 231, 211);
  display: flex;
  align-items: center;
  font-size: 10pt;
  border: 1.5px solid rgb(240, 145, 38);
  border-radius: 3px;
  padding: 3px 6px 3px 2px;
  margin-top: 5px;
}
#getPWA :hover {
  background-color: rgb(249, 197, 139);
}

.btnInMenu {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid rgb(16, 55, 134);
  padding: 4px 10px 4px 4px;
}

/*********** RANGE ELEMENT  ***********/

/*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -8px; /* Centers thumb on the track */
  background-color: var(--col_actions);
  border-radius: 1rem;
  height: 1.5rem;
  width: 1.5rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  height: 0.5rem;
  box-shadow: 1px #227093;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: var(--col_actions);
  border: none; /*Removes extra border that FF applies*/
  border-radius: 1rem;
  height: 1.5rem;
  width: 1.5rem;
}



/* Classe pour désactiver le range */
.rangeDisabled {
  pointer-events: none; /* Désactive les interactions */
  opacity: 0.3; /* Rend le composant plus clair */
}
.rangeDisabled::-webkit-slider-thumb {
  /* background-color: #9e9e9e !important; */
  cursor: default;
}
.optDisabled {
  pointer-events: none; 
  opacity: 0.3;
  cursor: default;
}



.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9b9b9bcc;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input:checked + .slider {
  background-color: var(--col_actions);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Cligno bouton */
.blink {
  animation: blink-animation 0.5s steps(2, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.speedBarDiv {
  padding: 0px 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 35px;
  align-items: center;
  white-space: nowrap;
  width: fit-content;
}

.boxOption {
  padding: 0px 9px;
  border: 1px solid #666;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 35px;
  align-items: center;
  white-space: nowrap;
  width: fit-content;
}

.boxOption:hover {
  background: #eee;
}

.boxOption.active {
  background: #becbff;
}

#countdown {
  position: relative;
  height: 20px;
  width: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform linear;
}

#iconCountDown {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

#iconCountDown .background-circle {
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
}

#iconCountDown .foreground-circle {
  stroke-dasharray: 57px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: rgb(17, 145, 196);
  fill: none;
  transition: stroke-dashoffset 0.3s linear;
}

#iconCountDown .foreground-circle.fill {
  stroke-dashoffset: 57px;
  transition: stroke-dashoffset 10s linear;
}

.progressBox {
  display: flex;
  justify-content: space-between;
  width: 100%; /* ou définissez une largeur spécifique si nécessaire */
  margin-bottom: 5px; /* Espace entre les lignes */
}
.progressPercent {
  text-align: right;
  margin-right: 10px;
  width: 40%; /* Largeur fixe pour les pourcentages */
}
.progressText {
  text-align: left;
  flex-grow: 1;
}
.greyText {
  color: #8f8e8ea8;
}
.successText {
  color: var(--colorTextSuccess);
}
.errorText {
  color: var(--colorTextError);
}

.fileContainer {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3px;
}

.fileElement {
  display: flex;
  align-items: center;
  border-radius: 3px;
  margin: 3px 3px 0px 3px;
  padding: 3px;
}

.fileElementGrey {
  color: grey;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 3px;
  margin: 1px;
  padding: 4px 7px 4px 7px;
}
@media (hover: hover) and (pointer: fine) {
  .fileElement:hover {
    background-color: #94b3e5;
    color: rgb(16, 55, 134);
    cursor: pointer;
  }

  .deleteMode .fileElement:hover {
    background-color: #ff6363;
  }

  .deleteMode .fileElementGrey:hover {
    background-color: #ff6363;
    cursor: pointer;
  }
}

/* Style pour les fichiers marqués pour suppression */
.markedForDeletion {
  background-color: #ff4b4b;
  opacity: 0.8;
}

.downloadIcon,
.deleteIcon {
  display: inline-block;
}

.iconFileList {
  margin-left: 5px;
  margin-right: 5px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
}

nav {
  width: fit-content;
  border: 1px solid #666;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 35px;
  align-items: center;
  margin: 0px 5px 5px 0px;

  overflow: hidden;
}

nav input {
  display: none;
}
nav label {
  font-family: sans-serif;
  padding: 9px 9px;
  border-right: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.1s;
}
nav label:last-of-type {
  border-right: 0;
}
nav label:hover {
  background: #eee;
}
nav input:checked + label {
  background: #becbff; /* Couleur pour l'élément sélectionné */
}

.txtProgr {
  font-weight: 700;
  font-size: 10pt;
  color: #4b4b4b;
}

.progressContainer {
  display: block;
  width: 100%;
  padding: 20px 10px 0px 10px;
  max-height: calc(100dvh - 90px);
  text-align: center;
}

.progress-bar {
  border-radius: 60px;
  overflow: hidden;
  margin: 3px 20px 3px 20px;
  /* span { display: block; } */
}

.progress-bar span {
  display: block;
}

.bar {
  background: rgba(0, 0, 0, 0.075);
}

.progress {
  background: #75b800;
  color: #fff;
  padding: 3px;
  width: 0;
  margin-left: -1.5%;
}
.progress[data-percentage="0"] span {
  display: none;
}

.btnGroup {
  display: flex;
  text-align: center;
  margin: 10px 0px 10px 0px;
}

.DLboxtitle {
  font-weight: 700;
  display: flex;
  align-items: center;
  border-radius: 3px;
  margin: 3px 3px 0px 3px;
  padding: 4px;
  width: 100%;
  justify-content: center;
}

.boxColBlue {
  background-color: #b1ceff;
}

.boxColRed {
  background-color: #ff5959;
}

.boxColGreen {
  background-color: #6ed47abd;
}

.boxColPurp {
  background-color: #d0b9e1;
}

.boxColOrange {
  background-color: #f8c243;
}

.invisible {
  visibility: hidden; /* Rend le point invisible mais conserve sa largeur */
}
.visible {
  visibility: visible; /* Rend le point visible */
}

::placeholder {
  color: rgb(170, 159, 159);
}

.wingMenu {
  display: flex;
}
.wingIcon {
  flex-shrink: 0;
  border: 2px solid transparent;
  overflow: visible;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  padding: 6px 3px 0px 3px;
  text-align: center;
  margin: 2px 8px 2px 2px;
  border: 1px solid rgb(16, 55, 134);
}
.wingNumber {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  position: relative;
  top: -6px;
}
.configNumber {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  position: relative;
  top: -3px;
}






/* Style pour les poignées double-triangle */
.handle-double-arrow {
    width: 20px !important;
    height: 20px !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
}
.handle-double-arrow > * {
  display: none !important;
}




/* Base styles pour les doubles flèches */
.handle-double-arrow::before,
.handle-double-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}


/* Triangle gauche */
.handle-double-arrow::before {
  left: 0;
  border-width: 10px 6px 10px 0;
  border-color: transparent rgb(15, 170, 30) transparent transparent;
}

/* Triangle droit */
.handle-double-arrow::after {
  right: 0;
  border-width: 10px 0 10px 6px;
  border-color: transparent transparent transparent rgb(15, 170, 30);
}

/* Version green */
.handle-double-arrow.green::before {
    border-right-color: rgba(15, 170, 30, 0.5);
}
.handle-double-arrow.green::after {
    border-left-color: rgba(15, 170, 30, 0.5);
}

/* Hover pour green */
.handle-double-arrow.green:hover::before {
    border-right-color: rgb(15, 170, 30);
}
.handle-double-arrow.green:hover::after {
    border-left-color: rgb(15, 170, 30);
}

/* Version purple */
.handle-double-arrow.purple::before {
    border-right-color: rgba(149, 18, 185, 0.5);
}
.handle-double-arrow.purple::after {
    border-left-color: rgba(149, 18, 185, 0.5);
}

/* Hover pour purple */
.handle-double-arrow.purple:hover::before {
    border-right-color: rgb(149, 18, 185);
}
.handle-double-arrow.purple:hover::after {
    border-left-color: rgb(149, 18, 185);
}

.link{
  cursor: pointer;
  text-decoration: underline;
}

.link:hover{
  color: var(--col_hover);
}

.radio-group {
  display: inline-flex;
  flex-direction: column;
  gap: 3px; 
  width: calc(100% - 20px);
  margin: 10px;
}
.radio-horiz{
  flex-direction: row;
  display: inline-flex;
  margin: 10px;
  justify-content: center;
}
.radio-group-narrow {
  gap: 6px !important; 
  width: calc(40% - 20px) !important;
}

.radio-option {
  position: relative;
}

.radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: block;
  padding: 8px;
  background-color: #f5f5f5;
  border: 1px solid #a9a8a8;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
}
.radio-label-horiz{
  padding: 20px !important;
  border-radius: 5px !important;
  margin: 5px;
}

.radio-label:hover {
  background-color: #e9e9e9;
}

.radio-input:checked + .radio-label {
  background-color: #3f829a54;
    color: #000000;
    border-color: #5080b587;
}

.radio-label.disabled {
  opacity: 0.3;
  cursor: default;
  background-color: #eee;
}