/* CSS FOR STYLE TEMPLATE 1 */
/* 
UNIVERSAL
======================== */
html, body {
  font-family: "Roboto", sans-serif;
  color: #282828;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-height: 768px) {
  html, body {
    height: 100%;
  }
}

.stealth-link {
  color: inherit;
}

.stealth-link:hover {
  text-decoration: none;
  color: inherit;
}

.content-heading img {
  max-height: 100px;
  max-width: 100%;
  height: auto;
  width: auto;
}

/* -- Colours -- */
.white {
  background: white;
  color: #282828;
}

.red {
  background: #dc2814;
  color: #fafafa;
}

.green {
  background: #3ca03c;
  color: #fafafa;
}

.yellow {
  background: #c48705;
  color: #fafafa;
}

.text-special {
  color: var(--special);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.btn-number {
  border: 1px solid #ced4da;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.btn:disabled:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: transparent;
}

.btn:disabled:hover::before {
  display: none;
}

.list-group.list-group-sm > .list-group-item {
  padding: 0.5rem 1rem;
}

.dummy-btn {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 
Custom Colours
=============================================== */
.c-accent {
  background: var(--accent) !important;
  border-color: var(--accent);
}

.btn.c-accent {
  position: relative;
}

.btn.c-accent:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-accent:not(.btn-nohover):hover:before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--accent);
}

.t-accent {
  color: var(--accent);
}

.c-primary {
  background: var(--p-button) !important;
  border-color: var(--p-button);
}

.btn.c-primary {
  position: relative;
}

.btn.c-primary:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-primary:not(.btn-nohover):hover:before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--p-button);
}

.t-primary {
  color: var(--s-button);
}

.c-secondary {
  background: var(--s-button) !important;
  border-color: var(--s-button);
}

.btn.c-secondary {
  position: relative;
}

.btn.c-secondary:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-secondary:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--s-button);
}

.t-secondary {
  color: var(--s-button);
}

.c-important {
  background: var(--important) !important;
  border-color: var(--important);
}

.btn.c-important {
  position: relative;
}

.btn.c-important:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-important:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--important);
}

.t-important {
  color: var(--important);
}

.c-success {
  background: var(--success) !important;
  border-color: var(--success);
}

.btn.c-success {
  position: relative;
}

.btn.c-success:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-success:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--success);
}

.t-success {
  color: var(--success);
}

.c-warning {
  background: var(--warning) !important;
  border-color: var(--warning);
}

.btn.c-warning {
  position: relative;
}

.btn.c-warning:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-warning:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--warning);
}

.t-warning {
  color: var(--warning);
}

.c-info {
  background: var(--info) !important;
  border-color: var(--info);
  position: relative;
}

.btn.c-info {
  position: relative;
}

.btn.c-info:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-info:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--info);
}

.t-info {
  color: var(--info);
}

.c-dim {
  background: var(--dim) !important;
  border-color: var(--dim);
}

.btn.c-dim {
  position: relative;
}

.btn.c-dim:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-dim:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--dim);
}

.t-dim {
  color: var(--dim);
}

.c-special {
  background: var(--special) !important;
  border-color: var(--special);
}

.btn.c-special {
  position: relative;
}

.btn.c-special:not(.btn-nohover):hover {
  -webkit-box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10em 10em rgba(0, 0, 0, 0.2);
}

.btn.c-special:not(.btn-nohover):hover::before {
  content: '';
  position: absolute;
  top: -0.15em;
  left: -0.15em;
  width: calc(100% + 0.3em);
  height: calc(100% + 0.3em);
  opacity: 0.2;
  border: 0.3em solid var(--special);
}

.t-special {
  color: var(--special);
}

/* 
General
======================== */
/* --- Auto Text --- */
.auto-text {
  -webkit-transition: none !important;
  transition: none !important;
}

.auto-text-light {
  color: #fafafa !important;
}

.auto-text-light *:not(a) {
  color: #fafafa !important;
}

a .auto-text-light:hover {
  color: #fafafa !important;
}

.auto-text-light .auto-text-dark {
  color: #282828 !important;
}

.auto-text-dark {
  color: #282828 !important;
}

.auto-text-dark *:not(a) {
  color: #282828 !important;
}

a .auto-text-dark:hover {
  color: #282828 !important;
}

.auto-text-dark .auto-text-light {
  color: #fafafa !important;
}

.btn-nohover:hover {
  cursor: default !important;
}

button.btn.btn-circle {
  border-radius: 10em;
}

.circle-container {
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.circle-container .circle {
  height: 6rem;
  width: 6rem;
  border-radius: 100%;
  font-size: 350%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.circle-container .circle i {
  width: 100%;
  color: white;
}

.footer-policy::after {
  content: '|';
  margin: 0em 0.2em;
}

.footer-policy:last-child::after {
  content: '';
}

/* 
Top Header
=============================== */
/* --- top menu --- */
.top-menu {
  font-size: 11pt;
}

.top-menu a {
  color: #282828;
}

.top-menu .list-inline {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* 
Main Header
============================ */
/* --- Pageheader --- */
.pageheader {
  padding: 2rem 0rem 1rem 0rem;
}

/* --- Logo --- */
.logo {
  max-width: 80vw;
}

#searchbox .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  z-index: 100;
}

#searchbox .input-group .easy-autocomplete {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* 
Navbar / Mega Menu
======================== */
/* --- General --- */
.navbar {
  padding: 0;
  z-index: 10;
}

.navbar .navbar-collapse {
  position: relative;
}

.navbar.mm-dark .nav-link {
  color: #fafafa !important;
  height: 100%;
}

.navbar.mm-dark .nav-link:hover {
  color: #fafafa !important;
}

.navbar.mm-dark .active .nav-link {
  color: #fafafa;
}

.navbar.mm-dark .dropdown-item {
  color: #fafafa !important;
}

.navbar.mm-dark i {
  color: #fafafa;
}

.navbar.mm-light .nav-link {
  color: #282828;
}

.navbar.mm-light .nav-link:hover {
  color: #282828 !important;
}

.navbar.mm-light .active .nav-link {
  color: #282828;
}

.navbar.mm-light .dropdown-item {
  color: #282828 !important;
}

.navbar.mm-light i {
  color: #282828;
}

.navbar .nav-item {
  padding: 0.2rem 0.4rem;
  font-weight: 600;
  position: static;
}

.navbar .nav-item:hover {
  background-color: rgba(130, 130, 130, 0.5);
}

.navbar .nav-item.active {
  background-color: rgba(130, 130, 130, 0.8);
}

.navbar .mega-menu {
  position: absolute;
  left: 50%;
  width: 100%;
  margin-top: 0;
  padding: 1rem !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.navbar .mega-menu .mega-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar .mega-menu .mega-menu-container h4 {
  font-weight: 600;
}

.navbar .mega-menu .mega-menu-container a {
  display: block;
  color: inherit;
  opacity: 0.9;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

.navbar .mega-menu .mega-menu-container a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  opacity: 0.8;
}

.navbar .mega-menu .mega-menu-container .variety {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.navbar .mega-menu .mega-menu-container .variety ul {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0;
}

.navbar .mega-menu .mega-menu-container .variety ul li {
  text-overflow: ellipsis;
}

.navbar .mega-menu .mega-menu-container .variety ul li.active > a {
  background-color: rgba(130, 130, 130, 0.8);
}

.navbar .mega-menu .mega-menu-container .variety.variety-slim ul {
  -ms-grid-columns: (minmax(175px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
}

.navbar .mega-menu .mega-menu-container .price-options {
  width: 20%;
}

/* --- Social Link --- */
.social-link {
  color: var(--accent);
}

.social-link:hover {
  color: var(--accent);
  opacity: 0.6;
}

.social-text {
  color: var(--accent);
  font-size: 0.8em;
  margin-right: 0.5em;
}

.shop-phone {
  color: var(--accent);
}

/* 
Body
================================ */
/* something */
/* 
Store
================================ */
.filter-badge:hover {
  opacity: 0.9;
}

/* end Store */
/* 
Side Menu
================================= */
.category-card {
  margin-bottom: 1rem;
}

.category-card .btn-link {
  color: var(--accent);
}

.category-body {
  max-height: 20rem;
  overflow-y: auto;
}

.category-list {
  list-style: none;
  padding-left: 0.8rem;
  font-size: 90%;
}

.category-list li {
  padding: 0.4rem 0.8rem;
  background: none;
}

.category-list a {
  color: inherit;
}

.category-list .custom-control-label {
  cursor: pointer;
}

.children-list {
  list-style: none;
  padding-left: 0.8rem;
  font-size: 90%;
}

.children-list li {
  padding: 0.1rem 0rem;
}

.custom-control-label::before, .custom-control-label::after {
  top: 0.25em;
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom-checkbox button {
  margin-left: 0.3em;
}

.custom-checkbox > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--accent);
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: var(--accent);
}

/* 
Product Cards (portfolio-item)
================================== */
.product-card:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-card .card-body {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.product-card .card-pricing {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.product-card .card-header {
  background: none;
  border: none;
}

.product-card .card-header h5 {
  position: relative;
}

.product-card .card-header h5 .title-discount {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(75%, -50%);
          transform: translate(75%, -50%);
}

.product-card .card-header h5 .title-discount.staff-pick {
  left: 0;
  right: auto;
  -webkit-transform: translate(-75%, -50%);
          transform: translate(-75%, -50%);
}

.product-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 253px;
}

.product-image-container a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
}

.product-image-container a.out-of-stock {
  opacity: 0.6;
}

.product-image-container .card-body {
  position: absolute;
  bottom: 0;
}

.card-img-top {
  max-height: 90%;
  max-width: 90%;
  height: auto;
  width: auto;
}

.card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.8;
}

.card-info:hover {
  opacity: 1;
}

.deal-labels {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
}

.deal-labels span {
  font-size: 12pt;
}

.deal-labels-left {
  position: absolute;
  left: 0;
  top: -0.8em;
  margin: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 1;
}

.deal-labels-left span {
  font-size: 12pt;
}

.sale-label {
  background: var(--special);
  color: white;
  /* padding: 0.1rem 0.8rem;
    border-radius: 1rem;
    font-weight: bold;
    z-index:1; */
}

.price-percent-reduction {
  background: #fafafa;
  color: #dc2814;
  /* padding: 0.1rem 0.8rem;
    border-radius: 1rem; */
}

.new-label {
  background: #3ca03c;
  color: #fafafa;
  /* padding: 0.1rem 0.8rem;
    border-radius: 1rem; */
}

.hot-label {
  background: #ff7b00;
  color: #fafafa;
}

.old-price {
  text-decoration: line-through;
  margin-right: 0.1rem;
  font-size: 11pt;
}

.discount-label {
  background: var(--special);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25% -25%;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.badge.special-price {
  background: var(--special);
  color: #fafafa;
}

.portfolio-item .card-title {
  font-size: 110%;
  min-height: 4rem;
}

.card-product-text {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-product-text > span {
  margin-bottom: 0.2rem;
}

.item-quantity {
  font-size: 80%;
  opacity: 0.6;
}

span.price {
  font-weight: 600;
}

span.size {
  font-size: 100%;
  opacity: 0.8;
}

.stock-picker .picker-item {
  padding: 0.25rem 0.25rem 0rem 0.25rem !important;
}

.stock-picker .picker-item .picker-child {
  padding: 0rem 0.125rem;
}

.stock-picker .picker-item .picker-child:first-child {
  padding-left: 0;
}

.stock-picker .picker-item .picker-child:last-child {
  padding-right: 0;
}

ul > li.item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0.6rem;
}

ul > li.item-price .price {
  font-size: inherit;
}

ul > li.item-price .size {
  font-size: 65%;
}

div > .item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  width: calc(100% - 1em);
}

div > .item-price .size {
  position: relative;
  margin-left: .5em;
  font-size: 65%;
}

div > .item-price .size::before {
  content: '/';
  position: absolute;
  left: -.5em;
}

div > .item-price .price {
  font-size: inherit;
}

div.in-stock > .item-price {
  margin-bottom: 0.4em;
}

.item-discount {
  display: block;
  font-size: 0.8rem;
  margin: 0.2rem 0rem;
  min-width: 100px;
  line-height: 90%;
  font-weight: 400;
  position: relative;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1em !important;
  padding-right: 1em !important;
  margin-left: 0.1em;
  margin-right: 0.1em;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  min-height: 26px;
}

.item-discount::before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--accent);
  top: 0;
  left: 0;
  opacity: 0.2;
  border-radius: 1em;
  background-color: var(--accent);
}

.item-discount.accent::before {
  border-color: var(--accent);
  background-color: var(--accent);
}

.item-discount.special::before {
  border-color: var(--special);
  background-color: var(--special);
}

.item-discount.success::before {
  border-color: var(--success);
  background-color: var(--success);
}

.item-discount.important::before {
  border-color: var(--important);
  background-color: var(--important);
}

.item-discount i {
  opacity: 0.7;
}

.badge-clear {
  background-color: rgba(0, 0, 0, 0);
}

.cart-btn {
  padding-top: 0.25rem !important;
}

.cart-btn .btn:disabled {
  background: dimgrey !important;
  border-color: dimgrey !important;
}

.wishlist {
  position: absolute;
  left: 0;
  padding: 0rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 2;
}

.wishlist .icon {
  font-size: 130%;
  cursor: pointer;
  height: 2rem;
}

.wishlist .icon .bookmark {
  height: 1rem;
  width: 1.2rem;
  padding: 0;
  border-left: 0.65rem solid #c8c8c8;
  border-right: 0.6rem solid #c8c8c8;
  border-bottom: 0.4rem solid transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: -3px;
}

.wishlist .icon:hover ~ .tip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wishlist .icon:hover .bookmark {
  height: 1.2rem;
  border-left-color: #b4b4b4;
  border-right-color: #b4b4b4;
}

.wishlist .icon.listed .bookmark {
  height: 2.4rem;
  border-right-color: var(--important);
  border-left-color: var(--important);
}

.wishlist .icon.listed:hover ~ .tip:after {
  content: "Remove from Wishlist";
}

.wishlist .icon.listed:hover .bookmark {
  height: 2.5rem;
}

.wishlist .tip {
  color: black;
  display: none;
  font-size: 90%;
  border-radius: 0.6rem;
  padding: 0rem 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.6rem;
  position: relative;
}

.wishlist .tip:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-right: 0.3rem solid rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: calc(50% - 0.3rem);
}

.wishlist .tip:after {
  content: 'Add to Wishlist';
  position: absolute;
  left: 1em;
  font-size: 0.8rem;
  width: 6rem;
  line-height: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.25rem;
}

.stock-count {
  font-size: 90%;
  border-radius: 1em;
  height: 1.4em;
  padding: 0.25em 0.4em 0.15em 0.4em;
  margin: 0em 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fafafa;
}

.stock-count:empty {
  display: none;
}

.auto-text-light .stock-count {
  border-color: #fafafa;
}

.auto-text-dark .stock-count {
  border-color: #282828;
}

.price-list.in-stock .item-price {
  cursor: pointer;
  position: relative;
}

.price-list.in-stock .item-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  z-index: 0;
  opacity: 0.1;
}

.price-list.in-stock .item-price:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.05);
}

.price-list.in-stock .item-price.active-price {
  position: relative;
  border-color: var(--accent);
}

.price-list.in-stock .item-price.active-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  z-index: 0;
  opacity: 0.5;
}

.price-list.in-stock .item-price .price {
  z-index: 1;
}

/* 
Widgets
====================================== */
/* --- Carousel --- */
.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-prev-icon {
  background-image: none;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  color: white;
  background: transparent;
  opacity: 1;
  text-shadow: 0rem 0rem 0.2rem black;
  font-size: 200%;
}

.carousel .carousel-indicators {
  bottom: -10px;
}

.carousel-indicators li, .carousel-indicators li.active {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.4rem;
  border-radius: 50%;
  border-color: transparent;
}

.carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.carousel-indicators li.active {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.related-carousel-control:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* --- Department Links --- */
.department-image {
  width: 100%;
}

.department-text {
  font-size: 130%;
  font-weight: 600;
}

/* 
Product Page
=========================================== */
ul.special {
  list-style: none;
  padding-left: 0;
  padding-bottom: 1rem;
}

ul.price-list-detail.in-stock li.price-type:not(.mix-price) {
  cursor: pointer;
}

ul.price-list-detail.in-stock li.price-type:not(.mix-price):hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.05);
}

.in-stock li.price-type:not(.mix-price)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  z-index: 0;
  opacity: 0.1;
}

.in-stock li.price-type.active-price {
  border-color: var(--accent);
}

.in-stock li.price-type.active-price::before {
  opacity: 0.5;
}

li.price-type {
  margin-bottom: 1rem;
  padding: 0.2rem;
  font-size: 1.1rem;
  position: relative;
}

li.price-type.mix-price {
  cursor: inherit;
}

li.price-type.mix-price:hover {
  background: transparent;
  border-color: transparent;
}

li.price-type > * {
  position: relative;
}

li.price-type .special {
  padding-left: 0;
}

li.price-type .price {
  font-weight: 600;
  line-height: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

li.price-type .price .badge {
  font-size: 150%;
}

li.price-type .size {
  font-weight: 400;
}

li.price-type .points {
  margin-left: 2em;
  font-size: 90%;
}

li.price-type .points i {
  margin-bottom: 3px;
}

li.points {
  font-weight: 400;
  font-size: 90%;
  margin-top: -0.6rem;
  padding-left: 1rem;
  opacity: 0.8;
}

/* 
Cart
============================================= */
.btn-suggestion {
  height: 2.5em;
  width: 2.5em;
  padding: 0;
  font-size: 80%;
}

#cart-processing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  font-size: 200%;
}

/* 
Checkout
================================================= */
.shipping .custom-control-label::before {
  top: 2.0rem;
}

.shipping .custom-control-label::after {
  top: 2.0rem;
}

.checkout-container {
  position: relative;
}

.checkout-container .checkout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 4rem;
}

#order-container {
  position: -webkit-sticky;
  position: sticky;
  top: 5em;
}

.shipping.custom-radio, .payment.custom-radio {
  padding-left: 0;
}

.shipping.custom-radio .custom-control-input:checked ~ .custom-control-label, .payment.custom-radio .custom-control-input:checked ~ .custom-control-label {
  border: 0.2rem solid var(--accent);
  background: rgba(0, 0, 0, 0.05);
}

.shipping.custom-radio .custom-control-input:checked ~ .custom-control-label:after, .payment.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 1em;
  width: 0.6em;
  border: none;
  border-bottom: 0.25em solid var(--accent);
  border-right: 0.25em solid var(--accent);
  margin-top: 0.3em;
  margin-right: 0.5em;
  background: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.shipping.custom-radio .custom-control-input:disabled ~ .custom-control-label, .payment.custom-radio .custom-control-input:disabled ~ .custom-control-label {
  border-color: rgba(211, 211, 211, 0.5) !important;
  color: rgba(211, 211, 211, 0.5) !important;
  cursor: default;
}

.shipping.custom-radio .custom-control-input:disabled ~ .custom-control-label:hover, .payment.custom-radio .custom-control-input:disabled ~ .custom-control-label:hover {
  background: none;
}

.shipping.custom-radio .custom-control-input:focus ~ .custom-control-label, .payment.custom-radio .custom-control-input:focus ~ .custom-control-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.shipping.custom-radio .custom-control-label, .payment.custom-radio .custom-control-label {
  border: 0.2rem solid lightgrey;
  cursor: pointer;
  width: 100%;
  height: 6rem;
  padding: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.6rem;
  position: relative;
}

.shipping.custom-radio .custom-control-label:hover, .payment.custom-radio .custom-control-label:hover {
  background: rgba(0, 0, 0, 0.05);
}

.shipping.custom-radio .custom-control-label:before, .payment.custom-radio .custom-control-label:before {
  display: none;
}

.shipping.custom-radio .custom-control-label h3, .payment.custom-radio .custom-control-label h3 {
  margin: 0;
}

.shipping.custom-radio .custom-control-label img, .payment.custom-radio .custom-control-label img {
  border: none;
  background: none;
}

.shipping.custom-radio.payment .custom-control-label, .payment.custom-radio.payment .custom-control-label {
  height: 3em;
  padding: 0.2rem 0.4rem;
  font-weight: 600;
}

.shipping.custom-radio.payment .custom-control-label::after, .payment.custom-radio.payment .custom-control-label::after {
  top: 50% !important;
  -webkit-transform: translateY(-100%) rotate(45deg) !important;
          transform: translateY(-100%) rotate(45deg) !important;
}

.payments-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.4em;
}

.delivery-or-pickup {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.4em;
}

.pickup-day-radio {
  padding: 0;
}

.pickup-day-radio input:checked ~ label {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.05);
}

.pickup-day-radio input:checked ~ label:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0.4em;
  height: 0.8em;
  width: 0.4em;
  border: none;
  border-bottom: 0.15em solid var(--accent);
  border-right: 0.15em solid var(--accent);
  margin-top: 0.3em;
  margin-right: 0.5em;
  background: transparent;
  -webkit-transform: translateY(30%) rotate(45deg);
          transform: translateY(30%) rotate(45deg);
  background-image: none !important;
}

.pickup-day-radio input:focus ~ label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.pickup-day-radio label {
  border: 0.2rem solid lightgrey;
  padding: 0.4rem 1rem;
  border-radius: 0.6rem;
  padding-left: 1.2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 1.2rem;
  font-weight: bold;
}

.pickup-day-radio label:before {
  display: none;
}

.pickup-day-radio label:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cc-form {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #dfdfdf;
  border-radius: 0.25rem;
  padding: 1em 0.5em;
  background: #f8f9fa;
}

.cc-form .gateway-logo {
  max-height: 60px;
  border-radius: 0.2em;
}

.paymenttypeDiv .credit-card-type input:checked ~ label {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.05);
}

.paymenttypeDiv .credit-card-type input:checked ~ label:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  height: 1em;
  width: 0.6em;
  border: none;
  border-bottom: 0.25em solid var(--accent);
  border-right: 0.25em solid var(--accent);
  margin-top: 0.3em;
  margin-right: 0.5em;
  background: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-image: none !important;
}

.paymenttypeDiv .credit-card-type input:focus ~ .custom-control-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.paymenttypeDiv .credit-card-type label {
  border: 0.2rem solid lightgrey;
  border-radius: 0.6rem;
  cursor: pointer;
}

.paymenttypeDiv .credit-card-type label:before {
  display: none;
}

.paymenttypeDiv .credit-card-type label:hover {
  background: rgba(0, 0, 0, 0.05);
}

.paymenttypeDiv .credit-card-type label img {
  border: none;
  background: none;
}

.paymenttypeDiv .credit-card-type label div {
  font-size: 80%;
  text-align: center;
}

.checkout-item-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.postal-loading {
  position: relative;
}

.postal-loading::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 0;
  -webkit-box-shadow: 0 0 30px 30px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 30px 30px rgba(255, 255, 255, 0.3);
  -webkit-animation: loadingwave 1s infinite linear;
          animation: loadingwave 1s infinite linear;
}

@-webkit-keyframes loadingwave {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

@keyframes loadingwave {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

.generic-shipping {
  position: relative;
}

.generic-shipping .generic-shipping-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.2;
  z-index: 0;
}

.generic-shipping span {
  z-index: 1;
  color: inherit;
  font-size: 1.4rem;
  font-weight: 500;
}

/* 
Google maps
================================================ */
#map {
  width: 100%;
  height: 100%;
}

/*
Crumbs of the Bread
==================================================*/
ol.breadcrumb {
  background: inherit;
  margin: 0;
}

ol.breadcrumb li.breadcrumb-item {
  text-transform: capitalize;
}

ol.breadcrumb li.breadcrumb-item a {
  color: var(--accent);
}

/* 
Pagination
============================ */
ul.pagination .page-item .page-link {
  color: #282828;
}

ul.pagination .page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* 
Mobile Navigation
============================ */
.bottom-nav {
  position: fixed;
  bottom: 0%;
  left: 0;
  background: var(--accent);
  width: 100%;
  z-index: 200;
  font-size: 1rem;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.bottom-nav .nav-primary {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(75px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  min-height: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bottom-nav .nav-primary li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-nav .nav-primary li.active {
  background: rgba(0, 0, 0, 0.1);
}

.bottom-nav .nav-primary li > * {
  padding: .75rem 1.2rem;
  cursor: pointer;
  text-align: center;
  display: block;
  color: inherit;
  font-weight: 600;
}

.bottom-nav .nav-primary li > *:hover {
  text-decoration: none;
}

.bottom-nav .nav-secondary {
  list-style: none;
  padding: 0;
  margin: 0;
  height: auto;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  max-height: 0;
  overflow-y: hidden;
}

.bottom-nav .nav-secondary.open {
  max-height: 60vh;
  overflow-y: auto;
}

.bottom-nav .nav-secondary li {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bottom-nav .nav-secondary li a {
  display: block;
  padding: 1rem 1rem;
  color: inherit;
  font-weight: 600;
}

.bottom-nav .nav-secondary li.active {
  background: rgba(0, 0, 0, 0.1);
}
/*# sourceMappingURL=universal.css.map */