/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * 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 Goryachev Nikolay <nikol73333333@yandex.ru>
 * @copyright 2021-2022 Goryachev Nikolay
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 * International Registered Trademark & Property of PrestaShop SA
*/
@font-face {
  font-family: "ngpc_FontAwesome";
  src: url("../../fonts/font_awesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../../fonts/font_awesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../../fonts/font_awesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../../fonts/font_awesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../../fonts/font_awesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../../fonts/font_awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ngpc_icon-fontawesome:before {
  content: "";
  display: inline-block;
  font-family: "ngpc_FontAwesome", serif;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* *** box product *** */
.ngpc-box-product_sub_list {
  display: flex;
  flex-wrap: wrap;
  max-height: 290px;
  overflow: hidden;
  overflow-y: auto;
}

.ngpc-box-product_sub_line {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.ngpc-box-product_sub_line:nth-child(1) {
  padding-top: 15px;
}

.ngpc-box-product_sub_line:nth-last-child(1) {
  border-bottom: 0;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.ngpc-box-product_right {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 20px;
  padding-right: 30px;
  flex: auto;
}

.ngpc-box-product_sub_img,
img.ngpc-box-product_sub_img {
  max-width: 59px;
}

.ngpc-box-product_sub_name {
  font-weight: 600;
}

.ngpc-box-product_sub_name-a {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.ngpc-box-product_sub_name-a:not(:hover) {
  color: inherit;
}

.ngpc-box-product_sub_name-a:hover {
  color: #008acd !important;
}

.ngpc-box-product_sub_line .ngpc-box-product_remove {
  position: absolute;
  right: 0;
  cursor: pointer;
  font-size: 1.1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.ngpc-box-product_sub_line .ngpc-box-product_remove:hover {
  color: #008acd;
}

.ngpc-box-product_remove-i {
  font-style: normal;
}

.ngpc-box-product_remove-i:before {
  content: "\f00d";
}

.ngpc-box-product_actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ngpc-box-product_action-clear {
  width: 25%;
  flex: auto;
  text-align: center;
}

.ngpc-box-product_action-compare_link {
  width: 25%;
  flex: auto;
  text-align: center;
}

.ngpc-box-product_action-compare {
  width: 100%;
}

/* *** loader *** */
@keyframes ngpc-block-loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.ngpc-block-loader {
  pointer-events: none;
  position: relative;
}

.ngpc-block-loader:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/loader.gif") no-repeat center;
  background-color: rgba(255, 255, 255, 0.6901960784);
  background-size: 25px;
  animation: ngpc-block-loader 0.3s;
}

/* *** scroll *** */
.ngpc-front-table_product-content {
  display: flex;
  position: relative;
}

.ngpc-scroll_left {
  width: 0;
  position: relative;
  z-index: 10;
  order: 0;
}

.ngpc-scroll_block {
  width: 100%;
}

.ngpc-scroll_block_sub {
  position: absolute;
  width: 100%;
}

.ngpc-scroll_line {
  overflow: hidden;
  overflow-x: auto;
  height: 20px;
  border-radius: 5px;
  margin-top: -20px;
}

.ngpc-scroll_line_sub {
  height: 1px;
}

.ngpc-scroll_content {
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 20px;
  order: 1;
}

/* *** messages *** */
.ngpc-block-messages {
  position: fixed;
  right: 15px;
  top: 15px;
  background: #ababab;
  cursor: pointer;
  color: #ffffff;
  padding: 10px 18px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  max-width: 300px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transform: translateX(calc(100% + 20px));
  -moz-transform: translateX(calc(100% + 20px));
  -o-transform: translateX(calc(100% + 20px));
  transform: translateX(calc(100% + 20px));
  -webkit-transition: transform 0.3s, background 0.3s, opacity 0.15s, visibility 0.15s;
  -moz-transition: transform 0.3s, background 0.3s, opacity 0.15s, visibility 0.15s;
  -o-transition: transform 0.3s, background 0.3s, opacity 0.15s, visibility 0.15s;
  transition: transform 0.3s, background 0.3s, opacity 0.15s, visibility 0.15s;
}

.ngpc-block-messages:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 10px;
  border: 7px solid transparent;
  border-left: 6px solid #ababab;
}

.ngpc-block-messages ul {
  margin-bottom: 0;
  padding-left: 15px;
}

.ngpc-block-messages ul li {
  margin-bottom: 5px;
  list-style: disc;
}

.ngpc-block-messages ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.ngpc-block-messages.ngpc-message--error {
  background: #b92d2d;
}

.ngpc-block-messages.ngpc-message--error:before {
  border-left-color: #b92d2d;
}

.ngpc-block-messages.ngpc-message--accepted {
  background: #69b92d;
}

.ngpc-block-messages.ngpc-message--accepted:before {
  border-left-color: #69b92d;
}

.ngpc-block-messages.ngpc-block-messages--active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.product-miniature .product-description .ngpc-box-product {
  top: -32px;
}

.modal.quickview .social-sharing {
  display: inline-flex;
  width: auto;
  vertical-align: top;
}

.modal.quickview .ngpc-box-page-product {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 25px;
}

.modal.quickview .ngpc-box-page-product .ngpc-box-product_modal-sub {
  right: 0;
  top: auto;
  bottom: 0;
  transform: translateX(0);
}

.ngpc-box-header {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 18px;
}

.ngpc-box-header_open {
  position: relative;
  display: flex;
  align-items: center;
  height: 25px;
  font-size: 12px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.ngpc-box-header_open:not(:hover) {
  color: inherit;
}

#header a.ngpc-box-header_open:hover,
.ngpc-box-header_open:hover {
  color: #008acd;
}

.ngpc-box-header_open-i {
  font-style: normal;
  font-size: 2.05em;
}

.ngpc-box-header_open-i:before {
  content: "\f080";
}

.ngpc-box-header_open-count {
  position: absolute;
  right: -8px;
  bottom: -9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #008acd;
  color: #ffffff;
  min-width: 1.65em;
  height: 1.65em;
  font-size: 0.9em;
  padding: 0.3em;
  line-height: 1.2;
  border-radius: 100%;
  white-space: nowrap;
}

.ngpc-box-header_modal {
  position: absolute;
  right: 0;
  top: 5px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  padding: 1.5em 3.2em;
  min-width: 29em;
  background-color: #ffffff;
  border-radius: 1.3em;
  box-shadow: 0 0 20px -8px #434343;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.ngpc-box-header.ngpc-modal-open .ngpc-box-header_modal {
  opacity: 1;
  visibility: visible;
}

.ngpc-box-header.ngpc-modal-close .ngpc-box-header_modal {
  opacity: 0;
  visibility: hidden;
}

.ngpc-box-header_text {
  margin-bottom: 15px;
  text-align: center;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
}

.ngpc-box-product_action-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ngpc-box-product {
  position: absolute;
  top: 10px;
  right: 10px;
}

.ngpc-box-product.ngpc-modal-open {
  z-index: 999;
}

.ngpc-box-product_modal-sub_list {
  max-height: 290px;
  overflow: hidden;
  overflow-y: auto;
}

.ngpc-box-product .ngpc-box-product_block {
  width: 23px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.ngpc-box-product .ngpc-box-product_block.ngpc-block-loader:before {
  background-color: transparent;
  background-size: 20px;
}

.ngpc-box-product .ngpc-box-product_remove,
.ngpc-box-product .ngpc-box-product_add {
  font-size: 20px;
}

.ngpc-box-product-block_add-i,
.ngpc-box-product-block_remove-i {
  font-style: normal;
  font-weight: 400;
}

.ngpc-box-product-block_add-i:before {
  content: "\f080";
  opacity: 0.4;
}

.ngpc-box-product-block_remove-i:before {
  content: "\f080";
}

.ngpc-box-product_modal-sub {
  position: absolute;
  right: -30px;
  z-index: 999;
  top: calc(100% - 8px);
  background-color: #ffffff;
  padding: 1.5em 3.2em;
  min-width: 29em;
  border-radius: 1.3em;
  box-shadow: 0 0 20px -8px #434343;
}

.ngpc-box-product_modal {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.ngpc-box-product.ngpc-modal-open .ngpc-box-product_modal {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.ngpc-box-product.ngpc-modal-close .ngpc-box-product_modal {
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.ngpc-box-page-product {
  position: relative;
  display: inline-flex;
  margin-top: 15px;
  margin-bottom: 15px;
}

.ngpc-box-page-product_block {
  display: inline-flex;
}

.ngpc-box-page-product .ngpc-box-product_modal-sub {
  right: 50%;
  top: -2px;
  transform: translateX(50%);
}

.ngpc-box-page-product_modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.ngpc-box-page-product.ngpc-modal-open .ngpc-box-page-product_modal {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.ngpc-box-page-product.ngpc-modal-close .ngpc-box-page-product_modal {
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.ngpc-front-products_header-title {
  margin-bottom: 60px;
}

.ngpc-front-product-content {
  margin-bottom: 30px;
}

.ngpc-front-products_list-box {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.ngpc-front-products_list {
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 33px;
}

.ngpc-front-products_list.slick-initialized {
  overflow: visible;
}

.ngpc-front-products_list .slick-track {
  margin-left: 0;
}

.ngpc-front-products_item {
  width: 25%;
  min-width: 25%;
  display: inline-block;
  vertical-align: top;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: -5px;
  white-space: normal;
  margin-bottom: 12px;
}

.ngpc-front-products_container {
  display: block;
}

.ngpc-front-products_actions {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 7px;
}

.ngpc-front-products_actions .custom-checkbox {
  margin-right: 45px;
  margin-bottom: 25px;
}

.ngpc-product_differences_label {
  margin-bottom: 0;
}

.ngpc-product_clear-all {
  font-weight: 400;
  min-height: 3.1em;
  padding: 0.5em 3.2em;
  font-size: 1.2em;
  margin-bottom: 25px;
  margin-right: 45px;
}

.ngpc-front-products_table td {
  border: 1px solid #eeeeee;
  padding: 0.75rem;
  vertical-align: top;
  text-align: center;
  background-color: transparent;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.ngpc-product_differences--no-active {
  display: none;
}

.ngpc-front-products_table-line:hover td {
  background-color: #f3f3f3;
}

.ngpc-front-products_data-line {
  border-radius: 8px;
  padding: 15px;
}

.ngpc-front-products_data-line:nth-child(2n+1) {
  background-color: #f1f1f1;
}

.ngpc-front-products_data-line.ngpc-product_differences--active {
  background-color: transparent;
}

.ngpc-front-products_data-line:nth-child(2n+1).ngpc-product_differences--style-odd,
.ngpc-front-products_data-line.ngpc-product_differences--style-odd {
  background-color: #f1f1f1;
}

.ngpc-front-products_data-list {
  white-space: nowrap;
  overflow: hidden;
}

.ngpc-front-products_data-list .slick-track {
  margin-left: 0;
}

.ngpc-front-products_data-item {
  width: 25%;
  min-width: 25%;
  display: inline-block;
  vertical-align: top;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: -5px;
  white-space: normal;
  color: #000000;
  font-size: 14px;
  min-height: 20px;
}

.ngpc-front-products_data-item > p {
  margin-bottom: 0;
  color: inherit;
}

.ngpc-front-products_name {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  padding-left: 30px;
  margin-bottom: 8px;
}

.ngpc-front-products_miniature {
  position: relative;
}

.ngpc-product_remove {
  position: absolute !important;
  right: 15px;
  top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  text-transform: lowercase;
  color: #7a7a7a;
  border: 0;
  padding: 0.25rem;
  margin: 0.25rem 0;
  width: 25px;
  height: 25px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.7em;
  border-radius: 100%;
}

.ngpc-product_remove:hover {
  color: #008acd;
}

.ngpc-product_remove-i {
  font-style: normal;
}

.ngpc-product_remove-i:before {
  content: "clear";
}

.ngpc-product_quick-view {
  margin-bottom: 10px;
  margin-top: 10px;
}

.ngpc-product_quick-view-i {
  font-style: normal;
  margin-right: 8px;
}

.ngpc-product_quick-view-i:before {
  content: "\f002";
}

.ngpc-front-product_item_list {
  min-height: 40px;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  display: flex;
}

.ngpc-front-product_manufacturer-block {
  display: flex;
  align-items: center;
}

.ngpc-front-product_manufacturer-img {
  max-width: 80px;
  width: 100%;
  padding-right: 18px;
}

.ngpc-front-products {
  width: 100%;
}

.ngpc-front-products-prev,
.ngpc-front-products-next {
  position: absolute !important;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  font-size: 33px;
  height: 32px;
  width: 32px;
  padding: 0;
  display: flex !important;
  border-radius: 0.4em;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  margin-right: 7px;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.ngpc-front-products-prev_icon,
.ngpc-front-products-next_icon {
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: inline-flex !important;
  border-radius: 100%;
}

.ngpc-front-products-prev {
  left: -25px;
}

.ngpc-front-products-prev_icon:before,
.ngpc-front-products-next_icon:before {
  font-family: "icon-windking";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ngpc-front-products-prev_icon:before {
  content: "\e94a";
}

.ngpc-front-products-next {
  right: -25px;
}

.ngpc-front-products-next_icon:before {
  content: "\e94b";
}

body .ngpc-front-products .slick-dots {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}

body .ngpc-front-products .slick-dots li {
  width: 2%;
  flex: auto;
}

body .ngpc-front-products .slick-dots li button {
  width: 100%;
  border-radius: 0;
  height: 3px;
  background-color: #f5f5f5;
}

body .ngpc-front-products .slick-dots li.slick-active button {
  border-radius: 2px;
  background-color: #0188cc;
}

.ngpc-front-products_categories {
  display: flex;
  flex-wrap: wrap;
}

.ngpc-front-products_category {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  color: #878787;
  margin-bottom: 1.3em;
  margin-right: 1.7em;
  padding: 0.8em 2.2em;
  border-radius: 2em;
  font-size: 1.17em;
  line-height: 1.2;
  -webkit-transition: border 0.3s, color 0.3s;
  -moz-transition: border 0.3s, color 0.3s;
  -o-transition: border 0.3s, color 0.3s;
  transition: border 0.3s, color 0.3s;
}

.ngpc-front-products_category-delete {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  margin: -0.1em -0.8em -0.1em 23px;
  font-size: 1.6em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 100%;
  color: #b1b1b1;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.ngpc-front-products_category-delete:hover {
  color: #008ad2;
}

.ngpc-front-products_category-delete-i:before {
  content: "clear";
}

.ngpc-front-products_data-null {
  width: 100%;
  font-size: 1.15em;
}

@keyframes ngpc-front-products_list-box--scroll {
  0% {
    transform: translateY(-100%) translateX(-50%);
  }
  100% {
    transform: translateY(0) translateX(-50%);
  }
}
.ngpc-content-product_list.active-scroll .ngpc-front-products_list-box {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 15px;
  padding-right: 45px;
  background-color: #ffffff;
  z-index: 2;
  box-shadow: 0 16px 15px -20px #7a7a7a;
  padding-top: 14px;
  padding-bottom: 10px;
  animation: ngpc-front-products_list-box--scroll 0.3s;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products_list {
  margin-bottom: 0;
  margin-right: -15px;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products .slick-dots {
  margin-top: 0;
  width: calc(100% + 10px);
  margin-bottom: -17px;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products_item {
  margin-bottom: 0;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products_item .thumbnail-container {
  display: flex;
}

.ngpc-content-product_list.active-scroll .product-miniature_thumbnail_grid {
  width: 40%;
  flex: auto;
  margin-bottom: 0;
  min-width: 75px;
  max-width: 105px;
}

.ngpc-content-product_list.active-scroll .product-miniature_details_grid {
  width: 60%;
  flex: auto;
  padding-left: 10px;
  padding-top: 6px;
}

.ngpc-content-product_list.active-scroll .product-miniature_image {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ngpc-content-product_list.active-scroll .product-miniature_img {
  height: 100%;
  width: auto;
  max-width: none;
}

.ngpc-content-product_list.active-scroll .product-miniature_quick-view {
  display: none;
}

.ngpc-content-product_list.active-scroll .product-miniature_title {
  font-size: 0.7em;
  margin-bottom: 0.65em;
  white-space: normal;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 29px;
  max-width: 180px;
}

.ngpc-content-product_list.active-scroll .product-price_box {
  font-size: 0.8em;
  margin-bottom: 0.5em;
  white-space: nowrap;
}

.ngpc-content-product_list.active-scroll .thumbnail-container .product-list-reviews .comments-nb {
  font-size: inherit;
}

.ngpc-content-product_list.active-scroll .thumbnail-container .product-list-reviews {
  font-size: 0.75em;
  margin-bottom: 0.65em;
  height: 15px;
}

.ngpc-content-product_list.active-scroll .thumbnail-container .product-list-reviews .grade-info {
  display: none;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products_item .product-miniature-btn-add-cart {
  font-size: 0.65em;
  min-height: 2.65em;
}

.ngpc-content-product_list.active-scroll .product-miniature-btn-add-cart_i {
  display: none;
}

.ngpc-content-product_list.active-scroll .ngpc-product_remove {
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  font-size: 1.2em;
}

.ngpc-content-product_list.active-scroll .ngpc-front-products_item .thumbnail-container .wishlist-button-add {
  left: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  font-size: 0.75em;
}

@media (max-width: 1200px) {
  .ngpc-front-products_item,
  .ngpc-front-products_data-item {
    width: 33.3333%;
    min-width: 33.3333%;
  }
}
@media (max-width: 991px) {
  .ngpc-front-products-next {
    right: -30px;
  }
  .ngpc-front-products-prev {
    left: -30px;
  }
  .ngpc-front-products_item,
  .ngpc-front-products_data-item {
    width: 50%;
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .ngpc-front-products_actions {
    flex-wrap: wrap;
    font-size: 12px;
  }
  body .ngpc-front-products .slick-dots {
    width: calc(100% + 90px);
    margin-left: 13px;
  }
  .ngpc-front-products_list-box {
    margin-left: -15px;
    width: calc(100% + 30px);
    padding-left: 0;
    padding-right: 0;
  }
  .ngpc-front-products_list {
    padding-right: 120px;
  }
  .ngpc-front-products_list.slick-initialized {
    overflow: hidden;
  }
  .ngpc-front-products_list .slick-list {
    overflow: visible;
  }
  .ngpc-front-products_item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ngpc-front-products-prev,
  .ngpc-front-products-next {
    display: none !important;
  }
  .ngpc-front-products_data-list {
    padding-right: 120px;
  }
  .ngpc-front-products_data-list .slick-list {
    overflow: visible;
  }
  .ngpc-front-products_data-line {
    margin-left: -15px;
    width: calc(100% + 30px);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .ngpc-front-products_data-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ngpc-front-products_name {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ngpc-content-product_list.active-scroll .ngpc-front-products .slick-dots {
    width: calc(100% + 90px);
  }
}
@media (max-width: 550px) and (min-width: 500px) {
  .ngpc-front-products_item {
    font-size: 11px;
  }
}
@media (max-width: 500px) {
  body .ngpc-front-products .slick-dots {
    width: calc(100% + 10px);
    margin-left: 13px;
  }
  .ngpc-front-products_item,
  .ngpc-front-products_data-item {
    width: 100%;
    min-width: 100%;
  }
  .ngpc-front-products_list {
    padding-right: 40px;
  }
  .ngpc-front-products_data-list {
    padding-right: 40px;
  }
  .ngpc-content-product_list.active-scroll .ngpc-front-products .slick-dots {
    width: calc(100% + 10px);
  }
}

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