#main-canvas {
  touch-action: none;
  height: 100%;
  width: 100%;
}
#canvas-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  z-index: 0;
}

#app {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  overflow: hidden;
}
#main-ui {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#main-ui > * {
  pointer-events: all;
}
#right-panel {
  z-index: 1;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
  margin-right: 25px;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#menu-view {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#menu-view span {
  pointer-events: all;
}
#menu-view .horizontalBtn:nth-last-of-type(1) {
  margin-bottom: 18px;
}
#menu-view .horizontalBtn {
  font-family: Roboto;
  color: #080e24;
  font-size: 12px;
  margin-left: 25px;
  transition: 0.2s;
  cursor: pointer;
}
#menu-view .horizontalBtn button {
  float: left;
  width: 50px;
  height: 50px;
  border: 1px solid #ff290a;
  border-radius: 4px;
  cursor: pointer;
}
#menu-view .horizontalBtn .afterBtn {
  float: left;
  display: inline-block;
  overflow: hidden;
  visibility: hidden;
  text-overflow: ellipsis;
  width: 0px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #ff290a;
  border-radius: 4px;
  transition: 0.2s;
  transition-timing-function: ease-out;
  border-left: none;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background: white;
}
#menu-view .horizontalBtn:hover .afterBtn {
  visibility: visible;
  width: 120px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}
#menu-view .horizontalBtn:hover button {
  border-radius: 4px 0 0 4px;
  background: #ff290a;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}
#menu-view .horizontalBtn:active .afterBtn {
  border-color: #ac1a03;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
}
#menu-view .horizontalBtn:active button {
  border-color: #ac1a03;
  background: #ac1a03;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
}
#menu-view .horizontalBtn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#menu-measure {
  position: absolute;
  left: 0;
  width: 300px;
  margin-left: 25px;
  margin-top: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#menu-measure button {
  width: 50px;
  height: 50px;
  z-index: 200;
  border: 1px solid #ff290a;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  float: left;
}
#menu-measure button.active {
  background-color: #ff290a;
}
#menu-measure .horizontalBtn {
  font-family: Roboto;
  color: #080e24;
  font-size: 12px;
  margin-left: 25px;
  transition: 0.2s;
  cursor: pointer;
}
#menu-measure .horizontalBtn button {
  float: left;
  width: 50px;
  height: 50px;
  border: 1px solid #ff290a;
  border-radius: 4px;
  cursor: pointer;
}
#menu-measure .horizontalBtn .afterBtn {
  float: left;
  display: inline-block;
  overflow: hidden;
  visibility: hidden;
  text-overflow: ellipsis;
  width: 0px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #ff290a;
  border-radius: 4px;
  transition: 0.2s;
  transition-timing-function: ease-out;
  border-left: none;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background: white;
}
#menu-measure .horizontalBtn:hover .afterBtn {
  visibility: visible;
  width: 120px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}
#menu-measure .horizontalBtn:hover button {
  border-radius: 4px 0 0 4px;
  background: #ff290a;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}
#menu-measure .horizontalBtn:active .afterBtn {
  border-color: #ac1a03;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
}
#menu-measure .horizontalBtn:active button {
  border-color: #ac1a03;
  background: #ac1a03;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
}
#menu-measure .horizontalBtn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#zoom {
  width: 20%;
  max-width: 360px;
  border: 1px solid #2b3042;
  border-radius: 4px;
  position: absolute;
  bottom: 25px;
  left: calc(40vw - 10%);
  background: #eeeeee;
  box-shadow: 0 9px 15px -9px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and (max-device-width: 1024px) {
#zoom {
    width: 30%;
    left: 20%;
}
}
#zoom button {
  height: 40px;
  border-radius: 20px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 0;
  flex-basis: 40px;
  background: transparent;
  font-size: 30px;
  line-height: 30px;
  color: #2b3042;
  cursor: pointer;
  opacity: 0.85;
}
#zoom button:hover {
  opacity: 1;
}
#zoom .slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #d3d3d3;
  border-radius: 4px;
  outline: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
#zoom .slider:hover {
  opacity: 1;
}
#zoom .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #2b3042;
  cursor: pointer;
  border-radius: 10px;
}
#zoom .slider::-ms-thumb {
  appearance: sliderthumb-horizontal;
  width: 15px;
  height: 15px;
  background: #2b3042;
  cursor: pointer;
  border-radius: 10px;
  z-index: 10;
  overflow: visible;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#cart {
  width: 325px;
  height: 300px;
  margin-right: 7px;
  margin-bottom: 10px;
  background-color: white;
  flex-grow: 1;
  border-radius: 6px 6px 3px 3px;
  overflow: hidden;
  box-shadow: 0 9px 15px -9px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.2s ease-in;
  -webkit-transform-origin: right;
  transform-origin: right;
}
#cart.hidden {
  -webkit-transform: scaleY(0) scaleX(0);
  transform: scaleY(0) scaleX(0);
  transition: 0.2s ease-out;
  opacity: 0;
}
#header-rightpanel {
  height: 65px;
  background-color: #2b3042;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-align: left;
  padding-left: 22px;
  line-height: 65px;
}
.container {
  display: flex;
  width: 100%;
  flex-direction: column;
}
#steps-content {
  overflow-y: auto;
  height: calc(100% - 75px);
  position: relative;
}
#steps-content .config-content {
  padding: 0px 15px 17px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#steps-content h3 {
  align-self: flex-start;
  color: #080e24;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  opacity: 0.6;
  margin-top: 15px;
  margin-bottom: 15px;
}
.section-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 11px;
}
.info {
  width: 200px;
  height: 50px;
  display: block;
  align-self: center;
}
.btnWithDotUnder {
  display: flex;
  flex-direction: column;
  min-width: 90px;
}
.btnWithDotUnder .dot {
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: #ff290a;
  align-self: center;
  display: none;
}
.btnWithDotUnder .dot.visible {
  display: inline;
}
.confBtn {
  display: block;
  border-radius: 4px;
  text-align: center;
  flex: 1 0 31%;
}
.confBtn button {
  border: none;
  min-width: 69px;
  height: 54px;
  cursor: pointer;
}
.confBtn button.checked {
  background: white;
  border: 1px solid #ff290a;
}
.confBtn button.checked:hover {
  border: 1px solid #ff290a;
  box-shadow: none;
}
.confBtn button:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  border: solid 1px #f1f1f1;
}
.confBtn button.checked {
  border: 1px solid #ff290a;
}
.confBtn img {
  width: 43px;
  height: 29px;
}
.imageBtn {
  display: flex;
  flex-direction: column;
  width: 64px;
  height: 92px;
  border-radius: 4px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid transparent;
  margin-bottom: 10px;
  background: #fbfbfb;
  cursor: pointer;
}
.imageBtn img {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #cdd4d9;
}
.imageBtn.checked {
  background: none;
  border: 1px solid #ff290a;
}
.imageBtn.checked:hover {
  box-shadow: none;
  border: 1px solid #ff290a;
}
.imageBtn:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  border: solid 1px #f1f1f1;
}
.imageBtn:hover.checked {
  border: 1px solid #ff290a;
}
.imageBtn.checked img {
  border: 1px solid #ff290a;
}
.wheelBtn {
  width: 140px;
}
#nextButton {
  width: 128px;
  height: 40px;
  color: white;
  border-radius: 4px;
  background-color: #ff290a;
}
button {
  background: white;
  border: solid 1px #cdd4d9;
  border-radius: 4px;
  margin-bottom: 8px;
  min-height: 35px;
  font-size: 12px;
  color: #080e24;
  font-family: Roboto;
}
button.checked {
  background: #2b3042;
  color: white;
}
button.disabled {
  pointer-events: none;
  cursor: default;
  background: #bbb1b1;
  color: white;
}
button:active {
  border-style: solid;
  border-color: gray;
}
button:focus {
  outline: none;
}
#plate-container button {
  width: 142px;
  height: 44px;
}
.heightBtn {
  min-width: 90px;
}
.orangeBorderBtn {
  border: 1px solid #cdd4d9;
  cursor: pointer;
}
.orangeBorderBtn.checked {
  border: 1px solid white;
  box-shadow: 0 0 0 1pt #ff290a;
}
.orangeBorderBtn.checked:hover {
  box-shadow: 0 0 0 1pt #ff290a;
}
.orangeBorderBtn:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}
.nodisplay {
  display: none;
}
.smallBtn {
  width: 30px;
  height: 30px;
  font-weight: bold;
}
.colorBtn {
  width: 140px;
  display: flex;
  flex-direction: column;
  height: 92px;
  border-radius: 4px;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
  border: 1px solid transparent;
  /* Hack pour éviter un léger saut quand l'élément est check */
  cursor: pointer;
}
.colorBtn .colorCircle {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #cdd4d9;
}
.colorBtn.checked {
  background: #fbfbfb;
  border: 1px solid #ff290a;
}
.colorBtn.checked:hover {
  box-shadow: none;
  border: 1px solid #ff290a;
}
.colorBtn:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  border: solid 1px #f1f1f1;
}
.blue {
  background-color: #005e83;
}
.gray {
  background-color: #383e42;
}
.yellow {
  background-color: #ff9b00;
}
.red {
  background-color: #a72920;
}
.green {
  background-color: #61993b;
}
hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #cdd4d9;
}
.sectionTop {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  margin-top: 11px;
}
.sectionTop .tooltipOpen {
  width: 18px!important;
  max-width: 18px!important;
  height: 18px!important;
  min-height: 18px!important;
  background: #419bf9;
  border: 1px solid #419bf9;
  color: white;
  border-radius: 10px;
  margin-bottom: 2px;
  cursor: pointer;
  padding: 0px;
  flex-grow: 0;
}
.sectionTop .tooltipOpen:hover {
  background: #1e7ada;
}
.sectionTop .tooltipClose {
  width: 20px;
  height: 20px;
  min-height: 20px;
  cursor: pointer;
}
.sectionTop.withTitle {
  justify-content: space-between;
  margin-top: 0px;
}
.infoPopup {
  width: 230px;
  height: auto;
  top: 39px;
  position: absolute;
  border: 1px solid #2b3042;
  border-radius: 4px;
  background: white;
  font-size: 14px;
  color: #3c4767;
  padding: 30px;
  line-height: 1.33;
  box-shadow: 0 9px 15px -9px rgba(0, 0, 0, 0.5);
  transition: 0.2s ease-out;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  z-index: 1;
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
}
.infoPopup.hidden {
  -webkit-transform: scaleX(0) scaleY(0);
  transform: scaleX(0) scaleY(0);
  transition: 0.2s ease-in;
  opacity: 0;
}
.infoPopup p {
  margin-bottom: 20px;
}
.infoPopup p .bold {
  font-weight: 700;
}
.infoPopup.second {
  top: 148px;
}
.accessoryBlock {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.accessoryBlock.nodisplay {
  display: none;
}
.accessoryBlock .accessoryBtn {
  width: 30px;
  height: 30px;
  background-color: #ff2a09;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
  padding: 0px;
}
.accessoryBlock .accessoryBtn.disabled {
  opacity: 0.2;
}
.accessoryBlock .accessoryBtn.left {
  border-radius: 4px 0 0 4px;
  margin-right: 1px;
}
.accessoryBlock .accessoryBtn.right {
  border-radius: 0 4px 4px 0;
}
.accessoryBlock .accessoryBtn:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  background-color: #ca2005;
}
.accessoryBlock .accessoryBtn:active {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background-color: #ac1a03;
}
.accessoryBlock .accessoryLeft {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
}
.accessoryBlock .accessoryLeft .accessoryTxt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.accessoryBlock .accessoryLeft .roundImg {
  margin-right: 10px;
}
.accessoryBlock .accessorieRight {
  display: flex;
  flex-direction: row;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
.svg-step-button,
.svg-step-separator {
  float: right;
  z-index: 5;
  position: absolute;
  right: -10px;
  top: 0px;
  overflow: visible;
}
.svg-step-separator {
  z-index: 3;
  right: -10px;
}
.svg-step-separator path {
  stroke: #a4b4be;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: miter;
}
.step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 60px;
  height: 100%;
  background: white;
  width: 100%;
  color: #080e24;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  font-family: "Roboto";
  transition: 0.5s;
}
.step-button .step-button-image {
  max-height: 20px;
  margin-right: 5px;
}
svg path {
  transition: 0.5s;
}
.step-button-container.selected .step-button {
  background: #ff290a;
  transition: 0.5s;
  color: white;
  z-index: 4;
}
.step-button-container.selected svg path {
  fill: #ff290a;
  stroke: #ff290a;
  transition: 0.5s;
}
.step-button-container {
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
  cursor: pointer;
}


#config-steps
{
    overflow: hidden;
    width: 100%;
    align-self: center;
    height: 60px;
    min-height: 60px;
    background-clip: padding-box;
    display: flex;
    border-radius: 4px;
    justify-content: space-around;
    box-sizing: border-box;
    box-shadow: 0 5px 8px -7px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
@media (min-width: 768px) {
#config-steps
    {
        width: 60%;
}
}
@media (min-width: 992px) {
#config-steps
    {
        width: 600px;
}
}


/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#bottomBtns {
  display: flex;
  justify-content: space-between;
  width: 325px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 18px;
}
#bottomBtns #previousButton {
  cursor: pointer;
  width: 50px;
  height: 50px;
  color: black;
  border-radius: 4px;
  border-color: #ff290a;
  background-color: white;
  font-size: 14px;
  transition: 0.2s ease-out;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
#bottomBtns #previousButton.hidden {
  transition: 0.2s ease-in;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
}
#bottomBtns #previousButton:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  background-color: #ff290a;
}
#bottomBtns #previousButton:active {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background-color: #ac1a03;
  border: none;
}
#bottomBtns #previousButton img {
  width: 18px;
  height: 18px;
}
#bottomBtns #nextButton,
#bottomBtns #orderButton,
#bottomBtns #saveButton {
  cursor: pointer;
  width: 150px;
  height: 50px;
  color: white;
  border-radius: 4px;
  background-color: #ff290a;
  border-style: none;
  font-size: 14px;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  transition: 0.2s ease-out;
}
#bottomBtns #nextButton:hover,
#bottomBtns #orderButton:hover,
#bottomBtns #saveButton:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  background-color: #ca2005;
}
#bottomBtns #nextButton:active,
#bottomBtns #orderButton:active,
#bottomBtns #saveButton:active {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background-color: #ac1a03;
}
#bottomBtns #saveButton {
  width: 100px;
  background-color: white;
  color: #080e24;
  border: solid 1px #ff290a;
  font-size: 12px;
}
#bottomBtns #saveButton:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  background-color: #ff290a;
  color: white;
}
#bottomBtns #saveButton:active {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background-color: #ac1a03;
}
#bottomBtns #nextButton.disabled {
  transition: 0.2s ease-in;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
}
#bottomBtns #nextButton.hidden {
  display: none;
}
#bottomBtns #orderButton.disabled,
#bottomBtns #saveButton.disabled {
  display: none;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#configureBtnContainer {
  display: flex;
  flex-direction: column;
  width: 475px;
  height: 61px;
  margin-right: 25px;
  align-items: flex-start;
  transition: 0.2s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#configureBtnContainer #configureButton {
  cursor: pointer;
  width: 128px;
  height: 40px;
  color: white;
  border-radius: 4px;
  background-color: #ff290a;
  border-style: none;
  font-size: 14px;
  transition: 0.2s ease-out;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  margin-top: 10px;
}
#configureBtnContainer #configureButton.disabled {
  -webkit-transform: scaleX(0) scaleY(0);
  transform: scaleX(0) scaleY(0);
  opacity: 0;
  transition: 0.2s ease-in;
}
#configureBtnContainer #configureButton:hover {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  background-color: #ca2005;
}
#configureBtnContainer #configureButton:active {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.26);
  background-color: #ac1a03;
}
#configureBtnContainer.disabled {
  height: 0px;
  transition: 0.2s ease-in;
  width: 0px;
}
#configureBtnContainer hr.disabled {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  opacity: 0;
  transition: 0.2s ease-in;
}
#configureBtnContainer #accroche {
  font-size: 18px;
  font-weight: 500;
}
#configureBtnContainer .bold {
  font-weight: 700;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#infoBlockContainer {
  display: flex;
  flex-direction: column;
  width: 475px;
  min-height: 415px;
  height: auto;
  margin-top: 40px;
  align-items: flex-start;
  transition: 0.2s ease-out;
  text-align: left;
  font-size: 15px;
  font-family: Roboto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#infoBlockContainer #accroche {
  font-size: 22px;
  font-weight: 700;
}
#infoBlockContainer .item {
  display: flex;
  height: 70px;
}
#infoBlockContainer .item .item-plus {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
#infoBlockContainer .item .item-right {
  display: flex;
  flex-direction: column;
}
#infoBlockContainer .item .item-right .item-title {
  font-weight: 700;
  margin: 0px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#infoBlockContainer .item .item-right .item-text {
  margin: 0px;
}
#infoBlockContainer #pictos {
  margin-left: 25px;
  height: 65px;
}
#infoBlockContainer #pictos #montage {
  height: 65px;
}
#infoBlockContainer #pictos #secu {
  height: 65px;
}
#infoBlockContainer.disabled {
  height: 0px;
  display: none;
  transition: 0.2s ease-in;
}
#infoBlockContainer .bold {
  font-weight: 500;
  font-size: 18px;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#requirement-popup {
  width: 250px;
  height: 125px;
  border: 1px solid #cdd4d9;
  background: white;
  position: absolute;
  border-radius: 4px;
  color: #3c4767;
  padding: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#requirement-popup button {
  cursor: pointer;
}
#requirement-popup button:hover {
  background: #2b3042;
  color: white;
}
#requirement-popup.hidden {
  display: none;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#price {
  float: right;
  color: #666666;
  text-align: left;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: row;
  height: 60px;
  width: 100%;
  justify-content: space-between;
}
#price #price-label {
  height: 20px;
  margin-top: 8px;
  font-size: 16px;
}
#price #container {
  display: flex;
  align-items: baseline;
}
#price #container #price-value {
  font-size: 28px;
  line-height: 40px;
  font-weight: 900;
  color: #080e24;
  margin-right: 10px;
}
#price #container .small-euro {
  font-size: 25px;
}
#price #container #shipping {
  font-size: 13px;
}

/* blue */
/* gray */
/* yellow */
/* red */
/* green */
#mobile-placeholder-view {
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 200;
  position: absolute;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-user-select: none;
}
body {
  background-color: #fff;
}
button {
  touch-action: manipulation;
}
@-moz-document url-prefix() {
  button:active {
    padding: inherit;
  }
}
#blue-frame-top {
  width: 100%;
  height: 42px;
  background-color: #2b3042;
  position: absolute;
  top: 0;
  z-index: 0;
}
#blue-frame-bottom {
  width: 100%;
  height: 18px;
  background-color: #2b3042;
  position: absolute;
  bottom: 0;
  z-index: 0;
}
#blue-frame-right {
  height: 100%;
  width: 18px;
  background-color: #2b3042;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
#blue-frame-left {
  height: 100%;
  width: 18px;
  background-color: #2b3042;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

