/*
 * NOTICE OF LICENSE
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement.
 *
 * You must not modify, adapt or create derivative works of this source code
 *
 *  @author    Frederic Moreau
 *  @copyright 2019 - 2024 BeComWeb
 *  @license   LICENSE.txt
 */
/* Header */
#survey_header {
  margin-bottom: 30px;
}
#survey_header h1 {
  text-transform: uppercase;
  color: #555;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0.5em 0 1em;
  padding: 0 0 0.75em;
  border-bottom: 1px solid #eee;
}

#survey_description {
  margin-bottom: 30px;
  padding: 15px;
  background: #fbfbfb;
  border: 1px solid #eee;
  font-size: 14px;
  line-height: 1.3em;
  color: #555;
}
#survey_description p {
  margin-bottom: 0.5em;
}
#survey_description li {
  margin-bottom: 0.25em;
}
#survey_description p, #survey_description li {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
#survey_description p:last-child, #survey_description li:last-child {
  margin-bottom: 0;
}
#survey_description ul, #survey_description ol {
  list-style: initial;
  list-style-position: inside;
}

/* Slider (specific rules) */
#survey_slider {
  margin: 30px auto 15px auto;
  padding: 15px 20px;
  /* "Restart" button */
  /* "Previous" button */
}
#survey_slider .slick-track {
  display: flex;
}
#survey_slider #survey_intro_slide {
  align-self: center;
  text-align: center;
}
#survey_slider #survey_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25em;
  text-transform: uppercase;
}
#survey_slider #survey_slider_start_button {
  display: inline-block;
  color: #fbfbfb;
  background-color: #555;
  border-color: #555;
  padding: 12px 20px;
  line-height: 1em;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s all;
}
#survey_slider #survey_slider_start_button:hover {
  color: #555;
  background-color: #eee;
  border-color: #555;
}
#survey_slider #survey_recommendation_products {
  margin-left: -10px;
  margin-right: -10px;
}
#survey_slider #survey_recommendation_products .survey_recommendation_product_item {
  padding-left: 10px;
  padding-left: 10px;
}
#survey_slider #survey_recommendation_products .srp_item_std .survey_recommendation_product_item_name {
  font-size: 15px;
}
#survey_slider i.material-icons {
  position: relative;
  top: -2px;
}
@media screen and (min-width: 992px) {
  #survey_slider {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  #survey_slider {
    padding: 30px 40px;
  }
}
#survey_slider .survey_slider_restart {
  text-align: center;
  margin: 2em 0 0;
}
#survey_slider .survey_slider_restart button {
  display: inline-block;
  color: #555;
  background-color: #fbfbfb;
  border-color: #555;
  padding: 10px 20px;
  line-height: 1em;
  font-size: 16px;
  transition: 0.2s all;
}
#survey_slider .survey_slider_restart button:hover {
  color: #555;
  background-color: #eee;
  border-color: #555;
}
#survey_slider .survey_slider_restart i {
  font-size: 16px;
}
#survey_slider .survey_slider_previous {
  margin: 2em 0 0;
}
#survey_slider .survey_slider_previous button {
  display: inline-block;
  color: #fbfbfb;
  background-color: #555;
  border-color: #555;
  padding: 8px 16px;
  line-height: 1em;
  font-size: 14px;
  transition: 0.2s all;
}
#survey_slider .survey_slider_previous button i {
  font-size: 12px;
}
#survey_slider .survey_slider_previous button:hover {
  color: #555;
  background-color: #eee;
  border-color: #555;
}

/* Steps (questions) */
.survey_step:not(:first-child) {
  margin-top: 30px;
}
.survey_step .survey_step_title {
  color: #555;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0 0 1em;
  padding: 0 0 0.5em;
  position: relative;
}
.survey_step .survey_step_title:after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 0;
}
.survey_step .survey_question_answers {
  /* Radio buttons */
  /* Dropdown */
}
.survey_step .survey_question_answers label {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2em;
  color: #555;
  margin: 0;
}
.survey_step .survey_question_answers .survey_step_radio {
  padding: 15px;
  background: #fbfbfb;
  border: 1px solid #eee;
  width: 100%;
  position: static;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.survey_step .survey_question_answers .survey_step_radio:not(:last-child) {
  margin: 0 0 5px;
}
.survey_step .survey_question_answers .survey_step_radio .radio {
  min-height: unset;
  height: auto;
  margin-right: 8px;
}
.survey_step .survey_question_answers .survey_step_radio .radio span {
  position: static;
  border-radius: 50%;
  border: 1px solid #888;
}
.survey_step .survey_question_answers .survey_step_radio .radio.hover span, .survey_step .survey_question_answers .survey_step_radio .radio.focus span,
.survey_step .survey_question_answers .survey_step_radio .radio span.checked {
  background-color: #888 !important;
  background-image: none;
  box-shadow: inset 0 0 0 2px #fff;
}
.survey_step .survey_question_answers .survey_step_radio > input[type=radio] { /* only if theme doesnt use JQuery Uniform */
  margin: 0 8px 0 0;
}
.survey_step .survey_question_answers .survey_step_radio label:hover {
  cursor: pointer;
}
.survey_step .survey_question_answers .survey_answer_dropdown {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2em;
  color: #555;
  margin: 0;
  background: #fbfbfb;
  border: 1px solid #eee;
}
.survey_step .survey_question_answers .survey_answer_dropdown:focus {
  box-shadow: 0 1px 3px 0 rgba(100, 100, 100, 0.25);
  outline: none;
}
.survey_step .survey_question_answers.answersHaveImages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio {
  width: auto;
  max-width: 100%;
  margin: 0 15px 15px;
}
@media screen and (min-width: 768px) {
  .survey_step .survey_question_answers.answersHaveImages .survey_step_radio {
    max-width: 250px;
  }
}
@media screen and (min-width: 992px) {
  .survey_step .survey_question_answers.answersHaveImages .survey_step_radio {
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .survey_step .survey_question_answers.answersHaveImages .survey_step_radio {
    max-width: 400px;
  }
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio .survey_answer_radio {
  appearance: none;
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio .survey_answer_label {
  text-align: center;
  font-weight: bold;
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio:hover {
  border-color: #aeaeae;
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio .answerImage {
  margin-bottom: 0.75em;
}
.survey_step .survey_question_answers.answersHaveImages .survey_step_radio .answerImage img {
  max-width: 100%;
  height: auto;
}

/* Recommendations */
#survey_body #survey_recommendation {
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px 0 rgba(100, 100, 100, 0.25);
}

#survey_recommendation_title {
  margin: 0 0 1.25em;
  font-size: 20px;
  padding: 0 0 0.75em;
  font-weight: bold;
  line-height: 1.2em;
  border-bottom: 2px solid #eee;
}

#survey_recommendation_products {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
#survey_recommendation_products .survey_recommendation_product_item {
  margin-top: 30px;
  /* Specific layouts */
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_content {
  height: 100%;
  border: 1px solid #eee;
  background-color: #fbfbfb;
  text-align: center;
  display: flex;
  flex-direction: column;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_img {
  background-color: #fff;
  border-bottom: 4px solid #eee;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_img img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_infos {
  padding: 10px 5px;
  color: #555;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_title {
  flex-grow: 1;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_name {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25em;
  margin: 0 0 0.5em;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_name a {
  color: inherit;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_attributes {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 0 0.5em;
  color: #888;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_desc {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 0 0.5em;
  color: #555;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_price {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25em;
  margin: 0 0 0.5em;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_tax_label {
  font-size: 80%;
  color: #888;
  font-weight: normal;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_link a, #survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_link button {
  color: #fbfbfb;
  background-color: #555;
  border-color: #555;
  padding: 8px;
  line-height: 1.1em;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  transition: 0.2s all ease-in-out;
  white-space: normal;
}
#survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_link a:hover, #survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_link button:hover {
  color: #555;
  background-color: #eee;
  border-color: #555;
}
@media screen and (min-width: 992px) {
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_name {
    font-size: 15px;
    line-height: 1.1em;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_desc {
    font-size: 13px;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_price {
    font-size: 15px;
    line-height: 1em;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_link a, #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_link button {
    padding: 5px 20px;
  }
}
@media screen and (min-width: 600px) {
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full .survey_recommendation_product_item_content, #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_content {
    flex-direction: row;
    text-align: left;
    border-top: 4px solid #eee;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full .survey_recommendation_product_item_img, #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_img {
    flex: 0 0 40%;
    border-bottom: 0;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full .survey_recommendation_product_item_infos, #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_infos {
    align-items: flex-start;
    justify-content: center;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full .survey_recommendation_product_item_infos {
    padding: 15px;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_infos {
    padding: 10px;
  }
  #survey_recommendation_products .survey_recommendation_product_item.srp_item_full .survey_recommendation_product_item_title, #survey_recommendation_products .survey_recommendation_product_item.srp_item_half .survey_recommendation_product_item_title {
    flex-grow: 0;
  }
}
@media screen and (max-width: 399px) {
  #survey_recommendation_products .survey_recommendation_product_item {
    width: 100%;
  }
  #survey_recommendation_products .survey_recommendation_product_item .survey_recommendation_product_item_img img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Alerts */
/* Alerts */
#survey_recommendation .pas_alert {
  margin-bottom: 0;
  text-shadow: none;
  font-size: 100%;
  font-weight: normal;
  line-height: 1.25em;
}
#survey_recommendation .pas_alert:before {
  display: none;
}
#survey_recommendation .pas_alert :last-child {
  margin-bottom: 0;
}
#survey_recommendation .pas_alert a {
  color: inherit;
}
#survey_recommendation .pas_alert img {
  display: block;
  max-width: 100%;
  height: auto;
}
#survey_recommendation .pas_alert p {
  margin: 0 0 0.5em;
}
#survey_recommendation .pas_alert li {
  margin: 0 0 0.25em;
}
#survey_recommendation .pas_alert h1 {
  font-size: 180%;
  font-weight: bold;
  margin: 0 0 0.5em;
  padding: 0;
}
#survey_recommendation .pas_alert h2 {
  font-size: 160%;
  margin: 0 0 0.5em;
  padding: 0;
}
#survey_recommendation .pas_alert h3 {
  font-size: 140%;
  margin: 0 0 0.5em;
  padding: 0;
}
#survey_recommendation .pas_alert h4 {
  font-size: 120%;
  margin: 0 0 0.5em;
  padding: 0;
}

/* Misc */
.survey_slide:focus, .survey_step:focus, .survey_step *:focus {
  outline: none;
}

/* SUBMISSIONS (MY ACCOUNT) */
/* List */
#submissions_list_header {
  background: #f6f6f6;
  font-size: 110%;
  font-weight: bold;
}

#submissions_list_header,
.submission_list_item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#submissions_list_header > *,
.submission_list_item > * {
  padding: 5px 10px;
  border: 1px solid #f6f6f6;
}

.submission_list_date, .submission_list_actions {
  flex: 0 0 180px;
  text-align: center;
}

.submission_list_survey,
.submission_list_alias {
  flex: 0 0 calc(50% - 180px);
}

.submission_body_line_label {
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .submission_body_line_label {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .submission_list_item {
    flex-wrap: wrap;
    border: 1px solid #f6f6f6;
  }
  .submission_list_item > * {
    text-align: center;
    flex: 0 0 100%;
    border: none;
  }
  #submissions_list #submissions_list_header {
    display: none;
  }
}
/* View */
#submission_details section {
  margin-bottom: 15px;
}
#submission_details section:not(:first-child) {
  padding-top: 15px;
  border-top: 3px solid #eee;
}

.survey_details_section_title {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 10px;
}

#submission_details_answer_path > div:last-child {
  font-style: italic;
}

#submission_thread .submission_message {
  display: flex;
}
#submission_thread .submission_message:not(:last-child) {
  margin-bottom: 20px;
}
#submission_thread .submission_message.submission_message_customer {
  flex-direction: row;
}
#submission_thread .submission_message.submission_message_customer .submission_message_box {
  margin-left: 25px;
}
#submission_thread .submission_message.submission_message_merchant {
  flex-direction: row-reverse;
}
#submission_thread .submission_message.submission_message_merchant .submission_message_box {
  margin-right: 25px;
  background-color: #fbfbfb;
}
#submission_thread .submission_message .submission_message_icon {
  flex: 0 0 50px;
}
#submission_thread .submission_message .submission_message_icon img {
  width: 50px;
  height: auto;
}
#submission_thread .submission_message .submission_message_box {
  flex: 1;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #555;
}
@media screen and (min-width: 768px) {
  #submission_thread .submission_message .submission_message_box {
    flex: 0 0 60%;
  }
}
#submission_thread .submission_message .submission_message_meta {
  margin-bottom: 0.5em;
}
#submission_thread .submission_message .submission_message_sender {
  font-weight: bold;
}
#submission_thread .submission_message .submission_message_content {
  font-style: italic;
}

/* Modals */
.survey-modal form label {
  font-size: 100%;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.survey-modal .alert {
  font-size: 100%;
}

#surveyFeedbackModal .survey-modal-alert {
  margin: 0;
  color: #555;
  font-size: 100%;
}
#surveyFeedbackModal .survey-modal-alert p {
  margin-bottom: 0.25em;
  font-size: inherit;
  color: inherit;
}
#surveyFeedbackModal .survey-modal-alert ul {
  list-style: disc;
  margin-bottom: 0;
  list-style-position: inside;
}
#surveyFeedbackModal .survey-modal-alert ul li {
  font-size: inherit;
}

/* Button th the bottom of survey recommendations */
.survey_end_buttons {
  margin-top: 20px;
  clear: both;
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.survey_end_buttons button {
  margin: 0 6px 10px;
  background-color: #fbfbfb;
  color: #555;
  border-color: #555;
  padding: 8px 14px;
  line-height: 1em;
  font-size: 110%;
  transition: all 200ms ease-in-out;
}
.survey_end_buttons button:hover:enabled {
  outline: none;
  box-shadow: inset 0px 0px 0px 1px #555;
}
.survey_end_buttons button:focus {
  outline: none;
}
.survey_end_buttons button:disabled {
  opacity: 1;
}
.survey_end_buttons button > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.survey_end_buttons button img {
  display: initial;
}
@media screen and (max-width: 479px) {
  .survey_end_buttons button {
    white-space: initial;
  }
}

.survey_loader {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
}
.survey_loader > span {
  display: flex;
  align-self: center;
}
.survey_loader .survey_spinner {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.survey_loader .survey_spinner:after {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #555;
  border-color: #555 transparent #555 transparent;
  animation: pas-spinner 1.2s linear infinite;
}
@keyframes pas-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.survey_check {
  display: inline-block;
  transform: rotate(45deg);
  height: 18px;
  width: 10px;
  margin-right: 6px;
  border-bottom: 5px solid #555;
  border-right: 5px solid #555;
}

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