.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-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__carrousel-item-return-button:hover {
  background-color: transparent;
  border: none;
}

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;
  }
}




/********** MASTER ANALYSIS **********/
.hydra-quiz-module__description {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  margin-top: 15px;
}

/* mobile */
@media (max-width: 480px) {
  .hydra-quiz-module__title {
    margin: auto;
    width: 50%;
    line-height: 1.2em;
  }
  .hydra-quiz-module__description {
    width: 65%;
  }
  #ingredient-03 .hydra-ingredients__name {
    width: 220px;
  }
}


/*EDITS*/

@media (max-width: 480px) {
  .hydra-quiz-module__carrousel-item-step--response .hydra-quiz-module__carrousel-item-text {
    width: 80%;
}
}

