/**
* 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.
*/
#ewproductfields {
  clear: both;
  padding: 1rem;
  margin-top: 1.5rem;
  float: left;
  width: 100%;
}
.help-box {
    min-width: 1rem;
    cursor: pointer;
}
.help-box {
    display: inline-flex;
    align-items: center;
    width: 1.4rem;
    height: 1.2rem;
    padding: 0;
    margin: 0 5px 2px;
    line-height: 19px;
    vertical-align: middle;
    cursor: pointer;
}
.help-box::after {
    font-family: "Material Icons", Arial, sans-serif;
    font-size: 19px;
    color: #939393;
    content: "\e88e";
}

.spinner-border {
    border: .15em solid;
    border-right: .25em solid transparent;
}
@-webkit-keyframes spinner-border {
    to {
      transform: rotate(360deg) /* rtl:ignore */;
    }
  }
  
  @keyframes spinner-border {
    to {
      transform: rotate(360deg) /* rtl:ignore */;
    }
  }
  .spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: 0.75s linear infinite spinner-border;
    animation: 0.75s linear infinite spinner-border;
  }

  .spinner-border.large {
    width: 5rem;
    height: 5rem;
  }
  .spinner-border.small {
    width: 3rem;
    height: 3rem;
  }
  .spinner-border.mini {
    width: 1.5rem;
    height: 1.5rem;
  }
  .bg_spiner {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #ffffff87;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
  }
  .bg_spiner.active {
    opacity: 1;
    visibility: visible;
  }
  .help-box-prod {
    cursor: pointer;
    font-weight: 500;
    color: #797979;
  }
  .help-box-prod span{
    font-size: 17px;
  }

  .tooltip_ew {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip_ew .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
  }

  .tooltip_ew:hover .tooltiptext {
    visibility: visible;
  }