#ve_montage {
  line-height: 1.2;
}
#ve_montage p {
  margin-bottom: 0.5rem;
}
.montage-message {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  min-height: 65px;
}
/* #montageOuiMessage {
  background-color: #f5f5f5;
}
#montageNonMessage {
  background-color: #ce0000;
  color: white;
} */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8f8d8d;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  background-image: url("../img/montage.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
input:checked + .slider {
  background-color: #008a2f;
}

input:focus + .slider {
  box-shadow: 0 0 1px #008a2f;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
  background-image: url("../img/montage-green.svg");
}

.switch-text {
  font-size: 18px;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.montage-price {
  font-size: 30px;
}

