@charset "UTF-8";
@font-face {
  font-family: 'DMSans-Regular';
  src: url("../fonts/DMSans-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'DMSans-Medium';
  src: url("../fonts/DMSans-Medium.ttf") format("truetype"); }

@font-face {
  font-family: 'DMSans-Bold';
  src: url("../fonts/DMSans-Bold.ttf") format("truetype"); }

@font-face {
  font-family: 'PlayfairDisplay-Regular';
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype"); }

/* Variables */
.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute; }

.tooltipster-box {
  flex: 1 1 auto; }

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-initial {
  top: 0 !important; }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0; }

.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-initial {
  left: -40px !important; }

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0; }

@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.tooltipster-update-fade {
  animation: tooltipster-fading 0.4s; }

@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg); }
  75% {
    transform: rotate(2deg); }
  100% {
    transform: rotate(0); } }

.tooltipster-update-rotate {
  animation: tooltipster-rotating 0.6s; }

@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.tooltipster-update-scale {
  animation: tooltipster-scaling 0.6s; }

.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid #000;
  border-radius: 4px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  line-height: 18px;
  padding: 6px 14px; }

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px; }

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #000; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #000; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #000; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #000; }

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px; }

.fancybox-enabled {
  overflow: hidden; }

.fancybox-enabled body {
  overflow: visible;
  height: 100%; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-container ~ .fancybox-container {
  z-index: 99992; }

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr; }

.fancybox-show-controls .fancybox-controls {
  opacity: 1; }

.fancybox-infobar {
  display: none; }

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all; }

.fancybox-show-buttons .fancybox-buttons {
  display: block; }

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr; }

.fancybox-slider,
.fancybox-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent; }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch; }

.fancybox-slide:before {
  content: "";
  height: 100%;
  width: 0; }

.fancybox-slide:before,
.fancybox-slide > * {
  display: inline-block;
  vertical-align: middle; }

.fancybox-slide > * {
  position: relative;
  padding: 24px;
  margin: 44px 0;
  border-width: 0;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide--image {
  overflow: hidden; }

.fancybox-slide--image:before {
  display: none; }

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent; }

.fancybox-placeholder {
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-image,
.fancybox-placeholder,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0; }

.fancybox-image,
.fancybox-spaceball {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%; }

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: zoom-out; }

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: zoom-in; }

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px Helvetica Neue, Helvetica, Arial, sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none; }

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all; }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none; }

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none; }

.fancybox-button,
.fancybox-infobar__body {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8); }

.fancybox-button:after,
.fancybox-button:before {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block; }

.fancybox-button--disabled:after,
.fancybox-button--disabled:before {
  opacity: 0.5; }

.fancybox-button--left:after {
  left: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.fancybox-button--left:after,
.fancybox-button--right:after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor; }

.fancybox-button--right:after {
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close {
  float: right; }

.fancybox-button--close:after,
.fancybox-button--close:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.fancybox-loading {
  border: 6px solid rgba(99, 99, 99, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: a 0.8s infinite linear;
  animation: a 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@media (max-width: 800px) {
  .fancybox-controls {
    text-align: left; }
  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

.fancybox-button--fullscreen:before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none; }

.fancybox-button--play:before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent; }

.fancybox-button--pause:before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px;
  background: transparent; }

.fancybox-button--thumbs span {
  font-size: 23px; }

.fancybox-button--thumbs:before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, inset 0 0 0 32px, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; }

.fancybox-container--thumbs .fancybox-caption-wrap,
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap {
  right: 220px; }

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box; }

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0; }

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box; }

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1; }

@media (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important; }
  .fancybox-container--thumbs .fancybox-caption-wrap,
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap {
    right: 0; } }

/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  touch-action: pan-y; }

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

.swiper-centered.swiper-horizontal
> .swiper-wrapper
> .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); }

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size); }

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size); }

:root {
  --swiper-navigation-size: 44px; }

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet,
.swiper-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left; }

.swiper-horizontal.swiper-rtl
> .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-horizontal
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube {
  overflow: visible; }

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0; }

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px); }

.swiper-flip {
  overflow: visible; }

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height; }

.swiper-cards {
  overflow: visible; }

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0; }

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option--selectable {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative; }

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--group {
  padding: 0; }

.select2-container--default .select2-results__option--disabled {
  color: #999; }

.select2-container--default .select2-results__option--selected {
  background-color: #ddd; }

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option--group {
  padding: 0; }

.select2-container--classic .select2-results__option--disabled {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.noUi-target, .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-target {
  position: relative; }

.noUi-base, .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1; }

.noUi-connects {
  overflow: hidden;
  z-index: 0; }

.noUi-connect, .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat; }

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto; }

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0; }

.noUi-horizontal .noUi-origin {
  height: 0; }

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute; }

.noUi-touch-area {
  height: 100%;
  width: 100%; }

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
  -webkit-transition: transform .3s;
  transition: transform .3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

.noUi-horizontal {
  height: 18px; }

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px; }

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto; }

.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB; }

.noUi-connects {
  border-radius: 3px; }

.noUi-connect {
  background: #3FB8AF; }

.noUi-draggable {
  cursor: ew-resize; }

.noUi-vertical .noUi-draggable {
  cursor: ns-resize; }

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB; }

.noUi-active {
  box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB; }

.noUi-handle:after, .noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px; }

.noUi-handle:after {
  left: 17px; }

.noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

[disabled] .noUi-connect {
  background: #B8B8B8; }

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
  cursor: not-allowed; }

.noUi-pips, .noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-sub {
  background: #AAA; }

.noUi-marker-large {
  background: #AAA; }

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%); }

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%); }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px; }

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%); }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap; }

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%; }

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%; }

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px; }

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px; }

* {
  margin: 0;
  padding: 0; }

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

:focus {
  outline: none; }

html {
  font-family: sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  text-decoration-skip: objects;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent; }

html * {
  max-height: 1000000px; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

b,
strong,
optgroup {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  max-width: 100%;
  height: auto;
  border: 0;
  flex: none;
  /*lazy-load*/
  opacity: 1;
  transition: opacity .3s; }

img[data-src] {
  /*lazy-load*/
  opacity: 0; }

svg:not(:root) {
  overflow: hidden; }

hr {
  height: 0;
  margin: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit; }

input:required,
textarea:required {
  box-shadow: none; }

button {
  overflow: visible;
  border: none;
  background: none; }

button,
select {
  text-transform: none; }

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  /* 2 */
  cursor: pointer;
  -webkit-appearance: button;
  /* 3 */ }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input {
  line-height: normal; }

input[type='checkbox'],
input[type='radio'] {
  padding: 0; }

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto; }

input[type='search'] {
  -webkit-appearance: textfield; }

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0; }

legend {
  border: 0; }

textarea {
  overflow: auto;
  resize: none; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

ol,
ul,
li {
  list-style: none; }

button,
hr,
input,
textarea {
  border: none; }

label {
  cursor: pointer; }

::-webkit-file-upload-button {
  cursor: pointer; }

.clearfix:before,
.clearfix:after {
  display: table;
  content: ' '; }

.clear,
.clearfix:after {
  clear: both; }

.center {
  text-align: center; }

.ovh {
  overflow: hidden; }

.ovv {
  overflow: visible; }

.hid,
.hidden {
  display: none; }

.dt {
  display: table; }

.dtc {
  display: table-cell;
  vertical-align: middle; }

.getModal {
  cursor: pointer; }

/*responsive video iframe*/
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0; }
  .video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

svg {
  width: 100%;
  height: 100%;
  transition: .3s all; }

.offer {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  background-color: #E64425;
  padding: 10px 0; }
  @media only screen and (max-width: 768px) {
    .offer {
      padding: 8px 0; } }
  .offer .wrap {
    display: flex;
    align-items: center;
    justify-content: center; }
    .offer .wrap img {
      margin-right: 8px; }
    .offer .wrap .btn {
      font-style: normal;
      font-weight: 400;
      font-size: 12px;
      line-height: 100%;
      text-align: center;
      text-transform: capitalize;
      color: #FFFFFF;
      position: absolute;
      right: 16px; }

.header {
  z-index: 4; }
  @media only screen and (max-width: 768px) {
    .header {
      border-bottom: 1px solid #ebeaea; } }
  .header .wrap {
    overflow: visible; }
  .header .box {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header .box .logo {
      width: 140px; }
      @media only screen and (max-width: 768px) {
        .header .box .logo {
          width: 100px; } }
      @media only screen and (max-width: 480px) {
        .header .box .logo {
          width: 29%;
          max-width: 100px; } }
    .header .box .links {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 1024px) {
        .header .box .links {
          display: none; } }
      .header .box .links > a {
        font-family: 'DMSans-Regular';
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        padding: 22px; }
        .header .box .links > a:hover {
          color: #ED3843; }
      .header .box .links .dropdowns {
        display: flex;
        align-items: center;
        gap: 22px; }
        .header .box .links .dropdowns .dropdown, .header .box .links .dropdowns .wpml-ls, .header .box .links .dropdowns .wcml-dropdown {
          position: relative;
          z-index: 3; }
          .header .box .links .dropdowns .dropdown.opened .dropdown-btn svg, .header .box .links .dropdowns .wpml-ls.opened .dropdown-btn svg, .header .box .links .dropdowns .wcml-dropdown.opened .dropdown-btn svg {
            transform: scale(1, -1); }
          .header .box .links .dropdowns .dropdown.opened .wpml-ls-item-toggle::after, .header .box .links .dropdowns .dropdown.opened .wcml-cs-item-toggle::after, .header .box .links .dropdowns .wpml-ls.opened .wpml-ls-item-toggle::after, .header .box .links .dropdowns .wpml-ls.opened .wcml-cs-item-toggle::after, .header .box .links .dropdowns .wcml-dropdown.opened .wpml-ls-item-toggle::after, .header .box .links .dropdowns .wcml-dropdown.opened .wcml-cs-item-toggle::after {
            transform: scale(1, -1) translate(0, 50%); }
          .header .box .links .dropdowns .dropdown.opened .dropdown-menu, .header .box .links .dropdowns .dropdown.opened .wpml-ls-sub-menu, .header .box .links .dropdowns .dropdown.opened .wcml-cs-submenu, .header .box .links .dropdowns .wpml-ls.opened .dropdown-menu, .header .box .links .dropdowns .wpml-ls.opened .wpml-ls-sub-menu, .header .box .links .dropdowns .wpml-ls.opened .wcml-cs-submenu, .header .box .links .dropdowns .wcml-dropdown.opened .dropdown-menu, .header .box .links .dropdowns .wcml-dropdown.opened .wpml-ls-sub-menu, .header .box .links .dropdowns .wcml-dropdown.opened .wcml-cs-submenu {
            top: 50px;
            opacity: 1;
            visibility: visible; }
          .header .box .links .dropdowns .dropdown .dropdown-btn, .header .box .links .dropdowns .dropdown .wpml-ls-item-toggle, .header .box .links .dropdowns .dropdown .wcml-cs-item-toggle, .header .box .links .dropdowns .wpml-ls .dropdown-btn, .header .box .links .dropdowns .wpml-ls .wpml-ls-item-toggle, .header .box .links .dropdowns .wpml-ls .wcml-cs-item-toggle, .header .box .links .dropdowns .wcml-dropdown .dropdown-btn, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
            display: flex;
            align-items: center;
            font-family: 'DMSans-Regular';
            font-weight: 400;
            font-size: 14px;
            text-transform: capitalize;
            padding: 22px; }
            .header .box .links .dropdowns .dropdown .dropdown-btn svg, .header .box .links .dropdowns .dropdown .wpml-ls-item-toggle svg, .header .box .links .dropdowns .dropdown .wcml-cs-item-toggle svg, .header .box .links .dropdowns .wpml-ls .dropdown-btn svg, .header .box .links .dropdowns .wpml-ls .wpml-ls-item-toggle svg, .header .box .links .dropdowns .wpml-ls .wcml-cs-item-toggle svg, .header .box .links .dropdowns .wcml-dropdown .dropdown-btn svg, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle svg, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle svg {
              width: 18px;
              height: 18px;
              margin: 0 0 0 2px; }
          .header .box .links .dropdowns .dropdown .dropdown-menu, .header .box .links .dropdowns .dropdown .wpml-ls-sub-menu, .header .box .links .dropdowns .dropdown .wcml-cs-submenu, .header .box .links .dropdowns .wpml-ls .dropdown-menu, .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu, .header .box .links .dropdowns .wcml-dropdown .dropdown-menu, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu {
            position: absolute;
            top: 60px;
            left: 16px;
            transform: translate(0, 0);
            min-width: 52px;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            box-shadow: 0px 1px 6px rgba(28, 26, 23, 0.24);
            padding: 0 6px;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s; }
            .header .box .links .dropdowns .dropdown .dropdown-menu a, .header .box .links .dropdowns .dropdown .wpml-ls-sub-menu a, .header .box .links .dropdowns .dropdown .wcml-cs-submenu a, .header .box .links .dropdowns .wpml-ls .dropdown-menu a, .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a, .header .box .links .dropdowns .wcml-dropdown .dropdown-menu a, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a {
              font-family: 'DMSans-Medium';
              font-weight: 500;
              font-size: 14px;
              color: #6d6b6a;
              text-transform: capitalize;
              padding: 6px 0;
              border-bottom: 1px solid #ebeaea; }
              .header .box .links .dropdowns .dropdown .dropdown-menu a:hover, .header .box .links .dropdowns .dropdown .wpml-ls-sub-menu a:hover, .header .box .links .dropdowns .dropdown .wcml-cs-submenu a:hover, .header .box .links .dropdowns .wpml-ls .dropdown-menu a:hover, .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .header .box .links .dropdowns .wcml-dropdown .dropdown-menu a:hover, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
                color: #ED3843; }
              .header .box .links .dropdowns .dropdown .dropdown-menu a:last-of-type, .header .box .links .dropdowns .dropdown .wpml-ls-sub-menu a:last-of-type, .header .box .links .dropdowns .dropdown .wcml-cs-submenu a:last-of-type, .header .box .links .dropdowns .wpml-ls .dropdown-menu a:last-of-type, .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .header .box .links .dropdowns .wcml-dropdown .dropdown-menu a:last-of-type, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
                border: none; }
        .header .box .links .dropdowns .wpml-ls, .header .box .links .dropdowns .wcml-dropdown {
          width: auto; }
          .header .box .links .dropdowns .wpml-ls .wpml-ls-item-toggle, .header .box .links .dropdowns .wpml-ls .wcml-cs-item-toggle, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
            border: none;
            background: none;
            line-height: 18px;
            position: relative; }
            .header .box .links .dropdowns .wpml-ls .wpml-ls-item-toggle:after, .header .box .links .dropdowns .wpml-ls .wcml-cs-item-toggle:after, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle:after, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle:after {
              content: "";
              position: absolute;
              top: 50%;
              right: 0;
              transform: translate(0, -50%);
              width: 16px;
              height: 16px;
              background-image: url("/app/themes/pikiwo/front/src/img/svg-icons/chevron-down-black.svg");
              background-size: 16px;
              background-repeat: no-repeat;
              background-position: center;
              border: none;
              transition: 0.2s; }
          .header .box .links .dropdowns .wpml-ls a, .header .box .links .dropdowns .wcml-dropdown a {
            font-size: 14px;
            line-height: 18px; }
            .header .box .links .dropdowns .wpml-ls a:hover, .header .box .links .dropdowns .wcml-dropdown a:hover {
              background: none; }
            .header .box .links .dropdowns .wpml-ls a span, .header .box .links .dropdowns .wcml-dropdown a span {
              vertical-align: baseline; }
          .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu {
            right: auto;
            border-top: none; }
            .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a {
              border-bottom: 1px solid #ebeaea !important; }
              .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
                color: #ED3843; }
              .header .box .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .header .box .links .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .header .box .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
                border: none; }
        .header .box .links .dropdowns .wpml-ls-sub-menu:hover .wpml-ls-item-toggle, .header .box .links .dropdowns .wpml-ls-sub-menu:hover .wcml-cs-item-toggle, .header .box .links .dropdowns .wcml-cs-submenu:hover .wpml-ls-item-toggle, .header .box .links .dropdowns .wcml-cs-submenu:hover .wcml-cs-item-toggle {
          background: none; }
        .header .box .links .dropdowns .wcml-dropdown .wcml-spinner {
          display: none; }
        .header .box .links .dropdowns .wcml-dropdown li {
          border: none;
          background: none; }
        .header .box .links .dropdowns .wcml-dropdown .wcml-cs-submenu li {
          border: none; }
    .header .box .icons {
      display: flex;
      align-items: center; }
      .header .box .icons img {
        display: block; }
      .header .box .icons a,
      .header .box .icons .toggle-search-btn {
        padding: 22px 8px; }
        @media only screen and (max-width: 768px) {
          .header .box .icons a,
          .header .box .icons .toggle-search-btn {
            padding: 10px 6px; } }
        .header .box .icons a.wishlist svg,
        .header .box .icons .toggle-search-btn.wishlist svg {
          fill: transparent;
          stroke: #000; }
        .header .box .icons a svg,
        .header .box .icons .toggle-search-btn svg {
          width: 28px;
          height: 28px; }
      .header .box .icons .toggle-cart-btn {
        position: relative;
        padding: 22px 0 22px 10px; }
        @media only screen and (max-width: 1024px) {
          .header .box .icons .toggle-cart-btn {
            padding: 20px 10px; } }
        @media only screen and (max-width: 768px) {
          .header .box .icons .toggle-cart-btn {
            padding: 10px 6px; } }
        .header .box .icons .toggle-cart-btn .qnt {
          position: absolute;
          top: 22px;
          right: 0;
          width: 16px;
          height: 16px;
          background: #E64425;
          border: 1px solid #ffffff;
          border-radius: 50%;
          color: #ffffff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 10px; }
          @media only screen and (max-width: 1024px) {
            .header .box .icons .toggle-cart-btn .qnt {
              right: 10px; } }
          @media only screen and (max-width: 768px) {
            .header .box .icons .toggle-cart-btn .qnt {
              top: 12px;
              right: 6px; } }
      .header .box .icons .toggle-nav-btn {
        display: none;
        padding: 22px 0 22px 10px; }
        @media only screen and (max-width: 1024px) {
          .header .box .icons .toggle-nav-btn {
            display: flex; } }
        @media only screen and (max-width: 768px) {
          .header .box .icons .toggle-nav-btn {
            padding: 10px 0 10px 6px; } }

.cart-box {
  position: fixed;
  top: 0;
  right: -480px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 480px;
  height: 100vh;
  z-index: 10002;
  transition: 0.4s; }
  @media only screen and (max-width: 768px) {
    .cart-box {
      right: -320px;
      width: 320px; } }
  .cart-box.opened {
    right: 0; }
  .cart-box .cart-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'PlayfairDisplay-Regular';
    font-size: 24px;
    line-height: 40px;
    border-bottom: 1px solid #ebeaea;
    padding: 32px; }
    @media only screen and (max-width: 768px) {
      .cart-box .cart-box-header {
        font-size: 20px;
        line-height: 1;
        padding: 18px 16px; } }
    .cart-box .cart-box-header span {
      color: #E64425; }
    .cart-box .cart-box-header .toggle-cart-btn {
      display: flex; }
      .cart-box .cart-box-header .toggle-cart-btn svg {
        width: 28px;
        height: 28px; }
  .cart-box .empty-cart-box {
    padding: 100px 32px;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .cart-box .empty-cart-box {
        padding: 48px 32px; } }
    .cart-box .empty-cart-box a {
      color: #ED3843;
      text-transform: capitalize; }
  .cart-box .widget_shopping_cart_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden; }
    .cart-box .widget_shopping_cart_content .cart-box-body {
      flex: 1;
      padding: 0 32px;
      overflow: auto; }
      @media only screen and (max-width: 768px) {
        .cart-box .widget_shopping_cart_content .cart-box-body {
          padding: 0 16px; } }
      .cart-box .widget_shopping_cart_content .cart-box-body .product-item {
        position: relative;
        display: flex;
        align-items: flex-start;
        padding: 20px 0;
        border-bottom: 1px solid #ebeaea; }
        @media only screen and (max-width: 768px) {
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item {
            padding: 12px 0; } }
        .cart-box .widget_shopping_cart_content .cart-box-body .product-item:last-of-type {
          border: none; }
        .cart-box .widget_shopping_cart_content .cart-box-body .product-item .delete-from-cart {
          position: absolute;
          top: 20px;
          right: 0;
          width: 24px;
          height: 24px; }
          @media only screen and (max-width: 768px) {
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .delete-from-cart {
              width: 20px;
              height: 20px;
              top: 12px; } }
        .cart-box .widget_shopping_cart_content .cart-box-body .product-item .img-box {
          position: relative;
          width: 116px;
          padding: 0 0 28% 0;
          overflow: hidden; }
          @media only screen and (max-width: 768px) {
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .img-box {
              width: 84px; } }
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .img-box:hover img {
            transform: translate(-50%, -50%) scale(1.1); }
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .img-box img {
            object-fit: cover;
            position: absolute;
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: 0.4s; }
        .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box {
          display: flex;
          flex-direction: column;
          height: 100%;
          width: calc(100% - 116px);
          padding: 0 38px 0 12px; }
          @media only screen and (max-width: 768px) {
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box {
              width: calc(100% - 84px);
              padding: 0 24px 0 8px; } }
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .price-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-family: 'PlayfairDisplay-Regular';
            color: #E64425;
            margin: 0 0 4px 0; }
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .price-row span {
              color: #6d6b6a; }
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .price-row .without-discount {
              color: #6d6b6a;
              text-decoration: line-through; }
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .name {
            display: inline-flex;
            flex: 1;
            font-family: 'DMSans-Medium';
            font-weight: 500;
            font-size: 14px;
            line-height: 1.2;
            margin: 0 0 8px 0; }
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .name:hover {
              color: #ED3843; }
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size,
          .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DMSans-Regular';
            font-size: 14px;
            line-height: 1;
            color: #6d6b6a;
            margin: 0 0 8px 0; }
            @media only screen and (max-width: 768px) {
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt {
                margin: 0 0 4px 0; } }
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size:last-of-type,
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt:last-of-type {
              margin: 0; }
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field,
            .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field {
              display: flex;
              align-items: center;
              border: 1px solid #EBEAEA;
              /* Chrome, Safari, Edge, Opera */
              /* Firefox */ }
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field .btn,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field .btn {
                font-size: 20px;
                padding: 2px 6px; }
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field input,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field input {
                width: 20px;
                font-family: 'DMSans-Medium';
                font-weight: 500;
                font-size: 14px;
                text-align: center; }
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field input::-webkit-outer-spin-button,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field input::-webkit-inner-spin-button,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field input::-webkit-outer-spin-button,
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field input::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0; }
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .size .field input[type=number],
              .cart-box .widget_shopping_cart_content .cart-box-body .product-item .box .qnt .field input[type=number] {
                -moz-appearance: textfield; }
    .cart-box .widget_shopping_cart_content .cart-box-footer .prices-box {
      display: flex;
      flex-direction: column;
      background-color: #f6f6f6;
      padding: 20px 32px 0; }
      @media only screen and (max-width: 768px) {
        .cart-box .widget_shopping_cart_content .cart-box-footer .prices-box {
          padding: 12px 16px 0; } }
      .cart-box .widget_shopping_cart_content .cart-box-footer .prices-box .price-row {
        font-family: 'DMSans-Medium';
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        margin: 0 0 20px 0; }
        @media only screen and (max-width: 768px) {
          .cart-box .widget_shopping_cart_content .cart-box-footer .prices-box .price-row {
            margin: 0 0 12px 0; } }
        .cart-box .widget_shopping_cart_content .cart-box-footer .prices-box .price-row span.tooltipster {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          font-size: 10px;
          width: 16px;
          height: 16px;
          background: #6b5e2e;
          border-radius: 50%;
          font-size: 12px;
          color: #fff;
          cursor: help; }
    .cart-box .widget_shopping_cart_content .cart-box-footer .btn-row {
      display: flex;
      padding: 32px;
      gap: 12px; }
      @media only screen and (max-width: 768px) {
        .cart-box .widget_shopping_cart_content .cart-box-footer .btn-row {
          padding: 18px 16px; } }
      .cart-box .widget_shopping_cart_content .cart-box-footer .btn-row .button {
        width: calc(50% - 6px); }

body.fixed.admin-bar .search-box {
  max-height: calc(100vh - 32px - 97px); }

.search-box {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  max-height: calc(100vh - 83px);
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10003;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  font-family: 'DMSans-Regular';
  font-size: 14px;
  color: #000; }
  .search-box.opened {
    opacity: 1;
    visibility: visible; }
  .search-box .toggle-search-btn {
    position: absolute;
    top: 26px;
    right: 32px;
    display: flex;
    padding: 15px 0;
    z-index: 2;
    color: #505050;
    line-height: 1; }
    .search-box .toggle-search-btn:hover {
      color: #ED3843; }
    @media only screen and (max-width: 768px) {
      .search-box .toggle-search-btn {
        top: 10px; } }
    .search-box .toggle-search-btn:hover svg {
      fill: #ED3843; }
    .search-box .toggle-search-btn svg {
      width: 28px;
      height: 28px;
      fill: #1c1a17;
      transition: 0.2s; }
      @media only screen and (max-width: 768px) {
        .search-box .toggle-search-btn svg {
          width: 24px;
          height: 24px; } }
  .search-box .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible; }
    @media only screen and (max-width: 768px) {
      .search-box .wrap {
        align-items: flex-start; } }
  .search-box .search-input {
    position: relative;
    width: 100%;
    margin: 24px 0 0 0; }
    @media only screen and (max-width: 768px) {
      .search-box .search-input {
        margin: 38px 0 0 0; } }
    .search-box .search-input input {
      width: 100%;
      background-color: #fff;
      border: 1px solid #EBEAEA;
      padding: 15px 16px;
      height: 48px; }
      .search-box .search-input input::placeholder {
        color: #B5B5B5; }
    .search-box .search-input .clean-input {
      position: absolute;
      top: 10px;
      right: 80px;
      width: 28px;
      height: 28px;
      opacity: 0;
      visibility: hidden;
      transition: 0.2s; }
      .search-box .search-input .clean-input.visible {
        opacity: 1;
        visibility: visible; }
  .search-box .search-form {
    display: none; }
  .search-box .search-result {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0 44px; }
    @media only screen and (max-width: 768px) {
      .search-box .search-result {
        flex-direction: column; } }
    .search-box .search-result .top-suggestion {
      display: flex;
      flex-direction: column;
      margin-right: 32px; }
    .search-box .search-result .title {
      color: #505050;
      margin: 0 0 13px 0;
      line-height: 100%;
      white-space: nowrap; }
      @media only screen and (max-width: 768px) {
        .search-box .search-result .title {
          margin: 0 0 8px 0; } }
    .search-box .search-result a {
      color: #B5B5B5;
      line-height: 18px;
      padding: 7px 0; }
      @media only screen and (max-width: 768px) {
        .search-box .search-result a {
          padding: 8px 0; } }
      .search-box .search-result a:hover {
        color: #ED3843; }
      .search-box .search-result a span {
        color: #1c1a17; }
    .search-box .search-result .result {
      position: relative;
      display: flex;
      flex-direction: column; }
      @media only screen and (max-width: 768px) {
        .search-box .search-result .result {
          padding-top: 20px; } }
      .search-box .search-result .result .result-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 16px; }
        .search-box .search-result .result .result-info .result-for {
          line-height: 100%; }
        .search-box .search-result .result .result-info .see-all {
          line-height: 100%;
          color: #000;
          padding: 0; }
      .search-box .search-result .result .list {
        display: flex;
        flex-wrap: wrap;
        gap: 32px 16px; }
        .search-box .search-result .result .list .item {
          padding: 0;
          max-width: 316px;
          width: calc(100% / 3 - 11px); }
          .search-box .search-result .result .list .item:last-of-type {
            display: none; }
            @media only screen and (max-width: 768px) {
              .search-box .search-result .result .list .item:last-of-type {
                display: flex;
                flex-direction: column; } }
          @media only screen and (max-width: 768px) {
            .search-box .search-result .result .list .item {
              width: calc(100% / 2 - 8px); } }
          .search-box .search-result .result .list .item .img-box {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding: 0 0 100% 0;
            margin: 0 0 20px 0; }
            .search-box .search-result .result .list .item .img-box img {
              object-fit: cover;
              position: absolute;
              width: auto;
              height: auto;
              min-width: 100%;
              min-height: 100%;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); }
          .search-box .search-result .result .list .item .name {
            font-family: 'DMSans-Regular';
            font-size: 16px;
            line-height: 100%;
            letter-spacing: -0.01em;
            color: #000000;
            margin: 0 0 16px 0; }
            .search-box .search-result .result .list .item .name:hover {
              color: #ED3843; }
          .search-box .search-result .result .list .item .price-row {
            display: flex;
            flex-direction: row-reverse;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            font-family: 'DMSans-Bold';
            font-size: 16px;
            font-weight: 700;
            line-height: 100%;
            color: #000;
            margin-top: auto; }
            .search-box .search-result .result .list .item .price-row .without-discount {
              font-family: 'DMSans-Medium';
              font-weight: 500;
              color: #B5B5B5;
              text-decoration: line-through; }
              .search-box .search-result .result .list .item .price-row .without-discount + .price span {
                color: #ED3843; }

.tooltipster-noir-customized {
  max-width: 300px; }
  .tooltipster-noir-customized .tooltipster-box {
    border: none;
    background-color: #E64425;
    box-shadow: 0px 1px 6px rgba(28, 26, 23, 0.24); }
    .tooltipster-noir-customized .tooltipster-box .tooltipster-content {
      font-family: 'DMSans-Regular';
      font-size: 14px;
      line-height: 1.5;
      color: #fff;
      padding: 12px 24px; }
  .tooltipster-noir-customized .tooltipster-arrow-border {
    border-top-color: #E64425 !important; }
  .tooltipster-noir-customized .tooltipster-arrow-background {
    border-top-color: #E64425 !important; }

.backing {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1c1a17;
  z-index: 5;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden; }
  .backing.opened {
    opacity: 0.6;
    visibility: visible; }

.nav {
  position: relative;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  z-index: 3; }
  @media only screen and (max-width: 1024px) {
    .nav {
      position: fixed;
      top: 0;
      right: -320px;
      width: 320px;
      height: 100vh;
      background-color: #fff;
      overflow: auto;
      z-index: 5;
      transition: 0.4s; }
      .nav.opened {
        right: 0; } }
  .nav .wrap {
    display: flex;
    overflow: visible; }
    @media only screen and (max-width: 1024px) {
      .nav .wrap {
        flex-direction: column;
        max-width: 320px; } }
    .nav .wrap .toggle-nav-btn {
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      padding: 14px 16px; }
      @media only screen and (max-width: 1024px) {
        .nav .wrap .toggle-nav-btn {
          display: flex; } }
    .nav .wrap .mobile-box {
      display: none; }
      @media only screen and (max-width: 1024px) {
        .nav .wrap .mobile-box {
          display: block; } }
      .nav .wrap .mobile-box .dropdowns {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 26px 0; }
        .nav .wrap .mobile-box .dropdowns .dropdown, .nav .wrap .mobile-box .dropdowns .wpml-ls, .nav .wrap .mobile-box .dropdowns .wcml-dropdown {
          position: relative;
          z-index: 1; }
          .nav .wrap .mobile-box .dropdowns .dropdown.opened .dropdown-btn svg, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .dropdown-btn svg, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .dropdown-btn svg {
            transform: scale(1, -1); }
          .nav .wrap .mobile-box .dropdowns .dropdown.opened .wpml-ls-item-toggle::after, .nav .wrap .mobile-box .dropdowns .dropdown.opened .wcml-cs-item-toggle::after, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .wpml-ls-item-toggle::after, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .wcml-cs-item-toggle::after, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .wpml-ls-item-toggle::after, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .wcml-cs-item-toggle::after {
            transform: scale(1, -1) translate(0, 50%); }
          .nav .wrap .mobile-box .dropdowns .dropdown.opened .dropdown-menu, .nav .wrap .mobile-box .dropdowns .dropdown.opened .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .dropdown.opened .wcml-cs-submenu, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .dropdown-menu, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wpml-ls.opened .wcml-cs-submenu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .dropdown-menu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown.opened .wcml-cs-submenu {
            top: 50px;
            opacity: 1;
            visibility: visible; }
          .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-btn, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-item-toggle, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-btn, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-btn, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
            display: flex;
            align-items: center;
            font-family: 'DMSans-Medium';
            font-weight: 500;
            font-size: 14px;
            text-transform: capitalize;
            padding: 14px 0; }
            .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-btn svg, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-item-toggle svg, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-item-toggle svg, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-btn svg, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-item-toggle svg, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-item-toggle svg, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-btn svg, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-item-toggle svg, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-item-toggle svg {
              width: 18px;
              height: 18px;
              margin: 0 0 0 2px; }
          .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-menu, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-submenu, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-menu, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-menu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translate(-50%, 0);
            min-width: 52px;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            box-shadow: 0px 1px 6px rgba(28, 26, 23, 0.24);
            padding: 0 6px;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s; }
            .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-menu a, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-sub-menu a, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-submenu a, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-menu a, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-menu a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a {
              font-family: 'DMSans-Medium';
              font-weight: 500;
              font-size: 14px;
              color: #6d6b6a;
              text-transform: capitalize;
              padding: 6px 0;
              border-bottom: 1px solid #ebeaea; }
              .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-menu a:hover, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-sub-menu a:hover, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-submenu a:hover, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-menu a:hover, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-menu a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
                color: #ED3843; }
              .nav .wrap .mobile-box .dropdowns .dropdown .dropdown-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .dropdown .wpml-ls-sub-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .dropdown .wcml-cs-submenu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wpml-ls .dropdown-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .dropdown-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
                border: none; }
        .nav .wrap .mobile-box .dropdowns .wpml-ls, .nav .wrap .mobile-box .dropdowns .wcml-dropdown {
          width: auto; }
          .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
            border: none;
            background: none;
            padding-right: 20px;
            line-height: 18px;
            position: relative; }
            .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-item-toggle:after, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-item-toggle:after, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-item-toggle:after, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-item-toggle:after {
              content: "";
              position: absolute;
              top: 50%;
              right: 0;
              transform: translate(0, -50%);
              width: 16px;
              height: 16px;
              background-image: url("/app/themes/pikiwo/front/src/img/svg-icons/chevron-down-black.svg");
              background-size: 16px;
              background-repeat: no-repeat;
              background-position: center;
              border: none;
              transition: 0.2s; }
          .nav .wrap .mobile-box .dropdowns .wpml-ls a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown a {
            font-size: 14px;
            line-height: 18px; }
            .nav .wrap .mobile-box .dropdowns .wpml-ls a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown a:hover {
              background: none; }
            .nav .wrap .mobile-box .dropdowns .wpml-ls a span, .nav .wrap .mobile-box .dropdowns .wcml-dropdown a span {
              vertical-align: baseline; }
          .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu {
            right: auto;
            border-top: none; }
            .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a {
              border-bottom: 1px solid #ebeaea !important; }
              .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
                color: #ED3843; }
              .nav .wrap .mobile-box .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
                border: none; }
        .nav .wrap .mobile-box .dropdowns .wpml-ls-sub-menu:hover .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wpml-ls-sub-menu:hover .wcml-cs-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-cs-submenu:hover .wpml-ls-item-toggle, .nav .wrap .mobile-box .dropdowns .wcml-cs-submenu:hover .wcml-cs-item-toggle {
          background: none; }
        .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-spinner {
          display: none; }
        .nav .wrap .mobile-box .dropdowns .wcml-dropdown li {
          border: none;
          background: none; }
        .nav .wrap .mobile-box .dropdowns .wcml-dropdown .wcml-cs-submenu li {
          border: none; }
      .nav .wrap .mobile-box .links {
        display: flex;
        gap: 32px;
        margin: 0 0 24px 0; }
        .nav .wrap .mobile-box .links a {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 14px;
          text-transform: capitalize; }
    .nav .wrap > .dropdown {
      flex: 1;
      display: flex;
      justify-content: center; }
      @media only screen and (max-width: 1024px) {
        .nav .wrap > .dropdown {
          position: relative;
          justify-content: flex-start;
          flex-direction: column;
          padding: 0 0 12px 0; }
          .nav .wrap > .dropdown:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 0);
            width: 320px;
            height: 1px;
            background-color: #ebeaea; } }
      .nav .wrap > .dropdown.opened .dropdown-btn {
        color: #ED3843; }
        @media only screen and (max-width: 1024px) {
          .nav .wrap > .dropdown.opened .dropdown-btn {
            margin: 0 0 10px 0; } }
        .nav .wrap > .dropdown.opened .dropdown-btn:after {
          opacity: 1;
          visibility: visible; }
        .nav .wrap > .dropdown.opened .dropdown-btn svg {
          transform: scale(1, -1); }
      .nav .wrap > .dropdown.opened .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: flex; }
      .nav .wrap > .dropdown .dropdown-btn {
        position: relative;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        padding: 10px 0; }
        @media only screen and (max-width: 1344px) {
          .nav .wrap > .dropdown .dropdown-btn {
            font-size: 14px; } }
        @media only screen and (max-width: 1024px) {
          .nav .wrap > .dropdown .dropdown-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 16px 0 4px;
            font-size: 16px;
            text-align: left; } }
        .nav .wrap > .dropdown .dropdown-btn:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #ED3843;
          opacity: 0;
          visibility: hidden;
          transition: 0.2s; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .dropdown-btn:after {
              content: none; } }
        .nav .wrap > .dropdown .dropdown-btn svg {
          display: none;
          width: 24px;
          height: 24px; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .dropdown-btn svg {
              display: block; } }
      .nav .wrap > .dropdown .dropdown-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        display: flex;
        align-items: flex-start;
        gap: 72px;
        width: 100%;
        background-color: #fff;
        padding: 30px 16px 30px 120px;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s; }
        @media only screen and (max-width: 1344px) {
          .nav .wrap > .dropdown .dropdown-menu {
            gap: 50px; } }
        @media only screen and (max-width: 1024px) {
          .nav .wrap > .dropdown .dropdown-menu {
            display: none;
            position: relative;
            top: 0;
            padding: 0;
            gap: 0;
            opacity: 1;
            visibility: visible;
            flex-direction: column;
            background-color: transparent; } }
        .nav .wrap > .dropdown .dropdown-menu:after {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          transform: translate(-50%, 0);
          width: 100vw;
          height: 100%;
          background-color: #fff;
          z-index: -1; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .dropdown-menu:after {
              content: none; } }
      .nav .wrap > .dropdown a {
        padding: 10px 0; }
        @media only screen and (max-width: 1024px) {
          .nav .wrap > .dropdown a {
            width: 100%;
            padding: 16px 0;
            border-bottom: 1px solid #ebeaea; }
            .nav .wrap > .dropdown a:last-of-type {
              border: none; } }
        .nav .wrap > .dropdown a:hover {
          color: #ED3843; }
      .nav .wrap > .dropdown .accordion.opened .accordion-header .icon svg, .nav .wrap > .dropdown .nav-accordion.opened .accordion-header .icon svg {
        transform: rotate(135deg); }
      @media only screen and (max-width: 1024px) {
        .nav .wrap > .dropdown .accordion, .nav .wrap > .dropdown .nav-accordion {
          width: 100%;
          border-bottom: 1px solid #ebeaea;
          padding: 8px 0; } }
      .nav .wrap > .dropdown .accordion .accordion-header, .nav .wrap > .dropdown .nav-accordion .accordion-header {
        display: flex;
        align-items: center;
        color: #1c1a17; }
        .nav .wrap > .dropdown .accordion .accordion-header a, .nav .wrap > .dropdown .nav-accordion .accordion-header a {
          display: inline-flex;
          padding: 10px 0;
          border: none; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .accordion .accordion-header a, .nav .wrap > .dropdown .nav-accordion .accordion-header a {
              padding: 8px 0; } }
        .nav .wrap > .dropdown .accordion .accordion-header .icon, .nav .wrap > .dropdown .nav-accordion .accordion-header .icon {
          display: none;
          align-items: center;
          justify-content: center;
          width: 24px;
          height: 24px;
          background-color: #f1f1f1;
          transition: 0.4s; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .accordion .accordion-header .icon, .nav .wrap > .dropdown .nav-accordion .accordion-header .icon {
              display: flex; } }
          .nav .wrap > .dropdown .accordion .accordion-header .icon svg, .nav .wrap > .dropdown .nav-accordion .accordion-header .icon svg {
            width: 18px;
            height: 18px;
            fill: #6d6b6a; }
      @media only screen and (max-width: 1024px) {
        .nav .wrap > .dropdown .accordion .accordion-body, .nav .wrap > .dropdown .nav-accordion .accordion-body {
          display: none; } }
      .nav .wrap > .dropdown .accordion .accordion-body .box, .nav .wrap > .dropdown .nav-accordion .accordion-body .box {
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        .nav .wrap > .dropdown .accordion .accordion-body .box a, .nav .wrap > .dropdown .nav-accordion .accordion-body .box a {
          padding: 10px 0;
          color: #6d6b6a;
          border: none; }
          .nav .wrap > .dropdown .accordion .accordion-body .box a:hover, .nav .wrap > .dropdown .nav-accordion .accordion-body .box a:hover {
            color: #ED3843; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .accordion .accordion-body .box a, .nav .wrap > .dropdown .nav-accordion .accordion-body .box a {
              padding: 8px 0; } }
      .nav .wrap > .dropdown .banner {
        margin: 10px 0 10px auto;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        text-align: center;
        text-transform: capitalize;
        border: none;
        padding: 0; }
        @media only screen and (max-width: 1024px) {
          .nav .wrap > .dropdown .banner {
            margin: 16px 0;
            font-size: 14px; } }
        .nav .wrap > .dropdown .banner .img-box {
          position: relative;
          width: 304px;
          padding: 0 0 66% 0;
          overflow: hidden;
          margin: 0 0 20px 0; }
          @media only screen and (max-width: 1024px) {
            .nav .wrap > .dropdown .banner .img-box {
              width: 100%;
              margin: 0 0 8px 0; } }
          .nav .wrap > .dropdown .banner .img-box img {
            object-fit: cover;
            position: absolute;
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }

.footer {
  color: #505050;
  padding: 100px 0 0;
  font-size: 14px;
  line-height: 100%; }
  @media only screen and (max-width: 768px) {
    .footer {
      padding: 50px 0 0; } }
  .footer .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 100px;
    padding: 52px 16px 20px 16px;
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6; }
    @media only screen and (max-width: 768px) {
      .footer .wrap {
        gap: 0;
        padding: 0 16px;
        border: none; } }
  @media only screen and (max-width: 768px) {
    .footer .col {
      width: 100%; }
      .footer .col:nth-child(2) .accordion {
        border-top: 1px solid #D6D6D6; } }
  .footer .col:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 76px 0 0; }
    @media only screen and (max-width: 1344px) {
      .footer .col:first-of-type {
        margin: 0; } }
    @media only screen and (max-width: 768px) {
      .footer .col:first-of-type {
        display: flex;
        align-items: center;
        justify-content: space-between;
        order: 1;
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #D6D6D6; } }
  .footer .col .logo {
    width: 200px;
    display: inline-block; }
    @media only screen and (max-width: 768px) {
      .footer .col .logo {
        display: none;
        max-width: 35%; } }
  .footer .col .contact-link {
    display: flex;
    align-items: center;
    font-family: 'DMSans-Medium';
    font-weight: 500;
    color: #505050; }
  .footer .col .accordion.opened .accordion-header svg {
    transform: scale(1, -1); }
  @media only screen and (max-width: 768px) {
    .footer .col .accordion {
      border-bottom: 1px solid #D6D6D6; } }
  .footer .col .accordion .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DMSans-Medium';
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 12px 0;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      .footer .col .accordion .accordion-header {
        pointer-events: initial;
        margin: 0;
        padding: 20px 0; } }
    .footer .col .accordion .accordion-header svg {
      display: none;
      width: 16px;
      height: 16px;
      fill: #B5B5B5; }
      @media only screen and (max-width: 768px) {
        .footer .col .accordion .accordion-header svg {
          display: block; } }
  @media only screen and (max-width: 768px) {
    .footer .col .accordion .accordion-body {
      display: none; } }
  .footer .col .accordion .accordion-body .box {
    display: flex;
    align-items: flex-start;
    flex-direction: column; }
    @media only screen and (max-width: 768px) {
      .footer .col .accordion .accordion-body .box {
        padding: 0 0 8px 0; } }
  .footer .col .accordion .accordion-body a {
    padding: 8px 0;
    color: #505050;
    transition: 0.2s; }
    .footer .col .accordion .accordion-body a:hover {
      color: #ED3843;
      opacity: 1; }
    @media only screen and (max-width: 768px) {
      .footer .col .accordion .accordion-body a {
        padding: 8px 0;
        opacity: 1; }
        .footer .col .accordion .accordion-body a:first-of-type {
          padding: 0 0 8px 0; } }
  .footer .col .accordion .social-links {
    display: flex;
    gap: 16px;
    margin-top: 36px; }
    .footer .col .accordion .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.6);
      padding: 0; }
      .footer .col .accordion .social-links a:hover {
        background: white; }
      .footer .col .accordion .social-links a:first-of-type {
        padding: 0; }
      .footer .col .accordion .social-links a svg {
        width: 24px;
        height: 24px; }
  .footer .col .payment-list {
    display: flex;
    flex-direction: column; }
    @media only screen and (max-width: 768px) {
      .footer .col .payment-list {
        align-items: center;
        flex-direction: row; } }
    .footer .col .payment-list span {
      width: 100%;
      font-family: 'DMSans-Medium';
      font-weight: 500;
      text-transform: capitalize;
      margin: 0 0 12px 0; }
      @media only screen and (max-width: 768px) {
        .footer .col .payment-list span {
          width: initial;
          margin: 0 14px 0 0; } }
    .footer .col .payment-list img {
      width: 250px; }

.hero-slider {
  position: relative;
  margin-top: 16px;
  overflow: hidden; }
  .hero-slider .wrap {
    overflow: visible; }
  .hero-slider .swiper {
    overflow: visible; }
    .hero-slider .swiper .swiper-slide {
      height: auto; }
    .hero-slider .swiper .box {
      height: 100%;
      min-height: 680px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      justify-content: flex-start;
      padding: 200px 36px 26px 36px; }
      @media only screen and (max-width: 768px) {
        .hero-slider .swiper .box {
          min-height: initial;
          width: 100%;
          padding: 92px 28px 40px 28px;
          align-items: center;
          text-align: center; } }
      .hero-slider .swiper .box .img-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1; }
        @media only screen and (max-width: 768px) {
          .hero-slider .swiper .box .img-box {
            width: 100%;
            height: 100%; } }
        .hero-slider .swiper .box .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .hero-slider .swiper .box h1 {
        max-width: 676px;
        font-size: 72px;
        text-align: center;
        color: #FFFFFF;
        margin: 0 0 24px 0; }
        @media only screen and (max-width: 768px) {
          .hero-slider .swiper .box h1 {
            max-width: 263px;
            font-size: 28px;
            margin: 0 0 8px 0; } }
      .hero-slider .swiper .box .desc {
        color: #fff;
        max-width: 416px;
        font-size: 18px;
        text-align: center; }
        @media only screen and (max-width: 768px) {
          .hero-slider .swiper .box .desc {
            max-width: 224px;
            font-size: 12px; } }
      .hero-slider .swiper .box .button {
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        background: #E64425;
        background-blend-mode: difference;
        padding: 20px 52px;
        margin-top: 84px; }
        @media only screen and (max-width: 768px) {
          .hero-slider .swiper .box .button {
            font-size: 12px;
            padding: 14px 36px;
            margin-top: 60px; } }
  .hero-slider .swiper-footer {
    position: absolute;
    bottom: 26px;
    width: calc(100% - 32px);
    padding: 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 1024px) {
      .hero-slider .swiper-footer {
        bottom: 80px; } }
    @media only screen and (max-width: 768px) {
      .hero-slider .swiper-footer {
        display: none;
        position: relative;
        justify-content: center;
        bottom: 0;
        margin: 0 0 40px; } }
    .hero-slider .swiper-footer .swiper-pagination {
      font-family: 'DMSans-Medium';
      font-weight: 500;
      position: relative;
      bottom: initial;
      width: initial;
      margin: 0 2px;
      z-index: 1; }
    .hero-slider .swiper-footer .swiper-button {
      position: relative;
      top: initial;
      right: initial;
      bottom: initial;
      left: initial;
      width: initial;
      height: initial;
      padding: 10px;
      margin: 0;
      z-index: 1; }
      .hero-slider .swiper-footer .swiper-button:after {
        content: none; }
      .hero-slider .swiper-footer .swiper-button svg {
        width: 52px;
        height: 14px; }

.advantages .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  color: #000;
  border-bottom: 1px solid #D6D6D6;
  padding: 64px 16px; }
  @media only screen and (max-width: 768px) {
    .advantages .wrap {
      padding: 32px 16px; } }
  .advantages .wrap .box {
    flex: 1; }
    @media only screen and (max-width: 1024px) {
      .advantages .wrap .box {
        flex: initial;
        width: 100%; } }
    .advantages .wrap .box .box-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 19px 0;
      font-family: 'DMSans-Medium';
      font-weight: 500;
      font-size: 22px;
      line-height: 100%; }
      .advantages .wrap .box .box-header svg {
        width: 40px;
        height: 40px;
        fill: #fff; }
        @media only screen and (max-width: 768px) {
          .advantages .wrap .box .box-header svg {
            width: 32px;
            height: 32px; } }
    .advantages .wrap .box .desc {
      font-size: 14px;
      line-height: 125%;
      letter-spacing: -0.01em; }

.popular-categories {
  padding: 88px 0 46px 0; }
  @media only screen and (max-width: 768px) {
    .popular-categories {
      padding: 44px 0 22px 0; } }
  .popular-categories h2 {
    text-align: left;
    margin: 0 0 44px 0; }
    @media only screen and (max-width: 768px) {
      .popular-categories h2 {
        margin: 0 0 24px 0; } }
  .popular-categories .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px; }
    @media only screen and (max-width: 768px) {
      .popular-categories .list {
        gap: 40px 16px; } }
    .popular-categories .list .item {
      width: calc(100% / 4 - 24px);
      display: inline-flex;
      flex-direction: column; }
      @media only screen and (max-width: 1024px) {
        .popular-categories .list .item {
          width: calc(100% / 3 - 24px); } }
      @media only screen and (max-width: 768px) {
        .popular-categories .list .item {
          width: calc(100% / 2 - 8px); } }
      .popular-categories .list .item:hover .img-box img {
        transform: translate(-50%, -50%) scale(1.1); }
      .popular-categories .list .item .img-box {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 0 0 120% 0;
        margin: 0 0 24px 0; }
        @media only screen and (max-width: 768px) {
          .popular-categories .list .item .img-box {
            margin: 0 0 10px 0; } }
        .popular-categories .list .item .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: 0.4s; }
      .popular-categories .list .item .name {
        font-family: 'DMSans-Regular';
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        text-transform: capitalize; }
        @media only screen and (max-width: 768px) {
          .popular-categories .list .item .name {
            font-size: 16px; } }

.products-slider {
  padding: 46px 0;
  text-align: center;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .products-slider {
      padding: 22px 0; } }
  .products-slider .wrap-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
  .products-slider h2 {
    text-align: left;
    margin: 0 0 44px 0; }
    @media only screen and (max-width: 768px) {
      .products-slider h2 {
        margin: 0 0 24px 0; } }
  .products-slider .view-all {
    margin-top: 60px; }
    @media only screen and (max-width: 768px) {
      .products-slider .view-all {
        margin-top: 32px; } }
  .products-slider .swiper {
    display: none; }
    .products-slider .swiper.swiper-initialized {
      display: block; }
  .products-slider .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 24px; }
    @media only screen and (max-width: 768px) {
      .products-slider .swiper-pagination {
        margin-bottom: 12; } }
    .products-slider .swiper-pagination .swiper-button {
      position: relative;
      top: initial;
      right: initial;
      bottom: initial;
      left: initial;
      width: initial;
      height: initial;
      padding: 10px;
      margin: 0;
      z-index: 1; }
      .products-slider .swiper-pagination .swiper-button:after {
        content: none; }
      .products-slider .swiper-pagination .swiper-button svg {
        width: 52px;
        height: 14px; }
        @media only screen and (max-width: 768px) {
          .products-slider .swiper-pagination .swiper-button svg {
            width: 35px; } }
    .products-slider .swiper-pagination .swiper-button-disabled {
      display: none; }

.reviews {
  padding: 100px 0;
  background: #f6f6f6;
  text-align: center;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .reviews {
      padding: 52px 0; } }
  .reviews h4 {
    margin: 0 0 20px 0; }
    @media only screen and (max-width: 768px) {
      .reviews h4 {
        margin: 0 0 16px 0; } }
  .reviews .view-all {
    display: inline-flex;
    font-family: 'DMSans-Medium';
    font-weight: 500;
    color: #ED3843;
    text-transform: capitalize;
    text-decoration: underline;
    margin: 0 0 52px 0; }
    @media only screen and (max-width: 768px) {
      .reviews .view-all {
        margin: 0 0 40px 0; } }
  .reviews .swiper .swiper-slide {
    height: auto; }
  .reviews .swiper .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background-color: #fff;
    text-align: left;
    height: 100%; }
    @media only screen and (max-width: 768px) {
      .reviews .swiper .card {
        padding: 16px; } }
    .reviews .swiper .card .rating {
      position: relative;
      display: flex;
      align-items: flex-start;
      margin: 0 0 12px 0; }
      .reviews .swiper .card .rating.one .gold {
        width: 24px; }
      .reviews .swiper .card .rating.two .gold {
        width: 48px; }
      .reviews .swiper .card .rating.three .gold {
        width: 72px; }
      .reviews .swiper .card .rating.four .gold {
        width: 96px; }
      .reviews .swiper .card .rating.five .gold {
        width: 120px; }
      .reviews .swiper .card .rating .row {
        height: 24px;
        width: 120px;
        overflow: hidden; }
        .reviews .swiper .card .rating .row.grey svg {
          fill: #ebeaea; }
        .reviews .swiper .card .rating .row.gold {
          position: absolute;
          fill: #f2c83e; }
        .reviews .swiper .card .rating .row svg {
          height: 24px;
          width: 120px; }
    .reviews .swiper .card .comment {
      flex: 1;
      font-family: 'DMSans-Regular';
      margin: 0 0 12px 0; }
    .reviews .swiper .card .user {
      display: flex;
      align-items: center; }
      .reviews .swiper .card .user .avatar {
        position: relative;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        margin: 0 12px 0 0;
        overflow: hidden; }
        @media only screen and (max-width: 768px) {
          .reviews .swiper .card .user .avatar {
            width: 44px;
            height: 44px; } }
        .reviews .swiper .card .user .avatar img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .reviews .swiper .card .user .box .name {
        font-family: 'DMSans-Medium';
        font-weight: 500; }
      .reviews .swiper .card .user .box .date {
        font-family: 'DMSans-Regular';
        font-size: 14px;
        color: #6d6b6a; }
  .reviews .swiper-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0; }
    .reviews .swiper-footer .swiper-button {
      position: relative;
      top: initial;
      right: initial;
      bottom: initial;
      left: initial;
      width: initial;
      height: initial;
      padding: 10px;
      margin: 0; }
      .reviews .swiper-footer .swiper-button:after {
        content: none; }
      .reviews .swiper-footer .swiper-button svg {
        width: 52px;
        height: 14px; }

.gift-card {
  padding: 64px 0;
  text-align: center;
  color: #fff;
  background-color: #E64425;
  background-image: url("/app/themes/pikiwo/front/src/img/gift-left.png"), url("/app/themes/pikiwo/front/src/img/gift-right.png");
  background-position: bottom left, top right;
  background-repeat: no-repeat;
  background-size: 368px auto, 368px auto; }
  @media only screen and (max-width: 1344px) {
    .gift-card {
      background-size: 25% auto, 25% auto; } }
  @media only screen and (max-width: 768px) {
    .gift-card {
      background-size: 40% auto, 25% auto; } }
  @media only screen and (max-width: 480px) {
    .gift-card {
      background-image: url("/app/themes/pikiwo/front/src/img/gift-left.png");
      background-size: 100% auto;
      padding: 52px 0 65%; } }
  .gift-card h3 {
    margin: 0 0 20px 0; }
    @media only screen and (max-width: 768px) {
      .gift-card h3 {
        margin: 0 0 16px 0; } }
  .gift-card .desc {
    font-family: 'DMSans-Regular';
    max-width: 700px;
    color: #d2d1d1;
    margin: 0 auto 40px; }
    @media only screen and (max-width: 768px) {
      .gift-card .desc {
        margin: 0 auto 32px; } }

.follow-us {
  padding: 46px 0 0; }
  @media only screen and (max-width: 768px) {
    .follow-us {
      padding: 22px 0; } }
  .follow-us h2 {
    margin: 0 0 16px 0; }
    .follow-us h2 a {
      color: #ED3843; }
  .follow-us .desc {
    font-family: 'DMSans-Regular';
    margin: 0 auto 44px; }
    @media only screen and (max-width: 768px) {
      .follow-us .desc {
        margin: 0 auto 24px; } }
    .follow-us .desc a {
      color: #ED3843;
      pointer-events: none; }

.subscribe-to-newsletter {
  padding: 200px 0 140px;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .subscribe-to-newsletter {
      padding: 50px 0 70px; } }
  @media only screen and (max-width: 768px) {
    .subscribe-to-newsletter .wrap {
      padding: 0 40px; } }
  .subscribe-to-newsletter h2 {
    margin: 0 0 16px 0; }
    @media only screen and (max-width: 768px) {
      .subscribe-to-newsletter h2 {
        margin: 0 0 8px 0; } }
  .subscribe-to-newsletter .desc {
    font-family: 'DMSans-Regular';
    max-width: 700px;
    color: #505050;
    margin: 0 auto 92px; }
    @media only screen and (max-width: 768px) {
      .subscribe-to-newsletter .desc {
        margin: 0 auto 35px; } }
  .subscribe-to-newsletter form .form-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px; }
    @media only screen and (max-width: 768px) {
      .subscribe-to-newsletter form .form-wrap {
        flex-direction: column;
        gap: 24px; } }
    @media only screen and (max-width: 768px) {
      .subscribe-to-newsletter form .form-wrap .wpcf7-form-control-wrap[data-name="EMAIL"] {
        width: 100%; } }
    .subscribe-to-newsletter form .form-wrap input:not(input[type="submit"]) {
      font-family: 'DMSans-Regular';
      font-size: 20px;
      line-height: 100%;
      letter-spacing: -0.01em;
      width: 700px;
      height: 52px;
      padding: 16px 0;
      border-bottom: 1px solid #505050; }
      .subscribe-to-newsletter form .form-wrap input:not(input[type="submit"])::placeholder {
        color: #B5B5B5; }
      @media only screen and (max-width: 1024px) {
        .subscribe-to-newsletter form .form-wrap input:not(input[type="submit"]) {
          width: 500px; } }
      @media only screen and (max-width: 768px) {
        .subscribe-to-newsletter form .form-wrap input:not(input[type="submit"]) {
          font-size: 12px;
          padding: 12px 0;
          width: 100%; } }
    .subscribe-to-newsletter form .form-wrap .button {
      position: relative; }
      .subscribe-to-newsletter form .form-wrap .button input {
        background: none;
        line-height: 100%; }
      .subscribe-to-newsletter form .form-wrap .button .wpcf7-spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0; }
  .subscribe-to-newsletter form .wpcf7-not-valid-tip {
    display: none; }
  .subscribe-to-newsletter form .wpcf7-response-output {
    font-family: 'DMSans-Regular';
    color: #6d6b6a;
    margin: 10px 0 0;
    padding: 0;
    border: none; }

.product-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left; }
  .product-card .badges {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1;
    margin-right: 60px; }
    @media only screen and (max-width: 768px) {
      .product-card .badges {
        top: 12px; } }
    .product-card .badges .badge-wrap .badge {
      font-family: 'DMSans-Medium';
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      color: #fff;
      padding: 8px 16px;
      text-transform: capitalize;
      margin-right: 5px;
      margin-bottom: 5px; }
      @media only screen and (max-width: 768px) {
        .product-card .badges .badge-wrap .badge {
          font-size: 12px;
          padding: 6px 8px; } }
      .product-card .badges .badge-wrap .badge.new {
        background-color: #405f64; }
      .product-card .badges .badge-wrap .badge.discount {
        background-color: #d8a746; }
      .product-card .badges .badge-wrap .badge.bestseller {
        background-color: #6b5e2e; }
  .product-card .wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    backdrop-filter: blur(6px);
    border-radius: 50%;
    z-index: 1; }
    @media only screen and (max-width: 768px) {
      .product-card .wishlist-btn {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px; } }
    .product-card .wishlist-btn.active svg {
      stroke: #eb5757;
      fill: #eb5757; }
    .product-card .wishlist-btn svg {
      width: 22px;
      height: 22px;
      stroke: #000;
      fill: transparent;
      stroke-width: 2px; }
      @media only screen and (max-width: 768px) {
        .product-card .wishlist-btn svg {
          width: 18px;
          height: 18px; } }
  .product-card .img-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 0 100% 0;
    margin: 0 0 20px 0; }
    @media only screen and (max-width: 768px) {
      .product-card .img-box {
        margin: 0 0 8px 0; } }
    .product-card .img-box:hover img {
      transform: translate(-50%, -50%) scale(1.1); }
    .product-card .img-box img {
      object-fit: cover;
      position: absolute;
      width: auto;
      height: auto;
      min-width: 100%;
      min-height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: 0.4s; }
  .product-card .name {
    font-family: 'DMSans-Regular';
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #000000;
    margin: 0 0 16px 0; }
    .product-card .name:hover {
      color: #ED3843; }
  .product-card .price-row {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-family: 'DMSans-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #000; }
    .product-card .price-row .without-discount {
      font-family: 'DMSans-Medium';
      font-weight: 500;
      color: #B5B5B5;
      text-decoration: line-through; }
      .product-card .price-row .without-discount + .price span {
        color: #ED3843; }

.category-hero-section {
  position: relative;
  overflow: hidden;
  color: #fff; }
  .category-hero-section > img {
    object-fit: cover;
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  @media only screen and (max-width: 768px) {
    .category-hero-section .breadcrumbs {
      display: none; } }
  .category-hero-section .breadcrumbs a {
    color: #fff; }
    .category-hero-section .breadcrumbs a:after {
      background-image: url(/app/themes/pikiwo/front/src/img/svg-icons/chevron-right-white.svg); }
  .category-hero-section .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 58px 0 110px; }
    @media only screen and (max-width: 768px) {
      .category-hero-section .box {
        padding: 62px 0; } }
    .category-hero-section .box h2 {
      margin: 0 0 20px 0; }
      @media only screen and (max-width: 768px) {
        .category-hero-section .box h2 {
          margin: 0 0 16px 0; } }
    .category-hero-section .box .desc {
      font-family: 'DMSans-Regular';
      max-width: 700px;
      margin: 0 auto; }

.category-list {
  padding: 100px 0;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .category-list {
      padding: 62px 0 80px; } }
  .category-list h4 {
    margin: 0 0 20px 0; }
    @media only screen and (max-width: 768px) {
      .category-list h4 {
        margin: 0 0 16px 0; } }
  .category-list .view-all {
    display: inline-flex;
    font-family: 'DMSans-Medium';
    font-weight: 500;
    color: #ED3843;
    text-transform: capitalize;
    text-decoration: underline;
    margin: 0 0 52px 0; }
    @media only screen and (max-width: 768px) {
      .category-list .view-all {
        margin: 0 0 40px 0; } }
  .category-list .list {
    display: flex;
    flex-direction: column;
    gap: 40px 0; }
    .category-list .list .row {
      display: flex;
      flex-wrap: wrap;
      gap: 40px 32px; }
      .category-list .list .row:nth-of-type(2n) {
        flex-direction: row-reverse; }
      .category-list .list .row .item:hover h5 {
        color: #ED3843; }
      .category-list .list .row .item:hover .img-box img {
        transform: scale(1.1) translate(-50%, -50%); }
      .category-list .list .row .item:nth-of-type(1) {
        width: calc(50% - 22px); }
        @media only screen and (max-width: 1024px) {
          .category-list .list .row .item:nth-of-type(1) {
            width: 100%; } }
      .category-list .list .row .item:nth-of-type(2), .category-list .list .row .item:nth-of-type(3) {
        width: calc(25% - 22px); }
        @media only screen and (max-width: 1024px) {
          .category-list .list .row .item:nth-of-type(2), .category-list .list .row .item:nth-of-type(3) {
            width: calc(50% - 22px); } }
        @media only screen and (max-width: 768px) {
          .category-list .list .row .item:nth-of-type(2), .category-list .list .row .item:nth-of-type(3) {
            width: 100%; } }
      .category-list .list .row .item .img-box {
        width: 100%;
        height: 360px;
        position: relative;
        overflow: hidden;
        margin: 0 0 20px 0; }
        @media only screen and (max-width: 1024px) {
          .category-list .list .row .item .img-box {
            height: 260px; } }
        @media only screen and (max-width: 768px) {
          .category-list .list .row .item .img-box {
            height: 160px;
            margin: 0 0 16px 0; } }
        .category-list .list .row .item .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: 0.4s; }
      .category-list .list .row .item h5 {
        text-transform: capitalize;
        transition: 0.2s; }

.empty-search-result {
  padding: 100px 0;
  border-bottom: 1px solid #ebeaea;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .empty-search-result {
      padding: 80px 0; } }

.customer-care-page .page-header .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 86px 16px 40px; }
  @media only screen and (max-width: 768px) {
    .customer-care-page .page-header .box {
      gap: 16px;
      padding: 60px 16px 40px; } }
  .customer-care-page .page-header .box .desc {
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #505050; }
    @media only screen and (max-width: 768px) {
      .customer-care-page .page-header .box .desc {
        font-size: 14px; } }

.customer-care-page .menu-card {
  padding-bottom: 46px; }
  .customer-care-page .menu-card .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; }
    .customer-care-page .menu-card .list .item {
      width: calc(100% / 3 - 20px + 20px / 3); }
      @media only screen and (max-width: 768px) {
        .customer-care-page .menu-card .list .item {
          width: calc(100% / 2 - 20px + 20px / 2); } }
      .customer-care-page .menu-card .list .item .card {
        font-family: 'PlayfairDisplay-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 100%;
        letter-spacing: 0.01em;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 56px 20px; }
        @media only screen and (max-width: 768px) {
          .customer-care-page .menu-card .list .item .card {
            font-size: 20px;
            padding: 30px 15px; } }
        .customer-care-page .menu-card .list .item .card:hover {
          color: #ED3843; }
        .customer-care-page .menu-card .list .item .card img {
          width: 60px;
          height: 60px; }
          @media only screen and (max-width: 768px) {
            .customer-care-page .menu-card .list .item .card img {
              width: 40px;
              height: 40px; } }

.guide-page {
  padding-bottom: 100px; }
  @media only screen and (max-width: 768px) {
    .guide-page {
      padding-bottom: 50px; } }
  .guide-page .page-header .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 86px 16px 40px; }
    @media only screen and (max-width: 768px) {
      .guide-page .page-header .box {
        gap: 16px;
        padding: 60px 16px 40px; } }
    .guide-page .page-header .box .desc {
      font-size: 18px;
      line-height: 23px;
      text-align: center;
      letter-spacing: -0.01em;
      color: #505050; }
      @media only screen and (max-width: 768px) {
        .guide-page .page-header .box .desc {
          font-size: 14px; } }
  .guide-page .menu-card {
    padding-bottom: 46px; }
    .guide-page .menu-card .list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px; }
      .guide-page .menu-card .list .item {
        width: calc(100% / 2 - 20px + 20px / 2); }
        @media only screen and (max-width: 768px) {
          .guide-page .menu-card .list .item {
            width: 100%; } }
        .guide-page .menu-card .list .item .card {
          font-family: 'PlayfairDisplay-Regular';
          font-style: normal;
          font-weight: 400;
          font-size: 32px;
          line-height: 100%;
          letter-spacing: 0.01em;
          text-align: center;
          background: #F5F5F5;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 12px;
          padding: 20px;
          height: 216px; }
          @media only screen and (max-width: 768px) {
            .guide-page .menu-card .list .item .card {
              font-size: 20px;
              padding: 30px 15px;
              height: auto; } }
          .guide-page .menu-card .list .item .card:hover {
            color: #ED3843; }
          .guide-page .menu-card .list .item .card img {
            width: 60px;
            height: 60px; }
            @media only screen and (max-width: 768px) {
              .guide-page .menu-card .list .item .card img {
                width: 40px;
                height: 40px; } }

.size-filter .wrap {
  padding-bottom: 60px; }

.size-filter h2 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px; }
  .size-filter h2::before {
    content: '';
    display: block;
    width: 100%;
    border-bottom: 1px solid #D6D6D6;
    position: absolute;
    bottom: 0; }

.size-filter h3 {
  font-family: 'DMSans-Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px; }
  @media only screen and (max-width: 768px) {
    .size-filter h3 {
      font-size: 18px; } }
  .size-filter h3 img {
    width: 24px;
    height: 24px; }
    @media only screen and (max-width: 768px) {
      .size-filter h3 img {
        width: 20px;
        height: 20px; } }

.size-filter .filters {
  display: flex;
  flex-direction: column;
  gap: 32px; }
  .size-filter .filters .filter .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px; }
    .size-filter .filters .filter .list .item {
      font-size: 18px;
      line-height: 23px;
      color: #000000;
      text-align: center;
      min-width: 164px;
      padding: 20px;
      border: 1px solid #D6D6D6; }
      @media only screen and (max-width: 768px) {
        .size-filter .filters .filter .list .item {
          width: calc(100% / 2 - 12px + 12px / 2);
          min-width: auto;
          padding: 15px; } }
      .size-filter .filters .filter .list .item.focus {
        border: 1px solid #505050; }
  .size-filter .filters .note {
    max-width: 664px; }

.size-filter .tabs .tab {
  max-width: 664px;
  display: flex;
  flex-direction: column;
  gap: 40px; }
  .size-filter .tabs .tab .name {
    margin-bottom: 16px;
    position: relative;
    padding: 0 0 0 20px; }
    @media only screen and (max-width: 768px) {
      .size-filter .tabs .tab .name {
        padding: 0 0 0 20px; } }
    .size-filter .tabs .tab .name:after {
      content: '';
      position: absolute;
      top: 6px;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #000; }
  .size-filter .tabs .tab .desc {
    margin-bottom: 20px; }
    .size-filter .tabs .tab .desc h1, .size-filter .tabs .tab .desc h2, .size-filter .tabs .tab .desc h3, .size-filter .tabs .tab .desc h4, .size-filter .tabs .tab .desc h5 {
      text-transform: capitalize;
      margin-bottom: 32px; }
      @media only screen and (max-width: 768px) {
        .size-filter .tabs .tab .desc h1, .size-filter .tabs .tab .desc h2, .size-filter .tabs .tab .desc h3, .size-filter .tabs .tab .desc h4, .size-filter .tabs .tab .desc h5 {
          margin-bottom: 20px; } }
    .size-filter .tabs .tab .desc .wp-block-group, .size-filter .tabs .tab .desc ol, .size-filter .tabs .tab .desc ul {
      margin-bottom: 60px; }
      @media only screen and (max-width: 768px) {
        .size-filter .tabs .tab .desc .wp-block-group, .size-filter .tabs .tab .desc ol, .size-filter .tabs .tab .desc ul {
          margin-bottom: 40px; } }
    .size-filter .tabs .tab .desc p {
      text-align: justify;
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .size-filter .tabs .tab .desc p {
          margin-bottom: 12px; } }
    .size-filter .tabs .tab .desc ol {
      margin-left: 10px;
      counter-reset: my-sec-counter; }
      .size-filter .tabs .tab .desc ol li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .size-filter .tabs .tab .desc ol li {
            padding: 0 0 12px 20px; } }
        .size-filter .tabs .tab .desc ol li:after {
          counter-increment: my-sec-counter;
          content: counter(my-sec-counter) ". ";
          position: absolute;
          top: 0;
          left: 0; }
        .size-filter .tabs .tab .desc ol li:last-of-type {
          padding: 0 0 0 20px; }
    .size-filter .tabs .tab .desc ul {
      margin-left: 10px; }
      .size-filter .tabs .tab .desc ul li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .size-filter .tabs .tab .desc ul li {
            padding: 0 0 12px 20px; } }
        .size-filter .tabs .tab .desc ul li:after {
          content: '';
          position: absolute;
          top: 8px;
          left: 0;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #000; }
        .size-filter .tabs .tab .desc ul li:last-of-type {
          padding: 0 0 0 24px; }

.faq-list {
  padding: 100px 0 72px; }
  @media only screen and (max-width: 768px) {
    .faq-list {
      padding: 48px 0; } }
  .faq-list h2 {
    margin-bottom: 32px; }
  .faq-list .accordion {
    border: 1px solid #ebeaea;
    margin-bottom: 16px; }
    .faq-list .accordion:last-of-type {
      border-bottom: 1px solid #ebeaea;
      margin-bottom: 0; }
    .faq-list .accordion.opened .accordion-header svg {
      transform: scale(1, -1); }
    .faq-list .accordion .accordion-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'DMSans-Medium';
      font-weight: 500;
      font-size: 18px;
      padding: 33px 32px;
      text-transform: capitalize;
      text-align: left; }
      @media only screen and (max-width: 768px) {
        .faq-list .accordion .accordion-header {
          font-size: 16px;
          padding: 16px 10px; } }
      .faq-list .accordion .accordion-header svg {
        min-width: 24px;
        width: 24px;
        height: 24px; }
    .faq-list .accordion .accordion-body {
      font-size: 16px;
      display: none;
      padding: 10px 32px 32px 32px; }
      @media only screen and (max-width: 768px) {
        .faq-list .accordion .accordion-body {
          font-size: 14px;
          padding: 8px 10px 24px 10px; } }
      .faq-list .accordion .accordion-body a {
        color: #E64425; }
      .faq-list .accordion .accordion-body p {
        margin-bottom: 20px; }
        @media only screen and (max-width: 768px) {
          .faq-list .accordion .accordion-body p {
            margin-bottom: 12px; } }
      .faq-list .accordion .accordion-body ol {
        counter-reset: my-sec-counter; }
        .faq-list .accordion .accordion-body ol li {
          position: relative;
          padding: 0 0 20px 24px; }
          @media only screen and (max-width: 768px) {
            .faq-list .accordion .accordion-body ol li {
              padding: 0 0 12px 24px; } }
          .faq-list .accordion .accordion-body ol li:after {
            counter-increment: my-sec-counter;
            content: counter(my-sec-counter) ". ";
            position: absolute;
            top: 0;
            left: 0; }
          .faq-list .accordion .accordion-body ol li:last-of-type {
            padding: 0 0 0 24px; }
      .faq-list .accordion .accordion-body ul li {
        position: relative;
        padding: 0 0 20px 24px; }
        @media only screen and (max-width: 768px) {
          .faq-list .accordion .accordion-body ul li {
            padding: 0 0 12px 24px; } }
        .faq-list .accordion .accordion-body ul li:after {
          content: '';
          position: absolute;
          top: 8px;
          left: 0;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #000; }
        .faq-list .accordion .accordion-body ul li:last-of-type {
          padding: 0 0 0 24px; }

.menu-quick-links {
  padding: 40px 0; }
  .menu-quick-links .row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px; }
    .menu-quick-links .row .col {
      width: calc(100% / 2 - 32px + 32px / 2); }
      @media only screen and (max-width: 768px) {
        .menu-quick-links .row .col {
          width: 100%; } }
      .menu-quick-links .row .col h2 {
        padding-bottom: 24px; }
    .menu-quick-links .row .benefit h2 {
      position: relative; }
      .menu-quick-links .row .benefit h2::before {
        content: '';
        display: block;
        width: 100%;
        border-bottom: 1px solid #D6D6D6;
        position: absolute;
        bottom: 0; }
    .menu-quick-links .row .benefit .list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 32px 0; }
      @media only screen and (max-width: 768px) {
        .menu-quick-links .row .benefit .list {
          padding: 20px 0; } }
      .menu-quick-links .row .benefit .list .item a {
        font-size: 22px;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: -0.01em;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 16px;
        pointer-events: none; }
        @media only screen and (max-width: 768px) {
          .menu-quick-links .row .benefit .list .item a {
            font-size: 16px; } }
        .menu-quick-links .row .benefit .list .item a img {
          width: 40px;
          height: 40px; }
    .menu-quick-links .row .quick-links .list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 32px 40px;
      border: 1px solid #D6D6D6; }
      @media only screen and (max-width: 768px) {
        .menu-quick-links .row .quick-links .list {
          padding: 20px 15px; } }
      .menu-quick-links .row .quick-links .list .item a {
        font-size: 22px;
        line-height: 100%;
        letter-spacing: -0.01em;
        text-decoration: underline;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 16px; }
        @media only screen and (max-width: 768px) {
          .menu-quick-links .row .quick-links .list .item a {
            font-size: 16px; } }
        .menu-quick-links .row .quick-links .list .item a:hover {
          color: #ED3843; }
        .menu-quick-links .row .quick-links .list .item a svg {
          fill: none;
          stroke: #000;
          stroke-width: 2px;
          width: 24px;
          height: 24px; }

.page-hero-section {
  position: relative;
  overflow: hidden;
  color: #fff; }
  .page-hero-section > img {
    object-fit: cover;
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  @media only screen and (max-width: 768px) {
    .page-hero-section .breadcrumbs {
      display: none; } }
  .page-hero-section .breadcrumbs a {
    color: #fff; }
    .page-hero-section .breadcrumbs a:after {
      background-image: url(./../../src/img/svg-icons/chevron-right-white.svg); }
  .page-hero-section .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 10px 0 70px; }
    @media only screen and (max-width: 768px) {
      .page-hero-section .box {
        gap: 16px;
        padding: 38px 0; } }
    .page-hero-section .box .desc {
      font-size: 18px;
      line-height: 23px;
      text-align: center;
      letter-spacing: -0.01em; }
      @media only screen and (max-width: 768px) {
        .page-hero-section .box .desc {
          font-size: 14px; } }

.product-list-section {
  overflow: hidden; }
  .product-list-section .wrap-filter-header {
    background: #F5F5F5; }
  .product-list-section .wrap {
    overflow: visible; }
  .product-list-section .product-list-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 25px 0; }
    @media only screen and (max-width: 768px) {
      .product-list-section .product-list-header {
        padding: 12px 0; } }
    .product-list-section .product-list-header .toggle-mobile-filter {
      display: none;
      align-items: center;
      gap: 8px; }
      @media only screen and (max-width: 1024px) {
        .product-list-section .product-list-header .toggle-mobile-filter {
          display: flex; } }
      .product-list-section .product-list-header .toggle-mobile-filter svg {
        width: 28px;
        height: 28px; }
    .product-list-section .product-list-header .filter-box {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 1024px) {
        .product-list-section .product-list-header .filter-box {
          display: none; } }
      .product-list-section .product-list-header .filter-box .toggle-filters {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 14px;
        text-transform: capitalize;
        margin: 0 32px 0 0; }
        .product-list-section .product-list-header .filter-box .toggle-filters.hidden-filter span:nth-of-type(1) {
          display: none; }
        .product-list-section .product-list-header .filter-box .toggle-filters.hidden-filter span:nth-of-type(2) {
          display: block; }
        .product-list-section .product-list-header .filter-box .toggle-filters span:nth-of-type(2) {
          display: none; }
        .product-list-section .product-list-header .filter-box .toggle-filters svg {
          width: 28px;
          height: 28px; }
      .product-list-section .product-list-header .filter-box .dropdown {
        position: relative;
        z-index: 2; }
        .product-list-section .product-list-header .filter-box .dropdown.opened .dropdown-btn svg {
          transform: scale(1, -1); }
        .product-list-section .product-list-header .filter-box .dropdown.opened .dropdown-menu {
          top: calc(100% + 10px);
          opacity: 1;
          visibility: visible; }
        .product-list-section .product-list-header .filter-box .dropdown .dropdown-btn {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 14px;
          text-transform: capitalize;
          display: flex;
          align-items: center; }
          .product-list-section .product-list-header .filter-box .dropdown .dropdown-btn svg {
            width: 28px;
            height: 28px; }
        .product-list-section .product-list-header .filter-box .dropdown .dropdown-menu {
          position: absolute;
          top: calc(100% + 20px);
          right: 0;
          background: #ffffff;
          box-shadow: 0px 1px 6px rgba(28, 26, 23, 0.24);
          min-width: 174px;
          padding: 2px 12px;
          opacity: 0;
          visibility: hidden;
          transition: 0.2s; }
          .product-list-section .product-list-header .filter-box .dropdown .dropdown-menu a {
            font-size: 14px;
            display: block;
            padding: 10px 0;
            color: #6d6b6a;
            border-bottom: 1px solid #ebeaea; }
            .product-list-section .product-list-header .filter-box .dropdown .dropdown-menu a:hover {
              color: #ED3843; }
            .product-list-section .product-list-header .filter-box .dropdown .dropdown-menu a.active {
              pointer-events: none;
              color: #000; }
            .product-list-section .product-list-header .filter-box .dropdown .dropdown-menu a:last-of-type {
              border: none; }
    .product-list-section .product-list-header .product-view {
      display: flex;
      align-items: center;
      font-family: 'DMSans-Medium';
      font-weight: 500; }
      .product-list-section .product-list-header .product-view span {
        display: block;
        text-transform: capitalize;
        margin: 0 3px 0 0; }
        @media only screen and (max-width: 768px) {
          .product-list-section .product-list-header .product-view span {
            display: none; } }
      .product-list-section .product-list-header .product-view a {
        color: #6d6b6a;
        padding: 3px; }
        .product-list-section .product-list-header .product-view a.active {
          color: #ED3843;
          text-decoration: underline; }
  .product-list-section .box {
    display: flex;
    flex-wrap: wrap;
    padding: 32px 0 100px; }
    @media only screen and (max-width: 768px) {
      .product-list-section .box {
        padding: 24px 0 80px; } }
    .product-list-section .box.hidden-filter .filter {
      display: none;
      width: 0;
      padding: 0; }
    .product-list-section .box.hidden-filter .products {
      width: 100%; }
    .product-list-section .box .filter {
      width: 244px;
      padding: 0 32px 0 0; }
      @media only screen and (max-width: 1024px) {
        .product-list-section .box .filter {
          position: fixed;
          top: 0;
          right: -320px;
          width: 320px;
          height: 100vh;
          background-color: #fff;
          padding: 16px;
          z-index: 4;
          transition: 0.4s;
          overflow: auto; }
          .product-list-section .box .filter.opened {
            right: 0; } }
      .product-list-section .box .filter .toggle-mobile-filter {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        padding: 16px; }
        @media only screen and (max-width: 1024px) {
          .product-list-section .box .filter .toggle-mobile-filter {
            display: block; } }
        .product-list-section .box .filter .toggle-mobile-filter svg {
          width: 24px;
          height: 24px; }
      .product-list-section .box .filter .filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0 0 28px 0; }
        @media only screen and (max-width: 1024px) {
          .product-list-section .box .filter .filter-header {
            justify-content: flex-start; } }
        .product-list-section .box .filter .filter-header .reset-filter {
          display: flex;
          align-items: center;
          font-size: 14px;
          gap: 4px;
          color: #E64425; }
          .product-list-section .box .filter .filter-header .reset-filter svg {
            width: 14px;
            height: 14px;
            fill: #E64425; }
      .product-list-section .box .filter .accordion {
        border-bottom: 1px solid #ebeaea;
        margin: 0 0 24px 0; }
        .product-list-section .box .filter .accordion:last-of-type {
          border: none; }
        .product-list-section .box .filter .accordion.applied-filters .accordion-header span:after {
          opacity: 1; }
        .product-list-section .box .filter .accordion.opened .accordion-header span:after {
          opacity: 0; }
        .product-list-section .box .filter .accordion.opened .accordion-header svg {
          transform: scale(1, -1); }
        .product-list-section .box .filter .accordion.sort {
          display: none; }
          @media only screen and (max-width: 1024px) {
            .product-list-section .box .filter .accordion.sort {
              display: block; } }
        .product-list-section .box .filter .accordion .accordion-header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 16px; }
          .product-list-section .box .filter .accordion .accordion-header svg {
            width: 24px;
            height: 24px; }
          .product-list-section .box .filter .accordion .accordion-header span {
            max-width: calc(100% - 14px);
            position: relative; }
            .product-list-section .box .filter .accordion .accordion-header span:after {
              content: '';
              position: absolute;
              top: 50%;
              right: -14px;
              transform: translate(0, -50%);
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background: #E64425;
              opacity: 0;
              transition: 0.2s; }
        .product-list-section .box .filter .accordion .accordion-body {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 16px 0 0 0; }
          .product-list-section .box .filter .accordion .accordion-body .radio-button {
            display: flex;
            align-items: center;
            margin: 0 0 16px 0; }
            .product-list-section .box .filter .accordion .accordion-body .radio-button:last-of-type {
              margin: 0; }
            .product-list-section .box .filter .accordion .accordion-body .radio-button input {
              position: absolute;
              width: 0;
              visibility: hidden; }
              .product-list-section .box .filter .accordion .accordion-body .radio-button input:checked + .icon {
                border: 1px solid #E64425; }
                .product-list-section .box .filter .accordion .accordion-body .radio-button input:checked + .icon:after {
                  opacity: 1; }
            .product-list-section .box .filter .accordion .accordion-body .radio-button .icon {
              position: relative;
              width: 18px;
              height: 18px;
              border: 1px solid #d2d1d1;
              border-radius: 50%;
              margin: 0 8px 0 0;
              transition: 0.2s; }
              .product-list-section .box .filter .accordion .accordion-body .radio-button .icon:after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 12px;
                height: 12px;
                background: #E64425;
                border-radius: 50%;
                opacity: 0;
                transition: 0.2s; }
          .product-list-section .box .filter .accordion .accordion-body .colors-list {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 24px 9px; }
            .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox {
              position: relative;
              display: flex;
              flex-direction: column;
              align-items: center;
              width: calc(100% / 3 - 8px); }
              @media only screen and (max-width: 1024px) {
                .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox {
                  width: calc(100% / 4 - 7px); } }
              .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox.light-color .color-box {
                border: 1px solid #d2d1d1; }
                .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox.light-color .color-box:after {
                  background-image: url(/app/themes/pikiwo/front/src/img/svg-icons/checked-black.svg); }
              .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox input {
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                visibility: hidden; }
                .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox input:checked + .color-box:after {
                  opacity: 1; }
              .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox .color-box {
                position: relative;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                overflow: hidden;
                margin: 0 0 8px 0; }
                .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox .color-box:after {
                  content: '';
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  background-image: url(/app/themes/pikiwo/front/src/img/svg-icons/checked.svg);
                  background-position: center;
                  background-repeat: no-repeat;
                  background-size: 24px;
                  opacity: 0;
                  transition: 0.2s; }
              .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox p {
                display: flex;
                flex-direction: column;
                align-items: center;
                font-size: 14px;
                line-height: 1.2; }
                .product-list-section .box .filter .accordion .accordion-body .colors-list .color-checkbox p span {
                  color: #A6A6A6; }
          .product-list-section .box .filter .accordion .accordion-body .checkbox {
            display: inline-flex;
            align-items: center;
            margin: 0 0 16px 0; }
            .product-list-section .box .filter .accordion .accordion-body .checkbox:last-of-type {
              margin: 0; }
            .product-list-section .box .filter .accordion .accordion-body .checkbox input {
              position: absolute;
              width: 0;
              visibility: hidden; }
              .product-list-section .box .filter .accordion .accordion-body .checkbox input:checked + .icon:after {
                opacity: 1; }
            .product-list-section .box .filter .accordion .accordion-body .checkbox .icon {
              position: relative;
              width: 20px;
              height: 20px;
              border: 1px solid #D6D6D6;
              margin: 0 8px 0 0;
              transition: 0.2s; }
              .product-list-section .box .filter .accordion .accordion-body .checkbox .icon:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image: url(../img/svg-icons/checked.svg);
                background-position: center;
                background-size: 20px;
                background-repeat: no-repeat;
                opacity: 0;
                transition: 0.2s; }
            .product-list-section .box .filter .accordion .accordion-body .checkbox p {
              font-size: 14px;
              width: calc(100% - 26px); }
              .product-list-section .box .filter .accordion .accordion-body .checkbox p span {
                color: #A6A6A6; }
          .product-list-section .box .filter .accordion .accordion-body .price-slider {
            width: 100%;
            box-shadow: none;
            border: none;
            background: #ebeaea;
            border-radius: 0;
            margin: 0 0 18px 0; }
            .product-list-section .box .filter .accordion .accordion-body .price-slider.noUi-horizontal {
              height: 4px; }
            .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-connects {
              border-radius: 0; }
            .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-connect {
              background-color: #E64425; }
            .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-handle {
              width: 16px;
              height: 16px;
              background: #505050;
              border: 1px solid #505050;
              box-shadow: none;
              border-radius: 50%; }
              .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-handle:before, .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-handle:after {
                content: none; }
              .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-handle.noUi-handle-lower {
                right: -16px; }
              .product-list-section .box .filter .accordion .accordion-body .price-slider .noUi-handle.noUi-handle-upper {
                right: 0; }
          .product-list-section .box .filter .accordion .accordion-body .price-slider-values {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px; }
            .product-list-section .box .filter .accordion .accordion-body .price-slider-values .values {
              display: flex;
              align-items: center; }
              .product-list-section .box .filter .accordion .accordion-body .price-slider-values .values input {
                width: 50%; }
        .product-list-section .box .filter .accordion .clear {
          color: #E64425;
          margin: 6px 0;
          font-size: 14px;
          line-height: 1;
          opacity: 0;
          visibility: hidden;
          transition: 0.2s; }
          .product-list-section .box .filter .accordion .clear.active {
            opacity: 1;
            visibility: visible; }
    .product-list-section .box .filter-backing {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #1c1a17;
      z-index: 3;
      transition: 0.4s;
      opacity: 0;
      visibility: hidden; }
      .product-list-section .box .filter-backing.opened {
        opacity: 0.6;
        visibility: visible; }
    .product-list-section .box .products {
      width: calc(100% - 244px); }
      @media only screen and (max-width: 1024px) {
        .product-list-section .box .products {
          width: 100%; } }
      .product-list-section .box .products .list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 64px 32px; }
        @media only screen and (max-width: 768px) {
          .product-list-section .box .products .list {
            gap: 32px 16px; } }
        .product-list-section .box .products .list .item {
          width: calc(100% / 4 - 24px); }
          @media only screen and (max-width: 1344px) {
            .product-list-section .box .products .list .item {
              width: calc(100% / 3 - 22px); } }
          @media only screen and (max-width: 768px) {
            .product-list-section .box .products .list .item {
              width: calc(100% / 2 - 8px); } }
      .product-list-section .box .products .empty {
        padding: 100px 0;
        margin: 0 auto; }
        @media only screen and (max-width: 768px) {
          .product-list-section .box .products .empty {
            padding: 80px 0; } }

.search-hero-section {
  background: #f6f6f6; }
  @media only screen and (max-width: 768px) {
    .search-hero-section .breadcrumbs {
      display: none; } }
  .search-hero-section .box {
    padding: 32px 0 64px;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .search-hero-section .box {
        padding: 32px 0; } }
    .search-hero-section .box .title {
      margin: 0 0 12px 0; }
    .search-hero-section .box h4 span {
      font-size: 26px;
      color: #6d6b6a; }
      @media only screen and (max-width: 768px) {
        .search-hero-section .box h4 span {
          font-size: 18px; } }

.simple-contact-section {
  padding: 100px 0;
  background: #f6f6f6;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .simple-contact-section {
      padding: 62px 0; } }
  .simple-contact-section h4 {
    margin: 0 0 20px 0; }
    @media only screen and (max-width: 768px) {
      .simple-contact-section h4 {
        margin: 0 0 16px 0; } }
  .simple-contact-section .view-all {
    display: inline-flex;
    font-family: 'DMSans-Medium';
    font-weight: 500;
    color: #ED3843;
    text-transform: capitalize;
    text-decoration: underline;
    margin: 0 0 52px 0; }
    @media only screen and (max-width: 768px) {
      .simple-contact-section .view-all {
        margin: 0 0 40px 0; } }
  .simple-contact-section .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px; }
    @media only screen and (max-width: 768px) {
      .simple-contact-section .list {
        gap: 16px; } }
    .simple-contact-section .list .item {
      display: flex;
      flex-direction: column;
      min-width: 240px;
      gap: 16px;
      text-align: left;
      border: 1px solid #E64425;
      padding: 24px 40px; }
      @media only screen and (max-width: 768px) {
        .simple-contact-section .list .item {
          padding: 16px 24px;
          width: calc(50% - 8px);
          min-width: initial;
          gap: 8px; } }
      @media only screen and (max-width: 480px) {
        .simple-contact-section .list .item {
          width: 100%; } }
      .simple-contact-section .list .item .location {
        font-family: 'DMSans-Medium';
        font-weight: 500;
        text-transform: capitalize; }

.text-page-content {
  padding: 100px 0; }
  @media only screen and (max-width: 768px) {
    .text-page-content {
      padding: 48px 0; } }
  .text-page-content .wrap {
    max-width: 864px; }
    .text-page-content .wrap:last-child > *:last-child:not(:only-child) {
      margin-bottom: 0; }
    .text-page-content .wrap h1, .text-page-content .wrap h2, .text-page-content .wrap h3, .text-page-content .wrap h4, .text-page-content .wrap h5 {
      text-transform: capitalize;
      margin-bottom: 32px; }
      @media only screen and (max-width: 768px) {
        .text-page-content .wrap h1, .text-page-content .wrap h2, .text-page-content .wrap h3, .text-page-content .wrap h4, .text-page-content .wrap h5 {
          margin-bottom: 20px; } }
    .text-page-content .wrap .wp-block-group, .text-page-content .wrap ol, .text-page-content .wrap ul {
      margin-bottom: 80px; }
      @media only screen and (max-width: 768px) {
        .text-page-content .wrap .wp-block-group, .text-page-content .wrap ol, .text-page-content .wrap ul {
          margin-bottom: 60px; } }
    .text-page-content .wrap p {
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .text-page-content .wrap p {
          margin-bottom: 12px; } }
    .text-page-content .wrap ol {
      counter-reset: my-sec-counter; }
      .text-page-content .wrap ol li {
        position: relative;
        padding: 0 0 20px 24px; }
        @media only screen and (max-width: 768px) {
          .text-page-content .wrap ol li {
            padding: 0 0 12px 24px; } }
        .text-page-content .wrap ol li:after {
          counter-increment: my-sec-counter;
          content: counter(my-sec-counter) ". ";
          position: absolute;
          top: 0;
          left: 0; }
        .text-page-content .wrap ol li:last-of-type {
          padding: 0 0 0 24px; }
    .text-page-content .wrap ul li {
      position: relative;
      padding: 0 0 20px 24px; }
      @media only screen and (max-width: 768px) {
        .text-page-content .wrap ul li {
          padding: 0 0 12px 24px; } }
      .text-page-content .wrap ul li:after {
        content: '';
        position: absolute;
        top: 8px;
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #E64425; }
      .text-page-content .wrap ul li:last-of-type {
        padding: 0 0 0 24px; }

.text-page-hero-section {
  background: #f6f6f6; }
  @media only screen and (max-width: 768px) {
    .text-page-hero-section .breadcrumbs {
      display: none; } }
  .text-page-hero-section .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 18px 0 76px; }
    @media only screen and (max-width: 768px) {
      .text-page-hero-section .box {
        gap: 16px;
        padding: 32px 0; } }
    .text-page-hero-section .box .desc {
      font-size: 18px;
      line-height: 23px;
      text-align: center;
      letter-spacing: -0.01em;
      color: #505050; }
      @media only screen and (max-width: 768px) {
        .text-page-hero-section .box .desc {
          font-size: 14px; } }

.with-this-product-buy {
  background: #f6f6f6;
  padding: 100px 0; }
  @media only screen and (max-width: 768px) {
    .with-this-product-buy {
      padding: 52px 0 80px; } }
  .with-this-product-buy h3 {
    margin: 0 0 52px 0;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .with-this-product-buy h3 {
        margin: 0 0 40px 0; } }
  .with-this-product-buy .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 44px 32px; }
    @media only screen and (max-width: 768px) {
      .with-this-product-buy .list {
        gap: 44px 16px; } }
    .with-this-product-buy .list .item {
      width: calc(100% / 4 - 24px); }
      @media only screen and (max-width: 1024px) {
        .with-this-product-buy .list .item {
          width: calc(100% / 3 - 22px); } }
      @media only screen and (max-width: 768px) {
        .with-this-product-buy .list .item {
          width: calc(100% / 2 - 16px); } }

.product-details {
  padding: 64px 0; }
  @media only screen and (max-width: 768px) {
    .product-details {
      padding: 72px 0 52px; } }
  .product-details .tabs .nav-tabs {
    display: flex;
    align-items: center;
    gap: 32px; }
    .product-details .tabs .nav-tabs li {
      position: relative;
      font-family: 'DMSans-Medium';
      font-weight: 500;
      color: #6d6b6a;
      padding: 8px 0;
      text-transform: capitalize;
      cursor: pointer; }
      .product-details .tabs .nav-tabs li.active {
        color: #ED3843; }
        .product-details .tabs .nav-tabs li.active:after {
          opacity: 1; }
      .product-details .tabs .nav-tabs li:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #ED3843;
        opacity: 0; }
  .product-details .tabs .tab-content {
    display: none;
    flex-wrap: wrap;
    padding: 32px 0 0 0;
    gap: 32px;
    font-family: 'DMSans-Regular'; }
    .product-details .tabs .tab-content.active {
      display: flex; }
    .product-details .tabs .tab-content h6 {
      margin: 0 0 12px 0; }
    .product-details .tabs .tab-content .col:nth-of-type(1) {
      width: calc(65% - 32px); }
      @media only screen and (max-width: 768px) {
        .product-details .tabs .tab-content .col:nth-of-type(1) {
          width: 100%; } }
    .product-details .tabs .tab-content .col:nth-of-type(2) {
      width: calc(35% - 32px); }
      @media only screen and (max-width: 768px) {
        .product-details .tabs .tab-content .col:nth-of-type(2) {
          width: 100%; } }
    .product-details .tabs .tab-content h1, .product-details .tabs .tab-content h2, .product-details .tabs .tab-content h3, .product-details .tabs .tab-content h4, .product-details .tabs .tab-content h5 {
      text-transform: capitalize;
      margin-bottom: 32px; }
      @media only screen and (max-width: 768px) {
        .product-details .tabs .tab-content h1, .product-details .tabs .tab-content h2, .product-details .tabs .tab-content h3, .product-details .tabs .tab-content h4, .product-details .tabs .tab-content h5 {
          margin-bottom: 20px; } }
    .product-details .tabs .tab-content .wp-block-group, .product-details .tabs .tab-content ol, .product-details .tabs .tab-content ul {
      margin-bottom: 60px; }
      @media only screen and (max-width: 768px) {
        .product-details .tabs .tab-content .wp-block-group, .product-details .tabs .tab-content ol, .product-details .tabs .tab-content ul {
          margin-bottom: 40px; } }
    .product-details .tabs .tab-content p {
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .product-details .tabs .tab-content p {
          margin-bottom: 12px; } }
    .product-details .tabs .tab-content ol {
      margin-left: 10px;
      counter-reset: my-sec-counter; }
      .product-details .tabs .tab-content ol li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .product-details .tabs .tab-content ol li {
            padding: 0 0 12px 20px; } }
        .product-details .tabs .tab-content ol li:after {
          counter-increment: my-sec-counter;
          content: counter(my-sec-counter) ". ";
          position: absolute;
          top: 0;
          left: 0; }
        .product-details .tabs .tab-content ol li:last-of-type {
          padding: 0 0 0 20px; }
    .product-details .tabs .tab-content ul {
      margin-left: 10px; }
      .product-details .tabs .tab-content ul li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .product-details .tabs .tab-content ul li {
            padding: 0 0 12px 20px; } }
        .product-details .tabs .tab-content ul li:after {
          content: '';
          position: absolute;
          top: 8px;
          left: 0;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #000; }
        .product-details .tabs .tab-content ul li:last-of-type {
          padding: 0 0 0 24px; }

.product-info {
  width: 100%;
  overflow: hidden; }
  .product-info .wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: visible; }
  .product-info .slider-box {
    position: relative;
    display: flex;
    width: 752px;
    gap: 32px;
    margin: 22px 0 0 0; }
    @media only screen and (max-width: 1344px) {
      .product-info .slider-box {
        width: 540px; } }
    @media only screen and (max-width: 1024px) {
      .product-info .slider-box {
        width: 100%;
        margin: 22px 0 44px; } }
    @media only screen and (max-width: 768px) {
      .product-info .slider-box {
        margin: 16px 0 22px; } }
    .product-info .slider-box .badges {
      display: flex;
      flex-wrap: wrap;
      position: absolute;
      top: 24px;
      left: 112px;
      margin-right: 60px;
      z-index: 1; }
      @media only screen and (max-width: 768px) {
        .product-info .slider-box .badges {
          top: 20px;
          left: 0; } }
      .product-info .slider-box .badges .badge-wrap .badge {
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 14px;
        line-height: 1;
        color: #fff;
        padding: 8px 16px;
        text-transform: capitalize;
        margin-right: 5px;
        margin-bottom: 5px; }
        @media only screen and (max-width: 768px) {
          .product-info .slider-box .badges .badge-wrap .badge {
            font-size: 12px;
            padding: 6px 8px; } }
        .product-info .slider-box .badges .badge-wrap .badge.new {
          background-color: #405f64; }
        .product-info .slider-box .badges .badge-wrap .badge.discount {
          background-color: #d8a746; }
        .product-info .slider-box .badges .badge-wrap .badge.bestseller {
          background-color: #6b5e2e; }
    .product-info .slider-box .swiper-gallery {
      width: 80px;
      height: 640px; }
      @media only screen and (max-width: 1344px) {
        .product-info .slider-box .swiper-gallery {
          height: 428px; } }
      @media only screen and (max-width: 1024px) {
        .product-info .slider-box .swiper-gallery {
          width: 80px;
          height: 626px; } }
      @media only screen and (max-width: 768px) {
        .product-info .slider-box .swiper-gallery {
          display: none; } }
      .product-info .slider-box .swiper-gallery .img-box {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 0 0 100% 0; }
        @media only screen and (max-width: 1344px) {
          .product-info .slider-box .swiper-gallery .img-box {
            padding: 0 0 60% 0; } }
        @media only screen and (max-width: 1024px) {
          .product-info .slider-box .swiper-gallery .img-box {
            padding: 0 0 100% 0; } }
        .product-info .slider-box .swiper-gallery .img-box.video:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.4);
          background-image: url(./../../img/svg-icons/play.svg);
          background-position: center;
          background-size: 36px;
          background-repeat: no-repeat;
          z-index: 2; }
        .product-info .slider-box .swiper-gallery .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
    .product-info .slider-box .swiper-img {
      width: calc(100% - 112px); }
      @media only screen and (max-width: 768px) {
        .product-info .slider-box .swiper-img {
          width: 100%;
          overflow: visible; } }
      .product-info .slider-box .swiper-img .img-box {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 0 0 100% 0; }
        .product-info .slider-box .swiper-img .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .product-info .slider-box .swiper-img iframe {
        width: 100%;
        height: 100%; }
      .product-info .slider-box .swiper-img .swiper-button {
        background: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        width: 44px;
        height: 44px; }
        @media only screen and (max-width: 768px) {
          .product-info .slider-box .swiper-img .swiper-button {
            display: none; } }
        .product-info .slider-box .swiper-img .swiper-button:after {
          content: none; }
        .product-info .slider-box .swiper-img .swiper-button svg {
          width: 28px;
          height: 14px; }
  .product-info .info-box {
    position: relative;
    width: calc(100% - 752px);
    padding: 0 0 0 32px;
    margin: 22px 0 0 0; }
    @media only screen and (max-width: 1344px) {
      .product-info .info-box {
        width: calc(100% - 540px); } }
    @media only screen and (max-width: 1024px) {
      .product-info .info-box {
        width: 100%;
        padding: 0; } }
    @media only screen and (max-width: 768px) {
      .product-info .info-box {
        margin: 0; } }
    .product-info .info-box .wishlist-btn {
      position: absolute;
      top: 0;
      right: 0; }
      .product-info .info-box .wishlist-btn.active svg {
        fill: #eb5757;
        stroke: #eb5757; }
      .product-info .info-box .wishlist-btn svg {
        width: 36px;
        height: 36px;
        fill: transparent;
        stroke: #000; }
        @media only screen and (max-width: 768px) {
          .product-info .info-box .wishlist-btn svg {
            width: 24px;
            height: 24px; } }
      .product-info .info-box .wishlist-btn img {
        max-width: 36px; }
        @media only screen and (max-width: 768px) {
          .product-info .info-box .wishlist-btn img {
            max-width: 24px; } }
    .product-info .info-box .prod-code {
      font-family: 'DMSans-Medium';
      font-weight: 500;
      font-size: 14px;
      color: #6d6b6a;
      text-transform: capitalize;
      margin: 0 0 30px 0; }
      @media only screen and (max-width: 768px) {
        .product-info .info-box .prod-code {
          margin: 0 0 22px 0; } }
    .product-info .info-box h4 {
      margin: 0 0 12px 0; }
    .product-info .info-box .price-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-family: 'PlayfairDisplay-Regular';
      font-size: 20px;
      color: #E64425;
      margin: 0 0 40px 0; }
      .product-info .info-box .price-row .without-discount {
        color: #6d6b6a;
        text-decoration: line-through; }
    .product-info .info-box .info-row {
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: 'DMSans-Regular';
      margin: 0 0 12px 0; }
      .product-info .info-box .info-row span {
        font-family: 'DMSans-Medium';
        font-weight: 500; }
      .product-info .info-box .info-row .in-stock {
        font-family: 'DMSans-Regular';
        color: #08a071; }
      .product-info .info-box .info-row .out-of-stock {
        font-family: 'DMSans-Regular';
        color: #eb5757; }
    .product-info .info-box .sizes {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 40px; }
      .product-info .info-box .sizes h6 {
        width: 100%;
        text-transform: initial; }
      .product-info .info-box .sizes .item label {
        display: block;
        border: 1px solid #d2d1d1;
        min-width: 100px;
        padding: 4px;
        text-align: center;
        transition: 0.2s; }
      .product-info .info-box .sizes .item input {
        position: absolute;
        width: 0;
        visibility: hidden; }
        .product-info .info-box .sizes .item input:checked + label {
          background: #E64425;
          border: 1px solid #E64425;
          color: #fff; }
        .product-info .info-box .sizes .item input:disabled + label {
          text-decoration: line-through; }
    .product-info .info-box .woocommerce-variation {
      margin-top: 15px; }
    .product-info .info-box .qnt {
      margin: 40px 0 40px 0; }
      .product-info .info-box .qnt span {
        display: block;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        margin: 0 0 8px 0; }
      .product-info .info-box .qnt .field {
        display: inline-flex;
        align-items: center;
        border: 1px solid #d2d1d1;
        /* Chrome, Safari, Edge, Opera */
        /* Firefox */ }
        .product-info .info-box .qnt .field .btn {
          font-size: 20px;
          padding: 9px 16px; }
        .product-info .info-box .qnt .field input {
          width: 45px;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          text-align: center; }
        .product-info .info-box .qnt .field input::-webkit-outer-spin-button,
        .product-info .info-box .qnt .field input::-webkit-inner-spin-button {
          -webkit-appearance: none;
          margin: 0; }
        .product-info .info-box .qnt .field input[type=number] {
          -moz-appearance: textfield; }
    .product-info .info-box .add-to-cart {
      width: 100%;
      margin: 0 0 12px 0; }
    .product-info .info-box .hint {
      font-size: 14px;
      line-height: 1.3;
      text-align: center; }
    .product-info .info-box .notify-form {
      display: flex;
      flex-direction: column;
      margin: 64px 0; }
      @media only screen and (max-width: 768px) {
        .product-info .info-box .notify-form {
          margin: 52px 0; } }
      .product-info .info-box .notify-form h6 {
        margin: 0 0 8px 0; }
      .product-info .info-box .notify-form p {
        margin: 0 0 24px 0; }
      .product-info .info-box .notify-form .row {
        display: flex;
        width: 100%; }
        .product-info .info-box .notify-form .row input {
          flex: 1;
          width: initial;
          border: 1px solid #d2d1d1;
          padding: 10px 16px; }
        @media only screen and (max-width: 768px) {
          .product-info .info-box .notify-form .row .button {
            padding: 12px; } }
        @media only screen and (max-width: 768px) {
          .product-info .info-box .notify-form .row .button span {
            display: none; } }
        .product-info .info-box .notify-form .row .button svg {
          display: none;
          width: 28px;
          height: 28px;
          fill: #fff;
          transform: rotate(-90deg); }
          @media only screen and (max-width: 768px) {
            .product-info .info-box .notify-form .row .button svg {
              display: block; } }

.contact-us {
  padding: 100px 0; }
  @media only screen and (max-width: 768px) {
    .contact-us {
      padding: 52px 0 80px; } }
  .contact-us .wrap {
    display: flex;
    flex-wrap: wrap; }
  .contact-us .col {
    width: 50%; }
    @media only screen and (max-width: 1024px) {
      .contact-us .col {
        width: 100%; } }
    .contact-us .col h6 {
      width: 100%;
      margin: 0 0 28px 0; }
      @media only screen and (max-width: 768px) {
        .contact-us .col h6 {
          margin: 0 0 8px 0; } }
    .contact-us .col .box {
      display: flex;
      flex-wrap: wrap;
      margin: 0 0 72px 0;
      padding: 0 120px 0 0;
      gap: 0 98px; }
      @media only screen and (max-width: 1344px) {
        .contact-us .col .box {
          padding: 0 64px 0 0;
          gap: 0 48px; } }
      @media only screen and (max-width: 768px) {
        .contact-us .col .box {
          padding: 0; } }
      @media only screen and (max-width: 768px) {
        .contact-us .col .box {
          margin: 0 0 52px 0; } }
      .contact-us .col .box:last-of-type {
        margin: 0; }
        @media only screen and (max-width: 1024px) {
          .contact-us .col .box:last-of-type {
            margin: 0 0 72px 0; } }
        @media only screen and (max-width: 768px) {
          .contact-us .col .box:last-of-type {
            margin: 0 0 52px 0; } }
      .contact-us .col .box .accordion.opened .accordion-header svg {
        transform: scale(1, -1); }
      @media only screen and (max-width: 768px) {
        .contact-us .col .box .accordion {
          width: 100%;
          border-bottom: 1px solid #ebeaea; } }
      .contact-us .col .box .accordion svg {
        width: 24px;
        height: 24px;
        fill: #E64425; }
      .contact-us .col .box .accordion .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 16px 0;
        pointer-events: none; }
        @media only screen and (max-width: 768px) {
          .contact-us .col .box .accordion .accordion-header {
            pointer-events: initial;
            margin: 0;
            padding: 16px 0; } }
        .contact-us .col .box .accordion .accordion-header .row {
          display: flex;
          align-items: center;
          gap: 8px; }
        .contact-us .col .box .accordion .accordion-header svg {
          display: none; }
          @media only screen and (max-width: 768px) {
            .contact-us .col .box .accordion .accordion-header svg {
              display: block; } }
      @media only screen and (max-width: 768px) {
        .contact-us .col .box .accordion .accordion-body {
          display: none;
          padding: 0 0 16px 0; } }
      .contact-us .col .box .accordion .accordion-body .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px; }
        .contact-us .col .box .accordion .accordion-body .contact-info a,
        .contact-us .col .box .accordion .accordion-body .contact-info div {
          display: flex;
          align-items: center;
          gap: 8px; }
        .contact-us .col .box .accordion .accordion-body .contact-info .email {
          color: #ED3843;
          text-decoration: underline; }
      .contact-us .col .box .accordion .accordion-body .list {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 32px; }
        .contact-us .col .box .accordion .accordion-body .list .item {
          display: flex;
          flex-direction: column; }
          @media only screen and (max-width: 768px) {
            .contact-us .col .box .accordion .accordion-body .list .item {
              width: 100%; } }
          .contact-us .col .box .accordion .accordion-body .list .item span {
            color: #6d6b6a; }
    .contact-us .col form {
      display: flex;
      flex-wrap: wrap;
      gap: 32px; }
      @media only screen and (max-width: 768px) {
        .contact-us .col form {
          margin: 16px 0 0 0; } }
      .contact-us .col form .input-row {
        width: calc(50% - 16px);
        display: flex;
        flex-direction: column;
        gap: 8px; }
        @media only screen and (max-width: 768px) {
          .contact-us .col form .input-row {
            width: 100%; } }
        .contact-us .col form .input-row.large {
          width: 100%; }
        .contact-us .col form .input-row span {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 14px; }
        .contact-us .col form .input-row input,
        .contact-us .col form .input-row textarea {
          border: 1px solid #d2d1d1;
          padding: 10px 16px;
          width: 100%; }
        .contact-us .col form .input-row textarea {
          height: 200px; }
      .contact-us .col form .btn-submit {
        display: flex;
        align-items: center;
        position: relative; }
        @media only screen and (max-width: 768px) {
          .contact-us .col form .btn-submit {
            width: 100%; } }
        .contact-us .col form .btn-submit .button {
          min-width: 200px; }
          @media only screen and (max-width: 768px) {
            .contact-us .col form .btn-submit .button {
              width: 100%; } }
        .contact-us .col form .btn-submit .wpcf7-spinner {
          position: absolute;
          top: 50%;
          right: 20px;
          transform: translate(0, -50%);
          margin: 0; }
      .contact-us .col form .wpcf7-response-output {
        font-family: 'DMSans-Regular';
        color: #6d6b6a;
        margin: 10px 0 0;
        padding: 0;
        border: none; }

.bag {
  background: #F6F6F6; }
  @media only screen and (max-width: 768px) {
    .bag {
      background: #fff;
      padding: 0; } }
  .bag .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 0; }
    @media only screen and (max-width: 768px) {
      .bag .wrap {
        padding: 0; } }
  .bag .col {
    display: flex;
    flex-direction: column;
    gap: 32px; }
    @media only screen and (max-width: 768px) {
      .bag .col {
        gap: 20px; } }
    .bag .col:nth-of-type(1) {
      width: calc(100% - 448px); }
      @media only screen and (max-width: 1024px) {
        .bag .col:nth-of-type(1) {
          width: 100%; } }
    .bag .col:nth-of-type(2) {
      width: 416px; }
      @media only screen and (max-width: 1024px) {
        .bag .col:nth-of-type(2) {
          width: 100%; } }
  .bag .card {
    display: flex;
    flex-direction: column;
    background-color: #Fff; }
    .bag .card .card-header {
      padding: 32px;
      border-bottom: 1px solid #EBEAEA; }
      @media only screen and (max-width: 768px) {
        .bag .card .card-header {
          padding: 16px 0; } }
      .bag .card .card-header h4 span {
        color: #6D6B6A; }
    .bag .card .product-item {
      position: relative;
      display: flex;
      align-items: flex-start;
      padding: 20px 0;
      margin: 0 32px;
      border-bottom: 1px solid #ebeaea; }
      @media only screen and (max-width: 768px) {
        .bag .card .product-item {
          padding: 16px 0;
          margin: 0; } }
      .bag .card .product-item:last-of-type {
        border: none; }
      .bag .card .product-item .delete-from-cart {
        position: absolute;
        top: 20px;
        right: 0;
        width: 24px;
        height: 24px; }
        @media only screen and (max-width: 768px) {
          .bag .card .product-item .delete-from-cart {
            width: 20px;
            height: 20px;
            top: 12px; } }
      .bag .card .product-item .img-box {
        position: relative;
        width: 116px;
        height: 116px;
        overflow: hidden; }
        @media only screen and (max-width: 768px) {
          .bag .card .product-item .img-box {
            width: 84px;
            height: 84px; } }
        .bag .card .product-item .img-box:hover img {
          transform: translate(-50%, -50%) scale(1.1); }
        .bag .card .product-item .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: 0.4s; }
      .bag .card .product-item .box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        width: calc(100% - 116px);
        padding: 0 38px 0 12px; }
        @media only screen and (max-width: 768px) {
          .bag .card .product-item .box {
            width: calc(100% - 84px);
            padding: 0 24px 0 8px; } }
        .bag .card .product-item .box .price-row {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 4px 8px;
          font-family: 'PlayfairDisplay-Regular';
          color: #E64425;
          margin: 0 0 4px 0; }
          .bag .card .product-item .box .price-row span {
            color: #6d6b6a; }
          .bag .card .product-item .box .price-row .without-discount {
            color: #6d6b6a;
            text-decoration: line-through; }
        .bag .card .product-item .box .name {
          display: inline-flex;
          flex: 1;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 14px;
          line-height: 1.2;
          margin: 0 0 8px 0; }
          .bag .card .product-item .box .name:hover {
            color: #ED3843; }
        .bag .card .product-item .box .size,
        .bag .card .product-item .box .qnt {
          display: flex;
          align-items: center;
          gap: 8px;
          font-family: 'DMSans-Regular';
          font-size: 14px;
          line-height: 1;
          color: #6d6b6a;
          margin: 0 0 8px 0; }
          @media only screen and (max-width: 768px) {
            .bag .card .product-item .box .size,
            .bag .card .product-item .box .qnt {
              margin: 0 0 4px 0; } }
          .bag .card .product-item .box .size:last-of-type,
          .bag .card .product-item .box .qnt:last-of-type {
            margin: 0; }
          .bag .card .product-item .box .size .field,
          .bag .card .product-item .box .qnt .field {
            display: flex;
            align-items: center;
            border: 1px solid #EBEAEA;
            /* Chrome, Safari, Edge, Opera */
            /* Firefox */ }
            .bag .card .product-item .box .size .field .btn,
            .bag .card .product-item .box .qnt .field .btn {
              font-size: 20px;
              padding: 2px 6px; }
            .bag .card .product-item .box .size .field input,
            .bag .card .product-item .box .qnt .field input {
              width: 20px;
              font-family: 'DMSans-Medium';
              font-weight: 500;
              font-size: 14px;
              text-align: center; }
            .bag .card .product-item .box .size .field input::-webkit-outer-spin-button,
            .bag .card .product-item .box .size .field input::-webkit-inner-spin-button,
            .bag .card .product-item .box .qnt .field input::-webkit-outer-spin-button,
            .bag .card .product-item .box .qnt .field input::-webkit-inner-spin-button {
              -webkit-appearance: none;
              margin: 0; }
            .bag .card .product-item .box .size .field input[type=number],
            .bag .card .product-item .box .qnt .field input[type=number] {
              -moz-appearance: textfield; }
    .bag .card .gift {
      display: flex;
      flex-direction: column;
      gap: 52px;
      padding: 32px; }
      @media only screen and (max-width: 768px) {
        .bag .card .gift {
          gap: 40px;
          padding: 16px 0; } }
      .bag .card .gift .row {
        display: flex; }
        .bag .card .gift .row input {
          position: absolute;
          width: 0;
          visibility: hidden; }
          .bag .card .gift .row input:checked + label {
            background-color: #81564E;
            border: 1px solid #81564E; }
            .bag .card .gift .row input:checked + label:after {
              opacity: 1;
              visibility: visible; }
        .bag .card .gift .row label {
          position: relative;
          width: 20px;
          height: 20px;
          border: 1px solid #D2D1D1; }
          .bag .card .gift .row label:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(./../../img/svg-icons/checked.svg);
            background-size: 12px;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            visibility: hidden;
            pointer-events: none; }
        .bag .card .gift .row .box {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: calc(100% - 20px);
          padding: 0 0 0 12px; }
          .bag .card .gift .row .box .title {
            font-family: 'PlayfairDisplay-Regular';
            font-size: 20px;
            margin: 0 0 12px 0; }
            @media only screen and (max-width: 768px) {
              .bag .card .gift .row .box .title {
                font-size: 18px; } }
            .bag .card .gift .row .box .title span {
              color: #6D6B6A; }
          .bag .card .gift .row .box a {
            font-family: 'DMSans-Medium';
            font-weight: 500;
            font-size: 14px;
            color: #81564E;
            text-transform: capitalize;
            margin: 0 0 8px 0; }
          .bag .card .gift .row .box .desc {
            font-family: 'DMSans-Regular';
            color: #6D6B6A; }
            @media only screen and (max-width: 768px) {
              .bag .card .gift .row .box .desc {
                font-size: 14px; } }
    .bag .card .summary {
      padding: 10px 0 0 0; }
      @media only screen and (max-width: 768px) {
        .bag .card .summary {
          padding: 8px 0 0 0; } }
      .bag .card .summary .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 32px;
        font-family: 'DMSans-Medium';
        font-weight: 500; }
        @media only screen and (max-width: 768px) {
          .bag .card .summary .row {
            padding: 8px 0; } }
        .bag .card .summary .row.total {
          padding: 20px 32px;
          border-top: 1px solid #EBEAEA;
          border-bottom: 1px solid #EBEAEA; }
          @media only screen and (max-width: 768px) {
            .bag .card .summary .row.total {
              padding: 16px 0; } }
        .bag .card .summary .row div {
          display: flex;
          align-items: center; }
          .bag .card .summary .row div span.tooltipster {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: #6b5e2e;
            border-radius: 50%;
            font-size: 12px;
            color: #fff;
            margin: 0 0 0 8px;
            cursor: help; }
          .bag .card .summary .row div.total-price {
            font-family: 'DMSans-Regular';
            font-size: 24px; }
            @media only screen and (max-width: 768px) {
              .bag .card .summary .row div.total-price {
                font-size: 20px; } }
        .bag .card .summary .row.coupons {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 0 32px 20px; }
          @media only screen and (max-width: 768px) {
            .bag .card .summary .row.coupons {
              padding: 0 0 16px; } }
          .bag .card .summary .row.coupons .coupon {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-family: 'DMSans-Regular';
            color: #6D6B6A; }
            .bag .card .summary .row.coupons .coupon:not(:first-child) {
              margin: 12px 0 0 0; }
            @media only screen and (max-width: 768px) {
              .bag .card .summary .row.coupons .coupon {
                font-size: 14px; } }
            .bag .card .summary .row.coupons .coupon .discount {
              width: 100%;
              display: flex;
              justify-content: space-between; }
              .bag .card .summary .row.coupons .coupon .discount a {
                font-weight: 500;
                color: #6b5e2e; }
      .bag .card .summary .accordion {
        border-top: 1px solid #EBEAEA; }
        .bag .card .summary .accordion.opened .accordion-header svg {
          transform: scale(1, -1); }
        .bag .card .summary .accordion .accordion-header {
          display: flex;
          justify-content: space-between;
          padding: 20px 32px;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          cursor: pointer; }
          @media only screen and (max-width: 768px) {
            .bag .card .summary .accordion .accordion-header {
              padding: 16px 0; } }
          .bag .card .summary .accordion .accordion-header div {
            display: flex;
            align-items: center; }
          .bag .card .summary .accordion .accordion-header span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: #6b5e2e;
            border-radius: 50%;
            font-size: 12px;
            color: #fff;
            margin: 0 0 0 8px;
            cursor: help; }
          .bag .card .summary .accordion .accordion-header svg {
            width: 24px;
            height: 24px;
            fill: #1C1A17; }
        .bag .card .summary .accordion .accordion-body {
          display: none;
          padding: 0 32px 20px; }
          @media only screen and (max-width: 768px) {
            .bag .card .summary .accordion .accordion-body {
              padding: 0 0 20px; } }
          .bag .card .summary .accordion .accordion-body .field {
            display: flex;
            flex-wrap: wrap;
            gap: 12px; }
            .bag .card .summary .accordion .accordion-body .field input {
              flex: 1;
              border: 1px solid #D2D1D1;
              padding: 10px 16px; }
              .bag .card .summary .accordion .accordion-body .field input:disabled {
                background-color: #F6F6F6;
                border: 1px solid #F6F6F6; }
              @media only screen and (max-width: 768px) {
                .bag .card .summary .accordion .accordion-body .field input {
                  padding: 6px 12px; } }
            .bag .card .summary .accordion .accordion-body .field .button {
              width: initial;
              margin: 0;
              padding: 9px 16px;
              color: #81564E; }
      .bag .card .summary .button {
        width: calc(100% - 64px);
        margin: 32px 32px 20px; }
        @media only screen and (max-width: 768px) {
          .bag .card .summary .button {
            width: 100%;
            margin: 32px 0 16px; } }
      .bag .card .summary .payment-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 0 32px 32px; }
        @media only screen and (max-width: 768px) {
          .bag .card .summary .payment-list {
            margin: 0 0 32px; } }
        .bag .card .summary .payment-list span {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          color: #6D6B6A; }
          @media only screen and (max-width: 768px) {
            .bag .card .summary .payment-list span {
              font-size: 14px; } }

.checkout {
  background: #F6F6F6; }
  @media only screen and (max-width: 768px) {
    .checkout {
      padding: 0 0 48px 0;
      background-color: #fff; } }
  .checkout .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px; }
    @media only screen and (max-width: 768px) {
      .checkout .wrap {
        flex-direction: column-reverse;
        gap: 16px; } }
  .checkout .checkout-card {
    width: calc(100% - 448px);
    background: #FFFFFF; }
    @media only screen and (max-width: 1024px) {
      .checkout .checkout-card {
        width: calc(100% - 392px); } }
    @media only screen and (max-width: 768px) {
      .checkout .checkout-card {
        width: calc(100% + 32px);
        margin: 0 -16px; } }
    .checkout .checkout-card .checkout-card-header {
      padding: 32px;
      border-bottom: 1px solid #EBEAEA; }
      @media only screen and (max-width: 1344px) {
        .checkout .checkout-card .checkout-card-header {
          padding: 16px;
          border: none; } }
      .checkout .checkout-card .checkout-card-header .title {
        font-family: 'PlayfairDisplay-Regular';
        font-size: 24px; }
    .checkout .checkout-card .box {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      padding: 52px 32px;
      gap: 32px; }
      @media only screen and (max-width: 1344px) {
        .checkout .checkout-card .box {
          padding: 32px 16px; } }
      @media only screen and (max-width: 1024px) {
        .checkout .checkout-card .box {
          gap: 24px; } }
      .checkout .checkout-card .box:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: calc(100% - 64px);
        height: 1px;
        background-color: #EBEAEA; }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box:after {
            width: calc(100% - 32px); } }
      .checkout .checkout-card .box:last-of-type:after {
        content: none; }
      .checkout .checkout-card .box .box-title {
        width: 100%;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 18px;
        text-transform: capitalize; }
      .checkout .checkout-card .box .login-row {
        width: 100%;
        background: #F6F6F6;
        padding: 10px 16px; }
        .checkout .checkout-card .box .login-row a {
          color: #2F80ED; }
      .checkout .checkout-card .box .input-row.lg {
        width: 100%; }
      .checkout .checkout-card .box .input-row.md {
        width: calc(50% - 16px); }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box .input-row.md {
            width: 100%; } }
      .checkout .checkout-card .box .input-row.sm {
        width: calc(100% / 3 - 22px); }
        @media only screen and (max-width: 1344px) {
          .checkout .checkout-card .box .input-row.sm {
            width: calc(50% - 16px); } }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box .input-row.sm {
            width: 100%; } }
      .checkout .checkout-card .box .input-row.country, .checkout .checkout-card .box .input-row.state {
        margin-right: 40%; }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box .input-row.country, .checkout .checkout-card .box .input-row.state {
            margin: 0; } }
        .checkout .checkout-card .box .input-row.country .select2-container.select2-container--open .select2-selection__arrow:after, .checkout .checkout-card .box .input-row.state .select2-container.select2-container--open .select2-selection__arrow:after {
          transform: scale(1, -1); }
        .checkout .checkout-card .box .input-row.country .select2-container .select2-selection, .checkout .checkout-card .box .input-row.state .select2-container .select2-selection {
          height: 100%;
          border: 1px solid #D2D1D1;
          border-radius: 0; }
        .checkout .checkout-card .box .input-row.country .select2-container .select2-selection__rendered, .checkout .checkout-card .box .input-row.state .select2-container .select2-selection__rendered {
          padding: 10px 16px;
          line-height: initial; }
        .checkout .checkout-card .box .input-row.country .select2-container .select2-selection__arrow, .checkout .checkout-card .box .input-row.state .select2-container .select2-selection__arrow {
          right: 16px;
          height: 100%;
          width: 24px; }
          .checkout .checkout-card .box .input-row.country .select2-container .select2-selection__arrow:after, .checkout .checkout-card .box .input-row.state .select2-container .select2-selection__arrow:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(/app/themes/pikiwo/front/src/img/svg-icons/chevron-down-black.svg);
            background-size: 24px;
            background-position: center;
            background-repeat: no-repeat;
            transition: 0.2s; }
          .checkout .checkout-card .box .input-row.country .select2-container .select2-selection__arrow b, .checkout .checkout-card .box .input-row.state .select2-container .select2-selection__arrow b {
            display: none; }
      .checkout .checkout-card .box .input-row.state {
        margin-right: 0; }
      .checkout .checkout-card .box .input-row.phone {
        display: flex;
        flex-wrap: wrap; }
        .checkout .checkout-card .box .input-row.phone input {
          width: calc(100% - 112px); }
          @media only screen and (max-width: 1344px) {
            .checkout .checkout-card .box .input-row.phone input {
              width: calc(100% - 100px); } }
        .checkout .checkout-card .box .input-row.phone .select2 {
          width: 112px !important; }
          @media only screen and (max-width: 1344px) {
            .checkout .checkout-card .box .input-row.phone .select2 {
              width: 100px !important; } }
          .checkout .checkout-card .box .input-row.phone .select2.select2-container--open .select2-selection__arrow:after {
            transform: scale(1, -1); }
        .checkout .checkout-card .box .input-row.phone .select-phone-container {
          height: 100%;
          background: #F6F6F6;
          border: 1px solid #D2D1D1;
          border-right: none;
          border-radius: 0; }
          .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__rendered {
            line-height: 42px;
            padding-right: 40px;
            padding-left: 16px; }
            @media only screen and (max-width: 1024px) {
              .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__rendered {
                padding-left: 12px; } }
          .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__arrow {
            right: 16px;
            height: 100%;
            width: 24px; }
            @media only screen and (max-width: 1024px) {
              .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__arrow {
                right: 12px; } }
            .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__arrow:after {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background-image: url(/app/themes/pikiwo/front/src/img/svg-icons/chevron-down-black.svg);
              background-size: 24px;
              background-position: center;
              background-repeat: no-repeat;
              transition: 0.2s; }
            .checkout .checkout-card .box .input-row.phone .select-phone-container .select2-selection__arrow b {
              display: none; }
      .checkout .checkout-card .box .input-row label {
        display: block;
        width: 100%;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 14px;
        margin: 0 0 8px 0;
        cursor: default; }
      .checkout .checkout-card .box .input-row input {
        width: 100%;
        border: 1px solid #D2D1D1;
        padding: 10px 16px; }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box .input-row input {
            padding: 10px 12px; } }
      .checkout .checkout-card .box .delivery-label {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid #EBEAEA;
        transition: 0.2s; }
        .checkout .checkout-card .box .delivery-label.active {
          border: 1px solid #81564E; }
        .checkout .checkout-card .box .delivery-label input {
          position: absolute;
          top: 0;
          width: 0;
          visibility: hidden; }
          .checkout .checkout-card .box .delivery-label input:checked + .label-header {
            border-bottom: 1px solid #81564E; }
            .checkout .checkout-card .box .delivery-label input:checked + .label-header .icon {
              border: 1px solid #81564E; }
              .checkout .checkout-card .box .delivery-label input:checked + .label-header .icon:after {
                opacity: 1; }
        .checkout .checkout-card .box .delivery-label .label-header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 18px 16px;
          border-bottom: 1px solid #EBEAEA;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          transition: 0.2s; }
          @media only screen and (max-width: 1024px) {
            .checkout .checkout-card .box .delivery-label .label-header {
              padding: 18px 12px; } }
          .checkout .checkout-card .box .delivery-label .label-header .col {
            display: flex;
            align-items: center;
            gap: 8px; }
            .checkout .checkout-card .box .delivery-label .label-header .col p {
              max-width: calc(100% - 28px); }
          .checkout .checkout-card .box .delivery-label .label-header .icon {
            position: relative;
            width: 20px;
            height: 20px;
            border: 1px solid #6D6B6A;
            border-radius: 50%; }
            .checkout .checkout-card .box .delivery-label .label-header .icon:after {
              content: '';
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 15px;
              height: 15px;
              background: #81564E;
              border-radius: 50%;
              transition: 0.2s;
              opacity: 0; }
          .checkout .checkout-card .box .delivery-label .label-header img {
            width: 24px;
            height: 24px; }
        .checkout .checkout-card .box .delivery-label .label-body {
          font-family: 'DMSans-Regular';
          padding: 16px; }
          @media only screen and (max-width: 1024px) {
            .checkout .checkout-card .box .delivery-label .label-body {
              padding: 16px 12px; } }
          .checkout .checkout-card .box .delivery-label .label-body .date {
            color: #6D6B6A; }
      .checkout .checkout-card .box .payment-label {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        width: calc(50% - 16px);
        border: 1px solid #EBEAEA;
        padding: 8px 16px;
        transition: 0.2s; }
        @media only screen and (max-width: 1024px) {
          .checkout .checkout-card .box .payment-label {
            width: 100%; } }
        @media only screen and (max-width: 768px) {
          .checkout .checkout-card .box .payment-label {
            padding: 5px 16px; } }
        .checkout .checkout-card .box .payment-label.active {
          border: 1px solid #81564E; }
          .checkout .checkout-card .box .payment-label.active .icon {
            border: 1px solid #81564E; }
            .checkout .checkout-card .box .payment-label.active .icon:after {
              opacity: 1; }
        .checkout .checkout-card .box .payment-label input {
          position: absolute;
          top: 0;
          visibility: hidden; }
        .checkout .checkout-card .box .payment-label .icon {
          position: relative;
          width: 20px;
          height: 20px;
          border: 1px solid #6D6B6A;
          border-radius: 50%;
          transition: 0.2s; }
          .checkout .checkout-card .box .payment-label .icon:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15px;
            height: 15px;
            background-color: #81564E;
            border-radius: 50%;
            opacity: 0;
            transition: 0.2s; }
        .checkout .checkout-card .box .payment-label img {
          max-width: calc(100% - 32px); }
    .checkout .checkout-card .button {
      width: 100%; }
    .checkout .checkout-card .hint {
      font-size: 14px;
      width: 100%;
      text-align: center; }
  .checkout .accordion {
    position: relative;
    width: 416px;
    background: #FFFFFF; }
    .checkout .accordion.opened .accordion-header .title svg {
      transform: scale(1, -1); }
    @media only screen and (max-width: 1024px) {
      .checkout .accordion {
        width: 360px; } }
    @media only screen and (max-width: 768px) {
      .checkout .accordion {
        width: calc(100% + 32px);
        margin: 0 -16px; }
        .checkout .accordion:after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translate(-50%, 0);
          width: 100vw;
          height: 1px;
          background-color: #EBEAEA; } }
    .checkout .accordion .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px;
      border-bottom: 1px solid #EBEAEA;
      pointer-events: none; }
      @media only screen and (max-width: 1344px) {
        .checkout .accordion .accordion-header {
          padding: 16px; } }
      @media only screen and (max-width: 768px) {
        .checkout .accordion .accordion-header {
          border: none;
          padding: 16px 16px 4px 16px;
          pointer-events: initial; } }
      .checkout .accordion .accordion-header .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'PlayfairDisplay-Regular';
        font-size: 24px; }
        @media only screen and (max-width: 768px) {
          .checkout .accordion .accordion-header .title {
            width: 100%;
            margin: 0 0 16px 0; } }
        .checkout .accordion .accordion-header .title span {
          color: #6D6B6A; }
        .checkout .accordion .accordion-header .title svg {
          display: none;
          width: 24px;
          height: 24px; }
          @media only screen and (max-width: 768px) {
            .checkout .accordion .accordion-header .title svg {
              display: block; } }
    @media only screen and (max-width: 768px) {
      .checkout .accordion .accordion-body {
        display: none; } }
    .checkout .accordion .accordion-body .summary .product-box {
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid #ebeaea;
      max-height: 450px;
      overflow: auto; }
      @media only screen and (max-width: 768px) {
        .checkout .accordion .accordion-body .summary .product-box {
          margin: 0 0 8px 0; } }
      .checkout .accordion .accordion-body .summary .product-box .product-item {
        width: calc(100% - 64px);
        position: relative;
        display: flex;
        align-items: flex-start;
        padding: 20px 0;
        margin: 0 auto;
        border-bottom: 1px solid #ebeaea; }
        @media only screen and (max-width: 1344px) {
          .checkout .accordion .accordion-body .summary .product-box .product-item {
            width: calc(100% - 32px); } }
        @media only screen and (max-width: 768px) {
          .checkout .accordion .accordion-body .summary .product-box .product-item {
            padding: 12px 0; } }
        .checkout .accordion .accordion-body .summary .product-box .product-item:last-of-type {
          border: none; }
        .checkout .accordion .accordion-body .summary .product-box .product-item .img-box {
          position: relative;
          width: 116px;
          height: 116px;
          overflow: hidden; }
          @media only screen and (max-width: 768px) {
            .checkout .accordion .accordion-body .summary .product-box .product-item .img-box {
              width: 84px;
              height: 84px; } }
          .checkout .accordion .accordion-body .summary .product-box .product-item .img-box:hover img {
            transform: translate(-50%, -50%) scale(1.1); }
          .checkout .accordion .accordion-body .summary .product-box .product-item .img-box img {
            object-fit: cover;
            position: absolute;
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: 0.4s; }
        .checkout .accordion .accordion-body .summary .product-box .product-item .box {
          display: flex;
          flex-direction: column;
          width: calc(100% - 116px);
          padding: 0 38px 0 12px; }
          @media only screen and (max-width: 768px) {
            .checkout .accordion .accordion-body .summary .product-box .product-item .box {
              width: calc(100% - 84px);
              padding: 0 24px 0 8px; } }
          .checkout .accordion .accordion-body .summary .product-box .product-item .box .price-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-family: 'PlayfairDisplay-Regular';
            color: #E64425;
            margin: 0 0 4px 0; }
            .checkout .accordion .accordion-body .summary .product-box .product-item .box .price-row span {
              color: #6d6b6a; }
            .checkout .accordion .accordion-body .summary .product-box .product-item .box .price-row .without-discount {
              color: #6d6b6a;
              text-decoration: line-through; }
          .checkout .accordion .accordion-body .summary .product-box .product-item .box .name {
            display: inline-flex;
            flex: 1;
            font-family: 'DMSans-Medium';
            font-weight: 500;
            font-size: 14px;
            line-height: 1.2;
            margin: 0 0 8px 0; }
            .checkout .accordion .accordion-body .summary .product-box .product-item .box .name:hover {
              color: #ED3843; }
          .checkout .accordion .accordion-body .summary .product-box .product-item .box .size,
          .checkout .accordion .accordion-body .summary .product-box .product-item .box .qnt {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DMSans-Regular';
            font-size: 14px;
            line-height: 1;
            color: #6d6b6a;
            margin: 0 0 8px 0; }
            @media only screen and (max-width: 768px) {
              .checkout .accordion .accordion-body .summary .product-box .product-item .box .size,
              .checkout .accordion .accordion-body .summary .product-box .product-item .box .qnt {
                margin: 0 0 4px 0; } }
            .checkout .accordion .accordion-body .summary .product-box .product-item .box .size:last-of-type,
            .checkout .accordion .accordion-body .summary .product-box .product-item .box .qnt:last-of-type {
              margin: 0; }
    .checkout .accordion .accordion-body .summary .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 32px;
      font-family: 'DMSans-Medium';
      font-weight: 500; }
      @media only screen and (max-width: 1344px) {
        .checkout .accordion .accordion-body .summary .row {
          padding: 10px 16px; } }
      @media only screen and (max-width: 768px) {
        .checkout .accordion .accordion-body .summary .row {
          padding: 8px 16px; } }
      .checkout .accordion .accordion-body .summary .row.total {
        padding: 20px 32px;
        border-top: 1px solid #EBEAEA;
        border-bottom: 1px solid #EBEAEA; }
        @media only screen and (max-width: 1344px) {
          .checkout .accordion .accordion-body .summary .row.total {
            padding: 20px 16px; } }
        @media only screen and (max-width: 768px) {
          .checkout .accordion .accordion-body .summary .row.total {
            padding: 16px; } }
      .checkout .accordion .accordion-body .summary .row div {
        display: flex;
        align-items: center; }
        .checkout .accordion .accordion-body .summary .row div span {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 16px;
          height: 16px;
          background: #6b5e2e;
          border-radius: 50%;
          font-size: 12px;
          color: #fff;
          margin: 0 0 0 8px;
          cursor: help; }
        .checkout .accordion .accordion-body .summary .row div.total-price {
          font-family: 'DMSans-Regular';
          font-size: 24px; }
          @media only screen and (max-width: 768px) {
            .checkout .accordion .accordion-body .summary .row div.total-price {
              font-size: 20px; } }
    .checkout .accordion .accordion-body .summary .accordion {
      width: 100%;
      border: none;
      border-top: 1px solid #EBEAEA;
      margin: 0; }
      .checkout .accordion .accordion-body .summary .accordion:after {
        content: none; }
      .checkout .accordion .accordion-body .summary .accordion.opened .accordion-header svg {
        transform: scale(1, -1); }
      .checkout .accordion .accordion-body .summary .accordion .accordion-header {
        display: flex;
        justify-content: space-between;
        padding: 20px 32px;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        border: none;
        cursor: pointer;
        pointer-events: initial; }
        @media only screen and (max-width: 1344px) {
          .checkout .accordion .accordion-body .summary .accordion .accordion-header {
            padding: 20px 16px; } }
        @media only screen and (max-width: 768px) {
          .checkout .accordion .accordion-body .summary .accordion .accordion-header {
            padding: 16px; } }
        .checkout .accordion .accordion-body .summary .accordion .accordion-header div {
          display: flex;
          align-items: center; }
        .checkout .accordion .accordion-body .summary .accordion .accordion-header span {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 16px;
          height: 16px;
          background: #6b5e2e;
          border-radius: 50%;
          font-size: 12px;
          color: #fff;
          margin: 0 0 0 8px;
          cursor: help; }
        .checkout .accordion .accordion-body .summary .accordion .accordion-header svg {
          width: 24px;
          height: 24px;
          fill: #1C1A17; }
      .checkout .accordion .accordion-body .summary .accordion .accordion-body {
        display: none;
        padding: 0 32px 20px; }
        @media only screen and (max-width: 1344px) {
          .checkout .accordion .accordion-body .summary .accordion .accordion-body {
            padding: 0 16px 20px; } }
        .checkout .accordion .accordion-body .summary .accordion .accordion-body .field {
          display: flex;
          gap: 12px; }
          .checkout .accordion .accordion-body .summary .accordion .accordion-body .field input {
            flex: 1;
            border: 1px solid #D2D1D1;
            padding: 10px 16px; }
            .checkout .accordion .accordion-body .summary .accordion .accordion-body .field input:disabled {
              background-color: #F6F6F6;
              border: 1px solid #F6F6F6; }
            @media only screen and (max-width: 768px) {
              .checkout .accordion .accordion-body .summary .accordion .accordion-body .field input {
                padding: 6px 12px; } }
          .checkout .accordion .accordion-body .summary .accordion .accordion-body .field .button {
            width: initial;
            margin: 0;
            padding: 9px 16px;
            color: #81564E; }
        .checkout .accordion .accordion-body .summary .accordion .accordion-body .hint {
          font-family: 'DMSans-Regular';
          color: #6D6B6A;
          margin: 12px 0 0 0; }
          @media only screen and (max-width: 768px) {
            .checkout .accordion .accordion-body .summary .accordion .accordion-body .hint {
              font-size: 14px; } }

.copyright {
  color: #505050;
  padding: 10px 0 32px 0;
  font-size: 14px;
  line-height: 100%; }
  @media only screen and (max-width: 768px) {
    .copyright {
      padding: 10px 0 22px; } }
  .copyright .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    overflow: visible; }
    @media only screen and (max-width: 768px) {
      .copyright .wrap {
        flex-direction: column-reverse; } }
  .copyright .links {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .copyright .links {
        width: 100%;
        justify-content: space-between;
        padding-bottom: 10px;
        margin-bottom: 22px;
        border-bottom: 1px solid #D6D6D6; } }
    .copyright .links a {
      display: inline-flex;
      color: #505050;
      margin: 0 28px 0 0;
      padding: 12px 0; }
      .copyright .links a:hover {
        color: #E64425; }
      @media only screen and (max-width: 768px) {
        .copyright .links a {
          font-size: 12px;
          margin: 0; } }
    .copyright .links .dropdowns {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 768px) {
        .copyright .links .dropdowns {
          display: none; } }
      .copyright .links .dropdowns .dropdown, .copyright .links .dropdowns .wpml-ls, .copyright .links .dropdowns .wcml-dropdown {
        position: relative;
        z-index: 3; }
        .copyright .links .dropdowns .dropdown.opened .dropdown-btn svg, .copyright .links .dropdowns .wpml-ls.opened .dropdown-btn svg, .copyright .links .dropdowns .wcml-dropdown.opened .dropdown-btn svg {
          transform: scale(1, -1); }
        .copyright .links .dropdowns .dropdown.opened .wpml-ls-item-toggle::after, .copyright .links .dropdowns .dropdown.opened .wcml-cs-item-toggle::after, .copyright .links .dropdowns .wpml-ls.opened .wpml-ls-item-toggle::after, .copyright .links .dropdowns .wpml-ls.opened .wcml-cs-item-toggle::after, .copyright .links .dropdowns .wcml-dropdown.opened .wpml-ls-item-toggle::after, .copyright .links .dropdowns .wcml-dropdown.opened .wcml-cs-item-toggle::after {
          transform: scale(1, -1) translate(0, 50%); }
        .copyright .links .dropdowns .dropdown.opened .dropdown-menu, .copyright .links .dropdowns .dropdown.opened .wpml-ls-sub-menu, .copyright .links .dropdowns .dropdown.opened .wcml-cs-submenu, .copyright .links .dropdowns .wpml-ls.opened .dropdown-menu, .copyright .links .dropdowns .wpml-ls.opened .wpml-ls-sub-menu, .copyright .links .dropdowns .wpml-ls.opened .wcml-cs-submenu, .copyright .links .dropdowns .wcml-dropdown.opened .dropdown-menu, .copyright .links .dropdowns .wcml-dropdown.opened .wpml-ls-sub-menu, .copyright .links .dropdowns .wcml-dropdown.opened .wcml-cs-submenu {
          top: 50px;
          opacity: 1;
          visibility: visible; }
        .copyright .links .dropdowns .dropdown.opened .wcml-cs-submenu, .copyright .links .dropdowns .wpml-ls.opened .wcml-cs-submenu, .copyright .links .dropdowns .wcml-dropdown.opened .wcml-cs-submenu {
          top: -29px; }
        .copyright .links .dropdowns .dropdown.opened .wpml-ls-sub-menu, .copyright .links .dropdowns .wpml-ls.opened .wpml-ls-sub-menu, .copyright .links .dropdowns .wcml-dropdown.opened .wpml-ls-sub-menu {
          top: -60px; }
        .copyright .links .dropdowns .dropdown .dropdown-btn, .copyright .links .dropdowns .dropdown .wpml-ls-item-toggle, .copyright .links .dropdowns .dropdown .wcml-cs-item-toggle, .copyright .links .dropdowns .wpml-ls .dropdown-btn, .copyright .links .dropdowns .wpml-ls .wpml-ls-item-toggle, .copyright .links .dropdowns .wpml-ls .wcml-cs-item-toggle, .copyright .links .dropdowns .wcml-dropdown .dropdown-btn, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
          display: flex;
          align-items: center;
          font-family: 'DMSans-Regular';
          font-weight: 400;
          font-size: 14px;
          text-transform: capitalize;
          padding: 12px 22px 12px 0; }
          .copyright .links .dropdowns .dropdown .dropdown-btn svg, .copyright .links .dropdowns .dropdown .wpml-ls-item-toggle svg, .copyright .links .dropdowns .dropdown .wcml-cs-item-toggle svg, .copyright .links .dropdowns .wpml-ls .dropdown-btn svg, .copyright .links .dropdowns .wpml-ls .wpml-ls-item-toggle svg, .copyright .links .dropdowns .wpml-ls .wcml-cs-item-toggle svg, .copyright .links .dropdowns .wcml-dropdown .dropdown-btn svg, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle svg, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle svg {
            width: 18px;
            height: 18px;
            margin: 0 0 0 2px; }
        .copyright .links .dropdowns .dropdown .dropdown-menu, .copyright .links .dropdowns .dropdown .wpml-ls-sub-menu, .copyright .links .dropdowns .dropdown .wcml-cs-submenu, .copyright .links .dropdowns .wpml-ls .dropdown-menu, .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu, .copyright .links .dropdowns .wcml-dropdown .dropdown-menu, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu {
          position: absolute;
          top: 60px;
          left: -6px;
          transform: translate(0, 0);
          min-width: 52px;
          display: flex;
          flex-direction: column;
          background: #ffffff;
          box-shadow: 0px 1px 6px rgba(28, 26, 23, 0.24);
          padding: 0 6px;
          opacity: 0;
          visibility: hidden;
          transition: 0.2s; }
          .copyright .links .dropdowns .dropdown .dropdown-menu a, .copyright .links .dropdowns .dropdown .wpml-ls-sub-menu a, .copyright .links .dropdowns .dropdown .wcml-cs-submenu a, .copyright .links .dropdowns .wpml-ls .dropdown-menu a, .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a, .copyright .links .dropdowns .wcml-dropdown .dropdown-menu a, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a {
            font-family: 'DMSans-Medium';
            font-weight: 500;
            font-size: 14px;
            color: #6d6b6a;
            text-transform: capitalize;
            padding: 6px 0;
            border-bottom: 1px solid #ebeaea; }
            .copyright .links .dropdowns .dropdown .dropdown-menu a:hover, .copyright .links .dropdowns .dropdown .wpml-ls-sub-menu a:hover, .copyright .links .dropdowns .dropdown .wcml-cs-submenu a:hover, .copyright .links .dropdowns .wpml-ls .dropdown-menu a:hover, .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .copyright .links .dropdowns .wcml-dropdown .dropdown-menu a:hover, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
              color: #ED3843; }
            .copyright .links .dropdowns .dropdown .dropdown-menu a:last-of-type, .copyright .links .dropdowns .dropdown .wpml-ls-sub-menu a:last-of-type, .copyright .links .dropdowns .dropdown .wcml-cs-submenu a:last-of-type, .copyright .links .dropdowns .wpml-ls .dropdown-menu a:last-of-type, .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .copyright .links .dropdowns .wcml-dropdown .dropdown-menu a:last-of-type, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
              border: none; }
        .copyright .links .dropdowns .dropdown .wpml-ls-item-toggle, .copyright .links .dropdowns .wpml-ls .wpml-ls-item-toggle, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle {
          margin-right: 0; }
        .copyright .links .dropdowns .dropdown .wcml-cs-submenu, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu {
          top: -29px; }
        .copyright .links .dropdowns .dropdown .wpml-ls-sub-menu, .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu {
          top: -60px; }
      .copyright .links .dropdowns .wpml-ls, .copyright .links .dropdowns .wcml-dropdown {
        width: auto; }
        .copyright .links .dropdowns .wpml-ls .wpml-ls-item-toggle, .copyright .links .dropdowns .wpml-ls .wcml-cs-item-toggle, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle {
          border: none;
          background: none;
          line-height: 18px;
          position: relative; }
          .copyright .links .dropdowns .wpml-ls .wpml-ls-item-toggle:after, .copyright .links .dropdowns .wpml-ls .wcml-cs-item-toggle:after, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-item-toggle:after, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-item-toggle:after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            transform: translate(0, -50%);
            width: 16px;
            height: 16px;
            background-image: url("/app/themes/pikiwo/front/src/img/svg-icons/chevron-down-black.svg");
            background-size: 16px;
            background-repeat: no-repeat;
            background-position: center;
            border: none;
            transition: 0.2s; }
        .copyright .links .dropdowns .wpml-ls a, .copyright .links .dropdowns .wcml-dropdown a {
          font-size: 14px;
          line-height: 18px; }
          .copyright .links .dropdowns .wpml-ls a:hover, .copyright .links .dropdowns .wcml-dropdown a:hover {
            background: none; }
          .copyright .links .dropdowns .wpml-ls a span, .copyright .links .dropdowns .wcml-dropdown a span {
            vertical-align: baseline; }
        .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu {
          right: auto;
          border-top: none; }
          .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a {
            margin-right: 0;
            border-bottom: 1px solid #ebeaea !important; }
            .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:hover, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a:hover, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:hover, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:hover {
              color: #ED3843; }
            .copyright .links .dropdowns .wpml-ls .wpml-ls-sub-menu a:last-of-type, .copyright .links .dropdowns .wpml-ls .wcml-cs-submenu a:last-of-type, .copyright .links .dropdowns .wcml-dropdown .wpml-ls-sub-menu a:last-of-type, .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu a:last-of-type {
              border: none; }
      .copyright .links .dropdowns .wpml-ls-sub-menu:hover .wpml-ls-item-toggle, .copyright .links .dropdowns .wpml-ls-sub-menu:hover .wcml-cs-item-toggle, .copyright .links .dropdowns .wcml-cs-submenu:hover .wpml-ls-item-toggle, .copyright .links .dropdowns .wcml-cs-submenu:hover .wcml-cs-item-toggle {
        background: none; }
      .copyright .links .dropdowns .wcml-dropdown .wcml-spinner {
        display: none; }
      .copyright .links .dropdowns .wcml-dropdown li {
        border: none;
        background: none; }
      .copyright .links .dropdowns .wcml-dropdown .wcml-cs-submenu li {
        border: none; }

.checkout-header {
  padding: 12px 0;
  border-bottom: 1px solid #EBEAEA; }
  .checkout-header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .checkout-header .logo {
    width: 140px; }
    @media only screen and (max-width: 768px) {
      .checkout-header .logo {
        width: 82px; } }
  @media only screen and (max-width: 768px) {
    .checkout-header .icon {
      width: 86px; } }

.main-checkout {
  background: #F6F6F6; }

.checkout-error {
  padding: 64px 0; }
  @media only screen and (max-width: 768px) {
    .checkout-error {
      padding: 32px 0; } }
  .checkout-error .box {
    width: 100%;
    max-width: 864px;
    margin: 0 auto; }
    .checkout-error .box .box-header {
      background: #E64425;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 52px 40px;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .checkout-error .box .box-header {
          padding: 32px 16px; } }
      .checkout-error .box .box-header .icon {
        width: 52px;
        height: 52px;
        border: 2px solid #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 0 24px 0; }
        .checkout-error .box .box-header .icon svg {
          width: 36px;
          height: 36px;
          fill: #fff; }
    .checkout-error .box .box-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-family: 'DMSans-Regular';
      background-color: #fff;
      padding: 40px 40px 64px; }
      @media only screen and (max-width: 768px) {
        .checkout-error .box .box-body {
          padding: 32px 16px 48px; } }
      .checkout-error .box .box-body a {
        font-family: 'DMSans-Medium';
        font-weight: 500;
        text-decoration-line: underline;
        text-transform: capitalize;
        color: #81564E;
        margin: 64px 0 0 0; }
        @media only screen and (max-width: 768px) {
          .checkout-error .box .box-body a {
            margin: 32px 0 0 0; } }

.main-checkout {
  background: #F6F6F6; }

.checkout-success {
  padding: 64px 0; }
  @media only screen and (max-width: 768px) {
    .checkout-success {
      padding: 32px 0; } }
  .checkout-success .box {
    width: 100%;
    max-width: 864px;
    margin: 0 auto; }
    .checkout-success .box .box-header {
      background: #E64425;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 52px 40px;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .checkout-success .box .box-header {
          padding: 32px 16px; } }
      .checkout-success .box .box-header .icon {
        width: 52px;
        height: 52px;
        border: 2px solid #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 0 24px 0; }
        .checkout-success .box .box-header .icon svg {
          width: 22px;
          height: 22px;
          fill: #fff; }
    .checkout-success .box .box-body {
      background-color: #fff; }
      .checkout-success .box .box-body .container {
        display: flex;
        flex-wrap: wrap;
        padding: 40px;
        border-bottom: 1px solid #EBEAEA;
        gap: 0 140px; }
        @media only screen and (max-width: 768px) {
          .checkout-success .box .box-body .container {
            padding: 24px 16px; } }
        .checkout-success .box .box-body .container:last-of-type {
          border: none; }
        .checkout-success .box .box-body .container .title {
          width: 100%;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 18px;
          text-transform: capitalize;
          margin: 0 0 24px 0; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .container .title {
              margin: 0 0 16px 0; } }
        .checkout-success .box .box-body .container .order-info {
          display: flex;
          flex-direction: column;
          font-family: 'DMSans-Medium';
          font-weight: 500; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .container .order-info {
              width: 100%;
              margin: 0 0 8px 0; }
              .checkout-success .box .box-body .container .order-info:last-of-type {
                margin: 0; } }
          .checkout-success .box .box-body .container .order-info span {
            color: #6D6B6A; }
        .checkout-success .box .box-body .container .shiping-info {
          width: 100%;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          margin: 0 0 8px 0; }
          .checkout-success .box .box-body .container .shiping-info:last-of-type {
            margin: 0; }
        .checkout-success .box .box-body .container .delivery-info .price {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          margin: 0 0 12px 0; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .container .delivery-info .price {
              margin: 0 0 8px 0; } }
        .checkout-success .box .box-body .container .delivery-info .desc {
          font-family: 'DMSans-Regular'; }
        .checkout-success .box .box-body .container .delivery-info .date {
          font-family: 'DMSans-Regular';
          color: #6D6B6A; }
        .checkout-success .box .box-body .container .product-box {
          width: 100%; }
          .checkout-success .box .box-body .container .product-box .product-item {
            width: 100%;
            position: relative;
            display: flex;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid #ebeaea; }
            @media only screen and (max-width: 768px) {
              .checkout-success .box .box-body .container .product-box .product-item {
                padding: 12px 0; } }
            .checkout-success .box .box-body .container .product-box .product-item:first-of-type {
              padding: 0 0 20px 0; }
              @media only screen and (max-width: 768px) {
                .checkout-success .box .box-body .container .product-box .product-item:first-of-type {
                  padding: 0 0 12px 0; } }
            .checkout-success .box .box-body .container .product-box .product-item .img-box {
              position: relative;
              width: 116px;
              height: 116px;
              overflow: hidden; }
              @media only screen and (max-width: 768px) {
                .checkout-success .box .box-body .container .product-box .product-item .img-box {
                  width: 84px;
                  height: 84px; } }
              .checkout-success .box .box-body .container .product-box .product-item .img-box:hover img {
                transform: translate(-50%, -50%) scale(1.1); }
              .checkout-success .box .box-body .container .product-box .product-item .img-box img {
                object-fit: cover;
                position: absolute;
                width: auto;
                height: auto;
                min-width: 100%;
                min-height: 100%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: 0.4s; }
            .checkout-success .box .box-body .container .product-box .product-item .box {
              display: flex;
              flex-direction: column;
              width: calc(100% - 116px);
              padding: 0 38px 0 12px; }
              @media only screen and (max-width: 768px) {
                .checkout-success .box .box-body .container .product-box .product-item .box {
                  width: calc(100% - 84px);
                  padding: 0 24px 0 8px; } }
              .checkout-success .box .box-body .container .product-box .product-item .box .price-row {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 8px;
                font-family: 'PlayfairDisplay-Regular';
                color: #E64425;
                margin: 0 0 4px 0; }
                .checkout-success .box .box-body .container .product-box .product-item .box .price-row span {
                  color: #6d6b6a; }
                .checkout-success .box .box-body .container .product-box .product-item .box .price-row .without-discount {
                  color: #6d6b6a;
                  text-decoration: line-through; }
              .checkout-success .box .box-body .container .product-box .product-item .box .name {
                display: inline-flex;
                flex: 1;
                font-family: 'DMSans-Medium';
                font-weight: 500;
                font-size: 14px;
                line-height: 1.2;
                margin: 0 0 8px 0; }
                .checkout-success .box .box-body .container .product-box .product-item .box .name:hover {
                  color: #ED3843; }
              .checkout-success .box .box-body .container .product-box .product-item .box .size,
              .checkout-success .box .box-body .container .product-box .product-item .box .qnt {
                display: flex;
                align-items: center;
                gap: 8px;
                font-family: 'DMSans-Regular';
                font-size: 14px;
                line-height: 1;
                color: #6d6b6a;
                margin: 0 0 8px 0; }
                @media only screen and (max-width: 768px) {
                  .checkout-success .box .box-body .container .product-box .product-item .box .size,
                  .checkout-success .box .box-body .container .product-box .product-item .box .qnt {
                    margin: 0 0 4px 0; } }
                .checkout-success .box .box-body .container .product-box .product-item .box .size:last-of-type,
                .checkout-success .box .box-body .container .product-box .product-item .box .qnt:last-of-type {
                  margin: 0; }
        .checkout-success .box .box-body .container .summary {
          width: 272px;
          margin: 8px 0 0 auto; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .container .summary {
              width: 100%; } }
          .checkout-success .box .box-body .container .summary .row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            font-family: 'DMSans-Medium';
            font-weight: 500; }
            @media only screen and (max-width: 768px) {
              .checkout-success .box .box-body .container .summary .row {
                padding: 8px 0; } }
            .checkout-success .box .box-body .container .summary .row.total {
              padding: 16px 0 0 0;
              margin: 8px 0 0 0;
              border-top: 1px solid #EBEAEA; }
            .checkout-success .box .box-body .container .summary .row div {
              display: flex;
              align-items: center; }
              .checkout-success .box .box-body .container .summary .row div.total-price {
                font-family: 'DMSans-Regular';
                font-size: 24px; }
                @media only screen and (max-width: 768px) {
                  .checkout-success .box .box-body .container .summary .row div.total-price {
                    font-size: 20px; } }
        .checkout-success .box .box-body .container .payment-info {
          font-family: 'DMSans-Medium';
          font-weight: 500; }
      .checkout-success .box .box-body .accordion {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #EBEAEA; }
        .checkout-success .box .box-body .accordion.opened .accordion-header svg {
          transform: scale(1, -1); }
        .checkout-success .box .box-body .accordion .accordion-header {
          display: flex;
          align-items: center;
          justify-content: space-between;
          font-size: 18px;
          font-family: 'DMSans-Medium';
          font-weight: 500;
          text-transform: capitalize;
          padding: 24px 40px;
          cursor: pointer; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .accordion .accordion-header {
              padding: 24px 16px; } }
          .checkout-success .box .box-body .accordion .accordion-header svg {
            width: 24px;
            height: 24px; }
        .checkout-success .box .box-body .accordion .accordion-body {
          display: none;
          font-family: 'DMSans-Regular';
          padding: 0 40px 24px; }
          @media only screen and (max-width: 768px) {
            .checkout-success .box .box-body .accordion .accordion-body {
              padding: 0 16px 24px; } }
      .checkout-success .box .box-body .thank-msg {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 64px 40px; }
        @media only screen and (max-width: 768px) {
          .checkout-success .box .box-body .thank-msg {
            padding: 32px 16px; } }
        .checkout-success .box .box-body .thank-msg .title {
          font-family: 'PlayfairDisplay-Regular';
          font-size: 24px;
          margin: 0 0 12px 0; }
        .checkout-success .box .box-body .thank-msg a {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          font-size: 14px;
          color: #81564E;
          text-decoration-line: underline;
          text-transform: capitalize; }

.yith-wcwl-add-to-wishlist {
  margin-top: 0; }
  .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
    font-size: 0;
    padding: 10px 6px 8px 6px; }
    .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a img {
      display: block;
      margin: 0; }
  .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .separator {
    display: none; }
  .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .view-wishlist {
    display: none; }

.search-result .loading {
  background: transparent; }
  .search-result .loading .loading-inner .loader img,
  .search-result .loading .loading-inner .loader svg {
    opacity: 0.7;
    width: 40px;
    height: 40px; }

.loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 78, 78, 0.1);
  z-index: 1; }
  .loading .loading-inner {
    display: table;
    width: 100%;
    height: 100%; }
    .loading .loading-inner .loader {
      display: table-cell;
      vertical-align: middle; }
      .loading .loading-inner .loader img,
      .loading .loading-inner .loader svg {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 6px;
        background: white;
        box-shadow: 0px 0px 12px rgba(61, 78, 78, 0.4); }
        @media only screen and (max-width: 768px) {
          .loading .loading-inner .loader img,
          .loading .loading-inner .loader svg {
            width: 40px;
            height: 40px; } }

.blog-page .wrap-page-header {
  padding: 86px 16px 40px; }
  @media only screen and (max-width: 768px) {
    .blog-page .wrap-page-header {
      padding: 60px 16px 40px; } }
  .blog-page .wrap-page-header h1 {
    text-align: center; }

.blog-page .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 64px 32px;
  padding-top: 32px; }
  @media only screen and (max-width: 768px) {
    .blog-page .list {
      gap: 32px 16px; } }
  .blog-page .list::before {
    content: '';
    display: block;
    width: 100%;
    border-top: 1px solid #D6D6D6;
    position: absolute;
    top: 0; }
  .blog-page .list .item {
    width: calc((100% - 64px) / 3); }
    @media only screen and (max-width: 768px) {
      .blog-page .list .item {
        width: calc((100% - 32px) / 2); } }
    @media only screen and (max-width: 480px) {
      .blog-page .list .item {
        width: 100%; } }
    .blog-page .list .item .card {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left; }
      .blog-page .list .item .card .img-box {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 0 0 75% 0;
        margin: 0 0 20px 0; }
        @media only screen and (max-width: 768px) {
          .blog-page .list .item .card .img-box {
            padding: 0 0 70% 0;
            margin: 0 0 8px 0; } }
        .blog-page .list .item .card .img-box:hover img {
          transform: translate(-50%, -50%) scale(1.1); }
        .blog-page .list .item .card .img-box img {
          object-fit: cover;
          position: absolute;
          width: auto;
          height: auto;
          min-width: 100%;
          min-height: 100%;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: 0.4s; }
      .blog-page .list .item .card .title {
        font-family: 'DMSans-Regular';
        font-size: 20px;
        line-height: 100%;
        letter-spacing: -0.01em;
        color: #000000; }
        .blog-page .list .item .card .title:hover {
          color: #ED3843; }
      .blog-page .list .item .card .date {
        font-size: 14px;
        line-height: 100%;
        letter-spacing: -0.01em;
        color: #505050;
        margin: 12px 0 0 0; }

.blog-page .pagination {
  margin-top: 36px; }
  @media only screen and (max-width: 768px) {
    .blog-page .pagination {
      margin-top: 18px; } }

.careers-page {
  padding-bottom: 240px; }
  @media only screen and (max-width: 768px) {
    .careers-page {
      padding-bottom: 120px; } }
  .careers-page .wrap-page-header {
    padding: 86px 16px 40px; }
    @media only screen and (max-width: 768px) {
      .careers-page .wrap-page-header {
        padding: 60px 16px 40px; } }
    .careers-page .wrap-page-header h1 {
      text-align: center; }
  .careers-page .filter {
    position: relative;
    padding: 20px 0 124px; }
    .careers-page .filter::before {
      content: '';
      display: block;
      width: 100%;
      border-top: 1px solid #D6D6D6;
      position: absolute;
      top: 0; }
    .careers-page .filter .info {
      font-size: 18px;
      line-height: 23px;
      letter-spacing: 0.01em; }
      .careers-page .filter .info span {
        color: #ED3843; }
  .careers-page .list {
    display: flex;
    flex-direction: column; }
    .careers-page .list .item {
      border-bottom: 1px solid #D6D6D6;
      padding: 24px 0; }
      .careers-page .list .item:first-of-type {
        border-top: 1px solid #D6D6D6; }
      .careers-page .list .item .card {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left; }
        .careers-page .list .item .card .title {
          font-family: 'DMSans-Regular';
          font-size: 20px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: #000000; }
          .careers-page .list .item .card .title:hover {
            color: #ED3843; }
        .careers-page .list .item .card .tags {
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #505050;
          margin: 12px 0 0 0; }
          .careers-page .list .item .card .tags .sep {
            color: #D6D6D6;
            margin: 0 5px; }
  .careers-page .pagination {
    margin-top: 100px; }
    @media only screen and (max-width: 768px) {
      .careers-page .pagination {
        margin-top: 50px; } }

.single-blog {
  padding-top: 24px; }
  .single-blog .post-thumbnail {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 0 44% 0;
    margin: 0 0 52px; }
    @media only screen and (max-width: 768px) {
      .single-blog .post-thumbnail {
        margin: 0 0 12px; } }
    .single-blog .post-thumbnail img {
      position: absolute;
      object-fit: cover;
      width: auto;
      height: auto;
      min-width: 100%;
      min-height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .single-blog h1 {
    max-width: 56%;
    margin-bottom: 20px; }
    @media only screen and (max-width: 1344px) {
      .single-blog h1 {
        max-width: 75%; } }
    @media only screen and (max-width: 768px) {
      .single-blog h1 {
        max-width: 100%; } }
  .single-blog .date {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: #505050; }
  .single-blog .content {
    text-align: justify;
    max-width: 56%;
    margin: 82px 0 160px auto; }
    @media only screen and (max-width: 1344px) {
      .single-blog .content {
        max-width: 75%;
        margin: 60px 0 120px auto; } }
    @media only screen and (max-width: 768px) {
      .single-blog .content {
        max-width: 100%;
        margin: 40px 0 80px; } }
  .single-blog .related-article h2 {
    text-align: left;
    margin: 0 0 24px 0; }
  .single-blog .related-article .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 64px 32px;
    padding-top: 32px; }
    @media only screen and (max-width: 768px) {
      .single-blog .related-article .list {
        gap: 32px 16px; } }
    .single-blog .related-article .list::before {
      content: '';
      display: block;
      width: 100%;
      border-top: 1px solid #D6D6D6;
      position: absolute;
      top: 0; }
    .single-blog .related-article .list .item {
      width: calc((100% - 64px) / 3); }
      @media only screen and (max-width: 768px) {
        .single-blog .related-article .list .item {
          width: calc((100% - 32px) / 2); } }
      @media only screen and (max-width: 480px) {
        .single-blog .related-article .list .item {
          width: 100%; } }
      .single-blog .related-article .list .item .card {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left; }
        .single-blog .related-article .list .item .card .img-box {
          width: 100%;
          position: relative;
          overflow: hidden;
          padding: 0 0 75% 0;
          margin: 0 0 20px 0; }
          @media only screen and (max-width: 768px) {
            .single-blog .related-article .list .item .card .img-box {
              padding: 0 0 70% 0;
              margin: 0 0 8px 0; } }
          .single-blog .related-article .list .item .card .img-box:hover img {
            transform: translate(-50%, -50%) scale(1.1); }
          .single-blog .related-article .list .item .card .img-box img {
            object-fit: cover;
            position: absolute;
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: 0.4s; }
        .single-blog .related-article .list .item .card .title {
          font-family: 'DMSans-Regular';
          font-size: 20px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: #000000;
          margin: 0 0 12px 0; }
          .single-blog .related-article .list .item .card .title:hover {
            color: #ED3843; }
        .single-blog .related-article .list .item .card .date {
          font-size: 14px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: #505050; }

.single-career .page-header .wrap {
  padding: 86px 16px 40px; }
  @media only screen and (max-width: 768px) {
    .single-career .page-header .wrap {
      padding: 60px 16px 40px; } }

.single-career .page-header h1 {
  display: inline-block;
  max-width: 50%;
  margin-bottom: 20px; }
  @media only screen and (max-width: 1344px) {
    .single-career .page-header h1 {
      max-width: 75%; } }
  @media only screen and (max-width: 768px) {
    .single-career .page-header h1 {
      max-width: 100%; } }

.single-career .page-header .tags {
  color: #505050; }
  .single-career .page-header .tags .sep {
    color: #D6D6D6;
    margin: 0 5px; }
  @media only screen and (max-width: 768px) {
    .single-career .page-header .tags {
      font-size: 14px; } }

.single-career .page-content {
  letter-spacing: -0.01em; }
  .single-career .page-content .wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 60px; }
    @media only screen and (max-width: 1024px) {
      .single-career .page-content .wrap {
        flex-direction: column; } }
    .single-career .page-content .wrap::before {
      content: '';
      display: block;
      width: calc(100% - 32px);
      border-top: 1px solid #D6D6D6;
      position: absolute;
      top: 0;
      left: 16px; }
    .single-career .page-content .wrap h1, .single-career .page-content .wrap h2, .single-career .page-content .wrap h3, .single-career .page-content .wrap h4, .single-career .page-content .wrap h5 {
      text-transform: capitalize;
      margin-bottom: 32px; }
      @media only screen and (max-width: 768px) {
        .single-career .page-content .wrap h1, .single-career .page-content .wrap h2, .single-career .page-content .wrap h3, .single-career .page-content .wrap h4, .single-career .page-content .wrap h5 {
          margin-bottom: 20px; } }
    .single-career .page-content .wrap .wp-block-group, .single-career .page-content .wrap ol, .single-career .page-content .wrap ul {
      margin-bottom: 60px; }
      @media only screen and (max-width: 768px) {
        .single-career .page-content .wrap .wp-block-group, .single-career .page-content .wrap ol, .single-career .page-content .wrap ul {
          margin-bottom: 40px; } }
    .single-career .page-content .wrap p {
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .single-career .page-content .wrap p {
          margin-bottom: 12px; } }
    .single-career .page-content .wrap ol {
      margin-left: 10px;
      counter-reset: my-sec-counter; }
      .single-career .page-content .wrap ol li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .single-career .page-content .wrap ol li {
            padding: 0 0 12px 20px; } }
        .single-career .page-content .wrap ol li:after {
          counter-increment: my-sec-counter;
          content: counter(my-sec-counter) ". ";
          position: absolute;
          top: 0;
          left: 0; }
        .single-career .page-content .wrap ol li:last-of-type {
          padding: 0 0 0 20px; }
    .single-career .page-content .wrap ul {
      margin-left: 10px; }
      .single-career .page-content .wrap ul li {
        position: relative;
        padding: 0 0 20px 20px; }
        @media only screen and (max-width: 768px) {
          .single-career .page-content .wrap ul li {
            padding: 0 0 12px 20px; } }
        .single-career .page-content .wrap ul li:after {
          content: '';
          position: absolute;
          top: 8px;
          left: 0;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #000; }
        .single-career .page-content .wrap ul li:last-of-type {
          padding: 0 0 0 24px; }
  .single-career .page-content .content {
    width: 50%;
    text-align: justify;
    padding-top: 60px; }
    @media only screen and (max-width: 1024px) {
      .single-career .page-content .content {
        width: 100%; } }
    @media only screen and (max-width: 768px) {
      .single-career .page-content .content {
        order: 2;
        width: 100%; } }
  .single-career .page-content .sidebar {
    width: 432px; }
    @media only screen and (max-width: 768px) {
      .single-career .page-content .sidebar {
        order: 1;
        width: 100%; } }
    .single-career .page-content .sidebar h2 {
      font-family: 'DMSans-Medium';
      font-weight: 700;
      font-size: 22px;
      color: #000000;
      position: relative;
      padding-bottom: 20px;
      margin-top: 60px;
      margin-bottom: 32px; }
    .single-career .page-content .sidebar .job-details {
      font-size: 16px; }
      .single-career .page-content .sidebar .job-details h2::before {
        content: '';
        display: block;
        width: 100%;
        border-bottom: 1px solid #D6D6D6;
        position: absolute;
        bottom: 0; }
      .single-career .page-content .sidebar .job-details .row {
        display: flex; }
        .single-career .page-content .sidebar .job-details .row:not(:last-child) {
          margin-bottom: 16px; }
        .single-career .page-content .sidebar .job-details .row .label {
          min-width: 137px;
          margin-right: 63px;
          font-family: 'DMSans-Medium';
          font-weight: 500; }
          @media only screen and (max-width: 768px) {
            .single-career .page-content .sidebar .job-details .row .label {
              margin-right: 40px; } }
        .single-career .page-content .sidebar .job-details .row .value {
          color: #505050; }
    .single-career .page-content .sidebar .application h2 {
      margin-bottom: 0; }
    .single-career .page-content .sidebar form {
      display: flex;
      flex-direction: column;
      gap: 12px; }
      .single-career .page-content .sidebar form .input-row input, .single-career .page-content .sidebar form .input-row select {
        width: 100%;
        height: 52px;
        font-size: 16px;
        color: #505050;
        border: 1px solid #D6D6D6;
        padding: 15px 16px; }
        @media only screen and (max-width: 768px) {
          .single-career .page-content .sidebar form .input-row input, .single-career .page-content .sidebar form .input-row select {
            padding: 9px 16px;
            height: 42px; } }
      .single-career .page-content .sidebar form .input-row.your-file {
        position: relative; }
        .single-career .page-content .sidebar form .input-row.your-file .mask {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 52px;
          font-family: 'DMSans-Medium';
          font-style: normal;
          font-weight: 500;
          font-size: 16px;
          line-height: 100%;
          letter-spacing: -0.01em;
          color: #E64425;
          background: #F5F5F5;
          position: absolute;
          z-index: 1;
          pointer-events: none; }
          @media only screen and (max-width: 768px) {
            .single-career .page-content .sidebar form .input-row.your-file .mask {
              height: 42px; } }
      .single-career .page-content .sidebar form .btn-submit {
        position: relative;
        border-top: 1px solid #D6D6D6;
        padding-top: 20px;
        margin-top: 8px; }
        .single-career .page-content .sidebar form .btn-submit .button {
          width: 100%;
          text-transform: uppercase; }
        .single-career .page-content .sidebar form .btn-submit .wpcf7-spinner {
          position: absolute;
          top: 50%;
          right: 20px;
          transform: translate(0, -50%);
          margin: 0; }
      .single-career .page-content .sidebar form .wpcf7-not-valid-tip {
        font-size: 14px; }
      .single-career .page-content .sidebar form .wpcf7-response-output {
        font-size: 16px;
        text-align: justify;
        padding: 0;
        margin: 0;
        border: none; }
      .single-career .page-content .sidebar form .wpcf7-form-control-wrap[data-name="your-country"] {
        cursor: not-allowed; }
        .single-career .page-content .sidebar form .wpcf7-form-control-wrap[data-name="your-country"] select {
          pointer-events: none;
          cursor: not-allowed; }

.error404 {
  background: #F6F6F6; }
  .error404 nav {
    display: none; }
  .error404 .error-404 {
    padding: 64px 0; }
    @media only screen and (max-width: 768px) {
      .error404 .error-404 {
        padding: 32px 0; } }
    .error404 .error-404 .box {
      width: 100%;
      max-width: 864px;
      margin: 0 auto; }
      .error404 .error-404 .box .box-header {
        background: #E64425;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 52px 40px;
        text-align: center; }
        @media only screen and (max-width: 768px) {
          .error404 .error-404 .box .box-header {
            padding: 32px 16px; } }
        .error404 .error-404 .box .box-header h3 {
          font-size: 90px;
          line-height: 100%;
          margin-bottom: 20px; }
          @media only screen and (max-width: 768px) {
            .error404 .error-404 .box .box-header h3 {
              font-size: 60px; } }
      .error404 .error-404 .box .box-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'DMSans-Regular';
        background-color: #fff;
        padding: 40px 40px 64px; }
        @media only screen and (max-width: 768px) {
          .error404 .error-404 .box .box-body {
            padding: 32px 16px 48px; } }
        .error404 .error-404 .box .box-body a {
          font-family: 'DMSans-Medium';
          font-weight: 500;
          text-decoration-line: underline;
          text-transform: capitalize;
          color: #81564E;
          margin: 0; }

.variations select {
  display: none; }

.woocommerce-message, .woocommerce-error, .woocommerce-info {
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 18px; }
  .woocommerce-message a, .woocommerce-error a, .woocommerce-info a {
    color: #fff;
    min-width: 100px;
    padding: 4px 15px;
    text-align: center;
    transition: 0.2s;
    display: inline-block;
    text-transform: capitalize;
    text-decoration: underline; }
    @media only screen and (max-width: 768px) {
      .woocommerce-message a, .woocommerce-error a, .woocommerce-info a {
        padding: 12px 24px; } }

.single-product .woocommerce-message, .single-product .woocommerce-error, .single-product .woocommerce-info {
  margin-top: 18px;
  margin-bottom: 0; }

.woocommerce-cart .woocommerce-message, .woocommerce-cart .woocommerce-error, .woocommerce-cart .woocommerce-info {
  margin-top: 0; }
  @media only screen and (max-width: 768px) {
    .woocommerce-cart .woocommerce-message, .woocommerce-cart .woocommerce-error, .woocommerce-cart .woocommerce-info {
      margin-top: 18px;
      margin-bottom: 0; } }

.mini-woocommerce-notices-wrapper .woocommerce-message, .mini-woocommerce-notices-wrapper .woocommerce-error, .mini-woocommerce-notices-wrapper .woocommerce-info {
  margin-top: 0; }

.single-product .woocommerce-notices-wrapper {
  width: 100%; }

.custom-woocommerce-account.logged-in .main .woocommerce {
  max-width: 100%; }

.custom-woocommerce-account .main {
  background: #F6F6F6;
  padding: 64px 16px 100px; }
  @media only screen and (max-width: 768px) {
    .custom-woocommerce-account .main {
      background: #fff; } }
  .custom-woocommerce-account .main .woocommerce {
    background-color: #fff;
    max-width: 600px;
    padding: 40px 40px 64px;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      .custom-woocommerce-account .main .woocommerce {
        padding: 0px; } }
    .custom-woocommerce-account .main .woocommerce .login h2, .custom-woocommerce-account .main .woocommerce .register h2, .custom-woocommerce-account .main .woocommerce .lost-password h2, .custom-woocommerce-account .main .woocommerce .lost-password-confirm h2 {
      font-weight: 500;
      font-size: 18px;
      line-height: 100%;
      text-transform: capitalize;
      color: #1C1A17;
      margin-bottom: 32px; }
    .custom-woocommerce-account .main .woocommerce .login a, .custom-woocommerce-account .main .woocommerce .register a, .custom-woocommerce-account .main .woocommerce .lost-password a, .custom-woocommerce-account .main .woocommerce .lost-password-confirm a {
      color: #81564E; }
    .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p,
    .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p,
    .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p,
    .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p,
    .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p {
      font-size: 14px;
      line-height: 22px;
      color: #1C1A17; }
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row,
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row,
      .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row,
      .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row,
      .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row {
        display: block;
        margin-bottom: 20px; }
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row label,
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row label, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row label,
        .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row label, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row label,
        .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row label, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row label,
        .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row label {
          display: block;
          font-weight: 500;
          font-size: 14px;
          line-height: 22px;
          color: #1C1A17;
          margin-bottom: 8px; }
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row input,
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row input, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row input,
        .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row input, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row input,
        .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row input, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row input,
        .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row input {
          width: 100%;
          height: 40px;
          border: 1px solid #D2D1D1;
          padding: 10px 16px; }
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row-rememberme,
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row-rememberme, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row-rememberme,
      .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row-rememberme, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row-rememberme,
      .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row-rememberme, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row-rememberme,
      .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row-rememberme {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between; }
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme,
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme,
        .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme,
        .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme,
        .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme {
          font-weight: 500;
          font-size: 14px;
          line-height: 22px;
          display: flex;
          align-items: center;
          justify-content: center; }
          .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme input,
          .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme input, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme input,
          .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme input, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme input,
          .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme input, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme input,
          .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme input {
            margin-right: 12px; }
          .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme span,
          .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme span, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme span,
          .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme span, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme span,
          .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme span, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.form-row-rememberme .woocommerce-form-login__rememberme span,
          .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.form-row-rememberme .woocommerce-form-login__rememberme span {
            font-weight: 500;
            font-size: 14px;
            line-height: 22px; }
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.mailchimp-newsletter,
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.mailchimp-newsletter, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.mailchimp-newsletter,
      .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.mailchimp-newsletter, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.mailchimp-newsletter,
      .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.mailchimp-newsletter, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.mailchimp-newsletter,
      .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.mailchimp-newsletter {
        display: flex;
        align-items: center; }
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.mailchimp-newsletter input,
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.mailchimp-newsletter input, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.mailchimp-newsletter input,
        .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.mailchimp-newsletter input, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.mailchimp-newsletter input,
        .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.mailchimp-newsletter input, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.mailchimp-newsletter input,
        .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.mailchimp-newsletter input {
          width: 16px;
          height: 16px;
          border: none;
          padding: 0;
          margin-right: 12px; }
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.mailchimp-newsletter label,
        .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.mailchimp-newsletter label, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.mailchimp-newsletter label,
        .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.mailchimp-newsletter label, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.mailchimp-newsletter label,
        .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.mailchimp-newsletter label, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.mailchimp-newsletter label,
        .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.mailchimp-newsletter label {
          margin-bottom: 0; }
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-form p.btn-submit,
      .custom-woocommerce-account .main .woocommerce .login form.woocommerce-ResetPassword p.btn-submit, .custom-woocommerce-account .main .woocommerce .register form.woocommerce-form p.btn-submit,
      .custom-woocommerce-account .main .woocommerce .register form.woocommerce-ResetPassword p.btn-submit, .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-form p.btn-submit,
      .custom-woocommerce-account .main .woocommerce .lost-password form.woocommerce-ResetPassword p.btn-submit, .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-form p.btn-submit,
      .custom-woocommerce-account .main .woocommerce .lost-password-confirm form.woocommerce-ResetPassword p.btn-submit {
        margin-top: 32px;
        margin-bottom: 40px; }
    .custom-woocommerce-account .main .woocommerce .btn-return {
      text-align: center;
      margin-top: 32px;
      margin-bottom: 40px; }
      .custom-woocommerce-account .main .woocommerce .btn-return a {
        color: #fff; }

.woocommerce-account .main {
  background: #F6F6F6;
  padding: 64px 16px 100px; }
  @media only screen and (max-width: 768px) {
    .woocommerce-account .main {
      background: #fff; } }
  .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation {
    background: #F6F6F6; }
    @media only screen and (max-width: 768px) {
      .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation {
        padding: 20px 0px; } }
    .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li {
      display: inline-block;
      padding: 15px 20px; }
      @media only screen and (max-width: 768px) {
        .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li {
          display: block;
          width: 100%;
          padding: 5px 20px; } }
      .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
        color: #81564E; }
      .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
        color: #1C1A17; }
        .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover, .woocommerce-account .main .woocommerce nav.woocommerce-MyAccount-navigation ul li a:active {
          color: #81564E; }
  .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content {
    padding-top: 40px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content h2, .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content h3 {
      font-style: normal;
      font-weight: 500;
      font-size: 18px;
      line-height: 24px;
      text-transform: capitalize;
      color: #1C1A17;
      margin-bottom: 22px; }
      @media only screen and (max-width: 768px) {
        .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content h2, .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content h3 {
          margin-bottom: 15px; } }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content a {
      color: #81564E; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content a.button {
        color: #fff; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content p.form-row {
      display: block;
      margin-bottom: 20px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content p.form-row label {
        display: block;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #1C1A17;
        margin-bottom: 8px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content p.form-row input, .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content p.form-row select {
        width: 100%;
        height: 40px;
        border: 1px solid #D2D1D1;
        padding: 10px 16px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content fieldset {
      border: 1px solid #D2D1D1;
      padding: 20px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content fieldset .woocommerce-password-strength {
        font-size: 14px;
        line-height: 22px;
        text-align: left;
        padding-top: 20px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content fieldset .woocommerce-password-hint {
        font-size: 13px;
        line-height: 20px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses {
      margin-top: 40px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address:not(:last-child) {
        margin-bottom: 40px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address .title {
        margin-bottom: 8px; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address .edit, .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address .add {
        text-transform: capitalize;
        text-decoration: underline; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address address {
        font-size: 14px;
        line-height: 22px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .btn-submit {
      margin-top: 32px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
      width: 100%; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead th {
        padding-bottom: 8px; }
      @media only screen and (max-width: 768px) {
        .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td:last-of-type {
          padding-bottom: 40px; } }
      @media only screen and (max-width: 768px) {
        .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-of-type td:last-of-type {
          padding-bottom: 0; } }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a {
        padding: 9px 12px;
        color: #81564E;
        text-decoration: underline; }
        .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:first-of-type {
          padding-left: 0; }
        .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:last-of-type {
          padding-right: 0; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details table {
      width: 100%;
      max-width: 480px;
      text-align: left; }
      .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details table tr td:first-of-type {
        padding-right: 40px; }
    .woocommerce-account .main .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details {
      margin-top: 40px; }

.woocommerce-cart .main {
  background: #F6F6F6; }
  @media only screen and (max-width: 768px) {
    .woocommerce-cart .main {
      background: #fff; } }
  .woocommerce-cart .main .woocommerce {
    padding: 64px 16px 100px; }
    @media only screen and (max-width: 768px) {
      .woocommerce-cart .main .woocommerce {
        padding: 0 16px; } }
    .woocommerce-cart .main .woocommerce .wrap {
      width: 100%; }
  .woocommerce-cart .main .products-slider {
    background-color: #fff; }
  .woocommerce-cart .main button[name="update_cart"] {
    display: none; }
  .woocommerce-cart .main .return-to-shop {
    text-align: center;
    padding-top: 32px; }

.woocommerce-checkout .main {
  background: #F6F6F6; }
  .woocommerce-checkout .main .woocommerce {
    padding: 64px 16px 0; }
    .woocommerce-checkout .main .woocommerce .wrap {
      width: 100%;
      padding: 0; }
      @media only screen and (max-width: 768px) {
        .woocommerce-checkout .main .woocommerce .wrap {
          padding: 0 16px; } }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 16px; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin {
          width: 100%;
          position: relative;
          display: flex;
          flex-wrap: wrap;
          gap: 16px 32px; }
          .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin a {
            color: #ED3843; }
          .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin .woocommerce-form-login__rememberme {
            font-family: 'DMSans-Regular';
            margin-bottom: 0; }
          .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin a.lost_password {
            font-size: 14px; }
          .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin .button {
            width: auto; }
          @media only screen and (max-width: 768px) {
            .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin .form-row-rememberme, .woocommerce-checkout .main .woocommerce .wrap .woocommerce-formlogin .formlogin .form-row-lostpassword {
              width: calc(50% - 16px); } }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-billing-fields {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 32px; }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-shipping-fields {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 16px; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-shipping-fields .shipping_address {
          width: 100%;
          position: relative;
          display: flex;
          flex-wrap: wrap;
          gap: 32px; }
      .woocommerce-checkout .main .woocommerce .wrap #ship-to-different-address {
        width: 100%; }
        .woocommerce-checkout .main .woocommerce .wrap #ship-to-different-address label {
          display: flex;
          align-items: center; }
        .woocommerce-checkout .main .woocommerce .wrap #ship-to-different-address input {
          margin-right: 12px; }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-account-fields {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 16px; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-account-fields .woocommerce-form__label-for-checkbox {
          color: #2F80ED; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-account-fields .create-account {
          width: 100%; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-account-fields .woocommerce-password-strength {
          font-size: 14px;
          line-height: 22px; }
        .woocommerce-checkout .main .woocommerce .wrap .woocommerce-account-fields .woocommerce-password-hint {
          font-size: 13px;
          line-height: 20px; }
      .woocommerce-checkout .main .woocommerce .wrap .mailchimp-newsletter {
        display: flex;
        align-items: center; }
        .woocommerce-checkout .main .woocommerce .wrap .mailchimp-newsletter input {
          margin-right: 12px; }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-form__label-for-checkbox {
        display: flex;
        align-items: center; }
      .woocommerce-checkout .main .woocommerce .wrap .woocommerce-form__input-checkbox {
        width: 16px;
        height: 16px;
        margin-right: 12px; }

.woocommerce-wishlist .wishlist-section {
  padding: 80px 0 100px 0; }
  @media only screen and (max-width: 768px) {
    .woocommerce-wishlist .wishlist-section {
      padding: 44px 0; } }
  .woocommerce-wishlist .wishlist-section .wrap {
    max-width: 864px; }
    .woocommerce-wishlist .wishlist-section .wrap .woocommerce {
      width: 100%; }
  .woocommerce-wishlist .wishlist-section .wishlist_table .product-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #ebeaea; }
    @media only screen and (max-width: 768px) {
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item {
        padding: 16px 0;
        margin: 0; } }
    .woocommerce-wishlist .wishlist-section .wishlist_table .product-item:last-of-type {
      border: none; }
    .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .remove_from_wishlist {
      width: 24px;
      height: 24px;
      margin: 0;
      padding: 0;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1; }
    .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .delete-from-cart {
      position: absolute;
      top: 20px;
      right: 0;
      width: 24px;
      height: 24px; }
      @media only screen and (max-width: 768px) {
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .delete-from-cart {
          width: 20px;
          height: 20px;
          top: 12px; } }
    .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .img-box {
      position: relative;
      width: 116px;
      height: 116px;
      overflow: hidden; }
      @media only screen and (max-width: 768px) {
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .img-box {
          width: 84px;
          height: 84px; } }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .img-box:hover img {
        transform: translate(-50%, -50%) scale(1.1); }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .img-box img {
        object-fit: cover;
        position: absolute;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.4s; }
    .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: 100%;
      width: calc(100% - 116px);
      padding: 0 38px 0 12px; }
      @media only screen and (max-width: 768px) {
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box {
          width: calc(100% - 84px);
          padding: 0 24px 0 8px; } }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .price-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 8px;
        font-family: 'PlayfairDisplay-Regular';
        color: #E64425;
        margin: 0 0 4px 0; }
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .price-row span {
          color: #6d6b6a; }
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .price-row .without-discount {
          color: #6d6b6a;
          text-decoration: line-through; }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .name {
        display: inline-flex;
        flex: 1;
        font-family: 'DMSans-Medium';
        font-weight: 500;
        font-size: 14px;
        line-height: 1.2;
        margin: 0 0 14px 0; }
        .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .name:hover {
          color: #ED3843; }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .in-stock {
        font-size: 14px;
        line-height: 1.2;
        font-family: 'DMSans-Regular';
        color: #08a071; }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .out-of-stock {
        font-size: 14px;
        line-height: 1.2;
        font-family: 'DMSans-Regular';
        color: #eb5757; }
      .woocommerce-wishlist .wishlist-section .wishlist_table .product-item .box .add_to_cart_button {
        color: #81564E;
        font-size: 14px;
        line-height: 1.2;
        text-transform: capitalize; }
  .woocommerce-wishlist .wishlist-section .empty-wishlist {
    text-align: center; }
  .woocommerce-wishlist .wishlist-section .pagination {
    padding-top: 54px; }
    @media only screen and (max-width: 768px) {
      .woocommerce-wishlist .wishlist-section .pagination {
        padding-top: 32px; } }
  .woocommerce-wishlist .wishlist-section .yith_wcwl_wishlist_footer .yith-wcwl-share {
    margin-bottom: 0;
    padding-top: 32px; }
    .woocommerce-wishlist .wishlist-section .yith_wcwl_wishlist_footer .yith-wcwl-share .yith-wcwl-share-title {
      margin-bottom: 12px; }
    .woocommerce-wishlist .wishlist-section .yith_wcwl_wishlist_footer .yith-wcwl-share ul {
      margin: 0; }

/* Start Common CSS */
body.fixed.admin-bar .search-box,
body.fixed.admin-bar .backing {
  top: 143px; }
  @media only screen and (max-width: 768px) {
    body.fixed.admin-bar .search-box,
    body.fixed.admin-bar .backing {
      top: calc(32px + 97px); } }

body.fixed .search-box,
body.fixed .backing {
  top: 111px; }
  @media only screen and (max-width: 768px) {
    body.fixed .search-box,
    body.fixed .backing {
      top: 83px; } }

.cart-box .empty-cart-box a {
  text-decoration: underline; }

.breadcrumbs a:after {
  background-image: url(../../src/img/svg-icons/chevron-right.svg); }

/* End Common CSS */
/* Start Homepage CSS*/
.wrap-fluid {
  width: 100%;
  margin: 0px;
  padding: 0px; }

/* End Homepage CSS*/
/* Start Cart Page CSS*/
.bag .card .summary .row.coupons .coupon,
.checkout .accordion .summary .row.coupons .coupon {
  position: relative;
  width: 100%;
  font-family: 'DMSans-Regular'; }

.bag .card .summary .row.coupons .coupon .label,
.checkout .accordion .summary .row.coupons .coupon .label {
  background: #F6F6F6;
  padding: 10px 16px;
  width: 75%;
  color: #1C1A17; }

.bag .card .summary .row.coupons .coupon .discount,
.checkout .accordion .summary .row.coupons .coupon .discount {
  margin-top: 12px; }

.bag .card .summary .row.coupons .coupon .discount a,
.checkout .accordion .summary .row.coupons .coupon .discount a {
  position: absolute;
  right: 0px;
  top: 0; }

.bag .card .summary .row.coupons .coupon .discount a,
.checkout .accordion .summary .row.coupons .coupon .discount a,
.apply-gift-card-inner .gift-card-right a {
  color: #81564E;
  height: 44px;
  line-height: 44px;
  text-transform: capitalize;
  font-size: 14px;
  font-family: 'DMSans-Medium';
  font-weight: 500;
  padding: 0px 5px; }

.bag .card .summary .accordion.opened .accordion-body,
.checkout .accordion .accordion-body .summary .accordion.opened .accordion-body {
  display: block; }

.apply-gift-card-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between; }

.apply-gift-card-inner .gift-card-left {
  width: 75%; }

.wc-proceed-to-checkout a.checkout-button {
  display: none; }

.pwgc-checkout-subtitle {
  line-height: 1.4;
  font-size: 80%; }

.card.gift-packaging .variations {
  display: none; }

.card.gift-packaging .row.variatio-open .variations {
  display: block; }

#attribute_option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0px -8px; }

#attribute_option .item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  margin: 16px 0px;
  padding: 0 8px; }

#attribute_option .item label {
  margin: 10px auto 0px;
  border-radius: 100%; }

.bag .card .summary .accordion .accordion-body .field {
  flex-wrap: nowrap; }

/* End Cart Page CSS */
/* Start Checkout Page CSS*/
.woocommerce-checkout .main .woocommerce {
  padding: 64px 16px 100px; }

/* Edit Checkout Page CSS*/
/* Start Contact Us Pag CSS*/
.contact-us .col form .btn-submit .button {
  background: transparent; }

.contact-us .col form .btn-submit .button:hover {
  background: #ED3843;
  color: #fff; }

/* End Contact Us Pag CSS*/
/* Responsive CSS */
@media only screen and (max-width: 1024px) {
  /* Start Common CSS */
  .search-box a.logo {
    display: none; }
  body.fixed .offer {
    width: 100%; }
  /* End Common CSS */
  /* Start Checkout Page CSS*/
  .checkout .checkout-card,
  .checkout .accordion {
    width: 100%;
    margin: 0px; }
  .checkout .accordion .accordion-link {
    position: absolute;
    top: 50px;
    right: 16px;
    display: none !important; }
  .checkout .accordion.opened .accordion-link {
    display: block !important; }
  .woocommerce-checkout .main .woocommerce .wrap {
    flex-direction: column-reverse;
    padding: 0px; }
  /* Edit Checkout Page CSS*/ }

@media only screen and (max-width: 768px) {
  /* Start Common CSS */
  .search-box .search-input .clean-input {
    display: none; }
  .search-box .search-input {
    margin: 8px 0 0 0; }
  /* End Common CSS */
  /* Start Cart header popup CSS */
  .cart-box .empty-cart-box {
    padding: 48px 15px; }
  /* End Cart header popup CSS */ }

@media only screen and (max-width: 480px) {
  /* Start Checkout Page CSS*/
  .woocommerce-checkout .main .woocommerce {
    padding: 0px 0px 0px;
    background: #fff; }
  .checkout .checkout-card .box .box-title {
    font-size: 16px; }
  .checkout #checkout_payments .payment_methods {
    grid-gap: 16px; }
  .checkout #checkout_payments .payment_methods li {
    width: 100%; }
  /* Edit Checkout Page CSS*/ }

.checkout #checkout_payments .payment_methods li .payment_box {
  padding-left: 0;
  padding-right: 0;
  width: calc(200% + 32px);
  transform: translateX(calc(-50% - 16px)); }

@media only screen and (max-width: 480px) {
  .checkout #checkout_payments .payment_methods li .payment_box {
    width: 100%;
    transform: none; } }

/*-------------------- Global styles --------------------*/
html {
  min-width: 320px;
  background: #fff; }

body {
  padding: 0 !important;
  width: 100%;
  overflow-x: hidden;
  min-width: 1344px;
  height: 100%;
  color: #000;
  font-family: 'DMSans-Regular', arial, sans-serif;
  font-size: 18px;
  line-height: 23px; }
  body.fixed {
    overflow: hidden;
    height: 100%; }
  @media only screen and (max-width: 1344px) {
    body {
      min-width: 320px; } }

a {
  color: #000;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.2s; }

/* Wrap */
.global-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .global-wrap {
      height: 100%; } }
  .global-wrap .main {
    flex: 1 0 auto;
    /* NOT flex: 1; */ }

.wrap, .main .woocommerce {
  position: relative;
  overflow: hidden;
  width: 1344px;
  margin: 0 auto;
  padding: 0 16px; }
  @media only screen and (max-width: 1344px) {
    .wrap, .main .woocommerce {
      width: 1024px; } }
  @media only screen and (max-width: 1024px) {
    .wrap, .main .woocommerce {
      width: 768px; } }
  @media only screen and (max-width: 768px) {
    .wrap, .main .woocommerce {
      width: 480px; } }
  @media only screen and (max-width: 480px) {
    .wrap, .main .woocommerce {
      width: 100%; } }

/* Headings */
h1 {
  font-family: 'PlayfairDisplay-Regular';
  font-size: 72px;
  line-height: 100%; }
  @media only screen and (max-width: 1344px) {
    h1 {
      font-size: 40px; } }
  @media only screen and (max-width: 768px) {
    h1 {
      font-size: 28px; } }

h2 {
  font-family: 'PlayfairDisplay-Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0.01em; }
  @media only screen and (max-width: 768px) {
    h2 {
      font-size: 20px; } }

h3 {
  font-family: 'PlayfairDisplay-Regular';
  font-size: 28px;
  line-height: 100%; }
  @media only screen and (max-width: 768px) {
    h3 {
      font-size: 18px; } }

h4 {
  font-family: 'PlayfairDisplay-Regular';
  font-size: 18px;
  line-height: 100%; }
  @media only screen and (max-width: 768px) {
    h4 {
      font-size: 16px; } }

h5 {
  font-family: 'DMSans-Medium';
  font-weight: 500;
  font-size: 16px;
  line-height: 28px; }
  @media only screen and (max-width: 768px) {
    h5 {
      font-size: 14px; } }

h6 {
  font-family: 'DMSans-Medium';
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize; }

/* Buttons */
.button {
  display: inline-flex;
  justify-content: center;
  font-family: 'DMSans-Medium';
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 17px 43px;
  text-transform: capitalize; }
  @media only screen and (max-width: 768px) {
    .button {
      padding: 13px 27px;
      font-size: 14px;
      line-height: 1; } }
  .button.stroke-white {
    border: 1px solid #fff;
    color: #fff; }
  .button.fill-brown {
    background: #ED3843;
    border: 1px solid #ED3843;
    color: #fff; }
  .button.stroke-brown {
    border: 1px solid #ED3843;
    color: #ED3843; }
  .button.fill-gray {
    color: #E64425;
    background: #F5F5F5;
    border: 1px solid #F5F5F5; }

.btn {
  cursor: pointer; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; }
  @media only screen and (max-width: 768px) {
    .breadcrumbs {
      display: none; } }
  .breadcrumbs a {
    font-size: 14px;
    line-height: 100%;
    position: relative;
    margin: 0 24px 0 0;
    padding: 16px 0; }
    .breadcrumbs a:hover {
      color: #ED3843; }
    .breadcrumbs a:after {
      content: '';
      position: absolute;
      top: 50%;
      right: -18px;
      transform: translate(0, -50%);
      width: 12px;
      height: 12px;
      background-image: url(./../img/svg-icons/chevron-right.svg);
      background-size: 12px;
      background-position: center;
      background-repeat: no-repeat;
      pointer-events: none; }
    .breadcrumbs a:last-of-type {
      margin: 0;
      pointer-events: none;
      opacity: 0.8; }
      .breadcrumbs a:last-of-type::after {
        content: none; }

/* Pagination */
.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; }
  @media only screen and (max-width: 768px) {
    .pagination {
      gap: 4px; } }
  .pagination a, .pagination span {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DMSans-Regular';
    font-weight: 400;
    font-size: 14px;
    color: #505050;
    border: 1px solid #D6D6D6; }
    .pagination a:hover, .pagination span:hover {
      color: #ED3843; }
    .pagination a.current, .pagination span.current {
      color: #fff;
      background-color: #E64425;
      border: 1px solid #E64425; }
    @media only screen and (max-width: 768px) {
      .pagination a, .pagination span {
        height: 30px; } }
  .pagination .prev,
  .pagination .next {
    width: initial;
    height: initial;
    white-space: nowrap;
    padding: 12px 20px; }
    @media only screen and (max-width: 768px) {
      .pagination .prev,
      .pagination .next {
        padding: 7px 2px; } }
    .pagination .prev:hover svg,
    .pagination .next:hover svg {
      fill: #ED3843; }
    .pagination .prev svg,
    .pagination .next svg {
      width: 52px;
      height: 14px;
      fill: #000; }
      @media only screen and (max-width: 768px) {
        .pagination .prev svg,
        .pagination .next svg {
          width: 42px;
          height: 12px; } }

.swiper {
  z-index: 0; }

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