@charset "utf-8";
/* CSS Document */

/* default */
.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.text-align-right .dot {
  margin: 0 10px 0 0;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
  color: #121212;
}

h1 ion-icon {
  margin: 0 10px 0 0;
}

.page-title {
  margin: 0;
  padding: 20px;
  text-align: center;
}

progress {
  width: 100%;
  max-width: 100%;
  vertical-align: baseline;
}

/* Page Backdrop */
#backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  -ms-backdrop-filter: blur(3px);
  -o-backdrop-filter: blur(3px);
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibilityr: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transform: translateZ(0);
  will-change: opacity;
  transition: all 0.5s ease-in-out;
  z-index: 100;
}

#backdrop.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.black-overlay:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  transition: all 0.5s ease-out;
  background-color: #000000;
}

.box_container {
  margin: 0;
  padding: 0;
}

/* ======================== PAGE NAV ======================== */

.pagination {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: max-content;
  text-align: center;
  list-style: none;
}

.page-nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pages-nav {
  display: inline-flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pages-nav li {
  display: inline-flex;
}

.pages-nav li,
.pages-nav li a,
.pages-nav li button {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: normal;
  font-weight: 700;
  color: #101010;
  float: left;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s;
  border-top: 1px solid #101010;
  border-bottom: 1px solid #101010;
  border-left: none;
  border-right: none;
  outline: none;
  cursor: pointer;
}

.pages-nav li.active-page {
  background-color: #101010;
  color: #ffffff;
  border: 1px solid transparent;
  cursor: default;
}

.pages-nav li:first-child,
.pages-nav li:first-child a,
.pages-nav li:first-child button {
  padding: 10px 15px;
  border-left: 1px solid #101010;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pages-nav li:last-child,
.pages-nav li:last-child a,
.pages-nav li:last-child button {
  padding: 10px 15px;
  border-right: 1px solid #101010;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pages-nav li:hover:not(.active-page),
.pages-nav li a:hover:not(.active),
.pages-nav li button:hover:not(.active) {
  background-color: #d3d3d3;
}

/* temporary */
.filter {
  display: none;
}

.box {
  display: none;
  width: 100%;
  flex-wrap: wrap;
}

#mobile-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 1000;
}

#mobile-message .message-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#mobile-message .message-text p {
  margin: 0;
}

#mobile-message.is-visible {
  display: flex;
  /* Change to flex to utilize flex properties */
}

/* ======================================================================-------

Main Header

======================================================================------- */

/* ========== Header Container ========== */
#main-header {
  position: fixed;
  display: flex;
  margin: 0;
  padding: 0;
  height: var(--main-header-height);
  top: 0;
  left: 0;
  right: 0;
  background-color: #121212;
  transition: all 0.5s;
  z-index: 900;
}

#main-header.is-hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

#main-header.is-docked {
  background-color: var(--main-background-color);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

#main-header .desktop-logo {
  display: none;
}

#main-header .header-logo,
#main-header .mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-header .header-logo {
  margin: 0 auto;
}

#main-header .header-logo a,
#main-header .mobile-logo a {
  display: flex;
  justify-content: center;
}

#main-header .header-logo a img,
#main-header .mobile-logo a img {
  max-width: 120px;
}

#main-header .mobile-logo a svg {
  max-width: 60px;
}

#main-header .mobile-logo a svg path {
  fill: #ffffff;
}

/* ========== Hamburger Menu ========== */
.hamburger-menu {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

/* hamburger icon */
#menu-trigger-mobile span,
#menu-trigger-mobile span::before,
#menu-trigger-mobile span::after {
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 24px;
  background-color: #ffffff;
}

/* hamburger icon (line in the center) */
#menu-trigger-mobile span {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  transition: all 0.2s;
  color: #ffffff;
}

/* hamburger icon (other 2 lines) */
#menu-trigger-mobile span::before,
#menu-trigger-mobile span::after {
  content: "";
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

/* menu icon top line */
#menu-trigger-mobile span::before {
  top: -9px;
}

/* menu icon bottom line */
#menu-trigger-mobile span::after {
  top: 9px;
}

/* hide line in the center */
#menu-trigger-mobile.nav-is-visible span {
  background: rgba(46, 50, 51, 0);
  transition: all 0.2s;
}

/* keep visible other 2 lines */
#menu-trigger-mobile.nav-is-visible span::before,
#menu-trigger-mobile.nav-is-visible span::after {
  background-color: #ffffff;
  transition: all 0.2s;
}

#menu-trigger-mobile.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(1px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(1px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(1px) rotate(45deg);
  -o-transform: translateX(4px) translateY(1px) rotate(45deg);
  transform: translateX(4px) translateY(1px) rotate(45deg);
}

#menu-trigger-mobile.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(0px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(0px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(0px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(0px) rotate(-45deg);
  transform: translateX(4px) translateY(0px) rotate(-45deg);
}

/* menu trigger link */
#menu-trigger-mobile {
  display: flex;
  position: relative;
  align-items: center;
  height: 20px;
  color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 3;
}

#menu-trigger-mobile:hover {
  color: transparent;
}

/* ========== Main Navigation ========== */

#main-nav-container {
  display: flex;
  position: absolute;
  margin: var(--main-header-height) 0 0 0;
  padding: 30px 0 0px 0;
  width: 100%;
  height: calc(100vh - var(--main-header-height));
  overflow-y: auto;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

#main-nav-container.nav-is-visible {
  display: block;
  height: calc(100vh - var(--main-header-height));
  overflow: auto;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  background-color: #ffffff;
}

.main-nav {
  position: static;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0 20px;
}

.main-nav-links {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.main-nav-links>li {
  padding: 15px 20px;
  border-bottom: 1px solid #e2e3df;
}

.main-nav-links>li>a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 30px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s;
}

/* submenu */
.submenu.mega-menu,
.submenu.user-submenu {
  display: none;
}

.submenu.is-open {
  display: flex;
}

.submenu.mega-menu.is-open {
  display: flex;
  justify-content: center;
}

.submenu.mega-menu .row {
  justify-content: center;
}

.submenu-title {
  display: block;
  margin: 35px 0 0 0;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #9e9e9e;
}

/* product cards */

.header-product-card {
  display: flex;
  margin: 0;
  padding: 10px;
}

.header-product-card .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  float: left;
  overflow: hidden;
  margin: 0;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.header-product-card .product-card .model-label {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 3px 20px;
  left: 0;
  top: 27%;
  /* transform: translate(-50%, -50%); */
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  z-index: 1;
}

.header-product-card .product-card .model-label-canter {
  background: var(--main-background-color);
}

.header-product-card .product-card .model-label-ecanter {
  background: #3894df;
}

.header-product-card .product-card .model-label span {
  margin: 0 0 0 3px;
}

.header-product-card .product-card:hover {
  background-color: #f0f0f0;
}

.header-product-card .product-card .model-image {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.header-product-card .product-card .form-card-icon {
  position: relative;
  display: block;
  max-width: 15px;
  object-fit: cover;
}

.header-product-card .product-card .product-card-content {
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-product-card .product-card .product-card-content::before,
.header-product-card .product-card .product-card-content::after {
  pointer-events: none;
}

.header-product-card .product-card h2 {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

.header-product-card .product-card h2,
.header-product-card .product-card p {
  margin: 0;
}

.header-product-card .product-card p {
  font-size: 12px;
  font-weight: 400;
  color: var(--main-background-color);
}

.header-product-card .product-card .price {
  font-size: 12px;
  font-weight: 600;
  color: var(--main-background-color);
}

.header-product-card .product-card .updating-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--main-background-color);
}

.header-product-card .product-card .link-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--main-background-color);
}

.header-product-card .product-card .link-label i {
  margin-left: 3px;
  font-size: 9px;
  color: var(--main-background-color);
}

.header-product-card .product-card a {
  font-size: 10px;
  font-weight: 400;
  color: var(--main-background-color);
}

.header-product-card h2 {
  position: absolute;
  padding: 7px 15px;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  color: #ffffff;
  background-color: var(--main-background-color);
  transform: translate3d(0, -50%, 0) translate3d(0, -20px, 0);
}

.header-product-card p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.header-product-card p {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

.header-product-card .link-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3px;
  text-decoration: none;
  opacity: 1;
  /*-webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);*/
}

.header-product-card p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.header-product-card .product-card-content a,
.header-product-card .product-card-content button {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.header-product-card .product-card a.card-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
  z-index: 1;
}

.submenu.mega-menu .highlight {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.submenu.mega-menu .highlight .highlight-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.submenu.mega-menu .highlight .highlight-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}

.submenu.mega-menu .highlight .data-container {
  position: relative;
  align-items: center;
  margin: 0;
  padding: 70px 10% 70px 10%;
  width: 100%;
}

.submenu.mega-menu .highlight .data-container h3 {
  margin: 0 0 20px 0;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
}

.submenu.mega-menu .highlight .data-container p {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.submenu.mega-menu .highlight .data-container> :nth-child(2) {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* app nav */
.app-nav {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0 20px 0 0;
}

/* ==================== Desktop ==================== */

@media (min-width: 992px) {
  .hamburger-menu {
    display: none;
  }

  /* ========== Header Container ========== */

  #main-header {
    justify-content: flex-start;
    background-color: #141414;
    height: var(--main-header-height);
    box-shadow: inset 0 -1px 0 rgb(150 150 150 / 50%);
  }

  /*#main-header:hover,
    #main-header.is-open,
    #main-header.bg-active {
        background: var(--main-background-color);
        //border-bottom: 1px solid transparent;
    }*/

  #main-header .mobile-logo {
    display: none;
  }

  #main-header .desktop-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  #main-header .desktop-logo a {
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 120px;
  }

  #main-header .desktop-logo a img {
    max-width: 100%;
  }

  #main-header .desktop-logo a svg {
    max-width: 100%;
  }

  #main-header .desktop-logo a svg path {
    fill: #ffffff;
  }

  /* ========== Main Navigation ========== */

  #main-nav-container {
    position: initial;
    display: flex;
    margin: 0 20px;
    padding: 0;
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background-color: transparent;
    overflow: inherit;
    transform: none;
    transition: none;
  }

  #main-nav-container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  #main-nav-container .logo a {
    margin: 0;
    padding: 0;
    text-decoration: none;
  }

  /* Nav Links */
  .main-nav-links {
    display: flex;
    /*justify-content: space-between;*/
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    list-style: none;
  }

  .main-nav-links li:first-child {
    margin-right: 50px;
  }

  .main-nav-links li {
    display: flex;
    margin: 0 10px;
    padding: 0;
    height: 100%;
    border-bottom: none;
  }

  .main-nav-links>li.active {
    background-color: #f1f1f1;
  }

  .main-nav-links>li.active a {
    color: #101010 !important;
  }

  /* main navigation links styles */
  .main-nav-links>li:not(.desktop-logo)>a {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    border: none;
    text-decoration: none;
    overflow: visible;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }

  .main-nav-links>li>a:after {
    position: absolute;
    right: 100%;
    bottom: -2px;
    left: 0;
    border-radius: 0;
    border-top: 2px solid #ffffff;
    content: "";
  }

  .link-selected {
    color: #ffffff;
  }

  .link-opened>li>a:not(.link-selected) {
    color: #a1a5a8;
  }

  .main-nav-links>li>a.link-selected:after {
    color: #ffffff;
    right: 0;
  }

  .main-nav-links>li>a {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
  }

  /* main navigation links styles */
  .main-nav-links>li>a {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 9px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    border: none;
    text-decoration: none;
    overflow: visible;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }

  .main-nav-links>li:not(.active)>a:not(.main-logo):hover,
  .link-opened>li>a:not(.link-selected):hover,
  .main-nav-links>li>a.is-selected {
    box-shadow: inset 0 -3px 0 #ffffff;
  }

  .main-nav-links>li>a:after {
    position: absolute;
    right: 100%;
    bottom: -2px;
    left: 0;
    border-radius: 0;
    border-top: 2px solid #ffffff;
    content: "";
  }

  .link-selected {
    color: #ffffff;
  }

  .link-opened>li>a:not(.link-selected) {
    color: #a1a5a8;
  }

  .main-nav-links>li>a.link-selected:after {
    color: #ffffff;
    right: 0;
  }

  /* submenu - mega menu*/
  .submenu.mega-menu {
    position: absolute;
    top: var(--main-header-height);
    left: 0;
    margin: 0;
    padding: 1%;
    width: 100%;
    background-color: var(--panel-color);
  }

  .submenu.mega-menu.is-open {
    max-height: calc(100vh - var(--main-header-height) * 2.5);
    overflow-y: auto;
  }

  .submenu.mega-menu ul {
    margin: 0;
    padding: 10px 0;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px;
  }

  .submenu.mega-menu ul>li {
    display: block;
    margin: 0;
    padding: 0;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .submenu.mega-menu ul>li>a {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 300;
    color: #e2e3df;
    text-decoration: none;
    text-transform: none;
    transition: all 0.5s ease;
  }

  .submenu.mega-menu ul>li>a:hover {
    color: #ffffff;
  }

  .submenu.mega-menu ul>li>a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #5cbbff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
  }

  .submenu.mega-menu ul>li>a:hover:after {
    width: 100%;
    left: 0;
    background: #5cbbff;
  }

  /* Actions nav when header has hover status */
  #main-header:hover .actions-nav li>a {
    color: #ffffff;
  }

  #main-header:hover .actions-nav li a i {
    color: #ffffff;
  }

  /* submenu user nav */
  .submenu.user-submenu {
    position: absolute;
    top: var(--main-header-height);
    right: 0;
    margin: 0;
    padding: 20px;
    width: 200px;
    text-align: right;
    background-color: var(--panel-color);
    box-shadow: 0px 11px 17px 0px rgba(0, 0, 0, 0.2);
  }

  .submenu.user-submenu.is-open {
    max-height: calc(100vh - var(--main-header-height) * 2.5);
    overflow-y: auto;
  }

  .submenu.user-submenu .user-full-name {
    margin: 0 0 10px 0;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid #bbbbbb;
  }

  .submenu.user-submenu .user-full-name .user-role {
    font-weight: 400;
  }

  .submenu.user-submenu ul {
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }

  .submenu.user-submenu ul>li {
    display: block;
    margin: 0;
    padding: 0;
  }

  .submenu.user-submenu ul>li>a,
  .submenu.user-submenu ul>li>button {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 7px 0;
    font-size: 12px;
    line-height: normal;
    font-weight: 300;
    color: var(--text-color);
    text-decoration: none;
    text-transform: none;
    outline: none;
    border: none;
    background-color: transparent;
  }

  .submenu.user-submenu .switch {
    margin: 0 0 0 7px;
  }

  /*.submenu.user-submenu ul>li>a:hover {
    //color: #ffffff;
  }*/

  /*.submenu.user-submenu ul>li>a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        display: block;
        margin-top: 5px;
        right: 0;
        background: #5CBBFF;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }

    .submenu.user-submenu ul>li>a:hover:after {
        width: 100%;
        left: 0;
        background: #5CBBFF;
    }*/

  /* main navigation buttons style */
  #main-header.solid .website-links>li>a {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--header-container-height);
    font-size: 15px;
    font-weight: 400;
    padding: 0 10px;
    color: #333333;
    text-decoration: none;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }

  #main-header.solid .website-links>li>a:hover {
    color: var(--main-logo-color);
    box-shadow: inset 0 -3px 0 var(--main-logo-color);
  }

  #main-header.solid .website-links>li>a.selected {
    color: var(--main-logo-color);
    box-shadow: inset 0 -3px 0 var(--main-logo-color);
  }

  #main-header.solid .actions-nav li>a {
    color: #333333;
  }

  #main-header.solid .actions-nav li a i {
    color: #333333;
  }

  /* app nav */
  .app-nav {
    display: none;
  }
}

body.dark li a:hover:before {
  background-color: var(--text-color);
}

.menu-items li a ion-icon {
  font-size: 20px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-light-color);
}

.menu-items li a .link-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--black-light-color);
}

nav.close li a .link-name {
  opacity: 0;
  pointer-events: none;
}

.nav-links li a:hover ion-icon,
.nav-links li a:hover .link-name {
  color: var(--primary-color);
}

body.dark .nav-links li a:hover ion-icon,
body.dark .nav-links li a:hover .link-name {
  color: var(--text-color);
}

.menu-items .logout-mode {
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.menu-items .mode {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.menu-items .mode-toggle {
  position: absolute;
  right: 14px;
  height: 50px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  cursor: pointer;
}

.switch:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: var(--panel-color);
  border-radius: 50%;
  transition: var(--tran-03);
}

body.dark-mode .switch:before {
  left: 20px;
}

/* ========================================================================================== */
/* Get Users Birthdate */
/* ========================================================================================== */

#greeting-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  background: linear-gradient(-60deg, #111, #333, #666, #333);
  background-size: 400% 400%;
  animation: gradient 8s ease-in-out infinite;
  color: #ffffff;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#greeting-message ion-icon {
  margin: 0 10px 0 0;
  font-size: 25px;
}

#birthdate-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background-color: #599fff;
}

/* ======================== Dasboard ======================== */

.dashboard {
  position: relative;
  margin: 0;
  padding: 10px;
  min-height: 100vh;
}

.dashboard .top {
  position: fixed;
  top: 0;
  left: 250px;
  display: flex;
  width: calc(100% - 250px);
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background-color: var(--panel-color);
  z-index: 10;
}

.dashboard .top .sidebar-toggle {
  font-size: 26px;
  color: var(--text-color);
  cursor: pointer;
}

.top img {
  width: 40px;
  border-radius: 50%;
}

.overview .title {
  display: flex;
}

.overview #page_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  background-color: #bdc3c7;
  border-radius: var(--panel-border-radius);
}

.overview .widget-header {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.overview ion-icon {
  width: 100%;
  margin: 10px 0;
  padding: 0;
  font-size: 25px;
}

.overview select,
.overview .dropdown {
  margin: 3px 0 0 0;
}

.overview .widget-header .text {
  margin: 0 0 15px 0;
  width: 100%;
  text-align: center;
}

.boxes {
  display: grid;
  /* Responsive grid: widgets expand to use available width */
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  padding: 10px;
  justify-content: stretch;
  /* Stretch items so each row matches the tallest widget */
  align-items: stretch;
}

.boxes .box {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  /* Never wrap widget children into side-by-side columns */
  flex-wrap: nowrap;
  /* Keep widget content aligned to the top */
  justify-content: flex-start;
  /* Cap height and allow widget-internal scrolling */
  max-height: 80dvh;
  overflow: auto;
  min-height: 0;
  padding: 15px 20px;
  color: #ffffff;
  background-color: var(--box1-color);
}

.boxes .box.black {
  background-color: #323232;
}

.boxes .box.grey {
  color: #323232;
  background-color: #e0e0e0;
}

.boxes .box.red {
  background-color: #ff3333;
}

.boxes .box.orange {
  background-color: #e67e22;
}

.boxes .box.blue {
  background-color: #0092cc;
}

.boxes .box i {
  font-size: 30px;
  color: #101010;
}

.boxes .box .number {
  font-size: 20px;
  font-weight: 500;
}

/* ======================== Widget ======================== */

.widget-title {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.widget-data-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 20px 0 0 0;
  font-size: 12px;
}

.widget-data-row {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 3px 0;
  border-bottom: dashed 0.5px #a2a2a2;
  line-height: normal;
}

.widget-data-total {
  display: flex;
  margin: 20px 0 0 0;
  padding: 3px 0;
  border-bottom: dashed 0.5px #a2a2a2;
}

.table-header {
  font-weight: 700;
}

.events-link-container {
  display: flex;
  justify-content: center;
  margin: auto 0 0 0;
}

.events-link-container .view-events-link {
  margin: 15px 0 0 0;
}

/*button.view-events-link {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  border: none;
  background: transparent;
  outline: none;
}*/

@media (max-width: 1000px) {
  nav {
    width: 73px;
  }

  nav.close {
    width: 250px;
  }

  nav .logo_name {
    opacity: 0;
    pointer-events: none;
  }

  nav.close .logo_name {
    opacity: 1;
    pointer-events: auto;
  }

  nav li a .link-name {
    opacity: 0;
    pointer-events: none;
  }

  nav.close li a .link-name {
    opacity: 1;
    pointer-events: auto;
  }

  nav~.dashboard {
    left: 73px;
    width: calc(100% - 73px);
  }

  nav.close~.dashboard {
    left: 250px;
    width: calc(100% - 250px);
  }

  nav~.dashboard .top {
    left: 73px;
    width: calc(100% - 73px);
  }

  nav.close~.dashboard .top {
    left: 250px;
    width: calc(100% - 250px);
  }

  .activity .activity-data {
    overflow-x: scroll;
  }
}

@media (max-width: 780px) {
  .boxes {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 560px) {
  .boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  nav {
    width: 0px;
  }

  nav.close {
    width: 73px;
  }

  nav .logo_name {
    opacity: 0;
    pointer-events: none;
  }

  nav.close .logo_name {
    opacity: 0;
    pointer-events: none;
  }

  nav li a .link-name {
    opacity: 0;
    pointer-events: none;
  }

  nav.close li a .link-name {
    opacity: 0;
    pointer-events: none;
  }

  nav~.dashboard {
    left: 0;
    width: 100%;
  }

  nav.close~.dashboard {
    left: 73px;
    width: calc(100% - 73px);
  }

  nav~.dashboard .top {
    left: 0;
    width: 100%;
  }

  nav.close~.dashboard .top {
    left: 0;
    width: 100%;
  }
}

/* ==============================-- 

Default Styles

==============================-- */

.list-preview-image {
  width: 100px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* shadow layer visible when navigation is active */
.page-overlay-main-menu {
  position: fixed;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s,
    -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.page-overlay-main-menu.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s,
    -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

#errors {
  display: block;
  margin: 20px 0 0 0;
  font-size: 15px;
  font-weight: 200;
  line-height: 20px;
  color: #ffffff;
}

#errors-1 {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  z-index: 900;
}

#errors-1,
.show-errors {
  padding: 20px;
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  color: #ffffff;
  background-color: #9d3131;
  text-align: center;
}

.bt-submit-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0px 0px 0px;
  padding: 15px 20px;
  float: none;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: var(--default-text-color);
  border: 1px solid #222222;
  outline: none;
  transition: 0.2s ease-in-out;
  user-select: none;
  cursor: pointer;
}

.bt-submit-1:hover {
  color: #ffffff;
  border: 1px solid #707070;
  background-color: #707070;
  outline: none;
  text-decoration: none;
}

.bt-submit-1:focus {
  outline: none;
}

.bt-delete {
  margin: 0;
  padding: 15px 20px;
  float: none;
  font-size: 15px;
  font-weight: 300;
  color: #c21a01;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #c21a01;
  outline: none;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}

.bt-delete:hover {
  color: #ffffff;
  border: 1px solid #c21a01;
  background-color: #c21a01;
  outline: none;
  text-decoration: none;
}

.bt-delete:focus {
  outline: none;
}

.link-1 {
  display: block;
  width: 100%;
  margin: 15px 0px 0px 0px;
  padding: 15px 20px;
  float: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--default-text-color);
  text-decoration: none;
  background-color: #ffffff;
  outline: none;
  border: 1px solid #222222;
  transition: 0.2s ease-in-out;
  user-select: none;
  cursor: pointer;
  text-align: center;
}

.link-1:hover {
  background-color: var(--default-text-color);
  border: 1px solid #222222;
  color: #ffffff;
  outline: none;
  text-decoration: none;
}

.bt-action-1 ion-icon {
  color: #252525;
  font-size: 11px;
  margin: 0 5px 0 0;
  transition: 0.2s ease-in-out;
}

.bt-action-1:hover ion-icon {
  color: #252525;
}

/* Form messages
==================================================-----*/

.alert {
  width: 20%;
  top: 0;
  right: 0;
  position: fixed;
  margin: 10px;
  padding: 30px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  text-align: center;
  z-index: 100;
}

.alert p {
  margin: 10px 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}

.alert.success {
  color: #ffffff;
  background-color: #76a085;
}

.page-status-message {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 900;
}

.page-status-message .message {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  text-align: center;
  background-color: #0b486b;
}

.page-status-message .message-success {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  text-align: center;
  background-color: #3b8686;
}

.page-status-message .message-error {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  text-align: center;
  background-color: #9d3131;
}

.sortable-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px;
  background-color: #d9d9d9;
  border: 3px solid #bbbbbb;
}

.sortable-list>li {
  display: block;
  margin: 0 0 10px 0;
  padding: 10px;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  color: var(--default-text-color);
  background-color: #f7f7f7;
  border: 1px dashed #444444;
  cursor: move;
}

/*.sortable-list>li:nth-child(even) {
  //background:#f1f1f1;
}*/

.sortable-list>li:last-child {
  margin: 0;
}

.main_group_category {
  margin: 0;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
}

.sortable-container {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px;
  background-color: #d9d9d9;
  border: 3px solid #bbbbbb;
}

.tree-list {
  display: block;
  margin: 0 0 10px 0;
  padding: 30px;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  color: var(--default-text-color);
  background-color: #f7f7f7;
  border: 1px dashed #444444;
  cursor: move;
}

.tree-list button {
  margin-left: 10px !important;
  color: #999999;
  font-size: 7px;
  font-weight: 400;
}

.tree-list li {
  display: block;
  margin: 0 0 0 10px;
  padding: 0px 0px 0px 7px;
  width: 100%;
  color: #333333;
  font-size: 12px;
  font-weight: 300;
  border-left: 1px solid #999999;
}

.tree-list li:before {
  position: relative;
  display: inline-block;
  top: -4px;
  left: -7px;
  width: 12px;
  height: 25px;
  border-bottom: 1px solid #999999;
  content: "";
}

.tree-list li:after {
  display: block;
  height: 0;
  content: "";
  clear: both;
}

.tree-list li:last-child {
  border-left: none;
}

.tree-list li:last-child:before {
  border-left: 1px solid #999999;
}

/*.tree-list li:nth-child(odd) {
    background-color:#E8E8E8;
    color: #333333;
}

.tree-list li:nth-child(even) {
    background-color:#D3D3D3;
    color: #333333;	
}*/

.tree-list-sub-level {
  display: block;
  margin-left: 15px;
  list-style: none;
  padding: 0;
}

.ui-sortable-placeholder {
  cursor: move;
  color: #ffffff;
  background-color: #f1f1f1;
  outline: 2px solid #222222;
  border: none;
  visibility: visible !important;
}

.nova-seccao {
  display: block;
  margin: 10px 30px;
  padding: 10px;
  background-color: #ffffff;
}

.nova-seccao li {
  margin: 0 0 10px 0;
  padding: 10px 0;
  background-color: #ffffff;
  border: 1px solid #999999;
}

.nova-seccao li:last-child {
  margin: 0;
}

/*.sortable-group li {
    background-color: #ffffff;
    cursor: move;
}

.sortable-group--empty {
    pointer-events: none;
}*/

.product_attribute {
  margin: 0;
  padding: 30px;
  width: 100%;
}

.no_bg {
  width: 100%;
  height: 60px;
  background: #f8d6d6;
}

.product-option-settings {
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cccccc;
}

.option-settings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}

.table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.table tbody tr:nth-child(even) {
  background-color: #e6e6e6;
}

/* ======================================================================-------

Page template

======================================================================------- */

#main-container {
  display: flex;
  flex-direction: column;
  margin: var(--main-header-height) 0 0 0;
  padding: 0;
  width: 100%;
  background-color: #d0d0d0;
}

#operation-area {
  margin: 0;
  padding: 0;
}

.default-full-panel {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background-color: var(--panel-color);
}

.panel-child-element {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.default-fieldset {
  display: block;
  margin: 0;
  padding: 25px 25px 50px 25px;
  border-bottom: 2px dashed #ececec;
}

.default-fieldset:last-child {
  border-bottom: none;
}

.default-fieldset legend {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0 0 20px 0;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  color: #000000;
}

.fieldset-style-2 {
  display: block;
  margin: 0 0 40px 0;
  padding: 25px 25px 50px 25px;
  border: 1px solid #d5d5d5;
}

.fieldset-style-2 legend {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0 10px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

#operation-area .default-full-panel .panel-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 25px 0;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: var(--text-color);
  text-align: center;
}

.page-form {
  width: 100%;
  overflow: auto;
}

.tabs {
  position: relative;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs .tab-label {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 12px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  /*min-height: 70px;
  border-top-right-radius: 10px;
    border-top-left-radius: 10px;*/
  color: #999999;
  -webkit-transition: background ease 0.2s;
  transition: background ease 0.2s;
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 0;
  border-bottom: none;
  z-index: 1;
}

.tabs .tab-label:first-of-type {
  margin: 0;
}

.tabs .tab {
  -webkit-box-ordinal-group: 100;
  -webkit-order: 99;
  -ms-flex-order: 99;
  order: 99;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 0;
}

.tabs .radio-tab {
  position: absolute;
  opacity: 0;
}

.tabs .radio-tab:checked+.tab-label {
  color: #ffffff;
  background-color: #121212;
  /*border-bottom: 2px solid #323232;*/
}

.tabs .radio-tab:checked+.tab-label+.tab {
  display: block;
  border-top: 1px solid #121212;
  /*border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;*/
}

.tabs .radio-tab:checked+.tab-label+.tab>.content {
  -webkit-animation: showTab 250ms ease-in-out;
  animation: showTab 250ms ease-in-out;
}

.tabs .radio-tab+.tab-label:before {
  display: none;
  content: "";
}

@-webkit-keyframes showTab {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#get-price-table-form {
  position: relative;
  display: flex;
  margin: auto;
  overflow: hidden;
}

fieldset .form-nav {
  bottom: 60px;
  padding: 10px;
}

.form-nav {
  display: flex;
  position: sticky;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #c1c1c1;
  background: var(--global-form-nav-background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 90;
}

.form-nav>div {
  display: flex;
}

.form-nav>div:nth-child(1) {
  text-align: left;
  justify-content: flex-start;
}

.form-nav>div:nth-child(2) {
  text-align: center;
  justify-content: center;
}

.form-nav>div:nth-child(3) {
  text-align: center;
  justify-content: center;
}

.form-nav>div:nth-child(4) {
  text-align: center;
  justify-content: center;
}

.form-nav>div:nth-child(5) {
  text-align: right;
  justify-content: flex-end;
}

.form-nav>div:last-child {
  text-align: right;
  justify-content: flex-end;
}

.pagination_info {
  font-size: 15px;
  font-weight: 300;
}

/*==================================================-----*/
/* Register Page */
/*==================================================-----*/

.register-area {
  margin: 0;
  padding: 70px 20px;
}

.register-area h2 {
  font-size: 20px;
  font-weight: 500;
  color: 222222;
  margin: 0;
  padding: 10px 0px;
  text-align: center;
}

.register-text {
  font-size: 14px;
  font-weight: 300;
  color: 222222;
  margin: 0;
  padding: 20px 0px 30px 0px;
  text-align: center;
}

.link-login {
  font-size: 14px;
  font-weight: 400;
  color: 222222;
  margin: 15px auto;
  text-decoration: none;
}

.link-login:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* E-commerce navigation
==================================================-----*/
.user-nav {
  display: flex;
  justify-content: flex-end;
  margin: 0 15px;
  padding: 0;
  flex: 1 0 0;
  list-style: none;
}

.user-nav>li {
  position: relative;
  display: flex;
  align-items: center;
  /* align-content: center; */
}

.user-nav>li a {
  display: flex;
  margin: 0 9px;
  padding: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
}

.user-nav>li a ion-icon {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}

.user-nav>li a:hover {
  text-decoration: none;
}

/* mini cart dropdown */
.mini-cart-container {
  opacity: 0;
  visibility: hidden;
  width: 350px;
  max-width: 350px;
  position: absolute;
  top: 100px;
  left: auto;
  right: 0;
  background-color: #ffffff;
  padding: 50px;
  text-align: left;
  /*-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 201;
}

.mini-cart-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  display: block;
  top: 0;
  right: 0;
}

.mini-cart-link:hover .mini-cart-container {
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-cart-items {
  position: relative;
}

.nav-cart-item {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.nav-cart-item:first-child {
  margin-top: 0;
}

.nav-cart-item .nav-cart-img {
  float: left;
  margin-right: 20px;
}

.nav-cart-item .nav-cart-price {
  color: #979797;
  font-size: 13px;
}

.nav-cart-title {
  position: relative;
  overflow: hidden;
  margin-right: 30px;
}

.nav-cart-title>a {
  position: relative;
  color: #000000;
  font-size: 12px;
  vertical-align: top;
  line-height: 1.5;
}

.nav-cart-title>a:hover {
  color: #000;
}

.nav-cart-price {
  margin-top: 5px;
}

.nav-cart-remove {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f7f7f7;
}

.nav-cart-remove a {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  color: #444444;
}

.nav-cart-remove i {
  font-size: 16px;
}

.nav-cart-remove:hover {
  background-color: #000000;
}

.nav-cart-remove:hover i {
  color: #fff;
}

.nav-cart-summary {
  margin-top: 10px;
  font-weight: 200;
  color: #444444;
  font-size: 12px;
}

.nav-cart-summary .total-price {
  float: right;
}

.nav-cart-summary .total-price {
  font-size: 25px;
  font-weight: 700;
}

.nav-cart-actions a {
  width: 100%;
}

.mobile-cart {
  float: right;
  height: 100%;
  margin-right: 12px;
  color: #444444;
}

.section-highlights {
  padding: 0px 0px 50px 0px;
  background-color: #fff4e3;
}

.highlights-hero {
  width: 100%;
  margin: 0;
  padding: 50px 0 10px 0;
}

.highlights-title {
  display: block;
  margin: 0px auto;
  padding: 20px 0px;
  font-size: 25px;
  text-transform: uppercase;
  color: #252525;
  text-align: center;
}

.highlights-title:after {
  display: block;
  width: 100px;
  height: 3px;
  margin: 0px auto;
  margin-top: 20px;
  background-color: #252525;
  content: " ";
}

.highlights-text {
  display: block;
  margin: 0px auto;
  padding: 10px 0px;
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #66625c;
  text-align: center;
}

#highlights-carousel {
  width: 90%;
  margin: 0px auto;
}

/* the slides */
#highlights-carousel .slick-slide {
  margin: 0 15px;
}

/* the parent */
#highlights-carousel .slick-list {
  overflow: visible;
  margin: 0 -30px;
}

#highlights-carousel .highlight-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  /*height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
  background-color:#bbbbbb;*/
  outline: none;
}

#highlights-carousel .slick-dots {
  bottom: -25px;
}

#highlights-carousel .slick-dots li {
  width: 10px;
  height: 10px;
  transition: all 0.2s;
}

#highlights-carousel .slick-dots li.slick-active {
  width: 10px;
}

#highlights-carousel .slick-dots li button {
  position: relative;
  background-color: #252525;
  opacity: 0.1;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: all 0.2s;
}

#highlights-carousel .slick-dots li button:before {
  display: none;
}

#highlights-carousel .slick-dots li button:hover,
#highlights-carousel .slick-dots li button:focus {
  opacity: 0.5;
}

#highlights-carousel .slick-dots li.slick-active button {
  color: white;
  opacity: 0.7;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

#highlights-carousel .slick-dots li.slick-active button:hover,
#highlights-carousel .slick-dots li.slick-active button:focus {
  opacity: 0.7;
}

.card-1 {
  display: contents;
  list-style: none;
  position: relative;
}

.product-image {
  border-radius: 30px;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  background-color: #ffffff;
  transform-origin: center;
  transform: scale(1) translateZ(0);
  transition: filter 200ms linear, transform 200ms linear;
}

.product-image img {
  overflow: hidden;
  width: 100%;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  object-fit: cover;
  object-position: 50% 50%;
}

.card-1:hover .product-image {
  transform: scale(1.07) translateZ(0);
}

.card__content {
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.card__category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading {
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

@media screen and (max-width: 960px) {
  #highlights-carousel {
    width: 100%;
    margin: 0px auto;
  }

  /* the slides */
  #highlights-carousel .slick-slide {
    margin: 0;
  }

  /* the parent */
  #highlights-carousel .slick-list {
    overflow: visible;
    margin: 0;
  }

  .product-image {
    border-radius: 0px;
  }

  .card-1:hover .product-image {
    transform: none;
  }
}

/* Categories Page */
.category-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #efeeed;
}

.category-tree {
  display: flex;
  margin: 0;
  padding: 40px 0px;
  background-color: #f1f1f1;
}

.category-tree-nav {
  display: inline-flex;
  justify-content: center;
  margin: 0px auto;
  padding: 10px 50px;
  background-color: #ababab;
  list-style-type: none;
  border-radius: 30px;
}

.category-tree-nav li {
  display: flex;
  font-size: 11px;
  color: #ffffff;
}

.category-tree-nav>li>a:link,
.category-tree-nav>li>a:visited {
  display: flex;
  justify-content: center;
  margin: 0 7px;
  padding: 0;
  font-size: 10px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
}

.category-tree-nav>li>a:hover {
  text-decoration: underline;
}

.category-name {
  display: block;
  margin: 0px auto;
  padding: 25px 0px;
  font-size: 18px;
  text-transform: uppercase;
  color: #66625c;
  text-align: center;
}

.category-name:after {
  display: block;
  width: 100px;
  height: 3px;
  margin: 0px auto;
  margin-top: 10px;
  background-color: #66625c;
  content: " ";
}

.categories-display {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px;
  background-color: #f1f1f1;
}

.category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  margin: 10px;
  padding: 4px;
  width: 100%;
  text-align: center;
  color: whitesmoke;
}

.category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  -webkit-transition: -webkit-transform calc(var(--d) * 1.5) var(--e);
  transition: -webkit-transform calc(var(--d) * 1.5) var(--e);
  transition: transform calc(var(--d) * 1.5) var(--e);
  transition: transform calc(var(--d) * 1.5) var(--e),
    -webkit-transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.category-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0)),
      color-stop(11.7%, rgba(0, 0, 0, 0.009)),
      color-stop(22.1%, rgba(0, 0, 0, 0.034)),
      color-stop(31.2%, rgba(0, 0, 0, 0.072)),
      color-stop(39.4%, rgba(0, 0, 0, 0.123)),
      color-stop(46.6%, rgba(0, 0, 0, 0.182)),
      color-stop(53.1%, rgba(0, 0, 0, 0.249)),
      color-stop(58.9%, rgba(0, 0, 0, 0.32)),
      color-stop(64.3%, rgba(0, 0, 0, 0.394)),
      color-stop(69.3%, rgba(0, 0, 0, 0.468)),
      color-stop(74.1%, rgba(0, 0, 0, 0.54)),
      color-stop(78.8%, rgba(0, 0, 0, 0.607)),
      color-stop(83.6%, rgba(0, 0, 0, 0.668)),
      color-stop(88.7%, rgba(0, 0, 0, 0.721)),
      color-stop(94.1%, rgba(0, 0, 0, 0.762)),
      to(rgba(0, 0, 0, 0.79)));
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.009) 11.7%,
      rgba(0, 0, 0, 0.034) 22.1%,
      rgba(0, 0, 0, 0.072) 31.2%,
      rgba(0, 0, 0, 0.123) 39.4%,
      rgba(0, 0, 0, 0.182) 46.6%,
      rgba(0, 0, 0, 0.249) 53.1%,
      rgba(0, 0, 0, 0.32) 58.9%,
      rgba(0, 0, 0, 0.394) 64.3%,
      rgba(0, 0, 0, 0.468) 69.3%,
      rgba(0, 0, 0, 0.54) 74.1%,
      rgba(0, 0, 0, 0.607) 78.8%,
      rgba(0, 0, 0, 0.668) 83.6%,
      rgba(0, 0, 0, 0.721) 88.7%,
      rgba(0, 0, 0, 0.762) 94.1%,
      rgba(0, 0, 0, 0.79) 100%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform calc(var(--d) * 2) var(--e);
  transition: -webkit-transform calc(var(--d) * 2) var(--e);
  transition: transform calc(var(--d) * 2) var(--e);
  transition: transform calc(var(--d) * 2) var(--e),
    -webkit-transform calc(var(--d) * 2) var(--e);
}

.category-card:nth-child(1):before {
  background-image: url(../images/pub_img_0021.jpg);
}

.category-card:nth-child(2):before {
  background-image: url(../images/pub_img_0024.jpg);
}

.category-card:nth-child(3):before {
  background-image: url(../images/pub_img_002.jpg);
}

.category-card:nth-child(4):before {
  background-image: url(../images/pub_img_0023.jpg);
}

.category-card-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px auto;
  left: 0;
  width: 100%;
  padding: 30px;
  -webkit-transition: -webkit-transform var(--d) var(--e);
  transition: -webkit-transform var(--d) var(--e);
  transition: transform var(--d) var(--e);
  transition: transform var(--d) var(--e), -webkit-transform var(--d) var(--e);
  z-index: 1;
}

.category-card-content>*+* {
  margin-top: 1rem;
}

.category-card-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}

.copy {
  font-size: 13px;
  line-height: 17px;
  font-weight: 200;
}

@media (min-width: 600px) {
  .category-card {
    height: 350px;
  }
}

@media screen and (max-width: 600px) {
  .category-card-content {
    position: relative;
  }
}

@media (hover: hover) and (min-width: 600px) {
  .category-card:after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .category-card-content {
    -webkit-transform: translateY(calc(100% - 100px));
    transform: translateY(calc(100% - 100px));
  }

  .category-card-content>*:not(.category-card-name) {
    opacity: 0;
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: opacity var(--d) var(--e),
      -webkit-transform var(--d) var(--e);
    transition: opacity var(--d) var(--e), -webkit-transform var(--d) var(--e);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e),
      -webkit-transform var(--d) var(--e);
  }

  .category-card:hover,
  .category-card:focus-within {
    -webkit-box-align: center;
    align-items: center;
  }

  .category-card:hover:before,
  .category-card:focus-within:before {
    -webkit-transform: translateY(-4%);
    transform: translateY(-4%);
  }

  .category-card:hover:after,
  .category-card:focus-within:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .category-card:hover .category-card-content,
  .category-card:focus-within .category-card-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .category-card:hover .category-card-content>*:not(.category-card-name),
  .category-card:focus-within .category-card-content>*:not(.category-card-name) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: calc(var(--d) / 4);
    transition-delay: calc(var(--d) / 4);
  }

  .category-card:focus-within:before,
  .category-card:focus-within:after,
  .category-card:focus-within .category-card-content,
  .category-card:focus-within .category-card-content>*:not(.category-card-name) {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}

.products-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 30px 10px;
  background-color: #f1f1f1;
}

.product-card {
  display: flex;
  flex-direction: column;
  margin: 0 20px 50px 20px;
  padding: 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.product-card:hover .product-actions {
  opacity: 1;
  visibility: visible;
}

.product-card .product-actions {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.product-card .product-actions a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ababab;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-card .product-actions a:hover {
  color: #ffffff;
  background-color: #00c9d0;
  border: 1px solid #00c9d0;
}

.product-card .product-actions ion-icon {
  font-size: 15px;
  color: #ababab;
}

.product-card .product-actions a:hover ion-icon {
  color: #ffffff;
}

.product-display {
  display: flex;
  margin: 0;
  padding: 20px;
  width: 100%;
  max-height: 300px;
  justify-content: center;
  overflow: hidden;
}

.product-display>a {
  position: relative;
  display: flex;
  width: 100%;
}

.product-display img {
  object-fit: contain;
  overflow: hidden;
}

.product-card .product-display .back-img {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-card .product-display:hover .back-img {
  opacity: 1;
  visibility: visible;
}

.product-card .product-label-sold-out {
  position: absolute;
  display: flex;
  align-self: center;
  transform: rotate(-20deg);
}

.product-card .product-label {
  position: absolute;
  display: flex;
  top: 10px;
  right: 10px;
}

.product-card .product-label>span,
.product-card .product-label-sold-out>span {
  padding: 5px 8px;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card .product-label .sale {
  background-color: #00c9d0;
}

.product-card .product-label-sold-out .sold-out {
  background-color: #cc0000;
}

.product-card:hover .product-details {
  bottom: 26px;
}

.product-card .product-details {
  position: relative;
  bottom: 0px;
  text-align: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #f1f1f1;
}

.product-card h3 {
  margin: 0;
  padding: 5px 0;
}

.product-card h3 a {
  margin: 0;
  font-size: 17px;
  color: #66625c;
  text-transform: uppercase;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: #00c9d0;
}

.product-card .product-details-ref {
  display: block;
  margin: 0;
  padding: 3px 0;
  font-size: 9px;
  color: #bbbbbb;
  text-transform: uppercase;
}

.product-card .old-price {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}

.product-card .old-price::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.product-card .old-price::before {
  border-bottom: 1px solid #333333;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.product-card .price {
  display: block;
  padding: 10px;
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #ababab;
}

.product-card .tax-advise {
  display: block;
  padding: 3px;
  font-size: 9px;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #f9f9f9;
}

.product-card:hover .product-quickview {
  bottom: 0;
}

.product-card .product-quickview {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: -26px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  line-height: 26px;
  text-decoration: none;
  color: #ffffff;
  background-color: #171717;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-card .product-quickview:hover {
  background-color: #f48d3e;
}

@media screen and (max-width: 767px) {
  .category-name {
    font-size: 25px;
  }

  .product-card {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .product-card:hover .product-actions {
    opacity: 1;
    visibility: visible;
  }

  .product-card .product-actions {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
  }

  .product-card .product-actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ababab;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .product-card .product-actions a:hover {
    color: #ffffff;
    background-color: #00c9d0;
    border: 1px solid #00c9d0;
  }

  .product-card .product-actions ion-icon {
    font-size: 15px;
    color: #ababab;
  }

  .product-card .product-actions a:hover ion-icon {
    color: #ffffff;
  }

  .product-display {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .product-display>a {
    position: relative;
    display: flex;
    padding: 30px 20px 0px 20px;
  }

  .product-display img {
    display: flex;
    margin: 0px auto;
    min-height: 250px;
    max-height: 250px;
    object-fit: contain;
    overflow: hidden;
  }

  .product-card .product-display .back-img {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .product-card .product-display:hover .back-img {
    opacity: 1;
    visibility: visible;
  }

  .product-card .product-label {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
  }

  .product-card .product-label>span {
    padding: 5px 8px;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .product-card .product-label .sale {
    background-color: #00c9d0;
  }

  .product-card .product-label .sold-out {
    background-color: #cc0000;
  }

  .product-card:hover .product-details {
    bottom: 0px;
  }

  .product-card .product-details {
    position: relative;
    margin: 20px 0 0 0;
    padding: 10px 0 0 0;
    bottom: 0px;
    text-align: center;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 1px solid #f1f1f1;
  }

  .product-card h3 {
    margin: 0;
    padding: 0;
  }

  .product-card h3 a {
    margin: 0;
    padding: 3px 0;
    font-size: 20px;
    color: #66625c;
    text-transform: uppercase;
    text-decoration: none;
  }

  .product-card h3 a:hover {
    color: #00c9d0;
  }

  .product-card .product-details-ref {
    display: block;
    margin: 0;
    padding: 7px 0;
    font-size: 11px;
    color: #bbbbbb;
    text-transform: uppercase;
  }

  .product-card .old-price {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
  }

  .product-card .old-price::before {
    content: "";
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
  }

  .product-card .old-price::before {
    border-bottom: 1px solid #333333;
    -webkit-transform: skewY(-10deg);
    transform: skewY(-10deg);
  }

  .product-card .price {
    display: block;
    padding: 10px;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #ababab;
  }

  .product-card:hover .product-quickview {
    bottom: 0;
  }

  .product-card .product-quickview {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    bottom: 0px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-align: center;
    line-height: 26px;
    text-decoration: none;
    color: #ffffff;
    background-color: #171717;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .product-card .product-quickview:hover {
    background-color: #f48d3e;
  }
}

/*==================================================-----*/
/* Product Details
/*==================================================-----*/

.product-view-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #efeeed;
}

.product-view-title {
  display: block;
  margin: 0px auto;
  padding: 50px 0px;
  font-size: 25px;
  text-transform: uppercase;
  color: #66625c;
  text-align: center;
}

.product-view-title:after {
  display: block;
  width: 100px;
  height: 3px;
  margin: 0px auto;
  margin-top: 10px;
  background-color: #66625c;
  content: " ";
}

.product-view-carousel-area {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  background-color: #faf9f8;
}

#product-view-carousel {
  margin: 10px 0px;
}

/* the slides */
#product-view-thumbnails-carousel .slick-slide {
  margin: 0 5px;
}

#product-view-carousel .carousel-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  background-color: #ffffff;
  outline: none;
}

#product-view-carousel .carousel-slide .slide-image {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  object-fit: contain;
  object-position: 50% 50%;
}

#product-view-thumbnails-carousel .carousel-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  background-color: #ffffff;
  outline: none;
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}

#product-view-thumbnails-carousel .carousel-slide:hover {
  opacity: 1;
  transition: all 0.2s ease-in;
}

#product-view-thumbnails-carousel .slick-current {
  opacity: 1;
}

#product-view-thumbnails-carousel .carousel-slide .slide-image {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  object-fit: contain;
  object-position: 50% 50%;
}

#product-view-carousel .slick-prev,
#product-view-thumbnails-carousel .slick-prev {
  left: 25px;
  z-index: 1;
}

#product-view-carousel .slick-next,
#product-view-thumbnails-carousel .slick-next {
  right: 25px;
  z-index: 1;
}

#product-view-carousel .slick-prev:before,
#product-view-carousel .slick-next:before,
#product-view-thumbnails-carousel .slick-prev:before,
#product-view-thumbnails-carousel .slick-next:before {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.75;
  color: #00c9d0;
}

#product-view-carousel .slick-prev:before,
#product-view-thumbnails-carousel .slick-prev:before {
  content: "\003c";
}

#product-view-carousel .slick-next:before,
#product-view-thumbnails-carousel .slick-next:before {
  content: "\003e";
}

.product-info-wrap {
  padding: 50px;
}

.product-view .product-name {
  margin: 0;
  padding: 0;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  color: #66625c;
}

.product-view .product-ref {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #cccccc;
}

.product-view .old-price {
  position: relative;
  margin-right: 7px;
  font-size: 17px;
  font-weight: 400;
  color: #bbbbbb;
}

.product-view .old-price::before {
  content: " ";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  border-bottom: 2px solid #bbbbbb;
  -webkit-transform: skewY(-25deg);
  transform: skewY(-25deg);
}

.product-view .price {
  display: inline-block;
  margin: 20px 0px 0px 0px;
  padding: 10px 15px;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  background-color: #00c9d0;
}

.product-view .tax-advise {
  display: block;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #1a1a1a;
}

.product-view .product-description-title,
.product-view .product-share-title {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #66625c;
}

.product-view .product-description-title:after,
.product-view .product-share-title:after {
  display: block;
  width: 50%;
  height: 3px;
  margin-top: 4px;
  background-color: #66625c;
  content: " ";
}

.product-view .product-description-text {
  display: block;
  margin: 30px 0px;
  padding: 90px;
  font-size: 15px;
  font-weight: 300;
  color: var(--default-text-color);
  background-color: #ffffff;
}

.product-view .product-description-text p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 25px !important;
  color: #707070 !important;
}

.product-view .product-description-text span {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #aaaaaa !important;
}

.product-view .product-description-text strong {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  color: #aaaaaa !important;
}

.product-view .discount-text {
  margin: 10px 0px;
  padding: 4px;
  font-size: 13px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 200;
  text-align: center;
}

.product-view .login-advise {
  display: block;
  margin: 30px 0px;
  padding: 15px;
  font-size: 12px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 300;
}

.product-view .rating a:before {
  margin-right: 15px;
}

.select-options {
  margin: 0;
  padding: 0;
}

.product-view .quantity.buttons_added {
  float: left;
}

.quantity.buttons_added {
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
  width: 20px;
  height: 32px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  font-size: 22px;
}

.quantity.buttons_added .minus {
  border-right: 0;
}

.quantity.buttons_added .plus {
  border-left: 0;
}

.quantity .input-text.qty {
  width: 32px;
  height: 32px;
  padding: 0;
  background: #fff;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #000000;
}

.product-actions li {
  margin-right: 7px;
  display: inline-block;
}

.product-actions li:last-child {
  margin-right: 0;
  margin-left: 23px;
}

.product-actions li .buttons_added input {
  width: 20px !important;
  height: 50px !important;
  line-height: 50px;
}

.single-product .product-actions {
  padding: 3px 0 30px;
}

.single-product .icon-add-to-wishlist {
  height: 50px;
  line-height: 50px;
  width: 50px;
}

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

input[type="number"] {
  -moz-appearance: textfield;
}

.product-view .socials-share {
  padding: 12px 0;
  margin-bottom: 30px;
}

.product-view .socials-share .social-icons {
  margin-top: 0;
}

.product-view .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-view .social-icons a:hover {
  color: #ffffff;
  background-color: #00c9d0;
}

.product-view .social-icons ion-icon {
  font-size: 20px;
  color: #ababab;
}

.product-view .social-icons a:hover ion-icon {
  color: #ffffff;
}

.product-view .socials-share span,
.project-info .socials-share span {
  display: inline-block;
  margin-top: 6px;
  margin-right: 10px;
}

.socials-share .social-icons {
  display: inline-block;
}

.product-view .product-share {
  display: block;
  margin: 20px 0px 0px 0px;
  padding: 0px;
  font-size: 17px;
  color: #cccccc;
}

.product-view .product-share:after {
  display: block;
  width: 400px;
  height: 2px;
  margin-top: 4px;
  background-color: #dddddd;
  content: " ";
}

/*==================================================-----*/
/* Cart
/*==================================================-----*/

.cart-title {
  display: block;
  padding: 25px 0px;
  background-color: #f48d3e;
  margin: 0px auto;
}

.cart-title span {
  display: block;
  margin: 0px auto;
  color: #ffffff;
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.cart-title i {
  display: block;
  margin: 0px auto;
  padding: 10px;
  color: #ffffff;
  font-size: 50px;
  text-align: center;
}

.cart-items {
  display: block;
  margin: 0px;
  padding: 20px;
  background-color: #f8f8f8;
}

.product-row {
  margin: 0px;
  padding: 20px 0px;
  border-bottom: 1px solid #333333;
  border-bottom-style: dashed;
}

.product-remove .remove-item {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #1a1a1a;
  text-align: center;
  outline: none;
}

.product-remove .remove-item i {
  display: block;
  font-size: 20px;
  color: #ffffff;
}

.product-remove .remove:hover {
  background-color: #d0ecea;
}

.product-remove .remove:hover i {
  color: #fff;
}

.product-thumbnail img {
  width: 100px;
  height: auto;
  min-width: 50px;
}

.product-info .product-name {
  display: block;
  padding: 0px;
  font-size: 19px;
  color: #999999;
}

.product-info .product-name:hover {
  color: #f48d3e;
}

.product-info .product-ref {
  display: block;
  padding: 0px;
  font-size: 12px;
  color: #cccccc;
}

.product-info .product-ref {
  display: block;
  padding: 0px;
  font-size: 12px;
  color: #cccccc;
}

.product-row .price {
  color: #999999;
  font-size: 19px;
  font-weight: 400;
}

.product-row .old-price {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  font-size: 12px;
  font-weight: 300;
  color: #999999;
}

.product-row .old-price::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.product-row .old-price::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.product-row input[type="number"],
.product-row select {
  height: 41px;
  border: 1px solid #ebebeb;
  background-color: #fcfcfc;
  width: 60px;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-row input[type="number"]:focus {
  border-color: #f48d3e;
  background-color: #fff;
  outline: none;
  box-shadow: none !important;
}

.product-row .total-price {
  color: #333333;
  font-size: 21px;
  font-weight: 400;
}

.product-row .total-old-price {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  font-size: 15px;
  font-weight: 300;
  color: #999999;
}

.product-row .total-old-price::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.product-row .total-old-price::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.product-discount-text {
  margin: 10px 0px;
  padding: 4px;
  font-size: 13px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 300;
  text-align: center;
}

.cart-resume {
  background-color: #f1f1f1;
}

.coupon .input-text {
  width: 30%;
  display: inline-block;
}

.coupon {
  padding: 40px 40px 40px 20px;
  background-color: #777777;
  text-align: right;
}

.coupon span {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
}

.coupon p {
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 17px;
  font-weight: 200;
  color: #ffffff;
}

.order-resume {
  padding: 40px 40px 40px 20px;
  text-align: right;
}

.resume-cart-title {
  display: block;
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 400;
}

.resume-cart-obs {
  display: block;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 200;
}

.order-resume .cart-total {
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 600;
}

.order-resume .cart-total-old {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 200;
  color: #1a1a1a;
}

.order-resume .cart-total-old::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.order-resume .cart-total-old::before {
  border-bottom: 2px solid #1a1a1a;
  -webkit-transform: skewY(-20deg);
  transform: skewY(-20deg);
}

.btn-cart {
  color: #31302b;
  background: #fff;
  padding: 12px 17px;
  margin: 25px;
  border: 3px solid #31302b;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #31302b;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.btn-cart:hover {
  box-shadow: inset 250px 0 0 0 #31302b;
  color: #fff;
}

.cart-obs {
  display: block;
  margin: 0px;
  padding: 20px 0px;
  color: #999999;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}

.empty-cart {
  display: block;
  padding: 30px 0px;
  background-color: #9fd6d2;
  margin: 0px auto;
}

.empty-cart p {
  display: block;
  margin: 0px auto;
  padding: 20px 40px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}

.empty-cart span {
  display: block;
  margin: 0px auto;
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.empty-cart i {
  display: block;
  margin: 0px auto;
  padding: 20px;
  color: #ffffff;
  font-size: 70px;
  text-align: center;
}

.checkout {
  padding: 10px;
  background-color: #f5f6f7;
}

.checkout-title {
  display: block;
  padding: 40px 0px;
  margin: 0px auto;
  font-size: 50px;
  font-weight: 200;
  color: #979797;
  text-align: center;
}

.checkout-title:after {
  display: block;
  width: 100px;
  height: 4px;
  margin: 0px auto;
  margin-top: 25px;
  background-color: #979797;
  content: " ";
}

.step-1,
.step-2,
.step-3 {
  margin: 0;
  padding: 20px;
}

.step-block {
  display: block;
  margin: 30px 0;
}

.title-step {
  display: block;
  margin: 20px 0px;
  padding: 0px 0px 20px 0px;
  color: #222222;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.checkout input[type="text"],
.checkout input[type="email"],
.checkout input[type="tel"],
.checkout input[type="number"],
.checkout textarea {
  border: 1px solid #a7acb1;
  border-radius: 3px;
  background-color: #faf9f8;
  width: 100%;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 15px;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.checkout textarea {
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
}

.checkout input[type="text"]:focus,
.checkout input[type="email"]:focus,
.checkout input[type="number"]:focus,
.checkout input[type="tel"]:focus,
.checkout textarea:focus {
  border-color: var(--default-text-color);
  background-color: #fff;
  outline: none;
  box-shadow: none !important;
}

/* Change Color of Placeholders */
.checkout input::-webkit-input-placeholder,
.checkout textarea::-webkit-input-placeholder {
  color: #999999;
}

.checkout input:-moz-placeholder,
.checkout textarea:-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.checkout input::-moz-placeholder,
.checkout textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.checkout input:-ms-input-placeholder,
.checkout textarea:-ms-input-placeholder {
  color: #999999;
}

.error_php {
  display: block;
  margin: 0;
  padding: 5px;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: red;
  border-bottom: 1px solid #f1f1f1;
}

.coupon-area {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.coupon-area p {
  font-size: 12px;
  line-height: 20px;
  color: #555555;
  font-weight: 300;
  margin: 10px 0px;
}

.coupon-area input[type="text"] {
  border: 1px solid #ebebeb;
  background-color: #fcfcfc;
  width: 100%;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 300;
  padding: 10px 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul.delivery_methods,
ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.delivery_methods li,
.payment_methods li {
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}

.delivery_box p,
.payment_box p {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 400;
  background-color: #ffffff;
  margin: 10px 0px 0px 0px;
  padding: 15px;
}

.delivery_methods label,
.payment_methods label {
  color: #444444;
  vertical-align: middle;
  margin-bottom: 0;
}

.payment_method img {
  margin-left: 15px;
}

.order-review-wrap {
  padding: 20px;
  background-color: #ffffff;
}

.order-review-wrap .product-row {
  display: block;
  margin: 0px;
  padding: 20px 0px;
  border-bottom: 1px solid #999999;
  border-bottom-style: dashed;
}

.order-review-wrap .product-name a {
  display: block;
  padding: 0px;
  font-size: 14px;
  color: #1a1a1a;
}

.order-review-wrap .product-name a:hover {
  color: #f48d3e;
}

.order-review-wrap .product-ref {
  display: block;
  padding: 0px;
  font-size: 12px;
  color: #cccccc;
}

.order-review-wrap .product-ref {
  display: block;
  padding: 0px;
  font-size: 12px;
  color: #cccccc;
}

.order-review-wrap .price {
  color: #999999;
  font-size: 15px;
  font-weight: 400;
}

.order-review-wrap .old-price {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  font-size: 12px;
  font-weight: 300;
  color: #999999;
}

.order-review-wrap .old-price::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.order-review-wrap .old-price::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.order-review-wrap .total-price {
  color: #333333;
  font-size: 15px;
  font-weight: 400;
}

.order-review-wrap .total-old-price {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  font-size: 12px;
  font-weight: 300;
  color: #999999;
}

.order-review-wrap .total-old-price::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.order-review-wrap .total-old-price::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.order-review-wrap .product-discount-text {
  margin: 5px 0px;
  padding: 4px;
  font-size: 10px;
  border: 1px solid #ebebeb;
  color: #333333;
  font-weight: 300;
  text-align: center;
}

.cart-totals {
  padding: 30px 30px 30px 10px;
  text-align: right;
}

.cart-totals p {
  margin: 10px 0px;
}

.cart-subtotal-title {
  display: block;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.cart-subtotal {
  margin-bottom: 12px;
  color: #999999;
  font-size: 18px;
  font-weight: 300;
}

.cart-subtotal-old {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 300;
  color: #999999;
}

.cart-subtotal-old::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.cart-subtotal-old::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-20deg);
  transform: skewY(-20deg);
}

.delivery-title {
  display: block;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
}

.delivery-cost {
  color: #999999;
  font-size: 18px;
  font-weight: 300;
}

.cart-total-title {
  display: block;
  margin-bottom: 10px;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
}

.cart-total-obs {
  display: block;
  margin-bottom: 20px;
  color: #333333;
  font-size: 10px;
  font-weight: 200;
}

.cart-total {
  color: #333333;
  font-size: 35px;
  font-weight: 400;
}

.cart-total-old {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 300;
  color: #999999;
}

.cart-total-old::before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

.cart-total-old::before {
  border-bottom: 1px solid #999999;
  -webkit-transform: skewY(-20deg);
  transform: skewY(-20deg);
}

.checkout-btn-area {
  padding: 40px 0px;
  text-align: right;
}

.msg {
  padding: 20px;
  margin-bottom: 30px;
  background-color: #272727;
  color: #ffffff;
}

.msg i {
  font-size: 20px;
  color: #ffffff;
  line-height: 25px;
}

.msg span {
  padding: 0px 0px 0px 20px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  line-height: 25px;
}

/* About us Page */
.about-us-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #efeeed;
}

.about-us-title {
  display: block;
  margin: 0px auto;
  padding: 45px 0px;
  font-size: 30px;
  text-transform: uppercase;
  color: #66625c;
  text-align: center;
}

.about-us-title:after {
  display: block;
  width: 100px;
  height: 3px;
  margin: 0px auto;
  margin-top: 10px;
  background-color: #66625c;
  content: " ";
}

.about-us-display {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px;
  background-color: #f1f1f1;
}

.about-us-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin: 50px 0;
  padding: 0 10px;
  text-align: justify;
  color: #aaaaaa;
}

@media screen and (max-width: 767px) {
  .about-us-title {
    font-size: 25px;
  }
}

.main-footer {
  display: flex;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 20px 0px;
  background-color: #101010;
}

.footer-col-container {
  display: flex;
  justify-content: center;
}

.footer-col {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-menu {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.footer-menu>li:first-child {
  display: block;
  margin: 0 0 25px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--default-text-color);
  letter-spacing: 1px;
}

.footer-menu .footer-menu-item a {
  display: inline-flex;
  align-items: center;
  padding: 3px 0;
  font-size: 13px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #777777;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  /* For Safari 3.0 to 6.0 */
  transition: all 0.3s;
  /* For modern browsers */
}

.footer-menu .footer-menu-item a ion-icon {
  margin: 0 5px 0 0;
  overflow: hidden;
}

.footer-menu .footer-menu-item a:hover {
  margin-left: 3px;
  color: var(--default-text-color);
}

.footer-submenu-container {
  /* Começa escondido, mas não com display: none para que o JS possa calcular a sua altura */
  overflow: hidden;
  height: 0;
  /* Adiciona uma transição suave para uma experiência melhor */
  transition: height 0.3s ease-in-out;
}

.rotated {
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari 3.1+ */
  -moz-transform: rotate(90deg);
  /* Firefox 3.5-15 */
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -o-transform: rotate(90deg);
  /* Opera 10.50-12.00 */
  transform: rotate(90deg);
  /* Firefox 16+, IE 10+, Opera 12.10+ */
  transition: all 0.5s ease-out;
}

.copyright-area {
  margin: 0 auto;
  padding: 3px 0;
}

.copyright-text {
  margin: 0px;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.copyright-area a {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  /* For Safari 3.0 to 6.0 */
  transition: all 0.3s;
  /* For modern browsers */
}

.copyright-area a:hover {
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .main-footer {
    padding: 50px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-menu>li:first-child {
    font-size: 20px;
  }

  .footer-menu .footer-menu-item a {
    padding: 7px 0;
    font-size: 16px;
  }

  .footer-menu .footer-menu-item a:hover {
    margin-left: 0px;
  }
}






























/* ======================== UPLOADER CSS COMPLETO ======================== */

/* Container Principal */
.uploader-container {
  position: relative;
  width: 100%;
}

/* Área de Seleção (Dropzone) */
.files_select_area {
  width: 100%;
  margin-bottom: 20px;
}

.images_drop_zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  min-height: 120px;
  border: 2px dashed #007bff;
  background-color: #f9fbfd;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
}

.images_drop_zone:hover,
.images_drop_zone.dragover {
  background-color: #e3f2fd;
  border-color: #0056b3;
}

.images_drop_zone.active {
  background-color: #e3f2fd;
  border-color: #0056b3;
  transform: scale(1.01);
}

/* Elementos da Dropzone */
.uploader-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fake-upload-button {
  cursor: pointer;
}

.upload-helper-text {
  font-size: 12px;
  color: #666;
}

/* Input File Escondido */
.hidden-input-files {
  display: none !important;
}

/* Área de Gestão (Select All / Delete All) */
.manage_all_files_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 4px;
}

.manage_all_files_area .checkbox-wrapper {
  display: flex;
  align-items: center;
}

.manage_all_files_area label {
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}

.delete_all_files_btn {
  margin-left: auto;
  display: none;
  /* JS controla a visibilidade (block) */
}

/* Grelha de Preview */
.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  width: 100%;
}

/* Card do Ficheiro (Preview) */
.file-preview {
  position: relative !important;
  /* Força relative para os filhos absolutos */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: grab;
  overflow: hidden;
}

.file-preview:active {
  cursor: grabbing;
}

.file-preview.selected {
  border-color: #2196f3;
  background-color: #e3f2fd;
}

/* --- Checkbox de Seleção Individual --- */
.file-preview .file-select-checkbox {
  display: block !important;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 50;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 1;
  margin: 0;
}

/* --- Botões de Ação (Wrapper) --- */
.file-actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 50;
}

/* Estilo Base dos Botões de Ação */
.file-action-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  border: 1px solid #ccc;
  color: #333;
}

.file-action-button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.file-action-button ion-icon {
  font-size: 16px;
  pointer-events: none;
  /* Evita cliques no ícone */
}

/* Botão Eliminar (Variação) */
.file-action-button.remove-file-button {
  border-color: #ffcdd2;
  color: #c62828;
}

.file-action-button.remove-file-button:hover {
  background: #c62828;
  color: #fff;
  border-color: #c62828;
}

/* --- Conteúdo do Preview (Media) --- */
.preview-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* PDF e Ícones */
.pdf-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.file-icon-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #555;
  text-align: center;
}

.file-icon-preview ion-icon {
  font-size: 40px;
  margin-bottom: 5px;
}

.file-icon-preview.pdf-icon {
  color: #e74c3c;
}

.file-icon-preview span {
  font-size: 10px;
  color: #333;
  padding: 0 5px;
  word-break: break-word;
  line-height: 1.2;
}

/* --- Barra de Progresso --- */
.upload-progress-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.upload-progress-bar-bg {
  width: 80%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.upload-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: #2196f3;
  transition: width 0.2s;
}

.upload-progress-text {
  font-size: 10px;
  color: #666;
}