/* Mattress test CSS */
.mattresstest-pulse-button {
  position: relative;
  float: left;
  width: 55px;
  height: 55px;
  border: none;
  box-shadow: 0 0 0 0 #daebf8;
  border-radius: 50%;
  background-color: #daebf8;
  background-image: url(../images/icons/bed.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  display: inline-block;
}

.pulse-button:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
.mattresstest-button-text {
  float: left;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 55px;
  color: #1b77bc;
  display: inline-block;
}

.mattresstest-banner {
  position: relative;
  height: 450px;
  padding-top: 60px;
  background: url(../images/homepage-banner.jpg) no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .mattresstest-banner {
    background-position: 70% center;
  }
}
.mattresstest-banner .mattresstest-description {
  margin-bottom: 20px;
}
.mattresstest-banner .mattresstest-description h3 {
  max-width: 570px;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 500;
  line-height: 54px;
  color: #2a3a49;
  text-transform: uppercase;
}
.mattresstest-banner .mattresstest-description p {
  max-width: 430px;
  font-size: 18px;
  line-height: 25px;
}
.mattresstest-banner .content-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  text-decoration: none;
  /* Makes sure the link   doesn't get underlined */
  z-index: 10;
  /* raises anchor tag above everything else in div */
  background-color: white;
  /*workaround to make clickable in IE */
  opacity: 0;
  /*workaround to make clickable in IE */
  filter: alpha(opacity=1);
  /*workaround to make clickable in IE */
}

#product .mattresstest-banner {
  margin-top: 20px;
  margin-bottom: 40px;
  height: 300px;
  padding-top: 25px;
  background: url(../images/product-banner.jpg) no-repeat;
  background-position: center top;
}
#product .mattresstest-banner .mattresstest-description h3 {
  font-size: 35px;
  line-height: 44px;
}

.mattresstest-wrap {
  text-align: center;
  padding: 40px 0 0 0;
}
.mattresstest-wrap h1.mattresstest-title {
  font-family: "Dosis", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #2a3a49;
  line-height: 57px;
  margin-bottom: 2rem;
}
.mattresstest-wrap h2.mattresstest-title {
  font-family: "Dosis", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #2a3a49;
  line-height: 57px;
  margin-bottom: 2rem;
}
.mattresstest-wrap h2.name {
  font-family: "Dosis", sans-serif;
  font-size: 28px;
}
.mattresstest-wrap .mattresstest-description {
  max-width: 570px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 10px;
}
.mattresstest-wrap .mattresstest-description p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #2a3a49;
}
.mattresstest-wrap .mattresstest-description .mattresstest-link {
  height: 85px;
  padding-left: 95px;
  font-size: 16px;
  font-weight: 600;
  line-height: 85px;
  color: #1b77bc;
  background: url(../images/icons/bed.svg) no-repeat;
  background-position: 0;
  background-size: 85px 85px;
  display: inline-block;
}
.mattresstest-wrap .mattresstest-button-wrap {
  margin: 0 auto;
  margin-top: 40px;
}
.mattresstest-wrap .mattresstest-button-wrap .mattresstest-button-content {
  display: inline-block;
  cursor: pointer;
}
.mattresstest-wrap .question-list {
  max-height: 0;
  margin-bottom: 60px;
  -webkit-transition: all 0.75s ease-in;
  -moz-transition: all 0.75s ease-in;
  -o-transition: all 0.75s ease-in;
  transition: all 0.75s ease-in;
  overflow: hidden;
}
.mattresstest-wrap .question-list.show {
  max-height: 4800px;
}
.mattresstest-wrap .question-list.overflow-visible {
  overflow: visible;
}
.mattresstest-wrap .question-list .question .question-options-wrap .first,
.mattresstest-wrap .question-list .question .question-options-wrap .second {
  -webkit-transition: all 0.75s ease-in;
  -moz-transition: all 0.75s ease-in;
  -o-transition: all 0.75s ease-in;
  transition: all 0.75s ease-in;
}
.mattresstest-wrap .question-list .question .question-options-wrap .second {
  max-width: 0;
  overflow: hidden;
}
.mattresstest-wrap .question-list.double .question.size {
  max-height: 100%;
}
/*.mattresstest-wrap .question-list.double .question.side {*/
/*  display: block;*/
/*}*/
.mattresstest-wrap
  .question-list.double
  .question
  .question-options-wrap
  .options-list-wrap {
  width: 422px;
  background-image: url(../images/double-bed.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}
.mattresstest-wrap
  .question-list.double
  .question
  .question-options-wrap
  .second {
  max-width: 100%;
  overflow: visible;
}
/* naujas */
.mattresstest-wrap
  .question-list.separate
  .question
  .question-options-wrap
  .second {
  max-width: 100%;
  overflow: visible;
}
/* end */
.mattresstest-wrap .question-list .question {
  position: relative;
  margin-bottom: 20px;
  padding: 30px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 15px 15px 25px 0 rgba(0, 0, 0, 0.05);
  display: none;
}
.mattresstest-wrap .question-list .question.active {
  display: block;
}
.mattresstest-wrap .question-list .question.open .progress {
  display: block;
}
.mattresstest-wrap .question-list.double .progress-single {
  display: none !important;
}
.mattresstest-wrap .question-list:not(.double) .progress-double {
  display: none !important;
}
.mattresstest-wrap .question-list:not(.double) .question.side {
  display: none !important;
}
.progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 16px;
  border-radius: 16px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  display: none;
}
.progress .fill {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
  background: rgb(78,216,153);
  background: linear-gradient(90deg, rgba(78,216,153,1) 0%, rgba(39,175,97,1) 100%);
  border-radius: 16px;
}
.progress .fill.empty {
  width: 100% !important;
  color: rgb(139, 139, 139);
  background: transparent;
}
.mattresstest-wrap .question-list .question.active .question-text {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
.mattresstest-wrap .question-list .question.open .question-text {
  background-image: url(../images/icons/arrow-up.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 7px;
}
.mattresstest-wrap .question-list .question.open .question-options-wrap {
  max-height: 650px;
}
.mattresstest-wrap .question-list .question.open .continue-test-button,
.mattresstest-wrap .question-list .question.open .show-results-button {
  opacity: 1;
}
/* .mattresstest-wrap .question-list .question.type .option {
        width: 110px;
        display: inline-block; } */
.mattresstest-wrap .question-list .question.details .option {
  width: 110px;
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options {
  max-width: 100%;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option {
  min-width: 200px;
  margin: 20px 25px;
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option
  .mattress {
  width: 195px;
  height: 209px;
  background-image: url(../images/size.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option
  .mattress.size-140x200 {
  background-image: url(../images/size-140x200.jpg);
  background-position: center center;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option
  .mattress.size-160x200 {
  background-image: url(../images/size-160x200.jpg);
  background-position: center center;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option
  .mattress.size-180x200 {
  background-image: url(../images/size-180x200.jpg);
  background-position: center center;
}
.mattresstest-wrap
  .question-list
  .question.size
  .question-options-wrap
  .question-options
  .option
  .mattress.size-non-standard {
  background-image: url(../images/size-non-standart.jpg);
  background-position: center center;
}
/*.mattresstest-wrap .question-list .question.side {*/
/*  display: none;*/
/*}*/
.mattresstest-wrap .question-list .question.health-problem .options-list-wrap {
  padding-top: 265px;
}
.mattresstest-wrap .question-list .question label {
  font-size: 16px;
  line-height: 36px;
  color: rgba(55, 75, 91, 0.7);
}
.mattresstest-wrap .question-list .question label.image {
  line-height: 0;
}
.mattresstest-wrap .question-list .question input {
  margin-bottom: 15px;
}
.mattresstest-wrap .question-list .question .option input[type="radio"] {
  display: none;
}
.mattresstest-wrap
  .question-list
  .question
  .option
  input[type="radio"]
  + label {
  padding-left: 30px;
  background-image: url(../images/icons/radio.svg);
  background-position: left center;
  background-repeat: no-repeat;
}
@media (max-width: 374px) {
  .mattresstest-wrap .question-list .question .option input[type="radio"] + label {
    text-align: left;
    width: 100%;
    line-height: 24px;
  }
}
.mattresstest-wrap
  .question-list
  .question
  .option
  input[type="radio"]:checked
  + label {
  background-image: url(../images/icons/radio-checked.svg);
  background-position: left center;
}
.mattresstest-wrap
  .question-list
  .question
  .option.error
  input[type="radio"]
  + label {
  padding-left: 30px;
  background-image: url(../images/icons/radio-error.svg);
  background-position: left center;
  background-repeat: no-repeat;
}
.mattresstest-wrap .question-list .question input[type="text"] {
  width: 285px;
  height: 45px;
  padding: 10px;
  border: 1px solid rgba(151, 151, 151, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #ffffff;
}
.mattresstest-wrap .question-list .question input[type="text"].error {
  border-color: #ef5a5a;
}
.mattresstest-wrap .question-list .question .options-list-wrap {
  position: relative;
  width: 300px;
  min-height: 495px;
  margin: 0 auto;
  padding: 0 50px;
  padding-top: 280px;
  background-image: url(../images/single-bed.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}
.mattresstest-wrap .question-list .question .options-list-wrap .side-switcher {
  width: 75px;
  height: 75px;
  margin: 0 auto;
  background-image: url(../images/icons/switch.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.mattresstest-wrap .question-list .question .options-list-wrap .options-list {
  text-align: left;
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list.right
  .details {
  left: 30px;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .details {
  position: absolute;
  top: -160px;
  left: 40px;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .details
  .gender {
  width: 55px;
  height: 55px;
  border: none;
  box-shadow: 0 0 0 0 #daebf8;
  border-radius: 50%;
  background-color: #daebf8;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .details
  .gender.men {
  background-image: url(../images/icons/men.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .details
  .gender.women {
  background-image: url(../images/icons/women.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .details
  .name {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .option
  input,
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .option
  label {
  margin-bottom: 0;
}
.mattresstest-wrap
  .question-list
  .question
  .options-list-wrap
  .options-list
  .option
  label {
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.mattresstest-wrap .question-list .question .question-text {
  margin-bottom: 0;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  color: #2a3a49;
  background-image: url(../images/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 7px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .mattresstest-wrap .question-list .question .question-text {
    padding: 15px 15px 10px 0;
  }
}
.mattresstest-wrap .question-list .question .question-options-wrap {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.75s ease-in;
  -moz-transition: all 0.75s ease-in;
  -o-transition: all 0.75s ease-in;
  transition: all 0.75s ease-in;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 40px;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options
  .genders-wrap {
  width: 285px;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options
  .left {
  float: left;
  float: none;
  display: inline-block;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options
  .right {
  float: right;
  width: 285px;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options
  .options-list.left {
  position: absolute;
  left: 60px;
}
.mattresstest-wrap
  .question-list
  .question
  .question-options-wrap
  .question-options
  .options-list.right {
  position: absolute;
  left: 250px;
}
.mattresstest-wrap .question-list .question .question-note {
  width: 464px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(55, 75, 91, 0.7);
  text-align: center;
}
.mattresstest-wrap .question-list .question .continue-test-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 45px;
  text-align: center;
  color: #1a76bb;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #cfcfcf;
  box-sizing: border-box;
  background: white;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}
.mattresstest-wrap
  .question-list
  .question
  .continue-test-button
  .continue-test-button-text {
  cursor: pointer;
}
.mattresstest-wrap .question-list .question .show-results-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  border: none;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  box-sizing: border-box;
  background: linear-gradient(270deg, #409bde 0%, #1a76bb 100%);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

/*# sourceMappingURL=mattresstest.css.map */

/* nauji pakeitimai */

.second-col {
  display: none;
}

.col-details {
  display: none;
}

.question-text-two {
  display: none;
}

.separate .size .question-text {
  display: none;
}
.separate .size .question-text-two {
  display: block;
}

.separate .question-note {
  display: none;
}

.separate .second-col {
  display: block;
}

.separate .d-flex {
  display: flex;
  justify-content: space-between;
}

.separate .col-details {
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 20px 0;
}

@media (max-width: 900px) {
  .separate .d-flex {
    flex-direction: column;
  }
  .separate .second-col {
    margin-top: 10px;
  }
}

.mattresstest-wrap
  .question-list.separate
  .question.category
  .question-options-wrap
  .question-options {
  max-width: 900px;
}

.mattresstest-wrap
  .question-list.separate
  .question
  .question-options-wrap
  .options-list-wrap {
  width: 422px;
  background-image: url(../images/double-bed.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}

.mattresstest-wrap .question-list .question.open .question-text-two {
  background-image: url(../images/icons/arrow-up.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 7px;
}

.mattresstest-wrap .question-list .question .question-text-two {
  margin-bottom: 0;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  color: #2a3a49;
  background-image: url(../images/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 7px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.mattresstest-wrap .question-list .question.active .question-text-two {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.col-details .details .gender {
  width: 55px;
  height: 55px;
  border: none;
  box-shadow: 0 0 0 0 #daebf8;
  border-radius: 50%;
  background-color: #daebf8;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  display: inline-block;
}

.col-details .details .gender.men {
  background-image: url(../images/icons/men.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.col-details .details .gender.women {
  background-image: url(../images/icons/women.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.matt-double-separate {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 700px) {
  .mattresstest-wrap
    .question-list
    .question
    .question-options-wrap
    .question-options
    .right {
    width: 100%;
  }
  #module-mp_mattresstest-test
    .mattresstest-wrap
    .question-list
    .question
    input[type="text"] {
    width: 70vw;
  }

  .mattresstest-wrap
    .question-list
    .question
    .question-options-wrap
    .question-options
    .left {
    margin-bottom: 30px;
  }

  .mattresstest-wrap
    .question-list
    .question
    .question-options-wrap
    .question-options
    .genders-wrap {
    width: 100%;
  }

  .mattresstest-wrap .question-list.show {
    max-height: 5500px;
  }
}

@media (max-width: 500px) {
  .mattresstest-wrap .question-list .question label {
    font-size: 14px;
  }

  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .options-list-wrap {
    width: 346px;
  }

  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .options-list-wrap {
    width: 346px;
  }

  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .question-options
    .options-list.left {
    left: 28px;
  }
  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .question-options
    .options-list.right {
    left: 200px;
  }
  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .question-options
    .options-list.left {
    left: 30px;
  }
  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .question-options
    .options-list.right {
    left: 204px;
  }
}

@media (max-width: 374px) {

  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .options-list-wrap {
    width: 300px;
  }

  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .options-list-wrap {
    width: 300px;
  }

  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .question-options
    .options-list.left {
    left: 10px;
  }
  .mattresstest-wrap
    .question-list.separate
    .question
    .question-options-wrap
    .question-options
    .options-list.right {
    left: 165px;
  }
  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .question-options
    .options-list.left {
    left: 10px;
  }
  .mattresstest-wrap
    .question-list.double
    .question
    .question-options-wrap
    .question-options
    .options-list.right {
    left: 165px;
  }
}

/* end */
@media (max-width: 600px) {
  .mattresstest-wrap
    .question-list
    .question
    .question-options-wrap
    .question-options
    .right {
    width: 100%;
  }
  #module-mp_mattresstest-test
    .mattresstest-wrap
    .question-list
    .question
    input[type="text"] {
    width: 70vw;
  }
}

#products .name {
  text-align: left;
  margin-bottom: 20px;
  color: #2a3a49;
  font-size: 24px;
  margin-top: 25px;
}

@media (max-width: 1024px) {
  #products .name {
    font-size: 20px;
    text-align: center;
  }
}

/* end */
