body.single-standish_sondage h1.entry-title {
  display: none;
}

body.single-standish_sondage em {
  text-decoration: underline;
  font-style: normal;
}

body.single-standish_sondage b {
  font-size: 0.8em;
}

body.single-standish_sondage hr {
  margin-top: 50px;
}

body.single-standish_sondage div.section {
  display: flex;
}

body.single-standish_sondage div.side {
  flex: 1;
  padding-right: 50px;
}

body.single-standish_sondage div.content {
  flex: 2;
}

textarea.standish-box {
  resize: none;
}

/* Checkbox */
label.standish-checkbox {
  padding-left: 0px;
  font-size: 1.35em;
  line-height: 1;

  display: grid;
  grid-template-columns: 1em auto;
  gap: 1em;
}

label.standish-checkbox input {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: #ff2626;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #000000;
  border-radius: 0.15em;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

label.standish-checkbox input::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ff2626;
  /* ...existing styles */

  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

label.standish-checkbox input:checked::before {
  transform: scale(1);
}

label.standish-checkbox + label.standish-checkbox {
  margin-top: 1em;
}

body.single-standish_sondage .btn-sondage-submit {
  color: #ffffff;
  background: #000000;
}
body.single-standish_sondage .btn-sondage-submit:hover {
  background: #ffffff;
  color: #000000;
}

/* RADIO */
body.single-standish_sondage ul.choices {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}

body.single-standish_sondage ul.choices li{
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

body.single-standish_sondage ul.choices li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

body.single-standish_sondage ul.choices li label{
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
/*  padding: 25px 25px 25px 80px;*/
  padding-left: 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}


body.single-standish_sondage ul.choices li .check{
  display: block;
  position: absolute;
  border: 4px solid #000000;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 18px;
  left: 20px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}



body.single-standish_sondage ul.choices li .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 11px;
  width: 11px;
  top: 3px;
  left: 3px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

body.single-standish_sondage ul.choices input[type=radio]:checked ~ .check {
  border-color: #ff2626;
}

body.single-standish_sondage ul.choices input[type=radio]:checked ~ .check::before{
  background: #ff2626;
}

body.single-standish_sondage ul.choices input[type=radio]:checked ~ label{
  color: #ff2626;
}

/* Sliders */

body.single-standish_sondage .standish-range {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 30px;
}

body.single-standish_sondage .standish-range .range-title {
  font-size: 19px;
  width: 20%;
}
body.single-standish_sondage .standish-range .range-title:last-child {
  text-align: right;
}

body.single-standish_sondage .standish-range .range-container {
  width: 60%;
}

body.single-standish_sondage .range-slider {
  line-height: 36px !important;
  width: 100%;
}

body.single-standish_sondage .range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 5px;
  background: #FFE4E4;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
}
body.single-standish_sondage .range-slider__range::-webkit-slider-thumb {
  z-index: 1000 !important;
  position: relative;
  -webkit-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF2626;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

body.single-standish_sondage .range-slider__range::-moz-range-thumb {
  z-index: 1000 !important;
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #FF2626;
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}


body.single-standish_sondage ::-moz-range-track {
  background: #FFE4E4;
  border: 0;
}

body.single-standish_sondage input::-moz-focus-inner,
body.single-standish_sondage input::-moz-focus-outer {
  border: 0;
}


body.single-standish_sondage ul.range-labels {
  margin: 0 9px;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: space-between;
}

body.single-standish_sondage ul.range-labels li {
  line-height: 36px !important;
  position: relative;
  padding: 0;
  cursor: pointer;
}

body.single-standish_sondage ul.range-labels li::before {
  cursor: pointer;

  position: absolute;
  top: -19px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 6px;
  height: 6px;
  background-color: #FF2626;
  border-radius: 50%;
}

body.single-standish_sondage ul.range-labels li.active::before {
  display: none;
}


/* perceptual-mapping */

body.single-standish_sondage div.perceptual-mapping {
  display: flex;
  justify-content: space-between;
}

body.single-standish_sondage div.perceptual-mapping .image {
  padding-right: 20px;
}

body.single-standish_sondage div.perceptual-mapping-company {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

body.single-standish_sondage div.perceptual-mapping-company select {
  margin-left: 20px;
}

body.single-standish_sondage div.perceptual-mapping-company:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}



@media only screen and (max-width: 1200px) {
  body.single-standish_sondage div.section {
    flex-direction: column;
  }
  body.single-standish_sondage div.side {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body.single-standish_sondage .standish-range .range-title {
    padding-top: 7px;
  }
}

@media only screen and (max-width: 700px) {
  body.single-standish_sondage div.perceptual-mapping {
    flex-direction: column;
  }
  body.single-standish_sondage div.perceptual-mapping .image {
    padding-right: 0;
    padding-bottom: 20px;
  }
  input.standish-input {
    width: 100%;
  }
}

@media only screen and (max-width: 520px) {
  body.single-standish_sondage .standish-range {
    flex-wrap: wrap;
  }
  body.single-standish_sondage .standish-range .range-container {
    order: 2;
    width: 100%;
  }
  body.single-standish_sondage .standish-range .range-title {
    width: 50%;
  }
}


.standish-sondage-popup.error {
  display: none;
  position: fixed;
  left: 50%;
  z-index: 1000;
  width: 24rem;
  background-color: #fafafa;
  box-shadow: 2px 2px 1rem #212121;
  border-radius: 0.25rem;

  margin-left: -12rem;
}
.standish-sondage-popup.error .message {
  background-color: #e74c3c;
  font-weight: bold;
  text-align: center;
  border-radius: 0.25rem 0.25rem 0 0;
  overflow: hidden;
  position: relative;
}
.standish-sondage-popup.error .message:before {
  position: absolute;
  color: #fafafa;
  font-size: 10rem;
  opacity: 0.3;
  top: -2.5rem;
  right: -0.5rem;
}
.standish-sondage-popup.error .message p {
  padding: 0.5rem;
  color: #fafafa;
}
.standish-sondage-popup.error .action {
  padding: 20px;
  width: 100%;
  position: relative;
  
}
.standish-sondage-popup.error .action p {
  margin-bottom: 10px;
}
.standish-sondage-popup.error .action button {
  padding: 10px;
  outline: none;
  border: 0;
  background-color: #e74c3c;
  color: #fafafa;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  border-radius: 0.25rem;
}
.standish-sondage-popup.error .action button:active {
  background-color: #c0392b;
}
