.hydra-quiz-module {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  --CLARINS-FONT: "ClarinsRegular", "Clarins";
  --GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", Helvetica, Arial, sans-serif;
  --GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica, Arial, sans-serif;
  --GOTHAM-XLIGHT: "Gotham_Light";
  --FONT-SIZE: 14px;
  font-family: var(--GOTHAM-BOOK);
  font-size: var(--FONT-SIZE);
  --WIDTH: 1600px;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
  color: #004f6c;
  text-align: center;
  max-width: 1600px;
}

.hydra-quiz-module::before,
.hydra-quiz-module::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
}

.hydra-quiz-module::before {
  background-position: top left;
  background-image: url(../images/background-left.jpg);
  left: 0;
}

.hydra-quiz-module::after {
  background-position: top right;
  background-image: url(../images/background-right.jpg);
  right: 0;
}

.hydra-quiz-module * {
  box-sizing: border-box;
}

.hydra-quiz-module__title {
  font-size: 48px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.hydra-quiz-module__description {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  margin-top: 15px;
}

.hydra-quiz-module__carrousel-item {
  width: 460px;
  height: 546px;
  color: #fff;
  transition: 0.3s;

  margin: 50px 20px;
  perspective: 1000px;

  /* Remove this if you don't want the 3D effect */
}

.hydra-quiz-module__carrousel-item-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  transition: 0.3s;
}

.hydra-quiz-module__carrousel-item-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.4s;
  transform-style: preserve-3d;
  border-radius: 10px;
}

.hydra-quiz-module__carrousel-item[is-backward-card="true"] .hydra-quiz-module__carrousel-item-wrapper {
  transform: rotateY(180deg);
}

.hydra-quiz-module__carrousel-item {
  position: relative;
}

.hydra-quiz-module__carrousel-item-step--question {

  background-image: linear-gradient(to top, #78cee2, #b6e5f2);
  background-color: #78cee2;
  transition: 0.3s;
}

.hydra-quiz-module__carrousel-item[is-answered="true"] .hydra-quiz-module__carrousel-item-step--question {
  background-image: none;
  background-color: #046a8e;
  pointer-events: none;
}

.hydra-quiz-module__carrousel-item-step--question,
.hydra-quiz-module__carrousel-item-step--response {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.hydra-quiz-module__carrousel-item-step--response {
  padding: 0;
  background-color: #046a8e;
  transform: rotateY(180deg);
}

.hydra-quiz-module__carrousel-item-text {
  font-size: 35px;
  line-height: 39px;
  flex-basis: 390px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.hydra-quiz-module__carrousel-item-text span {
  display: block; 
  padding-bottom: 20px;
}

.hydra-quiz-module__carrousel-item-step--question .hydra-quiz-module__carrousel-item-text {
  max-width: 320px;
  width: 100%;
}

.hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text {
  max-width: 390px;
  width: 100%;
}

.hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text>span:nth-of-type(2) {
  font-size: 18px;
  line-height: 22px;
}

.hydra-quiz-module__carrousel-item-container-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid 1px #fff;
  flex-basis: 156px;
  padding-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
  max-width: 325px;
  width: 100%;
  margin: 0 auto;
}

.hydra-quiz-module__carrousel-item[is-answered="true"] .hydra-quiz-module__carrousel-item-input {
  display: none !important;
}

.hydra-quiz-module__carrousel-item-input input {
  -webkit-appearance: none;
  border: solid 1px #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0;
  opacity: 1;
}

.hydra-quiz-module__carrousel-item-input label {
  cursor: pointer;
  font-weight: 400;
  font-family: var(--GOTHAM-MEDIUM);
  font-size: 20px;
  line-height: 20px;
  padding: 0;
  padding-left: 10px;
}

.hydra-quiz-module__carrousel-item-input input:checked+label {
  color: #fff;
}

.hydra-quiz-module__carrousel-item-input input::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.3s;
}

.hydra-quiz-module__carrousel-item-input input[type="radio"]+label:before {
  display: none;
}

.hydra-quiz-module__carrousel-item-input input:checked::before {
  width: 11px;
  height: 11px;
  background-color: #fff;
}

.hydra-quiz-module__carrousel-item-input {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 13px;
}

.hydra-quiz-module__carrousel-item-return-button {
  background-color: transparent;
  min-width: auto;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.hydra-quiz-module .hydra-quiz-module__carrousel-item-return-button {
  background: transparent;
  transition:background-color 0.3s;
  border-color: transparent;
  border-radius: 5px;
  overflow: hidden;
  } 

.hydra-quiz-module .hydra-quiz-module__carrousel-item-return-button:hover {
  background-color: transparent;
}

button.hydra-quiz-module__carrousel-item-return-button:not(.not-tabbable):active,
button.hydra-quiz-module__carrousel-item-return-button:not(.not-tabbable):focus {
  outline: none !important;
}

.hydra-quiz-module__carrousel-item-return-button img {
  width: 41px;
}

@media(min-width:1024px) {
  /*
  .hydra-quiz-module__carrousel {
    margin-left: calc(-530 / 1600 * var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel .slick-dots {
    margin-left: calc(265 / 1600 * var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel .slick-dots li:last-child {
    display: none;
  }*/
}

.hydra-quiz-module__carrousel .slick-dots button {
  width: 8px;
  height: 8px;
  min-width: auto;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  cursor: pointer;

}

.hydra-quiz-module__carrousel .slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 0;
  bottom: 0;
}

.hydra-quiz-module__carrousel .slick-dots li {
  margin: 0 3px;
  background-color: #99d6e7;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hydra-quiz-module__carrousel .slick-dots li.slick-active {
  background-color: #004f6c;
}

.hydra-quiz-module__wrapper {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1360px) and (min-width: 768px) {

  .hydra-quiz-module::before,
  .hydra-quiz-module::after {
    width: 50%;
    background-size: cover;
  }

  .hydra-quiz-module::before {
    background-position: top left -300px;
  }

  .hydra-quiz-module::after {
    background-position: top right -300px;
  }
}

@media screen and (max-width: 767px) {

  .hydra-quiz-module__carrousel-item-step {
    transition: none;
  }

  .hydra-quiz-module__carrousel-item-wrapper {
    /*  transition: none;*/
  }

  .hydra-quiz-module__carrousel-item {
    width: calc(250/ 375 *var(--WIDTH-ANIM));
    height: calc(370/ 375 *var(--WIDTH-ANIM));
    margin: calc(30/ 375 *var(--WIDTH-ANIM)) calc(10/ 375 *var(--WIDTH-ANIM));
    /* perspective: unset;*/

  }

  .hydra-quiz-module__carrousel-item-step--question .hydra-quiz-module__carrousel-item-text {
    max-width: calc(220/ 375 *var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel-item-text {
    font-size: calc(18/ 375 *var(--WIDTH-ANIM));
    line-height: calc(24/ 375 *var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel-item-container-inputs {
    max-width: calc(252/ 375 *var(--WIDTH-ANIM));
    flex-basis: calc(90/ 375 *var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text {
    max-width: calc(220/ 375 *var(--WIDTH-ANIM));
    flex-basis: calc(250/ 375 *var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel-item-step--question,
  .hydra-quiz-module__carrousel-item-step--response {
    height: calc(370/ 375 *var(--WIDTH-ANIM));
  }

  .hydra-quiz-module__carrousel-item[is-backward-card="true"] .hydra-quiz-module__carrousel-item-wrapper {
    /*transform: none;*/
  }

  .hydra-quiz-module__carrousel-item .hydra-quiz-module__carrousel-item-step--response {
    /*display: none;
   transform: none;*/
  }



  .hydra-quiz-module__carrousel-item[is-backward-card="true"] .hydra-quiz-module__carrousel-item-step--response {
    display: flex;
  }

  .hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text>span:nth-of-type(2) {
    font-size: calc(14/ 375 *var(--WIDTH-ANIM));
    line-height: calc(20/ 375 *var(--WIDTH-ANIM));
    max-width: calc(220/ 375 *var(--WIDTH-ANIM));
    /*padding-top: calc(20/ 375 *var(--WIDTH-ANIM));*/
    display: block;
  }

  .hydra-quiz-module::before,
  .hydra-quiz-module::after {
    display: block;
  }

  .hydra-quiz-module::before {
    background-image: url(../images/background-left-mobile.jpg);
  }

  .hydra-quiz-module::after {
    background-image: url(../images/background-right-mobile.jpg);
  }

  .hydra-quiz-module__title {
    font-size: 35px;
  }

  .hydra-quiz-module__description {
    font-size: 18px;
    line-height: 22px;
    margin-top: 0;
  }

  .hydra-quiz-module {
    padding: 40px 0;
  }

  .hydra-quiz-module__carrousel .slick-dots {
    margin-top: 50px;
  }
}

@media screen and (max-width: 374px) {

  .hydra-quiz-module::before,
  .hydra-quiz-module::after {
    display: none;
  }
}

.hydra-quiz-module__carrousel .slick-dots li {
  background-color: #fff;
  padding: 0;
  margin: 3px;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  cursor: pointer;
}


/*  */
.hydra-quiz-module__carrousel .slick-arrow {
  display: none;
  background-image: url(../images/arrow-blue.svg);
}
.hydra-quiz-module__carrousel .slick-arrow::after {
  display: none;
}
.hydra-quiz-module__carrousel .slick-arrow {
  background-color: #fff;
  height: 46px !important;
  width: 26px !important;
  background-image: url(../images/arrow.svg);
  background-size: 100% auto;
  position: absolute;
  z-index: 2;
  top: calc(50% - 23px) !important;
  font-size: 0;
  border: 0 !important;
  background-color: transparent;
  cursor: pointer;
  /*****/
  -webkit-transform: none;
  transform: none;
  min-width: unset;
  padding: 0px;
  outline: 0px solid #000 !important;
  text-decoration: none;
  z-index: 1;
}
.hydra-quiz-module__carrousel .slick-arrow:focus,
.hydra-quiz-module__carrousel .slick-arrow:hover {
    outline: 0px solid #000 !important;
}

.hydra-quiz-module__carrousel .slick-arrow {
    display: none;
    background-image: url(../images/arrow-blue.svg);
}

.hydra-quiz-module__carrousel .slick-arrow:active {
    outline: 0px solid #000 !important;
}
.hydra-quiz-module__carrousel .slick-prev {
  left: 20px;
  transform: scaleX(-1);
}
.hydra-quiz-module__carrousel .slick-next {
  right: 24px;
}

.hydra-quiz-module__carrousel .slick-prev, button.slick-next.slick-arrow, .hydra-quiz-module__carrousel .slick-arrow {
  outline: none !important;
  border: none !important;
}











.hydra-quiz-module::before {
  display: block !important;
}
.PDP-Free-Block .hydra-quiz-module {
  background-color: transparent;
}





.hydra-quiz-module__description {
  width: 40%;
  margin: auto;
}
.hydra-quiz-module__carrousel .slick-dots li {
  background-color: #d3cfcf;
}
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
  .hydra-quiz-module__description {
    width: 64%;
  }
}
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
  
  
  
}
@media (max-width: 480px) {
  .hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text {
    min-height: 15.7em;
  }
  .hydra-quiz-module__title {
    padding-top: 1em;
  }
  .hydra-chronobiologie + .content-asset {
    height: 700px;
  }
  .hydra-quiz-module__carrousel-item-text span {
    padding-bottom: 10px;
  }
}