@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-regular-italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-bold-italic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'TacticSans';
  src: url('../fonts/tacticsans-black-italic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
body {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  background-color: #c0c0c0;
  background-image: url('../images/bg_main.png');
  background-repeat: repeat;
  background-position: center center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: bold;
}
h1 {
  font-size: 1.85rem;
}
a {
  color: #00040f;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #0044FF;
  text-decoration: none;
}
.bg-grid {
  background: url('../images/bg.png') repeat center 30%;
}
.box-shadow {
  box-shadow: 0 0 15px #333333;
}
.page-content {
  padding: 1.5rem 0;
}
.top-message {
  background: #00040f;
  width: 100%;
  padding: 0.5rem;
  color: #ffffff;
  text-align: center;
}
.top-message p {
  margin-bottom: 0;
}
.alert {
  border-width: 2px;
  border-radius: 0;
}
.btn {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0;
  padding: 0.7rem 1.2rem;
  border-width: 2px;
}
.btn-success {
  background-color: #0044ff;
  border-color: #0044ff;
}
.btn-success:hover {
  color: #0044ff;
  background-color: #FFFFFF;
  border-color: #0044ff;
}
.btn-primary {
  background-color: #00040f;
  border-color: #00040f;
}
.btn-primary:hover {
  color: #00040f;
  background-color: #FFFFFF;
  border-color: #00040f;
}
.form-control,
.form-select {
  border: 2px solid #000000;
  border-radius: 0;
}
.form-check {
  height: 2rem;
  line-height: 2rem;
}
.form-check .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #000000;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.form-check .form-check-label {
  padding-left: 0.5rem;
}
header {
  padding-top: 1rem;
}
header .nav-header-links {
  display: flex;
  gap: 3.5rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: #00040f;
}
header .nav-header-links a {
  text-decoration: none;
  font-weight: normal;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
}
header .nav-header-links a:hover {
  color: #0044ff;
  text-decoration: none;
}
header .nav-header-links .nav-header-links-item {
  white-space: nowrap;
}
header .nav-header-links .nav-header-links-item:first-child {
  margin-left: 0;
}
header .nav-header-links .nav-header-links-item img {
  margin-right: 0.5rem;
  height: 23px;
}
header .nav-header-links .nav-header-links-item:last-child img {
  margin-right: 0;
}
header .nav-header-links .nav-social {
  display: flex;
  gap: 1rem;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
}
header .nav-header-links .nav-social .nav-social-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
header .nav-header-actions {
  color: #00040f;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
header .nav-header-actions .nav-search {
  padding: 0.65rem 1.5rem 0.4rem 1.5rem;
  position: relative;
  flex-grow: 1;
}
header .nav-header-actions .nav-search input {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: normal;
  width: calc(100% - 43px);
  background: transparent;
  border: 0;
}
header .nav-header-actions .nav-search input::placeholder {
  color: #FFFFFF;
}
header .nav-header-actions .nav-search input:focus {
  outline: 0;
  color: #00040f;
}
header .nav-header-actions .nav-search input:focus::placeholder {
  color: #00040f;
}
header .nav-header-actions .nav-search button {
  background: transparent;
  border: 0;
}
header .nav-header-actions .nav-search button img {
  height: 1.5rem;
  filter: brightness(0) invert();
}
header .nav-header-actions .nav-search button:focus {
  outline: 0;
}
header .nav-header-actions .nav-search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #00040f;
  border-radius: inherit;
  transform: skew(-20deg);
  transition: all 300ms ease;
}
header .nav-header-actions .nav-search:has(input:focus)::before {
  background: #ffffff;
}
header .nav-header-actions .nav-search:has(input:focus) button img {
  filter: brightness(1) invert(0);
}
header .nav-header-actions .nav-cart {
  font-weight: bold;
  padding-left: 1.5rem;
}
header .nav-header-actions .nav-cart img {
  margin-right: 0.5rem;
  height: 25px;
}
header .nav-header-actions .nav-cart a {
  color: #00040f;
  text-decoration: none;
}
header .nav-header-actions .nav-cart a:hover {
  color: #00040f;
  text-decoration: none;
}
.page-header {
  position: relative;
  z-index: 10;
}
.page-header header {
  padding: 1.5rem 0 0;
}
.page-header header .logotype img {
  width: 100%;
}
.page-header .page-header-menu {
  margin-top: 1.5rem;
}
.page-header .page-header-menu .navigation-menu {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 0.95rem;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
  padding: 0.5rem;
  background: #FFFFFF;
  z-index: 0;
}
.page-header .page-header-menu .navigation-menu .nav {
  justify-content: center;
}
.page-header .page-header-menu .navigation-menu .nav-link {
  color: #00040f;
  padding: 0.5rem 0.75rem;
  z-index: 2;
  position: relative;
}
.page-header .page-header-menu .navigation-menu .nav-link span {
  z-index: 3;
  position: relative;
}
.page-header .page-header-menu .navigation-menu .nav-link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #00040f;
  border-radius: inherit;
  transform: skew(-20deg);
  opacity: 0;
  transition: opacity 300ms ease;
}
.page-header .page-header-menu .navigation-menu .nav-link:hover {
  text-decoration: none;
  color: #FFFFFF;
  z-index: 2;
}
.page-header .page-header-menu .navigation-menu .nav-link:hover:before {
  opacity: 1;
}
.btn-mobile-menu {
  border-radius: 0;
  border: 3px solid #000000;
  outline: none;
  box-shadow: none;
  color: #000000;
  padding: 10px 25px;
  background-color: #FFFFFF;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
}
.navigation-mobile-menu .navbar-collapse {
  background: #ffffff;
}
.navigation-mobile-menu .navbar-collapse li {
  width: 100%;
  text-align: left !important;
}
.navigation-mobile-menu .navbar-collapse li a {
  color: #000000;
}
.breadcrumb-box {
  margin-bottom: 2rem;
  border-top: 0.25rem solid #00040f;
  white-space: nowrap;
}
.breadcrumb-box .breadcrumb-item {
  position: relative;
  display: inline-block;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0% 100%);
  background-color: #00040f;
  margin-left: -1rem;
  padding: 0.35rem 2rem;
  color: #FFFFFF;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}
.breadcrumb-box .breadcrumb-item:first-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0% 100%);
  margin-left: 0;
  padding: 0.25rem 2rem 0.25rem 1.5rem;
}
.breadcrumb-box .breadcrumb-item + .breadcrumb-item:before {
  display: none;
}
.breadcrumb-box .breadcrumb-item.active {
  background: #ffffff;
  padding: 0.25rem 2rem;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.3);
}
.breadcrumb-box .breadcrumb-item a {
  color: #ffffff;
}
.breadcrumb-box .breadcrumb-item a:hover {
  text-shadow: 0 0 3px #ffffff;
}
.products-list-thumbnail .product-list-item {
  transition: all 300ms ease;
}
.products-list-thumbnail .product-list-item .product-item-image-container {
  margin-bottom: 1.5rem;
}
.products-list-thumbnail .product-list-item .product-item-image-container .product-item-image {
  filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.5));
}
.products-list-thumbnail .product-list-item .product-item-image-container .product-item-image img {
  clip-path: polygon(18.5% 0%, 100% 0, 100% 81.5%, 81.5% 100%, 0 100%, 0% 18.5%);
  background: #ffffff;
  transition: all 300ms ease;
}
.products-list-thumbnail .product-list-item .product-item-info {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.products-list-thumbnail .product-list-item .product-item-info h6 {
  font-size: 1rem;
  height: 2.5rem;
  overflow: hidden;
  max-height: 2.5rem;
}
.products-list-thumbnail .product-list-item .product-item-info h6 a {
  color: #00040f;
  text-decoration: none;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.3);
}
.products-list-thumbnail .product-list-item .product-item-info h6 a:hover {
  color: #00040f;
  text-decoration: none;
}
.products-list-thumbnail .product-list-item .product-item-info .product-item-price {
  font-size: 1.1rem;
  line-height: 2.5rem;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.3);
}
.products-list-thumbnail .product-list-item .product-item-status {
  position: relative;
  margin-top: -14px;
  display: flex;
  justify-content: end;
  gap: 4px;
  transform: skewX(-25deg);
  padding: 0 12px;
  font-size: 0.85rem;
}
.products-list-thumbnail .product-list-item .product-item-status .product-item-status-info {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  background-color: #0044ff;
  color: #FFFFFF;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}
.products-list-thumbnail .product-list-item .product-item-status .product-item-status-info:not(:last-child) span {
  display: block;
  transform: skewX(25deg);
}
.products-list-thumbnail .product-list-item .product-item-status .product-item-status-info:last-child {
  transform: skewX(25deg);
  padding-left: 0.15rem;
  margin-left: 0.45rem;
}
.products-list-thumbnail .product-list-item .product-item-status .product-item-status-info:last-child:before {
  content: '';
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -0.8rem;
  top: 0;
  width: 0.8rem;
  height: 100%;
  background-color: #0044ff;
}
.products-list-thumbnail .product-list-item .product-item-cart-button a {
  display: inline-block;
  background-color: #0044ff;
  color: white;
  border: none;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.products-list-thumbnail .product-list-item .product-item-cart-button a:after {
  content: url(../images/icon_cart_button.svg);
  display: inline-block;
  width: 1.25rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-size: 0;
  transition: all 300ms ease;
  filter: brightness(0) invert();
}
.products-list-thumbnail .product-list-item .product-item-cart-button a:hover {
  background: #fff;
  text-decoration: none;
  color: #00040f;
}
.products-list-thumbnail .product-list-item .product-item-cart-button a:hover:after {
  filter: brightness(1) invert(0);
}
@media (min-width: 992px) {
  .products-list-thumbnail .product-list-item:hover {
    transform: scale(1.05);
  }
  .products-list-thumbnail .product-list-item:hover .product-item-image-container .product-item-image {
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.7));
  }
  .products-list-thumbnail .product-list-item:hover .product-item-image-container .product-item-image img {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 0%);
  }
  .products-list-thumbnail .product-list-item:hover .product-item-cart-button a {
    opacity: 1;
    transform: translateY(0);
  }
  .products-list-thumbnail .product-list-item .product-item-cart-button a {
    transform: translateY(-30px);
    opacity: 0;
  }
}
.product-list-pagination {
  gap: 0.6rem;
}
.product-list-pagination .nav-item .nav-link {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-size: 0.9rem;
  color: #00040F;
  background-color: #FFFFFF;
  box-shadow: 0 0 1rem rgba(0, 4, 15, 0.15);
}
.product-list-pagination .nav-item .nav-link-next {
  background-color: transparent;
  box-shadow: unset;
}
.product-list-pagination .nav-item .nav-link.page-numbers.current,
.product-list-pagination .nav-item .nav-link.page-numbers:hover {
  color: #FFFFFF;
  background-color: #00040F;
}
.product-crossseling {
  margin-top: 2rem;
}
.product-crossseling h3 {
  font-size: 1.4rem;
  line-height: 2.5rem;
  border-bottom: 1px solid #000000;
  margin-bottom: 2rem;
}
.product-picture .img-fluid {
  width: 100%;
}
footer {
  background: #00040f;
  margin-top: 7rem;
  padding-bottom: 3rem;
  font-size: 0.9rem;
  color: #ffffff;
}
.page--index footer,
.page--catalogue footer {
  margin-top: 0;
}
footer .footer-top {
  position: relative;
  transform: translateY(-100%);
  overflow: hidden;
}
footer .footer-top:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.5rem;
  background: #ffffff;
}
@media (min-width: 992px) {
  footer .footer-top:before {
    height: 1rem;
  }
}
footer .footer-top:after {
  content: "";
  position: absolute;
  right: -80%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
}
footer .footer-top .container {
  display: flex;
  justify-content: end;
}
footer .footer-top .footer-logo-container {
  display: inline-block;
  clip-path: polygon(18.5% 0, 100% 0%, 100% 100%, 0% 100%);
  padding: 0.5rem 0 0.5rem 3rem;
  background: #ffffff;
}
@media (min-width: 768px) {
  footer .footer-top .footer-logo-container {
    padding: 1rem 0 1rem 5rem;
  }
}
footer .footer-top .footer-logo-container img {
  height: 1.5rem;
}
@media (min-width: 992px) {
  footer .footer-top .footer-logo-container img {
    height: 2rem;
  }
}
footer .footer-links-title {
  font-size: 1rem;
}
@media (min-width: 992px) {
  footer .footer-links-title {
    font-size: 1.25rem;
  }
}
footer ul.nav {
  flex-direction: column;
}
footer ul.nav li.nav-item {
  padding: 0.25rem 0;
  line-height: 1.7rem;
}
footer ul.nav li.nav-item a {
  padding: 0;
  text-decoration: none;
  color: #ffffff;
}
footer ul.nav li.nav-item a:hover {
  text-decoration: none;
  color: #0044ff;
}
footer .footer-links-info {
  position: relative;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  footer .footer-links-info {
    padding-bottom: 0;
  }
}
footer .footer-links-info:after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  footer .footer-links-info:after {
    top: 5%;
    bottom: unset;
    left: unset;
    right: 0;
    height: 90%;
    width: 1px;
  }
}
footer .footer-links-navigation {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  footer .footer-links-navigation {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  footer .footer-links-navigation {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2rem;
  }
  footer .footer-links-navigation ul.nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer .footer-links-navigation ul.nav li {
    flex: 1 1 50%;
  }
}
footer .footer-links-navigation:after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  footer .footer-links-navigation:after {
    top: 5%;
    bottom: unset;
    left: unset;
    right: 0;
    height: 90%;
    width: 1px;
  }
}
@media (min-width: 992px) {
  footer .footer-links-navigation:after {
    display: none;
  }
}
footer .footer-links-contact {
  position: relative;
  line-height: 1.7rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  footer .footer-links-contact {
    padding-top: 0;
    padding-bottom: 0;
  }
}
footer .footer-links-contact:after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  footer .footer-links-contact:after {
    display: none;
  }
}
footer .footer-links-contact address {
  margin-bottom: 0;
}
footer .footer-links-contact a {
  padding: 0;
  text-decoration: none;
  font-weight: normal;
  color: #ffffff;
}
footer .footer-links-contact a:hover {
  text-decoration: none;
  color: #0044ff;
}
footer .footer-copyright {
  padding-top: 2rem;
  font-size: 0.7rem;
  text-align: center;
  order: 2;
}
@media (min-width: 768px) {
  footer .footer-copyright {
    padding-top: 0;
    font-size: 0.85rem;
    order: 1;
  }
}
@media (min-width: 992px) {
  footer .footer-copyright {
    text-align: left;
  }
}
footer .footer-copyright a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-copyright a:hover {
  color: #0044ff;
  text-decoration: none;
}
footer .footer-social {
  position: relative;
  text-align: center;
  order: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  footer .footer-social {
    padding-top: 0;
    padding-bottom: 0;
    order: 2;
  }
}
@media (min-width: 992px) {
  footer .footer-social {
    text-align: right;
  }
}
footer .footer-social:after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  footer .footer-social:after {
    display: none;
  }
}
footer .footer-social .footer-social-link {
  margin: 0 0.5rem;
  transition: all 300ms ease;
}
footer .footer-social .footer-social-link img {
  width: 3rem;
  filter: brightness(0) invert(1);
}
footer .footer-social .footer-social-link:hover img {
  transform: scale(1.1);
  filter: brightness(1) invert(0);
}
.top-action {
  margin-top: -1.5rem;
}
.top-action .site-wrapper-reveal .container {
  max-width: unset !important;
  padding: 0;
}
.top-action .bx-wrapper {
  background: transparent;
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  user-select: unset;
}
.top-action .bx-wrapper a {
  display: block;
  pointer-events: none;
}
.product-suggest-index {
  padding-bottom: 4rem;
  background: rgba(255, 255, 255, 0.4);
}
.product-suggest-index .product-suggest-index-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .product-suggest-index .product-suggest-index-header {
    margin-bottom: 4rem;
  }
}
.product-suggest-index .product-suggest-index-header:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1rem;
  background: #00040f;
}
@media (min-width: 768px) {
  .product-suggest-index .product-suggest-index-header .container {
    display: flex;
    flex-direction: row;
    align-items: start;
  }
}
.product-suggest-index .product-suggest-index-header .product-suggest-index-header-title {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  min-width: 180px;
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}
.product-suggest-index .product-suggest-index-header .product-suggest-index-header-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  transform: skewX(-25deg);
  background: #00040f;
  z-index: -1;
}
.product-suggest-index .product-suggest-index-header .product-suggest-index-header-title:after {
  content: "";
  position: absolute;
  right: calc(100% - 3rem);
  top: 0;
  width: 1500%;
  height: 100%;
  background: #00040f;
  z-index: -1;
}
@media (min-width: 768px) {
  .product-suggest-index .product-suggest-index-header .product-suggest-index-header-title {
    padding: 2rem 1rem;
    min-width: 300px;
    font-size: 1.5rem;
  }
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links {
  background: #ffffff;
  margin: -1.5rem calc(-1 * var(--bs-gutter-x)) 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2.5rem 1rem 0.5rem;
}
@media (min-width: 768px) {
  .product-suggest-index .product-suggest-index-header .product-suggest-list-links {
    position: relative;
    margin-top: 1rem;
    justify-content: end;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .product-suggest-index .product-suggest-index-header .product-suggest-list-links:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 1500%;
    height: 100%;
    background: #ffffff;
  }
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 0;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1rem;
  text-align: center;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
  transition: background-color 300ms ease, color 100ms ease;
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-0.8rem, -25%) skewX(-25deg);
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a span {
  position: relative;
  z-index: 1;
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a:hover {
  text-decoration: none;
  color: #ffffff;
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a:hover:before {
  background-color: #00040f;
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a.active,
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a.active:hover {
  color: #ffffff;
}
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a.active:before,
.product-suggest-index .product-suggest-index-header .product-suggest-list-links a.active:hover:before {
  background-color: #0044ff;
}
@media (max-width: 767px) {
  .product-suggest-index .product-suggest-list .container,
  .product-suggest-index .product-new-list .container {
    --bs-gutter-x: 6rem;
  }
}
.product-new-list .homepage-products-list {
  display: none;
}
.links-index {
  position: relative;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .links-index {
    padding-bottom: 2.5rem;
  }
}
.links-index .links-index-bg {
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
}
@media (min-width: 992px) {
  .links-index .links-index-bg {
    padding-top: 6rem;
    padding-bottom: 0;
  }
}
.links-index .links-index-bg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  background: #000616 url('../images/bg_index_links.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media (min-width: 992px) {
  .links-index .container {
    margin-bottom: -1rem;
  }
}
.links-index a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.links-index h2 {
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
  margin: 0 0 3rem 0;
}
@media (min-width: 992px) {
  .links-index h2 {
    font-size: 3rem;
    text-align: left;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
    margin: 0 0 2.5rem 0;
  }
}
.links-index .links-index-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  padding: 0 3rem;
}
@media (min-width: 768px) {
  .links-index .links-index-grid {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
  }
}
@media (min-width: 992px) {
  .links-index .links-index-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-left: -6rem;
    align-items: start;
    transform: skewX(-25deg);
    padding: 0;
  }
}
.links-index .links-index-item {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(18.5% 0%, 100% 0, 100% 81.5%, 81.5% 100%, 0 100%, 0% 18.5%);
}
@media (min-width: 768px) {
  .links-index .links-index-item {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .links-index .links-index-item {
    width: calc(16.66666667% - 1rem);
    clip-path: none;
  }
}
.links-index .links-index-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .links-index .links-index-item:before {
    z-index: -2;
    transform: translate(-50%, -50%) skewX(25deg);
    transition: all 0.3s ease;
  }
}
.links-index .links-index-item:after {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  top: 0;
  background: #000d30;
  mix-blend-mode: multiply;
  opacity: 0.5;
  z-index: -1;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .links-index .links-index-item:after {
    opacity: 0.7;
  }
}
.links-index .links-index-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 0%);
}
@media (min-width: 992px) {
  .links-index .links-index-item:hover {
    clip-path: none;
  }
}
.links-index .links-index-item:hover:before {
  transform: scale(1.1) translate(-45%, -45%);
}
@media (min-width: 992px) {
  .links-index .links-index-item:hover:before {
    transform: scale(1.1) translate(-45%, -45%) skewX(25deg);
  }
}
.links-index .links-index-item:hover:after {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .links-index .links-index-item:hover:after {
    opacity: 0.2;
  }
}
.links-index .links-index-item:hover .links-index-item_button {
  background: #fff;
  color: #00040f;
}
.links-index .links-index-item a {
  display: block;
  padding: 7rem 0 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
}
@media (min-width: 768px) {
  .links-index .links-index-item a {
    padding: 10rem 0 1.5rem;
  }
}
@media (min-width: 992px) {
  .links-index .links-index-item a {
    padding: 8.125rem 0 1.5rem;
  }
}
.links-index .links-index-item__content {
  padding: 0 1.5rem;
  text-align: left;
}
@media (min-width: 992px) {
  .links-index .links-index-item__content {
    padding: 0 2rem;
    text-align: right;
  }
}
.links-index .links-index-item__content > span {
  display: block;
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
  text-shadow: 1px 1px 2px #00040f;
}
@media (min-width: 992px) {
  .links-index .links-index-item__content > span {
    text-align: right;
  }
}
.links-index .links-index-item_button {
  background-color: #0044ff;
  border: 0;
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1rem;
  color: #ffffff;
}
.links-index .links-index-item_button span {
  display: block;
}
@media (min-width: 992px) {
  .links-index .links-index-item_button span {
    transform: skewX(25deg);
  }
}
@media (min-width: 992px) {
  .links-index .links-index-item--featured {
    width: calc(33.33333333% - 1rem);
  }
  .links-index .links-index-item--featured a {
    padding: 13rem 0 3rem;
  }
  .links-index .links-index-item--featured .links-index-item__content {
    padding: 0 3rem;
  }
  .links-index .links-index-item--featured .links-index-item__content > span {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .links-index .links-index-item--featured .links-index-item_button {
    padding: 0.5rem 0.75rem;
    margin-top: 3rem;
    font-size: 1rem;
  }
}
.links-index .links-index-item--01:before {
  background-image: url('../images/index_link_01.png');
}
.links-index .links-index-item--02:before {
  background-image: url('../images/index_link_02.png');
}
.links-index .links-index-item--03:before {
  background-image: url('../images/index_link_03.png');
}
.links-index .links-index-item--04:before {
  background-image: url('../images/index_link_04.png');
}
.index-logo {
  background: url(../images/bg-blue.jpg);
  user-select: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .index-logo {
    margin-top: -70px;
  }
}
.index-logo .index-logo-content {
  text-align: center;
  padding: 5rem 0;
}
@media (min-width: 992px) {
  .index-logo .index-logo-content {
    padding: 12rem 0 8rem;
  }
}
.index-logo .index-logo-content img {
  max-width: 80%;
  filter: brightness(0) invert();
}
@media (min-width: 992px) {
  .index-logo .index-logo-content img {
    max-width: 50%;
  }
}
.about-index {
  color: #FFFFFF;
  background-color: #00040f;
}
@media (max-width: 991px) {
  .about-index .container-fluid {
    --bs-gutter-x: 6rem;
  }
}
.about-index .about-index-content {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .about-index .about-index-content {
    padding: 5rem 0;
  }
}
.about-index h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about-index h2 {
    text-align: left;
    font-size: 1.7rem;
  }
}
.about-index p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.about-index p.about-index-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about-index p.about-index-subtitle {
    text-align: left;
    font-size: 1.1rem;
  }
}
.about-index .about-index-content-col--left {
  position: relative;
  padding-bottom: 3rem;
  text-align: left;
}
@media (min-width: 768px) {
  .about-index .about-index-content-col--left {
    padding-bottom: 0;
    padding-right: 2rem;
  }
}
.about-index .about-index-content-col--left:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .about-index .about-index-content-col--left:after {
    top: 10%;
    bottom: auto;
    left: auto;
    right: 0;
    width: 1px;
    height: 80%;
  }
}
.about-index .about-index-content-col--right {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .about-index .about-index-content-col--right {
    padding-top: 0;
    padding-left: 2rem;
  }
}
.about-index h2.brands {
  font-weight: normal;
}
.about-index .brands-logotypes {
  --brands-logotypes-columns: 3;
  display: grid;
  grid-template-columns: repeat(var(--brands-logotypes-columns), calc((100% / var(--brands-logotypes-columns)) - 5px));
  gap: 5px;
}
@media (min-width: 768px) {
  .about-index .brands-logotypes {
    --brands-logotypes-columns: 2;
  }
}
@media (min-width: 992px) {
  .about-index .brands-logotypes {
    --brands-logotypes-columns: 4;
  }
}
.about-index .producer-index-item {
  display: inline-block;
  transition: all 300ms ease;
}
.about-index .producer-index-item:hover {
  transform: scale(1.2);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
.vouchers-index {
  background-image: url('../images/bg_index_vouchers.png');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .vouchers-index .container {
    --bs-gutter-x: 6rem;
  }
}
@media (min-width: 768px) {
  .vouchers-index {
    background-size: 40% auto;
  }
}
@media (max-width: 991px) {
  .vouchers-index .container-fluid {
    --bs-gutter-x: 6rem;
  }
}
@media (min-width: 992px) {
  .vouchers-index {
    background-position: right center;
    background-size: auto 100%;
    padding: 12rem 0 8rem;
  }
}
.vouchers-index .voucher-title-box {
  padding-top: 3rem;
  padding-bottom: 7rem;
  text-align: center;
}
@media (min-width: 768px) {
  .vouchers-index .voucher-title-box {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .vouchers-index .voucher-title-box {
    padding-top: 0;
    text-align: left;
  }
}
.vouchers-index .voucher-title-box .voucher-title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: normal;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
}
@media (min-width: 768px) {
  .vouchers-index .voucher-title-box .voucher-title {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .vouchers-index .voucher-title-box .voucher-title {
    margin-bottom: 0;
    padding-left: 4rem;
  }
}
.vouchers-index .voucher-title-box .voucher-text {
  margin: 0;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
}
.vouchers-index .voucher-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 calc(-0.25 * var(--bs-gutter-x));
}
@media (min-width: 768px) {
  .vouchers-index .voucher-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 1.5rem;
    justify-content: center;
    margin: 0 -3.5rem;
  }
}
@media (min-width: 1400px) {
  .vouchers-index .voucher-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: space-between;
    margin: 0 -3.5rem;
  }
}
.vouchers-index .voucher {
  opacity: 0.8;
  transition: opacity 300ms ease, transform 300ms ease, z-index 300ms ease;
}
@media (min-width: 768px) {
  .vouchers-index .voucher {
    width: calc(50% - 0.75rem);
  }
}
@media (min-width: 1400px) {
  .vouchers-index .voucher {
    width: 33.3333%;
  }
}
.vouchers-index .voucher .voucher-box {
  position: relative;
}
.vouchers-index .voucher .voucher-image img {
  position: absolute;
  left: -5%;
  bottom: 0;
  height: 130%;
  object-fit: cover;
  z-index: 2;
  transition: all 300ms ease;
  user-select: none;
  pointer-events: none;
}
.vouchers-index .voucher .voucher-info {
  clip-path: polygon(18.5% 0%, 100% 0%, 81.5% 100%, 0% 100%);
  background-color: #00040f;
  padding: 1rem 5% 2rem 45%;
  text-align: left;
  color: white;
}
@media (min-width: 992px) {
  .vouchers-index .voucher .voucher-info {
    padding: 2.4rem 5% 3.75rem 45%;
  }
}
.vouchers-index .voucher .voucher-info h2 {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .vouchers-index .voucher .voucher-info h2 {
    font-size: 1.2rem;
  }
}
.vouchers-index .voucher .voucher-info h2 span {
  display: block;
  position: relative;
  margin: 1.5rem 0 0 1.5rem;
  padding: 5px 0;
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
@media (min-width: 992px) {
  .vouchers-index .voucher .voucher-info h2 span {
    font-size: 1.5rem;
  }
}
.vouchers-index .voucher .voucher-info h2 span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #ffffff;
}
.vouchers-index .voucher .voucher-info h2 span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: -7%;
  background: #ffffff;
}
.vouchers-index .voucher .voucher-btn {
  position: absolute;
  right: 12%;
  bottom: -1.5rem;
  background-color: #0044ff;
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 300ms ease;
}
.vouchers-index .voucher .voucher-btn:after {
  content: url(../images/icon_cart_button.svg);
  display: inline-block;
  width: 1.25rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-size: 0;
  transition: all 300ms ease;
  filter: brightness(0) invert();
}
.vouchers-index .voucher .voucher-features {
  width: 81.5%;
  padding-top: 3rem;
  opacity: 0;
}
.vouchers-index .voucher .voucher-features h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
  text-wrap: nowrap;
  color: #00040f;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}
.vouchers-index .voucher .voucher-features h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #00040f;
}
.vouchers-index .voucher .voucher-features ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 2.5rem;
}
.vouchers-index .voucher .voucher-features ul li {
  position: relative;
  font-weight: bold;
  color: #00040f;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.vouchers-index .voucher .voucher-features ul li:before {
  content: url(../images/icon-plus.svg);
  position: absolute;
  left: -2.5rem;
  background: #0044ff;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 0;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(1) {
  transition-delay: 0.3s;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(2) {
  transition-delay: 0.4s;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(3) {
  transition-delay: 0.5s;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(4) {
  transition-delay: 0.6s;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(5) {
  transition-delay: 0.7s;
}
.vouchers-index .voucher .voucher-features ul li:nth-child(6) {
  transition-delay: 0.8s;
}
.vouchers-index .voucher:hover {
  opacity: 1;
  z-index: 10;
  transform: scale(1.05);
}
.vouchers-index .voucher:hover .voucher-image img {
  left: -8%;
  height: 135%;
  filter: drop-shadow(0 -0.5rem 0.5rem rgba(0, 0, 0, 0.2));
}
.vouchers-index .voucher:hover .voucher-btn {
  background: #fff;
  text-decoration: none;
  color: #00040f;
}
.vouchers-index .voucher:hover .voucher-btn:after {
  filter: brightness(1) invert(0);
}
.vouchers-index .voucher:hover .voucher-features {
  opacity: 1;
}
.vouchers-index .voucher:hover .voucher-features h3 {
  opacity: 1;
  transform: translateY(0);
}
.vouchers-index .voucher:hover .voucher-features ul li {
  opacity: 1;
  transform: translateY(0);
}
.blog {
  position: relative;
  background: #00040f;
  padding: 3rem 0 23rem;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .blog {
    padding: 3rem 0 4rem;
  }
}
@media (min-width: 992px) {
  .blog {
    padding: 5rem 0 8rem;
  }
}
.blog:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding-bottom: 75%;
  background: url('../images/bg-blog.png') no-repeat bottom right;
  background-size: auto 100%;
  filter: drop-shadow(0 0 0.5rem rgba(0, 4, 15, 0.7));
  z-index: 0;
}
@media (min-width: 768px) {
  .blog:before {
    height: 105%;
    right: -10%;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .blog:before {
    height: 115%;
    right: 0;
  }
}
.blog a {
  color: #FFFFFF;
  text-decoration: none;
}
.blog a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.blog .blog-content {
  --bs-gutter-x: 6rem;
  --bs-gutter-y: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .blog .blog-content {
    --bs-gutter-x: 3rem;
    padding-right: 20rem;
  }
}
@media (min-width: 992px) {
  .blog .blog-content {
    --bs-gutter-x: 3rem;
    padding-right: 25rem;
  }
}
@media (max-width: 767px) {
  .blog .blog-content .row {
    gap: 1.5rem;
  }
}
.blog .blog-content h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .blog .blog-content h3 {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .blog .blog-content h3 {
    margin-bottom: 4rem;
    font-size: 3rem;
    text-align: left;
  }
}
.blog .blog-content .blog-item {
  transition: all 300ms ease;
}
.blog .blog-content .blog-item a:hover {
  text-decoration: none;
}
.blog .blog-content .blog-item .blog-item-picture {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .blog .blog-content .blog-item .blog-item-picture {
    margin-bottom: 2rem;
  }
}
.blog .blog-content .blog-item .blog-item-picture img {
  clip-path: polygon(18.5% 0%, 100% 0, 100% 81.5%, 81.5% 100%, 0 100%, 0% 18.5%);
  transition: all 300ms ease;
}
.blog .blog-content .blog-item h1 {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .blog .blog-content .blog-item h1 {
    font-size: 1.2rem;
  }
}
.blog .blog-content .blog-item:hover {
  transform: scale(1.1);
}
.blog .blog-content .blog-item:hover .blog-item-picture img {
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 0%);
}
.blog .blog-more {
  margin-top: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .blog .blog-more {
    text-align: left;
  }
}
.blog .blog-more a {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: bold;
  background-color: #0044ff;
  display: inline-block;
  padding: 0.75rem 1rem;
  transition: all 300ms ease;
}
.blog .blog-more a:hover {
  background: #fff;
  text-decoration: none;
  color: #00040f;
}
.form-login {
  padding-top: 2rem;
}
.catalogue-header {
  min-height: 12rem;
  padding: 3rem 0 0;
}
.catalogue-header .catalogue-header-picture img {
  max-width: 100%;
}
.catalogue-header .catalogue-header-info .catalogue-header-info-content {
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  width: 100%;
}
.catalogue-header .catalogue-header-info .catalogue-header-info-content h1 {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  color: #00040F;
  font-size: 1.5rem;
  position: relative;
  overflow-x: hidden;
}
.catalogue-header .catalogue-header-info .catalogue-header-info-content h1 span {
  display: inline-block;
}
.catalogue-header .catalogue-header-info .catalogue-header-info-content h1::after {
  position: absolute;
  bottom: 0.75rem;
  width: 100%;
  margin-left: 1rem;
  border-bottom: 2px solid #00040f;
  content: "";
}
.catalogue-subcategory {
  background: #ffffff;
  padding: 1.5rem 0;
}
.catalogue-subcategory .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
}
.catalogue-subcategory .nav .nav-item {
  width: calc(20% - 0.5rem);
  display: flex;
}
.catalogue-subcategory .nav .nav-item .nav-link {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-weight: bold;
  color: #00040f;
  border: 3px solid #00040f;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: left;
}
.catalogue-subcategory .nav .nav-item .nav-link:hover {
  color: #FFFFFF;
  border: 3px solid #00040f;
  background-color: #00040f;
}
@media (max-width: 767px) {
  .catalogue-subcategory .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalogue-subcategory .nav-item {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .catalogue-subcategory .nav-link {
    display: block;
    padding: 10px;
    background-color: #00040f;
    color: #ffffff;
    text-decoration: none;
  }
  .catalogue-subcategory .nav-link:hover {
    background-color: #0044FF;
  }
}
.product-list-filter {
  background-color: #e1e1e1;
}
@media (max-width: 767px) {
  .product-list-filter {
    padding-bottom: 1.5rem;
  }
}
.product-list-filter-content {
  padding: 1rem;
}
.product-list-filter-content h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.product-list-filter-content label input.form-check-input {
  margin-right: 10px;
  border: 0;
  border-radius: 0;
}
.product-list-filter-button {
  margin-top: 1.5rem;
  display: block;
  background-color: #0044ff;
  color: #FFFFFF;
  border: 0;
  padding: 0.75rem;
  text-align: left;
  width: 85%;
}
.product-list-header {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
.product-list-header:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1rem;
  background: #00040f;
}
@media (min-width: 768px) {
  .product-list-header .row {
    align-items: start;
  }
}
.product-list-header .product-list-filter-top {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}
.product-list-header .product-list-filter-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  transform: skewX(-25deg);
  background: #00040f;
  z-index: -1;
}
.product-list-header .product-list-filter-top:after {
  content: "";
  position: absolute;
  right: calc(100% - 3rem);
  top: 0;
  width: 1500%;
  height: 100%;
  background: #00040f;
  z-index: -1;
}
@media (min-width: 768px) {
  .product-list-header .product-list-filter-top {
    padding: 2rem 1rem;
    font-size: 1.5rem;
  }
}
.product-list-header .product-list-sort {
  background: #ffffff;
  margin: -1.5rem calc(-1 * var(--bs-gutter-x)) 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2.5rem 1rem 0.5rem;
}
@media (min-width: 768px) {
  .product-list-header .product-list-sort {
    position: relative;
    margin-top: 1rem;
    justify-content: end;
    padding: 0.5rem 1rem;
  }
  .product-list-header .product-list-sort:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 1500%;
    height: 100%;
    background: #ffffff;
  }
}
.product-list-header .product-list-sort a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 0;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1rem;
  text-align: center;
  color: #00040f;
  text-shadow: 0 0 1px rgba(0, 4, 15, 0.7);
  transition: background-color 300ms ease, color 100ms ease;
}
.product-list-header .product-list-sort a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-0.8rem, -25%) skewX(-25deg);
}
.product-list-header .product-list-sort a span {
  position: relative;
  z-index: 1;
}
.product-list-header .product-list-sort a:hover {
  text-decoration: none;
  color: #ffffff;
}
.product-list-header .product-list-sort a:hover:before {
  background-color: #00040f;
}
.product-list-header .product-list-sort a.active,
.product-list-header .product-list-sort a.active:hover {
  color: #ffffff;
}
.product-list-header .product-list-sort a.active:before,
.product-list-header .product-list-sort a.active:hover:before {
  background-color: #0044ff;
}
.product-list-container {
  background: rgba(255, 255, 255, 0.4);
  padding-bottom: 10rem;
}
.product-list-container .product-list {
  padding-left: 2.25rem;
}
.quantity-control {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  gap: 0.25rem;
}
.quantity-control .btn-group-vertical {
  display: flex;
  flex-direction: column;
  width: 20px;
  gap: 1px;
}
.quantity-control .product-detail-quantity {
  width: 50px;
  height: 35px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.quantity-control .quantity-btn {
  width: 30px;
  height: 20px;
  font-size: 14px;
  padding: 0;
  border: 0;
  background: #000000;
  cursor: pointer;
  color: #FFFFFF;
  display: inline-block;
}
.quantity-control .quantity-btn:first-child {
  margin-bottom: 1px;
}
.quantity-control .quantity-btn:hover {
  background: #0044ff;
  color: #ffffff;
}
body.page--product {
  position: relative;
}
body.page--product:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
}
body.page--product main {
  position: relative;
}
body.page--product main:before {
  content: "";
  position: absolute;
  background: url('../images/bg.png') repeat center 30%;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: linear-gradient(black, transparent);
}
.product-detail .product-picture img {
  clip-path: polygon(75px 0%, 100% 0, 100% calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0% 75px);
}
.product-detail .product-picture a {
  filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.5));
  transition: all 300ms ease;
}
.product-detail .product-picture a img {
  transition: all 300ms ease;
}
.product-detail .product-picture a:hover {
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.7));
}
.product-detail .product-picture a:hover img {
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 0%);
  transform: scale(1.05);
}
.product-detail .product-details-content {
  padding-left: 1.5rem;
}
.product-detail h1 {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.product-detail .product-text-short {
  font-size: 1rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.product-detail .product-detail-info {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 1rem;
}
.product-detail .product-detail-info:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  top: 0;
  left: 10%;
  background: #00040f;
}
.product-detail .product-detail-info .item-price {
  font-family: "TacticSans", Arial, helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1rem;
}
.product-detail .product-detail-quantity {
  text-align: center;
  width: 2rem;
  border: 0;
  box-shadow: 0 0 5px #666666;
}
.product-detail .product-detail-button {
  display: inline-block;
  background-color: #0044ff;
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.product-detail .product-detail-button:after {
  content: url(../images/icon_cart_button.svg);
  display: inline-block;
  width: 1.25rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-size: 0;
  transition: all 300ms ease;
  filter: brightness(0) invert();
}
.product-detail .product-detail-button:hover {
  background: #fff;
  text-decoration: none;
  color: #00040f;
}
.product-detail .product-detail-button:hover:after {
  filter: brightness(1) invert(0);
}
.product-detail-tabs .nav-tabs {
  color: #00040f;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00040f;
}
.product-detail-tabs .nav-tabs .nav-link {
  color: #00040f;
  border: 0;
  padding: 0.5rem 0;
}
.product-detail-tabs .nav-tabs .nav-item:not(:first-child) .nav-link::before {
  content: ' / ';
  text-align: center;
  display: inline-block;
  color: #00040f;
  padding: 0 1rem;
}
.product-detail-tabs .nav-tabs .nav-link.active {
  color: #0044FF;
  background: none;
}
.product-detail-tabs .box-product-text {
  font-size: 0.85rem;
}
.box-product-picture-more {
  margin-top: 1.5rem;
  margin-left: -15px;
  margin-right: -15px;
}
.box-product-picture-more .bx-wrapper {
  max-width: 100% !important;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background: transparent;
}
.pictures-list-item {
  padding: 15px;
}
.page-cart {
  font-size: 0.85rem;
  padding-top: 2rem;
}
.page-cart .cart-table-content a {
  color: #00040f;
  font-weight: bold;
  text-decoration: none;
}
.page-cart .cart-table-content a:hover {
  color: #00040f;
  text-decoration: underline;
}
.page-cart .cart-table-content .img-thumbnail {
  padding: 0;
  border-radius: 0;
  border-width: 2px;
}
.page-cart .cart-table-content table {
  width: 100%;
}
.page-cart .cart-table-content thead {
  color: #666666;
}
.page-cart .cart-table-content thead th {
  text-align: center;
}
.page-cart .cart-table-content input {
  font-size: 0.85rem;
  text-align: center;
  border-color: #CCCCCC;
  max-width: 5rem;
}
.page-cart .cart-table-content .product-img {
  width: 6rem;
}
.page-cart .cart-table-content .product-img img {
  max-width: 5rem;
}
.page-cart .cart-table-content .product-quality {
  width: 5rem;
  text-align: center;
}
.page-cart .cart-table-content .product-price,
.page-cart .cart-table-content .price-total {
  width: 9rem;
  padding-right: 0.5rem;
  text-align: right;
}
.page-cart .page-cart-total {
  font-size: 1rem;
  font-weight: bold;
}
.page-cart .page-cart-total strong {
  color: #0044ff;
}
.checkout-cart-list {
  font-size: 0.85rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #CCCCCC;
}
.checkout-cart-subtotal .subtotal-item {
  font-size: 0.85rem;
}
.checkout-cart-subtotal .subtotal-item .form-control {
  font-size: 0.85rem;
  text-align: right;
  padding: 0;
  border: 0;
}
.checkout-cart-subtotal .subtotal-item .input-group-text {
  color: #000000;
  font-size: 0.85rem;
  padding: 0 0 0 0.4rem;
  border: 0;
  background-color: #FFFFFF;
}
.checkout-cart-subtotal .subtotal-item.subtotal-total {
  font-weight: bold;
}
.checkout-cart-subtotal .subtotal-item.subtotal-total .form-control,
.checkout-cart-subtotal .subtotal-item.subtotal-total .input-group-text {
  font-weight: bold;
}
.checkout-delivery-payment {
  font-size: 0.85rem;
}
.checkout-delivery-payment .form-check {
  height: 1.75rem;
  line-height: 1.75rem;
}
.checkout-delivery-payment .form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-remove {
  color: #ffffff !important;
  padding: 5px 10px;
  width: 2.5rem;
  text-align: center;
}
/*# sourceMappingURL=dynamicshpa.css.map */