body {
  background: var(--site-background-color);
}
body.has-offcanvas {
  overflow: hidden;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
#content-wrapper {
  flex-grow: 1;
  margin: 0 0.5em;
}
@media (min-width: 1460px) {
  #content-wrapper {
    margin: 0;
  }
}
#site-menu {
  margin-bottom: var(--gutter-y);
  background: var(--site-menu-background-color);
  background-attachment: fixed;
}
@media (min-width: 992px) {
  #site-menu .site-menu-wrapper {
    background: linear-gradient(180deg, #0C65A9, #1081D9);
  }
  .navbar-nav .categories {
  background: linear-gradient(180deg, #6BC537, #60B131);
  width: 100%;
}
}
.navbar-header form[name="search_form"] .input-group {
  border: 1px solid var(--color_dark_blue);
}
.navbar-header form[name="search_form"] .input-group input {
}

#top-bar {
  background: var(--color_dark_blue);
  color: var(--important-notice-text-color);
  text-align: center;
}
#top-bar .fourteen-forty {
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
#top-bar .fourteen-forty .top-bar-middle {

}
#top-bar .fourteen-forty a {
  color: var(--color_yellow);
}
#top-bar .fourteen-forty .nav-item:first-child {
  margin-inline-end: 0.75em;
}
@media (max-width: 991px) {
  #site-menu {
    position: sticky;
    display: block;
    top: -50px;
    z-index: 999;
    transition: top 200ms linear;
  }
  #site-menu .navbar-header a {
    /*color: var(--navigation-text-color);*/
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .navbar {
  padding: 0.5rem var(--gutter-x);
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 6.5em;
    padding: 0;
    margin-bottom: 0;
  }
  #site-menu .navbar .dropdown-menu .nav-link {
    background: var(--dropdown-menu-item-background-color);
    color: var(--dropdown-menu-item-text-color);
  }
  #site-menu .navbar .dropdown-menu .nav-link:hover {
    filter: brightness(0.95);
  }
}
#site-menu .dropdown-menu {
  overflow: hidden;
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
  /*top: -6em;*/
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.5em;
  justify-content: space-between;
  background: var(--header-background-color);
  color: var(--header-text-color);
  width: 100%;
  padding: 0 calc(var(--gutter-x)/2);
}
/*@media (min-width: 768px) {
  .navbar-header {
    gap: var(--gutter-x);
  }
}*/
@media (min-width: 992px) {
  .navbar-header {
    position: absolute;
    top: -5.25rem;
    left: 0;
    right: 0;
    margin-bottom: var(--gutter-y);
  }
}
.navbar-header .fourteen-forty {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-header .logotype {
  flex-grow: 1;
}
.navbar-header .logotype img {
  max-width: 140px;
  max-height: 38px;
}
@media (min-width: 768px) {
  .navbar-header .logotype img {
    max-width: 350px;
    max-height: 80px;
  }
}
@media (min-width: 768px) {
  .navbar-header .logotype {
    width: auto;
  }
}
@media (min-width: 992px) {
  .navbar-header .logotype {
    flex-grow: 0;
  }
}
.navbar-header .navbar-brand {
  display: none;
  width: calc(var(--sidebar-width) + var(--gutter-x)/2);
  font-size: 17px;
}
.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
  text-decoration: none;
}
.navbar-header .navbar-brand > img {
  display: block;
}
.navbar-header .navbar-icon fa {
  font-size: 1.15em;
}
.navbar-header .navbar-icon {
  padding: var(--input-padding-y) 1em;
}
@media (min-width: 768px) {
  .navbar-header .navbar-brand {
    display: block;
  }
  .navbar-header .navbar-icon {
    padding: var(--input-padding-y) var(--input-padding-x);
  }
}
.navbar-header form[name="search_form"] .input-group {
  background-color: #f1f3f5;
  flex-grow: 1;
  margin-right: 0.5em;
}
.navbar-header .navbar-search {
  display: flex;
  flex: 1 1 auto;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .navbar-header .navbar-search {
    width: 100%;
    order: 999;
    height: 35px;
  }
  .navbar-header form[name="search_form"] .input-group {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-search {
    max-width: 730px;

  }
}
.navbar-header a {
  text-decoration: none;
}
.navbar-header .account {
  background: var(--color_yellow);
  border-radius: var(--border-radius);
  border: 1px solid #EFBA01;
}

#cart {
  /*position: relative;*/
  display: inline-block;
  background: var(--color_green);
  border-radius: var(--border-radius);
  /*position: unset;*/
  perspective: none;
  background-image: none !important;
  padding-inline-end: 0 !important;
}
#cart > a {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px transparent solid;
  border-radius: var(--border-radius);
  color: inherit;
  white-space: nowrap;
}
#cart > a:hover {
  border-color: var(--default-border-color);
  text-decoration: none;
}

#cart > a .badge {
  background: var(--color_yellow);
  border-radius: 2rem;
  padding: 0.25em 0em;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 15px;
  width: 2em;
  animation: pulsating 1.5s linear infinite;
  font-size: 10px;
}
#cart > a .badge:empty {
  display: none;
}
@media (max-width: calc(992px)) {
  #cart .badge {
    top: 15px;
    right: 0;
  }
}
#cart .contents {
  padding: 1em;
  position: fixed;
  top: 0;
  right:-100%;
  bottom: 0;
  transition: all .5s ease-out;
  /*visibility: visible;*/
  background: #fff;
  box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: RotateX(0);
  transition: all .5s ease-out;
  width: 640px;
  z-index: 9999;
  padding: 2em;
}
@media (max-width: 767px) {
  #cart .contents {
    width: 90%;
    display: block !important;
  }
}
#cart.open .contents  {
  overflow-y: auto;
  border-radius: 0;
  z-index: 9999;
  right:0;
}
#cart.open + .cart-backdrop {
  content: ' ';
  z-index: 500;
  position: fixed;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  background: rgba(0,0,0,.5);
  display: none;
  transition: all .5s ease-out;
  display: block;
  opacity: 1;
  transition: all .5s ease-out;
}
#cart .items li {
  overflow: hidden;
}
#cart .items a {
  color: inherit;
  text-decoration: none;
}
#cart .items .thumbnail {
  float: left;
  width: 48px;
  height: 48px;
  margin-right: 1em;
}
#cart .subtotal {
  font-size: 1.25em;
  text-align: right;
  margin: 1em 0;
}
@media (max-width: 767px) {
  #cart .details {
    display: none;
  }
}

#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}
#box-category-tree {
  margin-top: calc(-1*var(--gutter-y));
  background: #fff;
}
#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  padding: var(--gutter-y) var(--gutter-x);
}
#footer a {
  color: inherit;
}
#footer hr {
  margin: 0.5em 0 !important;
}
#footer .account ul, #footer .information ul {
  display: flex;
  flex-wrap: wrap;
}
#footer .account ul li, #footer .information ul li {
  margin-right: 1em;
}
#footer .information  {
  margin-bottom: var(--gutter-y);
}
#footer .payment img {
  width: 50%;
}
#footer .footer-logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #footer .footer-logo img {
    max-width: 150px;
  }
}
#footer .social-links {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
#footer .social-links li {
  display: inline-block;
  margin-right: 15px;
}
#footer .social-links a {
  color: #fff;
}
#footer .social-links svg {
  height: 20px;
  min-height: 20px;
  width: 20px;
  min-width: 20px;
  fill: currentColor;
}
#footer .title {
  font-size: 1.5em;
  margin: 0 0 0.75em 0;
  color: var(--footer-title-color);
}
#footer ul.list-vertical li {
  padding: 0;
}
#copyright {
  background: var(--copyright-background-color);
  color: var(--copyright-text-color);
}
#copyright .container {
  padding: 0.75em var(--gutter-x);
}
#copyright .notice {
  text-align: center;
}
#copyright .notice a {
  color: inherit;
  text-decoration: underline;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  opacity: 0.3;
  position: fixed;
  right: 30px;
  width: 48px;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y)!important;
  margin: 5px;
}
#box-filter .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#box-filter .filters > * {
  flex: 1 1 auto;
  min-width: fit-content;
}
#box-filter .filters [data-toggle="dropdown"] {
  cursor: pointer;
}
#box-filter .filters .dropdown-menu li {
  margin: 0.5em 1em;
}
#box-filter .filters .dropdown-menu .option {
  white-space: nowrap;
}
#box-filter .manufacturers ul {
  max-height: 200px;
  overflow-y: auto;
}
#box-filter .tokens:not(:empty) {
  padding-top: var(--gutter-y);
}
#box-filter .tokens .token {
  padding: 0.5em 1em;
  border-radius: var(--border-radius);
  cursor: default;
  margin-inline-end: 0.5em;
}
#box-filter .tokens .token[data-group="name"] {
  background: #cbe2b6;
}
#box-filter .tokens .token[data-group="manufacturer"] {
  background: #b6c2e2;
}
#box-filter .tokens .token[data-group^="attribute"] {
  background: #e2c6b6;
}
#box-filter .tokens .token .remove {
  padding-inline-start: 0.5em;
  color: inherit;
  font-weight: 600;
}
#box-cookie-notice {
  background: var(--cookie-notice-background-color);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  backdrop-filter: saturate(200%) blur(5px);
  color: var(--cookie-notice-text-color);
  z-index: 999;
}
#box-cookie-notice .notice {
  margin-bottom: 1em;
}
#box-cookie-notice .notice a {
  color: inherit;
  text-decoration: underline;
}
#box-cookie-notice button {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
  #box-cookie-notice {
    max-width: 480px;
    margin: 0 auto;
    bottom: var(--gutter-y);
    border-radius: var(--border-radius);
  }
}
#box-recently-viewed-products .link img {
  transition: all 100ms linear;
}
#box-recently-viewed-products .link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  #box-also-purchased-products {
    position: sticky;
    top: 0;
  }
}
#box-manufacturer-logotypes img {
  max-height: 60px;
}
#box-recently-viewed-products .listing {
  grid-template-columns: repeat(auto-fill, minmax(48px, 0.5fr));
}
.listing {
  display: grid;
  grid-gap: calc(var(--gutter-x)/2);
}
@media (min-width: 768px) {
  .listing {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  }
}
@media (min-width: 992px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  }
}
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.listing.manufacturers {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .listing.manufacturers {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing h1,
.listing h2,
.listing h3 {
  padding-bottom: 0;
  border: none;
}
.listing a {
  color: inherit;
  text-decoration: none;
}
.listing .category,
.listing .manufacturer,
.listing .product {
  position: relative;
  overflow: hidden;
  background: var(--image-whitespace-color);
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
  transform: scale(1);
  transition: all 100ms linear;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
  border: solid 1px #CECECE;
}
.listing .category .caption {
  background: var(--whitespace-color);
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  color: var(--default-text-color);
  text-align: center;
}
.listing .category .caption * {
  font-weight: normal;
  color: inherit;
  margin: 0;
}
.listing .category .caption .name {
  font-size: 1.15em;
}
.listing .manufacturer {
  position: relative;
  background: var(--whitespace-color);
}
.listing .manufacturer img {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.listing .manufacturer .caption {
  margin: 0;
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  background: #f2f2f2;
  color: var(--default-text-color);
  text-align: center;
}
.listing .product {
  position: relative;
  background: var(--whitespace-color);
  border: 1px solid #F2F2F2;
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
  position: absolute;
  top: 20px;
  left: -32px;
  width: 125px;
  padding: 0.25rem 0;
  color: #222;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  letter-spacing: 0.5px;
}
.listing .product .image-wrapper .sticker.new {
  background: var(--color_yellow);
}
.listing .product .image-wrapper .sticker.sale {
  background: red;
}
.listing .product .name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 0;
  color: var(--color_blue);
  height: 3em;
  line-height: 1.5em;
}
.listing .product .manufacturer-name {
  color: var(--default-text-color);
  font-size: 0.9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .description {
  max-width: 640px;
  text-align: left;
}
.listing .product .stock-available .value {
  color: #009900;
}
.listing .product .stock-partly-available .value {
  color: #ff9900;
}
.listing .product .stock-unavailable .value {
  color: #cc0000;
}
.listing .product .price-wrapper {
  font-size: 1.25em;
}
.listing .product .price-wrapper .price {
  font-weight: 600;
  white-space: nowrap;
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  font-weight: normal;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  font-weight: bold;
  color: #c00;
  white-space: nowrap;
}
.listing .product .preview {
  margin: 0 -1px -1px -1px;
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  padding: var(--input-padding-y);
  width: 3em;
  box-shadow: none;
}
@media (min-width: 768px) {
  .listing .product:hover .preview {
    display: inline-block;
  }
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding: 0.5em;
}
.listing.columns .product .description {
  display: none;
}
.listing.columns .product .price-wrapper {
  position: initial;
  margin-bottom: 0.5em;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: var(--gutter-y) var(--gutter-x);
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description {
    margin-bottom: 1em;
  }
}
#box-product .main-image {
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  color: #222;
  font-size: 12px;
  font-weight: 600;
  top: 20px;
  left: -35px;
  padding: 0.25rem 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 140px;
}
#box-product .main-image .sticker.new {
  background: var(--color_yellow);
}
#box-product .main-image .sticker.sale {
  background: red;
}
#box-product .thumbnail-images {
  padding: 0 1em;
  margin-bottom: 1em;
}
#box-product .thumbnail-image {
  width: 70px;
  border:1px solid aliceblue;
  cursor: pointer;
  margin: 0 auto;
}
#box-product .image-slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#box-product .images {
  display: flex;
  transition: transform 0.5s ease-out;
}
#box-product .item {
  flex: 0 0 auto;
  width: 100%;
}

#box-product .item img {
  max-width: 100%;
}

#box-product .slider-control {
  position: absolute;
  top: 220px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 30px;
  color: #2B485F94;
  padding: 5px 7px;
  text-decoration: none;
}
#box-product .slider-control:hover {
  background: #CCCCCC68;
}
#box-product .prev {
  left: 10px;
}

#box-product .next {
  right: 10px;
}
#box-product .price-wrapper { 
  align-items: center;
  width: auto;
  height: auto;
  box-sizing: border-box;
  background-color: #0C65A9;
  border-radius: 8px;
  color: #fff;
  line-height: 1;
  min-height: 32px;
  padding: 4px 18px;
  font-size: 60px;
  display: inline-flex;
  margin: 15px 15px 5px 0px; 

}#box-product .price-wrapper sup {
  font-weight: 700;
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 1.5em;
}
#box-product .price-wrapper .campaign-price {
  color: #cc0000;
}
#box-product .tax {
  color: #999;
  margin-bottom: -1em;
}
#box-product .stock-available .value {
  color: #2f8f1f;
  padding: 0 5px;
  border-radius: 3px;
  background: rgba(105,194,53,.12);
  font-size: 15px;
}
#box-product .stock-partly-available .value {
    color: #cc0000;
    padding: 0 5px;
    border: 1px solid #cc0000;
    border-radius: 3px;
    background: #FFCFCF;
    font-size: 18px;
}
#box-product .stock-unavailable .value {
    color: #ff9900;
    padding: 0 5px;
    border: 1px solid #ff9900;
    border-radius: 3px;
    background: #FFEBCF;
    font-size: 18px;
}
#box-product .out-of-stock-notice {
  background: var(--default-background-color);
  border: 1px solid #d4d4d4;
  padding: var(--gutter-y) var(--gutter-x);
  border-radius: var(--border-radius);
  margin-top: 10px;
}
#box-product .stock-notice {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: var(--border-radius);
  border: 1px #86cb00 solid;
  color: #86cb00;
}
#box-product .stock-notice:empty {
  display: none;
}
#box-product .stock-notice.warning {
  color: #c00;
  border-color: #c00;
}
#box-product .stock-notice .description {
  margin-top: 1em;
  font-size: 0.8em;
}
#box-product .social-bookmarks {
  font-size: 1.75em;
  margin-top: 1em;
}
#box-product .social-bookmarks a {
  margin: 0 0.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}
#box-product .description a {
  text-decoration: underline;
}
#box-product .coupon-code {
  background: #F7F7F7;
  width: 100%;
  height: 35.5px;
  color: #0B66AA;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  border: 2px solid #0B66AA;
  box-shadow: 1px 3px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  #box-product .coupon-code {
    margin-top: 1em;
    font-size: 14px;
  }
}
#box-product .extra-information {
  margin: 1em 0 0 0;
  font-size: 14px;
  grid-gap: 1em;
  line-height: 1.4;
}
#box-product .cart-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
}
#box-product .form-group {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  #box-product .form-group {
    margin-bottom: 0;
  }
}
#box-product .cart-buttons .input-group {
  align-items: center;
  flex: 1 1 30%;
}
#box-product .cart-buttons .btn-success {
  flex: 1 1 38%;
  background: #c00;
}
#box-product .cart-buttons .btn-primary {
  flex: 1 1 20%;
}
#box-product .cart-buttons .input-group button {
  -webkit-appearance: none;
  background-color: var(--default-background-color);
  border: none;
  align-items: center;
  justify-content: center;
  width: 20%;
  font-weight: bold;
  height: 100%;
  border-radius: 2px;
}
#box-product .cart-buttons .input-group input[type=number] {
  font-weight: bold;
  text-align: center;
  padding: 0;
  flex: 1;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
#box-product .extra-information h4 {
  margin-bottom: 0.5rem;
}
#box-product .extra-information .border-box {
  border: 1px solid #E3E3E3;
  box-shadow: 1px 3px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  background: #FEF5D3;
  align-items: center;
  padding: 0.5em;
  grid-gap: 0.5em;
  margin-bottom: 0;
}
#box-product .extra-information .border-box .image {
  margin-right: 0.5em;
}
#box-product .extra-information .border-box .image img {
  width: 100%;
}
#box-product .extra-information .extra-link a {
  color: var(--color_blue);
  font-weight: 600;
}
#box-product .shipping-cost-table {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #box-product .shipping-cost-table {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5em;
  }
}
#box-product .shipping-options .cost {
  color: var(--color_green);
  font-weight: 800;
  margin-left: 1em;
}
#box-product .payment-options .payment-icon i {
  width: 25px;
  text-align: center;
}
#box-category .description {
  color: #333;
  line-height: 1.75;
}
#box-category h3.title, #box-category h1.title {
  color: var(--color_blue) !important;
}
.stock-delivery {
  padding-top: 5px;
  font-weight: 800;
  font-size: 16px;
}
.stock-available {
  padding-top: 5px;
  font-size: 18px;
}
.value {
  font-weight: 800;
  color: #0B66AA;
  padding: 0 3px;
 }
.sku {
    font-size: 18px;
}
#box-product .sdate {
    color: #0B66AA;
}
.custom_bg {
   background: #CFDDE9;
}
.payment.wrapper {
    margin: 5px;
}
.fa-cube:before {
    color: #FFFFFF;
    background: #2C485F;
    padding: 3.5px;
}
.fa-clock-o:before {
    color: #FFFFFF;
    background: #2C485F;
    padding: 6px;
}
.fa-tag:before {
    color: #FFFFFF;
    background: #2C485F;
    padding: 5px;
}
.container {  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "lokacija city"
    ". .";
}

.lokacija { grid-area: lokacija; }

.city { grid-area: city; }
button.btn.btn-block.btn-lg.btn-success {
    background: #6DC43A;
}
.text-attr {
    color: white;
    padding: 0 5px;
    border: 1px solid #4cbb6c;
    border-radius: 3px;
    background: #69C235;
    display: inline-block;
    margin: 3px;
}
.attr {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #F7F7F7;
    display: inline-block;
    margin: 3px;
}
/* 4000K */
.p1-2 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #F7F7F7;
    display: inline-block;
    margin: 3px;
}
/* 3000K */
#box-product .p1-1 {
    color: black;
    padding: 0 5px;
    border: 1px solid #FADD6F;
    border-radius: 3px;
    background: #FCF2CA;
    display: inline-block;
    margin: 3px;
}
/* 6000K */
#box-product .p1-3 {
    color: black;
    padding: 0 5px;
    border: 1px solid #B6E2EC;
    border-radius: 3px;
    background: #DEF2F6;
    display: inline-block;
    margin: 3px;
}
/* RGB */
#box-product .p1-4 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,189,189,1) 0%, rgba(187,255,178,1) 50%, rgba(178,204,255,1) 100%);
    display: inline-block;
    margin: 3px;
}
/* rdeï¿½a */
#box-product .p1-5 {
    color: black;
    padding: 0 5px;
    border: 1px solid #E3E3E3;
    border-radius: 3px;
    background: #FAB9C1;
    display: inline-block;
    margin: 3px;
}
/* zelena */
#box-product .p1-7 {
    color: black;
    padding: 0 5px;
    border: 1px solid #E3E3E3;
    border-radius: 3px;
    background: #C5F4B5;
    display: inline-block;
    margin: 3px;
}
/* modra */
#box-product .p1-6 {
    color: black;
    padding: 0 5px;
    border: 1px solid #E3E3E3;
    border-radius: 3px;
    background: #B3D5F2;
    display: inline-block;
    margin: 3px;
}
/* rumena */
#box-product .p1-8 {
    color: black;
    padding: 0 5px;
    border: 1px solid #E3E3E3;
    border-radius: 3px;
    background: #FFF68A;
    display: inline-block;
    margin: 3px;
}
.attrca {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #F7F7F7;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* C-4000K */
.c1-2 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #F7F7F7;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* C-6000K */
.c1-3 {
    color: black;
    padding: 0 5px;
    border: 1px solid #B6E2EC;
    border-radius: 3px;
    background: #DEF2F6;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* C-3000K */
.c1-1 {
    color: black;
    padding: 0 5px;
    border: 1px solid #FADD6F;
    border-radius: 3px;
    background: #FCF2CA;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* C-RGB */
.c1-4 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,189,189,1) 0%, rgba(187,255,178,1) 50%, rgba(178,204,255,1) 100%);
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* C-RGB */
.c1-41 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,252,147,1) 0%, rgba(238,238,238,1) 50%, rgba(200,246,255,1) 100%);
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* CCT */
.c1-41 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,252,147,1) 0%, rgba(238,238,238,1) 50%, rgba(200,246,255,1) 100%);
    display: inline-block;
    margin: 5px;
}
/* c-rdeï¿½a */
.c1-5 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #FAB9C1;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* c-zelena */
.c1-7 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #C5F4B5;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* c-modra */
.c1-6 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #B3D5F2;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* c-rumena */
.c1-8 {
    color: black;
    padding: 0 5px;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    background: #FFF68A;
    position: absolute;
    font-size: 11px;
    margin: 5px;
}
/* EI-F */
.p7-59 {
    background-image: url("/images/ei/ei_f.svg");
    background-repeat: no-repeat;
    display: inline-block;
    height: auto;
    width: 32px;
    white-space: nowrap;
    text-indent: -9999px;
    border: none;
    background-color: white;
}
/* EI-G */
.p7-60 {
    background-image: url("/images/ei/ei_g.svg");
    background-repeat: no-repeat;
    display: inline-block;
    height: auto;
    width: 32px;
    white-space: nowrap;
    text-indent: -9999px;
    border: none;
    background-color: white;
}
/* EI-E */
.p7-58 {
    background-image: url("/images/ei/ei_e.svg");
    background-repeat: no-repeat;
    display: inline-block;
    height: auto;
    width: 32px;
    white-space: nowrap;
    text-indent: -9999px;
    border: none;
    background-color: white;
}

.listing.products.columns.related {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.card-header.crelated {
    padding: 15px 5px 15px 25px;
    background: #ededed;
}
.card-body.crelated {
    background: #ededed;
}
.confirm.row {
    background: #fff8d9;
    padding: 10px;
    border-radius: 4px;
    margin-top: 5px;
    border: 2px solid #f00;
}
h3.card-title.subtitle {
    font-size: 15px !important;
}
.card-header.checkout {
    padding-bottom: 15px;
    background: #ededed;
}
.card-header.checkout1 {
    background: #ededed;
    padding-bottom: 15px;
}
.card-header.ccart {
    padding-bottom: 15px;
    background: #ededed;
}
li.item {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.gpsr-manufacturer, .importer, .responsible-person {
    border: 1px solid #000; 
    padding: 1em; 
    margin: 0.75em 0;
}
.gpsr-manufacturer p{
    margin: 0.25em;
}
.gpsr {
    color: #ADADAD;
    padding: 0 5px;
    border: 1px solid #ADADAD;
    border-radius: 3px;
    background: #EAEAEA;
    width: fit-content;
}
.body {
background-color: #f6f6f6 !important;
}
.mm-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.mm-product {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 15px;
  background: #e3e8e2;
  text-align: center;
  transition: 0.2s ease;
}

.mm-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mm-product img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.mm-product h3 {
  font-size: 15px;
  margin: 6px 0;
  color: #222;
  min-height: 42px;
}

.mm-product .price {
  font-size: 18px;
  font-weight: bold;
  color: #1a7f37;
  margin: 8px 0;
}

.mm-product a {
  display: inline-block;
  background: #CC0000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.mm-product a:hover {
  background: #EB0000;
}
.clanek {
  font-size: 18px;
}
.mm-sidebar-banners{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0 0 15px;
}

.mm-sidebar-banners__item{
  display:block;
  max-width:370px;
}

.mm-sidebar-banners__item img{
  display:block;
  width:100%;
  height:auto;
  border-radius:8px;
}
.mm-sb-box{
  width: 100%;
  height: 95px;                 /* FIXNA višina boxa */
  display: grid;
  grid-template-columns: 1fr 70px; /* tekst | slika */
  align-items: center;
  gap: 8px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #E3E8E2;
  overflow: hidden;
  box-sizing: border-box;
}

/* Medijski okvir za sliko – manjši */
.mm-sb-box__media{
  width:70px;
  height:70px;
  border-radius:10px;
  background:#fff;
  border:1px solid #cfcfcf;
  overflow:hidden;
  display:grid;
  place-items:center;
}

/* Slika naj zapolni okvir, razmerje ostane */
.mm-sb-box__img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

/* Tipografija malenkost manjša za 95px višine */
.mm-sb-box__title{
  font-size:18px;
  line-height:1.1;
  font-weight:800;
  margin:0 0 8px 0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mm-sb-box__btn{
  display:inline-block;
  background:#60B131;
  color:#fff !important;
  text-decoration:none !important;
  padding:6px 12px;
  border-radius:6px;
  font-weight:700;
  font-size:13px;
  transition:.2s ease;
  white-space:nowrap;
}

/* Responsive */
@media (max-width: 360px){
  .mm-sb-box{
    grid-template-columns: 1fr 60px;
    padding: 6px;
    gap: 6px;
  }
  .mm-sb-box__media{
    width:60px;
    height:60px;
  }
  .mm-sb-box__title{ font-size:14px; }
}
/* ==========================
   Wrapper
========================== */
.stock-status{
  display:inline-flex;
  flex-direction:column;
  align-items:stretch;
  gap:4px;
  margin:4px 0;
  width:max-content;
}


/* ==========================
   Skupni card stil
========================== */
.stock-available,
.stock-delivery,
.sku{

  position:relative;
  display:flex;
  align-items:center;
  gap:10px;

  width:100%;
  box-sizing:border-box;

  padding:4px 14px 4px 44px;
  border-radius:6px;

  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 2px 8px rgba(0,0,0,.05);

  font-size:14px;
  line-height:1.2;

  white-space:nowrap;

  transition:all .15s ease;
}

.stock-available:hover,
.stock-delivery:hover,
.sku:hover{
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}


/* ==========================
   LEVI BARVNI TRAK
========================== */
.stock-available::after,
.stock-delivery::after,
.sku::after{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  bottom:8px;
  width:4px;
  border-radius:6px;
}

.stock-available::after{ background:#69C235; }
.stock-delivery::after{ background:#0B66AA; }
.sku::after{ background:#9A9A9A; }


/* ==========================
   IKONE
========================== */
.stock-available::before,
.stock-delivery::before,
.sku::before{

  font-family:"FontAwesome";
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);

  width:20px;
  height:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:6px;
  font-size:12px;
}


/* ==========================
   ZALOGA
========================== */
.stock-available{
  background:#F3FAF1;
  border-color:#CFE7C8;
  font-weight:600;
}

.stock-available::before{
  content:"\f00c";
  background:#E8F6E3;
  color:#3F8A24;
}

.stock-available span{
  color:#3F8A24;
  font-weight:700;
}


/* ==========================
   DOSTAVA
========================== */
.stock-delivery{
  background:#F4F8FD;
  border-color:#D6E3F3;
  font-weight:600;
}

.stock-delivery::before{
  content:"\f017";
  background:#E6F0FB;
  color:#2B78C5;
}


/* ==========================
   SKU
========================== */
.sku{
  background:#F7F7F7;
  border-color:#E3E3E3;
}

.sku::before{
  content:"\f02b";
  background:#ECECEC;
  color:#666;
}


/* ==========================
   VALUE badge
========================== */
.value{
  margin-left:6px;

  padding:2px 8px;
  border-radius:4px;

  font-weight:700;
  font-size:15px;
  line-height:1.2;
}


/* ==========================
   Value po tipih
========================== */
.stock-available .value{
  background:#E8F6E3;
  color:#3F8A24;
}

.stock-delivery .value{
  background:#E6F0FB;
  color:#2B78C5;
}

.sku .value{
  background:#ECECEC;
  color:#555;
}


/* ==========================
   shipping class
========================== */
.ship-today{
  background:#EEF7FC;
}

.ship-tomorrow{
  background:#F4F8FD;
}span.hidden-xs {
    color: black;
}
ul.nav img { 
   width:25px; height:25px; 
}
