/**
 * 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
*/
:root {
  --ngcl-base-color: #333333;
}

.ngcategorieslist-carousel {
  margin-top: 2.5rem;
}

.ngcategorieslist-carousel a,
.ngcategorieslist-carousel a:focus,
.ngcategorieslist-carousel button,
.ngcategorieslist-carousel button:focus {
  outline: none;
}

.ngcategorieslist-carousel a:focus {
  text-decoration: none;
}

.ngcl-categories_title {
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--ngcl-base-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.ngcl-categories_description {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--ngcl-base-color);
}

.ngcl-categories_description > p {
  margin-bottom: 0;
  font-size: inherit;
  color: inherit;
}

.ngcl-categories_image {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
  position: relative;
}

.ngcl-categories_image_link {
  width: 100%;
  text-align: center;
}

.ngcl-categories_image_fon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  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;
}

.ngcl-categories_image:hover .ngcl-categories_image_fon {
  opacity: 1;
  visibility: visible;
}

.ngcl-categories_image_fon_text {
  color: #ffffff;
  font-size: 1.1em;
}

.ngcategorieslist-carousel-item img.ngcl-categories_img,
.ngcategorieslist-carousel .owl-carousel .owl-item img.ngcl-categories_img,
.ngcl-categories_img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.ngcl-categories_name-block {
  width: 100%;
  text-align: center;
  margin-bottom: 0.8em;
}

.ngcl-categories_name {
  display: inline-block;
  outline: none;
  line-height: 1.2;
  font-weight: 600;
  font-size: 0.9em;
  -webkit-transition: color 0.3s, border 0.3s;
  -moz-transition: color 0.3s, border 0.3s;
  -o-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
}

div.ngcl-categories_name,
a.ngcl-categories_name:not(:hover) {
  color: var(--ngcl-base-color);
}

.ngcl-categories_sub-actions {
  width: 100%;
  text-align: center;
  font-size: 0.9em;
}

.ngcl-categories_box {
  display: flex;
  flex-flow: column;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  width: 100%;
  min-height: 300px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 1em;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  box-shadow: 0 0 15px -13px var(--ngcl-base-color);
}

.ngcl-categories_bottom-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  align-content: center;
  flex: auto;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}

.ngcl-categories_sub-list {
  flex: auto;
  padding-left: 0;
  line-height: 1.2;
  width: 100%;
}

.ngcl-categories_sub-item {
  margin-bottom: 0.25em;
}

.ngcl-categories_sub-item-name {
  display: inline;
  position: relative;
  padding-left: 0.75em;
  margin-bottom: 0.25em;
  border-bottom: 1px solid transparent;
  -webkit-transition: color 0.3s, border 0.3s;
  -moz-transition: color 0.3s, border 0.3s;
  -o-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
}

div.ngcl-categories_sub-item-name,
a.ngcl-categories_sub-item-name:not(:hover) {
  color: var(--ngcl-base-color);
}

.ngcl-categories_sub-item-name:before {
  content: "\f105";
  font-family: "FontAwesome", serif;
  position: absolute;
  left: 0;
  top: 0;
}

.ngcl-categories_sub-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  flex: auto;
  font-size: 0.85em;
  margin-bottom: 0.2em;
}

.ngcl--none {
  display: none;
}

.ngcl-categories_sub-btn-view-more {
  margin-bottom: 0.8em;
}

.ngcategorieslist-container {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 992px) {
  .ngcl-categories_image_fon {
    display: none;
  }
}

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