/**
* 2007-2022 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#eb_interform_page #content {
  background-color: white;
}
#interactiveform .step_bloc {
  display: none;
}
#interactiveform .step_bloc.active {
  display: block !important;
}
#interactiveform {
  min-height: 230px;
  width: 100%;
  max-width: unset;
}
#interactiveform .step_bloc {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 100px;
}
#interactiveform .step_title {
  margin-bottom: 2.5rem;
  font-size: 17px;
  color: #2d2d2d;
  position: relative;
}
#interactiveform .step_title:after {
  content: "";
  border-bottom: 1px solid lightgrey;
  width: 70px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

#interactiveform .field_bloc button.choice_btn {
  box-shadow: 0 3px 4px -1px #a8a8a8;
  user-select: none;
  font-weight: 600;
  border: 0;
  padding: 10px 20px;
  border-radius: 5px;
  outline: 0 !important;
  width: 60%;
  font-size: 15px;
  min-width: 250px;
  cursor: pointer;
  max-width: 470px;
  transition: 0.1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
#interactiveform .field_bloc button.choice_btn:hover {
  opacity: 0.87;
}
#interactiveform .field_bloc button.choice_btn svg {
  margin-right: 7px;
  width: 20px;
}

.interactiveform_bloc .form_messages_error {
  padding: 1rem;
  border-radius: 9px;
  background: #ea6f6f;
  color: white;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: -1.5rem;
}
.interactiveform_bloc .form_messages_success {
  padding: 1rem;
  border-radius: 9px;
  background: #6dc285;
  color: white;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 2.5rem;
}

/*BLOC FIELDS*/
@media screen and (min-width: 768px) {
  #interactiveform .step_fields_bloc {
    width: 80%;
    margin: auto;
    max-width: 1000px;
  }
  #interactiveform .step_fields_bloc.field_center {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  #interactiveform .step_fields_bloc.field_center .field_bloc {
    width: 50%;
  }
  #interactiveform .step_fields_bloc.field_center .field_bloc.field_type_3 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #interactiveform .step_fields_bloc.type_inputs {
    grid-template-columns: repeat(1, 1fr);
  }
  #interactiveform .field_bloc {
    grid-column: 1/3 !important;
    width: 100% !important;
  }
  .interactiveform_bloc .form_messages_error,
  .interactiveform_bloc .form_messages_success {
    font-size: 13px;
    padding: 0.5rem;
  }
  .interactiveform_bloc h1 {
    font-size: 18px;
  }
  #interactiveform .step_title {
    font-size: 16px;
  }
  #interactiveform .step_fields_bloc input,
  #interactiveform .step_fields_bloc textarea {
    font-size: 12px;
  }
  #interactiveform .field_bloc button.choice_btn {
    font-size: 13px;
    width: 85% !important;
  }
}

#interactiveform .field_bloc {
  margin-bottom: 0.9rem;
}
#interactiveform .field_bloc.field_type_3 {
  grid-column: 1/3;
}
#interactiveform .step_fields_bloc.type_inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
#interactiveform .step_fields_bloc input,
#interactiveform .step_fields_bloc textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #c2c2c2;
}
#interactiveform .step_fields_bloc label {
  user-select: none;
  width: 100%;
  text-align: left;
}
#interactiveform .step_fields_bloc .field_desc {
  margin-top: 3px;
  margin-bottom: 0;
  color: #ababab;
  font-size: 13px;
  text-align: left;
}

#interactiveform .uploadfilebtn {
  display: flex;
}
#interactiveform input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
#interactiveform .filelabel {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center !important;
  border: 1px solid #c2c2c2;
  width: 40% !important;
}
#interactiveform .filelabel i {
  margin-left: 8px;
}
#interactiveform .filename {
  width: 60% !important;
  user-select: none;
}
#interactiveform input[type="file"]:focus .filelabel,
#interactiveform .filelabel:hover {
  opacity: 0.85;
  cursor: pointer;
}

/* FORM FOOTER */
.interactiveform_footerbtns {
  margin-bottom: 0.7rem;
}

.interactiveform_footerbtns button {
  cursor: pointer;
  border-radius: 3px;
  font-size: 15px;
  padding: 6px 11px;
  font-weight: 600;
  transition: 0.1s;
  display: none;
  outline: 0 !important;
  user-select: none;
}
.interactiveform_footerbtns #backbtn {
  color: grey;
  background: transparent;
  border: 1px solid lightgray;
}
.interactiveform_footerbtns #backbtn:hover {
  background: grey;
  color: white;
  border: 1px solid grey;
}
.interactiveform_footerbtns #nextbtn,
.interactiveform_footerbtns #submitbtn {
  float: right;
  border: 0;
}
.interactiveform_footerbtns #submitbtn i {
  margin-right: 5px;
}
.interactiveform_footerbtns #nextbtn:hover,
.interactiveform_footerbtns #submitbtn:hover {
  opacity: 0.9;
}

.interactiveform-footer-links {
  margin-top: 10px;
  margin-bottom: 3rem;
}
.interactiveform-footer-links a {
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.1875rem;
}
.interactiveform-footer-links i {
  vertical-align: sub;
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

/*progress bar*/

.progress {
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: none;
  height: 9px;
  margin-bottom: 1rem;
}
.progress-bar {
  border-radius: 5px;
  height: 100%;
  transition: 0.5s;
}
.progress.progress-xs {
  height: 5px;
  margin-top: 5px;
}
.progress.progress-sm {
  height: 10px;
  margin-top: 5px;
}
.progress.progress-lg {
  height: 25px;
}
.progress-bar {
  box-shadow: none;
}
.progress-bar.text-left {
  text-align: left;
}
.progress-bar.text-left span {
  margin-left: 10px;
}
.progress-bar.text-right {
  text-align: right;
}
.progress-bar.text-right span {
  margin-right: 10px;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: -o-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
}
