
/*
 * 
 * @author David Mrózek
 * @contact <admin@valasinec.cz>
 * @since 2015
 * @copyright Copyright (c) 2015 - 2023 David Mrózek
 *
 * @link https://prestashop.valasinec.cz/content/2-obchodni-podminky
 * @license https://prestashop.valasinec.cz/content/3-licencni-podminky
 *
 * Tento kód je chráněn autorským právem a nesmí být šířen bez předchozího písemného souhlasu autora.
 * V rámci licenčních podmínek můžete tento kód používat a upravovat pouze pro vlastní potřeby.
 * Pro jakékoli dotazy nebo další informace nás kontaktujte.
 *
 */

#dm_history_chart_chart_container {
  height: 300px;
}

.dm_history_chart_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  display: none;
  opacity: 0;
  z-index: 99999;
}

.dm_history_chart_overlay.active {
  display: block;
  opacity: 1;
}

.dm_history_chart_popup {
  margin: 70px auto;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  transition: all 5s ease-in-out;
}

.dm_history_chart_popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;

}
.dm_history_chart_popup .dm_history_chart_close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.dm_history_chart_popup .dm_history_chart_close:hover {
  color: #06D85F;
}
.dm_history_chart_popup .dm_history_chart_content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .dm_history_chart_popup {
    width: 90%;
    padding: 20px;
  }
  /*
  .dm_history_chart_description {
    display: none;
  }
  */
}

.dm-text-product {
  padding: 10px;
}