@font-face {
  font-family: "Acumin Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/Acumin Pro/Acumin Pro Light.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: italic;
  font-weight: 300;
  src: url("../../fonts/Acumin Pro/Acumin Pro Light Italic.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Acumin Pro/Acumin Pro Medium.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: italic;
  font-weight: 500;
  src: url("../../fonts/Acumin Pro/Acumin Pro Medium Italic.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/Acumin Pro/Acumin Pro Semibold.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: italic;
  font-weight: 600;
  src: url("../../fonts/Acumin Pro/Acumin Pro Semibold Italic.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Acumin Pro/Acumin Pro Bold.otf") format("opentype");
}
@font-face {
  font-family: "Acumin Pro";
  font-style: italic;
  font-weight: 700;
  src: url("../../fonts/Acumin Pro/Acumin Pro Bold Italic.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 300;
  color: #000;
  padding-top: 135px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: rgb(99, 99, 99);
  border-radius: 15px;
}
@media only screen and (max-width: 1250px) {
  body {
    padding-top: 155px;
  }
}
@media only screen and (max-width: 1025px) {
  body {
    padding-top: 133px;
  }
}
@media only screen and (max-width: 540px) {
  body {
    padding-top: 123px;
  }
}

.body-with-admin-bar .site-header .header-content {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  .body-with-admin-bar .site-header .header-content {
    top: 46px;
  }
}
@media only screen and (max-width: 600px) {
  .body-with-admin-bar .site-header .navbar-scroll {
    top: 0;
  }
}

.content, .content-no-padding {
  flex: 1;
  width: 100%;
  margin: 0 auto;
}

.content {
  max-width: 1440px;
  padding: 0 20px;
}

.content-no-padding {
  max-width: 1400px;
}

a {
  text-decoration: none;
  transition: color 0.2s linear, opacity 0.2s linear;
  outline: none;
}
a:hover, a:focus {
  outline: none;
  color: #000;
  text-decoration: none;
}

label {
  margin-bottom: 0;
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}
@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}
@keyframes bounce10 {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}
@keyframes black-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 108, 108, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(108, 108, 108, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(108, 108, 108, 0);
    -webkit-box-shadow: 0 0 0 10px rgba(108, 108, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 108, 108, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(108, 108, 108, 0);
  }
}
.black-pulse {
  transition: all 0.15s linear;
}
.black-pulse:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}

@keyframes black-pulse-big {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 108, 108, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(108, 108, 108, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(108, 108, 108, 0);
    -webkit-box-shadow: 0 0 0 20px rgba(108, 108, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 108, 108, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(108, 108, 108, 0);
  }
}
.black-pulse-big {
  transition: all 0.15s linear;
}
.black-pulse-big:hover {
  opacity: 0.9;
  animation: black-pulse-big 1s;
}

@keyframes white-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.white-pulse:hover {
  animation: white-pulse 1s;
}

@keyframes white-pulse-big {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.white-pulse-big {
  transition: all 0.15s linear;
}
.white-pulse-big:hover {
  opacity: 0.9;
  animation: white-pulse-big 1s;
}

@keyframes customFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  display: initial;
  animation: customFadeIn 0.3s linear;
}

@keyframes customFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.fadeOut {
  animation: customFadeOut 0.3s linear;
  animation-fill-mode: forwards;
}

@keyframes scaling {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes scaling {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.underline-hover-link {
  color: #000000;
  position: relative;
}
.underline-hover-link:hover:before, .underline-hover-link:hover:after {
  width: 100%;
  opacity: 1;
}
.underline-hover-link:after {
  left: 0;
  background-color: #6c6c6c;
}
.underline-hover-link:before, .underline-hover-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.underline-hover-link:hover {
  color: #6c6c6c;
}

.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.default-transition {
  transition: all 0.2s linear;
}

.absolute-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swipe-icon {
  text-align: center;
  margin-top: 19px;
  display: none;
}
.swipe-icon img {
  width: 18px;
}

.view-more {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
}
.view-more .view-more-link {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.view-more .view-more-link:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
}

.object-contain {
  object-fit: contain !important;
}

.main-title {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin-bottom: 20px;
}

.wysiwyg-styles > img {
  max-width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > img {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > p a:not(.default-button, .btn) {
  position: relative;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.wysiwyg-styles > p a:not(.default-button, .btn):hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.wysiwyg-styles > p img {
  max-width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p img {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > ul {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > ul li {
  display: table;
  position: relative;
  padding-left: 30px;
  font-size: 15px;
}
.wysiwyg-styles > ul li:not(:last-child) {
  margin-bottom: 7px;
}
.wysiwyg-styles > ul li:before {
  position: absolute;
  content: "";
  display: block;
  top: 10px;
  left: 0;
  height: 3px;
  width: 18px;
  background-color: #000;
}
.wysiwyg-styles > ul li a:not(.default-button, .btn) {
  position: relative;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.wysiwyg-styles > ul li a:not(.default-button, .btn):hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.wysiwyg-styles > h2, .wysiwyg-styles > h3 {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  color: #022222;
  margin-top: 60px;
}
.wysiwyg-styles > h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > h2 {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > h3 {
    margin-bottom: 15px;
  }
}
.wysiwyg-styles > p + ul {
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p + ul {
    margin-top: -15px;
  }
}
.wysiwyg-styles .wysiwyg-table-wrapper {
  overflow-x: auto;
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles .wysiwyg-table-wrapper {
    margin: 0 auto 15px;
  }
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar {
  height: 5px;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
}
.wysiwyg-styles .wysiwyg-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
}
.wysiwyg-styles .wysiwyg-table-wrapper table {
  margin: 0 !important;
}
.wysiwyg-styles table {
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles table {
    margin: 0 auto 15px;
  }
}
.wysiwyg-styles table tr {
  background-color: #fff;
}
.wysiwyg-styles table tr:nth-of-type(2n) {
  background-color: #f4f4f4;
}
.wysiwyg-styles table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-styles table td {
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles table td {
    min-width: 200px;
  }
}
.wysiwyg-styles .default-button {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles .default-button {
    margin-bottom: 15px;
  }
}

.video-wysiwyg {
  position: relative;
  overflow: hidden;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .video-wysiwyg {
    margin-bottom: 15px;
  }
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media screen and (max-width: 1024px) {
  .video-wysiwyg:before {
    padding-top: 55%;
  }
}
@media screen and (max-width: 767px) {
  .video-wysiwyg:before {
    padding-top: 60%;
  }
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg-gallery {
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .wysiwyg-gallery {
    margin-bottom: 15px;
  }
}
.wysiwyg-gallery .single-gallery-element {
  transition: all 0.2s linear;
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  width: calc((100% - 8px) / 2.001);
  margin: 0 4px 8px;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(odd) {
  margin-left: 0;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(even) {
  margin-right: 0;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 90%;
}
.wysiwyg-gallery .single-gallery-element .gallery-image, .wysiwyg-gallery .single-gallery-element .darkness-effect {
  top: 0;
  left: 0;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element .darkness-effect {
  background-color: rgba(0, 0, 0, 0.57);
}
.wysiwyg-gallery .single-gallery-element .number-additional {
  bottom: 25px;
  right: 25px;
  color: #fff;
  font-size: 25px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
}
.wysiwyg-gallery .single-gallery-element .number-additional:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wysiwyg-gallery .single-gallery-element .number-additional {
    bottom: 15px;
    right: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element .number-additional {
    font-size: 23px;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element .number-additional .long {
    display: none;
  }
}
.wysiwyg-gallery .single-gallery-element .number-additional .short {
  display: none;
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element .number-additional .short {
    display: inline;
  }
}
.wysiwyg-gallery .single-gallery-element:hover {
  transition: all 0.2s linear;
  transform: translateY(-4px) perspective(1000px);
  -webkit-transform: translateY(-4px) perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.custom-breadcrumb {
  margin: 20px 0 40px;
}
@media screen and (max-width: 767px) {
  .custom-breadcrumb {
    margin: 20px 0 30px;
  }
}
.custom-breadcrumb .breadcrumbs a:first-child {
  margin-top: -1px;
}
.custom-breadcrumb .breadcrumbs a:not(:first-child) {
  position: relative;
}
.custom-breadcrumb .breadcrumbs a:not(:first-child):hover:before, .custom-breadcrumb .breadcrumbs a:not(:first-child):hover:after {
  width: 100%;
  opacity: 1;
}
.custom-breadcrumb .breadcrumbs a:not(:first-child):after {
  left: 0;
  background-color: #fff;
}
.custom-breadcrumb .breadcrumbs a:not(:first-child):before, .custom-breadcrumb .breadcrumbs a:not(:first-child):after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.custom-breadcrumb .breadcrumbs .icon-home {
  line-height: unset;
}
.custom-breadcrumb .breadcrumbs .icon-home:before {
  font-size: 15px;
}
.custom-breadcrumb .breadcrumbs .breadcrumb-arrow {
  display: block;
  margin: 0 5px;
  -webkit-mask-image: url("../../images/right-arrow-angle.svg");
  mask-image: url("../../images/right-arrow-angle.svg");
  height: 15px;
  width: 15px;
  background-color: #d0d0d0;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.custom-breadcrumb .breadcrumbs h1 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.padding-top-medium {
  padding-top: 30px;
}

.slick-dots li {
  outline: none !important;
}
.slick-dots li button {
  outline: none !important;
}

.grey-color {
  color: #a1a1a1 !important;
}

.green-color {
  color: #32bea6 !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.italic {
  font-style: italic;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 999999;
}

.gooey {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 40px;
  margin: -20px 0 0 -71px;
  background: #fff;
  filter: contrast(20);
}
.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
  transform: translateX(0);
  animation: dot 2.8s infinite;
}
.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}
.gooey .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  filter: blur(4px);
  background: #000;
  border-radius: 50%;
}

.m-auto-horizontal {
  margin: 0 auto;
}

b, strong {
  font-weight: 600;
}

.site-header .header-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.site-header .header-content .header-black-bar {
  background-color: #000;
  padding: 15px 0;
  color: #fff;
}
.site-header .header-content .header-black-bar .content .header-black-bar-left .black-bar-left-item .black-bar-link {
  transition: opacity 0.2s linear;
}
.site-header .header-content .header-black-bar .content .header-black-bar-left .black-bar-left-item .black-bar-link:hover {
  opacity: 0.8;
}
.site-header .header-content .header-black-bar .content .header-black-bar-left .black-bar-left-item.email > a {
  color: #6c6c6c !important;
}
.site-header .header-content .header-black-bar .content .header-black-bar-center .black-bar-center-link {
  font-size: 14px;
  color: #fff;
  transition: opacity 0.2s linear;
  cursor: pointer;
}
.site-header .header-content .header-black-bar .content .header-black-bar-center .black-bar-center-link:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1250px) {
  .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .black-bar-right-text .header-span-icon {
    transform: translateY(-2px);
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .black-bar-right-text .header-span-icon {
    margin-right: 12px;
  }
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .modal-minicart, .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .login-dropdown {
  transition: opacity 0.2s linear, height 0.2s linear, visibility 0.2s linear;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .modal-minicart:before, .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item .login-dropdown:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 85px;
  height: 100px;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item:not(.header-greeting-wrapper):hover .modal-minicart {
  opacity: 1;
  visibility: visible;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item:not(.header-greeting-wrapper):hover .black-bar-right-text {
  opacity: 0.8;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting {
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (max-width: 374px) {
  .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .greeting-desktop {
    display: none;
  }
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .greeting-mobile {
  display: none;
}
@media only screen and (max-width: 374px) {
  .site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .greeting-mobile {
    display: inline;
  }
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .account-link {
  position: relative;
  color: #6c6c6c !important;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .account-link:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6c6c6c;
}
.site-header .header-content .header-black-bar .content .header-black-bar-right .black-bar-right-item.header-greeting-wrapper .header-greeting .account-link:hover {
  opacity: 0.8;
}
.site-header .header-content .header-black-bar .content .login-dropdown .woocommerce-error {
  padding: 6px 20px 6px 47px;
}
.site-header .header-content .header-black-bar .content .login-dropdown .woocommerce-error:before {
  height: 20px;
  width: 20px;
  left: 15px;
}
.site-header .header-content .header-black-bar .content .login-dropdown .woocommerce-error li {
  font-size: 14px;
}
.site-header .header-content .header-main-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu {
    position: unset;
  }
}
.site-header .header-content .header-main-menu .header-left {
  margin-right: auto;
}
.site-header .header-content .header-main-menu .header-left a img {
  max-height: 100px;
  width: 200px;
  max-width: 80px;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-left a img {
    max-height: 60px;
  }
}
.site-header .header-content .header-main-menu .header-center .mobile-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content {
    display: block;
    width: 80%;
    height: 100vh;
    background-color: #000;
    margin-left: auto;
    padding: 50px 65px;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.2s linear;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content {
    width: calc(100% - 40px);
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 350px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content {
    width: 100%;
  }
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile, .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile, .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile {
    display: none;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center {
    display: block;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link {
  transition: all 0.2s linear;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link {
    justify-content: center;
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link .icon-switch {
    font-size: 20px !important;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link span {
  color: #fff;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link span {
    font-size: 14px !important;
    font-weight: 300 !important;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link span:after {
  transition: all 0.2s linear;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link:hover span {
  color: #6c6c6c;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-center-mobile .header-black-bar-center .black-bar-center-link:hover span:after {
  background-color: #6c6c6c;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 38px 45px;
  }
}
@media only screen and (max-width: 400px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right {
    justify-content: flex-start;
    padding: 0 38px 45px 0;
  }
}
@media only screen and (max-width: 350px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item:not(:last-child) {
    margin-right: 23px;
  }
}
@media only screen and (max-width: 350px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .header-span-icon {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .icon-like:before, .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .icon-bag-black:before {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .black-bar-right-text-desktop {
    color: #fff;
    position: relative;
    transition: color 0.2s linear, opacity 0.2s linear;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .black-bar-right-text-desktop:not(.black-bar-right-text-desktop.user) {
    font-size: 14px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .black-bar-right-text-desktop:after {
    left: 0;
    background-color: #6c6c6c;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .black-bar-right-text-desktop:before, .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item .black-bar-right-text .black-bar-right-text-desktop:after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    margin: 5px 0 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item:hover .black-bar-right-text .black-bar-right-text-desktop {
    color: #6c6c6c;
  }
  .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item:hover .black-bar-right-text .black-bar-right-text-desktop:before, .site-header .header-content .header-main-menu .header-center .header-center-content .black-bar-nav-right-mobile .header-black-bar-right .black-bar-right-item:hover .black-bar-right-text .black-bar-right-text-desktop:after {
    width: 100%;
    opacity: 1;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li {
    text-align: center;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a {
  margin: 0 14px;
  padding: 0;
  color: #000000;
  position: relative;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:hover:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:hover:after {
  width: 100%;
  opacity: 1;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:after {
  left: 0;
  background-color: #6c6c6c;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a {
    display: inline-block;
    margin: 10px 20px;
    color: #fff;
    text-align: center;
    font-size: 19px;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu > li > a:hover {
  color: #6c6c6c;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .active-link > a, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-item > a, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-parent > a {
  color: #6c6c6c;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .active-link > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .active-link > a:after, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-item > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-item > a:after, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-parent > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .current-menu-parent > a:after {
  width: 100%;
  opacity: 1;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link > a .mega-menu-bridge, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link > a .mega-menu-bridge {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 75px;
  height: 200px;
  display: none;
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover > a, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover > a {
    color: #6c6c6c;
  }
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover > a:after, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover > a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover > a:after {
    width: 100%;
    opacity: 1;
  }
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover > a .mega-menu-bridge, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover > a .mega-menu-bridge {
    display: block;
  }
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover .all-products-nav, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link:hover .all-brands-nav, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover .all-products-nav, .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-brands-nav-link:hover .all-brands-nav {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .all-products-nav-link {
    position: relative;
  }
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .arrow-down-icon > a:before {
    display: none;
  }
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .arrow-down-icon > a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 100%);
    -webkit-mask-image: url("../../images/menu-arrow-down.svg");
    mask-image: url("../../images/menu-arrow-down.svg");
    height: 12px;
    width: 12px;
    background-color: #000;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.15s ease-in-out;
  }
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .arrow-down-icon > a:hover:after {
    width: 12px;
    bottom: -8px;
  }
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .header-center .header-center-content .top-center-main-menu-class #menu-header-main-menu .arrow-down-icon:hover > a:after {
    width: 12px;
    bottom: -8px;
  }
}
.site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li {
  display: flex;
  justify-content: center;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a {
  display: inline-block;
  color: #858585;
  text-align: center;
  font-size: 16px;
  padding: 0;
  margin: 10px 20px;
  position: relative;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a:hover:before, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a:hover:after, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a:hover:before, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a:hover:after {
  width: 100%;
  opacity: 1;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a:after, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a:after {
  left: 0;
  background-color: #858585;
}
.site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class #menu-bottom-menu-col-2 li a:after, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a:before, .site-header .header-content .header-main-menu .header-center .header-center-content .footer-menu-mobile .bottom-menu-col2-class ul li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.site-header .header-content .header-main-menu .header-right .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 300;
  font-style: italic;
}
.site-header .header-content .header-main-menu .header-right .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-weight: 300;
  font-style: italic;
}
.site-header .header-content .header-main-menu .header-right .dgwt-wcas-search-wrapp .dgwt-wcas-search-form .dgwt-wcas-sf-wrapp ::-ms-input-placeholder { /* Microsoft Edge */
  font-weight: 300;
  font-style: italic;
}
.site-header .header-content .header-main-menu .menu-button-open {
  display: none;
  width: 36px;
  height: 32px;
  padding-top: 2px;
  margin-left: 20px;
  position: relative;
  top: -3px;
  color: #000;
  text-align: center;
  font-size: 17px;
  border-radius: 2px;
  transform: rotate(0deg);
  cursor: pointer;
}
@media only screen and (max-width: 1025px) {
  .site-header .header-content .header-main-menu .menu-button-open {
    display: block;
  }
}
@media only screen and (max-width: 540px) {
  .site-header .header-content .header-main-menu .menu-button-open {
    margin-left: 0;
  }
}
.site-header .header-content .header-main-menu .menu-button-open span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  height: 3px;
  width: 80%;
  background: #000;
  border-radius: 1px;
  opacity: 1;
  margin: auto 0 auto auto;
  transform: rotate(0deg);
}
@media only screen and (max-width: 380px) {
  .site-header .header-content .header-main-menu .menu-button-open span {
    height: 2px;
  }
}
.site-header .header-content .header-main-menu .menu-button-open span:first-child {
  top: 9px;
}
.site-header .header-content .header-main-menu .menu-button-open span:nth-child(2), .site-header .header-content .header-main-menu .menu-button-open span:nth-child(3) {
  top: 18px;
  width: 80%;
  margin-right: 0;
}
.site-header .header-content .header-main-menu .menu-button-open span:nth-child(4) {
  top: 27px;
}
.site-header .header-content .header-main-menu .menu-button-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .menu-button-close {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .site-header .header-content .header-main-menu .menu-button-close {
    top: 78px;
  }
}
@media only screen and (max-width: 370px) {
  .site-header .header-content .header-main-menu .menu-button-close {
    top: 81px;
  }
}
@media only screen and (max-width: 350px) {
  .site-header .header-content .header-main-menu .menu-button-close {
    top: 97px;
  }
}
.site-header .header-content .header-main-menu .menu-button-close .close-image {
  -webkit-mask-image: url("../../images/close.svg");
  mask-image: url("../../images/close.svg");
  height: 31px;
  width: 31px;
  background-color: #fff;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
@media only screen and (max-width: 370px) {
  .site-header .header-content .header-main-menu .menu-button-close .close-image {
    height: 27px;
    width: 27px;
  }
}
.site-header .header-content .header-main-menu .menu-button-close .close-image:hover {
  -webkit-animation: rotating 0.5s 0.1s ease-out;
  animation: rotating 0.5s 0.1s ease-out;
}
.site-header .header-content .header-main-menu .all-products-nav {
  position: absolute;
  display: flex;
  width: 100%;
  top: 100%;
  right: 0;
  background-color: #fff;
  z-index: 10000;
  padding: 25px 40px 145px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1250px) {
  .site-header .header-content .header-main-menu .all-products-nav {
    padding: 30px 30px 20px;
  }
}
.site-header .header-content .header-main-menu .all-products-nav .single-el-col {
  display: flex;
  flex-direction: column;
}
.site-header .header-content .header-main-menu .all-products-nav .dual-el-col {
  display: flex;
  flex-direction: column;
}
.site-header .header-content .header-main-menu .all-products-nav .single-el-col, .site-header .header-content .header-main-menu .all-products-nav .dual-el-col {
  margin-right: auto;
  padding-right: 15px;
}
@media only screen and (max-width: 1365px) {
  .site-header .header-content .header-main-menu .all-products-nav .single-el-col, .site-header .header-content .header-main-menu .all-products-nav .dual-el-col {
    width: 25%;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header .header-content .header-main-menu .all-products-nav .single-el-col, .site-header .header-content .header-main-menu .all-products-nav .dual-el-col {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .site-header .header-content .header-main-menu .all-products-nav .single-el-col, .site-header .header-content .header-main-menu .all-products-nav .dual-el-col {
    width: 100%;
  }
}
.site-header .header-content .header-main-menu .all-products-nav .single-category {
  margin-bottom: 15px;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 {
  font-weight: 600;
  color: #000000;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a {
  text-decoration: none;
  transition: all 0.2s linear;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a.current-menu-item, .site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a:hover {
  color: #565656;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a.current-menu-item:after, .site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a:hover:after {
  background-color: #565656;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-title h2 a:after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 124px;
  height: 4px;
  background-color: #000000;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-items ul {
  list-style: none;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-items ul li {
  margin-bottom: 0;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-items ul li a {
  font-size: 14px;
  color: #525252;
  line-height: 21px;
  text-decoration: underline transparent;
  transition: all 0.2s linear;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-items ul li a:hover {
  color: #000000;
  text-decoration: underline #000000;
}
.site-header .header-content .header-main-menu .all-products-nav .single-category .category-items ul li.current-menu-item a {
  color: #000000 !important;
  text-decoration: underline #000000;
}
.site-header .header-content .header-main-menu .all-brands-nav {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  top: 100%;
  right: 0;
  background-color: #fff;
  z-index: 10000;
  padding: 35px 65px 20px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1500px) {
  .site-header .header-content .header-main-menu .all-brands-nav {
    padding: 35px 50px 20px;
  }
}
@media only screen and (max-width: 1250px) {
  .site-header .header-content .header-main-menu .all-brands-nav {
    padding: 35px 30px 20px;
  }
}
@media screen and (min-width: 1367px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element {
    width: calc((100% - 600px) / 6.001);
    margin: 0 120px 30px 0;
  }
}
@media screen and (max-width: 1367px) and (min-width: 1024px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element {
    width: calc((100% - 300px) / 6.001);
    margin: 0 60px 30px 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 767px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element {
    width: calc((100% - 240px) / 3.001);
    margin: 0 120px 30px 0;
  }
}
@media screen and (max-width: 767px) and (min-width: 500px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element {
    width: calc((100% - 120px) / 3.001);
    margin: 0 60px 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element {
    width: calc((100% - 35px) / 2.001);
    margin: 0 35px 35px 0;
  }
}
@media screen and (min-width: 1367px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element:nth-of-type(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .site-header .header-content .header-main-menu .all-brands-nav .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}
.site-header .header-content .header-main-menu .all-brands-nav .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.site-header .header-content .header-main-menu .all-brands-nav .single-brand {
  transition: all 0.2s;
}
.site-header .header-content .header-main-menu .all-brands-nav .single-brand:hover {
  opacity: 0.7;
}
.site-header .header-content .header-main-menu .all-brands-nav .single-brand .image-wrapper {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.site-header .header-content .header-main-menu .all-brands-nav .single-brand .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.site-header .header-content .header-main-menu .all-brands-nav .single-brand .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header .header-content .header-main-menu .has-children-mega-menu > a .mega-menu-bridge {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 75px;
  height: 200px;
  display: none;
}
.site-header .header-content .header-main-menu .has-children-mega-menu:hover > a {
  color: #6c6c6c;
}
.site-header .header-content .header-main-menu .has-children-mega-menu:hover > a:before, .site-header .header-content .header-main-menu .has-children-mega-menu:hover > a:after {
  width: 100%;
  opacity: 1;
}
@media only screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .has-children-mega-menu:hover > a .mega-menu-bridge {
    display: block;
  }
}
.site-header .header-content .header-main-menu .has-children-mega-menu:hover .custom-children-mega-menu {
  visibility: visible;
  opacity: 1;
}
.site-header .header-content .header-main-menu .custom-children-mega-menu {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  top: 100%;
  right: 0;
  background-color: #fff;
  z-index: 10000;
  padding: 25px 40px 25px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 1250px) {
  .site-header .header-content .header-main-menu .custom-children-mega-menu {
    padding: 20px 30px 20px;
  }
}
.site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega li {
  margin: 0 30px 15px 0;
}
@media only screen and (max-width: 767px) {
  .site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega li {
    margin: 0 15px 10px 0;
  }
}
.site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega li a {
  font-size: 15px;
  color: #525252;
  line-height: 21px;
  text-decoration: underline transparent;
  transition: all 0.2s linear;
  white-space: nowrap;
}
.site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega li a:hover {
  color: #000000;
  text-decoration: underline #000000;
}
.site-header .header-content .header-main-menu .custom-children-mega-menu .sub-menu-mega li.current-menu-item a {
  color: #000000 !important;
  text-decoration: underline #000000;
}
@media screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .all-brands-nav-mobile-outer {
    display: none !important;
  }
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .fantom-space {
  display: block;
  height: 7px;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner {
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand {
  transition: all 0.2s;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand:hover {
  opacity: 0.7;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand .image-wrapper {
  position: relative;
  display: inline-block;
  height: 100px;
  width: 100%;
  max-width: 230px;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand .image-wrapper:before, .site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand .image-wrapper:after {
  display: none;
}
.site-header .header-content .header-main-menu .all-brands-nav-mobile-outer .all-brands-nav-mobile-inner .single-brand .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1026px) {
  .site-header .header-content .header-main-menu .all-products-nav-mobile-outer {
    display: none !important;
  }
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .fantom-space {
  display: block;
  height: 7px;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner {
  background-color: #000;
  width: 100%;
  padding: 20px 10px;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .dual-el-col {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .dual-el-col:last-child {
  margin-bottom: 0;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category {
  margin-bottom: 15px;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category .category-title h2 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category .category-title h2 a {
  color: #fff;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category .category-title h2 a.current-menu-item {
  color: #6c6c6c;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category .category-title h2 a:after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category li {
  list-style: none;
}
.site-header .header-content .header-main-menu .all-products-nav-mobile-outer .all-products-nav-mobile-inner .single-category .category-items ul li a {
  font-size: 15px;
  padding: 2px 0;
  display: block;
  color: #fff;
}
.site-header .header-content .header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media only screen and (max-width: 540px) {
  .site-header .header-content .header-right {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 400px) {
  .site-header .header-content .header-right {
    margin-right: 40px;
  }
}
.site-header .header-content .header-right .lang-nav {
  margin-right: 30px;
}
@media only screen and (max-width: 540px) {
  .site-header .header-content .header-right .lang-nav {
    margin-right: 15px;
  }
}
.site-header .header-content .header-right .lang-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.site-header .header-content .header-right .lang-nav ul li {
  margin-right: 10px;
}
.site-header .header-content .header-right .lang-nav ul li a {
  color: #000000;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.site-header .header-content .header-right .lang-nav ul li a.active, .site-header .header-content .header-right .lang-nav ul li a:hover {
  color: #6c6c6c;
}

.search-input-wrapper .search-form {
  display: flex;
  align-items: center;
  width: 180px;
}
@media only screen and (max-width: 540px) {
  .search-input-wrapper .search-form {
    width: unset;
  }
}
.search-input-wrapper .search-form label {
  position: relative;
  display: flex;
  width: 100%;
  height: 23px;
}
@media only screen and (max-width: 540px) {
  .search-input-wrapper .search-form label {
    margin-right: 10px;
    border-bottom: 1px solid #000000;
  }
}
.search-input-wrapper .search-form label .search-input {
  font-size: 14px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 300;
  color: #000000;
  background: transparent;
  border: none;
  border-left: 1px solid #000000;
  outline: none;
  padding: 0 22px;
  width: inherit;
  height: 100%;
}
@media only screen and (max-width: 540px) {
  .search-input-wrapper .search-form label .search-input {
    padding: 0;
    border-left: none;
  }
}
.search-input-wrapper .search-form label .search-query-too-short {
  position: absolute;
  bottom: -5px;
  left: 0;
  font-size: 11px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #c72f2f;
  transform: translateY(100%);
}
.search-input-wrapper .search-form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}
.search-input-wrapper .search-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;
}
.search-input-wrapper .search-form ::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;
}
.search-input-wrapper .search-form button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.search-input-wrapper .search-form button:focus {
  outline: none;
}
.search-input-wrapper .search-form .search-submit img {
  width: 27px;
  max-width: unset;
  height: 27px;
  object-fit: contain;
  cursor: pointer;
}
.search-input-wrapper .search-form .search-submit:hover {
  -webkit-animation: bounce10 0.5s linear infinite;
  animation: bounce10 0.5s linear infinite;
}
@media only screen and (max-width: 540px) {
  .search-input-wrapper.search-input-desktop {
    display: none;
  }
}
@media only screen and (min-width: 541px) {
  .search-input-wrapper.search-input-mobile {
    display: none;
  }
}

.mobileMenuActive .site-header .header-content .header-main-menu .header-center .mobile-menu-bg {
  visibility: visible;
  opacity: 1;
}
.mobileMenuActive .site-header .header-content .header-main-menu .header-center .header-center-content {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  overflow: auto;
  overflow-x: hidden;
}

.search-form-modal .modal-dialog {
  max-width: 600px;
  border-radius: 0;
}
.search-form-modal .modal-dialog .modal-content {
  border-radius: 0;
  border: none;
}
.search-form-modal .modal-dialog .modal-content .modal-header {
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: none;
}
.search-form-modal .modal-dialog .modal-content .modal-header .close-modal-svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.2s linear;
  height: 16px;
  width: 16px;
  background-color: #000;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.search-form-modal .modal-dialog .modal-content .modal-header .close-modal-svg:hover {
  background-color: #000;
}
.search-form-modal .modal-dialog .modal-content .modal-body {
  padding: 40px 40px 25px;
}
@media only screen and (max-width: 767px) {
  .search-form-modal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
.search-form-modal .modal-dialog .modal-content .modal-footer {
  padding: 0;
  margin: 0;
  border: none;
}
.search-form-modal .modal-dialog .modal-content .modal-footer .btn {
  font-size: 14px;
  font-weight: 700;
  outline: none !important;
  box-shadow: none !important;
}

@media only screen and (max-width: 1025px) {
  .mobile-menu-chevron {
    position: absolute;
    right: 20px;
    top: 22px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .mobile-menu-chevron:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-mask-image: url("../../images/menu-arrow-down.svg");
    mask-image: url("../../images/menu-arrow-down.svg");
    height: 12px;
    width: 12px;
    background-color: #fff;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    transition: transform 0.2s ease-in-out;
  }
  .mobile-menu-chevron.expanded:after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
@media only screen and (min-width: 1026px) {
  .mobile-menu-chevron {
    display: none;
  }
}

.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a {
  position: relative;
}
.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:hover:before, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:hover:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:hover:before, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:hover:after {
  width: 100%;
  opacity: 1;
}
.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:after {
  left: 0;
  background-color: #6c6c6c;
}
.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:before, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:before, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu li a:hover, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu li a:hover {
  color: #6c6c6c;
}
.footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .active-link a:before, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .active-link a:after, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .current-menu-item a:before, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .current-menu-item a:after, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .current-menu-parent a:before, .footer .content .boxes .boxes-elem .bottom-menu-col1-class .menu .current-menu-parent a:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .active-link a:before, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .active-link a:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .current-menu-item a:before, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .current-menu-item a:after, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .current-menu-parent a:before, .footer .content .boxes .boxes-elem .bottom-menu-col2-class .menu .current-menu-parent a:after {
  width: 100%;
  opacity: 1;
}
.footer .content .boxes .boxes-elem.elem3 .boxes-elem-titleLogo {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.footer .content .boxes .contacts a {
  transition: all 0.15s linear;
}
.footer .content .boxes .contacts a:hover {
  color: #6c6c6c;
}

.single-product-card {
  position: relative;
  display: flex;
  justify-content: center;
  border: 1px solid #e7e7e7;
  transition: all 0.2s linear;
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.single-product-card:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.single-product-card .single-product-card-link {
  display: flex;
  justify-content: center;
  padding: 50px 25px 40px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .single-product-card .single-product-card-link {
    padding: 25px;
  }
}
.single-product-card .single-product-card-link .category-item-content {
  width: 100%;
}
.single-product-card .single-product-card-link .category-item-content .image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.single-product-card .single-product-card-link .category-item-content .image-wrapper img {
  height: 263px;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 700px) {
  .single-product-card .single-product-card-link .category-item-content .image-wrapper img {
    height: 200px;
  }
}
.single-product-card .single-product-card-link .category-item-content .text-wrapper {
  text-align: center;
  margin-bottom: 67px;
}
.single-product-card .single-product-card-link .category-item-content .text-wrapper .product-card-title {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.single-product-card .single-product-card-link .category-item-content .text-wrapper .product-card-description {
  font-size: 15px;
  font-weight: 400;
  color: #3f3f3f;
  margin: 0 0 3px;
}
.single-product-card .single-product-card-link .category-item-content .text-wrapper .product-card-price {
  font-size: 18px;
  font-weight: 700;
}
.single-product-card .product-card-variation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 38px;
}
.single-product-card .product-card-variation .single-variation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  background-color: #b8b8b8;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 13px;
  text-align: center;
  outline: none !important;
  border: none !important;
  transition: all 0.2s linear;
}
.single-product-card .product-card-variation .single-variation.active {
  background-color: #000;
}
.single-product-card .product-card-variation .single-variation:focus {
  outline: none !important;
  border: none !important;
}
.single-product-card .product-card-variation .single-variation:hover {
  background-color: #000;
}
.single-product-card .product-card-variation .single-variation:not(:last-child) {
  margin-right: 11px;
}
.single-product-card .product-card-variation .single-variation .amount {
  display: block;
  font-weight: 700;
}
.single-product-card .product-card-variation .single-variation .measurement {
  display: block;
  font-weight: 400;
}
.single-product-card .product-card-preloader-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.55);
  z-index: -10;
}
.single-product-card .product-card-preloader-wrapper .product-card-preloader {
  width: 45px;
  height: 45px;
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}
.single-product-card .product-card-preloader-wrapper .product-card-preloader img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.single-product-card.loading .product-card-preloader-wrapper {
  display: flex;
  z-index: 10;
}
.single-product-card.loading .tags, .single-product-card.loading .onsale {
  display: none;
}

.single-promotion-card {
  position: relative;
  transition: all 0.2s linear;
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.single-promotion-card:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.single-promotion-card.borders {
  border: 1px solid #e7e7e7;
}
.single-promotion-card a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.single-promotion-card a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: top;
}

.single-post-card {
  display: flex;
  min-height: 362px;
  width: 100%;
  margin-bottom: 40px;
  background-color: #f5f5f5;
  text-decoration: none !important;
}
@media screen and (max-width: 900px) {
  .single-post-card {
    flex-wrap: wrap;
  }
}
.single-post-card:hover .image-wrapper img {
  transform: scale(1.1);
}
.single-post-card .image-wrapper {
  height: auto;
  width: 35.57%;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .single-post-card .image-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .single-post-card .image-wrapper {
    height: 362px;
  }
}
.single-post-card .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.single-post-card .text-wrapper {
  padding: 80px 120px 80px 75px;
  width: 64.43%;
}
@media screen and (max-width: 1250px) {
  .single-post-card .text-wrapper {
    padding: 55px;
  }
}
@media screen and (max-width: 900px) {
  .single-post-card .text-wrapper {
    width: 100%;
    padding: 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .single-post-card .text-wrapper {
    padding: 37px 33px 50px;
  }
}
.single-post-card .text-wrapper .single-post-card-title {
  font-family: "Acumin Pro", sans-serif;
  font-size: 29px;
  font-weight: 600;
  color: #000000;
  line-height: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .single-post-card .text-wrapper .single-post-card-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .single-post-card .text-wrapper .single-post-card-title {
    font-size: 24px;
    line-height: 34px;
  }
}
.single-post-card .text-wrapper .single-post-card-excerpt {
  font-size: 17px;
  margin: 0;
}

.single-brand-card {
  display: flex;
  min-height: 362px;
  width: 100%;
  margin-bottom: 40px;
  background-color: #f5f5f5;
  text-decoration: none !important;
}
@media screen and (max-width: 900px) {
  .single-brand-card {
    flex-wrap: wrap;
  }
}
.single-brand-card .image-wrapper {
  position: relative;
  padding-top: 25.86%;
  height: auto;
  width: 35.57%;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .single-brand-card .image-wrapper {
    width: 100%;
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 600px) {
  .single-brand-card .image-wrapper {
    height: 362px;
  }
}
.single-brand-card .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}
.single-brand-card .text-wrapper {
  padding: 80px 120px 80px 75px;
  width: 64.43%;
}
@media screen and (max-width: 1250px) {
  .single-brand-card .text-wrapper {
    padding: 55px;
  }
}
@media screen and (max-width: 900px) {
  .single-brand-card .text-wrapper {
    width: 100%;
    padding: 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .single-brand-card .text-wrapper {
    padding: 37px 33px 50px;
  }
}
.single-brand-card .text-wrapper .single-post-card-title {
  font-family: "Acumin Pro", sans-serif;
  font-size: 29px;
  font-weight: 600;
  color: #000000;
  line-height: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .single-brand-card .text-wrapper .single-post-card-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .single-brand-card .text-wrapper .single-post-card-title {
    font-size: 24px;
    line-height: 34px;
  }
}
.single-brand-card .text-wrapper .single-brand-card-subtitle {
  font-size: 18px;
}
.single-brand-card .text-wrapper .single-post-card-excerpt {
  font-size: 17px;
  margin: 0;
}
.single-brand-card .text-wrapper .button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.single-brand-card .text-wrapper .button-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  margin: 0;
  height: auto;
  font-size: 16px;
  line-height: 1;
}

.image-modal-window .modal {
  padding: 0 !important;
  overflow-y: scroll;
  text-align: center;
}
.image-modal-window .modal.show {
  display: flex !important;
  display: -webkit-flex !important;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-dialog {
  max-width: 1500px;
  background-color: transparent;
  margin: 0;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 15px !important;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description {
  font-size: 16px;
  max-height: 72px;
  padding: 0 15px;
  margin: 7.5px 0;
  color: #fff;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar {
  width: 5px;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar-track {
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .gallery-slide-description::-webkit-scrollbar-thumb {
  background-color: #000;
}
.image-modal-window .modal-dialog .modal-content .slide-image, .image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  max-height: 80vh;
  max-width: 100%;
  padding: 7.5px;
  object-fit: contain;
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  width: auto;
  height: auto;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 100%;
  height: 800px;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}
.image-modal-window .modal-dialog .modal-content .carousel-inner {
  background-color: transparent !important;
}
.image-modal-window .modal-dialog .modal-content .carousel-item {
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 50px;
  height: 50px;
  padding: 10px;
  font-size: 20px;
  background-color: #000;
  color: #fff;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev img, .image-modal-window .carousel-control-next img {
  height: 100%;
}
.image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev {
  margin-left: 10px;
}
.image-modal-window .carousel-control-next {
  margin-right: 10px;
}
.image-modal-window .modal-cross {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #000;
  opacity: 0.6;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s linear;
}
.image-modal-window .modal-cross img {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross:hover {
  opacity: 1;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

@media screen and (max-width: 1200px) {
  .image-modal-window .modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 1024px) {
  .image-modal-window .modal {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .image-modal-window .align-modal-helper {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .image-modal-window .modal {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .image-modal-window .modal-dialog .modal-content img {
    padding: 0;
  }
  .image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus {
    opacity: 0.75;
  }
  .image-modal-window .modal-cross {
    opacity: 1;
  }
  .image-modal-window .modal-cross:hover {
    opacity: 1;
  }
  .image-modal-window .modal-cross:focus {
    opacity: 1;
  }
}
.subscription-confirmed-bs-modal .modal-dialog {
  width: auto;
  max-width: 750px;
}
.subscription-confirmed-bs-modal .modal-dialog .modal-content {
  position: relative;
  border: none;
  border-radius: 0;
}
.subscription-confirmed-bs-modal .modal-dialog .modal-content .modal-body {
  padding: 50px 20px;
  text-align: center;
}
.subscription-confirmed-bs-modal .modal-dialog .modal-content .modal-body .subscription-confirmed-close-modal {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 17px;
  width: 17px;
  background-color: #000000;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  border: none !important;
  outline: none !important;
  z-index: 1;
  transition: all 0.2s linear;
}
.subscription-confirmed-bs-modal .modal-dialog .modal-content .modal-body .subscription-confirmed-close-modal:hover {
  transform: scale(1.05);
}
.subscription-confirmed-bs-modal .modal-dialog .modal-content .modal-body .subscription-confirmed-text {
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1025px) {
  .right-sidebar {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.right-sidebar #sidebar-products-slider {
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1025px) {
  .right-sidebar #sidebar-products-slider {
    max-width: 690px;
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 700px) {
  .right-sidebar #sidebar-products-slider {
    max-width: 345px;
  }
}
.right-sidebar #sidebar-products-slider .slick-list {
  padding-top: 10px;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track {
  display: flex !important;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide {
  height: inherit !important;
  vertical-align: middle;
  margin: 0 2px;
  min-height: 538px;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide:focus {
  outline: none;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide.single-promotion-card {
  max-height: 538px;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide.single-promotion-card a img {
  object-fit: cover;
}
.right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide.single-product-card:hover, .right-sidebar #sidebar-products-slider .slick-list .slick-track .slick-slide.single-promotion-card:hover {
  transform: translateY(0);
}
.right-sidebar #sidebar-products-slider .slick-dots {
  margin-top: 20px;
}
@media only screen and (max-width: 1025px) {
  .right-sidebar #sidebar-products-slider .slick-dots {
    justify-content: center;
  }
}
.right-sidebar .sign-up-encouragement-wrapper {
  border: 2px solid #000;
  width: 343px;
  min-height: 404px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1025px) {
  .right-sidebar .sign-up-encouragement-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.right-sidebar .sign-up-encouragement-wrapper .sign-up-encouragement {
  text-align: center;
}
.right-sidebar .sign-up-encouragement-wrapper .sign-up-encouragement .top-text {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 0;
}
.right-sidebar .sign-up-encouragement-wrapper .sign-up-encouragement .middle-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.64;
  margin-bottom: 31px;
  margin-top: 0;
}
.right-sidebar .sign-up-encouragement-wrapper .sign-up-encouragement .bottom-text {
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 46px;
}
.right-sidebar .sign-up-encouragement-wrapper .sign-up-encouragement .button {
  padding: 13px 23px;
  font-size: 16px;
}

.lg-backdrop {
  background-color: #fff;
}
.lg-backdrop.in {
  opacity: 0.5;
}

.lg-outer .lg .lg-inner .lg-item .lg-img-wrap .lg-object {
  height: 580px !important;
}
@media only screen and (max-width: 700px) {
  .lg-outer .lg .lg-inner .lg-item .lg-img-wrap .lg-object {
    height: auto !important;
  }
}
.lg-outer .lg .lg-inner .lg-item .lg-has-html5 .lg-video-play {
  height: 120px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  margin: 0;
}
@media only screen and (max-width: 1365px) {
  .lg-outer .lg .lg-inner .lg-item .lg-has-html5 .lg-video-play {
    height: 60px;
    width: 60px;
  }
}
.lg-outer .lg .lg-inner .lg-item .lg-video img {
  object-fit: cover;
}
.lg-outer .lg .lg-toolbar {
  background: #fff;
  min-height: 60px;
}
.lg-outer .lg .lg-toolbar span, .lg-outer .lg .lg-toolbar a, .lg-outer .lg .lg-toolbar #lg-counter, .lg-outer .lg .lg-toolbar .lg-icon {
  color: #481110;
}
.lg-outer .lg .lg-toolbar span:hover, .lg-outer .lg .lg-toolbar a:hover, .lg-outer .lg .lg-toolbar #lg-counter:hover, .lg-outer .lg .lg-toolbar .lg-icon:hover {
  color: #999;
}
.lg-outer .lg .lg-actions .lg-icon {
  background-color: #481110;
  color: #fff;
  transition: all 0.2s linear;
}
.lg-outer .lg .lg-actions .lg-icon:hover {
  background-color: #999;
}
.lg-outer .lg .lg-thumb-outer {
  background-color: #fff;
  -webkit-box-shadow: 0px -3px 21px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -3px 21px 0px rgba(0, 0, 0, 0.1);
}
.lg-outer .lg .lg-thumb-outer .lg-thumb .lg-thumb-item {
  border: 2px solid #999;
}
.lg-outer .lg .lg-thumb-outer .lg-thumb .lg-thumb-item.active {
  border: 2px solid #481110;
}
.lg-outer .lg .lg-thumb-outer .lg-thumb .lg-thumb-item:hover {
  border: 2px solid rgba(72, 17, 16, 0.7);
}
.lg-outer .lg .lg-thumb-outer .lg-toogle-thumb {
  background-color: #fff;
  color: #481110;
  -webkit-box-shadow: 0px -3px 21px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -3px 21px 0px rgba(0, 0, 0, 0.1);
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #999;
}

.categories-sidebar {
  width: 316px;
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.11);
  padding: 35px 0 30px;
}
@media only screen and (max-width: 1250px) {
  .categories-sidebar {
    width: 290px;
  }
}
@media only screen and (max-width: 1025px) {
  .categories-sidebar {
    display: none !important;
  }
}
.categories-sidebar .accordion .card {
  border: none;
}
.categories-sidebar .accordion .card.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.categories-sidebar .accordion .card.disabled .title-text {
  color: #999;
  cursor: not-allowed;
}
.categories-sidebar .accordion .card .close-icon {
  position: absolute;
  top: 52%;
  right: 15px;
  transform: translateY(-50%);
  height: 13px;
  width: 13px;
  background-color: #121212;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s linear;
}
.categories-sidebar .accordion .card .card-header {
  position: relative;
  background-color: #fff;
  border: none;
  padding: 0 40px 0 30px;
  margin: 0;
}
@media only screen and (max-width: 1250px) {
  .categories-sidebar .accordion .card .card-header {
    padding: 0 30px;
  }
}
.categories-sidebar .accordion .card .card-header .title {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e3e3e3;
  transition: all 0.15s linear;
}
.categories-sidebar .accordion .card .card-header .title .title-text {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 19px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent;
  margin: 0;
  padding: 20px 15px;
}
.categories-sidebar .accordion .card .card-header .title .title-text.title-btn {
  display: flex;
  align-items: center;
}
.categories-sidebar .accordion .card .card-header .title .title-text.title-btn[aria-expanded=true] .close-icon {
  visibility: visible;
  opacity: 1;
}
.categories-sidebar .accordion .card .card-header.opened .title {
  border-bottom: 1px solid #000;
}
.categories-sidebar .accordion .card .card-header.opened .title .title-text.title-btn .close-icon {
  visibility: visible;
  opacity: 1;
}
.categories-sidebar .accordion .card .card-body {
  padding: 15px 0 10px;
}
.categories-sidebar .accordion .card .card-body ul li.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.categories-sidebar .accordion .card .card-body ul li.disabled a, .categories-sidebar .accordion .card .card-body ul li.disabled span {
  color: #999;
  cursor: not-allowed;
}
.categories-sidebar .accordion .card .card-body ul li.disabled:hover {
  background-color: transparent;
}
.categories-sidebar .accordion .card .card-body ul li.disabled:hover a, .categories-sidebar .accordion .card .card-body ul li.disabled:hover span {
  background-color: transparent;
  color: #999;
}
.categories-sidebar .accordion .card .card-body ul li a, .categories-sidebar .accordion .card .card-body ul li span.disabled {
  position: relative;
  display: block;
  width: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
  transition: all 0.15s linear;
}
.categories-sidebar .accordion .card .card-body ul li a.subcategory-toggle[aria-expanded=true] .close-icon, .categories-sidebar .accordion .card .card-body ul li span.disabled.subcategory-toggle[aria-expanded=true] .close-icon {
  visibility: visible;
  opacity: 1;
}
.categories-sidebar .accordion .card .card-body ul li span.subcategory-toggle.disabled {
  cursor: not-allowed;
  color: #999;
}
.categories-sidebar .accordion .card .card-body > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.categories-sidebar .accordion .card .card-body > ul > li {
  margin: 0;
  padding: 0;
  transition: all 0.15s linear;
}
.categories-sidebar .accordion .card .card-body > ul > li:hover > a, .categories-sidebar .accordion .card .card-body > ul > li.active > a {
  background-color: #000000;
  color: #ffffff;
}
.categories-sidebar .accordion .card .card-body > ul > li:hover > a .close-icon, .categories-sidebar .accordion .card .card-body > ul > li.active > a .close-icon {
  background-color: #e9e9e9;
}
.categories-sidebar .accordion .card .card-body > ul > li:hover ul li, .categories-sidebar .accordion .card .card-body > ul > li.active ul li {
  background-color: #f4f4f4;
}
.categories-sidebar .accordion .card .card-body > ul > li > a.subcategory-toggle[aria-expanded=true] {
  background-color: #000000;
  color: #ffffff;
}
.categories-sidebar .accordion .card .card-body > ul > li > a.subcategory-toggle[aria-expanded=true] .close-icon {
  background-color: #e9e9e9;
}
.categories-sidebar .accordion .card .card-body > ul > li > a.subcategory-toggle[aria-expanded=true] + .product-sidebar-subcategory-wrapper {
  background-color: #f4f4f4;
}
.categories-sidebar .accordion .card .card-body > ul > li > a, .categories-sidebar .accordion .card .card-body > ul > li > span.disabled {
  padding: 5px 45px 5px 60px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul:first-child {
  padding-top: 5px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul:last-child {
  padding-bottom: 5px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li:hover > a, .categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li.active > a {
  background-color: #d0d0d0;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > a.subcategory-toggle[aria-expanded=true] {
  background-color: #d0d0d0;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > a, .categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > span.disabled {
  padding: 3px 45px 3px 83px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul:first-child {
  padding-top: 5px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul:last-child {
  padding-bottom: 5px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li {
  position: relative;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li:hover > a, .categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li.active > a {
  background-color: #d0d0d0;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li > a.subcategory-toggle[aria-expanded=true] {
  background-color: #d0d0d0;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li > a, .categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li > span.disabled {
  padding: 3px 45px 3px 108px;
}
.categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li > a:before, .categories-sidebar .accordion .card .card-body > ul > li > .product-sidebar-subcategory-wrapper > ul > li > .product-sidebar-subcategory-wrapper > ul > li > span.disabled:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 84px;
  width: 7px;
  height: 7px;
  background-color: #000000;
  border-radius: 100px;
}
.categories-sidebar .accordion .card:last-child .card-header .title {
  border: none;
}

.categories-dropdown, .simple-selectric-dropdown-wrapper {
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 400px) {
  .categories-dropdown, .simple-selectric-dropdown-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .categories-dropdown .dropdown-content, .simple-selectric-dropdown-wrapper .dropdown-content {
    width: 100%;
  }
}
.categories-dropdown .dropdown-content .selectric-wrapper, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-wrapper {
  width: 230px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
}
@media only screen and (max-width: 400px) {
  .categories-dropdown .dropdown-content .selectric-wrapper, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-wrapper {
    width: calc(100vw - 40px);
  }
}
.categories-dropdown .dropdown-content .selectric-open.selectric-below, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-open.selectric-below {
  border-radius: 0 !important;
}
.categories-dropdown .dropdown-content .selectric-open.selectric-below .selectric-items, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-open.selectric-below .selectric-items {
  box-shadow: none;
  border-radius: 0 !important;
}
.categories-dropdown .dropdown-content .selectric, .simple-selectric-dropdown-wrapper .dropdown-content .selectric {
  padding: 5px 25px 5px 10px;
  border: 2px solid #000;
  background-color: transparent;
  background-image: url("../../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) calc(50% + 1px);
  background-size: 12px auto;
  position: relative;
}
@media only screen and (max-width: 1720px) {
  .categories-dropdown .dropdown-content .selectric, .simple-selectric-dropdown-wrapper .dropdown-content .selectric {
    background-size: 10px auto;
  }
}
.categories-dropdown .dropdown-content .selectric .label, .simple-selectric-dropdown-wrapper .dropdown-content .selectric .label {
  margin: 0;
  line-height: normal;
  height: auto;
  font-family: "Acumin Pro", sans-serif;
  font-size: 15px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
}
.categories-dropdown .dropdown-content .selectric .button, .simple-selectric-dropdown-wrapper .dropdown-content .selectric .button {
  display: none;
}
.categories-dropdown .dropdown-content .selectric-items, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items {
  background-color: #fff;
  border: 2px solid #000;
  border-top: none;
  overflow: hidden;
  border-radius: 0;
  color: #000;
}
.categories-dropdown .dropdown-content .selectric-items li, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items li {
  font-size: 16px;
  color: #000;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 400;
  transition: all 0.2s linear;
  background-color: #fff;
  padding: 7px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.categories-dropdown .dropdown-content .selectric-items li.disabled, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items li.disabled {
  opacity: 0.5;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}
.categories-dropdown .dropdown-content .selectric-items li.disabled:hover, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items li.disabled:hover {
  background-color: #fff;
  color: #999;
}
.categories-dropdown .dropdown-content .selectric-items li:hover, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items li:hover {
  background: #f6f6f6;
  transition: all 0.2s linear;
}
.categories-dropdown .dropdown-content .selectric-items li.highlighted, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items li.highlighted {
  background: #f6f6f6;
}
.categories-dropdown .dropdown-content .selectric-items .selected, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items .selected {
  background: #f6f6f6;
}
.categories-dropdown .dropdown-content .selectric-items .disabled, .simple-selectric-dropdown-wrapper .dropdown-content .selectric-items .disabled {
  display: none;
}
.categories-dropdown .dropdown-separator-wrapper, .simple-selectric-dropdown-wrapper .dropdown-separator-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 3px 0;
}
.categories-dropdown .dropdown-separator-wrapper .dropdown-separator, .simple-selectric-dropdown-wrapper .dropdown-separator-wrapper .dropdown-separator {
  width: 1px;
  height: 6px;
  background-color: #e3e3e3;
}

.categories-dropdown {
  display: none;
}
@media only screen and (max-width: 1025px) {
  .categories-dropdown {
    display: flex;
  }
}

.dropdowns-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 11px;
}
@media only screen and (max-width: 400px) {
  .dropdowns-wrapper {
    margin-right: 0;
  }
}

.simple-selectric-dropdown-wrapper {
  display: flex;
}

.brands-dropdown {
  display: flex;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 12px 18px;
  min-width: 154px;
  min-height: 36px;
  background-color: #000000;
  transition: all 0.15s linear;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:focus,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:focus,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:focus {
  outline: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
  background-color: #000;
  text-decoration: none;
  background-image: none;
  color: #fff;
}

.woocommerce .middle-navigation {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1025px) {
  .woocommerce .middle-navigation {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce .middle-navigation {
    margin-bottom: 30px;
  }
}
.woocommerce .woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 30px;
  margin-right: auto;
}
@media only screen and (max-width: 1025px) {
  .woocommerce .woocommerce-breadcrumb {
    margin-bottom: 15px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-breadcrumb {
    margin-bottom: 25px;
  }
}
.woocommerce .woocommerce-breadcrumb .breadcrumb-delimiter {
  display: block;
  margin: -2px 5px 0;
  -webkit-mask-image: url("../../images/right-arrow-angle.svg");
  mask-image: url("../../images/right-arrow-angle.svg");
  height: 15px;
  width: 15px;
  background-color: #d0d0d0;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a {
  color: #8c8c8c;
  position: relative;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a:hover:before, .woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a:hover:after {
  width: 100%;
  opacity: 1;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a:after {
  left: 0;
  background-color: #8c8c8c;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a:before, .woocommerce .woocommerce-breadcrumb .nmr-crumb:not(:first-child) a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:first-child {
  display: flex;
  align-items: center;
  margin-top: -3px;
}
.woocommerce .woocommerce-breadcrumb .nmr-crumb:first-child a {
  text-decoration: none;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../../images/home.svg");
  background-position: center;
  background-size: cover;
}
.woocommerce .mobile-categories-menu {
  margin-bottom: 15px;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-NoticeGroup,
.woocommerce .woocommerce-notices-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  outline: none;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  min-height: 49px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Acumin Pro", sans-serif;
  width: 100%;
  border: none;
  padding: 6px 27px 6px 72px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner {
    padding: 10px 15px 10px 50px;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner:before {
  content: "";
  display: block !important;
  font-size: 0;
  left: 27px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner:before {
    left: 16px;
  }
}
@media only screen and (max-width: 380px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner:before {
    display: none;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner:last-child,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner:last-child,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner:last-child {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error {
  background-color: #a66062;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error:before {
  top: 20px;
  transform: translateY(-50%);
  -webkit-mask-image: url("../../images/message-error.svg");
  mask-image: url("../../images/message-error.svg");
  height: 24px;
  width: 24px;
  background-color: #000;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error:before {
    height: 20px;
    width: 20px;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error .button,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .button,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .button {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error .button,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .button,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .button {
    margin-left: 0;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error a:not(.button),
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error a:not(.button),
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error a:not(.button) {
  color: #fff;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: all 0.15s linear;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error a:not(.button):hover,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error a:not(.button):hover,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error a:not(.button):hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-success,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-success,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success {
  background-color: #60a676;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-success:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-success:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success:before {
  top: 12px;
  -webkit-mask-image: url("../../images/message-success.svg");
  mask-image: url("../../images/message-success.svg");
  height: 23px;
  width: 23px;
  background-color: #fff;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-success:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-success:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success:before {
    height: 17px;
    width: 17px;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info {
  background-color: #dddddd;
  color: #000000;
  line-height: 1;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info:before {
  top: 13px;
  -webkit-mask-image: url("../../images/message-info.svg");
  mask-image: url("../../images/message-info.svg");
  height: 22px;
  width: 22px;
  background-color: #000;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info:before {
    top: 15px;
    height: 17px;
    width: 17px;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info .button,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info .button,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info .button {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info .button,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info .button,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info .button {
    margin-left: 0;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info:before, .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-success:before, .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-success:before,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success:before,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error:before {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-info:before, .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-success:before, .woocommerce .woocommerce-message .wc-block-components-notice-banner.is-error:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-info:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-success:before,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-info:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success:before,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error:before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner:after,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner:after,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner:after {
    min-height: 37px;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner .button,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner .button,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner .button {
  order: 2;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 12px 18px;
  min-width: 154px;
  min-height: 36px;
  background-color: #000000;
  border-radius: 0;
  margin: 0 0 0 auto;
  float: unset;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner .button,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner .button,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner .button {
    margin: 15px auto 0 0;
    white-space: unset;
  }
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner .button:hover,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner .button:hover,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner .button:hover {
  color: #fff;
  background-color: #000;
  opacity: 0.9;
  animation: black-pulse 1s;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner a,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner a,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner a {
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner a,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner a,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner a {
    padding-left: 0;
  }
}
.woocommerce .woocommerce-message svg,
.woocommerce .woocommerce-NoticeGroup svg,
.woocommerce .woocommerce-notices-wrapper svg {
  display: none;
}
.woocommerce .woocommerce-message .wc-block-components-notice-banner__content,
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner__content,
.woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner__content {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-message .wc-block-components-notice-banner__content,
  .woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner__content,
  .woocommerce .woocommerce-notices-wrapper .wc-block-components-notice-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error {
  padding: 10px 27px 10px 72px;
}
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content {
  flex-direction: column;
  align-items: flex-start;
}
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content > * {
  margin: 0;
}
.woocommerce .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul {
  list-style: none;
}
.woocommerce a.remove {
  width: 14px;
  height: 16px;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.woocommerce a.remove:after {
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  background-image: url("../../images/delete.svg");
  background-size: cover;
  background-position: center;
}
.woocommerce a.remove:hover, .woocommerce a.remove:focus {
  background-color: unset;
}
.woocommerce a.remove:hover:after, .woocommerce a.remove:focus:after {
  opacity: 0.7;
}
.woocommerce table#cart-totals-table.shop_table {
  width: auto;
  margin: 0 0 15px auto;
}
.woocommerce table#cart-totals-table.shop_table tbody .amount-left-for-free-shipping th {
  width: 100%;
}
.woocommerce table#cart-totals-table.shop_table tbody .amount-left-for-free-shipping td {
  font-weight: 400;
}
.woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner {
  display: flex;
}
.woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .order-total-num .amount {
  font-weight: 600;
}
.woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .order-total-num .amount .woocommerce-Price-currencySymbol {
  font-weight: 600;
}
.woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .tax-total, .woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .tax-total {
  display: flex;
  margin-left: 3px;
  font-weight: 400;
}
.woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .tax-total .tax-name, .woocommerce table#cart-totals-table.shop_table tbody .order-total td .order-total-inner .tax-total .tax-name {
  font-weight: 400;
}
.woocommerce table#cart-totals-table.shop_table tbody .cart-discount .woocommerce-remove-coupon {
  color: #df184b;
}
.woocommerce table#cart-totals-table.shop_table tbody tr {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff !important;
}
.woocommerce table#cart-totals-table.shop_table tbody tr:not(:last-child) {
  margin-bottom: 5px;
}
.woocommerce table#cart-totals-table.shop_table tbody tr th {
  font-weight: 600;
  font-size: 15px;
  margin: 0 3px 0 0;
  padding: 0;
  border: unset;
  text-align: right;
}
.woocommerce table#cart-totals-table.shop_table tbody tr th:after {
  content: ":";
}
.woocommerce table#cart-totals-table.shop_table tbody tr td {
  border: none !important;
  font-size: 15px;
  padding: 0;
}
.woocommerce .default-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.woocommerce .default-table-wrapper table {
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .woocommerce .default-table-wrapper table {
    min-width: 500px;
    margin-bottom: 15px;
  }
}
.woocommerce .default-table-wrapper .swipe-wrapper {
  display: none;
  margin: 0 auto;
  height: 35px;
  width: 35px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .woocommerce .default-table-wrapper .swipe-wrapper {
    display: block;
  }
}
.woocommerce .default-table-wrapper .swipe-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.woocommerce table.default-table tbody tr:nth-of-type(2n) {
  background-color: #fff;
}
.woocommerce table.default-table tbody tr td {
  border-color: #e3e3e3;
}
@media only screen and (max-width: 1025px) {
  .woocommerce table.default-table tbody tr td {
    min-width: unset;
  }
}
.woocommerce table.default-table tbody tr td:first-child {
  border-top: 1px solid #e3e3e3;
}
.woocommerce table.default-table tbody tr td a:not(.button) {
  border-bottom: 1px solid transparent;
  transition: all 0.2s linear;
}
.woocommerce table.default-table tbody tr td a:not(.button):hover {
  color: #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
}
.woocommerce table.default-table tfoot tr:nth-of-type(2n) {
  background-color: #fff;
}
.woocommerce table.default-table tfoot tr th {
  border: 1px solid #e3e3e3;
}
@media only screen and (min-width: 1025px) {
  .woocommerce .show-password-input {
    display: none;
  }
}
.woocommerce .woocommerce-password-hint {
  display: none !important;
}
.woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled] {
  color: #fff;
  opacity: 0.8;
  padding: 22px 37px;
}
.woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover {
  color: #fff;
  background-color: #000;
  opacity: 0.8;
  animation: none;
}
.woocommerce .lost_reset_password .form-row {
  display: flex;
  flex-direction: column;
}
.woocommerce .lost_reset_password .form-row label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}
.woocommerce .lost_reset_password .form-row input {
  height: 48px;
  border: 1px solid #EAEAEA;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: unset;
  width: 100%;
  max-width: 300px;
  margin: 0;
  outline: 0;
  line-height: normal;
}
.woocommerce .lost_reset_password button.button {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
  padding: 10.5px 22px 10.5px 22px;
  line-height: unset;
  margin-top: 20px;
}
.woocommerce .lost_reset_password button.button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}
.woocommerce .lost_reset_password button.button.disabled, .woocommerce .lost_reset_password button.button:disabled, .woocommerce .lost_reset_password button.button:disabled[disabled] {
  padding: 10.5px 22px 10.5px 22px;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 540px) {
  .woocommerce nav.woocommerce-pagination ul li {
    padding: 0 8px 8px;
  }
}

.tags {
  width: 108px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -7px;
  left: 27px;
  transition: all 0.2s linear;
}
.tags a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
.tags:hover a {
  color: #fff;
}
.tags.tag-new {
  background-color: #df184b;
}
.tags.tag-new a {
  font-size: 17px;
}
.tags.tag-new:hover {
  background-color: #E5466E;
}
.tags.tag-featured {
  background-color: #1cbd99;
}
.tags.tag-featured a {
  font-size: 14px;
}
.tags.tag-featured:hover {
  background-color: #49CAAD;
}

.woocommerce span.onsale, span.onsale {
  position: absolute;
  top: -7px;
  left: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 45px;
  min-height: unset;
  min-width: unset;
  font-size: 22px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  color: #fff;
  padding: 0;
  background-color: #000000;
  border-radius: unset;
  z-index: 1;
}

.checkout-inline-error-message {
  display: none;
}

.featured-categories {
  margin-bottom: 85px;
}
@media screen and (max-width: 700px) {
  .featured-categories {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 700px) {
  .featured-categories .view-more {
    margin-bottom: 35px;
  }
}
.featured-categories .carousel-container .product-categories {
  width: calc(100% + 6px);
  margin-left: -3px;
}
@media only screen and (max-width: 520px) {
  .featured-categories .carousel-container .product-categories {
    width: calc(100% + 3px);
    margin-left: -1.5px;
  }
}
@media only screen and (max-width: 400px) {
  .featured-categories .carousel-container .product-categories .slick-list {
    padding: 0 41% 0 0 !important;
  }
}
.featured-categories .carousel-container .product-categories .category-link {
  height: 591px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 3px;
}
@media only screen and (max-width: 1365px) {
  .featured-categories .carousel-container .product-categories .category-link {
    height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .featured-categories .carousel-container .product-categories .category-link {
    height: 390px;
  }
}
@media only screen and (max-width: 520px) {
  .featured-categories .carousel-container .product-categories .category-link {
    height: 374px;
    margin: 0 1.5px;
  }
}
.featured-categories .carousel-container .product-categories .category-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: bottom;
}
.featured-categories .carousel-container .product-categories .category-link .category-link-item {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center top;
  background-size: cover;
}
.featured-categories .carousel-container .product-categories .category-link .category-link-item:hover .image-wrapper img {
  transform: scale(1.2);
}
.featured-categories .carousel-container .product-categories .category-link .category-link-item .category-link-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.featured-categories .carousel-container .product-categories .category-link .category-link-item .image-wrapper img {
  position: absolute;
  transition: 0.5s ease;
}
.featured-categories .carousel-container .product-categories .category-link .category-link-item .category-title {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 38px;
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  z-index: 5;
}
@media only screen and (max-width: 1365px) {
  .featured-categories .carousel-container .product-categories .category-link .category-link-item .category-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 520px) {
  .featured-categories .carousel-container .product-categories .category-link .category-link-item .category-title {
    padding-left: 25px;
    bottom: 25px;
  }
}
@media only screen and (max-width: 450px) {
  .featured-categories .carousel-container .product-categories .category-link .category-link-item .category-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-categories .swipe-icon {
    display: block;
  }
}
.featured-categories .additional-featured-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7px;
}
@media only screen and (max-width: 767px) {
  .featured-categories .additional-featured-categories {
    margin-top: 19px;
  }
}
@media screen and (min-width: 767px) {
  .featured-categories .additional-featured-categories .single-element {
    width: calc((100% - 7px) / 2);
    margin: 0 7px 7px 0;
  }
}
@media screen and (max-width: 767px) {
  .featured-categories .additional-featured-categories .single-element {
    width: 100%;
    margin: 0 0 7px;
  }
}
.featured-categories .additional-featured-categories .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media screen and (min-width: 767px) {
  .featured-categories .additional-featured-categories .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}
.featured-categories .additional-featured-categories .single-additional-featured-category {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 237px;
  border: 2px solid #000000;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 1024px) {
  .featured-categories .additional-featured-categories .single-additional-featured-category {
    min-height: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-categories .additional-featured-categories .single-additional-featured-category {
    min-height: 130px;
  }
}
.featured-categories .additional-featured-categories .single-additional-featured-category:hover {
  background-color: #f5f5f5;
}
.featured-categories .additional-featured-categories .single-additional-featured-category .image-wrapper {
  height: 50px;
  width: 50px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .featured-categories .additional-featured-categories .single-additional-featured-category .image-wrapper {
    height: 40px;
    width: 40px;
  }
}
.featured-categories .additional-featured-categories .single-additional-featured-category .image-wrapper img {
  object-fit: contain;
}
.featured-categories .additional-featured-categories .single-additional-featured-category .text p {
  font-size: 30px;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .featured-categories .additional-featured-categories .single-additional-featured-category .text p {
    font-size: 25px;
  }
}

.featured-products {
  margin-bottom: 90px;
}
@media screen and (max-width: 700px) {
  .featured-products {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 700px) {
  .featured-products .view-more {
    margin-bottom: 20px;
  }
}
.featured-products .exploded-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 1250px) {
  .featured-products .exploded-carousel {
    display: none;
  }
}
@media screen and (min-width: 1250px) {
  .featured-products .exploded-carousel .single-element {
    width: calc((100% - 21px) / 4.001);
    margin: 0 7px 55px 0;
  }
}
.featured-products .exploded-carousel .single-element:nth-of-type(4n) {
  margin-right: 0;
}
.featured-products .exploded-carousel .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.featured-products .carousel-container {
  margin-bottom: 40px;
}
@media screen and (min-width: 1251px) {
  .featured-products .carousel-container {
    display: none;
  }
}
.featured-products .carousel-container .slick-carousel {
  max-width: 100%;
}
.featured-products .carousel-container .slick-carousel .slick-list {
  padding-top: 20px;
}
.featured-products .carousel-container .slick-carousel .slick-list .slick-track {
  display: flex !important;
}
.featured-products .carousel-container .slick-carousel .slick-list .slick-track .slick-slide {
  height: inherit !important;
  vertical-align: middle;
  margin: 0 4px;
}
.featured-products .carousel-container .slick-carousel .slick-list .slick-track .slick-slide:focus {
  outline: none;
}
.modal-minicart {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #fff;
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.11);
  color: #000;
  z-index: 10000;
  padding: 30px 13px 30px 27px;
  width: 345px;
  min-height: unset;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 380px) {
  .modal-minicart {
    padding: 25px 12px;
    width: calc(100vw - 40px);
  }
}
.modal-minicart .modal-minicart-top-area {
  margin-bottom: 15px;
}
.modal-minicart .modal-minicart-top-area .total {
  font-size: 15px;
  margin: 0 0 0 15px;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart {
  padding-left: 0;
  padding-right: 7px;
  margin: 0 0 27px;
  max-height: 338px;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  border-bottom: 1px solid #e3e3e3;
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .remove-item-mini-cart {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  color: transparent;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .remove-item-mini-cart:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 9px;
  right: 0;
  background-image: url("../../images/delete.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 12px;
  transition: all 0.15s linear;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .remove-item-mini-cart:hover:before {
  opacity: 0.7;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link {
  display: flex;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-img {
  min-width: 78px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 1px solid #e7e7e7;
  padding: 10px;
}
@media (max-width: 380px) {
  .modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-img {
    min-width: 60px;
    height: 60px;
  }
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-img img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-details .cart-item-name {
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-details .short-description {
  font-size: 12px;
  color: #3f3f3f;
  text-transform: none;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link .mini-cart-product-details .measurement {
  font-size: 12px;
  font-weight: 600;
}
.modal-minicart .modal-minicart-content ul.woocommerce-mini-cart .woocommerce-mini-cart-item .mini-cart-product-link:hover .mini-cart-product-details .cart-item-name {
  color: #6c6c6c;
}
.modal-minicart .modal-minicart-content .woocommerce-mini-cart__empty-message {
  margin: 30px 0 0;
}
.modal-minicart .checkout-btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 10px 0 0;
}
.modal-minicart .checkout-btn-wrapper .button {
  margin-bottom: 0;
}
.modal-minicart .modal-minicart-link:before {
  transition: all 0.2s linear;
}
.modal-minicart .modal-minicart-link:hover {
  color: #6c6c6c;
}
.modal-minicart .modal-minicart-link:hover:before {
  background-color: #6c6c6c;
}

.wishlist-mini-cart .btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.wishlist-mini-cart .btn-wrapper .add-all-items-to-cart {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
}
.wishlist-mini-cart .btn-wrapper .add-all-items-to-cart:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}

.cookies {
  max-width: 770px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.cookies .cookies-inner {
  background-color: #ffffff;
  box-shadow: 0 0 23px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin: 0 15px;
}
.cookies .cookies-content {
  margin: 0 15px 0 0;
  font-size: 14px;
}
.cookies .cookies-content a {
  color: #6c6c6c;
  text-decoration: none;
  border-bottom: 1px solid #6c6c6c;
}
.cookies .cookies-content a:hover {
  color: #6c6c6c;
}
.cookies .cookies-button a {
  color: #fff;
  font-size: 14px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  background-color: #000;
  padding: 13px 20px;
  width: fit-content;
  border-radius: 32px;
}
.cookies .cookies-button-mobile {
  display: none !important;
}

@media screen and (max-width: 576px) {
  .cookies .cookies-inner {
    display: block !important;
  }
  .cookies .cookies-content {
    margin: 0;
    font-size: 11px;
  }
  .cookies .cookies-button-desktop {
    display: none !important;
  }
  .cookies .cookies-button-mobile {
    display: block !important;
    float: left;
    margin-right: 8px;
  }
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-details-product-title {
  font-size: 18px;
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form {
  flex-wrap: wrap;
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form .quantity {
  display: flex;
  align-items: center;
  margin: 0 auto 10px;
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form .quantity button.sign {
  width: 37px;
  height: 37px;
  font-size: 30px;
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form .quantity .qty {
  height: 37px;
  font-size: 20px;
}
.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details .dgwt-wcas-details-space .dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form .add_to_cart_inline {
  margin: 0 auto;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .woocommerce-Price-amount {
  display: none;
}

.dgwt-wcas-suggestions-wrapp {
  z-index: 2147483643 !important;
}

.dgwt-wcas-details-wrapp {
  z-index: 2147483642 !important;
}

.dgwt-wcas-darkened-overlay {
  z-index: 2147483641 !important;
}

body > jdiv {
  z-index: 2147483640 !important;
}

.home-page .top-slider {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.home-page .top-slider .top-slider-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .top-slider .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}
.home-page .top-slider .content .top-slider-content {
  padding: 42px 0;
  width: auto;
  text-align: center;
}
.home-page .top-slider .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading {
  font-size: 30px;
  line-height: 44px;
  position: relative;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading {
    line-height: 34px;
    font-size: 22px;
  }
}
.home-page .top-slider .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading:before {
  content: "";
  position: absolute;
  display: block;
  width: 163px;
  height: 3px;
  background-color: #000;
  bottom: -15px;
  left: 5px;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading:before {
    bottom: -9px;
  }
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading:before {
    left: 0;
  }
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider .content .top-slider-content .top-slider-main-title .top-slider-main-title-heading {
    font-size: 30px;
    line-height: normal;
  }
}
.home-page .top-slider .content .top-slider-content .top-slider-slider-text {
  font-size: 44px;
  line-height: 65px;
  font-weight: 600;
  margin-left: 4px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider .content .top-slider-content .top-slider-slider-text {
    font-size: 20px;
    line-height: 37px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider .content .top-slider-content .top-slider-slider-text {
    margin-left: 0;
  }
}
.home-page .top-slider .content .top-slider-content .top-slider-slider-text:empty {
  margin: 0;
}
.home-page .top-slider .content .top-slider-content .top-slider-button {
  display: flex;
}
.home-page .top-slider .content .top-slider-banner-bg-mobile {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider .content .top-slider-banner-bg-mobile {
    display: grid;
  }
}
.home-page .top-slider .slick-dots {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.home-page .top-slider .slick-dots li button {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider .slick-dots li button {
    height: 5px;
    width: 46px;
    margin: 0 11px;
  }
}
.home-page .top-slider-standard {
  margin-bottom: 25px;
}
.home-page .top-slider-standard .content {
  padding: 0;
  min-height: 861px;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider-standard .content {
    min-height: 710px;
  }
}
@media only screen and (max-width: 1025px) {
  .home-page .top-slider-standard .content {
    min-height: 590px;
  }
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider-standard .content {
    min-height: 654px;
  }
}
.home-page .top-slider-standard .content .top-slider-content .top-slider-top-title {
  margin-bottom: 25px;
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider-standard .content .top-slider-content .top-slider-top-title {
    margin-bottom: 30px;
  }
}
.home-page .top-slider-standard .content .top-slider-content .top-slider-top-title .top-slider-top-title-heading {
  max-width: 400px;
}
.home-page .top-slider-standard .content .top-slider-content .top-slider-main-title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider-standard .content .top-slider-content .top-slider-main-title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider-standard .content .top-slider-content .top-slider-main-title {
    margin-bottom: 15px;
  }
}
.home-page .top-slider-standard .content .top-slider-content .top-slider-white-button {
  margin-left: 4px;
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider-standard .content .top-slider-content .top-slider-white-button {
    margin-left: 0;
  }
}
.home-page .top-slider-standard .content .top-slider-banner-bg-mobile {
  right: 0;
  height: 278px;
}
.home-page .top-slider-standard .content .top-slider-banner-bg-mobile.top-slider-banner-bg-mobile-cover {
  height: 100%;
  width: 100%;
}
.home-page .top-slider-standard .slick-dots {
  margin-top: 25px;
}
.home-page .top-slider-professionals {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .home-page .top-slider-professionals {
    margin-bottom: 40px;
  }
}
.home-page .top-slider-professionals .content {
  justify-content: flex-start;
  min-height: 861px;
}
@media only screen and (max-width: 1250px) {
  .home-page .top-slider-professionals .content {
    min-height: 720px;
  }
}
.home-page .top-slider-professionals .content .top-slider-content .top-slider-top-title {
  margin-bottom: 63px;
}
@media only screen and (max-width: 667px) {
  .home-page .top-slider-professionals .content .top-slider-content .top-slider-top-title {
    margin-bottom: 40px;
  }
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper .top-slider-button {
  margin-bottom: 10px;
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper .top-slider-button:first-child {
  margin-right: 19px;
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper .top-slider-button .button {
  padding: 13px 37px 13px 42px;
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper .top-slider-white-button .button {
  border: 2px solid #fff;
  transition: all 0.2s linear;
}
.home-page .top-slider-professionals .content .top-slider-content .button-wrapper .top-slider-white-button .button:hover {
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
}
.home-page .top-slider-professionals .content .top-slider-banner-bg-mobile {
  left: 0;
  width: 100%;
  height: 278px;
}
.home-page .top-slider-professionals .content .top-slider-banner-bg-mobile.top-slider-banner-bg-mobile-cover {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 580px) {
  .home-page .top-slider-professionals .content .top-slider-banner-bg-mobile {
    height: 230px;
  }
  .home-page .top-slider-professionals .content .top-slider-banner-bg-mobile.top-slider-banner-bg-mobile-cover {
    height: 100%;
  }
}
.home-page .top-slider-professionals .slick-dots {
  margin-top: 38px;
}

.image-and-text {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto 70px;
  padding-right: 20px;
}
@media only screen and (max-width: 1920px) {
  .image-and-text {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .image-and-text {
    padding-right: 0;
    flex-wrap: wrap;
    margin: 0 auto 40px;
  }
}
.image-and-text .image-wrapper {
  position: relative;
  width: 50.5%;
  height: 721px;
  margin-right: 70px;
}
@media only screen and (max-width: 1600px) {
  .image-and-text .image-wrapper {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  .image-and-text .image-wrapper {
    width: 55%;
  }
}
@media only screen and (max-width: 1024px) {
  .image-and-text .image-wrapper {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
}
.image-and-text .text {
  flex: 1;
  align-self: center;
}
@media only screen and (max-width: 1024px) {
  .image-and-text .text {
    padding: 20px 20px 40px 20px;
    width: 100%;
    flex: unset;
    align-self: flex-start;
    z-index: 10;
  }
}
.image-and-text .text .button-wrapper {
  display: flex;
}
.image-and-text .text .button-wrapper .button {
  font-size: 16px;
  padding: 12px 24px;
}
.image-and-text .text.wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.image-and-text .text.wysiwyg-styles > h2, .image-and-text .text.wysiwyg-styles > h3 {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.image-and-text .text.wysiwyg-styles > h3 {
  font-size: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .image-and-text .text.wysiwyg-styles > h3 {
    margin-top: 30px;
  }
}
.image-and-text .text.wysiwyg-styles > h2 {
  font-size: 28px;
}
.image-and-text .text.wysiwyg-styles > ul, .image-and-text .text.wysiwyg-styles > ol {
  margin-bottom: 40px;
}

@media screen and (max-width: 900px) {
  .featured-posts-wrapper .view-more {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .featured-posts-wrapper .exploded-carousel {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .featured-posts-wrapper .carousel-container {
    display: none;
  }
}
.featured-posts-wrapper .carousel-container .slick-carousel {
  max-width: 100%;
}
.featured-posts-wrapper .carousel-container .slick-carousel .slick-list .slick-track {
  display: flex !important;
}
.featured-posts-wrapper .carousel-container .slick-carousel .slick-list .slick-track .slick-slide {
  height: inherit !important;
  vertical-align: middle;
  margin: 0 7px;
}
.featured-posts-wrapper .carousel-container .slick-carousel .slick-list .slick-track .slick-slide:focus {
  outline: none;
}
.featured-posts-wrapper .carousel-container .featured-post-content .single-post-card .image-wrapper {
  height: 362px;
}
.featured-posts-wrapper .carousel-container .featured-post-content .single-post-card .text-wrapper {
  padding: 37px 33px 50px;
}
.featured-posts-wrapper .carousel-container .featured-post-content .single-post-card .text-wrapper .single-post-card-title {
  font-size: 24px;
  line-height: 34px;
}
.featured-posts-wrapper .carousel-container .featured-post-content .single-post-card .text-wrapper .single-post-card-excerpt {
  font-size: 16px;
  line-height: normal;
}
.featured-posts-wrapper .carousel-container .swipe-icon {
  display: block;
}

.single-post-page .post-top-area .background-image {
  -webkit-animation: scaling 50s linear infinite;
  animation: scaling 50s linear infinite;
  z-index: -1;
}
.single-post-page .post-top-area .content {
  z-index: 1;
}
.single-post-page .post-top-area .content .custom-breadcrumb {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .single-post-page .post-top-area .content .post-top-area-text {
    margin-top: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .single-post-page .post-top-area .content .post-top-area-text h1 {
    font-size: 33px;
  }
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle {
  margin-top: 30px;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle h1 {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle h2 {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle h3 {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle h4 {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle p {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle a {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle ul li {
  color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle ul li:before {
  background-color: #fff;
}
.single-post-page .post-top-area .content .post-top-area-text .subtitle > *:last-child {
  margin-bottom: 0;
}
.single-post-page .flex-spbtwn-2 {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1025px) {
  .single-post-page .flex-spbtwn-2 {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.single-post-page .flex-spbtwn-2 .left-content {
  width: calc(100% - 480px);
}
@media only screen and (max-width: 1365px) {
  .single-post-page .flex-spbtwn-2 .left-content {
    width: calc(100% - 400px);
  }
}
@media only screen and (max-width: 1025px) {
  .single-post-page .flex-spbtwn-2 .left-content {
    width: 100%;
    margin-bottom: 60px;
  }
}

/* ----- PAGE PAGINATION ----- */
.page-numbers {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 800px) {
  .page-numbers {
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 320px) {
  .page-numbers {
    flex-wrap: wrap;
  }
}
.page-numbers a, .page-numbers span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8c8c8c;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s linear;
}
.page-numbers a:not(:last-child), .page-numbers span:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .page-numbers a:not(:last-child), .page-numbers span:not(:last-child) {
    margin-right: 14px;
  }
}
.page-numbers .current, .page-numbers a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}
.page-numbers .next, .page-numbers .prev {
  display: flex;
  align-items: center;
  transition: all 0.2s linear;
}
.page-numbers .next .pagination-svg, .page-numbers .prev .pagination-svg {
  height: 11px;
  width: 11px;
  background-color: #8c8c8c;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  transition: all 0.2s linear;
}
.page-numbers .next:hover, .page-numbers .prev:hover {
  border-bottom: 1px solid transparent;
}
.page-numbers .next:hover .pagination-svg, .page-numbers .prev:hover .pagination-svg {
  background-color: #000;
}
.page-numbers .dots {
  background-color: transparent;
  color: #000;
}

.brand-shop-link-wrapper {
  display: flex;
  margin-top: 40px;
}

.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery {
    margin-bottom: 30px;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery figure {
  height: 100%;
  width: 100%;
}
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image,
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery figure .woocommerce-product-gallery__image {
  height: 100%;
  width: 100%;
}
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img,
.single-product-page .products-content .single-product-content .single-product-main .woocommerce-product-gallery figure .woocommerce-product-gallery__image a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 40px;
}
.single-product-page .products-content .single-product-content .single-product-main .summary {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .single-product-page .products-content .single-product-content .single-product-main .summary {
    margin-bottom: 20px;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .summary .favorite-product {
  -webkit-mask-image: url("../../images/heart-black.svg");
  mask-image: url("../../images/heart-black.svg");
  height: 20px;
  width: 20px;
  background-color: #b8b8b8;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin-top: 4px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 1024px) {
  .single-product-page .products-content .single-product-content .single-product-main .summary .favorite-product {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .single-product-page .products-content .single-product-content .single-product-main .summary .favorite-product {
    margin-top: 0;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .summary .favorite-product[data-added=yes] {
  background-color: #df184b;
}
.single-product-page .products-content .single-product-content .single-product-main .summary .favorite-product:hover {
  background-color: #e5466e;
}
@media only screen and (max-width: 767px) {
  .single-product-page .products-content .single-product-content .single-product-main .summary .product-description {
    margin-bottom: 20px;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form {
  margin-bottom: 0;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations {
  margin-bottom: 40px;
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .variations {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .label {
    padding-right: 0;
    text-align: center;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .label label {
  color: #3f3f3f;
  font-size: 15px;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value {
  align-items: center;
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper) {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #b8b8b8;
  border-radius: 50%;
  transition: all 0.15s linear;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper):not(:last-child) {
  margin-right: 11px;
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper):last-of-type {
    margin-right: 0;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper):hover {
  background-color: #000;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper) label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
  line-height: 13px;
  border-radius: 50%;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper) label .amount {
  display: block;
  font-weight: 700;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper) label .measurement {
  display: block;
  font-weight: 400;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value > div:not(.simple-selectric-dropdown-wrapper) input[type=radio]:checked + label {
  background-color: #000;
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value .reset_variations {
  transition: all 0s;
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .variations tbody tr .value .reset_variations {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .variations_form .single_variation_wrap .single_variation {
  margin-bottom: 20px;
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .variations_form .single_variation_wrap .single_variation .woocommerce-variation-price {
    text-align: center;
  }
}
@media only screen and (max-width: 380px) {
  .single-product-page .products-content .single-product-content .single-product-main .price {
    text-align: center;
  }
}
.single-product-page .products-content .single-product-content .single-product-main .price .amount {
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}
.single-product-page .products-content .single-product-content .single-product-main .quantity input[type=number] {
  -moz-appearance: textfield;
}
.single-product-page .products-content .single-product-content .single-product-main form.cart .single_add_to_cart_button:hover {
  animation: black-pulse 1s;
}
@media only screen and (max-width: 1500px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 667px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li {
    margin: 0 0 20px 0;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li:before {
  display: none;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li a {
  position: relative;
  color: #000;
  transition: all 0.15s linear;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li a:before {
  content: "";
  width: 138px;
  height: 1px;
  background-color: #000000;
  box-shadow: none;
  border-bottom-right-radius: unset;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all 0.15s linear;
  opacity: 0.17;
}
@media only screen and (max-width: 667px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li a:before {
    bottom: 1px;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li a:hover {
  color: #000 !important;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs li a:hover:before {
  opacity: 1;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs .active a {
  cursor: default;
  color: #000;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs ul.tabs .active a:before {
  opacity: 1;
}
@media only screen and (max-width: 667px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel {
    margin: 3px 0 40px 0;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element {
  display: inline-flex;
  align-items: center;
  justify-items: flex-start;
  margin-bottom: 10px;
  text-decoration: none;
}
@media only screen and (max-width: 290px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element {
    flex-direction: column;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element img {
  margin-right: 10px;
  height: 23px;
  width: 23px;
}
@media only screen and (max-width: 290px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element img {
    margin-right: 0;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element .title p {
  margin: 0;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 290px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element .title p {
    text-align: center;
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element:hover .title p {
  color: #6b6a6b;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-attached_files .single-file-element:hover img {
  animation: bounce10 0.5s linear infinite;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element:hover {
  transform: translate(0);
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element:hover > img, .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element:hover > video {
  transform: scale(1.1);
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element > img, .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element > video {
  transition: 0.5s ease;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element > img {
  position: relative;
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element .play-button {
  position: absolute;
  bottom: 28px;
  right: 53px;
  width: 120px;
  height: 120px;
  z-index: 1;
}
@media only screen and (max-width: 1365px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element .play-button {
    height: 60px;
    width: 60px;
    bottom: 28px;
    right: 28px;
  }
}
@media only screen and (max-width: 500px) {
  .single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element .play-button {
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
  }
}
.single-product-page .products-content .single-product-content .woocommerce-tabs .woocommerce-Tabs-panel#tab-gallery .wysiwyg-gallery .single-gallery-element .play-button img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.single-product-page .products-content .single-product-content .related-products-section .title h2 {
  margin-bottom: 20px;
}
.single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 850px) {
  .single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element {
    width: calc((100% - 12px) / 3.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element {
    width: calc((100% - 6px) / 2.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 600px) {
  .single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element {
    width: 100%;
    margin: 0 0 15px;
  }
}
.single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media screen and (min-width: 851px) {
  .single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .single-product-page .products-content .single-product-content .related-products-section .related-products-wrapper .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}

.woocommerce.product-archive-page .products-content .product-list-container .woocommerce-products-header {
  margin-bottom: 30px;
}
.woocommerce.product-archive-page .products-content .product-list-container .woocommerce-products-header .page-title {
  margin-bottom: 0;
}
.woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 850px) {
  .woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element {
    width: calc((100% - 12px) / 3.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element {
    width: calc((100% - 6px) / 2.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 600px) {
  .woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element {
    width: 100%;
    margin: 0 0 15px;
  }
}
.woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media screen and (min-width: 851px) {
  .woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .woocommerce.product-archive-page .products-content .product-list-container .product-list ul.products .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}

.contact-page .contact-info .title-type-1 {
  margin-bottom: 55px;
}
.contact-page .contact-info .flex-spbtwn .contact-info-item .contact-info-item-container {
  margin-bottom: 40px;
}
.contact-page .contact-info .flex-spbtwn .contact-info-item .contact-info-item-container .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
.contact-page .contact-info .flex-spbtwn .contact-info-item .contact-info-item-container a:hover {
  color: #6c6c6c;
}
.contact-page .contact-info .flex-spbtwn .contact-info-item .working-time .working-time-item.big-top-space {
  margin-top: 30px;
}
.contact-page .contact-info .flex-spbtwn .contact-info-item.location .location-link .map-wrapper {
  width: 100%;
  height: 100%;
}
.contact-page .contact-team .title-type-1 {
  margin-bottom: 25px;
}
.contact-page .contact-team .team-wrapper .single-element {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .contact-page .contact-team .team-wrapper .single-element {
    width: calc((100% - 15px) / 4.001);
    margin: 0 5px 5px 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 950px) {
  .contact-page .contact-team .team-wrapper .single-element {
    width: calc((100% - 10px) / 3.001);
    margin: 0 5px 5px 0;
  }
}
@media screen and (max-width: 950px) and (min-width: 600px) {
  .contact-page .contact-team .team-wrapper .single-element {
    width: calc((100% - 5px) / 2.001);
    margin: 0 5px 5px 0;
  }
}
@media screen and (max-width: 600px) {
  .contact-page .contact-team .team-wrapper .single-element {
    width: 100%;
    margin: 0 0 5px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-page .contact-team .team-wrapper .single-element:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 950px) {
  .contact-page .contact-team .team-wrapper .single-element:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) and (min-width: 600px) {
  .contact-page .contact-team .team-wrapper .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}
.contact-page .contact-team .team-wrapper .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.contact-page .contact-team .team-wrapper .single-element .image-wrapper {
  position: relative;
  height: auto;
  width: 100%;
  padding-top: 151%;
}
.contact-page .contact-team .team-wrapper .single-element .image-wrapper.no-image {
  background-color: #000;
}
.contact-page .contact-team .team-wrapper .single-element .contact-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs a {
  display: inline;
  position: relative;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs a:hover:before, .contact-page .contact-team .team-wrapper .single-element .pos-abs a:hover:after {
  width: 100%;
  opacity: 1;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs a:after {
  left: 0;
  background-color: #fff;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs a:before, .contact-page .contact-team .team-wrapper .single-element .pos-abs a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.contact-page .contact-team .team-wrapper .single-element .pos-abs a:hover {
  color: #fff;
}
.contact-page .contact-team .team-toggle-header {
  cursor: pointer;
  position: relative;
  display: flex;
  transition: color 0.2s ease;
  line-height: 1;
}
.contact-page .contact-team .team-toggle-header:hover {
  color: #6c6c6c;
}
.contact-page .contact-team .team-toggle-header:hover .team-toggle-arrow svg {
  fill: #6c6c6c;
}
.contact-page .contact-team .team-toggle-header[aria-expanded=true] .team-toggle-arrow {
  transform: rotate(180deg);
}
@media only screen and (max-width: 901px) {
  .contact-page .contact-team .team-toggle-header .title-type-1 {
    line-height: normal;
  }
}
.contact-page .contact-team .team-toggle-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease, filter 0.2s ease;
  margin-left: 10px;
}
@media only screen and (max-width: 901px) {
  .contact-page .contact-team .team-toggle-arrow {
    width: 18px;
    height: 18px;
  }
}
.team-toggle-header:hover .contact-page .contact-team .team-toggle-arrow {
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(89%);
}
.contact-page .contact-team #team-content {
  margin-top: 20px;
}

.front-store-page .custom-breadcrumb {
  margin-bottom: 30px;
}
.front-store-page .section-head {
  display: flex;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .front-store-page .section-head {
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
}
.front-store-page .section-head h1 {
  font-size: 44px;
  font-weight: 600;
  margin: 0 70px 0 0;
}
@media only screen and (max-width: 1250px) {
  .front-store-page .section-head h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .front-store-page .section-head h1 {
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .front-store-page .section-head h1 {
    font-size: 35px;
  }
}
.front-store-page .section-head .wysiwyg-styles {
  max-width: 560px;
  margin-top: -10px;
}
@media only screen and (max-width: 1024px) {
  .front-store-page .section-head .wysiwyg-styles {
    max-width: unset;
    width: 100%;
    margin-top: 0;
  }
}
.front-store-page .section-head .wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.front-store-page .section-head .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
.front-store-page .section-head .wysiwyg-styles > h2 {
  font-size: 33px;
}
@media only screen and (max-width: 1250px) {
  .front-store-page .section-head .wysiwyg-styles > h2 {
    font-size: 30px;
  }
}
.front-store-page .section-head .wysiwyg-styles > h3 {
  font-size: 30px;
}
@media only screen and (max-width: 1250px) {
  .front-store-page .section-head .wysiwyg-styles > h3 {
    font-size: 27px;
  }
}
.front-store-page .section-head .wysiwyg-styles > p {
  font-size: 27px;
  font-weight: 300;
  line-height: normal;
}
@media only screen and (max-width: 1250px) {
  .front-store-page .section-head .wysiwyg-styles > p {
    font-size: 24px;
  }
}
.front-store-page .section-head .wysiwyg-styles a {
  color: #000;
  transition: all 0.15s linear;
}
.front-store-page .section-head .wysiwyg-styles a:hover {
  color: #6c6c6c;
}
.front-store-page .section-head .wysiwyg-styles a:hover:before {
  background-color: #6c6c6c;
}
.front-store-page .section-head .wysiwyg-styles a:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  margin: 0;
  opacity: 1;
  transition: all 0.15s linear;
}
.front-store-page .section-head .wysiwyg-styles a:after {
  display: none;
}
.front-store-page .featured-categories {
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .front-store-page .featured-categories {
    margin-bottom: 40px;
  }
}

.woocommerce-cart .custom-breadcrumb {
  margin-bottom: 30px;
}
.woocommerce-cart h1 {
  font-size: 24px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
}
.woocommerce-cart .cart-before-step-wrapper .top-content {
  text-align: center;
  width: 100%;
  margin-bottom: 5px;
}
.woocommerce-cart .cart-before-step-wrapper .top-content h3, .woocommerce-cart .cart-before-step-wrapper .top-content h4 {
  display: inline;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
}
.woocommerce-cart .cart-before-step-wrapper .top-content h4 {
  font-size: 16px;
  line-height: normal;
}
.woocommerce-cart .cart-before-step-wrapper .top-content h4 .big-font {
  font-size: 23px;
  line-height: normal;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > * {
  width: calc((100% - 10px) / 3.001);
  margin-right: 5px;
  border: 2px solid #000000;
  border-radius: 0;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > * {
    width: calc((100% - 5px) / 2.001);
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 650px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > * {
    width: 100%;
    margin-right: 0;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *:last-child {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *:nth-of-type(2n) {
    margin-right: 0;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper {
  padding: 44px;
}
@media only screen and (max-width: 1450px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper {
    padding: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper {
    padding: 25px;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .section-title, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .section-title {
  font-size: 30px;
  font-family: "Acumin Pro", sans-serif;
  width: 100%;
  text-align: center;
  font-weight: 400;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1450px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .section-title, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .section-title {
    font-size: 26px;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form {
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  max-width: 286px;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .b2bking_custom_registration_container_hidden, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .b2bking_custom_registration_container_hidden {
  display: none !important;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 24px;
  margin: 0;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row label, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 9px;
  text-align: center;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row .woocommerce-form-login__rememberme, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row .woocommerce-form-login__rememberme {
  display: none;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row .password-input, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row .password-input {
  width: 100%;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row input[type=text], .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row input[type=password], .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row input[type=email], .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row input[type=text], .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row input[type=password], .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row input[type=email] {
  height: 48px;
  border: 1px solid #EAEAEA;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: unset;
  width: 100%;
  max-width: 300px;
  margin: 0;
  outline: 0;
  line-height: normal;
  max-width: unset;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row .woocommerce-button, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row .woocommerce-button {
  font-size: 16px;
  margin: 0;
  padding: 10.5px 22px 10.5px 22px;
  line-height: unset;
  background-color: #000;
  color: #ffffff;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  border: 2px solid #000;
  transition: all 0.15s linear;
  border-radius: 25px;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .form-row .woocommerce-button:hover, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .form-row .woocommerce-button:hover {
  background-color: #000;
  color: #fff;
  opacity: 0.9;
  animation: black-pulse 1s;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .lost_password, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .lost_password {
  width: 100%;
  text-align: center;
  margin: -16px 0 25px;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .lost_password span, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .lost_password a, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .lost_password span, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .lost_password a {
  font-size: 10px;
  font-weight: 500;
  margin: 0;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .lost_password a, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .lost_password a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.login-form-wrapper .woocommerce-form .lost_password a:hover, .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.registration-form-wrapper .woocommerce-form .lost_password a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 1450px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a {
    padding: 35px;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a {
    padding: 30px;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a .text {
  font-size: 26px;
  font-family: "Acumin Pro", sans-serif;
  width: 100%;
  text-align: center;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1450px) {
  .woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a .text {
    font-size: 22px;
  }
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a .image-wrapper img {
  width: 37px;
  height: 29px;
  object-fit: contain;
  transition: all 0.15s linear;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a:hover {
  background-color: #f5f5f5;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper > *.continue-wrapper a:hover .image-wrapper img {
  margin-left: 20px;
}
.woocommerce-cart .cart-before-step-wrapper .cart-registration-wrapper .login-form-wrapper h2:not(.section-title) {
  display: none;
}
.woocommerce-cart .wysiwyg-styles table tr:nth-of-type(2n) {
  background-color: #fff;
}
@media only screen and (max-width: 1025px) {
  .woocommerce-cart .wysiwyg-styles table tr td {
    min-width: unset;
  }
}
.woocommerce-cart .woocommerce-cart-form table thead tr .product-quantity .quantity input[type=number] {
  -moz-appearance: textfield;
}
.woocommerce-cart .woocommerce-cart-form table tbody tr {
  position: relative;
}
.woocommerce-cart .woocommerce-cart-form table tbody tr td {
  padding: 25px 22px 25px 0;
  border: unset;
  border-bottom: 1px solid #e3e3e3;
}
.woocommerce-cart .woocommerce-cart-form table tbody tr .actions .update-cart-button[disabled] {
  cursor: not-allowed;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-thumbnail {
  width: 0;
  min-width: unset;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-thumbnail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 96px;
  border: 1px solid #e7e7e7;
  padding: 10px;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-thumbnail a img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-name a {
  font-size: 25px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1250px) {
  .woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-name a {
    font-size: 18px;
  }
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-name a:hover {
  color: #6c6c6c;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-name .short-description {
  text-align: left;
  width: 100%;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-price {
  padding-right: 0;
  padding-left: 22px;
}
@media only screen and (max-width: 1025px) {
  .woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-price {
    width: unset;
  }
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .volume-variation {
  width: 150px;
}
@media only screen and (max-width: 1025px) {
  .woocommerce-cart .woocommerce-cart-form table tbody .cart_item .volume-variation {
    width: unset;
  }
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-quantity {
  min-width: unset;
  width: 0;
  padding-right: 0;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-quantity .quantity {
  display: flex;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-quantity .quantity > * {
  outline: none !important;
}
.woocommerce-cart .woocommerce-cart-form table tbody .cart_item .product-subtotal {
  display: none !important;
}
.woocommerce-cart .woocommerce-cart-form table tbody .woocommerce-cart-form__coupon {
  display: none;
}
@media only screen and (max-width: 769px) {
  .woocommerce-cart table.shop_table_responsive.cart thead {
    display: none;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody tr:first-child td:first-child {
    border-top: 0;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody th {
    display: none;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item {
    display: grid;
    grid-template-columns: max-content auto;
    grid-column-gap: 10px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item:not(:last-of-type) {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-remove {
    grid-column: 1/3;
    text-align: right;
    justify-content: flex-end;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-remove a {
    margin: 0;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-thumbnail {
    grid-row: 1/99;
    align-items: flex-start;
    width: unset;
    display: flex !important;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-thumbnail a {
    height: 160px;
    width: 160px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-name {
    grid-column: 2/3;
    margin-bottom: 5px;
    width: unset;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-name:before {
    margin-top: 2px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-name a {
    letter-spacing: normal;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .volume-variation {
    margin-bottom: 5px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-price {
    grid-column: 2/3;
    padding-left: 0;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-quantity {
    width: unset;
    grid-column: 2/3;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-quantity .quantity .sign {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-quantity .quantity input.qty {
    width: 72px;
    height: 34px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr {
    display: block;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td.order-actions {
    text-align: left !important;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td::before {
    content: attr(data-title) ": ";
    font-family: "Acumin Pro", sans-serif;
    font-size: 17px;
    font-weight: 600;
    float: left;
    margin-right: 10px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td.product-remove::before, .woocommerce-cart table.shop_table_responsive.cart tr td.actions::before, .woocommerce-cart table.shop_table_responsive.cart tr td.product-thumbnail::before {
    display: none;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td.actions {
    margin-top: 20px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tr td.actions .coupon {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 460px) {
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item {
    grid-template-columns: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-remove {
    grid-column: 1/2;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-thumbnail {
    grid-row: 1/3;
    justify-content: center;
    margin-bottom: 10px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-thumbnail a {
    height: 180px;
    width: 180px;
    border: none;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-name {
    grid-column: 1/2;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-price {
    grid-column: 1/2;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-price .remove {
    bottom: unset;
    top: 5px;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-quantity {
    grid-column: 1/2;
  }
  .woocommerce-cart table.shop_table_responsive.cart tbody .cart_item .product-subtotal {
    grid-column: 1/2;
  }
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}
@media only screen and (max-width: 667px) {
  .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media only screen and (max-width: 667px) {
  .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
    margin: 0;
  }
}
@media only screen and (max-width: 667px) {
  .woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .white-button {
    margin: 0 0 15px 0;
  }
}

.wishlist-page h1 {
  margin-bottom: 30px;
}
.wishlist-page .wishlist-page-content-wrapper table {
  width: 100%;
}
.wishlist-page .wishlist-page-content-wrapper table thead {
  display: none;
}
.wishlist-page .wishlist-page-content-wrapper table tbody tr {
  position: relative;
}
.wishlist-page .wishlist-page-content-wrapper table tbody tr td {
  padding: 25px 22px 25px 0;
  border: unset;
  border-bottom: 1px solid #e3e3e3;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-thumbnail {
  width: 0;
  min-width: unset;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-thumbnail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 96px;
  border: 1px solid #e7e7e7;
  padding: 10px;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-thumbnail a img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-name a {
  font-size: 25px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1250px) {
  .wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-name a {
    font-size: 18px;
  }
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-name a:hover {
  color: #6c6c6c;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-name .short-description {
  text-align: left;
  width: 100%;
  font-size: 16px;
  color: #3f3f3f;
  margin: 0;
}
@media only screen and (max-width: 1250px) {
  .wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-name .short-description {
    font-size: 14px;
  }
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-price {
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (max-width: 1025px) {
  .wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .product-price {
    width: unset;
  }
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .volume-variation {
  width: 150px;
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (max-width: 1025px) {
  .wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .volume-variation {
    width: unset;
  }
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .add-to-wishlist {
  width: 0;
  padding-right: 0;
  padding-left: 22px;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .add-to-wishlist .single_add_to_cart_button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
  min-width: 236px;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .add-to-wishlist .single_add_to_cart_button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}
.wishlist-page .wishlist-page-content-wrapper table tbody .cart_item .add-to-wishlist .single_add_to_cart_button .cart-icon {
  width: 13px;
  height: 18px;
}
@media only screen and (max-width: 769px) {
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart thead {
    display: none;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody tr:first-child td:first-child {
    border-top: 0;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody th {
    display: none;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item {
    display: grid;
    grid-template-columns: max-content auto;
    grid-column-gap: 10px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item:not(:last-of-type) {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-remove {
    grid-column: 1/3;
    text-align: right;
    justify-content: flex-end;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-remove a {
    margin: 0;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-thumbnail {
    grid-row: 1/99;
    align-items: flex-start;
    width: unset;
    display: flex !important;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-thumbnail a {
    height: 160px;
    width: 160px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-name {
    grid-column: 2/3;
    margin-bottom: 5px;
    width: unset;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-name:before {
    margin-top: 2px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-name a {
    letter-spacing: normal;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .volume-variation {
    margin-bottom: 5px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-price {
    grid-column: 2/3;
    padding-left: 0;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .add-to-wishlist {
    width: unset;
    padding-top: 10px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .add-to-wishlist .single_add_to_cart_button {
    font-size: 14px;
    padding: 10px 23px;
    min-width: unset;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr {
    display: block;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.order-actions {
    text-align: left !important;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td::before {
    content: attr(data-title) ": ";
    font-family: "Acumin Pro", sans-serif;
    font-size: 17px;
    font-weight: 600;
    float: left;
    margin-right: 10px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.product-remove::before, .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.actions::before, .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.product-thumbnail::before, .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.add-to-wishlist::before {
    display: none;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.actions {
    margin-top: 20px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tr td.actions .coupon {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 460px) {
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item {
    grid-template-columns: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-remove {
    grid-column: 1/2;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-thumbnail {
    grid-row: 1/3;
    justify-content: center;
    margin-bottom: 10px;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-thumbnail a {
    height: 180px;
    width: 180px;
    border: none;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-name {
    grid-column: 1/2;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .product-price {
    grid-column: 1/2;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .add-to-wishlist {
    justify-content: center;
  }
  .wishlist-page .wishlist-page-content-wrapper table.shop_table_responsive.cart tbody .cart_item .add-to-wishlist .remove {
    bottom: unset;
    top: 5px;
  }
}
.wishlist-page .wishlist-page-content-wrapper .button-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 70px;
}
@media only screen and (max-width: 460px) {
  .wishlist-page .wishlist-page-content-wrapper .button-wrapper {
    justify-content: center;
  }
}
.wishlist-page .wishlist-page-content-wrapper .button-wrapper .add-all-items-to-cart {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
}
.wishlist-page .wishlist-page-content-wrapper .button-wrapper .add-all-items-to-cart:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}

.woocommerce-checkout .page-wrapper h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Acumin Pro", sans-serif;
  margin-bottom: 28px;
}
.woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  min-height: 49px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Acumin Pro", sans-serif;
  width: 100%;
  border: none;
  padding: 6px 27px 6px 72px;
  background-color: #60a676;
}
@media only screen and (max-width: 767px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success {
    padding: 10px 15px 10px 50px;
  }
}
.woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
  content: "";
  display: block !important;
  font-size: 0;
  left: 27px;
}
@media only screen and (max-width: 767px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
    left: 16px;
  }
}
@media only screen and (max-width: 380px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
    display: none;
  }
}
.woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:last-child {
  margin-bottom: 30px;
}
.woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
  position: absolute;
  top: 12px;
  -webkit-mask-image: url("../../images/message-success.svg");
  mask-image: url("../../images/message-success.svg");
  height: 23px;
  width: 23px;
  background-color: #fff;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:before {
    height: 17px;
    width: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success:after {
    min-height: 37px;
  }
}
.woocommerce-checkout .page-wrapper .woocommerce > .wc-block-components-notice-banner.is-success svg {
  display: none;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper {
  margin-bottom: 35px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper h3 {
  display: none;
  font-size: 20px;
  font-weight: 700;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio {
  display: block;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.form-row-wide {
  margin-bottom: 20px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.theme-simple-radio > label {
  display: block;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.theme-simple-radio .woocommerce-input-wrapper {
  padding-top: 13px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.theme-simple-radio .woocommerce-input-wrapper > * {
  margin-bottom: 0;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.theme-simple-radio .woocommerce-input-wrapper > *:last-child {
  margin-left: 27px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio.theme-simple-radio .woocommerce-input-wrapper label {
  color: #3E3E3E;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio > label {
  display: none;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -45px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .input-radio {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio {
  position: relative;
  display: block;
  padding-left: 41px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio img {
  padding-right: 5px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .radio:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper .input-radio:checked + .radio:after {
  visibility: visible;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .theme-radio .woocommerce-input-wrapper > * {
  margin-left: 45px;
  margin-bottom: 15px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row {
  float: none;
  position: relative;
  width: calc((100% - 186px - 68px) / 4.001);
  margin: 0 17px 25px 0;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row {
    width: calc((100% - 51px) / 4.001);
  }
}
@media only screen and (max-width: 900px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row {
    width: calc((100% - 34px) / 3.001);
  }
}
@media only screen and (max-width: 650px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row {
    width: calc((100% - 17px) / 2.001);
  }
}
@media only screen and (max-width: 450px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row {
    width: 100%;
    margin-right: 0;
  }
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media only screen and (max-width: 1200px) and (min-width: 901px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 900px) and (min-width: 651px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 650px) and (min-width: 450px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row:nth-of-type(2n) {
    margin-right: 0;
  }
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 7px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .woocommerce-input-wrapper textarea {
  width: 100%;
  max-width: 589px;
  min-height: 83px;
  padding: 10px 15px;
  margin-bottom: 0;
  color: #000;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  -webkit-transition: border 300ms ease-in;
  -moz-transition: border 300ms ease-in;
  -o-transition: border 300ms ease-in;
  transition: border 300ms ease-in;
  outline: none !important;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .woocommerce-input-wrapper textarea::-webkit-scrollbar {
  width: 5px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .woocommerce-input-wrapper textarea::-webkit-scrollbar-track {
  background-color: #fff;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .woocommerce-input-wrapper textarea::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .required,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row .optional {
  display: none;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row.woocommerce-validated input.input-text {
  border-color: #1cbd99;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-small {
  width: 100%;
  max-width: 186px;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-small {
    width: calc((100% - 51px) / 4.001);
    max-width: unset;
  }
}
@media only screen and (max-width: 900px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-small {
    width: calc((100% - 34px) / 3.001);
  }
}
@media only screen and (max-width: 650px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-small {
    width: calc((100% - 17px) / 2.001);
  }
}
@media only screen and (max-width: 450px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-small {
    width: 100%;
  }
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-medium {
  width: calc((100% - 186px - 34px) / 2.001);
}
@media only screen and (max-width: 1200px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-medium {
    width: calc((100% - 17px) / 2.001);
  }
}
@media only screen and (max-width: 900px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-medium {
    width: 66.6444518494%;
  }
}
@media only screen and (max-width: 650px) {
  .woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-medium {
    width: 100%;
  }
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .form-row-wide {
  width: 100%;
  margin-bottom: 30px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-contact-fields {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 8px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #000;
  padding-top: 33px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields #billing_country_field {
  display: block !important;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods {
  margin-bottom: 25px;
  font-size: 0;
  color: transparent;
  width: 100%;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none outside;
  margin: 0 0 0 -45px;
  font-size: 1rem;
  color: #000;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li {
  margin-left: 45px;
  margin-bottom: 15px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li input,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li label,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li label {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 500;
  padding-left: 45px;
  padding-top: 2px;
  cursor: pointer;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li label .amount,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li label .amount {
  display: none;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li label:before,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li label:before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li label:after,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li label:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods ul#shipping_method li input:checked + label:after,
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods li input:checked + label:after {
  visibility: visible;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods .parcel-shipping-methods-wrapper {
  padding-top: 33px;
}
.woocommerce-checkout .page-wrapper .customer-details-wrapper .billing-address-fields .shipping-methods .parcel-shipping-methods-wrapper .parcel-shipping-methods-label {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
}
.woocommerce-checkout .page-wrapper .woocommerce-checkout-review-order {
  border-top: 1px solid #000;
  padding-top: 33px;
}
.woocommerce-checkout .page-wrapper .woocommerce-checkout-review-order .multiparcels-door-code-invisible {
  display: none;
}
.woocommerce-checkout .wysiwyg-styles table tr:nth-of-type(2n) {
  background-color: #fff;
}
@media only screen and (max-width: 1025px) {
  .woocommerce-checkout .wysiwyg-styles table tr td {
    min-width: unset;
  }
}

.woocommerce div#payment {
  border-radius: 0;
}
.woocommerce div#payment .payment_methods {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -45px;
  margin-bottom: 15px;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper > * {
  margin-left: 45px;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method {
  order: 10;
  padding-bottom: 25px;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .input-radio {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio {
  position: relative;
  display: block;
  padding-left: 41px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio img {
  padding-right: 5px;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .input-radio:checked + .radio:after {
  visibility: visible;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio {
  margin-bottom: 0;
}
.woocommerce div#payment .payment_methods .payment-method-wrapper .wc_payment_method .radio img {
  display: none;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_box {
  padding: 0;
  margin: 0;
  color: #000;
  background-color: transparent;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_box:before {
  display: none;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_card .montonio-card-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 2px solid #1cbd99;
  background-color: #f5f5f5;
  width: 276px;
  height: 93px;
  padding: 23px;
  box-shadow: none;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 450px) {
  .woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_card .montonio-card-icons {
    width: 100%;
  }
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_card .montonio-card-icons img {
  margin: 0 !important;
  height: auto !important;
  max-height: 100% !important;
  max-width: 100% !important;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items {
  width: 100%;
  grid-template-columns: repeat(auto-fit, 276px);
}
@media only screen and (max-width: 450px) {
  .woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items {
    grid-template-columns: auto;
  }
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items .montonio-bank-item {
  border-radius: 0;
  border: 2px solid #000000;
  width: 276px;
  height: 93px;
  padding: 23px;
  box-shadow: none;
  transition: all 0.15s linear;
}
@media only screen and (max-width: 450px) {
  .woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items .montonio-bank-item {
    width: 100%;
  }
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items .montonio-bank-item:hover {
  background-color: #f5f5f5;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items .montonio-bank-item img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_wc_montonio_payments .montonio-bank-items .montonio-bank-item.active {
  background-color: #f5f5f5;
  border-color: #1cbd99;
  box-shadow: none;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul {
  list-style: none;
  margin-bottom: 0;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul li {
  display: table;
  position: relative;
  padding-left: 30px;
  font-size: 15px;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul li:not(:last-child) {
  margin-bottom: 7px;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul li:before {
  position: absolute;
  content: "";
  display: block;
  top: 10px;
  left: 0;
  height: 3px;
  width: 18px;
  background-color: #000;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul li a:not(.default-button, .btn) {
  position: relative;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce div#payment .payment_methods .payment-method-description-wrapper .payment_method_bacs ul li a:not(.default-button, .btn):hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce div#payment .place-order {
  border-top: 1px solid #000;
  padding: 27px 0 0 0;
  display: flex;
  flex-direction: column;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin-bottom: 30px;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions::-webkit-scrollbar {
  width: 5px;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions::-webkit-scrollbar-track {
  background-color: #fff;
  margin: 0.1px 0;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row {
  padding: 0;
  margin: 0 0 35px;
  text-align: right;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label {
  margin-bottom: 0;
  display: inline;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label input[type=checkbox]:checked + .woocommerce-terms-and-conditions-checkbox-text:after {
  visibility: visible;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label input[type=checkbox]:checked + .woocommerce-terms-and-conditions-checkbox-text:before {
  background-size: 15px;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .woocommerce-terms-and-conditions-checkbox-text {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  font-size: 15px;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .woocommerce-terms-and-conditions-checkbox-text:before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-right: 12px;
  border: 1px solid #EAEAEA;
  border-radius: 0;
  background-image: url("../../images/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 0;
  transition: all 0.2s linear;
  transform: translateY(10px);
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .woocommerce-terms-and-conditions-checkbox-text a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .woocommerce-terms-and-conditions-checkbox-text a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .woocommerce-terms-and-conditions-checkbox-text::before {
  border: 1px solid #000000;
}
.woocommerce div#payment .place-order .woocommerce-terms-and-conditions-wrapper .form-row label .required {
  display: none;
}
.woocommerce div#payment .place-order .payment-submit-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce div#payment .place-order .payment-submit-wrapper .btn-wrapper {
  margin-right: auto;
}
.woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper {
  width: 100%;
  max-width: 211px;
  margin-top: 9px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper {
    max-width: unset;
  }
}
.woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper .woocommerce-cart-form__coupon .actions .coupon label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 7px;
}
.woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper .woocommerce-cart-form__coupon .actions .coupon input {
  height: 49px;
  border: 1px solid #e7e7e7;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 0;
  width: 100%;
}
.woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper .woocommerce-cart-form__coupon .actions .coupon button, .woocommerce div#payment .place-order .payment-submit-wrapper .coupon-wrapper .woocommerce-cart-form__coupon .actions .coupon .button {
  display: none;
}
.woocommerce div#payment .place-order .payment-submit-wrapper .submit-button {
  float: none !important;
}
.woocommerce .form-pay-payment {
  border-top: 1px solid #000;
  padding-top: 33px;
}
.woocommerce .form-pay-payment .submit-button {
  margin-left: auto;
  margin-top: 0;
}

#mp-wc-pickup-point-shipping {
  width: calc((100% - 186px - 34px) / 2.001);
}
@media only screen and (max-width: 1200px) {
  #mp-wc-pickup-point-shipping {
    width: calc((100% - 17px) / 2.001);
  }
}
@media only screen and (max-width: 900px) {
  #mp-wc-pickup-point-shipping {
    width: 66.6444518494%;
  }
}
@media only screen and (max-width: 650px) {
  #mp-wc-pickup-point-shipping {
    width: 100%;
  }
}
#mp-wc-pickup-point-shipping .mp-please-select-location {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
  margin-bottom: 5px;
}
#mp-wc-pickup-point-shipping .select2 .selection .select2-selection {
  display: flex;
  align-items: center;
  height: 49px;
  border: 1px solid #e7e7e7;
  border-radius: 0;
}
#mp-wc-pickup-point-shipping .select2 .selection .select2-selection .select2-selection__rendered {
  line-height: 28px;
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  color: #000;
}
#mp-wc-pickup-point-shipping .select2 .selection .select2-selection .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
#mp-wc-pickup-point-shipping .select2 .selection .select2-selection .select2-selection__arrow > * {
  transform: translateY(50%);
}
#mp-wc-pickup-point-shipping .mp-selected-pickup-point-info {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  padding: 10px 0 20px;
}

.montonio-pickup-point-select-wrapper .choices .choices__list--dropdown .choices__list .choices__item--choice {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
  color: #000;
  background-color: #fff;
}
.montonio-pickup-point-select-wrapper .choices .choices__list--dropdown .choices__list .choices__item--choice:hover {
  background-color: #f6f6f6;
}
.montonio-pickup-point-select-wrapper .choices .choices__list--dropdown .choices__list .choices__heading {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
  color: #000;
}
.montonio-pickup-point-select-wrapper .choices .choices__list--single .choices__item {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
  color: #000;
}

.select2-container .select2-dropdown {
  border: 1px solid #e7e7e7;
  border-top: none;
}
.select2-container .select2-dropdown .select2-search .select2-search__field {
  outline: none !important;
  font-size: 12px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
}
.select2-container .select2-dropdown .select2-search .select2-search__field:focus {
  border: 1px solid rgba(231, 231, 231, 0.7);
  box-shadow: none;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 5px;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background-color: #fff;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__option {
  outline: none !important;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__option > span {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__option .select2-results__group {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__option .select2-results__options {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 11px;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__option .select2-results__options small {
  font-size: 100%;
  font-weight: unset;
  font-family: "Acumin Pro", sans-serif;
}
.select2-container .select2-dropdown .select2-results > .select2-results__options .select2-results__message {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 12px;
}
.select2-container .select2-dropdown .select2-results .select2-results__option--highlighted[data-selected] {
  background-color: #000;
}
.select2-container .select2-dropdown .select2-results .select2-results__option--highlighted[data-selected] span {
  color: #fff;
}

.woocommerce-order-received h1 {
  display: none;
}

.thank-you-page .woocommerce-order-details, .thank-you-page .woocommerce-customer-details {
  display: none;
}
.thank-you-page .thank-you-success-content {
  width: 100%;
  max-width: 700px;
  margin: 100px auto;
}
.thank-you-page .thank-you-success-content .top-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.thank-you-page .thank-you-success-content .top-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles {
  margin-bottom: 40px;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > h2, .thank-you-page .thank-you-success-content .wysiwyg-styles > h3 {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.thank-you-page .thank-you-success-content .wysiwyg-styles > p {
  font-size: 18px;
  font-style: normal;
  line-height: normal;
}
@media only screen and (max-width: 767px) {
  .thank-you-page .thank-you-success-content .btn-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.thank-you-page .thank-you-success-content .btn-wrapper .custom-button {
  font-size: 18px;
  padding: 18px 33px;
}
.thank-you-page .thank-you-success-content .btn-wrapper .custom-button:not(:first-child) {
  margin-left: 22px;
}
@media only screen and (max-width: 767px) {
  .thank-you-page .thank-you-success-content .btn-wrapper .custom-button:not(:first-child) {
    margin-left: 0;
    margin-top: 15px;
  }
}

.woocommerce-account .custom-breadcrumb {
  margin-bottom: 23px;
}
.woocommerce-account .main-title {
  display: none;
}
.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-account .woocommerce .greeting {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}
.woocommerce-account .woocommerce .delete-account-wrapper a {
  font-size: 11px;
  color: #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .delete-account-wrapper a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}
.woocommerce-account .woocommerce h3, .woocommerce-account .woocommerce h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 33px;
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  width: 345px;
  float: none;
  margin-right: 115px;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-right: 60px;
    width: 270px;
  }
}
@media only screen and (max-width: 900px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-right: 35px;
  }
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-right: 0;
    width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  border: 2px solid #000000;
  list-style: none;
  padding: 50px 30px 60px;
  margin-bottom: 23px;
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
    margin-bottom: 35px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  padding-left: 30px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  font-size: 15px;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
  position: relative;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0;
  margin-bottom: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a {
  position: relative;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:hover:before, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:hover:after {
  width: 100%;
  opacity: 1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:after {
  left: 0;
  background-color: #a1a1a1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:before, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) a:hover {
  color: #a1a1a1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  color: #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard {
  background-image: url("../../images/user-black.svg");
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders {
  background-image: url("../../images/history.svg");
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--cart {
  background-image: url("../../images/bag.svg");
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--wishlist {
  background-image: url("../../images/heart-black.svg");
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .account-promotion-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .account-promotion-wrapper {
    display: none;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .account-promotion-wrapper .single-element {
  display: flex;
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .account-promotion-wrapper .single-element a {
  position: relative;
  top: unset;
  left: unset;
  height: auto;
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .delete-account-wrapper {
    display: none;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  flex: 1;
  float: none;
  width: unset;
  padding-right: 17px;
}
@media only screen and (max-width: 1440px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    padding-right: 0;
  }
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    flex: unset;
    width: 100%;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content {
  flex-wrap: wrap;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul {
  margin: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-NoticeGroup .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content ul {
  width: 100%;
  list-style: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio {
  display: block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio.form-row-wide {
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio > label {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -45px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .input-radio {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio {
  position: relative;
  display: block;
  padding-left: 41px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio img {
  padding-right: 5px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .radio:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper .input-radio:checked + .radio:after {
  visibility: visible;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .theme-radio .woocommerce-input-wrapper > * {
  margin-left: 45px;
  margin-bottom: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .input-detail-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 22px;
  row-gap: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .input-detail-group .form-row {
  flex: 1;
  width: unset;
  max-width: 286px;
  justify-content: flex-end;
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .input-detail-group .form-row {
    flex: unset;
    width: 100%;
    max-width: unset;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row {
  float: none;
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 66px) / 3.001);
  margin: 0 22px 35px 0;
  padding: 0;
}
@media only screen and (max-width: 1365px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row {
    width: calc((100% - 22px) / 2.001);
  }
}
@media only screen and (max-width: 800px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row {
    width: 100%;
    margin: 0 0 22px 0;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media only screen and (max-width: 1365px) and (min-width: 800px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row:nth-of-type(2n) {
    margin-right: 0;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 7px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row .required,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row .optional {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row-small {
  width: 100%;
  max-width: 186px;
}
@media only screen and (max-width: 1365px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row-small {
    width: calc((100% - 22px) / 2.001);
    max-width: unset;
  }
}
@media only screen and (max-width: 800px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row-small {
    width: 100%;
    margin-right: 0;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-row-wide {
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .submit-wrapper {
  margin: -7px 0 0;
}
@media only screen and (max-width: 800px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .submit-wrapper {
    margin: 0;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .submit-wrapper .custom-button {
  font-size: 16px;
  margin: 0;
  padding: 10.5px 19px 10.5px 22px;
  line-height: unset;
  background-color: #000;
  color: #ffffff;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  border: 2px solid #000;
  transition: all 0.15s linear;
  border-radius: 25px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .submit-wrapper .custom-button:hover {
  background-color: #000;
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form.edit-account .form-account-details-section {
  margin-bottom: 42px;
  max-width: 594px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-promotion-wrapper {
  display: none;
  width: 100%;
  margin-top: 70px;
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-promotion-wrapper {
    display: flex;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-promotion-wrapper .single-element {
  display: flex;
  width: 100%;
  max-width: 450px;
  padding-top: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-promotion-wrapper .single-element a img {
  position: absolute;
  top: 0;
  left: 0;
  object-position: left;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .delete-account-wrapper {
  display: none;
  margin-top: 30px;
}
@media only screen and (max-width: 720px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .delete-account-wrapper {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table thead {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr {
    display: block;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr:nth-of-type(2n) {
  background-color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr:not(:last-child) {
  margin-bottom: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td {
  border-color: #e3e3e3;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td {
    display: block;
    text-align: right;
  }
}
@media only screen and (max-width: 1025px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td {
    min-width: unset;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td:first-child {
  border-top: 1px solid #e3e3e3;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td:not(:last-child) {
    border-bottom: none;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td:before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td .woocommerce-button {
  font-family: "Acumin Pro", sans-serif;
  color: #ffffff;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td .woocommerce-button:not(:last-child) {
  margin-right: 7px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .account-orders-table tbody tr td .woocommerce-button:hover {
  color: #ffffff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .table-wrapper {
  margin-bottom: 40px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details {
  margin-bottom: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  border-radius: 0;
  border: 1px solid #e3e3e3;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details > br {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details h3, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details h2, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h3, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h2 {
  margin-bottom: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button {
  font-family: "Acumin Pro", sans-serif;
  color: #ffffff;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button:not(:last-child) {
  margin-right: 7px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button:hover {
  color: #ffffff;
}
.woocommerce-account .woocommerce .woocommerce-form-login {
  width: 100%;
  max-width: 500px;
  margin-top: 0;
  border-radius: 0;
  border: 2px solid #000000;
  padding: 50px 30px 60px;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row {
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 11px;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=text], .woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=password] {
  height: 48px;
  border: 1px solid #EAEAEA;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: unset;
  width: 100%;
  max-width: 300px;
  margin: 0;
  outline: 0;
  line-height: normal;
  max-width: unset;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=checkbox] + span {
  position: relative;
  display: block;
  padding-left: 45px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=checkbox] + span:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.woocommerce-account .woocommerce .woocommerce-form-login .form-row input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.woocommerce-account .woocommerce .woocommerce-form-login .woocommerce-button {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
  padding: 10.5px 22px 10.5px 22px;
  line-height: unset;
  margin-top: 20px;
}
.woocommerce-account .woocommerce .woocommerce-form-login .woocommerce-button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password {
  font-size: 10px;
  color: #000;
  font-weight: 500;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password a {
  position: relative;
  font-size: 10px;
  color: #000;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password a:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: all 0.15s linear;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password a:hover {
  color: #6c6c6c;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password a:hover:before {
  background-color: #6c6c6c;
}

.wpfda-delete-account-container i {
  display: none;
}
.wpfda-delete-account-container .wpfda-password-confirm {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}
.wpfda-delete-account-container .wpfda-password-confirm label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 7px;
}
.wpfda-delete-account-container .wpfda-password-confirm input {
  height: 48px;
  border: 1px solid #EAEAEA;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: unset;
  width: 100%;
  max-width: 300px;
  margin: 0;
  outline: 0;
  line-height: normal;
}
.wpfda-delete-account-container .wpfda-submit {
  margin-top: 20px;
}
.wpfda-delete-account-container .wpfda-submit button {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
}
.wpfda-delete-account-container .wpfda-submit button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}

.registration-page .page-top-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 257px;
  padding: 50px 0 40px;
  margin-bottom: 16px;
  overflow: hidden;
}
.registration-page .page-top-area img {
  -webkit-animation: scaling 50s linear infinite;
  animation: scaling 50s linear infinite;
  z-index: -1;
}
.registration-page .page-top-area .darkness-effect {
  background-color: #000;
  opacity: 0.53;
  z-index: 1;
}
.registration-page .page-top-area .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.registration-page .page-top-area .content .registration-title {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
@media only screen and (max-width: 340px) {
  .registration-page .page-top-area .content .registration-title {
    font-size: 32px;
  }
}
.registration-page .page-top-area .content .wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.registration-page .page-top-area .content .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
.registration-page .page-top-area .content .wysiwyg-styles h1 {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles h2 {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles h3 {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles h4 {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles p {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles a {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles ul li {
  color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles ul li:before {
  background-color: #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles > h2, .registration-page .page-top-area .content .wysiwyg-styles > h3 {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  line-height: normal;
}
.registration-page .page-top-area .content .wysiwyg-styles > h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 340px) {
  .registration-page .page-top-area .content .wysiwyg-styles > h2 {
    font-size: 30px;
  }
}
.registration-page .page-top-area .content .wysiwyg-styles > h3 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 340px) {
  .registration-page .page-top-area .content .wysiwyg-styles > h3 {
    font-size: 28px;
  }
}
.registration-page .page-top-area .content .wysiwyg-styles > p {
  font-size: 27px;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
}
@media only screen and (max-width: 340px) {
  .registration-page .page-top-area .content .wysiwyg-styles > p {
    font-size: 25px;
  }
}
.registration-page .page-top-area .content .wysiwyg-styles > p a {
  border-bottom: 1px solid #fff;
}
.registration-page .page-top-area .content .wysiwyg-styles > p a:hover {
  color: #a1a1a1;
  border-bottom: 1px solid #a1a1a1;
}
.registration-page .registration-types-wrapper {
  margin-top: 31px;
}
.registration-page .registration-types-wrapper .wysiwyg-styles {
  margin-bottom: 33px;
}
.registration-page .registration-types-wrapper .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
.registration-page .registration-types-wrapper .wysiwyg-styles h2 {
  color: #000;
  font-family: "Acumin Pro", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.registration-page .registration-types-wrapper .registration-types {
  display: flex;
  gap: 47px;
}
@media only screen and (max-width: 1300px) {
  .registration-page .registration-types-wrapper .registration-types {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .registration-page .registration-types-wrapper .registration-types {
    flex-wrap: wrap;
  }
}
.registration-page .registration-types-wrapper .registration-types .single-type {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #000;
  background: #FFF;
  padding: 34px 15px 65px;
}
@media only screen and (max-width: 1024px) {
  .registration-page .registration-types-wrapper .registration-types .single-type {
    flex: unset;
    width: 100%;
  }
}
.registration-page .registration-types-wrapper .registration-types .single-type .image-wrapper {
  margin-bottom: 17px;
}
.registration-page .registration-types-wrapper .registration-types .single-type .image-wrapper img {
  object-fit: contain;
}
.registration-page .registration-types-wrapper .registration-types .single-type h3 {
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 23px;
}
.registration-page .registration-types-wrapper .registration-types .single-type .button-wrapper .button {
  font-size: 25px;
  line-height: normal;
  text-transform: none;
  height: unset;
  padding: 12px 41px;
  margin: 0;
}
@media only screen and (min-width: 1025px) {
  .registration-page .registration-form-wrapper.registration-freelance_form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_wide {
    width: 486px;
  }
}
.registration-page .registration-form-wrapper .individual-customers-form {
  margin-top: 30px;
}
.registration-page .registration-form-wrapper .back-link-wrapper {
  margin-bottom: 9px;
}
.registration-page .registration-form-wrapper .back-link-wrapper a {
  color: #3E3E3E;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  transition: all 0.15s linear;
}
.registration-page .registration-form-wrapper .back-link-wrapper a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.registration-page .registration-form-wrapper .woocommerce-form-register {
  border: none;
  padding: 0;
  margin: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .form-row {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section {
  width: 100%;
  margin-bottom: 41px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles > * {
  font-style: normal;
  line-height: normal;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles > h2, .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles > h3 {
  color: #000;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles h2 {
  font-size: 25px;
  margin-bottom: 24px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles h3 {
  font-size: 20px;
  margin-bottom: 21px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles p {
  color: #3E3E3E;
  font-size: 14px;
  margin-bottom: 30px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .wysiwyg-styles p:not(:first-child) {
  margin-top: -17px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 24px;
  width: 100%;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container {
  position: relative;
  width: 285px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 500px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.hidden {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_small {
    width: 180px;
  }
}
@media only screen and (min-width: 1025px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_wide {
    width: 432px;
  }
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_hidden {
  display: none !important;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_checkbox {
  width: 100%;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_checkbox:nth-child(2) {
  margin-top: -9px;
}
@media only screen and (min-width: 1025px) {
  .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_radio {
    width: unset;
  }
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container.b2bking_custom_registration_container_radio .form-row {
  flex-direction: row;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row label {
  color: #3E3E3E;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row label .required {
  visibility: visible;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row label .small {
  font-size: 10px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=text], .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=email], .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=tel], .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=number], .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=password] {
  height: 48px;
  border: 1px solid #EAEAEA;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  border-radius: unset;
  width: 100%;
  max-width: 300px;
  margin: 0;
  outline: 0;
  line-height: normal;
  max-width: unset;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=checkbox]:checked + span:after {
  visibility: visible;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row input[type=checkbox]:checked + span:before {
  background-size: 15px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox {
  margin: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  display: flex;
  align-items: center;
  color: #3E3E3E;
  font-style: normal;
  font-weight: 400;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper:before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-right: 12px;
  border: 1px solid #EAEAEA;
  border-radius: 0;
  background-image: url("../../images/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 0;
  transition: all 0.2s linear;
  transform: translateY(10px);
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper:before {
  transform: translateY(0);
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .woocommerce-form__label-for-checkbox .checkbox-wrapper span {
  flex: 1;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio {
  display: flex;
  align-items: center;
  gap: 27px;
  min-height: 48px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio:before, .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio:after {
  display: none;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .input-radio {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio {
  position: relative;
  display: block;
  padding-left: 41px;
  padding-top: 2px;
  cursor: pointer;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.15s linear;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio a:hover {
  color: #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio img {
  padding-right: 5px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  border: 8px solid #fff;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(1px, -50%);
  z-index: 1;
  visibility: hidden;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .input-radio:checked + .radio:after {
  visibility: visible;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row.form-group-radio .input-radio-wrapper .radio {
  color: #3E3E3E;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper {
  width: 100%;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric {
  height: 49px;
  border: 1px solid #e7e7e7;
  background-color: transparent;
  background-image: url("../../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 19px) calc(50% + 1px);
  background-size: 12px auto;
  position: relative;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric .label {
  font-size: 16px;
  color: #000;
  line-height: 49px;
  height: 100%;
  margin: 0 35px 0 15px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric .button {
  display: none;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric-items {
  border: 1px solid #e7e7e7;
  background-color: #fff;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric-items li.highlighted, .registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric-items li.selected {
  color: #000;
  background: #f6f6f6;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric-items li {
  color: #000;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .form-row .selectric-wrapper .selectric-items li:hover {
  color: #000;
  background: #f6f6f6;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container > p {
  font-size: 12px;
  color: #000000;
  margin: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload {
  position: relative;
  width: 142px;
  height: 133px;
  border: 1px solid #000;
  padding: 0;
  margin: -6px 0 0;
  overflow: hidden;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #3E3E3E;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 22px 15px;
  cursor: pointer;
  transition: background-color 0.15s linear;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label:before {
  content: "";
  display: block;
  -webkit-mask-image: url("../../images/download.svg");
  mask-image: url("../../images/download.svg");
  height: 41px;
  width: 41px;
  background-color: #000000;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin-bottom: 3px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label .required {
  display: none;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label:hover {
  background-color: #f5f5f5;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label:hover img {
  opacity: 0.8;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload label img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.15s linear;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload.full label {
  font-size: 0;
  padding: 0;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload.full label:before {
  display: none;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload.full label:hover {
  background-color: #fff;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .b2bking_custom_registration_container .file-row-upload.invalid {
  border-color: #df184b;
  background-color: rgba(223, 24, 75, 0.3);
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .password-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .registration-form-section .input-field-wrapper .password-wrapper .password-input {
  width: 100%;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .submit-button {
  font-size: 16px;
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  padding: 13px 23px;
  width: fit-content;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  transition: all 0.15s linear;
  font-size: 25px;
  text-transform: unset;
  padding: 20px 22px;
  margin-top: 4px;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .submit-button:hover {
  opacity: 0.9;
  animation: black-pulse 1s;
}
.registration-page .registration-form-wrapper .woocommerce-form-register .submit-button:disabled[disabled] {
  padding: 20px 22px;
}
.registration-page .registration-form-wrapper .individual-customers-form .password-wrapper {
  flex-wrap: unset;
  flex-direction: column;
}
.registration-page .successful-registrations-content {
  margin: 100px auto;
}
.registration-page .successful-registrations-content .top-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.registration-page .successful-registrations-content .top-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.registration-page .successful-registrations-content .title-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.registration-page .successful-registrations-content .title-wrapper h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.registration-page .successful-registrations-content .wysiwyg-styles {
  margin-bottom: 54px;
}
.registration-page .successful-registrations-content .wysiwyg-styles > *:first-child {
  margin-top: 0;
}
.registration-page .successful-registrations-content .wysiwyg-styles > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .registration-page .successful-registrations-content .wysiwyg-styles {
    margin-bottom: 40px;
  }
}
.registration-page .successful-registrations-content .wysiwyg-styles > h2, .registration-page .successful-registrations-content .wysiwyg-styles > h3 {
  font-family: "Acumin Pro", sans-serif;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}
.registration-page .successful-registrations-content .wysiwyg-styles > h2 {
  font-size: 22px;
}
.registration-page .successful-registrations-content .wysiwyg-styles > h3 {
  font-size: 20px;
}
.registration-page .successful-registrations-content .wysiwyg-styles > p {
  font-size: 18px;
  line-height: 34px;
}
@media only screen and (max-width: 767px) {
  .registration-page .successful-registrations-content .wysiwyg-styles > p {
    font-size: 16px;
  }
}
.registration-page .successful-registrations-content .btn-wrapper .custom-button {
  font-size: 18px;
  padding: 18px 33px;
}

.search-results-page .default-page-wrapper {
  margin: 40px 0;
}
.search-results-page .default-page-wrapper .custom-breadcrumb {
  margin-bottom: 21px;
}
.search-results-page .default-page-wrapper .custom-breadcrumb .search-query {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.search-results-page .default-page-wrapper .section-head h1 {
  margin-bottom: 34px;
}
.search-results-page .default-page-wrapper .section-head h1 .search-result-count {
  color: #6c6c6c;
}
.search-results-page .default-page-wrapper .section-head h1 .search-query {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.search-results-page .default-page-wrapper .section-head h1 .smaller-text {
  font-size: 18px;
  font-weight: 400;
}
.search-results-page .default-page-wrapper .search-product-block {
  margin-bottom: 40px !important;
}
@media only screen and (max-width: 767px) {
  .search-results-page .default-page-wrapper .search-product-block {
    margin-bottom: 30px !important;
  }
}
.search-results-page .default-page-wrapper .search-product-block .product-wrapper {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1250px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element {
    width: calc((100% - 21px) / 4.001);
    margin: 0 7px 7px 0;
  }
}
@media screen and (max-width: 1250px) and (min-width: 850px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element {
    width: calc((100% - 12px) / 3.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element {
    width: calc((100% - 6px) / 2.001);
    margin: 0 6px 6px 0;
  }
}
@media screen and (max-width: 600px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element {
    width: 100%;
    margin: 0 0 15px;
  }
}
.search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element:nth-last-of-type(1) {
  margin-right: 0 !important;
}
@media screen and (min-width: 1251px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1250px) and (min-width: 851px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 850px) and (min-width: 600px) {
  .search-results-page .default-page-wrapper .search-product-block .product-wrapper .single-element:nth-of-type(2n) {
    margin-right: 0;
  }
}
.search-results-page .default-page-wrapper .search-result-single-wrapper {
  margin-bottom: 15px;
}
.search-results-page .default-page-wrapper .search-result-single-wrapper a:hover {
  color: #6c6c6c;
}
.search-results-page .default-page-wrapper .search-result-single-wrapper .search-keyword {
  font-weight: 700;
}

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