/* Media query variables */
/* Theme Colors */
.b-o-p {
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.b-o-p:hover {
  background-color: #714a43;
  color: #ffffff;
}
.txt-primary {
  color: #714a43;
}
.txt-primary:visited {
  color: #714a43;
}
.txt-secondary {
  color: #e5e5e3;
}
.txt-dark {
  color: #212529;
}
.txt-light {
  color: #fff;
}
.txt-gray {
  color: #a0a0a0;
}
.txt-offer {
  color: #f47862;
}
/* Typography */
.fs-0 {
  font-size: 0.8rem;
}
.fs-1 {
  font-size: 1rem;
}
.fs-2 {
  font-size: 1.2rem;
}
.fs-3 {
  font-size: 1.4rem;
}
.fs-4 {
  font-size: 1.6rem;
}
.fs-5 {
  font-size: 1.8rem;
}
.fs-6 {
  font-size: 2rem;
}
.fs-7 {
  font-size: 2.2rem;
}
.fs-8 {
  font-size: 2.4rem;
}
.ls-1 {
  letter-spacing: 0.1px;
}
.ls-2 {
  letter-spacing: 0.5px;
}
.ls-3 {
  letter-spacing: 1px;
}
.ls-4 {
  letter-spacing: 2px;
}
.fslh-1 {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.text-bold {
  font-weight: bold;
}
/* helpers */
@media only screen and (max-width: 768px) {
  .pagePadding {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pagePadding {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1199px) {
  .pagePadding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.light-background {
  background-color: #ffffff;
}
.p-tb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}
.mt-6 {
  margin-top: 5rem;
}
.mb-6 {
  margin-bottom: 5rem;
}
.mt-75 {
  margin-top: 75px;
}
.mb-75 {
  margin-bottom: 75px;
}
@media only screen and (max-width: 768px) {
  .mb-75 {
    margin-bottom: 50px;
  }
}
.maxWidth {
  max-width: 1170px;
}
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.flex-full-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.flex-d-center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tooltip {
  font-size: 1.2rem;
}
/* row equal heights */
.row.eq-heights {
  overflow: hidden;
}
.row.eq-heights [class*="col-"] {
  margin-bottom: -99999px;
  padding-bottom: 99999px;
}
.br2 {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.br1 {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.no-shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0) !important;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0) !important;
}
.blend-multiply {
  mix-blend-mode: multiply;
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes expandWidth {
  0% {
    width: 1rem;
  }
  100% {
    width: 5rem;
  }
}
@-webkit-keyframes expandTheWidth {
  0% {
    width: 0;
  }
  100% {
    width: 65px;
  }
}
@-moz-keyframes expandTheWidth {
  0% {
    width: 0;
  }
  100% {
    width: 65px;
  }
}
@-ms-keyframes expandTheWidth {
  0% {
    width: 0;
  }
  100% {
    width: 65px;
  }
}
@-o-keyframes expandTheWidth {
  0% {
    width: 0;
  }
  100% {
    width: 65px;
  }
}
@keyframes expandTheWidth {
  0% {
    width: 0;
  }
  100% {
    width: 65px;
  }
}
@-webkit-keyframes expandHeight {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}
@-moz-keyframes expandHeight {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}
@-ms-keyframes expandHeight {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}
@-o-keyframes expandHeight {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}
@keyframes expandHeight {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-ms-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-o-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotateOpposite {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-moz-keyframes rotateOpposite {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-ms-keyframes rotateOpposite {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-o-keyframes rotateOpposite {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes rotateOpposite {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
  height: 4rem;
  background: transparent;
  border: 1px solid #79796f;
  padding-left: 1.5rem;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #b4b4ae;
  opacity: 0.5;
}
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="datetime"]:-moz-placeholder,
input[type="email"]:-moz-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #b4b4ae;
  opacity: 0.5;
}
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #b4b4ae;
  opacity: 0.5;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #b4b4ae;
  opacity: 0.5;
}
textarea {
  background: transparent;
  border: 1px solid #79796f;
}
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
  -webkit-box-shadow: 0 0 10px rgba(113, 74, 67, 0.1);
  -moz-box-shadow: 0 0 10px rgba(113, 74, 67, 0.1);
  -o-box-shadow: 0 0 10px rgba(113, 74, 67, 0.1);
  box-shadow: 0 0 10px rgba(113, 74, 67, 0.1);
}
a {
  color: #000000;
}
a:visited {
  color: unset;
}
a:hover {
  color: #111111;
  text-decoration: none;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
  box-shadow: none;
}
.swiper-button-prev {
  background: none;
  height: 5rem;
  width: 5rem;
  border: 1px solid #714a43;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  left: 0.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.swiper-button-prev:hover {
  opacity: 1;
}
.swiper-button-prev:after {
  font-size: 3rem;
  content: "\e900";
  color: #714a43;
  font-family: "palafoutisIcons";
}
.swiper-button-next {
  background: none;
  height: 5rem;
  width: 5rem;
  border: 1px solid #714a43;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  right: 0.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.swiper-button-next:hover {
  opacity: 1;
}
.swiper-button-next:after {
  font-size: 3rem;
  content: "\e901";
  color: #714a43;
  font-family: "palafoutisIcons";
}
::-moz-selection {
  background-color: #714a43;
  /* 1 */
  color: #fff;
  /* 1 */
  text-shadow: none;
}
::selection {
  background-color: #714a43;
  /* 1 */
  color: #fff;
  /* 1 */
  text-shadow: none;
}
/* Scrollbar */
*::-webkit-scrollbar {
  width: 3px;
  /* width of the entire scrollbar */
}
*::-webkit-scrollbar-track {
  background: #d9d9d9;
  /* color of the tracking area */
}
*::-webkit-scrollbar-thumb {
  background-color: #714a43;
  /* color of the scroll thumb */
  border-radius: 0px;
  /* roundness of the scroll thumb */
}
/* button */
button {
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.button,
.tocart {
  min-height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.5rem 2.75rem 0.5rem 2.75rem;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
}
.button.button-primary,
.tocart.button-primary {
  background: #714a43;
  color: #ffffff;
  border: none;
}
.button.button-primary:hover,
.tocart.button-primary:hover {
  background: #61403a;
}
.button.button-primary:focus,
.tocart.button-primary:focus {
  background: #513530;
}
.button.button-light,
.tocart.button-light {
  background: #f4f4f3;
  color: #714a43;
}
.button.button-secondary,
.tocart.button-secondary {
  background: #e5e5e3;
  color: #ffffff;
}
.button.button-secondary:hover,
.tocart.button-secondary:hover {
  background: #d9d9d6;
}
.button.button-outline-primary,
.tocart.button-outline-primary {
  color: #714a43;
  border: 1px solid #714a43;
}
.button.button-outline-primary:hover,
.tocart.button-outline-primary:hover {
  background: #714a43;
  color: #ffffff;
  border: 1px solid #714a43;
}
.button.button-large,
.tocart.button-large {
  padding: 1rem 3.5rem;
}
.button:not(.button-outline):hover,
.tocart:not(.button-outline):hover {
  text-decoration: none;
}
.action.primary:focus,
.action-primary:focus,
.action.primary:active,
.action-primary:active,
.amshopby-button:focus,
.amshopby-button:active,
.am-filter-go:focus,
.am-filter-go:active {
  border: 1px solid #714a43;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 600;
  border: 1px solid #79796f;
  cursor: pointer;
  max-width: 400px;
  background-color: transparent;
  background-image: url("../images/caret.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 7px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  height: 4rem;
  padding: 2px 25px 2px 10px;
  position: relative;
}
select:not([disabled]):focus {
  box-shadow: none;
  outline: none;
}
select option {
  font-weight: 500;
}
.mnss-input {
  height: 3rem;
  background: #f5f5f5;
  border: 1px solid #b4b4ae;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.mnss-input.big-input {
  height: 4rem;
}
.mnss-input:focus {
  outline: none;
  box-shadow: none;
}
.radio-group {
  clear: both;
  display: inline-block;
}
.radio-group label {
  margin-bottom: 0;
}
.radio-group .mnss-radio-btn {
  position: absolute;
  left: -9999em;
  top: -9999em;
}
.radio-group .mnss-radio-btn + label {
  float: left;
  height: 3rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
  min-width: 4rem;
  cursor: pointer;
  border: 1px solid #cacaca;
  margin-right: -1px;
  color: #e5e5e3;
  background-color: transparent;
}
.radio-group .mnss-radio-btn + label:first-of-type {
  border-radius: 5px 0 0 5px;
}
.radio-group .mnss-radio-btn + label:last-of-type {
  border-radius: 0 5px 5px 0;
}
.radio-group .mnss-radio-btn:checked + label {
  color: #e5e5e3;
  font-weight: 600;
}
/* container */
@media only screen and (min-width: 1800px) {
}
@media only screen and (min-width: 1400px) and (max-width: 1799px) {
  .container:not(.no-full-max-width) {
    max-width: 100%;
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container:not(.no-full-max-width) {
    max-width: 100%;
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container:not(.no-full-max-width) {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
/* bootstrap gutters */
.row.big-gutter [class*="col-"]:not(:first-child):not(:last-child) {
  padding-right: 3.5rem;
  padding-left: 3.5rem;
}
.row.big-gutter [class*="col-"]:first-child {
  padding-right: 3.5rem;
}
.row.big-gutter [class*="col-"]:last-child {
  padding-left: 3.5rem;
}
.row-large-gutter {
  margin-left: -4rem;
  margin-right: -4rem;
}
.row-large-gutter > * {
  padding-left: 4rem;
  padding-right: 4rem;
}
/* bootstrap gutters */
.row.no-gutter [class*="col-"]:not(:first-child):not(:last-child) {
  padding-right: 5px;
  padding-left: 5px;
}
/* remove right padding from first column */
.row.no-gutter [class*="col-"]:first-child {
  padding-right: 5px;
}
/* remove left padding from first column */
.row.no-gutter [class*="col-"]:last-child {
  padding-left: 5px;
}
.wow {
  visibility: visible !important;
}
/* hide wow animations on mobile */
@media only screen and (max-width: 768px) {
  .wow {
    animation-name: none !important;
    visibility: visible !important;
    opacity: 1;
  }
}
/* Back to top */
#back-to-top {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  overflow: hidden;
  z-index: 99;
  cursor: pointer;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  text-align: center;
  font-size: 1.8rem;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
#back-to-top .icon {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#back-to-top:hover {
  background-color: #714a43;
  color: #fff;
}
.not-found-page {
  margin-bottom: 7vw;
  padding-bottom: 5vw;
}
.not-found-page .not-found-image {
  width: 100%;
  margin-top: 7vw;
  margin-bottom: 7rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.not-found-page .not-found-image img {
  width: 700px;
}
.not-found-page .text {
  text-align: center;
  font-size: 4rem;
}
.not-found-page .text .actions {
  margin-top: 5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.not-found-page .text .action-1 {
  margin-right: 1rem;
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 4rem;
}
.not-found-page .text .action-1:hover {
  background-color: #714a43;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .not-found-page .text .action-1 {
    font-size: 14px;
  }
}
.not-found-page .text .action-2 {
  background: #714a43;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 4rem;
}
@media only screen and (max-width: 768px) {
  .not-found-page .text .action-2 {
    font-size: 14px;
  }
}
.noScroll {
  width: 100%;
  overflow: hidden;
  position: sticky;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.two-lines-text {
  display: -webkit-box;
  max-width: 100%;
  height: 4rem;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.full-height-box {
  height: 100%;
  width: 100%;
}
.full-height-box .col-12 {
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: none;
  outline: none;
}
button:focus {
  border: 0;
  outline: 0;
}
.page-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.columns .column.main {
  padding-bottom: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
  background-color: #f4f4f3;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.columns {
  overflow: hidden;
}
html {
  font-size: 62.5%;
}
body {
  /*  font-family: 'mnss', Helvetica, Arial, sans-serif;*/
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  scroll-behavior: smooth;
}
.content-padding {
  padding-left: 100px;
  padding-right: 100px;
  margin: auto;
}
@media only screen and (max-width: 1920px) {
  .content-padding {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .content-padding {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .content-padding {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.section-Ypad {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-Ypad._bigger {
  padding-top: calc(50px * 2);
  padding-bottom: calc(50px * 2);
}
@media only screen and (max-width: 1199px) {
  .section-Ypad {
    padding-top: 33.33333333px;
    padding-bottom: 33.33333333px;
  }
}
.mx1280 {
  max-width: 1280px;
  margin: 0 auto;
}
.mx1400 {
  max-width: 1400px;
  margin: 0 auto;
}
.backgroundMask {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 1;
  top: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media only screen and (max-width: 991px) {
  .backgroundMask {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .backgroundMask {
    opacity: 0.6;
  }
  .backgroundMask .guide:nth-child(4),
  .backgroundMask .guide:nth-child(5),
  .backgroundMask .guide:nth-child(6) {
    display: none;
  }
}
.backgroundMask .guide {
  position: relative;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #e0e0de,
    #e0e0de 50%,
    transparent 0,
    transparent
  );
  background-size: 1px 8px;
  animation: gradient 15s ease infinite;
}
.guide::after {
  content: "";
  display: block;
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  top: -50%;
  left: -0.75rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #dcdcd8;
  background: #f4f4f3;
  -webkit-animation: drop 50s 0s infinite;
  animation: drop 50s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.guide:first-child {
  opacity: 0;
}
.guide:first-child:after {
  opacity: 0;
}
.guide:nth-child(2)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 80s;
  animation-duration: 80s;
}
.guide:nth-child(3)::after {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
}
.guide:nth-child(4)::after {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-duration: 60s;
  animation-duration: 60s;
}
.guide:nth-child(5)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  -webkit-animation-duration: 60s;
  animation-duration: 60s;
}
.guide:nth-child(6)::after {
  -webkit-animation-delay: 3.25s;
  animation-delay: 3.25s;
  -webkit-animation-duration: 55s;
  animation-duration: 55s;
}
@-webkit-keyframes drop {
  0% {
    top: -1rem;
  }
  100% {
    top: calc(100% + 1rem);
  }
}
@keyframes drop {
  0% {
    top: -1rem;
  }
  100% {
    top: calc(100% + 1rem);
  }
}
.section-title {
  margin-bottom: 3.5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .section-title {
    margin-bottom: 2rem;
  }
}
.section-title._withNav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  .section-title._withNav {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-title._withNav .slider-nav {
    width: 100%;
    margin-top: 3.5rem;
  }
}
.section-title._centered {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.section-title h4 {
  position: relative;
  font-size: calc(5.2rem + 0.5vw);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 2px;
}
.section-title h4._shape {
  --shapeSize: 20rem;
  --headingHeight: 2.5rem;
}
.section-title h4._shape._shapeBig {
  --shapeSize: 40rem;
}
@media only screen and (max-width: 576px) {
  .section-title h4._shape._shapeBig {
    --shapeSize: 20rem;
  }
}
.section-title h4._shape:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.section-title h4._shapeLeft:before {
  background-image: url("../images/logo-icon-lines-p-withCircle.svg");
  background-size: var(--shapeSize);
  width: var(--shapeSize);
  height: var(--shapeSize);
  left: calc((-1 * var(--shapeSize) / 2) + var(--headingHeight) / 2);
  bottom: calc((-1 * var(--shapeSize) / 2) + var(--headingHeight) / 1.3);
  -webkit-animation: spin 125s infinite linear;
  opacity: 0.5;
}
@media only screen and (max-width: 576px) {
  .section-title h4._shapeLeft:before {
    opacity: 0.25;
  }
}
.section-title h4._shapeLeft2:before {
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--shapeSize);
  width: var(--shapeSize);
  height: var(--shapeSize);
  left: calc((-1 * var(--shapeSize) / 2) + var(--headingHeight) / 2);
  bottom: calc((-1 * var(--shapeSize) / 2) + var(--headingHeight) / 1.3);
  opacity: 0.4;
}
.section-title h4._shapeLeft1:before {
  --size: 55px;
  content: "";
  position: absolute;
  height: var(--size);
  width: var(--size);
  top: 50%;
  transform: translateY(-50%);
  left: calc(-1 * (50px + var(--size) / 2));
  background-image: url("../images/logo-icon-circle.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
@media only screen and (min-width: 1921px) {
  .section-title h4._shapeLeft1:before {
    left: calc(-1 * (100px + var(--size) / 2));
  }
}
@media only screen and (max-width: 1199px) {
  .section-title h4._shapeLeft1:before {
    left: calc(-1 * (50px + var(--size) / 2));
  }
}
@media only screen and (max-width: 991px) {
  .section-title h4._shapeLeft1:before {
    left: calc(-1 * (35px + var(--size) / 2));
  }
}
@media only screen and (max-width: 768px) {
  .section-title h4._shapeLeft1:before {
    left: calc(-1 * (25px + var(--size) / 2));
  }
}
@media only screen and (max-width: 480px) {
  .section-title h4._shapeLeft1:before {
    --size: 50px;
    left: calc(-1 * (15px + var(--size) / 1.15));
  }
}
.section-title._small h4 {
  font-size: calc(2.8rem + 0.5vw);
  font-weight: 300;
  letter-spacing: 1px;
}
.section-title h4:after {
  --size: 1rem;
  content: "";
  position: absolute;
  bottom: 0.65rem;
  right: -1.5rem;
  background-image: url("../images/logo-icon-circle.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  width: var(--size);
  height: var(--size);
  pointer-events: none;
  z-index: 2;
}
.section-title._small h4:after {
  bottom: 0.45rem;
}
.section-title._smallGap {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .section-title h4 {
    font-size: 3.6rem;
    letter-spacing: 0.5px;
  }
}
.page-wrapper {
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}
header.page-header {
  border: none;
}
header.page-header .panel.wrapper {
  background-repeat: repeat;
  background-size: 200px;
  background-position: center;
  color: #ffffff;
}
header.page-header .panel.wrapper > .header {
  max-width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 13px 150px;
}
header.page-header .panel.wrapper .header .header--lang {
  flex: 1;
}
header.page-header
  .panel.wrapper
  .header
  .header--lang
  .lang:not(:first-child) {
  margin: 0 5px;
  padding: 0 10px;
  border-left: 1px solid #ffffff;
}
header.page-header .panel.wrapper .header .header--lang .lang.active {
  font-weight: 600;
  color: #714a43;
}
header.page-header .panel.wrapper .header .header--slogan {
  flex: 1;
  flex-grow: 3;
  text-align: center;
}
header.page-header .panel.wrapper .header .header--info {
  flex: 1;
  text-align: right;
}
header.page-header .panel.wrapper .header .header--info a {
  letter-spacing: 1px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
header.page-header .panel.wrapper .header .header--info .icon {
  font-size: 1.3rem;
  margin-top: -0.4rem;
  margin-right: 1rem;
}
header.page-header .header.content {
  position: relative;
  color: #111111;
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  margin: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 1920px) {
  header.page-header .header.content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  header.page-header .header.content {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 768px) {
  header.page-header .header.content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
header.page-header .header.content:before {
  --svgSize: 400px;
  content: "";
  width: 30vw;
  height: var(--svgSize);
  position: absolute;
  top: calc(-1 * var(--svgSize) / 3);
  left: calc(-1 * var(--svgSize) / 3);
  background-image: url("../images/logo-icon-u.svg");
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(135deg);
  opacity: 0.4;
  z-index: -1;
}
header.page-header .header.content:after {
  content: "";
  width: 400px;
  height: 120px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-bottom-left-radius: 100px;
  border-bottom-left-radius: 100px;
  background-color: #e5e5e3;
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  header.page-header .header.content:after {
    width: 320px;
    height: 100px;
    -webkit-border-bottom-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
@media only screen and (max-width: 768px) {
  header.page-header .header.content:after {
    width: 320px;
    height: 80px;
  }
}
header.page-header .header.content .header-content--top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left {
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search {
  padding: 0;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control {
  padding: 0;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  .nested {
  display: none;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input {
  font-size: 1.4rem;
  border: 1px solid #e5e5e3;
  padding: 5px 20px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input::-webkit-input-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #b4b4ae;
  opacity: 1;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input:-moz-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #b4b4ae;
  opacity: 1;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input::-moz-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #b4b4ae;
  opacity: 1;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input:-ms-input-placeholder {
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #b4b4ae;
  opacity: 1;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .search
  .control
  input:focus {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  outline: none;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .actions
  button.search {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #714a43;
  opacity: 1;
  width: 4rem;
  height: 4rem;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_left
  .block-search
  form.minisearch
  .actions
  button.search:before {
  font-family: "mnss-icons";
  content: "\e90c";
  color: #ffffff;
  font-size: 2rem;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_center {
  flex: 0 0 max-content;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_center {
    flex: 0 0 max-content;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_center
  .logo-wrapper
  .logo {
  float: unset;
  height: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
  z-index: 1;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_center
  .logo-wrapper
  .logo
  img {
  height: 9rem;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right {
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .header-actions--mobile-search {
  display: none;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper {
  position: relative;
  margin-left: 2rem;
}
@media only screen and (max-width: 991px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .minicart-wrapper {
    margin-left: 0.5rem;
    margin-top: -3px;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .minicart-wrapper {
    margin: 0 0.5rem 0 0.5rem;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .minicart-link {
  font-size: 1.6rem;
  font-weight: 400;
  padding-right: 2.25rem;
}
@media only screen and (max-width: 480px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .minicart-wrapper {
    margin: 0 0.5rem 0 0.5rem;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart {
  margin-top: 0;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart:first-child {
  font-size: 1.6rem;
  font-weight: 400;
  padding-bottom: 4px;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart:first-child:before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .minicart-wrapper
    .action.showcart:first-child {
    font-size: 1.4rem;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart:nth-child(2) {
  position: absolute;
  right: 0;
  top: 35%;
  transform: translateY(-52%);
  margin-left: 0.5rem;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart:nth-child(2):before {
  display: none;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .minicart-wrapper
  .action.showcart
  .counter.qty {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  background: transparent;
  color: #111111;
  margin: 0;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  #btn-search {
  cursor: pointer;
  padding-left: 5rem;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  #btn-search
  .icon {
  font-size: 2.3rem;
}
@media only screen and (max-width: 1199px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    #btn-search {
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    #btn-search {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    #btn-search {
    padding-left: 0;
    margin: 0 1rem;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .account-link {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: -0.4rem;
  margin-left: 2rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 991px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link
    .txt {
    display: none;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .account-link
  .icon {
  display: none;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1199px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .account-link
    .icon {
    display: block;
  }
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .mobile-menu-toggle {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #714a43;
  box-shadow: 3px 5px 20px rgba(81, 53, 48, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
header.page-header
  .header.content
  .header-content--top
  .header-content--top_right
  .mobile-menu-toggle
  .icon {
  font-size: 2rem;
  color: #f4f4f3;
}
@media only screen and (max-width: 991px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .languages {
    display: none;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .minicart-wrapper
    .action.showcart
    .counter.qty {
    font-size: 2rem;
    font-weight: 600;
    color: #714a43;
    border: 2px solid #714a43;
    width: 3.6rem;
    height: 3.6rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
}
header.page-header .header.content .header-content--bottom {
  background: transparent;
  margin-bottom: 0;
}
header.page-header .header.content nav#main-menu > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding-top: 1rem;
  padding-left: 0;
}
header.page-header .header.content nav#main-menu > ul > li {
  position: relative;
  padding: 0 10px;
  margin: 0 5px;
}
header.page-header .header.content nav#main-menu > ul > li:first-child {
  padding-left: 0;
  margin-left: 0;
}
header.page-header .header.content nav#main-menu ul li.main-menu--item a.link {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: #111111;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link:before,
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link:after {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  pointer-events: none;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link:before {
  content: "";
  display: none;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link
  .link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: #000;
  stroke-width: 1px;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link
  .link__graphic--stroke
  path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link:hover
  .link__graphic--stroke
  path {
  stroke-dashoffset: 0;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link
  .link__graphic--arc {
  top: 73%;
  left: -23%;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link
  .link__graphic--arc
  path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link:hover
  .link__graphic--arc
  path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link.txt-primary {
  color: #714a43;
}
header.page-header
  .header.content
  nav#main-menu
  ul
  li.main-menu--item
  a.link.txt-bold {
  font-weight: 600;
}
header.page-header .header.content nav#main-menu ul li > ul {
  position: absolute;
  left: 0;
  top: 3rem;
  padding: 1rem 1.5rem;
  list-style-type: none;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: 340ms ease;
  -moz-transition: 340ms ease;
  -o-transition: 340ms ease;
  transition: 340ms ease;
  background-color: #714a43;
  width: 250px;
  box-shadow: 3px 7px 30px rgba(180, 180, 174, 0.35);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
header.page-header .header.content nav#main-menu ul li > ul.brands-menu {
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
header.page-header .header.content nav#main-menu ul li > ul li {
  width: 100%;
  margin: 0;
}
header.page-header .header.content nav#main-menu ul li > ul li:first-child a {
  border-top: none;
}
header.page-header .header.content nav#main-menu ul li > ul li a {
  display: block;
  width: 100%;
  text-align: left;
  color: #ffffff;
  padding: 1rem 1.5rem 1rem 1rem;
  border-top: 1px solid rgba(81, 53, 48, 0.7);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.page-header .header.content nav#main-menu ul li > ul li a:hover {
  font-weight: 500;
  background: rgba(113, 74, 67, 0.1);
}
header.page-header .header.content nav#main-menu ul li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 1920px) {
  header.page-header .header.content,
  header.page-header .panel.wrapper > .header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_left
    .block-search {
    max-width: 220px;
  }
}
@media only screen and (max-width: 1199px) {
  header.page-header .panel.wrapper .header .header--slogan {
    flex-grow: 3;
  }
  header.page-header .header.content,
  header.page-header .panel.wrapper > .header {
    padding: 15px 50px;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_center
    .logo-wrapper
    .logo
    img {
    height: 75px;
  }
  header.page-header .header.content nav#main-menu > ul li.main-menu--item {
    padding: 0 5px;
  }
  header.page-header
    .header.content
    nav#main-menu
    > ul
    li.main-menu--item
    a.link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 991px) {
  header.page-header .header.content {
    padding-left: 35px;
    padding-right: 35px;
  }
  header.page-header .panel.wrapper > .header {
    padding-left: 35px;
    padding-right: 35px;
  }
  header.page-header .panel.wrapper .header .header--slogan .hide-mobile {
    display: none;
  }
  header.page-header .header.content .header-content--top_left .block-search {
    display: none;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_left {
    display: none;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_center {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .header-actions--mobile-search {
    display: inline-flex;
  }
  header.page-header .header-content--bottom {
    display: none;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .mobile-menu-toggle {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 768px) {
  header.page-header {
    margin-bottom: 0;
  }
  header.page-header .panel.wrapper .panel.header {
    padding: 7px 25px;
  }
  header.page-header .panel.wrapper .panel.header .header--slogan {
    display: none;
  }
  header.page-header .panel.wrapper .panel.header {
    padding: 7px 25px;
  }
  header.page-header .header.content {
    padding: 10px 25px;
  }
  header.page-header .panel.wrapper > .header {
    padding: 10px 25px;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_center
    .logo-wrapper
    .logo
    img {
    height: 65px;
  }
}
@media only screen and (max-width: 576px) {
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .header-actions
    .header-actions--wishlist,
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .header-actions
    .header-actions--account {
    display: none;
  }
  header.page-header
    .header.content
    .header-content--top
    .header-content--top_right
    .header-actions--mobile-search {
    display: inline-flex;
  }
}
@media only screen and (max-width: 480px) {
  header.page-header .panel.wrapper .panel.header {
    padding: 7px 15px;
  }
  header.page-header .header.content {
    padding: 10px 15px;
  }
}
.languages {
  margin-top: -5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.languages .lang {
  position: relative;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 4px;
}
.languages .lang:before {
  --size: 0.5rem;
  content: "";
  position: absolute;
  bottom: calc(-1 * (var(--size) / 1.5));
  left: calc(-1 * var(--size));
  width: calc(100% + (var(--size) * 1.5));
  height: 2px;
  background-color: transparent;
  transform-origin: 0% 100%;
  transform: scale3d(0, 1, 1);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.languages .lang:hover:before {
  background-color: #714a43;
  transform-origin: 0% 100%;
  transform: scale3d(1, 1, 1);
}
.languages .lang.active:before {
  transform: scale3d(1, 1, 1);
  background-color: #714a43;
}
footer.page-footer {
  position: relative;
  overflow-x: hidden;
}
footer.page-footer:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 400px;
  height: 500px;
  background-image: url("../images/bricks-left.png");
  background-repeat: no-repeat;
  background-size: 400px;
  background-position: left bottom;
  pointer-events: none;
  z-index: -1;
}
footer.page-footer:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 500px;
  background-image: url("../images/bricks-right.png");
  background-repeat: no-repeat;
  background-size: 400px;
  background-position: right bottom;
  pointer-events: none;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  footer.page-footer:before,
  footer.page-footer:after {
    background-size: 300px;
  }
}
@media only screen and (max-width: 991px) {
  footer.page-footer:before,
  footer.page-footer:after {
    background-size: 200px;
  }
}
@media only screen and (max-width: 768px) {
  footer.page-footer:before,
  footer.page-footer:after {
    display: none;
  }
}
footer.page-footer a {
  color: #111111;
}
footer.page-footer .footer.content {
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  margin: auto;
  padding-top: 50px;
  padding-bottom: calc(50px / 3);
  margin-top: 0;
  border: none;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  footer.page-footer .footer.content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  footer.page-footer .footer.content {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 768px) {
  footer.page-footer .footer.content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 1920px) {
  footer.page-footer .footer.content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  footer.page-footer .footer.content {
    padding-top: 50px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 768px) {
  footer.page-footer .footer.content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 480px) {
  footer.page-footer .footer.content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
footer.page-footer #main-footer .main-footer--top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
footer.page-footer #main-footer .main-footer--top .footer-logo {
  position: relative;
  pointer-events: none;
}
footer.page-footer #main-footer .main-footer--top .footer-logo:before {
  content: "";
  position: absolute;
  width: 300%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(113, 74, 67, 0.02) 40%,
    rgba(113, 74, 67, 0.35) 100%
  );
  left: -310%;
  top: 65%;
  transform: translateY(-65%);
}
footer.page-footer #main-footer .main-footer--top .footer-logo:after {
  content: "";
  position: absolute;
  width: 300%;
  height: 1px;
  background: linear-gradient(
    -90deg,
    rgba(113, 74, 67, 0.02) 40%,
    rgba(113, 74, 67, 0.35) 100%
  );
  right: -310%;
  top: 65%;
  transform: translateY(-65%);
}
footer.page-footer #main-footer .main-footer--top img {
  height: 11rem;
}
footer.page-footer #main-footer .main-footer--bottom {
  padding-top: 1.5rem;
  padding-bottom: calc(5rem + 1vw);
  margin-bottom: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
footer.page-footer #main-footer .footer-block .footer-block--title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
footer.page-footer #main-footer .footer-block ul.footer-block--content {
  font-size: 1.6rem;
}
footer.page-footer #main-footer .footer-block ul.footer-block--content._menu {
  text-align: center;
}
footer.page-footer
  #main-footer
  .footer-block
  ul.footer-block--content
  li:not(:first-child) {
  margin-top: 1.5rem;
}
footer.page-footer #main-footer .footer-block ul.footer-block--content li a {
  font-weight: 400;
}
footer.page-footer #main-footer .social-icons {
  position: relative;
  text-align: center;
}
footer.page-footer #main-footer .social-icons:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(113, 74, 67, 0.35) 40%,
    rgba(113, 74, 67, 0.02) 100%
  );
}
footer.page-footer #main-footer .social-icons .social-icon .icon {
  font-size: 2.4rem;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
footer.page-footer #main-footer .social-icons .social-icon .icon:hover {
  color: #714a43;
}
footer.page-footer #main-footer .footer--newsletter {
  padding-bottom: 5rem;
  margin-bottom: 2.5rem;
}
footer.page-footer #main-footer .footer--newsletter .newsletter-title {
  font-size: 3rem;
  text-align: center;
}
footer.page-footer #main-footer .footer--newsletter form.subscribe {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
}
footer.page-footer #main-footer .footer--newsletter form.subscribe input {
  border: none;
  background-color: #ffffff;
  outline: none;
  min-width: 40rem;
  padding: 1rem 2.5rem;
  box-shadow: 1px 3px 15px 0px rgba(113, 74, 67, 0.1);
}
footer.page-footer
  #main-footer
  .footer--newsletter
  form.subscribe
  input::-webkit-input-placeholder {
  color: #111111;
  font-weight: 300;
  opacity: 1;
}
footer.page-footer
  #main-footer
  .footer--newsletter
  form.subscribe
  input:-moz-placeholder {
  color: #111111;
  font-weight: 300;
  opacity: 1;
}
footer.page-footer
  #main-footer
  .footer--newsletter
  form.subscribe
  input::-moz-placeholder {
  color: #111111;
  font-weight: 300;
  opacity: 1;
}
footer.page-footer
  #main-footer
  .footer--newsletter
  form.subscribe
  input:-ms-input-placeholder {
  color: #111111;
  font-weight: 300;
  opacity: 1;
}
footer.page-footer
  #main-footer
  .footer--newsletter
  form.subscribe
  button.subscribe {
  padding: 7px 35px;
  margin-left: 1.5rem;
}
footer.page-footer #main-footer .footer--newsletter .newsletter-consent {
  font-size: 1.2rem;
  max-width: 400px;
  text-align: center;
  margin: 1.5rem auto;
}
footer.page-footer #main-footer .footer--paymentIcons {
  pointer-events: none;
}
footer.page-footer #main-footer .footer--paymentIcons img {
  margin: 0 auto;
}
@media only screen and (min-width: 1800px) {
  footer.page-footer #main-footer .main-footer--right {
    flex: 0 0 40%;
  }
}
@media only screen and (max-width: 1199px) {
  footer.page-footer #main-footer .main-footer--items {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer.page-footer #main-footer .main-footer--left {
    position: relative;
    background-color: #f5f5f5;
    padding: 50px 0 25px 0;
    order: 2;
    flex: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 50px;
  }
  footer.page-footer #main-footer .main-footer--left:before {
    content: "";
    position: absolute;
    left: -100%;
    right: -100%;
    width: 300%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: -1;
  }
  footer.page-footer #main-footer .main-footer--left .logo-wrapper img {
    width: 300px;
  }
  footer.page-footer #main-footer .main-footer--left .social {
    padding: 0;
  }
  footer.page-footer #main-footer .main-footer--left .social .icons {
    text-align: right;
  }
  footer.page-footer #main-footer .main-footer--right {
    order: 1;
    flex: 100%;
  }
  footer.page-footer #main-footer .main-footer--right .footer-items {
    position: relative;
  }
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-info
    .store-hours
    .store-hour
    .store-hour-content
    .days:before {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media only screen and (max-width: 991px) {
  footer.page-footer #main-footer .footer--newsletter form.subscribe {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 2.5rem;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer.page-footer #main-footer .footer--newsletter form.subscribe > * {
    width: 100%;
  }
  footer.page-footer
    #main-footer
    .footer--newsletter
    form.subscribe
    .control
    label,
  footer.page-footer
    #main-footer
    .footer--newsletter
    form.subscribe
    .control
    input {
    width: 100%;
    text-align: center;
  }
  footer.page-footer
    #main-footer
    .footer--newsletter
    form.subscribe
    .field.newsletter {
    margin-bottom: 1.5rem;
  }
  footer.page-footer
    #main-footer
    .footer--newsletter
    form.subscribe
    .actions
    button {
    width: 100%;
    margin-left: 0;
  }
  footer.page-footer #main-footer .footer--newsletter form.subscribe input {
    min-width: unset;
  }
  footer.page-footer #main-footer .footer-block {
    text-align: center;
    margin-bottom: 5.5rem;
  }
  footer.page-footer #main-footer .social-icons {
    margin-bottom: 5rem;
  }
  footer.page-footer #main-footer .social-icons:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  footer.page-footer #main-footer .main-footer--items .main-footer--left {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--left
    .logo-wrapper {
    margin-bottom: 25px;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--left
    .social
    .icons {
    text-align: center;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-items {
    margin: 0;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-item-1 {
    flex: 0 0 33%;
    margin: 0;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-item-2 {
    flex: 0 0 30%;
    text-align: right;
    margin: 0;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-item-3 {
    flex: 0 0 30%;
    text-align: right;
    margin: 0;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-item-4 {
    flex: 0 0 100%;
    flex-flow: row;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 10px;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-item-4
    li {
    font-weight: 500;
    margin: 8px 25px;
  }
}
@media only screen and (max-width: 576px) {
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-info.footer-item-1,
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-menu.footer-item-2,
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-menu.footer-item-3 {
    flex: 0 0 100%;
    text-align: center;
  }
  footer.page-footer
    #main-footer
    #main-footer
    .main-footer--right
    .footer-info
    .store-hours
    .store-hour
    .store-hour-content
    .days:before {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-info.footer-item-1,
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-menu.footer-item-2,
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-menu.footer-item-3 {
    flex: 0 0 100%;
    text-align: center;
  }
  footer.page-footer
    #main-footer
    .main-footer--right
    .footer-menu.footer-item-2 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  footer.page-footer
    #main-footer
    .main-footer--items
    .main-footer--right
    .footer-items:before {
    top: -15%;
    left: 50%;
    transform: translate(-50%, -50%);
    --size: 850px;
  }
}
footer.page-footer #copyright {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  padding-top: 5rem;
}
footer.page-footer #copyright .icon {
  font-size: 1.5rem;
  margin-top: 3px;
  color: #714a43;
}
footer.page-footer #copyright a {
  color: #714a43;
  font-weight: 500;
}
footer.page-footer .back-to-top {
  text-align: center;
  margin-top: 3vh;
}
footer.page-footer .back-to-top a {
  font-size: 1.2rem;
  font-weight: 300;
  color: #7e7e7e;
  text-decoration: underline;
}
#newsletter-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-repeat: repeat;
  background-size: 200px;
  background-position: center;
  min-height: 200px;
  padding-top: calc(50px / 1.5);
  padding-bottom: calc(50px / 1.5);
}
#newsletter-block .block.newsletter {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
#newsletter-block .block.newsletter .newsletter-top {
  text-align: center;
}
#newsletter-block .block.newsletter .newsletter-top .newsletter-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: #714a43;
}
#newsletter-block .block.newsletter .newsletter-top .newsletter-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 450px;
  margin: 0 auto;
  margin-top: 15px;
}
#newsletter-block .block.newsletter form.subscribe {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
#newsletter-block .block.newsletter form.subscribe .field.newsletter {
  max-width: 100%;
  margin-right: 15px;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control:before {
  content: none;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  label {
  width: 100%;
  margin: 0;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input {
  height: 4rem;
  width: 100%;
  min-width: 300px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
  border: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input::-webkit-input-placeholder {
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #ffffff;
  opacity: 1;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input:-moz-placeholder {
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #ffffff;
  opacity: 1;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input::-moz-placeholder {
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #ffffff;
  opacity: 1;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input:-ms-input-placeholder {
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #ffffff;
  opacity: 1;
}
#newsletter-block
  .block.newsletter
  form.subscribe
  .field.newsletter
  .control
  input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
#newsletter-block .block.newsletter form.subscribe .actions {
  display: block;
  width: auto;
}
#newsletter-block .block.newsletter form.subscribe .actions button {
  background: #714a43;
  height: 4rem;
  border: 0;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#newsletter-block .block.newsletter form.subscribe .actions button span {
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  #newsletter-block {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #newsletter-block .block.newsletter form.subscribe {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #newsletter-block .block.newsletter .newsletter-top .newsletter-title {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.2;
  }
  #newsletter-block .block.newsletter form.subscribe .field.newsletter {
    width: 80%;
    margin-right: 0;
  }
  #newsletter-block .block.newsletter form.subscribe .actions {
    width: 80%;
  }
  #newsletter-block .block.newsletter form.subscribe .actions button {
    width: 100%;
    margin-top: 20px;
  }
  #newsletter-block
    .block.newsletter
    form.subscribe
    .field.newsletter
    .control
    input {
    text-align: center;
    margin: 0;
    padding: 0;
    min-width: unset;
  }
}
.page-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background: rgba(49, 34, 36, 0.95);
  z-index: 99;
}
/* Layout for search container */
.pl-search-container {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 240ms ease-in-out;
  -moz-transition: all 240ms ease-in-out;
  -o-transition: all 240ms ease-in-out;
  -ms-transition: all 240ms ease-in-out;
  transition: all 240ms ease-in-out;
}
.pl-search-container._show {
  pointer-events: auto;
  opacity: 1;
}
.pl-search-container span.text__ticker {
  position: absolute;
  left: 0;
  line-height: 1;
  width: max-content;
  user-select: none;
  pointer-events: none;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
}
.pl-search-container span.text__ticker.ticker-1 {
  font-size: 35vh;
  top: calc(50% + 5vh);
  opacity: 0.35;
  transform: translateY(-50%);
  animation: ticker 180s linear infinite;
  -webkit-text-stroke: 2px rgba(244, 244, 243, 0.5);
}
.pl-search-container span.text__ticker.ticker-2 {
  font-size: 30vh;
  top: calc(20% + 3vh);
  opacity: 0.25;
  transform: translateY(-50%);
  animation: tickerOp 120s linear infinite;
  -webkit-text-fill-color: rgba(244, 244, 243, 0.1);
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
  mix-blend-mode: overlay;
}
.pl-search-container span.text__ticker.ticker-3 {
  font-size: 15vh;
  top: unset;
  bottom: 5vh;
  opacity: 0.5;
  transform: translateY(-50%);
  animation: tickerOp 50s linear infinite;
  -webkit-text-fill-color: rgba(244, 244, 243, 0.03);
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
.pl-search {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: calc(10rem + 1px);
  overflow: hidden;
  width: calc(40rem - 1px);
  height: 100vh;
}
.pl-search:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.pl-search .search__inner-head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}
.pl-search .search__inner-head .title {
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
}
.pl-search .search__inner {
  position: relative;
  padding: 2rem 2.5rem 0;
}
.pl-search .btn--search-close {
  font-size: 2rem;
}
.pl-search .search__form .search__input {
  font-family: inherit;
  font-size: 2.5rem;
  line-height: 1.4;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.15em 0;
  color: #000;
  border: none;
  border-bottom: 2px solid;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pl-search .search__form .search__input:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #714a43;
}
.pl-search .search__info {
  font-size: 85%;
  font-weight: bold;
  display: block;
  padding: 0.5em 0;
  color: #000;
}
.pl-search .search__related {
  width: 80%;
  padding: 4em 0 0 0;
  color: #714a43;
}
.pl-search .search__suggestion h3 {
  font-size: 1em;
  margin: 0;
}
.pl-search .search__suggestion h3::before {
  content: "\21FE";
  display: inline-block;
  padding: 0 0.5em 0 0;
}
.pl-search .search__suggestion p {
  line-height: 1.6;
  margin: 0.75em 0 0 0;
}
.pl-search .search__form {
  position: relative;
}
.pl-search .search__form .nested {
  display: none;
}
.pl-search .search__form .actions {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
}
.pl-search .search__form .actions button.search:hover {
  border: none;
  background: transparent;
}
.pl-search .search__form .actions .icon {
  color: #714a43;
  font-size: 2rem;
}
.pl-search .mst-searchautocomplete__autocomplete._active {
  left: 0 !important;
  width: 100% !important;
  min-width: unset;
  border: none;
  margin-top: 0.5rem;
}
.pl-search
  .mst-searchautocomplete__autocomplete
  .mst-searchautocomplete__index-title {
  background: transparent;
  color: #714a43;
  font-weight: 600;
  font-size: 1.3rem;
  padding-left: 0;
}
.pl-search .mst-searchautocomplete__index {
  padding: 2.5rem 0 3.5rem 0;
}
.pl-search
  .mst-searchautocomplete__index
  ul
  .mst-searchautocomplete__item:first-child {
  padding-left: 0;
}
.pl-search
  .mst-searchautocomplete__autocomplete
  .mst-searchautocomplete__show-all {
  background: #714a43;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.pl-search
  .mst-searchautocomplete__autocomplete
  .mst-searchautocomplete__show-all
  span {
  color: #ffffff;
}
@media only screen and (max-width: 576px) {
  .pl-search.search.search--open {
    right: 0;
    width: 100%;
  }
}
.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}
.search__input::-ms-clear {
  display: none;
}
/************************/
/* Transitions 			*/
/************************/
.page-wrapper::after {
  transition: opacity 0.45s;
}
.page-wrapper.main-wrap--overlay::after {
  opacity: 1;
}
.pl-search {
  pointer-events: none;
}
.pl-search.search--open {
  pointer-events: auto;
}
.pl-search::before {
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.pl-search.search--open::before {
  transform: scale3d(1, 1, 1);
}
.pl-search .search__inner {
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s;
}
.pl-search.search--open .search__inner {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (max-width: 40em) {
  .btn--search-close {
    top: 0;
    right: 0;
  }
  .search__related {
    width: 100%;
  }
}
.cms-home .page-title-wrapper {
  display: none;
}
.cms-home .shop_wrapper {
  width: 100%;
  height: 100%;
}
.cms-home #intro .main-slider {
  position: relative;
  height: 60vh;
  min-height: 600px;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 1199px) {
  .cms-home #intro .main-slider {
    height: 70vh;
  }
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider {
    height: 45vh;
    max-height: 600px;
  }
}
.cms-home #intro .main-slider .intro-slogan {
  position: absolute;
  right: -6rem;
  top: 15rem;
  transform: rotate(90deg);
  font-weight: 300;
  letter-spacing: 3px;
  color: #714a43;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .intro-slogan {
    right: -7rem;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .intro-slogan {
    display: none;
  }
}
.cms-home #intro .main-slider .social-icons {
  position: absolute;
  right: 1rem;
  bottom: 3rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .social-icons {
    right: 0.5rem;
  }
}
.cms-home #intro .main-slider .social-icons .social-icon {
  margin-bottom: 1rem;
}
.cms-home #intro .main-slider .social-icons .icon {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .social-icons {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home #intro .main-slider .intro-slogan,
  .cms-home #intro .main-slider .social-icons {
    display: none;
  }
}
.cms-home #intro .main-slider .swiper-slide .swiper-slide-content {
  position: relative;
}
.cms-home #intro .main-slider .swiper-slide .swiper-slide-content .slide-no {
  position: absolute;
  right: 3rem;
  bottom: 0rem;
  font-size: calc(15rem + 3vw);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
  mix-blend-mode: overlay;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .swiper-slide .swiper-slide-content .slide-no {
    font-size: calc(7rem + 3vw);
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .swiper-slide .swiper-slide-content .slide-no {
    display: none;
  }
}
.cms-home #intro .main-slider .slide-content {
  max-width: 600px;
  padding-left: 100px;
}
@media only screen and (min-width: 1439px) {
  .cms-home #intro .main-slider .slide-content {
    max-width: 700px;
  }
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-content {
    max-width: 500px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home #intro .main-slider .slide-content {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .slide-content {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .cms-home #intro .main-slider .slide-content {
    padding-left: 15px;
  }
}
.cms-home #intro .main-slider .swiper-slide .swiper-slide-content {
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.cms-home #intro .main-slider .slide-content--title {
  font-size: calc(2.8rem + 1vw);
  font-weight: 500;
  text-align: right;
  line-height: 1.3;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-content--title {
    font-size: calc(2.4rem + 1vw);
    text-align: left;
  }
}
.cms-home #intro .main-slider .slide-content--slogan {
  text-align: right;
  color: #714a43;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-content--slogan {
    text-align: left;
  }
}
.cms-home #intro .main-slider .slide-content--actions {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  margin-top: 5rem;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-content--actions {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
  }
}
.cms-home #intro .main-slider .slide-content--actions .button {
  margin: 0 0.5rem;
}
.cms-home #intro .main-slider .slide-content--actions .button:last-child {
  margin-right: 0;
}
.cms-home #intro .main-slider .swiper-slide-content._light {
  color: #ffffff;
}
.cms-home
  #intro
  .main-slider
  .swiper-slide-content._light
  .slide-content--slogan {
  color: #ffffff;
}
.cms-home #intro .main-slider .slider-nav {
  position: absolute;
  display: block;
  left: 100px;
  bottom: 4rem;
  height: 5rem;
  margin-left: 0rem;
  min-width: 200px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  z-index: 9;
}
.cms-home #intro .main-slider .slider-nav .slider-nav-btn {
  margin: 0 1rem;
}
.cms-home #intro .main-slider .slider-nav .slider-nav-btn .icon {
  font-size: 4.2rem;
  color: #714a43;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slider-nav {
    left: 50px;
    bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home #intro .main-slider .slider-nav {
    left: 35px;
  }
  .cms-home #intro .main-slider .slider-nav .slider-nav-btn .icon {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .slider-nav {
    left: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .cms-home #intro .main-slider .slider-nav {
    left: 15px;
  }
}
.cms-home
  #intro
  .main-slider
  .swiper-slide-content._light
  .slider-nav
  .slider-nav-btn
  .icon {
  color: #ffffff;
}
.cms-home #intro .main-slider .slider-nav .swiper-button-prev {
  position: relative;
}
.cms-home #intro .main-slider .slide-1 {
  background-image: url("../images/slide-store-min.png");
  background-size: 900px;
  background-repeat: no-repeat;
  background-position: right top;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-1 {
    background-size: contain;
    background-position: right bottom;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home #intro .main-slider .slide-1 {
    background-size: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .slide-1 {
    background-size: 300px;
    background-position: right 100%;
  }
}
.cms-home #intro .main-slider .slide-1 .slide-content {
  padding-left: 100px;
}
@media only screen and (max-width: 1199px) {
  .cms-home #intro .main-slider .slide-1 .slide-content {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .cms-home #intro .main-slider .slide-1 .slide-content {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home #intro .main-slider .slide-1 .slide-content {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .cms-home #intro .main-slider .slide-1 .slide-content {
    padding-left: 15px;
  }
}
.cms-home #intro .main-slider .slide-2 .swiper-slide-content {
  height: 100%;
  width: 100%;
  background-color: black;
  background-image: url("../images/slide-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 10px 13px 20px rgba(113, 74, 67, 0.2);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.cms-home #product_new-arrivals {
  position: relative;
}
.cms-home #product_new-arrivals .swiper-container {
  width: 100%;
  overflow: visible;
}
.cms-home #product_new-arrivals .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -wekit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: all 640ms linear;
  filter: blur(7px);
  transform: scale(0.7);
}
.cms-home #product_new-arrivals .swiper-slide.swiper-slide-active {
  transform: scale(1.15);
  filter: blur(0px);
}
@media only screen and (max-width: 991px) {
  .cms-home #product_new-arrivals .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.cms-home #product_new-arrivals .swiper-slide.swiper-slide-active:hover {
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.cms-home
  #product_new-arrivals
  .swiper-slide.swiper-slide-active:hover
  .banner-wrapper--c:after {
  opacity: 1;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.cms-home
  #product_new-arrivals
  .swiper-slide.swiper-slide-active:hover
  .banner-wrapper:after {
  transform: translateX(-50%) rotate(-180deg);
}
.cms-home
  #product_new-arrivals
  .swiper-slide.swiper-slide-active
  .banner-wrapper:before {
  --size: 6rem;
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--size) / 2);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: var(--size);
  height: var(--size);
  box-shadow: 6px 6px 10px rgba(113, 74, 67, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
.cms-home
  #product_new-arrivals
  .swiper-slide.swiper-slide-active
  .banner-wrapper:after {
  --size: 4.5rem;
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--size) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: var(--size);
  height: var(--size);
  background-image: url("../images/logo-icon.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -moz-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -o-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -ms-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 3;
}
.cms-home #shapes .shape-col-1 .big-rounded-banner {
  position: relative;
  height: 100%;
  background-image: url("../images/woman-sunglasses.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-top-right-radius: 250px;
  border-top-right-radius: 250px;
  -webkit-border-bottom-right-radius: 250px;
  border-bottom-right-radius: 250px;
  box-shadow: 6px 6px 40px rgba(113, 74, 67, 0.15);
  min-height: 500px;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.cms-home #shapes .shape-col-1:hover .big-rounded-banner {
  box-shadow: 6px 10px 50px rgba(113, 74, 67, 0.25);
}
.cms-home #shapes .shape-col-2 .shapes-grid {
  padding-top: 3.5rem;
  padding-left: 7.5rem;
}
.cms-home #shapes .shape-col-2 .section-action {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.cms-home #shapes .shape-col-2 .section-action .button {
  margin-top: 5rem;
}
.cms-home #shapes .shape-col-2 .section-action .button .icon {
  font-size: 2.8rem;
  margin-left: 1rem;
}
@media only screen and (max-width: 991px) {
  .cms-home #shapes .shape-col-2 {
    margin-top: 5rem;
  }
  .cms-home #shapes .shape-col-2 .shapes-grid {
    padding-left: inherit;
  }
}
.cms-home #product_offers {
  position: relative;
}
.cms-home #product_offers:after {
  --svgSize: 185rem;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  top: calc(-1 * var(--svgSize) / 2.5);
  right: calc(-1 * var(--svgSize) / 3);
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(0deg);
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .cms-home #product_offers:after {
    --svgSize: 100rem;
  }
}
.cms-home #product_offers .section-title {
  margin-bottom: 5rem;
}
.cms-home #product_categories .section-title {
  margin-bottom: 13rem;
}
@media only screen and (max-width: 768px) {
  .cms-home #product_categories .section-title {
    margin-bottom: 5rem;
  }
}
.cms-home .instance-1 .swiper-button:after,
.cms-home .instance-2 .swiper-button:after,
.cms-home .instance-3 .swiper-button:after {
  color: #b4b4ae;
}
@media only screen and (max-width: 576px) {
  .cms-home section#home-slider .primary-slider .slider-nav {
    left: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .cms-home .pl_slider-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.slider-nav {
  position: relative;
}
.slider-nav .swiper-button-next {
  right: 0;
}
.slider-nav .swiper-button-next:after {
  margin-right: -4px;
}
.slider-nav .swiper-button-prev {
  right: 6rem;
  left: unset;
}
.slider-nav .swiper-button-prev:after {
  margin-left: -4px;
}
.products-slider {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
#product_categories {
  position: relative;
}
#product_categories:after {
  --svgSize: 40vw;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  top: calc(-1 * var(--svgSize) / 13);
  left: calc(-1 * var(--svgSize) / 6);
  background-image: url("../images/logo-icon-u.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(60deg);
  opacity: 0.4;
  z-index: -1;
}
#product_categories .swiper-container {
  width: 100%;
  overflow: visible;
}
#product_categories .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -wekit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: all 240ms linear;
  filter: grayscale(85%);
  transform: scale(0.9);
}
#product_categories .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  filter: grayscale(0%);
}
@media only screen and (max-width: 991px) {
  #product_categories .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
#product_categories .swiper-slide.swiper-slide-active:hover {
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
#product_categories
  .swiper-slide.swiper-slide-active:hover
  .banner-wrapper--c:after {
  opacity: 1;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
#product_categories
  .swiper-slide.swiper-slide-active:hover
  .banner-wrapper:after {
  transform: translateX(-50%) rotate(-180deg);
}
#product_categories .swiper-slide.swiper-slide-active .banner-wrapper:before {
  --size: 6rem;
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--size) / 2);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: var(--size);
  height: var(--size);
  box-shadow: 6px 6px 10px rgba(113, 74, 67, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
}
#product_categories .swiper-slide.swiper-slide-active .banner-wrapper:after {
  --size: 4.5rem;
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--size) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: var(--size);
  height: var(--size);
  background-image: url("../images/logo-icon.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -moz-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -o-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -ms-transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  transition: all 240ms cubic-bezier(0.2, 0.34, 0.82, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 3;
}
#product_categories .swiper-slide .banner-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}
#product_categories .swiper-slide .banner-wrapper--c {
  position: relative;
  width: 100%;
  /* desired width */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 8px 8px 20px rgba(113, 74, 67, 0.15);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#product_categories .swiper-slide .banner-wrapper--c:before {
  content: "";
  float: left;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}
#product_categories .swiper-slide .banner-wrapper--c:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(113, 74, 67, 0.75);
  mix-blend-mode: multiply;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
#product_categories .swiper-slide .banner-wrapper--c:hover {
  box-shadow: 8px 8px 30px rgba(113, 74, 67, 0.35);
}
#product_categories .swiper-slide.slide-we .banner-wrapper--c {
  background-image: url("../images/banners/women-eyeglasses.jpg");
}
#product_categories .swiper-slide.slide-ws .banner-wrapper--c {
  background-image: url("../images/banners/women-sunglasses.jpg");
}
#product_categories .swiper-slide.slide-ms .banner-wrapper--c {
  background-image: url("../images/banners/man-sunglasses.jpg");
}
#product_categories .swiper-slide.slide-me .banner-wrapper--c {
  background-image: url("../images/banners/eyeglasses-man.jpg");
}
#product_categories .swiper-slide.swiper-slide-active .banner-content {
  margin-top: 4.5rem;
}
#product_categories .swiper-slide .banner-content {
  margin-top: 3rem;
}
#product_categories .swiper-slide .banner-content a {
  display: block;
}
#product_categories .swiper-slide .banner-content .banner-wrapper--subtitle {
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1;
  color: #714a43;
}
#product_categories .swiper-slide .banner-content .banner-wrapper--title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.5px;
}
.eye-badge {
  position: absolute;
  right: -60px;
  top: -60px;
  padding: 0;
  background: none;
  -webkit-clip-path: circle(40% at 50% 50%);
  clip-path: circle(40% at 50% 50%);
  z-index: 3;
}
.eye-badge:before,
.eye-badge:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eye-badge:focus-visible {
  background: #443ffc;
}
.eye-badge .textcircle {
  position: relative;
  display: block;
  width: 300px;
  animation: rotateIt 36s linear infinite;
}
.eye-badge .textcircle text {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  fill: #000;
}
.eye-badge .textcircle textPath {
  letter-spacing: 9px;
  /* Firefox needs this */
}
.eye-badge .eye {
  position: absolute;
  z-index: 2;
  width: 75px;
  height: 75px;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
}
.eye-badge .eye__outer,
.eye-badge .eye__inner,
.eye-badge .eye__lashes-up,
.eye-badge .eye__lashes-down {
  stroke: #000;
  fill: none;
  stroke-width: 1.75px;
}
.eye-badge eye.eye-light .eye__outer,
.eye-badge eye.eye-light .eye__inner,
.eye-badge eye.eye-light .eye__lashes-up,
.eye-badge eye.eye-light .eye__lashes-down {
  stroke: #714a43;
  fill: none;
  stroke-width: 1.75px;
}
.eye-badge .eye__lashes-down {
  opacity: 0;
}
.eye-badge:hover .eye__lashes-up,
.eye-badge:hover .eye__inner,
.eye-badge:hover .eye__iris {
  animation: blinkHide 2s step-end infinite;
}
.eye-badge:hover .eye__lashes-down {
  animation: blinkShow 2s step-end infinite;
}
.shapes-grid {
  --gap: 2.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--gap)) 0 0 calc(-1 * var(--gap));
  width: calc(100% + var(--gap));
  padding: 0 2.5rem;
}
.shapes-grid > * {
  margin: var(--gap) 0 0 var(--gap);
}
.shapes-grid .shape {
  flex: 0 0 calc(33% - var(--gap));
}
.shapes-grid .shape .shape--icon {
  position: relative;
}
.shapes-grid .shape .shape--icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: transparent;
  -webkit-transition: all 440ms ease-in-out;
  -moz-transition: all 440ms ease-in-out;
  -o-transition: all 440ms ease-in-out;
  -ms-transition: all 440ms ease-in-out;
  transition: all 440ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shapes-grid .shape .shape--icon img {
  width: 100%;
  max-width: 16rem;
  transform: rotate(-7deg);
  margin: 0 auto;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.shapes-grid .shape:hover .shape--icon img {
  transform: rotate(0);
}
.shapes-grid .shape .shape--title {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
}
.shapes-grid .shape:hover .shape--icon:before {
  background-color: rgba(113, 74, 67, 0.07);
}
@media only screen and (max-width: 576px) {
  .shapes-grid .shape {
    flex: 0 0 calc(50% - var(--gap));
  }
}
@media only screen and (max-width: 768px) {
  .pl_slider-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-products .page-title-wrapper {
  padding-bottom: 2rem;
}
.page-products .products-listing .shop_product,
.page-products .products-listing .shop_product_banner {
  padding: 20px 0;
}
.page-products .products-listing .pl_fixed_col {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}
.page-products .products-listing .cat_badge {
  position: relative;
  height: 100%;
}
.page-products .products-listing .cat_badge .eye-badge {
  top: 50%;
  transform: translateY(-70%);
  right: 0px;
}
.page-products .products-listing .cat_badge._big {
  --circleSize: 390px;
}
.page-products .products-listing .cat_badge._big .eye-badge {
  transform: translateY(-70%) translateX(15vw);
}
.page-products .products-listing .cat_badge._big .textcircle {
  width: var(--circleSize);
  animation-direction: reverse;
}
.page-products .products-listing .cat_badge._big .eye {
  --size: 130px;
  width: var(--size);
  height: var(--size);
  top: var(--size);
  left: var(--size);
}
.page-products
  .products-listing
  .product-row
  .product-col:nth-child(2n)
  .shop_product
  .shop_product--top:before {
  border-right: 2px solid #714a43;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.page-products
  .products-listing
  .product-row
  .product-col:nth-child(3n)
  .shop_product
  .shop_product--top:before {
  border-top: 2px solid #714a43;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.page-products .toolbar-top .toolbar-content .toolbar-content-inner-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 25px;
  margin: 5px 0 25px 0;
}
@media only screen and (max-width: 768px) {
  .page-products .toolbar-top .toolbar-content .toolbar-content-inner-top {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-left {
  flex: 1;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-left
  select {
  height: 3rem;
  max-width: 100px;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-center {
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-center
  .reset-filters {
  margin-left: 15px;
  cursor: pointer;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-center
  .reset-filters
  img {
  width: 20px;
}
.page-products .filters-toggle-btn {
  background-color: #714a43;
  color: #f4f4f3;
  font-size: 1.6rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.25rem 2rem;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.page-products .filters-toggle-btn .txt {
  padding-right: 1rem;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-right {
  position: relative;
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-right
  select {
  height: 3rem;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-right
  .sorter-options {
  margin-left: 0;
}
.page-products
  .toolbar-top
  .toolbar-content
  .toolbar-content-inner-top
  .toolbar-right
  .toolbar-right1 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.page-products .total-products {
  position: absolute;
  bottom: -3.5rem;
  right: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #86867b;
  line-height: 1.6rem;
  margin-left: 5px;
}
.page-products .total-products #toolbar-amount {
  padding: 0;
  padding-top: 0.4rem;
  height: 3rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.page-products .toolbar-bottom .toolbar-content {
  padding-bottom: 25px;
  padding-top: 15px;
  margin: 50px 0 25px 0;
}
.page-products .toolbar-bottom .toolbar-content .products-pagination {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.page-products .toolbar-bottom .toolbar-content .products-pagination .pag-nav {
  flex: 1;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pag-nav
  .lbl {
  font-size: 1.8rem;
  font-weight: 300;
  color: #714a43;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pag-nav-right {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-steps {
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0.5rem;
  padding: 5px;
  height: 4.5rem;
  width: 4.5rem;
  border: 1px solid #a16a60;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step
  span {
  color: #a16a60;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step:hover {
  background: #714a43;
  border-color: #714a43;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step:hover
  span {
  color: #ffffff;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step.active {
  background-color: #a16a60;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-step.active
  span {
  color: #ffffff;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pagination-nav
  .icon:before {
  font-size: 4.2rem;
  color: #714a43;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pag-nav-left
  .icon {
  padding-right: 1rem;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pag-nav.disabled
  .pagination-nav {
  pointer-events: none;
  opacity: 0.3;
}
.page-products
  .toolbar-bottom
  .toolbar-content
  .products-pagination
  .pag-nav-right
  .icon {
  padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-left {
    order: 3;
    flex: 0 0 100%;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-center {
    order: 1;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-right {
    order: 2;
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 1.5rem;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-right
    .toolbar-right1 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
  }
  .page-products .total-products {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .page-products .toolbar-top .toolbar-content .toolbar-content-inner-top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-center {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-center
    .filters-toggle-btn {
    width: 4rem;
    height: 4rem;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  .page-products
    .toolbar-top
    .toolbar-content
    .toolbar-content-inner-top
    .toolbar-center
    .filters-toggle-btn
    .txt {
    display: none;
  }
  .page-products .total-products #toolbar-amount .txt {
    display: none;
  }
  .page-products .toolbar-bottom .toolbar-content .toolbar-left {
    display: none;
  }
  .page-products .toolbar-bottom .toolbar-content .toolbar-right {
    flex: 1;
  }
  .page-products
    .toolbar-bottom
    .toolbar-content
    .toolbar-right
    .products-pagination {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.page-products section#gender {
  overflow: hidden;
}
.quote-container {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.quote-container:after {
  --svgSize: 185rem;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  top: calc(-1 * var(--svgSize) / 2.5);
  right: calc(-1 * var(--svgSize) / 3);
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(0deg);
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .quote-container:after {
    --svgSize: 120rem;
    top: calc(-1 * var(--svgSize) / 3);
  }
}
@media only screen and (max-width: 768px) {
  .quote-container:after {
    --svgSize: 80rem;
    top: calc(-1 * var(--svgSize) / 4);
  }
}
.quote {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote strong {
  font-weight: 600;
}
.c {
  position: relative;
}
.c:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 150px;
  top: -65px;
  left: -75px;
  background-image: url("../images/logo-icon-lines-p-withCircle.svg");
  background-size: 130px;
  background-repeat: no-repeat;
  background-position: top center;
  animation: spin 125s infinite linear;
  -webkit-animation: spin 100s infinite linear;
  opacity: 1;
  z-index: -1;
}
.catalog-product-view .shop_product_wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
  overflow: hidden;
}
.catalog-product-view .shop_product_wrapper #product-container {
  padding-top: 75px;
  padding-bottom: 75px;
  margin-bottom: 75px;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view .shop_product_wrapper #product-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.catalog-product-view .shop_product_wrapper #product-container .product-main {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view .shop_product_wrapper #product-container .product-main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left {
  flex: 0 0 25%;
  width: 25%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-top: 5%;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    flex: 0 0 50%;
    order: 2;
    padding-right: 3.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    flex: 0 0 calc(60% - 3.5rem);
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-right: -1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions
  .pml-actions--category {
  color: #714a43;
  text-decoration: underline;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item {
  height: 3.5rem;
  width: 3.5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.discount {
  position: relative;
  background-color: #714a43;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  padding-right: 0.65rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.discount
  .symbol {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 500;
  top: 0.8rem;
  right: 0.45rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.towishlist {
  border: 1px solid #714a43;
  color: #714a43;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.towishlist
  .icon {
  font-size: 1.8rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.towishlist:hover {
  background-color: #714a43;
  color: #ffffff;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .pml-actions--icons
  .pml-actions--item.towishlist:hover
  .icon {
  color: #ffffff;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-name {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-name
  h1 {
  font-size: 4.2rem;
  font-weight: 500;
  text-align: right;
  word-wrap: anywhere;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-description {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: right;
  max-width: 450px;
  margin-right: 2.5rem;
  padding: 3.5rem 0 3.5rem 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-description
  b {
  font-weight: 600;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .mz-thumbs-container {
  width: 100%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .mz-thumbs-container
  .mz-thumbs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-features {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-top: 3.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-features
  .feature {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-features
  .feature
  img {
  width: 2rem;
  margin-right: 1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left
  .product-features
  .feature
  span {
  font-weight: 300;
}
@media only screen and (max-width: 1439px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features
    .feature:not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    position: relative;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions {
    position: absolute;
    top: -4.5rem;
    left: 0;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions
    .pml-actions--category {
    margin-top: 1rem;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-name {
    width: 100%;
    border-bottom: 1px solid #e8e8e6;
    padding-top: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-name
    h1 {
    text-align: left;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-description {
    text-align: left;
    margin-right: 0;
    max-width: unset;
    border-bottom: 1px solid #e8e8e6;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-thumbnails {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-right: 0;
    border-bottom: 1px solid #e8e8e6;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-thumbnails
    .mz-thumbs {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features
    .feature:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features
    .feature {
    margin-left: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions {
    top: -5.5rem;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions
    .pml-actions--icons {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    top: unset;
    left: unset;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e8e8e6;
    order: 2;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-thumbnails {
    order: 1;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-name {
    order: 3;
    padding-top: 3.5rem;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product.attribute.overview {
    order: 4;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-features {
    order: 6;
  }
}
@media only screen and (max-width: 576px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product-thumbnails {
    padding-top: 0.5rem;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    flex: 0 0 100%;
    order: 1;
  }
}
@media only screen and (max-width: 576px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    padding: 0;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center:before {
  --svgSize: 160vw;
  display: block;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/logo-icon-light-big.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.4;
}
@media only screen and (min-width: 1800px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center:before {
    --svgSize: 140vw;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center:before {
    --svgSize: 200vw;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center:before {
    --svgSize: 260vw;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center:before {
    --svgSize: 340vw;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product.media {
  width: 100%;
  float: unset;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product.media
  .MagicToolboxContainer {
  position: relative;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container {
  position: relative;
  box-shadow: 5px 5px 40px rgba(81, 53, 48, 0.1);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container
  img {
  width: 100%;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  /* desired width */
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container-inner:before {
  content: "";
  float: left;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container-inner
  img {
  min-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container:hover {
  box-shadow: 5px 15px 40px rgba(81, 53, 48, 0.2);
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container-inner:hover
  img {
  transform: scale(1.05);
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .product-image-container
  figure {
  background-color: #ffffff;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center
  .mz-thumbs-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    margin-bottom: 75px;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center
    .product-image-container {
    max-width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    margin-bottom: 15px;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right {
  flex: 0 0 25%;
  width: 25%;
  padding-top: 5%;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    flex: 0 0 50%;
    order: 3;
    padding-left: 3.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    flex: 0 0 40%;
    padding-left: 0;
    border-top: 1px solid #e8e8e6;
    margin-top: 3.5rem;
    padding-top: 3%;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    flex: 0 0 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    padding-top: 5rem;
  }
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-tags {
  margin-left: -1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-tags
  .product-tag {
  color: #714a43;
  white-space: nowrap;
  margin: 0 1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-tags
  .product-tag:first-child {
  margin-left: 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-brand {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  margin-left: -2rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-brand
  img {
  max-height: 12rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-info {
  font-size: 1.6rem;
  margin-left: 1.5rem;
  padding: 1.5rem 0 3.5rem 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-info
  .product-info--item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: 1rem 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-info
  .product-info--item
  .lbl {
  font-weight: 300;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-info
  .product-info--item
  .value {
  font-weight: 500;
  padding-left: 1rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding-left: 2.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-label
  .colors-number {
  font-weight: 800;
  margin-right: 0.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors {
  position: relative;
  padding-left: 2.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav {
  position: absolute;
  top: -2rem;
  width: 100%;
  right: 2rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav
  .swiper-button-prev {
  right: 4rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav
  .swiper-button-prev,
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav
  .swiper-button-next {
  height: 3rem;
  width: 3rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav
  .swiper-button-prev:after,
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors
  .slider-nav
  .swiper-button-next:after {
  font-size: 2.2rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors-slider {
  width: 100%;
  max-width: 375px;
  margin: 0;
  overflow: hidden;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-colors-slider
  .swiper-wrapper {
  padding: 1.5rem 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-color {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-color
  .shop_product--top:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-color:hover
  .shop_product--top:after {
  border-color: #714a43;
  opacity: 1;
  visibility: visible;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-color._active
  .shop_product--top {
  border: 1px solid #714a43;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-colors
  .pr-color
  .shop_product--top:before {
  display: none;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price {
  padding-top: 3.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  .price-box:not(.price-final_price) {
  font-size: 1.8rem;
  font-weight: 500;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  .simple-price
  .price {
  font-size: 2rem;
  font-weight: 500;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .special-price
  .price {
  font-size: 3.6rem;
  font-weight: 500;
  color: #714a43;
  letter-spacing: -0.75px;
  padding-left: 1rem;
  position: relative;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .special-price
  .price
  .currency {
  position: absolute;
  top: 0.3rem;
  right: -4rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .special-price
  .price
  .cur2 {
  position: absolute;
  top: 0rem;
  right: -2.5rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -1px;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .old-price
  .price {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .old-price {
  text-decoration: none;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-price
  > .price-box.price-final_price
  .old-price
  .price:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  width: calc(100% + 10px);
  height: 1.5px;
  background-color: #714a43;
  animation: discountAn 2s 1 ease-in-out;
  animation-delay: 1s;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-addtocart {
  margin-top: 4.5rem;
  margin-left: -1.5rem;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-addtocart
  .tocart {
  position: relative;
  height: 5rem;
  min-width: 320px;
  font-size: 1.6rem;
  font-weight: 400;
  /*  font-family: "mnss", Helvetica, Arial;*/
  font-family: "Open Sans", sans-serif;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-addtocart
  .tocart:hover {
  border: none;
}
.catalog-product-view
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-addtocart
  button
  img {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-brand {
    border-bottom: 1px solid #e8e8e6;
    margin-left: 0;
    padding-top: 0;
    margin-top: -0.95rem;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-tags {
    text-align: right;
    margin-left: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-info {
    padding-top: 3.5rem;
    margin-left: 0;
    border-bottom: 1px solid #e8e8e6;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-colors {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-left: 0;
    border-bottom: 1px solid #e8e8e6;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-addtocart {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-colors
    .pr-colors,
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-colors
    .pr-colors
    > * {
    padding-left: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-colors
    .pr-label {
    padding-left: 0;
  }
  .catalog-product-view
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-colors
    .pr-colors
    .pr-color {
    width: 90%;
    height: 90%;
  }
}
.catalog-product-view.category-contact-lenses
  .shop_product_wrapper
  #product-container
  .product-main {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.catalog-product-view.category-contact-lenses
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--left {
  flex: 0 0 30%;
  width: 30%;
}
@media only screen and (min-width: 1199px) and (max-width: 1439px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    padding-right: 2.5rem;
  }
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .pml-actions {
    margin-right: 0;
  }
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left
    .product.attribute
    .product-description {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1439px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    flex: 0 0 50%;
    width: 50%;
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--left {
    flex: 0 0 100%;
    width: 100%;
  }
}
.catalog-product-view.category-contact-lenses
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--center {
  flex: 0 0 40%;
  width: 40%;
}
@media only screen and (max-width: 1439px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    flex: 1 0 100%;
    width: 100%;
    order: 1;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--center {
    flex: 0 0 100%;
    width: 100%;
  }
}
.catalog-product-view.category-contact-lenses
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right {
  flex: 0 0 30%;
  width: 30%;
}
@media only screen and (min-width: 1199px) and (max-width: 1439px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    padding-left: 2.5rem;
  }
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-info {
    margin-left: 0;
  }
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right
    .product-addtocart {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1439px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    flex: 1 0 50%;
    width: 50%;
    order: 3;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view.category-contact-lenses
    .shop_product_wrapper
    #product-container
    .product-main
    .product-main--right {
    flex: 0 0 100%;
    width: 100%;
  }
}
.catalog-product-view.category-contact-lenses
  .shop_product_wrapper
  #product-container
  .product-main
  .product-main--right
  .product-info {
  padding-left: 0;
}
.catalog-product-view .pr-label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #714a43;
  margin-bottom: 1.5rem;
}
.catalog-product-view .related-products-slider .swiper-button:after {
  color: #b4b4ae;
}
.catalog-product-view .MagicToolboxSelectorsContainer > div > * {
  flex: 0 0 80px;
  height: 80px;
  width: 80px;
}
.catalog-product-view .MagicToolboxSelectorsContainer > div .mt-thumb-switcher {
  border: 1px solid #fff;
  margin: 0.4rem 0.7rem;
  overflow: hidden;
  box-shadow: 2px 3px 15px rgba(81, 53, 48, 0.1);
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher:hover
  img {
  margin: 0;
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher.active-selector {
  border: 1px solid #714a43;
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher:not(.active-selector):hover {
  border: 1px solid rgba(113, 74, 67, 0.5);
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher.mz-thumb
  img {
  margin: 0;
  padding: 0;
  margin-top: 0 !important;
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher.active-selector
  img {
  margin: 0;
  padding: 0;
}
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher.active-selector.mz-thumb
  img,
.catalog-product-view
  .MagicToolboxSelectorsContainer
  > div
  .mt-thumb-switcher:not(.active-selector):hover
  img {
  -webkit-filter: none !important;
  filter: none !important;
  border: none;
  margin: 0;
  padding: 0;
}
.catalog-product-view #askquestion {
  margin-top: 50px;
  margin-bottom: 50px;
}
.catalog-product-view #sizeandfit {
  padding-bottom: 75px;
}
.catalog-product-view #sizeandfit.no-size .details-content .right {
  padding-top: 0;
}
.catalog-product-view #sizeandfit .details-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.catalog-product-view #sizeandfit .details-content .left {
  flex: 0 0 45%;
}
.catalog-product-view #sizeandfit .details-content .right {
  flex: 0 0 55%;
  padding-top: 7%;
}
.catalog-product-view #sizeandfit .details-content .g-size {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.catalog-product-view #sizeandfit .details-content .g-size .g-size-img {
  flex: 0 0 50%;
  padding: 0 2.5rem;
}
.catalog-product-view #sizeandfit .details-content .g-size img {
  width: 100%;
}
.catalog-product-view #sizeandfit .details-content .g-size-details {
  padding-left: 1.5rem;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .g-size-details
  .g-size-detail {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding-bottom: 1.5rem;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .g-size-details
  .g-size-detail
  .lbl {
  font-size: 1.8rem;
  font-weight: 500;
  padding-right: 1rem;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .g-size-details
  .g-size-detail
  .value {
  font-size: 2.8rem;
  font-weight: 600;
  color: #714a43;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .g-size-details
  .g-size-detail
  .value
  .symbol {
  font-size: 1.4rem;
  margin-left: -5px;
}
.catalog-product-view #sizeandfit .details-content .right .product-attributes {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.6rem;
  padding-top: 3.5rem;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  > * {
  flex: 0 0 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  .product-attribute {
  display: grid;
  grid-template-columns: minmax(30px, max-content) minmax(50px, 25%) minmax(
      50px,
      2fr
    );
  grid-gap: 1rem;
  margin-bottom: 3.5rem;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  .product-attribute
  .sep {
  position: relative;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  .product-attribute
  .sep:after {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #714a43;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  .lbl
  span {
  color: #714a43;
  font-weight: 300;
}
.catalog-product-view
  #sizeandfit
  .details-content
  .right
  .product-attributes
  .value {
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .catalog-product-view #sizeandfit .details-content .left {
    flex: 0 0 60%;
  }
  .catalog-product-view #sizeandfit .details-content .right {
    flex: 0 0 40%;
    padding-top: 0;
  }
  .catalog-product-view
    #sizeandfit
    .details-content
    .right
    .product-attributes {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .catalog-product-view #sizeandfit .details-content {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .catalog-product-view #sizeandfit .details-content .left {
    flex: 0 0 100%;
  }
  .catalog-product-view #sizeandfit .details-content .right {
    flex: 0 0 100%;
    padding-top: 3.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .catalog-product-view #sizeandfit .details-content .g-size {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .catalog-product-view #sizeandfit .details-content .g-size img {
    width: 300px;
  }
  .catalog-product-view #sizeandfit .details-content .right {
    padding-top: 5.5rem;
  }
  .catalog-product-view
    #sizeandfit
    .details-content
    .right
    .product-attributes
    .product-attribute {
    grid-template-columns: minmax(30px, max-content) minmax(30px, 15%) minmax(
        50px,
        2fr
      );
    margin-bottom: 1.5rem;
  }
}
.shop-page .shop-gallery {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.shop-page .shop-gallery img {
  width: 100%;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.big-banners {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  --gap: 30px;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin: calc(-1 * var(--gap)) 0 0 calc(-1 * var(--gap));
  width: calc(100% + var(--gap));
}
.big-banners .big-banner {
  position: relative;
  flex: 1;
  width: 100%;
  padding-top: 50%;
  margin: var(--gap) 0 0 var(--gap);
  overflow: hidden;
  will-change: transform;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media only screen and (max-width: 991px) {
  .big-banners .big-banner {
    flex: 100%;
  }
}
.big-banners .big-banner .big-banner-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  -ms-transform: translateZ(0);
  /* IE 9 */
  -webkit-transform: translateZ(0);
  /* Chrome, Safari, Opera */
  transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform 350ms ease-in-out;
  -ms-transition: -ms-transform 350ms ease-in-out;
  transition: transform 350ms ease-in-out;
}
.big-banners .big-banner.b1 .big-banner-inner {
  background-image: url("../images/big_banner_2.jpg");
}
.big-banners .big-banner.b2 .big-banner-inner {
  background-image: url("../images/big_banner_1.jpg");
}
.big-banners .big-banner:hover .big-banner-inner {
  transform: scale(1.05) rotate(1deg);
}
.big-banners .big-banner .big-banner-txt {
  position: absolute;
  bottom: 5%;
  left: 50%;
  color: #ffffff;
  transform: translateX(-50%) translateZ(0);
  backface-visibility: hidden;
  -webkit-filter: blur(0);
  text-align: center;
}
.big-banners .big-banner .big-banner-txt .title {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
}
.big-banners .big-banner .big-banner-txt .slogan {
  font-size: 2.8rem;
}
.big-banners .big-banner .big-banner-txt .links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
@media only screen and (max-width: 480px) {
  .big-banners .big-banner .big-banner-txt .links {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.big-banners .big-banner .big-banner-txt .links .link {
  padding-left: 45px;
  padding-right: 45px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-filter: blur(0);
  will-change: transform;
}
@media only screen and (max-width: 480px) {
  .big-banners .big-banner .big-banner-txt .links .link {
    width: 100%;
  }
}
.big-banners .big-banner .big-banner-txt .links .link:first-child {
  margin-right: 1rem;
}
@media only screen and (max-width: 576px) {
  .big-banners .big-banner .big-banner-txt .links .link:first-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .big-banners .big-banner .big-banner-txt .links .link:first-child {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .big-banners .big-banner {
    padding-top: 80%;
  }
}
@media only screen and (max-width: 576px) {
  .big-banners .big-banner {
    padding-top: 100%;
  }
  .big-banners .big-banner .big-banner-txt {
    padding: 20px;
    width: 100%;
  }
  .big-banners .big-banner .big-banner-txt .title {
    font-size: 5rem;
  }
  .big-banners .big-banner .big-banner-txt .slogan {
    font-size: 2rem;
    text-shadow: 1px 1px 5px #000000;
  }
  .big-banners .big-banner .big-banner-txt .links {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px;
  }
}
.lines-behind {
  position: relative;
}
.lines-behind:before {
  content: "";
  position: absolute;
  left: -100%;
  right: -100%;
  width: 300%;
  height: calc(200px + 5vh);
  background-color: #714a43;
  transform: rotate(7deg);
  -webkit-transition: all 750ms ease-in-out;
  -moz-transition: all 750ms ease-in-out;
  -o-transition: all 750ms ease-in-out;
  -ms-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
}
.lines-behind:after {
  content: "";
  position: absolute;
  left: -100%;
  right: -100%;
  width: 300%;
  height: calc(180px + 5vh);
  background-color: #e5e5e3;
  transform: rotate(-8deg);
  z-index: -1;
  -webkit-transition: all 750ms ease-in-out;
  -moz-transition: all 750ms ease-in-out;
  -o-transition: all 750ms ease-in-out;
  -ms-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
}
.lines-behind:hover:before {
  transform: rotate(-5deg);
}
.lines-behind:hover:after {
  transform: rotate(8deg);
}
@media only screen and (max-width: 991px) {
  .lines-behind:before {
    display: none;
  }
  .lines-behind:after {
    display: none;
  }
}
.big-horizontal-banner {
  position: relative;
  background-image: url("../images/banner_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  min-height: 350px;
  height: calc(300px + 15vw);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.big-horizontal-banner:hover ._c1 {
  animation: scaleIt 2s alternate infinite ease-in;
}
.big-horizontal-banner .big-horizontal-banner--content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: right;
  padding: 35px;
  max-width: 50%;
  margin-left: auto;
  height: 100%;
}
.big-horizontal-banner .big-horizontal-banner--content .slogan {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
}
.big-horizontal-banner .big-horizontal-banner--content .title {
  font-size: 6.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffffff;
  padding: 15px 0 30px 0;
}
.big-horizontal-banner .big-horizontal-banner--content .title > span {
  font-weight: 300;
}
.big-horizontal-banner .c {
  position: absolute;
  background-image: url("../images/circle.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.big-horizontal-banner .c._c1 {
  left: -6%;
  top: -7%;
  width: 250px;
  height: 250px;
  background-size: 250px;
}
@media only screen and (max-width: 991px) {
  .big-horizontal-banner {
    height: calc(350px + 15vw);
  }
  .big-horizontal-banner .big-horizontal-banner--content {
    max-width: 60%;
    margin-right: auto;
    margin-left: 0;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    text-align: left;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.75);
  }
  .big-horizontal-banner .big-horizontal-banner--content .slogan {
    font-size: 1.8rem;
  }
  .big-horizontal-banner .big-horizontal-banner--content .title {
    font-size: 4rem;
  }
  .big-horizontal-banner .c._c1 {
    left: -10%;
    top: -10%;
    width: 200px;
    height: 200px;
    background-size: 200px;
  }
}
.instagram-container {
  margin-bottom: 75px;
}
#instagram-block {
  padding-bottom: 35px;
  padding-left: 0;
  padding-right: 0;
}
#instagram-block .instagram-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#instagram-block .instagram-title .text {
  font-size: 3.6rem;
  font-weight: 900;
  color: #e5e5e3;
}
#instagram-block .instagram-title .link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 40px;
  background: #e5e5e3;
  padding: 0 25px 0 4px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
#instagram-block .instagram-title .link .icon {
  position: relative;
  font-size: 3.4rem;
  color: #714a43;
  margin-right: 15px;
  z-index: 1;
}
#instagram-block .instagram-title .link .icon:before {
  z-index: 1;
}
#instagram-block .instagram-title .link .icon:after {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  right: 0;
  bottom: 0;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
#instagram-block .instagram-title .link .txt {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 991px) {
  #instagram-block .instagram-title {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #instagram-block .instagram-title .text {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 2.6rem;
  }
}
.help-banner {
  position: relative;
  background-color: #ffffff;
  max-width: 900px;
  padding: 35px 60px 35px 125px;
  box-shadow: 5px 5px 30px rgba(81, 53, 48, 0.05);
  margin: 0 auto;
  -webkit-border-radius: 250px;
  -moz-border-radius: 250px;
  border-radius: 250px;
}
.help-banner .badge-circle {
  --circleSize: 175px;
  position: absolute;
  left: calc(-1 * (var(--circleSize) / 2));
  top: 50%;
  width: var(--circleSize);
  height: var(--circleSize);
  transform: translateY(-50%);
  background-color: #714a43;
  animation: spin3 25s infinite linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.help-banner .badge-circle:after {
  content: "";
  position: absolute;
  background-image: url("../images/badge-1-light.svg");
  background-size: calc(var(--circleSize) / 1.25);
  background-position: center;
  background-repeat: no-repeat;
  width: var(--circleSize);
  height: var(--circleSize);
}
@media only screen and (max-width: 576px) {
  .help-banner {
    padding: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
  }
  .help-banner .badge-circle {
    --circleSize: 125px;
    top: 0;
    z-index: -1;
  }
  .help-banner .actions a.button {
    width: 100%;
  }
  .help-banner .actions .button:first-child {
    margin-bottom: 1rem;
  }
}
.help-banner .content {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 3.5rem;
}
#mobile-menu {
  height: 100vh;
  width: 40rem;
  background-color: #e8e8e6;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transform: translate3d(-100vw, 0, 0);
  transition: all 440ms cubic-bezier(0.7, 0, 0.3, 1) 0s;
  overflow-y: hidden;
  -ms-overflow-y: hidden;
  overflow-x: hidden;
  -ms-overflow-x: hidden;
}
@media only screen and (max-width: 480px) {
  #mobile-menu {
    width: 32rem;
  }
}
#mobile-menu.show {
  transform: translate3d(0vw, 0, 0);
}
@media only screen and (max-width: 480px) {
  #mobile-menu.show {
    transform: translate3d(0vw, 0, 0);
  }
}
#mobile-menu .mobile-menu-content {
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 35px;
  overflow-y: auto;
}
#mobile-menu .mobile-menu-content:before {
  --svgSize: 150rem;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  bottom: -30rem;
  right: calc(-1 * var(--svgSize) / 2);
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(0deg);
  opacity: 0.3;
  z-index: -1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 10px;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--top .close-menu .icon {
  font-size: 3.6rem;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--top
  .socials
  .social
  .icon {
  font-size: 2rem;
  margin: 0 5px;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--top
  .socials
  .social:last-child
  .icon {
  margin-right: 0;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main {
  padding: 2.5rem 0;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 15px;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  .field {
  flex: 1;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  .actions {
  flex: 0 0 50px;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  .nested {
  display: none;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 15px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  input::-webkit-input-placeholder {
  color: #ffffff;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  input:-moz-placeholder {
  color: #ffffff;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  input::-moz-placeholder {
  color: #ffffff;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  input:-ms-input-placeholder {
  color: #ffffff;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-color: #714a43;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 1rem;
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  .search-block
  form.minisearch
  button
  .icon {
  font-size: 1.8rem;
  color: #ffffff;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul {
  padding: 0;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li {
  padding: 12px 0;
  margin: 0;
  list-style-type: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li:last-child {
  border-bottom: none;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li._c {
  position: relative;
  padding-left: 1.75rem;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li._c:before {
  --size: 0.6rem;
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0.2rem;
  background-image: url("../images/logo-icon-circle.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  width: var(--size);
  height: var(--size);
  pointer-events: none;
  opacity: 0.4;
  z-index: 2;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li > span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #714a43;
}
#mobile-menu .mobile-menu-content .mobile-menu-content--main ul li.account {
  border-top: 1px solid 1px solid rgba(255, 255, 255, 0.5);
}
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  ul
  li.account
  .icon,
#mobile-menu
  .mobile-menu-content
  .mobile-menu-content--main
  ul
  li.wishlist
  .icon {
  background: #714a43;
  width: 30px;
  height: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 12px;
}
#mobile-menu .minisearch .input-text {
  color: #ffffff;
}
.product-filters-overlay,
.bg_overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.4);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 240ms ease-in-out;
  -moz-transition: all 240ms ease-in-out;
  -o-transition: all 240ms ease-in-out;
  -ms-transition: all 240ms ease-in-out;
  transition: all 240ms ease-in-out;
}
.product-filters-overlay._show,
.bg_overlay._show {
  pointer-events: auto;
  opacity: 1;
}
#product-filters {
  height: 100vh;
  width: 42rem;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  /* positioning */
  transform: translate3d(100vw, 0, 0);
  transition: all 440ms cubic-bezier(0.7, 0, 0.3, 1) 0s;
  overflow-y: hidden;
  -ms-overflow-y: hidden;
  overflow-x: hidden;
  -ms-overflow-x: hidden;
}
@media only screen and (max-width: 480px) {
  #product-filters {
    width: 100%;
  }
}
#product-filters.show {
  transform: translate3d(0vw, 0, 0);
}
@media only screen and (max-width: 480px) {
  #product-filters.show {
    transform: translate3d(0vw, 0, 0);
  }
}
#product-filters .product-filters-content {
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f4f4f3;
  padding: 0 15px 0 35px;
  z-index: 1;
}
#product-filters .product-filters-content:after {
  --svgSize: 110rem;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: absolute;
  bottom: calc(-1 * var(--svgSize) / 4.5);
  right: calc(-1 * var(--svgSize) / 2.5);
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: rotate(0deg);
  opacity: 0.4;
  z-index: -1;
}
#product-filters .product-filters-content .circle {
  --size: 250px;
  display: block;
  position: absolute;
  right: calc(-1 * var(--size) / 2.2);
  top: calc(-1 * var(--size) / 2.2);
  width: var(--size);
  height: var(--size);
  background-image: url("../images/circle.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--size);
  z-index: -1;
}
#product-filters .product-filters-content .lines-circle {
  --size: 800px;
  display: block;
  position: absolute;
  left: calc(-1 * var(--size) / 2.2);
  bottom: calc(-1 * var(--size) / 3);
  width: var(--size);
  height: var(--size);
  background-image: url("../images/circles-dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--size);
  opacity: 0.1;
  z-index: -1;
}
#product-filters .product-filters-content .product-filters-content--top {
  position: relative;
  height: 100px;
  padding-top: 30px;
}
#product-filters .product-filters-content .product-filters-content--top .title {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: baseline;
  font-size: 2.2rem;
  font-weight: 500;
  z-index: 1;
  letter-spacing: 0.5px;
}
#product-filters
  .product-filters-content
  .product-filters-content--top
  .title
  .icon {
  margin-right: 10px;
}
#product-filters
  .product-filters-content
  .product-filters-content--top
  .title:before {
  content: "";
  position: absolute;
  height: 55px;
  width: 55px;
  top: -10px;
  left: -65px;
  background-image: url("../images/logo-icon-circle.svg");
  background-size: 55px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.75;
  z-index: -1;
}
#product-filters
  .product-filters-content
  .product-filters-content--top
  .close-filters {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  z-index: 2;
}
#product-filters
  .product-filters-content
  .product-filters-content--top
  .close-filters
  span.icon {
  font-size: 1.6rem;
}
#product-filters .product-filters-content .product-filters-content--main {
  height: calc(100% - 100px - 75px);
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  overflow-y: auto;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #e5e5e3;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-title._active {
  border-bottom: 1px solid #111111;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-title:after {
  font-family: "palafoutisIcons";
  content: "\e903";
  color: #111111;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-title._active:after {
  transform: translateY(-50%) rotate(0deg);
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content {
  display: none;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  max-height: 350px;
  overflow-x: hidden;
  overflow-y: auto;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li {
  padding: 0.35rem 0;
  margin-bottom: 1rem;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li
  input {
  display: none;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li
  a {
  position: relative;
  width: 100%;
  color: #79796f;
  font-size: 1.4rem;
  font-weight: 300;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li
  a:hover {
  color: #111111;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li
  a
  .count:before,
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .items
  li
  a
  .count:after {
  display: none;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5px;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color
  .item
  .swatch-option.image,
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color
  .item
  .swatch-option.color {
  height: 35px;
  width: 35px;
  margin: 10px 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color
  input {
  display: none;
}
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color
  .swatch-option.image:not(.disabled):hover,
#product-filters
  .product-filters-content
  .filter-options
  .filter-options-content
  .am-filter-items-attr_frame_color
  .swatch-option.color:not(.disabled):hover {
  outline: none;
  border-color: #714a43;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#product-filters .product-filters-content .product-filters-content--bottom {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  max-width: 320px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
#product-filters
  .product-filters-content
  .product-filters-content--bottom
  .clear {
  width: max-content;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#product-filters .product-filters-content .product__filters-floating-icon {
  position: absolute;
  content: "";
  bottom: 20%;
  left: -30%;
  display: block;
  opacity: 0.1;
  transform: scale(1.1);
  z-index: -1;
}
#product-filters .product-filters-content .active-filters {
  padding: 1.5rem 0;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .filter-current-subtitle {
  font-weight: 400;
  color: #79796f;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .items
  li {
  background: transparent;
  border: 1px solid #a16a60;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  padding: 1px 10px 1px 20px;
  margin-right: 10px;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .items
  li
  .amshopby-remove
  .icon {
  font-size: 0.9rem;
  color: #a16a60;
  padding-right: 0.75rem;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .amshopby-remove {
  left: 9px;
  color: #714a43;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .items
  li
  .amshopby-filter-name {
  margin: 0 7px;
  font-weight: 500;
}
#product-filters
  .product-filters-content
  .active-filters
  .amshopby-filter-current.filter-current
  .items
  li
  .amshopby-filter-value {
  font-weight: 300;
  color: #a16a60;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 576px) {
  #product-filters .product-filters-content {
    padding: 0 15px 0 25px;
  }
  #product-filters .product-filters-content .circle {
    --size: 180px;
  }
  #product-filters .product-filters-content .lines-circle {
    --size: 400px;
  }
  #product-filters .product-filters-content .product-filters-content--top {
    height: unset;
    padding-top: 20px;
    padding-bottom: 25px;
  }
  #product-filters
    .product-filters-content
    .product-filters-content--top
    .title {
    font-size: 1.8rem;
  }
}
.swatch-option-tooltip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
}
.swatch-option-tooltip .image {
  display: none !important;
}
.frame_colors_wrapper .am-swatch-wrapper .am-swatch-link .swatch-option.image {
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.frame_colors_wrapper
  .am-swatch-wrapper
  .am-swatch-link
  .swatch-option.image:hover {
  border: none !important;
  outline: none !important;
  -o-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
}
.shop_product {
  position: relative;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
}
.shop_product .badge--new-arrival {
  position: absolute;
  top: 1rem;
  left: 3rem;
  transform: rotate(-35deg);
}
.shop_product .badge--new-arrival img {
  height: 2rem;
}
.shop_product .badge--offer {
  position: absolute;
  top: -8rem;
  right: -5rem;
  z-index: -1;
}
.shop_product .badge--offer span {
  font-size: 20rem;
  font-weight: 600;
  color: rgba(113, 74, 67, 0.05);
}
.shop_product .shop_product--top {
  position: relative;
  box-shadow: 3px 3px 40px rgba(180, 180, 174, 0.15);
  overflow: hidden;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shop_product .shop_product--top:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  will-change: transform;
  transform: rotate(45deg);
  -webkit-transition: all 540ms ease-in-out;
  -moz-transition: all 540ms ease-in-out;
  -o-transition: all 540ms ease-in-out;
  -ms-transition: all 540ms ease-in-out;
  transition: all 540ms ease-in-out;
  pointer-events: none;
  z-index: 1;
  border-left: 2px solid #714a43;
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.shop_product .shop_product--top:hover:before {
  transform: rotate(-135deg);
}
.shop_product .shop_product--top .shop_product--top-img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  /* desired width */
  height: 100%;
  background-color: #ffffff;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shop_product .shop_product--top .shop_product--top-img:before {
  content: "";
  float: left;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}
.shop_product .shop_product--top .shop_product--top-img img {
  min-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.shop_product .shop_product--bottom {
  -webkit-font-smoothing: subpixel-antialiased;
  padding-top: 3.5rem;
}
.shop_product .shop_product--bottom .pr_head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0.5rem;
}
.shop_product .shop_product--bottom .pr_head .pr_head--title {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
  /* Fallback for non-webkit */
  padding-right: 0.5rem;
}
@media only screen and (max-width: 1439px) {
  .shop_product .shop_product--bottom .pr_head .pr_head--title {
    font-size: 1.6rem;
  }
}
.shop_product .shop_product--bottom .pr_head .pr_head--price {
  flex: 0 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  min-width: 100px;
  font-size: 1.8rem;
  font-weight: 600;
}
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  text-align: right;
}
.shop_product .shop_product--bottom .pr_head .pr_head--price .price-box .price {
  letter-spacing: -0.5px;
}
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price
  .old-price,
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price
  .special-price {
  line-height: 1;
}
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price
  .old-price
  .price {
  font-weight: 300;
}
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price
  .special-price
  .price {
  font-size: 1.8rem;
  line-height: 1;
  color: #714a43;
}
.shop_product
  .shop_product--bottom
  .pr_head
  .pr_head--price
  .price-box.price-final_price
  .product-price
  .simple-price
  .price {
  font-size: 1.8rem;
  line-height: 1;
}
@media only screen and (max-width: 1439px) {
  .shop_product .shop_product--bottom .pr_head .pr_head--price {
    min-width: unset;
  }
}
.shop_product .shop_product--bottom .pr_bottom {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0.5rem;
}
.shop_product .shop_product--bottom .pr_bottom .pr_bottom--colors {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 6px;
  background-color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: border-color 200ms ease-in-out;
  -o-transition: border-color 200ms ease-in-out;
  transition: border-color 200ms ease-in-out;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color:nth-child(2) {
  background-color: orange;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color:nth-child(3) {
  background-color: seagreen;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color
  img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color.active-color:before {
  border: 1px solid #714a43;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color {
  border: 0;
  outline: none;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: border 200ms ease-in-out;
  -o-transition: border 200ms ease-in-out;
  transition: border 200ms ease-in-out;
}
.shop_product
  .shop_product--bottom
  .pr_bottom
  .pr_bottom--colors
  .product-color:hover:before {
  border: 1px solid #a1a4a6;
}
.shop_product .shop_product--bottom .pr_bottom .tocart {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.35px;
  background-color: #714a43;
  border-color: #714a43;
  min-width: 15rem;
  padding: 0.5rem 2.75rem 0.5rem 2.75rem;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
}
.shop_product .shop_product--bottom .pr_bottom .tocart:focus {
  background-color: #714a43;
}
@media only screen and (max-width: 1199px) {
  .shop_product .badge--new-arrival {
    top: 0rem;
    left: 2.3rem;
    transform: rotate(-33deg);
  }
}
.shop_product_banner .spb_top {
  display: block;
  position: relative;
  box-shadow: 3px 3px 35px rgba(180, 180, 174, 0.2);
  overflow: hidden;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shop_product_banner .spb_top .spb_top--inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  /* desired width */
  height: 100%;
  background: #ffffff;
  background-image: url("../images/bricks-top.jpg");
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.shop_product_banner .spb_top .spb_top--inner:before {
  content: "";
  float: left;
  padding-top: 100%;
  /* initial ratio of 1:1*/
}
.shop_product_banner .content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.shop_product_banner .content .left {
  flex: 1;
  text-align: right;
  padding-top: 13%;
  margin-right: -8.5rem;
}
.shop_product_banner .content .right {
  flex: 1;
  text-align: left;
  padding-top: 8rem;
  margin-left: -2rem;
}
@media only screen and (min-width: 1439px) {
  .shop_product_banner .content .right {
    padding-top: 10rem;
  }
}
.shop_product_banner .title-1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.shop_product_banner .title-2 {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}
.shop_product_banner .title-3 {
  position: relative;
  font-size: 7rem;
  letter-spacing: -0.35px;
  color: #714a43;
}
.shop_product_banner .title-3 .symbol {
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
  font-size: 3rem;
  font-weight: 300;
}
@media only screen and (min-width: 1439px) {
  .shop_product_banner .title-3 {
    font-size: 10rem;
  }
  .shop_product_banner .title-3 .symbol {
    font-size: 4rem;
  }
}
.products-slider
  .swiper-wrapper
  .swiper-slide:nth-child(2n)
  .shop_product
  .shop_product--top:before {
  border-right: 2px solid #714a43;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.products-slider
  .swiper-wrapper
  .swiper-slide:nth-child(3n)
  .shop_product
  .shop_product--top:before {
  border-top: 2px solid #714a43;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.tags {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tags .tag {
  position: relative;
  font-weight: 300;
  color: #714a43;
  background: rgba(113, 74, 67, 0.15);
  padding: 0.25rem 2.5rem;
  margin: 0 0.75rem 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
  transition-delay: 400ms;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.tags .tag:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #714a43;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateX(-200%);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.tags .tag:hover {
  color: #f4f4f3;
}
.tags .tag:hover:before {
  transform: translateX(0);
}
.tags .tag:first-child {
  margin-left: 0;
}
.products-listing.custom {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.products-listing.custom .product-row {
  --gap: 5rem;
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--gap)) 0 0 calc(-1 * var(--gap));
  width: calc(100% + var(--gap));
  justify-content: center;
}
.products-listing.custom .product-row > * {
  flex: 0 0 calc(24% - var(--gap));
  width: calc(24% - var(--gap));
  margin: var(--gap) 0 0 var(--gap);
}
.products-listing.custom .product-row .product-col .shop_product {
  margin: 0;
}
.products-listing.custom .product-row > .pl_fixed_col {
  flex: 0 0 calc(12.5% - var(--gap));
}
@media only screen and (max-width: 1439px) {
  .products-listing.custom {
    --gap: 4rem;
  }
  .products-listing.custom .product-row > * {
    flex: 0 0 calc(32% - var(--gap));
    margin: var(--gap) 0 0 var(--gap);
  }
  .products-listing.custom .product-row > .pl_fixed_col {
    flex: 0 0 calc(32% - var(--gap));
  }
  .products-listing.custom .pl_fixed_col {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .products-listing.custom {
    --gap: 3rem;
  }
  .products-listing.custom .product-row > * {
    flex: 0 0 calc(49% - var(--gap));
    margin: var(--gap) 0 0 var(--gap);
  }
  .products-listing.custom .pl_fixed_col {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .products-listing.custom .product-row > * {
    flex: 0 0 calc(49% - var(--gap));
    margin: var(--gap) 0 0 var(--gap);
  }
}
@media only screen and (max-width: 768px) {
  .products-listing.custom .product-row > * {
    --gap: 5rem;
    flex: 0 0 calc(85% - var(--gap));
    margin: var(--gap) 0 0 var(--gap);
  }
}
@media only screen and (max-width: 576px) {
  .products-listing.custom .product-row > * {
    --gap: 5rem;
    flex: 0 0 calc(100% - var(--gap));
    margin: var(--gap) 0 0 var(--gap);
  }
}
.cms-brands .columns {
  z-index: unset;
}
#brand-page .brand-img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
#brand-page .brand-content {
  max-width: 750px;
  margin: 0 auto;
}
#brand-page .brand-content .brand-images {
  margin-bottom: 3.5rem;
}
#brand-page .brand-content .brand-images img {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#brand-page .brand-content h4 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
#brand-page .brand-content .txt {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 4rem;
}
#brands-grid .top {
  text-align: center;
  padding-top: 3.5rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 576px) {
  #brands-grid .top {
    margin-bottom: 2.5rem;
  }
}
#brands-grid .top .title {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 576px) {
  #brands-grid .top .title {
    font-size: 2.8rem;
  }
}
#brands-grid .top .subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 0.5rem;
}
#brands-grid .brands-content {
  position: relative;
  max-width: 1100px;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  margin: 0 auto;
}
#brands-grid .brands-content:after {
  --svgSize: 200rem;
  content: "";
  width: var(--svgSize);
  height: var(--svgSize);
  position: fixed;
  top: 50%;
  right: calc(-1 * var(--svgSize) / 2);
  background-image: url("../images/logo-icon-light.svg");
  background-size: var(--svgSize);
  background-repeat: no-repeat;
  background-position: top center;
  transform: translateY(-50%) rotate(0deg);
  -webkit-animation: spin3 3s 1 ease-in-out;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
#brands-grid .exclusive-brands {
  border-bottom: 1px solid #e8e8e6;
  padding-bottom: 7.5rem;
  margin-bottom: 7.5rem;
}
#brands-grid .exclusive-brands .title {
  margin-bottom: 3.5rem;
}
#brands-grid .exclusive-brands .title h4 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  color: #714a43;
}
#brands-grid .exclusive-brands .eyewear-list {
  -webkit-justify-content: center;
  justify-content: center;
}
#brands-grid .exclusive-brands .eyewear-list .brand {
  position: relative;
  background-color: #714a43;
  min-height: 200px;
  box-shadow: 2px 4px 20px rgba(113, 74, 67, 0.15);
}
#brands-grid .exclusive-brands .eyewear-list .brand:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: url("../images/logo-icon-light.svg");
  background-size: 35px;
  background-repeat: no-repeat;
}
#brands-grid .exclusive-brands .eyewear-list .brand .brand--img img {
  filter: brightness(0) invert(1);
}
#brands-grid .eyewear-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  --bgap: 2.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--bgap)) 0 0 calc(-1 * var(--bgap));
  width: calc(100% + var(--bgap));
}
#brands-grid .eyewear-list .brand {
  position: relative;
  flex: 0 0 calc(33% - var(--bgap));
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  min-height: 175px;
  padding: 2rem 1rem;
  background-color: #ffffff;
  margin: var(--bgap) 0 0 var(--bgap);
  box-shadow: 3px 5px 30px rgba(121, 121, 111, 0.1);
  width: 100%;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
#brands-grid .eyewear-list .brand:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(81, 53, 48, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 2;
}
#brands-grid .eyewear-list .brand:hover {
  box-shadow: 3px 5px 40px rgba(121, 121, 111, 0.3);
}
#brands-grid .eyewear-list .brand:hover:before {
  opacity: 1;
  visibility: visible;
}
#brands-grid .eyewear-list .brand:hover .brand--actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
  color: #f4f4f3;
  z-index: 3;
}
#brands-grid .eyewear-list .brand:hover .brand--img img {
  transform: scale(0.9);
}
#brands-grid .eyewear-list .brand:hover .brand--link {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  color: #f4f4f3;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  #brands-grid .eyewear-list .brand {
    flex: 0 0 calc(50% - var(--bgap));
  }
}
@media only screen and (max-width: 576px) {
  #brands-grid .eyewear-list .brand {
    flex: 0 0 calc(100% - var(--bgap));
  }
}
#brands-grid .eyewear-list .brand .brand--img {
  display: block;
  margin: 0 auto;
}
#brands-grid .eyewear-list .brand .brand--img img {
  width: 100%;
  max-width: 200px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#brands-grid .eyewear-list .brand .brand--actions {
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #brands-grid .eyewear-list .brand .brand--actions {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#brands-grid .eyewear-list .brand .brand--actions a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  margin: 0 0.75rem;
  background: rgba(244, 244, 243, 0.05);
  color: #f4f4f3;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
@media only screen and (max-width: 991px) {
  #brands-grid .eyewear-list .brand .brand--actions a {
    font-size: 1.2rem;
    padding: 0 1rem;
    margin: 0.5rem;
  }
}
#brands-grid .eyewear-list .brand .brand--actions a:hover {
  background: rgba(244, 244, 243, 0.07);
  border: 1px solid rgba(244, 244, 243, 0.2);
  color: #f4f4f3;
}
#brands-grid .eyewear-list .brand .brand--actions a .icon {
  width: 3rem;
  margin-right: 0.5rem;
}
#brands-grid .eyewear-list .brand .brand--actions a .icon img {
  width: 100%;
}
@media only screen and (max-width: 576px) {
  #brands-grid .eyewear-list .brand .brand--actions {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #brands-grid .eyewear-list .brand .brand--actions a:first-child {
    margin-bottom: 1rem;
  }
}
#brands-grid .eyewear-list .brand .brand--link {
  position: absolute;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
  top: 1.75rem;
  right: 1.75rem;
  transform: translateX(50px);
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
#brands-grid .eyewear-list .brand .brand--link img {
  width: 2.2rem;
}
#brands-grid .eyewear-list .brand .brand--link .txt {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: #f4f4f3;
  margin-top: 0.25rem;
}
.page-title-wrapper {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}
.page-title-wrapper h1 {
  position: relative;
  font-size: calc(3.6rem + 0.2vw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
}
.page-title-wrapper h1._shape {
  --shapeSize: 20rem;
  --headingHeight: 2.5rem;
}
.page-title-wrapper h1._shape._shapeBig {
  --shapeSize: 40rem;
}
.page-title-wrapper h1._shape:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.page-title-wrapper h1:after {
  --size: 1.25rem;
  content: "";
  position: absolute;
  bottom: 0.65rem;
  right: -1.5rem;
  background-image: url("../images/logo-icon-circle.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  width: var(--size);
  height: var(--size);
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .page-title-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .page-title-wrapper h1 {
    letter-spacing: 0.5px;
  }
}
@media only screen and (max-width: 768px) {
  .page-title-wrapper h1 {
    font-size: 3.6rem;
  }
  .page-title-wrapper:before {
    width: 500px;
    height: 500px;
    background-size: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .page-title-wrapper h1 {
    font-size: 2.4rem;
  }
  .page-title-wrapper:before {
    width: 750px;
    height: 750px;
    background-size: 750px;
  }
}
.breadcrumbs {
  margin-top: 7px;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumbs .items {
  font-size: 1.4rem;
}
.breadcrumbs .items li.item > * {
  font-size: 1.4rem;
  font-weight: 300;
}
.breadcrumbs .items li.item strong {
  font-weight: 500;
  color: #111111;
}
.breadcrumbs .item:not(:last-child)::after {
  content: "\e90b";
  font-family: "palafoutisIcons";
  color: #714a43;
  font-size: 0.9rem;
  line-height: 2.4;
  opacity: 0.65;
  margin: 0 5px;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs .items {
    text-align: center;
  }
}
.account .page-main {
  padding-top: 50px;
}
.account .page-title-container {
  padding: 0;
}
.account .page-title-wrapper {
  background-image: none;
  padding-bottom: 25px;
  margin-bottom: 35px;
}
.account.sales-order-view .page-title-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.account.sales-order-view .page-title-wrapper h1 {
  flex: 100%;
  width: 100%;
  margin-bottom: 1.5rem;
}
.account.sales-order-view .page-title-wrapper .order-status {
  margin-bottom: 0;
  font-weight: 400;
  color: #714a43;
  background-color: rgba(113, 74, 67, 0.15);
  padding: 2px 10px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.account.sales-order-view .page-title-wrapper .order-date {
  font-size: 1.4rem;
  margin: 0 1.5rem;
}
.account.sales-order-view .page-title-wrapper > .actions-toolbar {
  margin: 0;
}
.account.sales-order-view .page-title-wrapper > .actions-toolbar a {
  font-weight: 400;
  background: #e5e5e3;
  padding: 5px 15px;
  text-decoration: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.account.sales-order-view table#my-orders-table td.col.sku {
  font-size: 1.5rem;
  font-weight: 600;
  color: #513530;
}
.mark {
  background-color: transparent;
}
.eapps-instagram-feed-container .eapps-instagram-feed-posts-slider {
  z-index: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
header .minicart-wrapper .block-minicart {
  border: none;
  -webkit-box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 10px 15px 0px 10px;
  top: 30px;
  right: -14px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 5px;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > * {
  margin: 0;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .items-total {
  order: 2;
  flex: 0 0 50%;
  padding: 10px 0 20px 0;
  display: none;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .subtotal {
  order: 3;
  flex: 0 0 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .subtotal
  .amount
  .price {
  color: #714a43;
  font-size: 1.5rem;
  font-weight: 600;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper {
  order: 1;
  flex: 0 0 100%;
  padding: 10px 0;
  border-top: none;
  border-bottom: 1px solid #f5f5f5;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .product-item:not(:first-child) {
  padding-top: 10px;
  border-top: 1px solid #f5f5f5;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .item {
  padding: 5px 0;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .item
  .product
  .product-item-photo
  img {
  max-width: 60px;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .item
  .product
  .product-item-details
  .product-item-name
  a {
  color: #000000;
  font-weight: 400;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .item
  .product
  .product-item-pricing
  .details-qty {
  display: none;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > .minicart-items-wrapper
  .minicart-items
  .item
  .product
  .product-item-pricing
  .price-container
  .price {
  font-size: 1.4rem;
  font-weight: 600;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(4) {
  order: 5;
  flex: 0 0 100%;
  padding: 0 0 25px 0;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(4)
  .primary {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(4)
  button {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 100%;
  background-color: #714a43;
  border: none;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(4)
  button:hover {
  background-color: #513530;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(7) {
  order: 4;
  flex: 0 0 100%;
  padding: 25px 0 10px 0;
}
header
  .minicart-wrapper
  .block-minicart
  #minicart-content-wrapper
  > .block-content
  > :nth-child(7)
  a {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 100%;
  font-size: 1.4rem;
  border: 1px solid #714a43;
  color: #714a43;
  background-color: transparent;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
header .minicart-wrapper .block-minicart:after {
  border-color: transparent transparent #ffffff transparent;
}
.checkout-cart-index .page-main .columns,
.checkout-index-index .page-main,
.customer-account-login .page-main .columns,
.customer-account-create .page-main .columns,
.customer-account-forgotpassword .page-main .columns,
.contact-index-index .page-main .colums,
.cms-no-route .page-main .columns,
.checkout-onepage-success .page-main .columns,
.account .page-main .columns,
.customer-account-logoutsuccess .page-main .columns,
.customer-account-createpassword .page-main .columns {
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 1920px) {
  .checkout-cart-index .page-main .columns,
  .checkout-index-index .page-main,
  .customer-account-login .page-main .columns,
  .customer-account-create .page-main .columns,
  .customer-account-forgotpassword .page-main .columns,
  .contact-index-index .page-main .colums,
  .cms-no-route .page-main .columns,
  .checkout-onepage-success .page-main .columns,
  .account .page-main .columns,
  .customer-account-logoutsuccess .page-main .columns,
  .customer-account-createpassword .page-main .columns {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-cart-index .page-main .columns,
  .checkout-index-index .page-main,
  .customer-account-login .page-main .columns,
  .customer-account-create .page-main .columns,
  .customer-account-forgotpassword .page-main .columns,
  .contact-index-index .page-main .colums,
  .cms-no-route .page-main .columns,
  .checkout-onepage-success .page-main .columns,
  .account .page-main .columns,
  .customer-account-logoutsuccess .page-main .columns,
  .customer-account-createpassword .page-main .columns {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .checkout-cart-index .page-main .columns,
  .checkout-index-index .page-main,
  .customer-account-login .page-main .columns,
  .customer-account-create .page-main .columns,
  .customer-account-forgotpassword .page-main .columns,
  .contact-index-index .page-main .colums,
  .cms-no-route .page-main .columns,
  .checkout-onepage-success .page-main .columns,
  .account .page-main .columns,
  .customer-account-logoutsuccess .page-main .columns,
  .customer-account-createpassword .page-main .columns {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-cart-index .cart-container {
  height: 100%;
}
.checkout-cart-index .cart-container form.form-cart .cart.table-wrapper .col {
  padding-top: 50px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .col {
  height: 50px;
  background-color: rgba(229, 229, 227, 0.05);
  padding-top: 15px;
  padding-bottom: 15px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .col:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .col:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .col
  span {
  font-weight: 500;
  color: #111111;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .item {
  padding-left: 35px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  .subtotal {
  padding-right: 35px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item {
  border: none;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item:first-child
  tr
  td {
  border-top: none;
  margin-top: 25px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item:after {
  content: "";
  display: block;
  margin-bottom: 2.5rem;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .product-item-photo
  .product-image-wrapper {
  background-color: #ececec;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .product-item-photo
  .product-image-wrapper
  img {
  mix-blend-mode: multiply;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  td {
  border: none;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.item {
  background: #ececec;
  padding-top: 20px;
  padding-left: 30px;
  border-top-left-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .checkout-cart-index
    .cart-container
    form.form-cart
    .table-wrapper
    #shopping-cart-table
    tbody.cart.item
    .item-info
    .col.item {
    border-top-right-radius: 15px;
  }
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.price {
  background: #ececec;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.price
  .price {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.qty {
  background: #ececec;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.qty
  label {
  margin-bottom: 0;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.qty
  input.qty {
  height: 3.3rem;
  background-color: #f4f4f3;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.subtotal {
  background: #ececec;
  padding-right: 30px;
  border-top-right-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .checkout-cart-index
    .cart-container
    form.form-cart
    .table-wrapper
    #shopping-cart-table
    tbody.cart.item
    .item-info
    .col.subtotal {
    width: 34%;
    border-radius: 0;
  }
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .col.subtotal
  .price {
  color: #714a43;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.7;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .product-item-details {
  padding-top: 30px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .product-item-details
  .product-item-name {
  font-weight: 600;
  font-size: 1.8rem;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .product-item-details
  .amstockstatus-cart {
  background: transparent;
  padding: 0;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-info
  .product-item-details
  .item-options {
  margin-top: 1.5rem;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-actions
  td {
  background: #ececec;
  border: none;
  padding-left: 30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-actions
  .actions-toolbar {
  text-align: right;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-actions
  .actions-toolbar
  a.action {
  font-size: 1.2rem;
  font-weight: 500;
  background-color: transparent;
  border: none;
  color: #714a43;
  padding: 0;
  text-decoration: underline;
  margin: 0 1rem 1rem 1rem;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  tbody.cart.item
  .item-actions
  .actions-toolbar
  a.action:last-child {
  margin-right: 2.5rem;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .table-wrapper
  #shopping-cart-table
  thead
  tr
  th {
  border: none;
}
.checkout-cart-index .cart-container form.form-cart .main.actions {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 5px 5px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .main.actions
  .action.continue {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 4rem;
  background-color: transparent;
  border: 1px solid #714a43;
  font-size: 1.4rem;
  font-weight: 400;
  color: #714a43;
  padding: 5px 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .main.actions
  .action.update {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  height: 4rem;
  background-color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
  color: #714a43;
  padding: 5px 25px;
  margin-bottom: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-cart-index
  .cart-container
  form.form-cart
  .main.actions
  .action.update:hover {
  border: 0;
}
.checkout-cart-index .cart-container .cart-summary {
  width: 25%;
  background-color: rgba(229, 229, 227, 0.05);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-cart-index .cart-container .cart-summary input:not([type="radio"]),
.checkout-cart-index .cart-container .cart-summary select,
.checkout-cart-index .cart-container .cart-summary button {
  height: 4rem;
  width: 100%;
  padding: 5px 25px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.checkout-cart-index .cart-container .cart-summary input:not([type="radio"]),
.checkout-cart-index .cart-container .cart-summary select {
  border: 1px solid #b4b4ae;
  -webkit-transition: border-color 240ms ease-in-out;
  -moz-transition: border-color 240ms ease-in-out;
  -o-transition: border-color 240ms ease-in-out;
  -ms-transition: border-color 240ms ease-in-out;
  transition: border-color 240ms ease-in-out;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  input:not([type="radio"]):hover,
.checkout-cart-index .cart-container .cart-summary select:hover,
.checkout-cart-index
  .cart-container
  .cart-summary
  input:not([type="radio"]):focus,
.checkout-cart-index .cart-container .cart-summary select:focus {
  border-color: #714a43;
  outline: none;
  box-shadow: none;
}
.checkout-cart-index .cart-container .cart-summary .label > span {
  color: #111111;
  font-weight: 500;
}
.checkout-cart-index .cart-container .cart-summary .summary.title {
  font-weight: 600;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  color: #000000;
}
.checkout-cart-index .cart-container .cart-summary #block-shipping {
  border-bottom: 1px solid #b4b4ae;
  padding: 25px 0 25px 0px;
}
.checkout-cart-index .cart-container .cart-summary #block-shipping .title {
  border: none;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #block-shipping
  .title
  strong {
  font-size: 1.4rem;
  font-weight: 500;
}
.checkout-cart-index .cart-container .cart-summary #cart-totals {
  border: none;
  padding: 15px 0 15px 0px;
  overflow-x: hidden;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals {
  margin: 0;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr
  th,
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr
  td {
  background: none;
  border: none;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.sub
  td
  span {
  font-weight: 500;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.shipping
  th {
  padding-bottom: 25px;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.shipping
  td {
  padding-bottom: 25px;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.shipping
  td
  span {
  font-weight: 500;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.grand
  th {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.grand
  th
  strong {
  font-size: 1.8rem;
  font-weight: 600;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.grand
  td {
  border-top: 1px solid #b4b4ae;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #cart-totals
  .table-wrapper
  table.totals
  tr.totals.grand
  td
  strong {
  font-size: 1.8rem;
  font-weight: 600;
}
.checkout-cart-index .cart-container .cart-summary #block-discount {
  border-top: 1px solid #b4b4ae;
  border-bottom: 1px solid #b4b4ae;
  padding: 15px 0 15px 0px;
}
.checkout-cart-index .cart-container .cart-summary #block-discount .title {
  border: none;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #block-discount
  .title
  strong {
  font-size: 1.4rem;
  font-weight: 500;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #block-discount
  .actions-toolbar
  .primary {
  float: right;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #block-discount
  .actions-toolbar
  .primary
  button {
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  font-weight: 500;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  #block-discount
  .actions-toolbar
  .primary
  button:hover {
  background-color: #714a43;
  color: #ffffff;
}
.checkout-cart-index .cart-container .cart-summary ul.checkout-methods-items {
  padding: 15px 0 25px 0px;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  ul.checkout-methods-items
  button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background-color: #714a43;
  padding: 0;
  border: 0;
}
.checkout-cart-index
  .cart-container
  .cart-summary
  ul.checkout-methods-items
  button
  span {
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 1199px) {
  .checkout-cart-index .cart-container .cart-summary {
    width: 33%;
  }
  .checkout-cart-index .cart-container form.form-cart {
    width: 67%;
  }
}
@media only screen and (max-width: 768px) {
  .checkout-cart-index .cart-container .cart-summary {
    width: 100%;
    height: auto;
  }
  .checkout-cart-index .cart-container form.form-cart {
    width: 100%;
    height: auto;
  }
  .checkout-cart-index
    .cart-container
    .table-wrapper
    #shopping-cart-table
    tbody.cart.item
    .item-info
    .product-item-photo {
    position: relative;
  }
  .checkout-cart-index
    .cart-container
    .table-wrapper
    #shopping-cart-table
    tbody.cart.item
    .item-info
    .product-item-details {
    padding-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .checkout-cart-index .cart-container form.form-cart .main.actions {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .checkout-cart-index .cart-container form.form-cart .main.actions > * {
    width: 100%;
  }
}
.checkout-index-index {
  height: auto;
}
.checkout-index-index header.page-header {
  background-color: transparent;
  border-bottom: none;
}
.checkout-index-index header.page-header .logo img {
  width: 250px;
}
.checkout-index-index .authentication-wrapper button.action-auth-toggle {
  padding: 3px 25px;
  background-color: #714a43;
  color: #ffffff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-index-index .modal-custom.authentication-dropdown {
  -moz-box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.075);
  -o-box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.075);
  box-shadow: 1px 3px 12px rgba(0, 0, 0, 0.075);
  border: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-index-index .modal-custom.authentication-dropdown header {
  border: none;
}
.checkout-index-index
  .modal-custom.authentication-dropdown
  header
  .action-close {
  margin-top: 10px;
}
.checkout-index-index
  .modal-custom.authentication-dropdown
  .block-title
  strong {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  color: #e5e5e3;
}
.checkout-index-index .modal-custom.authentication-dropdown .modal-content {
  border: none;
}
.checkout-index-index .modal-custom.authentication-dropdown .field-email {
  margin-bottom: 10px;
}
.checkout-index-index .modal-custom.authentication-dropdown .action-login {
  padding: 3px 25px;
  background-color: #714a43;
  color: #ffffff;
  border: none;
  min-height: 4rem;
}
.checkout-index-index
  .modal-custom.authentication-dropdown
  .action-login:hover {
  border: none;
}
.checkout-index-index ul.opc-progress-bar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  background-color: transparent;
  padding: 10px 0;
  margin: 1rem 0px 1.5rem 0px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 4rem;
  width: auto;
  padding: 5px 35px 5px 45px;
  margin-right: 1rem;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item:before {
  display: none;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item span {
  color: #b9b9b9;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  padding-top: 0;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item span:before {
  display: none;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item span:after {
  height: 3rem;
  width: 3rem;
  background-color: #b9b9b9;
  color: #ffffff;
  margin-left: 6px;
  line-height: 1.4;
  left: -1px;
  top: 5px;
  font-size: 2rem;
  font-weight: 400;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item._active {
  border: none;
}
.checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item._complete {
  background-color: transparent;
  border: none;
}
.checkout-index-index
  ul.opc-progress-bar
  li.opc-progress-bar-item._active
  span {
  color: #714a43;
  font-weight: 600;
}
.checkout-index-index
  ul.opc-progress-bar
  li.opc-progress-bar-item._active
  span:after {
  background-color: #714a43;
  padding-top: 5px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .checkout-index-index ul.opc-progress-bar li.opc-progress-bar-item {
    padding: 5px 25px 5px 45px;
  }
}
.checkout-index-index .opc-wrapper #checkoutSteps {
  background: #ececec;
  border: 1px solid #d9d9d6;
  padding: 25px 35px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.checkout-index-index .opc-wrapper #checkoutSteps .step-title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  border: 0;
  margin-bottom: 25px;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping {
  margin-bottom: 50px;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  form
  .field
  .label {
  text-align: left;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  .shipping-address-items
  .shipping-address-item {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  .shipping-address-items
  .shipping-address-item.selected-item {
  border-color: rgba(113, 74, 67, 0.2);
  background-color: rgba(113, 74, 67, 0.2);
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  .shipping-address-items
  .shipping-address-item.selected-item:after {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background: #714a43;
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  top: 15px;
  right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  .new-address-popup
  button.action.action-show-popup {
  height: 4rem;
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  font-weight: 500;
  -webkit-transition: all all 240ms ease-in-out ease-in-out;
  -moz-transition: all all 240ms ease-in-out ease-in-out;
  -o-transition: all all 240ms ease-in-out ease-in-out;
  -ms-transition: all all 240ms ease-in-out ease-in-out;
  transition: all all 240ms ease-in-out ease-in-out;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#shipping
  #checkout-step-shipping
  .new-address-popup
  button.action.action-show-popup:hover {
  background-color: #714a43;
  color: #ffffff;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load {
  margin-bottom: 25px;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method {
  width: 100%;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row {
  margin: 0;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row
  .col-method:nth-child(1) {
  max-width: 75px;
  padding: 20px;
  background: transparent;
  border-top: none;
  border-bottom: 1px solid #b4b4ae;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row
  .col:nth-child(3) {
  background: transparent;
  border-top: none;
  border-bottom: 1px solid #b4b4ae;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row
  .col-price {
  background: transparent;
  border-top: none;
  border-bottom: 1px solid #b4b4ae;
  max-width: 125px;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row
  .col-price
  .price {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 600;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row
  .col-carrier {
  border-top: none;
  border-bottom: 1px solid #b4b4ae;
  background: transparent;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #checkout-shipping-method-load
  .table-checkout-shipping-method
  tbody
  tr.row:last-child
  > * {
  border-bottom: none !important;
}
.checkout-index-index
  .opc-wrapper
  #checkoutSteps
  li#opc-shipping_method
  #checkout-step-shipping_method
  #shipping-method-buttons-container
  button.continue {
  position: relative;
  background-color: #714a43;
  border: none;
  padding: 5px 35px 5px 35px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.35px;
  min-width: 200px;
}
.checkout-index-index aside.opc-sidebar {
  background: #ececec;
  padding: 3.5rem;
  margin: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.checkout-index-index aside.opc-sidebar .modal-header {
  position: relative;
  border: none;
  z-index: 2;
}
.checkout-index-index aside.opc-sidebar .modal-header button.action-close {
  margin: 0;
  margin-top: 1.5rem;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-header
  button.action-close:before {
  color: #111111;
}
.checkout-index-index aside.opc-sidebar .modal-content {
  background-color: transparent;
  border: none;
}
.checkout-index-index aside.opc-sidebar .modal-content .opc-block-summary {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .totals.sub
  th {
  background: transparent;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .shipping.excl
  th,
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .shipping
  th,
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .totals-tax
  th {
  background: transparent;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .grand.totals
  th {
  background: transparent;
  border-top: 1px solid #e5e5e3;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .grand.totals
  th
  strong {
  font-weight: 600;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  .table-totals
  .grand.totals
  td {
  border-top: 1px solid #e5e5e3;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .opc-block-summary
  span.title {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #111111;
  border: none;
}
.checkout-index-index aside.opc-sidebar .modal-content .items-in-cart {
  margin-top: 25px;
  margin-bottom: 10px;
}
.checkout-index-index aside.opc-sidebar .modal-content .items-in-cart > .title {
  display: none;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .items-in-cart
  > .title
  span {
  font-weight: 600;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .items-in-cart
  > .title
  span:first-child {
  color: #714a43;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .items-in-cart
  > .minicart-items {
  display: block !important;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .items-in-cart
  > .minicart-items
  .product-image-wrapper {
  background-color: #ececec;
}
.checkout-index-index
  aside.opc-sidebar
  .modal-content
  .items-in-cart
  > .minicart-items
  .product-image-wrapper
  img {
  mix-blend-mode: multiply;
}
.checkout-index-index aside.opc-sidebar .opc-block-shipping-information {
  padding-top: 25px;
  padding-left: 0;
  padding-right: 0;
}
.checkout-index-index
  aside.opc-sidebar
  .opc-block-shipping-information
  .shipping-information
  .ship-to {
  margin-bottom: 35px;
}
.checkout-index-index aside.opc-sidebar .shipping-information-title {
  border: none;
  padding-bottom: 0;
}
.checkout-index-index aside.opc-sidebar .shipping-information-title > span {
  font-size: 2rem;
  font-weight: 500;
  color: #111111;
}
.checkout-index-index
  aside.opc-sidebar
  .shipping-information-title
  button.action {
  background: transparent;
  height: 3rem;
  width: 3rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.checkout-index-index
  aside.opc-sidebar
  .shipping-information-title
  button.action:before {
  color: #714a43;
}
.checkout-index-index .field .control .choice.field p {
  width: max-content;
  background: #eee;
  padding: 8px 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.checkout-index-index .field .control .choice.field p input {
  margin: 0;
}
.checkout-index-index .field .control .choice.field p label {
  font-weight: 500;
  margin: 0;
  padding-left: 5px;
}
.checkout-index-index #checkout .opc-estimated-wrapper .estimated-label {
  font-weight: 400;
  line-height: 1;
}
.checkout-index-index #checkout .opc-estimated-wrapper .estiamted-price {
  color: #714a43;
}
.checkout-index-index #checkout .opc-estimated-wrapper .minicart-wrapper {
  margin-top: 5px;
}
.checkout-index-index
  #checkout
  .opc-estimated-wrapper
  .minicart-wrapper
  button.showcart {
  padding: 0;
}
.checkout-index-index
  #checkout
  .opc-estimated-wrapper
  .minicart-wrapper
  button.showcart:hover {
  border: none;
  background: transparent;
}
.checkout-index-index
  #checkout
  .opc-estimated-wrapper
  .minicart-wrapper
  button.showcart:before {
  font-size: 48px;
}
.checkout-index-index
  #checkout
  .opc-estimated-wrapper
  .minicart-wrapper
  button.showcart
  .counter.qty {
  width: 25px;
  height: 25px;
  background: #714a43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-left: -22px;
  margin-top: -10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.checkout-index-index #checkout #checkoutSteps {
  overflow: hidden;
}
.checkout-index-index #checkout #checkoutSteps .checkout-payment-method label {
  margin-bottom: 0;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method-title {
  border: 1px solid #d9d9d6;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px;
  margin: 15px 0;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method-title
  input {
  margin-top: 0;
  margin-right: 1rem;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method-title
  label {
  margin-bottom: 0;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method._active {
  position: relative;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method._active:before {
  content: "";
  position: absolute;
  left: -5.5rem;
  top: 2.5rem;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  background-image: url("../images/logo-icon-circle.svg");
  background-size: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method
  .payment-method-content {
  font-size: 1.4rem;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method._active
  .payment-method-title {
  background-color: #e8e8e6;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method
  .actions-toolbar
  button {
  height: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 5px 35px;
  background: #714a43;
  border: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .payment-method
  .checkout-agreements-block {
  margin: 1.5rem 0;
  background: #eee;
  padding: 20px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  .payment-methods
  .payment-group
  .payment-method:last-child
  .checkout-agreements-block {
  display: none;
}
.checkout-index-index .payment-method-content .fieldset > .field:not(.choice) {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout-index-index
  .payment-method-content
  .fieldset
  > .field:not(.choice)
  > .label {
  text-align: left;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  font-weight: 600;
}
.checkout-index-index .checkout-agreements button.action-show {
  background-color: transparent;
  border: none;
  text-decoration: underline;
}
.checkout-index-index .checkout-agreements button.action-show:hover {
  border: none;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code {
  margin-top: 75px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .payment-option-title {
  max-width: 100%;
  border: none;
  background-color: #d9d9d6;
  padding: 10px 20px;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .payment-option-title
  span {
  color: #111111;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .payment-option-title
  .action-toggle {
  color: #b4b4ae;
  font-weight: 500;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .payment-option-title
  .action-toggle:after {
  color: #714a43;
  margin-top: -4px;
  margin-left: 10px;
  width: 20px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .payment-option-content {
  padding: 0;
  margin-top: 15px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .action-apply {
  background-color: #714a43;
  color: #ffffff;
  height: 4rem;
  border: none;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  #checkout-step-payment
  #co-payment-form
  .discount-code
  .action-apply:hover {
  border: none;
  background-color: #61403a;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .checkout-step-payment
  .payments
  .payment-methods
  .payment-method._active {
  position: relative;
}
.checkout-index-index
  #checkout
  #checkoutSteps
  .checkout-payment-method
  .checkout-step-payment
  .payments
  .payment-methods
  .payment-method._active
  button.checkout {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 5px 35px;
}
.modal-popup.confirm._show {
  z-index: 999 !important;
}
.customer-account-login footer.page-footer {
  margin-top: 0;
}
.customer-account-login .login-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ececec;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media only screen and (max-width: 768px) {
  .customer-account-login .login-container {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 576px) {
  .customer-account-login .login-container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.customer-account-login .login-container .block.block-customer-login {
  flex: 1;
  position: relative;
  border-right: 1px solid #e5e5e3;
  padding: 25px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .customer-account-login .login-container .block.block-customer-login {
    padding: 1.5rem;
  }
}
.customer-account-login
  .login-container
  .block.block-customer-login
  .block-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1px;
  border: 0;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  .block-title
  strong {
  font-weight: 600;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  fieldset {
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .customer-account-login
    .login-container
    .block.block-customer-login
    form.form-login
    fieldset {
    width: 90%;
  }
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  fieldset:after {
  content: "";
  margin: 0;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .field
  label.label {
  padding: 0;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .field
  .control {
  width: 100%;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .actions-toolbar {
  margin: 0;
  margin-top: 3vw;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .actions-toolbar
  .primary {
  width: 100%;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .actions-toolbar
  .primary
  button.action.login.primary {
  width: 100%;
  padding: 1rem;
  border: none;
  font-weight: 500;
  background-color: #714a43;
  color: #ffffff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.customer-account-login
  .login-container
  .block.block-customer-login
  form.form-login
  .actions-toolbar
  .secondary
  a.remind {
  font-weight: 300;
  padding-left: 1.5rem;
}
.customer-account-login .login-container .block.block-new-customer {
  flex: 1;
  position: relative;
  padding: 25px 25px 25px 25px;
}
@media only screen and (max-width: 768px) {
  .customer-account-login .login-container .block.block-new-customer {
    padding: 1.5rem;
    margin-top: 25px;
  }
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1px;
  border: 0;
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-title
  strong {
  font-weight: 600;
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-content {
  text-align: center;
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .customer-account-login
    .login-container
    .block.block-new-customer
    .block-content {
    width: 90%;
  }
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-content
  .actions-toolbar {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-content
  .actions-toolbar
  .primary {
  width: 100%;
}
.customer-account-login
  .login-container
  .block.block-new-customer
  .block-content
  .actions-toolbar
  .primary.action {
  background: transparent;
  border: 0;
  padding: 1rem 3rem;
  color: #714a43;
  border: 1px solid #714a43;
  margin: 0;
  font-weight: 500;
  width: 100%;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.customer-account-create .columns .column,
.customer-account-forgotpassword .columns .column {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.customer-account-create .columns .column form.create.account,
.customer-account-forgotpassword .columns .column form.create.account,
.customer-account-create .columns .column form.form.forget,
.customer-account-forgotpassword .columns .column form.form.forget {
  width: 100%;
  max-width: 600px;
  margin-top: 5vw;
  margin-bottom: 5vw;
  min-width: unset;
}
@media only screen and (max-width: 36va0px) {
  .customer-account-create .columns .column form.create.account,
  .customer-account-forgotpassword .columns .column form.create.account,
  .customer-account-create .columns .column form.form.forget,
  .customer-account-forgotpassword .columns .column form.form.forget {
    width: 95%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .customer-account-create .columns .column form.create.account,
  .customer-account-forgotpassword .columns .column form.create.account,
  .customer-account-create .columns .column form.form.forget,
  .customer-account-forgotpassword .columns .column form.form.forget {
    width: 90%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .customer-account-create .columns .column form.create.account,
  .customer-account-forgotpassword .columns .column form.create.account,
  .customer-account-create .columns .column form.form.forget,
  .customer-account-forgotpassword .columns .column form.form.forget {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .customer-account-create .columns .column form.create.account,
  .customer-account-forgotpassword .columns .column form.create.account,
  .customer-account-create .columns .column form.form.forget,
  .customer-account-forgotpassword .columns .column form.form.forget {
    width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .customer-account-create .columns .column form.create.account,
  .customer-account-forgotpassword .columns .column form.create.account,
  .customer-account-create .columns .column form.form.forget,
  .customer-account-forgotpassword .columns .column form.form.forget {
    width: 50%;
  }
}
.customer-account-create
  .columns
  .column
  form.create.account
  fieldset.fieldset
  .legend,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  fieldset.fieldset
  .legend,
.customer-account-create
  .columns
  .column
  form.form.forget
  fieldset.fieldset
  .legend,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  fieldset.fieldset
  .legend {
  text-align: center;
  font-weight: 600;
  margin: 0;
  margin-bottom: 3rem;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .fieldset.create.account,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .fieldset.create.account,
.customer-account-create
  .columns
  .column
  form.form.forget
  .fieldset.create.account,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .fieldset.create.account {
  margin-bottom: 0;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field.choice:before,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field.choice:before,
.customer-account-create .columns .column form.form.forget .field.choice:before,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field.choice:before {
  margin: 0;
  width: 0;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice),
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice),
.customer-account-create .columns .column form.form.forget .field:not(.choice),
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice).confirmation,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice).confirmation,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice).confirmation,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice).confirmation {
  margin-top: 4rem;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  label,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  label,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  label,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  label {
  padding: 0;
  margin-bottom: 1rem;
  font-weight: 300;
  text-align: left;
  width: 100%;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control {
  width: 100%;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control
  input,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control
  input,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control
  input,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control
  input {
  height: 4rem;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control
  input:focus,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  .control
  input:focus,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control
  input:focus,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  .control
  input:focus {
  outline: none;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  #password-strength-meter-container,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  #password-strength-meter-container,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  #password-strength-meter-container,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  #password-strength-meter-container {
  margin-top: 1rem;
  background: transparent;
  overflow: hidden;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.customer-account-create
  .columns
  .column
  form.create.account
  .field:not(.choice)
  #password-strength-meter-container
  #password-strength-meter,
.customer-account-forgotpassword
  .columns
  .column
  form.create.account
  .field:not(.choice)
  #password-strength-meter-container
  #password-strength-meter,
.customer-account-create
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  #password-strength-meter-container
  #password-strength-meter,
.customer-account-forgotpassword
  .columns
  .column
  form.form.forget
  .field:not(.choice)
  #password-strength-meter-container
  #password-strength-meter {
  background: #fff;
}
.customer-account-forgotpassword form.password .captcha button.captcha-reload {
  border: 1px solid #714a43;
  color: #714a43;
  font-weight: 500;
  margin-top: 10px;
  padding: 5px 25px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.customer-account-forgotpassword
  form.password
  .captcha
  button.captcha-reload:hover {
  background: #714a43;
  color: #ffffff;
  border-color: #714a43;
}
.customer-account-forgotpassword form.password .actions-toolbar {
  margin: 0;
}
.customer-account-forgotpassword form.password .actions-toolbar button {
  background: #714a43;
  border: none;
}
.customer-account-createpassword form#form-validate {
  margin: 0 auto;
  padding-top: 75px;
  max-width: 500px;
}
.customer-account-createpassword form#form-validate .field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.customer-account-createpassword form#form-validate .field .label {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 500;
}
.customer-account-createpassword form#form-validate .field .control {
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .customer-account-createpassword form#form-validate .field.password {
    margin-bottom: 50px;
  }
}
.customer-account-createpassword form#form-validate .actions-toolbar {
  margin: 0;
}
.customer-account-createpassword form#form-validate .actions-toolbar button {
  background: #714a43;
  border: none;
  padding-left: 35px;
  padding-right: 35px;
}
.customer-account-createpassword
  form#form-validate
  .actions-toolbar
  button:hover {
  background: #714a43;
}
.customer-account-create .columns .column .actions-toolbar {
  margin: 0;
}
.customer-account-create .columns .column .primary .submit.primary {
  height: 4rem;
  background-color: #714a43;
  border: none;
}
/*.account-page .column.main {

  .sidebar {

  }

  .block.block-dashboard-info .block-title,
  .block.block-dashboard-addresses .block-title,
  .block.block-dashboard-orders .block-title {
    margin-bottom: 25px;
  }

  .nvstr_main__wrapper-content .block.block-dashboard-info .block-title > strong,
  .nvstr_main__wrapper-content .block.block-dashboard-addresses .block-title > strong,
  .nvstr_main__wrapper-content .block.block-dashboard-orders .block-title > strong,
  .nvstr_main__wrapper-content .block.block-addresses-default .block-title > strong,
  .nvstr_main__wrapper-content .block.block-addresses-list .block-title > strong {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    color: @secondary-color;
    border: 0;
    margin-bottom: 25px;

    &:before {
      content: "";
      position: absolute;
      left: -45px;
      top: 45%;
      width: 30px;
      height: 6px;
      transform: translateY(-50%);
      background-color: @primary-color;
      .br(25px);
    }
  }

  .block-dashboard-info {
    background-color: @white-background;
    padding: 35px;
    margin-bottom: 25px;
    .box-shadow(12px, 0.05);
    .br(10px);
  }

  .block-dashboard-addresses {
    background-color: @white-background;
    padding: 35px;
    margin-bottom: 25px;
    .box-shadow(12px, 0.05);
    .br(10px);
  }

  .block-dashboard-orders {
    background-color: @white-background;
    padding: 35px;
    .box-shadow(12px, 0.05);
    .br(10px);
  }

  // ---
  .block-addresses-default,
  .block-addresses-list {
    background-color: @white-background;
    padding: 35px;
    .box-shadow(12px, 0.05);
    .br(10px);
  }

  .block.block-dashboard-orders:last-child {
    margin-bottom: 35px;
  }

  .block-dashboard-orders .table-order-items tbody tr td.id,
  .orders-history .table-order-items tbody tr td.id {
    padding: 20px 10px;
  }

  .block-dashboard-orders .table-order-items tbody tr td.date,
  .orders-history .table-order-items tbody tr td.date {
    padding: 20px 10px;
  }

  .block-dashboard-orders .table-order-items tbody tr td.shipping,
  .orders-history .table-order-items tbody tr td.shipping {
    padding: 20px 10px;
    display: inline-block;
    min-width: 175px;
  }

  .block-dashboard-orders .table-order-items tbody tr td.total,
  .orders-history .table-order-items tbody tr td.total {
    padding: 20px 10px;

    .price {
      display: inline-block;
      min-width: 100px;
    }
  }

  .block-dashboard-orders .table-order-items tbody tr td.status,
  .orders-history .table-order-items tbody tr td.status {
    padding: 20px 10px;
  }

  .block-dashboard-orders .table-order-items tbody tr td.actions,
  .orders-history .table-order-items tbody tr td.actions {
    display: inline-block;
    padding: 20px 10px;
    min-width: 250px;

    a {
      font-size: 1.2rem;
      font-weight: 500;
      padding: 5px 15px;
      border: fade(@secondary-color, 20);
      background-color: fade(@secondary-color, 10);
      .br(25px);
    }
  }

  // MY ORDERS
  .orders-history {
    background-color: @white-background;
    padding: 35px;
    margin-bottom: 25px;
    .box-shadow(12px, 0.05);
    .br(10px);
  }

} */
.contact-index-index form#contact-form {
  margin-right: auto;
  padding-top: 50px;
  padding-left: 5rem;
  width: 100%;
  max-width: 700px;
  min-width: unset;
}
@media only screen and (max-width: 991px) {
  .contact-index-index form#contact-form {
    padding-left: 2.5rem;
  }
}
.contact-index-index form#contact-form input:focus,
.contact-index-index form#contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(113, 74, 67, 0.1);
}
.contact-index-index form#contact-form .legend {
  text-align: center;
  font-weight: 600;
  margin: 0;
}
.contact-index-index form#contact-form .field.note {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 35px;
}
.contact-index-index form#contact-form .field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-index-index form#contact-form .field .label {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  padding-right: 0;
  padding-bottom: 7px;
}
.contact-index-index form#contact-form .field .control {
  width: 100%;
}
.contact-index-index form#contact-form .field.comment textarea {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.contact-index-index form#contact-form .actions-toolbar {
  margin: 0;
}
.contact-index-index form#contact-form .actions-toolbar .primary {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contact-index-index form#contact-form .actions-toolbar .primary button {
  background: #714a43;
  height: 4rem;
  padding: 5px 35px;
  border: none;
  max-width: 300px;
}
.contact-index-index .map {
  box-shadow: 35px 35px #e8e8e6;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.contact-index-index .map iframe {
  width: 100%;
  box-shadow: 5px 5px 30px rgba(81, 53, 48, 0.15);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.contact-index-index .stores-info-ul {
  border-bottom: none;
  padding-top: 2.5rem;
  margin-bottom: 2rem;
}
.contact-index-index .stores-info-ul li.nav-item a.nav-link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #714a43;
  background: transparent;
  padding: 0.5rem 2.5rem;
  margin: 0 0.75rem;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  opacity: 0.5;
}
.contact-index-index .stores-info-ul li.nav-item a.nav-link span.icon {
  margin-right: 1rem;
}
.contact-index-index .stores-info-ul li.nav-item a.nav-link span.txt {
  color: #714a43;
  font-weight: 500;
}
.contact-index-index .stores-info-ul li.nav-item a.nav-link:hover {
  opacity: 1;
}
.contact-index-index .stores-info-ul li.nav-item:first-child a.nav-link {
  margin-left: 0;
}
.contact-index-index .stores-info-ul li.nav-item a.nav-link.active {
  opacity: 1;
}
.contact-index-index .stores-info-tabs {
  padding-bottom: 2.5rem;
}
.contact-index-index .stores-info-tabs .store-info {
  background-color: #e8e8e6;
  padding: 2.5rem 3.5rem;
  margin-bottom: 1.5rem;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.contact-index-index .contact-container {
  padding-bottom: 50px;
}
.contact-index-index .contact-container .left {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.contact-index-index .contact-container .left img {
  max-width: 90%;
  max-height: 500px;
  margin: 0 auto;
}
.contact-index-index .page-title-wrapper {
  -webkit-justify-content: center;
  justify-content: center;
}
.contact-index-index .contact-info-1 {
  padding: 75px 0;
}
.contact-index-index .contact-info-1 h4 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
.contact-index-index .contact-info-2 {
  padding-bottom: 75px;
}
.contact-index-index .contact-info-box {
  height: 100%;
  font-size: 2rem;
  line-height: 1.6;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.catalogsearch-result-index.page-layout-2columns-left h1.page-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.catalogsearch-result-index.page-layout-2columns-left h1.page-title:after {
  display: none;
}
.catalogsearch-result-index.page-layout-2columns-left .column.main {
  width: 100%;
  padding: 0;
}
.catalogsearch-result-index.page-layout-2columns-left
  .column.main
  #amasty-shopby-product-list
  > dl.block {
  display: none;
}
.checkout-onepage-success .page-title-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout-onepage-success .success-order-img {
  margin-bottom: 35px;
}
.checkout-onepage-success .success-order-img img {
  width: 100%;
  max-width: 400px;
}
.checkout-onepage-success .checkout-success p:nth-child(2) {
  font-weight: 600;
  padding: 25px;
}
.checkout-onepage-success .page-main .columns .main .checkout-success {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
}
.checkout-onepage-success
  .page-main
  .columns
  .main
  .checkout-success
  .actions-toolbar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.checkout-onepage-success
  .page-main
  .columns
  .main
  .checkout-success
  .actions-toolbar
  a.continue {
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
  padding: 7px 35px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-onepage-success
  .page-main
  .columns
  .main
  .checkout-success
  .actions-toolbar
  a.continue:hover {
  background-color: #714a43;
  color: #ffffff;
}
.checkout-onepage-success .page-main .columns .main .checkout-success p > span {
  color: #714a43;
  font-weight: bold;
}
.checkout-onepage-success .page-main .columns .main #registration {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 6rem;
  padding: 3rem 2rem;
  background: #e5e5e3;
  color: #ffffff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-onepage-success .page-main .columns .main #registration:before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: #ffffff;
  width: 60%;
  height: 50px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  z-index: -1;
}
.checkout-onepage-success
  .page-main
  .columns
  .main
  #registration
  .action.primary {
  margin-top: 3rem;
  background: #714a43;
  color: #ffffff;
  border: none;
  padding: 7px 35px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.checkout-onepage-success .action.print {
  z-index: 99;
  color: #ffffff;
  background: #714a43;
  padding: 3px 15px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.customer-account-logoutsuccess .page-main .columns {
  text-align: center;
  padding-top: 75px;
  font-size: 2rem;
}
.cart-empty {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 75px;
  font-size: 1.6rem;
  line-height: 1.4;
}
.cart-empty a {
  font-weight: 600;
  color: #714a43;
}
.account .page-title-wrapper {
  padding-top: 1rem;
}
.account .page-title-wrapper h1.page-title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.account .page-main a.action {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
  color: #714a43;
}
.account .sidebar-main {
  background: #ececec;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 0;
}
.account .sidebar-main > .block > .title {
  display: none;
}
.account .sidebar-main .block-collapsible-nav {
  margin-bottom: 0rem;
}
.account .sidebar-main #block-collapsible-nav {
  background-color: transparent;
  padding: 2.5rem;
  margin-bottom: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.account .sidebar-main .nav {
  flex-direction: column;
}
.account .sidebar-main ul li {
  display: block;
  margin: 5px 0;
}
.account .sidebar-main ul li.item .delimiter {
  margin: 1rem 0;
}
.account .sidebar-main ul li a {
  color: #111111;
  padding-left: 0;
  padding-right: 0;
}
.account .sidebar-main li.item.current a {
  border: none;
}
.account .sidebar-main ul li.current strong {
  position: relative;
  font-weight: 600;
  color: #714a43;
  padding-left: 2.5rem;
  border: none;
}
.account .sidebar-main ul li.current strong:before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #714a43;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}
.account .sidebar-additional {
  background: #ececec;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-top: 0;
}
.account .sidebar-additional .block-reorder {
  display: none;
}
.account .sidebar-additional .block-compare,
.account .sidebar-additional .block-wishlist {
  background-color: transparent;
  padding: 1rem 2.5rem;
  margin-bottom: 25px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.account .sidebar-additional .block-title strong {
  font-weight: 600;
}
.account .column.main {
  padding-left: 7.5rem;
}
.account .column.main .block.block-dashboard-info,
.account .column.main .block.block-dashboard-addresses,
.account .column.main .block.block-dashboard-orders {
  overflow: hidden;
}
.account .column.main .block.block-dashboard-info .block-title,
.account .column.main .block.block-dashboard-addresses .block-title,
.account .column.main .block.block-dashboard-orders .block-title {
  margin-bottom: 3.5rem;
}
.account .column.main .block.block-dashboard-info .block-title > strong,
.account .column.main .block.block-dashboard-addresses .block-title > strong,
.account .column.main .block.block-dashboard-orders .block-title > strong,
.account .column.main .block.block-addresses-default .block-title > strong,
.account .column.main .block.block-addresses-list .block-title > strong {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
  border: 0;
  margin-bottom: 3.5rem;
}
.account .column.main .block.block-dashboard-info .block-title > strong:before,
.account
  .column.main
  .block.block-dashboard-addresses
  .block-title
  > strong:before,
.account
  .column.main
  .block.block-dashboard-orders
  .block-title
  > strong:before,
.account
  .column.main
  .block.block-addresses-default
  .block-title
  > strong:before,
.account .column.main .block.block-addresses-list .block-title > strong:before {
  content: "";
  position: absolute;
  left: -5.5rem;
  top: 46%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  background-image: url("../images/logo-icon-circle.svg");
  background-size: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.account .block-dashboard-info {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.account .block-dashboard-addresses {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.account .block-dashboard-orders {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.account .block-addresses-default,
.account .block-addresses-list {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.account .block.block-dashboard-orders:last-child {
  margin-bottom: 35px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.id,
.account .orders-history .table-order-items tbody tr td.id {
  padding: 20px 10px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.date,
.account .orders-history .table-order-items tbody tr td.date {
  padding: 20px 10px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.shipping,
.account .orders-history .table-order-items tbody tr td.shipping {
  padding: 20px 10px;
  display: inline-block;
  min-width: 175px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.total,
.account .orders-history .table-order-items tbody tr td.total {
  padding: 20px 10px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.total .price,
.account .orders-history .table-order-items tbody tr td.total .price {
  display: inline-block;
  min-width: 100px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.status,
.account .orders-history .table-order-items tbody tr td.status {
  padding: 20px 10px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.actions,
.account .orders-history .table-order-items tbody tr td.actions {
  display: inline-block;
  padding: 20px 10px;
  min-width: 250px;
}
.account .block-dashboard-orders .table-order-items tbody tr td.actions a,
.account .orders-history .table-order-items tbody tr td.actions a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px 15px;
  border: rgba(229, 229, 227, 0.2);
  background-color: rgba(229, 229, 227, 0.1);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.account .orders-history {
  background-color: #ececec;
  padding: 35px;
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.account.wishlist-index-index .products-grid li .product-item-info {
  width: 100%;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  padding: 15px;
  background: #ececec;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-info
  .product-image-wrapper {
  background: #ececec;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-info
  .product-image-wrapper
  img {
  mix-blend-mode: multiply;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-info
  .field.comment-box
  textarea {
  background-color: transparent;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  input.input-text {
  padding: 0 1rem;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .actions-primary {
  width: 100%;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .product-item-actions
  button,
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .product-item-actions
  a {
  width: 100%;
  background: #714a43;
  border: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .product-item-actions
  button:hover,
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .product-item-actions
  a:hover {
  color: #ffffff;
  background: #61403a;
  border: none;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .box-tocart
  .product-item-actions
  a {
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.8;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .product-item-actions {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.account.wishlist-index-index
  .products-grid
  li
  .product-item-inner
  .product-item-actions
  a {
  font-size: 1.2rem;
}
.account.wishlist-index-index .actions-toolbar {
  margin-top: 2.5rem;
}
.account.wishlist-index-index .actions-toolbar .primary button {
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.account.wishlist-index-index .actions-toolbar .primary button:hover {
  background-color: #714a43;
  color: #ffffff;
}
.account.wishlist-index-index .actions-toolbar .primary button.tocart {
  padding: 7px 15px;
}
.account.wishlist-index-index .actions-toolbar .primary button span {
  font-size: 1.4rem;
}
.account.customer-address-form button.save.primary {
  background: #714a43;
  color: #ffffff;
  padding: 7px 25px;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
}
.account.customer-address-form button.save.primary:hover {
  background: #61403a;
}
.account .column.main form.form-address-edit,
.account .column.main form.form-edit-account {
  max-width: 800px;
}
.account .column.main form.form-address-edit .field.choice,
.account .column.main form.form-edit-account .field.choice {
  margin-bottom: 2rem;
}
.account .column.main form.form-address-edit .field.choice:before,
.account .column.main form.form-edit-account .field.choice:before {
  display: none;
}
.account .column.main form.form-address-edit .field:not(.choice),
.account .column.main form.form-edit-account .field:not(.choice) {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1rem;
}
.account .column.main form.form-address-edit .field .label,
.account .column.main form.form-edit-account .field .label {
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.75rem;
}
.account .column.main form.form-address-edit legend.legend,
.account .column.main form.form-edit-account legend.legend {
  margin-left: 0;
}
.account .column.main form.form-address-edit legend.legend span,
.account .column.main form.form-edit-account legend.legend span {
  color: #714a43;
}
.account .column.main form.form-address-edit .actions-toolbar,
.account .column.main form.form-edit-account .actions-toolbar {
  margin-left: 0;
}
.account.customer-account-edit button.save.primary,
.account.newsletter-manage-index button.save.primary {
  background: #714a43;
  color: #ffffff;
  padding: 7px 25px;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
}
.account.customer-account-edit button.save.primary:hover,
.account.newsletter-manage-index button.save.primary:hover {
  background: #61403a;
}
.account.customer-account-edit
  .column.main
  form.form-edit-account
  .field-name-lastname {
  margin-bottom: 3.5rem;
}
.account.customer-address-index .block {
  overflow: hidden;
}
.account.customer-address-index .actions-toolbar button.primary {
  background-color: transparent;
  color: #714a43;
  border: 1px solid #714a43;
  -webkit-transition: all 340ms ease-in-out;
  -moz-transition: all 340ms ease-in-out;
  -o-transition: all 340ms ease-in-out;
  -ms-transition: all 340ms ease-in-out;
  transition: all 340ms ease-in-out;
}
.account.customer-address-index .actions-toolbar button.primary:hover {
  background-color: #714a43;
  color: #ffffff;
}
.modal-custom .modal-inner-wrap {
  background-color: transparent;
  overflow-x: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
.message.global.cookie {
  right: unset;
  max-width: 400px;
  padding: 3rem;
  background: #714a43;
  left: 2rem;
  bottom: 2rem;
  color: #ffffff;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.global.cookie .content {
  position: relative;
}
.global.cookie .content:before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -40px;
  height: 100px;
  width: 100px;
  display: block;
  background-image: url("../images/cookie.svg");
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.05;
  transform: rotate(-100deg);
}
.global.cookie .content:after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  height: 150px;
  width: 150px;
  display: block;
  background-image: url("../images/cookie.svg");
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.1;
  transform: rotate(-20deg);
}
.global.cookie .content strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  max-width: 250px;
}
.global.cookie .content p {
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
}
.global.cookie .content a {
  color: #ffffff;
  font-weight: 600;
}
.global.cookie .content a:hover {
  color: #e5e5e3;
}
.global.cookie .content .actions button {
  background: #e5e5e3;
  color: #714a43;
  border: none;
  height: 4rem;
  padding-left: 35px;
  padding-right: 35px;
}
.mnss-messages {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: auto;
  z-index: 9;
}
.mnss-messages .message {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  max-width: 450px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 20px 40px 20px 80px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-animation: hidemsg 5s 20s forwards;
  animation: hidemsg 5s 20s forwards;
}
.mnss-messages .message.success {
  background: #ffffff;
  color: #000000;
}
.mnss-messages .message.success a {
  font-weight: 800;
  color: #513530;
}
.mnss-messages .message.success > div:before {
  font-size: 40px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease-in-out;
  left: 13px;
  width: 5rem;
  height: 5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  color: #008f04;
}
.mnss-messages.opened .message.success > div:before {
  transform: translateY(-50%);
}
.modal-popup .modal-inner-wrap {
  background-color: #f4f4f3;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.modal-popup .modal-header h1 {
  border: none;
}
.modal-popup .modal-content {
  border: none;
  background: transparent;
  padding-top: 25px;
}
.modal-popup .action.primary {
  min-height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.5rem 2.75rem 0.5rem 2.75rem;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 270ms ease-in-out;
  -moz-transition: all 270ms ease-in-out;
  -o-transition: all 270ms ease-in-out;
  -ms-transition: all 270ms ease-in-out;
  transition: all 270ms ease-in-out;
  background: #714a43;
  color: #ffffff;
  border: none;
}
.modal-popup .action.primary.button-primary {
  background: #714a43;
  color: #ffffff;
  border: none;
}
.modal-popup .action.primary.button-primary:hover {
  background: #61403a;
}
.modal-popup .action.primary.button-primary:focus {
  background: #513530;
}
.modal-popup .action.primary.button-light {
  background: #f4f4f3;
  color: #714a43;
}
.modal-popup .action.primary.button-secondary {
  background: #e5e5e3;
  color: #ffffff;
}
.modal-popup .action.primary.button-secondary:hover {
  background: #d9d9d6;
}
.modal-popup .action.primary.button-outline-primary {
  color: #714a43;
  border: 1px solid #714a43;
}
.modal-popup .action.primary.button-outline-primary:hover {
  background: #714a43;
  color: #ffffff;
  border: 1px solid #714a43;
}
.modal-popup .action.primary.button-large {
  padding: 1rem 3.5rem;
}
.modal-popup .action.primary:not(.button-outline):hover {
  text-decoration: none;
}
.modal-popup .action.primary:hover {
  background: #61403a;
}
.modal-popup .action.primary:focus {
  background: #513530;
}
.modal-popup .action-primary {
  background: #714a43;
  border: 1px solid #714a43;
  min-width: 70px;
}
.modal-popup .action-primary:focus,
.modal-popup .action-primary:hover {
  background: #61403a;
}
.modal-popup .action-secondary {
  border: 1px solid #714a43;
  color: #714a43;
}
.modal-popup .action-secondary:focus {
  background: transparent;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  border: none;
}
.nv_modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.35s, opacity 0.35s 0s, transform 0.35s;
}
.nv_modal.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.35s 0s, transform 0.35s;
  z-index: 10;
}
.nv_modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 10px 15px;
  min-width: 320px;
  max-width: 600px;
  width: 90%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.nv_modal .modal-content .modal-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.nv_modal .modal-content .modal-title .icon {
  font-size: 2rem;
}
.nv_modal .modal-content .modal-title .title {
  font-size: 2rem;
  font-weight: 500;
  padding-left: 5px;
}
.nv_modal.modal-helper-icons .modal-content {
  max-width: 320px;
}
.nv_modal.modal-helper-icons .helper-icons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.nv_modal.modal-helper-icons .helper-icons .helper-icon {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding: 10px 5px;
}
.nv_modal.modal-helper-icons .helper-icons .helper-icon .icon {
  font-size: 1.8rem;
  flex: 0 0 70px;
  text-align: center;
}
.nv_modal .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  transform: rotate(45deg);
}
.nv_modal .close-button .icon {
  color: #e5e5e3;
  font-size: 2rem;
}
.cms-page-view {
  counter-reset: myCounter;
}
.cms-page-view .pl-simple-page .pl-simple-page--content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  padding-top: 2.5rem;
}
.cms-page-view .pl-simple-page .pl-simple-page--content .column-1 {
  flex: 0 0 calc(350px - 2.5rem);
  padding-right: 2.5rem;
}
.cms-page-view .pl-simple-page .pl-simple-page--content .column-2 {
  flex: 0 0 calc(70% - 3.5rem);
  padding-left: 3.5rem;
}
@media only screen and (max-width: 991px) {
  .cms-page-view .pl-simple-page .pl-simple-page--content .column-1 {
    flex: 0 0 calc(325px - 2.5rem);
    padding-right: 2.5rem;
  }
  .cms-page-view .pl-simple-page .pl-simple-page--content .column-2 {
    flex: 0 0 calc(65% - 1.5rem);
    padding-left: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .cms-page-view .pl-simple-page .pl-simple-page--content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cms-page-view .pl-simple-page .pl-simple-page--content .column-1 {
    flex: 0 0 100%;
    width: 100%;
    order: 2;
    padding-right: 0;
  }
  .cms-page-view .pl-simple-page .pl-simple-page--content .column-2 {
    flex: 0 0 100%;
    width: 100%;
    order: 1;
    padding-left: 0;
  }
  .cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu {
    max-width: 350px;
    margin-top: 3.5rem;
  }
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu {
  background-color: #ececec;
  padding: 3.5rem;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li {
  padding: 0.25rem 0;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li.sep {
  color: #714a43;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li a {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 300;
  z-index: 1;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li a:hover {
  color: #714a43;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li a.active {
  font-weight: 500;
}
.cms-page-view .pl-simple-page .pl-sidebar .sticky-box-menu li a.active:before {
  content: "";
  position: absolute;
  left: -5.5rem;
  top: 46%;
  width: 3.5rem;
  height: 3.5rem;
  transform: translateY(-50%);
  background-image: url("../images/logo-icon-circle.svg");
  background-size: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cms-page-view.cms-service .pl-simple-page .pl-simple-page--content .column-2 {
  flex: 0 0 100%;
  width: 100%;
  padding-left: 0;
}
.cms-page-view.cms-service .pl-simple-page h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.cms-page-view.cms-service .pl-simple-page .services-list > li {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .cms-page-view.cms-service .pl-simple-page .services-list > li {
    padding-left: 0;
  }
}
.cms-page-view.cms-service .pl-simple-page .services-list > li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  counter-increment: myCounter;
  content: counter(myCounter);
  font-weight: 900;
  font-size: 6.6rem;
  letter-spacing: -3px;
  line-height: 1;
  min-width: 7rem;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.3);
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .cms-page-view.cms-service .pl-simple-page .services-list > li::before {
    top: -2rem;
  }
}
.cms-page-view.cms-service .pl-simple-page .services-list > li::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: -0.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(161, 106, 96, 0.07);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .cms-page-view.cms-service .pl-simple-page .services-list > li::after {
    top: -2.5rem;
  }
}
.cms-page-view.cms-service .pl-simple-page .service-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cms-page-view.cms-service .pl-simple-page .service-steps {
  background-color: #ffffff;
  background-image: url("../images/broken.png");
  background-size: 250px;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 5rem 25rem 5rem 5rem;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  max-width: 1100px;
  box-shadow: 5px 5px 30px rgba(81, 53, 48, 0.05);
  margin: 75px auto;
}
@media only screen and (max-width: 768px) {
  .cms-page-view.cms-service .pl-simple-page .service-steps {
    background-size: 200px;
    background-position: bottom center;
    padding: 3rem;
    padding-bottom: 100px;
  }
  .cms-page-view.cms-service .pl-simple-page .service-steps ol {
    padding-left: 2rem;
  }
}
.cms-page-view.cms-service .pl-simple-page .service-steps .service-title {
  color: #714a43;
  margin-bottom: 4rem;
}
.cms-page-view.cms-service .pl-simple-page .service-steps li {
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.cms-page-view .sp_box {
  margin-bottom: 25px;
}
.cms-page-view h2 {
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .cms-page-view h2 {
    font-size: 2rem;
  }
}
.cms-page-view .text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.cms-page-view ul {
  padding-left: 2.5rem;
  margin: 1rem 0;
}
.cms-page-view ul li {
  font-size: 1.6rem;
  font-weight: 300;
}
.optometry-img {
  max-width: 800px;
  width: 100%;
  margin: 50px auto 75px auto;
}
.optometry-img img {
  width: 100%;
  box-shadow: 5px 5px 30px rgba(81, 53, 48, 0.05);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.cookies-table thead {
  border-bottom: 1px solid #b4b4ae;
}
.cookies-table thead th:first-child {
  border-right: 1px solid #b4b4ae;
}
.cookies-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}
.cookies-table tbody tr th {
  border-right: 1px solid #f5f5f5;
}
.cookies-table tbody tr th span {
  font-weight: 500;
}
.catalog-product-view .swiper-wrapper,
.cms-home .swiper-wrapper {
  padding: 30px 0;
}
.catalog-product-view .swiper-wrapper .shop_product,
.cms-home .swiper-wrapper .shop_product {
  padding-bottom: 20px;
}
.cms-home .instance-0 .swiper-wrapper {
  padding: 0;
}
@keyframes hidemsg {
  to {
    visibility: hidden;
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transform: translateY(150px);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
@keyframes scaleIt {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes blinkHide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
}
@keyframes blinkShow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes MoveScaleUpInitial {
  100% {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  0% {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes ticker {
  0% {
    transform: translate(0%, -50%);
  }
  100% {
    transform: translate(-100%, -50%);
  }
}
@keyframes tickerOp {
  0% {
    transform: translate(-100%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes spin3 {
  from {
    transform: translateY(-50%) rotate(180deg);
  }
  to {
    transform: translateY(-50%) rotate(0deg);
  }
}
@keyframes opaq {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}
@keyframes discountAn {
  from {
    width: 0px;
  }
  to {
    width: calc(100% + 10px);
  }
}
#eapps-instagram-feed-1 {
  margin-bottom: 5rem;
}
#eapps-instagram-feed-1 .eapps-link {
  display: none !important;
}
.eapps-instagram-feed-title-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.eapps-instagram-feed-title-container .eapps-instagram-feed-title {
  position: relative;
  font-size: calc(3.2rem + 0.5vw);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.eapps-instagram-feed-title-container .eapps-instagram-feed-title:after {
  --size: 1.25rem;
  content: "";
  position: absolute;
  bottom: 2.75rem;
  right: -1.5rem;
  background-image: url("../images/logo-icon-circle.svg");
  background-size: var(--size);
  background-repeat: no-repeat;
  background-position: center;
  width: var(--size);
  height: var(--size);
  pointer-events: none;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .eapps-instagram-feed-title-container .eapps-instagram-feed-title {
    font-size: 2.2rem;
  }
}
.sticky-top {
  z-index: 2;
}
.message.info.empty {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 5rem;
  padding-top: 5rem;
  min-height: 300px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  color: #000;
  background: #ffffff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.message.info.empty > div:before {
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  width: unset;
  height: unset;
  margin: 0;
  line-height: 1;
  top: 5rem;
}

.slide-2 .txt-primary {
color:white;  
}
