/*-------------------------------------------------------*/
/* Table of Content

1.General
  1.1.Typography
  1.2.Grid
2.Common Elements
3.Layout
4.Blog
5.About me
6.Contact
7.Shop
8.Navigation
9.Footer
10.Helper CLasses

/*-------------------------------------------------------*/
/*-------------------------------------------------------
  General
  -------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.oh {
  overflow: hidden;
}

.relative {
  position: relative;
}

.white {
  color: #fff;
}

.left {
  float: left;
}

.right {
  float: right;
}

.bg-light {
  background-color: #f7f7f7;
}

.bg-dark {
  background-color: #1f1f1f;
}

.last {
  margin-bottom: 0 !important;
}

.img-fullwidth {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nocaps {
  text-transform: none;
  letter-spacing: 0;
}

::-moz-selection {
  color: #fff;
  background: #ec2424;
}

::-webkit-selection {
  color: #fff;
  background: #ec2424;
}

::selection {
  color: #fff;
  background: #ec2424;
}

html {
  overflow-x: hidden;
}
html.no-scroll {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  color: #ec2424;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000000;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #555;
  width: 100%;
  height: 100%;
}
body.no-scroll {
  overflow-y: hidden;
}

body img {
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

video {
  height: 100%;
  width: 100%;
}

.hd-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .hd-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .hd-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .hd-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .hd-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .hd-container {
    max-width: 1320px;
  }
}
@media (min-width: 1800px) {
  .hd-container {
    max-width: 1720px;
  }
}
.abbr[data-original-title],
abbr[title] {
  text-decoration: none;
}

/*-------------------------------------------------------
  Preloader
  -------------------------------------------------------*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  display: block;
  position: fixed;
  z-index: 100000;
  font-size: 0;
  color: #ec2424;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.loader > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  float: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: ball-clip-rotate-pulse-rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

@-webkit-keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes ball-clip-rotate-pulse-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes ball-clip-rotate-pulse-scale {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}
@keyframes ball-clip-rotate-pulse-scale {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(0.15);
    transform: translate(-50%, -50%) scale(0.15);
  }
}
/*-------------------------------------------------------
  Typography
  -------------------------------------------------------*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 15px;
}

@media only screen and (max-width: 575px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 19px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 19px;
  }

  h4 {
    font-size: 18px;
  }
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: inherit;
}

.heading-row {
  margin-bottom: 30px;
}

.heading {
  position: relative;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bottom-line:after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  margin: 4px auto 0;
  z-index: 1;
  position: relative;
}

p {
  font-size: 15px;
  color: #303030;
  font-weight: normal;
  line-height: 26px;
  margin: 0 0 10px;
}

address {
  font-style: normal;
}

.lead {
  font-size: 18px;
  line-height: 32px;
}

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

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

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

@media only screen and (max-width: 1439px) {
  .text-lg-center {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .text-md-center {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .text-sm-center {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .text-xs-center {
    text-align: center;
  }
}
blockquote {
  padding: 15px 0 15px 37px;
  border-left: 2px solid #e1e1e1;
  margin-bottom: 40px;
}

blockquote p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px !important;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

blockquote cite {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #e1e1e1;
}

/*-------------------------------------------------------
  Grid
  -------------------------------------------------------*/
.section-wrap {
  padding: 20px 0;
  overflow: hidden;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .section-wrap {
    padding-top: 20px;
  }
}

.mobile .section-wrap {
  background-position: 50% 50% !important;
  background-attachment: scroll !important;
}

@media only screen and (max-width: 767px) {
  .section-wrap {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 575px) {
  .section-wrap {
    padding: 40px 0;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}
/*-------------------------------------------------------
  Containers
  -------------------------------------------------------*/
.lg-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .lg-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .lg-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .lg-container {
    max-width: 960px;
  }
}

.md-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .md-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .md-container {
    max-width: 720px;
  }
}

/*-------------------------------------------------------
  Flexbox
  -------------------------------------------------------*/
.flex-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-child {
  -webkit-box-flex: 1 0 0;
  -ms-flex: 1 0 0;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
}

/*-------------------------------------------------------
  Columns With No Gutters
  -------------------------------------------------------*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/*-------------------------------------------------------
  Row Gutters
  -------------------------------------------------------*/
.row-8 {
  margin: 0 -4px;
}

.row-8 > div {
  padding: 0 4px;
}

.row-10 {
  margin: 0 -5px;
}

.row-10 > div {
  padding: 0 5px;
}

.row-24 {
  margin: 0 -12px;
}

.row-24 > div {
  padding: 0 12px;
}

/*-------------------------------------------------------
  Bootstrap additional styles
  -------------------------------------------------------*/
.col-xxl,
.col-xxl-1,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media only screen and (min-width: 1440px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
/*-------------------------------------------------------
  Buttons
  -------------------------------------------------------*/
.btn {
  font-weight: 700;
  overflow: hidden;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  background-color: #000000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn.btn-stroke:hover, .btn.btn-stroke:focus {
  background-color: #c3332b;
  color: white;
}

.btn:hover {
  color: #fff;
  background-color: #ec2424;
  border-color: transparent;
}

.btn:focus {
  outline: none;
  color: #fff;
}

.btn-lg,
.btn-lg.btn-button {
  font-size: 16px;
  padding: 0 30px;
}

.btn-lg span,
.btn-lg.btn-button span {
  line-height: 52px;
}

.btn-lg i,
.btn-lg.btn-button i {
  font-size: 16px;
  margin-right: 4px;
}

.btn-lg.btn-button {
  height: 54px;
}

.btn-md,
.btn-md.btn-button {
  font-size: 13px;
  padding: 0 20px;
}

.btn-md span,
.btn-md.btn-button span {
  line-height: 43px;
}

.btn-md.btn-button {
  height: 45px;
}

.btn-sm,
.btn-sm.btn-button {
  font-size: 11px;
  padding: 0 20px;
  line-height: 28px;
}

.btn-sm.btn-button {
  height: 30px;
}

.btn-color {
  background-color: #ec2424;
}

.btn-color:hover {
  background-color: #000 !important;
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid #fff;
}

.btn-stroke {
  color: #000000;
  border: 1px solid #e1e1e1;
  background-color: transparent;
}
.btn-stroke:focus {
  color: #000000;
}

.btn-dark {
  background-color: #000000;
}

.btn-white {
  background-color: #fff;
  color: #000000;
}

.btn-light {
  background-color: #f7f7f7;
  color: #000000;
}

.btn-white:focus,
.btn-transparent:focus {
  color: #000000;
}

.btn:disabled {
  cursor: not-allowed;
}

.btn.btn-light:disabled:hover {
  background-color: #f7f7f7;
}

.btn.btn-stroke:disabled {
  color: #000000;
  border: 1px solid #e1e1e1;
  background-color: transparent;
}

.btn:active {
  opacity: 0.7;
}

.rounded,
.rounded:before {
  -webkit-border-radius: 70px;
  border-radius: 70px;
}

/*-------------------------------------------------------
  Input Buttons
  -------------------------------------------------------*/
.btn-button {
  border: none;
  margin-bottom: 0;
  width: auto;
}

.btn-button.btn-color,
.btn-button.btn-dark {
  color: #fff;
}

.btn-button.btn-color:hover,
.btn-button.btn-color:focus {
  background-color: #000;
}

.btn-button.btn-wide {
  width: 100%;
}

.btn-button:hover,
.btn-button:focus {
  color: #fff;
  background-color: #ec2424;
}

/*-------------------------------------------------------
  Button styles
  -------------------------------------------------------*/
button.btn.btn-lg.product-single__add-to-cart.btn-color {
  margin-bottom: 20px;
}

/*-------------------------------------------------------
  Accordions and Toggles
  -------------------------------------------------------*/
.accordion__heading {
  position: relative;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion__toggle {
  display: block;
  width: 10px;
  height: 2px;
  background-color: #7b7b7b;
  right: 22px;
  top: 28px;
  position: absolute;
}

.accordion--is-closed span {
  background-color: #7b7b7b;
}

.accordion--is-closed span:after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 0;
  background-color: #7b7b7b;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.accordion--is-open span {
  background-color: #000;
}

.accordion__body,
.toggle__body {
  padding-bottom: 17px;
  line-height: 26px;
}

.accordion__link,
.toggle__link {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 18px 0;
  color: #7b7b7b;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #e1e1e1;
}

.toggle__link {
  border-bottom: 1px solid #e1e1e1;
  padding: 14px 0;
}

.toggle__link:after {
  font-family: "ui-icons";
  position: absolute;
  content: "\e802";
  right: 0;
  top: 12px;
  color: #7b7b7b;
  font-size: 18px;
}

.toggle__link.active:after {
  content: "\e809";
  color: #000000;
}

.toggle__body {
  padding: 20px 0 10px;
  border: none;
}

/*-------------------------------------------------------
  Form Elements
  -------------------------------------------------------*/
input,
select,
textarea {
  height: 45px;
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #f7f7f7;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 12px;
  -webkit-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  color: #868686;
  font-size: 15px;
}

textarea {
  height: auto;
  display: block;
  padding: 8px 16px;
  margin-bottom: 30px;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: #ec2424;
  background-color: #fff;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #868686;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #868686;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #868686;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-left: 12px;
  background-image: url(../images/dropdown.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

select::-ms-expand {
  display: none;
}

label {
  color: #7b7b7b;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  margin-bottom: 6px;
}

/*-------------------------------------------------------
  Checkboxes & Radio Buttons
  -------------------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  width: 13px;
  height: 13px;
  content: "";
  display: inline-block;
  font-size: 13px;
  margin: -4px 10px 0 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #7b7b7b;
}

input[type="checkbox"]:checked + label:after {
  width: 7px;
  height: 7px;
  content: "";
  display: inline-block;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #000;
  position: absolute;
  left: 3px;
  top: 6.2px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  line-height: 21px;
}

.radio-buttons > li,
.checkboxes > li {
  padding: 7px 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  -webkit-box-shadow: 0 0 0 1px #7b7b7b;
  box-shadow: 0 0 0 1px #7b7b7b;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  margin: -3px 10px 0 0;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  margin-bottom: 0;
}

input[type="radio"]:checked + label:before {
  background-color: #000;
  border: 4px solid #fff;
  padding: 1px;
}

input[type="radio"]:focus {
  outline: none;
}

#contact-form .message {
  height: 50px;
  width: 100%;
  font-size: 13px;
  line-height: 50px;
  text-align: center;
  float: none;
  margin-top: 20px;
  display: none;
  color: #fff;
}

#contact-form .message.error {
  background-color: #f44336;
}

#contact-form .message.success {
  background-color: #4caf50;
}

/*-------------------------------------------------------
  Sliders
  -------------------------------------------------------*/
/**
   * Owl Carousel v2.2.1
   * Copyright 2013-2017 David Deutsch
   * Licensed under  ()
   */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(http://www.xjeans.eu/css/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-prev,
.owl-next {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -17px;
  text-align: center;
  z-index: 10;
  width: 52px;
  height: 52px;
  font-size: 34px;
  line-height: 52px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-prev {
  left: -52px;
}

.owl-next {
  right: -52px;
}

.owl-carousel:hover .owl-prev {
  opacity: 1;
  left: 0;
}

.owl-carousel:hover .owl-next {
  opacity: 1;
  right: 0;
}

.owl-next:hover i,
.owl-prev:hover i {
  color: #000;
}

.owl-carousel--dark-arrows .owl-prev,
.owl-carousel--dark-arrows .owl-next {
  color: #7b7b7b;
}

.owl-carousel--visible-arrows .owl-prev,
.owl-carousel--visible-arrows .owl-next {
  opacity: 1;
}

.owl-carousel--visible-arrows .owl-prev,
.owl-carousel--visible-arrows:hover .owl-prev {
  left: -60px;
}

.owl-carousel--visible-arrows .owl-next,
.owl-carousel--visible-arrows:hover .owl-next {
  right: -60px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 30px;
}

.owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #fff;
  opacity: 0.6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.owl-dot.active span,
.owl-dot:hover span {
  opacity: 1;
}

.owl-carousel--dots-inside .owl-dots {
  position: absolute;
  bottom: 12px;
  margin-top: 0;
  width: 100%;
}

/*-------------------------------------------------------*/
/*! Flickity v2.0.10
  http://flickity.metafizzy.co
  ---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: #fff;
}

.flickity-prev-next-button:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 5px #09f;
  box-shadow: 0 0 0 5px #09f;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

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

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-prev-next-button,
.flickity-prev-next-button:hover {
  background-color: transparent;
}
.flickity-prev-next-button.flickity-button,
.flickity-prev-next-button:hover.flickity-button {
  background-color: transparent;
}

/*-------------------------------------------------------
  Magnific Pupop
  -------------------------------------------------------*/
.mfp-bg,
.mfp-wrap {
  position: fixed;
  left: 0;
  top: 0;
}

.mfp-bg,
.mfp-container,
.mfp-wrap {
  height: 100%;
  width: 100%;
}

.mfp-arrow:after,
.mfp-arrow:before,
.mfp-container:before,
.mfp-figure:after {
  content: "";
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  z-index: 1043;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-close,
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
  display: none;
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.mfp-figure:after,
.mfp-iframe-scaler iframe {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-figure,
img.mfp-img {
  line-height: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1;
}

.mfp-arrow:after,
.mfp-arrow:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-image-holder .mfp-content,
img.mfp-img {
  max-width: 100%;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.mfp-figure:after,
img.mfp-img {
  width: auto;
  height: auto;
  display: block;
}

img.mfp-img {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure:after {
  top: 40px;
  bottom: 40px;
  right: 0;
  z-index: -1;
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*-------------------------------------------------------
  Tables
  -------------------------------------------------------*/
.table-wrap {
  margin-bottom: 34px;
}

/*-------------------------------------------------------
  Social Icons
  -------------------------------------------------------*/
.socials a {
  display: inline-block;
  line-height: 32px;
  color: #868686;
  text-align: center;
  margin-left: 18px;
  font-size: 30px;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.socials a:hover {
  color: #ec2424;
}

.socials a:first-child {
  margin-left: 0;
}

.socials--white a {
  color: #fff;
}

.socials--small a {
  font-size: 20px;
  line-height: 24px;
}

.socials .facebook:hover {
  color: #4c70ba;
}

.socials .twitter:hover {
  color: #00acee;
}

.socials .google-plus:hover {
  color: #dd4b39;
}

.socials .snapchat:hover {
  color: #fffb01;
}

.socials .linkedin:hover {
  color: #0e76a8;
}

.socials .pinterest:hover {
  color: #c8232c;
}

.socials .instagram:hover {
  color: #d93175;
}

/*-------------------------------------------------------
  Home Page
  -------------------------------------------------------*/
.hero-header .slide-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-header .slide-link img.hero-img-desk {
  display: none;
  width: 100%;
  min-height: 400px;
  max-height: -webkit-calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .hero-header .slide-link img.hero-img-desk {
    display: block;
  }
}
.hero-header .slide-link img.hero-img-mob {
  width: auto;
  min-width: 100%;
  max-width: none;
  height: -webkit-calc(100vh - 250px);
  height: calc(100vh - 250px);
  min-height: 400px;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 576px) {
  .hero-header .slide-link img.hero-img-mob {
    height: -webkit-calc(100vh - 150px);
    height: calc(100vh - 150px);
    max-height: 700px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-header .slide-link img.hero-img-mob {
    height: -webkit-calc(100vh - 200px);
    height: calc(100vh - 200px);
    max-height: 800px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-header .slide-link img.hero-img-mob {
    display: none !important;
  }
}

/* Feature bar */
.feature-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #252630;
}
.feature-holder .column {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .feature-holder .column {
    max-width: 33.3333333333%;
  }
}
.feature-holder .column:last-child .feature-info:after {
  content: none;
}
.feature-holder a.feature-info, .feature-holder a.feature-info label {
  cursor: pointer;
}
.feature-holder .feature-info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
}
@media screen and (min-width: 576px) {
  .feature-holder .feature-info {
    padding: 15px;
  }
}
.feature-holder .feature-info i {
  color: #B9BABA;
  font-size: 24px;
  margin-right: 15px;
}
.feature-holder .feature-info .feature-label {
  font-family: 'Lato', sans-serif;
}
.feature-holder .feature-info .feature-label h6 {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
.feature-holder .feature-info .feature-label h6 a:hover {
  color: white;
}
.feature-holder .feature-info .feature-label .small p {
  display: none;
  color: #B9BABA;
  font-size: 13px;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .feature-holder .feature-info .feature-label .small p {
    display: block;
  }
}
.feature-holder .feature-info:after {
  content: '';
  display: block;
  width: 80%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 576px) {
  .feature-holder .feature-info:after {
    content: none;
  }
}

.feature-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.feature-row .feature-col {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .feature-row .feature-col {
    max-width: 50%;
  }
}
.feature-row .feature-link {
  display: block;
  position: relative;
}
.feature-row .feature-link .background-image {
  position: relative;
  padding-bottom: 70%;
}
.feature-row .feature-link .background-image .image-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.feature-row .feature-link .background-image .image-placeholder img {
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-row .feature-link .background-image .bg-icon {
  width: 100%;
  height: 90%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.feature-row .feature-link .background-image .bg-icon.her {
  background-image: url(../images/her.svg);
}
.feature-row .feature-link .background-image .bg-icon.him {
  background-image: url(../images/him.svg);
}
.feature-row .feature-link .feature-info {
  background-color: rgba(195, 51, 43, 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: white;
  text-shadow: 2px 2px 7px black;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
}
.feature-row .feature-link .feature-info p {
  color: white;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  cursor: pointer;
}
.feature-row .feature-link .feature-info .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
.feature-row .feature-link:hover .background-image .bg-icon {
  opacity: 0.2;
}
.feature-row .feature-link:hover .feature-info {
  background-color: rgba(195, 51, 43, 0.2);
}

/* Instagram section */
.ig-widget .wdg-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .ig-widget .wdg-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.ig-widget .wdg-title i {
  color: #222222;
  font-size: 42px;
}
@media only screen and (min-width: 768px) {
  .ig-widget .wdg-title i {
    margin-right: 15px;
  }
}
.ig-widget .wdg-title .title-holder {
  text-align: center;
}
.ig-widget .wdg-title .title-holder a {
  display: block;
}
.ig-widget .wdg-title .title-holder a h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}
.ig-widget .wdg-title .title-holder p {
  color: #717274;
  margin-bottom: 0;
}
.ig-widget .ig-wrapper .wdg-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ig-widget .ig-img {
  width: 100%;
  max-width: 50%;
}
@media only screen and (min-width: 768px) {
  .ig-widget .ig-img {
    max-width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1200px) {
  .ig-widget .ig-img {
    max-width: 25%;
  }
}
@media only screen and (min-width: 1440px) {
  .ig-widget .ig-img {
    max-width: 20%;
  }
}
.ig-widget .ig-img a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 100%;
  overflow: hidden;
}
.ig-widget .ig-img a::before {
  content: '';
  display: block;
  background-color: rgba(34, 34, 34, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.ig-widget .ig-img a img {
  -o-object-fit: cover;
  object-fit: cover;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.ig-widget .ig-img a:hover:before {
  opacity: 1;
}
.ig-widget .ig-img:nth-child(n+9) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .ig-widget .ig-img:nth-child(n+9) {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .ig-widget .ig-img:nth-child(n+9) {
    display: none;
  }
}
@media only screen and (min-width: 1440px) {
  .ig-widget .ig-img:nth-child(n+9) {
    display: block;
  }
}
.ig-widget .ig-img:last-child {
  display: none;
}
@media only screen and (min-width: 1440px) {
  .ig-widget .ig-img:last-child {
    display: block;
  }
}
.ig-widget .ig-img:nth-child(odd) a img {
  width: 100%;
  height: auto;
}

/* Homepage Item slider with side title */
.item-slider {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .item-slider {
    padding: 20px 60px;
  }
}
.item-slider .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-slider .item-slider-head {
  height: 100%;
  text-align: center;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .item-slider .item-slider-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    text-align: left;
    padding-bottom: 0;
  }
}
.item-slider .item-slider-head h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
.item-slider .item-hero .product {
  padding-right: 10px;
  padding-left: 10px;
}
.item-slider .item-hero .product_block {
  margin-bottom: 0;
}
.item-slider .item-hero .product_block.active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.item-slider .item-hero .product_block.active .product_block-link > .product_block-info {
  opacity: 1;
}
.item-slider.slider-right .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (min-width: 992px) {
  .item-slider.slider-right .item-slider-head {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.item-hero .product__price {
  padding-bottom: 10px;
  display: block;
}

/*-------------------------------------------------------
  Hero
  -------------------------------------------------------*/
/*-------------------------------------------------------
  Features
  -------------------------------------------------------*/
.feature {
  border: 2px solid #e1e1e1;
  padding: 11px 30px;
}

@media only screen and (min-width: 768px) {
  .feature:first-child {
    border-right: 0;
  }

  .feature:last-child {
    border-left: 0;
  }
}
.feature__icon {
  font-size: 24px;
  float: left;
  margin-right: 20px;
  color: #000;
}

.feature__holder {
  margin-left: 40px;
}

.feature__title {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 16px;
  margin-bottom: 0;
}

.feature__text {
  font-size: 13px;
}
.feature__text p,
.feature__text span {
  line-height: 1.6;
  margin-top: 5px;
}

.feature__promo {
  color: #ec2424;
}

.col-md-3.feature {
  padding-bottom: 5px;
  padding-top: 15px;
}

/*-------------------------------------------------------
  Testimonials
  -------------------------------------------------------*/
.testimonial__rating {
  margin-top: 3px;
}

.testimonial__text {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 18px;
  margin-top: 21px;
}

.testimonial__author {
  color: #000;
  font-size: 13px;
}

/*-------------------------------------------------------
  Blog
  -------------------------------------------------------*/
.entry {
  overflow: hidden;
  margin-bottom: 40px;
}

.entry__img-holder {
  position: relative;
  overflow: hidden;
  margin-bottom: 27px;
}

.entry__img {
  width: 100%;
}

.entry__header {
  padding-bottom: 7px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}

.entry__title {
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .entry__title {
    font-size: 22px;
  }
}
.entry__title:hover a {
  color: #ec2424;
}

.entry__meta li {
  display: inline-block;
  font-size: 10px;
}

.entry__meta a {
  color: #7b7b7b;
}

.entry__meta a:hover {
  color: #ec2424;
}

.entry__meta li + li {
  margin-left: 27px;
}

.entry__meta-label {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.entry__excerpt p {
  margin-bottom: 15px;
}

.entry__read-more-link {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #7b7b7b;
}

.entry__read-more-link:hover {
  color: #ec2424;
}

/*-------------------------------------------------------
  Blog Single Post
  -------------------------------------------------------*/
.entry__article h1,
.entry__article h2,
.entry__article h3,
.entry__article h4,
.entry__article h5,
.entry__article h6 {
  margin-top: 36px;
}

.entry__article p {
  margin-bottom: 36px;
}

.entry__article ol,
.entry__article ul {
  padding-left: 16px;
  line-height: 26px;
}

.entry__article ul {
  list-style: disc;
}

/*-------------------------------------------------------
  Share / tags
  -------------------------------------------------------*/
.entry__tags {
  margin-top: 40px;
  padding-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #000;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.entry__tags a {
  color: #7b7b7b;
  text-transform: none;
  letter-spacing: normal;
}

.entry__tags a:hover {
  color: #ec2424;
}

.entry__share {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 24px 0;
  text-align: center;
}

.entry__share-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-bottom: 8px;
}

/*-------------------------------------------------------
  Author
  -------------------------------------------------------*/
.entry-author {
  padding: 40px 46px;
  margin-bottom: 58px;
  background-color: #f7f7f7;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .entry-author {
    padding: 20px;
  }
}
.entry-author__img {
  display: block;
  float: left;
  margin-right: 36px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

@media only screen and (max-width: 575px) {
  .entry-author__img {
    width: 40px;
    margin-right: 20px;
  }
}
.entry-author__info {
  overflow: hidden;
  margin-top: 5px;
}

@media only screen and (max-width: 575px) {
  .entry-author__info {
    margin-top: 0;
  }
}
.entry-author__name {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/*-------------------------------------------------------
  Comments
  -------------------------------------------------------*/
.entry-comments__title {
  font-size: 24px;
}

@media only screen and (min-width: 576px) {
  .comment .children {
    padding-left: 8%;
  }
}
.comment-list > li:last-child > .comment-body {
  border-bottom: 0;
}

.comment-body {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.comment-text {
  overflow: hidden;
}

.comment-text p {
  margin-bottom: 10px;
}

.comment-avatar {
  float: left;
  margin-right: 24px;
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .comment-avatar {
    width: 40px;
  }
}
.comment-author {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0;
}

.comment-date,
.comment-edit-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #868686;
}

.comment-edit-link {
  margin-left: 5px;
  margin-bottom: 0;
  color: #ec2424;
}

.comment-reply {
  color: #000;
}

.comment-reply:hover {
  color: #ec2424;
}

/*-------------------------------------------------------
  Comment Form
  -------------------------------------------------------*/
.comment-form p {
  margin: 0;
}

.comment-form__title {
  font-size: 20px;
}

.comment-respond {
  margin-top: 40px;
}

.comment-respond__title {
  font-size: 24px;
  margin-bottom: 18px;
}

/*-------------------------------------------------------
  Sidebar
  -------------------------------------------------------*/
.sidebar__box {
  background-color: #f7f7f7;
  padding: 45px 40px;
}

@media only screen and (max-width: 575px) {
  .sidebar__box {
    padding: 20px;
  }
}
.sidebar .widget {
  margin-bottom: 60px;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget ul li {
  position: relative;
}

/*-------------------------------------------------------
  Widgets
  -------------------------------------------------------*/
.widget-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.widget li {
  padding: 4px 0;
}

.widget li a {
  color: #7b7b7b;
}

.widget li a:hover {
  color: #ec2424;
}

.widget--bottom-line {
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 24px !important;
}

.widget .sub-menu {
  padding-left: 15px;
  padding-top: 5px;
}

.widget .sub-menu li {
  padding: 5px 0 !important;
}

.widget .children {
  padding-top: 10px;
  padding-left: 15px;
  margin-top: 10px;
}

/*-------------------------------------------------------
  Slider Filter
  -------------------------------------------------------*/
.ui-slider-horizontal {
  cursor: pointer;
  position: relative;
  height: 5px;
  background: #e1e1e1;
  margin-bottom: 24px;
  margin-top: 24px;
}

.widget__filter-by-slider .ui-slider .ui-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #000000;
  top: -4px;
  margin-left: -14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.widget__filter-by-slider .ui-slider span:first-of-type {
  margin-left: 0;
}

.ui-slider .ui-slider-range {
  position: absolute;
  background-color: #ec2424;
  height: 5px;
}

.widget__filter-by-slider p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.widget__filter-by-slider p > input {
  width: 75%;
  padding: 0;
  border: none;
  background-color: transparent;
  height: auto;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1;
  vertical-align: middle;
}

.widget__filter-by-slider label {
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  line-height: 33px;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
  color: #7b7b7b;
}

.widget__filter-by-slider p > button {
  font-size: 8px;
  float: right;
  padding: 0 15px;
}

/*-------------------------------------------------------
  Widget About
  -------------------------------------------------------*/
@media only screen and (min-width: 992px) {
  .widget__about-text {
    padding-right: 110px;
  }
}
/*-------------------------------------------------------
  Widget Newsletter
  -------------------------------------------------------*/
.mc4wp-form-fields {
  position: relative;
}

.mc4wp-form-fields p {
  margin-bottom: 0;
}

.mc4wp-form-fields p:last-child:before {
  content: "\f3d3";
  font-family: "ui-icons";
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  top: 0;
  right: 0;
  color: #000000;
  text-align: center;
  font-size: 16px;
}

.mc4wp-form-fields input[type="email"],
.mc4wp-form-fields input[type="text"] {
  background-color: transparent;
  border-color: #353535;
  margin-bottom: 10px;
}

.mc4wp-form-fields input[type="email"]:focus,
.mc4wp-form-fields input[type="text"]:focus {
  border-color: #e1e1e1;
}

.mc4wp-form-fields input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  background-color: transparent;
  width: 45px;
  height: 45px;
  border: none;
  margin-bottom: 0;
  font-size: 13px;
  padding: 0;
}

/*-------------------------------------------------------
  Recent Posts
  -------------------------------------------------------*/
.widget_recent_entries li {
  padding-bottom: 7px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
}

.widget_recent_entries li:last-child {
  border-bottom: 0;
}

.widget_recent_entries li a {
  display: block;
  color: #000000;
}

.widget_recent_entries li a:hover {
  color: #ec2424;
}

.widget_recent_entries span {
  font-size: 10px;
}

/*-------------------------------------------------------
  Tags
  -------------------------------------------------------*/
.widget_tags a {
  padding: 7px 10px;
  line-height: 1;
  margin: 0 10px 10px 0;
  font-size: 13px;
  border: 1px solid #e1e1e1;
  color: #7b7b7b;
  display: inline-block;
  float: left;
}

.widget_tags a:hover {
  background-color: #ec2424;
  border-color: transparent;
  color: #fff;
}

/*-------------------------------------------------------
  Page title
  -------------------------------------------------------*/
.page-title {
  padding-top: 70px;
}

.page-title__subtitle {
  margin-bottom: 0;
  margin-top: 17px;
  max-width: 636px;
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------------------------------------
  Breadcrumbs
  -------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
  margin-bottom: 20px;
  font-size: 13px;
  list-style: none;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 18px !important;
    margin-top: -7px !important;
  }
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li,
.breadcrumbs a {
  color: #7b7b7b;
}

.breadcrumbs > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
}

.breadcrumbs .active {
  color: #000000;
}

/*-------------------------------------------------------
  Pagination
  -------------------------------------------------------*/
.pagination__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination__page {
  font-size: 15px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin: 0 2px;
  text-align: center;
  border: 1px solid #e1e1e1;
  color: #000000;
  vertical-align: middle;
}

.pagination__page:not(span):hover {
  background-color: #ec2424;
  border-color: transparent;
  color: #fff;
}

.pagination__page i {
  font-size: 18px;
}

.pagination__page--current {
  background-color: #000;
  color: #fff;
  border-color: transparent;
}

/*-------------------------------------------------------
  About Page
  -------------------------------------------------------*/
.team {
  margin-bottom: 50px;
}

.team__img {
  width: 100%;
}

.team__title {
  margin-top: 28px;
  font-size: 24px;
  margin-bottom: 1px;
}

.team__position {
  font-size: 15px;
  font-weight: 700;
}

/*-------------------------------------------------------
  Contact Page
  -------------------------------------------------------*/
.contact-name,
.contact-email,
.contact-subject {
  max-width: 266px;
}

.contact-info {
  background-color: #f7f7f7;
  padding: 45px 40px;
}

@media only screen and (max-width: 575px) {
  .contact-info {
    padding: 20px;
  }
}
.contact-info__item {
  margin-bottom: 60px;
  line-height: 26px;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info__store-title {
  margin-bottom: 5px;
}

.contact-info a {
  color: #7b7b7b;
}

.contact-info a:hover {
  color: #ec2424;
}

/*-------------------------------------------------------
  Gmap
  -------------------------------------------------------*/
.gmap {
  width: 100%;
  height: 428px;
}

/*-------------------------------------------------------
  404
  -------------------------------------------------------*/
.page-404 {
  text-align: center;
  padding: 130px 0;
}

@media only screen and (max-width: 575px) {
  .page-404 {
    padding: 70px 0;
  }
}
.page-404__title {
  font-size: 334px;
  letter-spacing: 0.03em;
  color: #b2b2b2;
  line-height: 0.75;
}

@media only screen and (max-width: 767px) {
  .page-404__title {
    font-size: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .page-404__title {
    font-size: 120px;
  }
}
.page-404__subtitle {
  font-size: 50px;
}

@media only screen and (max-width: 767px) {
  .page-404__subtitle {
    font-size: 36px;
  }
}
.page-404__text {
  font-size: 18px;
  line-height: 32px;
  max-width: 636px;
  margin: 0 auto 25px auto;
}

/*-------------------------------------------------------
  Product list & Product single containers
  -------------------------------------------------------*/
.catalog,
.product-single {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .catalog,
  .product-single {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .catalog,
  .product-single {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .catalog,
  .product-single {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.catalog .container-fluid,
.product-single .container-fluid {
  max-width: 1920px;
}

/*-------------------------------------------------------
  Products
  -------------------------------------------------------*/
.product-list .list-col {
  padding-right: 15px !important;
}
.product-list .list-col .row {
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (min-width: 768px) {
  .product-list .list-col .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media only screen and (min-width: 1440px) {
  .product-list .list-col .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.product-list .list-col .row .col {
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 768px) {
  .product-list .list-col .row .col {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .product-list .list-col .row .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.product_block {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .product_block {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .product_block {
    margin-bottom: 45px;
  }
}
.product_block .product_block-link {
  display: block;
}
.product_block .product_block-image {
  position: relative;
  margin-bottom: 10px;
}
.product_block .product_block-image .product_block-slider-cell {
  position: relative;
  width: 100%;
  padding-bottom: 150%;
}
.product_block .product_block-image .product_block-slider-cell .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.product_block .product_block-image .product_block-slider-cell .image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product_block .product_block-image .flickity-enabled.is-draggable .flickity-viewport {
  cursor: pointer;
}
.product_block .product_block-image .flickity-prev-next-button {
  display: none;
  width: 50px;
  height: 50px;
  -webkit-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  z-index: 10;
}
@media only screen and (min-width: 1200px) {
  .product_block .product_block-image .flickity-prev-next-button {
    display: block;
    opacity: 0;
  }
}
.product_block .product_block-image .flickity-prev-next-button svg {
  width: 50%;
  height: 50%;
}
.product_block .product_block-image .flickity-prev-next-button.previous {
  left: 0;
}
.product_block .product_block-image .flickity-prev-next-button.next {
  right: 0;
}
.product_block .product_block-image .flickity-page-dots {
  bottom: 10px;
}
@media only screen and (min-width: 1200px) {
  .product_block .product_block-image .flickity-page-dots {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .product_block .product_block-image .flickity-page-dots {
    display: block;
  }
}
.product_block .product_block-image .flickity-page-dots .dot {
  background-color: #b9baba;
  width: 6px;
  height: 6px;
  margin-left: 3px;
  margin-right: 3px;
  opacity: 1;
}
.product_block .product_block-image .flickity-page-dots .dot.is-selected {
  background-color: #222222;
}
.product_block .product_block-image .hover-reveal {
  overflow: hidden;
}
.product_block .product_block-image .hover-reveal .image {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product_block .product_block-image .hover-reveal .image.front {
  opacity: 1;
  visibility: visible;
}
.product_block .product_block-image .hover-reveal .image.back {
  opacity: 0;
  visibility: hidden;
}
.product_block .product_block-image .sale-badge {
  position: absolute;
  display: inline-block;
  background-color: #222222;
  color: white;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  padding-left: 7px;
  padding-right: 7px;
  top: 15px;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .product_block .product_block-image .sale-badge {
    font-size: 14px;
    line-height: 26px;
    padding-left: 10px;
    padding-right: 10px;
    top: 20px;
    z-index: 1;
  }
}
.product_block .product_block-info h2 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .product_block .product_block-info h2 {
    font-size: 14px;
  }
}
.product_block .product_block-info .price {
  font-size: 13px;
}
.product_block .product_block-info .price ins {
  font-weight: 600;
  text-decoration: none;
}
.product_block .product_block-info .price ins span {
  color: #222222;
}
.product_block .product_block-info .price ins span.price-w-discount {
  color: #ec2424;
}
.product_block .product_block-info .price del {
  color: #717274;
  margin-left: 5px;
}
.product_block .product_block-reveal {
  visibility: hidden;
  background-color: white;
  opacity: 0;
  -webkit-transition: 0.225s cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: 0.225s cubic-bezier(0.4, 0, 0.6, 1);
  transition: 0.225s cubic-bezier(0.4, 0, 0.6, 1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10%;
  z-index: 1;
}
.product_block .product_block-reveal .wrapper {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.product_block .product_block-reveal .product_block-info .price {
  margin-bottom: 5px;
}
.product_block .product_block-reveal .variants {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
}
.product_block .product_block-reveal .variants object {
  display: block;
  padding-left: 2px;
  padding-right: 2px;
}
.product_block .product_block-reveal .variants object img {
  max-width: 32px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .product_block .product_block-reveal .variants object img {
    max-width: 40px;
  }
}
.product_block .product_block-reveal .sizes {
  color: #545454;
  font-size: 9px;
}
.product_block.active {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15);
}
.product_block.active .flickity-page-dots {
  opacity: 0;
}
.product_block.active .product_block-link > .product_block-info {
  opacity: 0;
}
.product_block.active .product_block-reveal {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.product_block.active .product_block-image .flickity-prev-next-button {
  opacity: 1;
}
.product_block:hover .hover-reveal .image.front {
  opacity: 0;
  visibility: hidden;
}
.product_block:hover .hover-reveal .image.back {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------------------------------
  Sign in Popup
  -------------------------------------------------------*/
.sign-in-popup {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 30px 30px 0 30px;
  position: relative;
}

.sign-in-popup__forgot-password {
  color: #7b7b7b;
  font-size: 13px;
  float: right;
}

.sign-in-popup__forgot-password:hover {
  color: #ec2424;
}

/* overlay at start */
.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*-------------------------------------------------------
  Quickview Popup
  -------------------------------------------------------*/
.quickview-popup {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  position: relative;
}

.quickview-popup__padding-box {
  padding: 30px 30px 20px 0;
}

.processed {
  overflow: visible;
}

/*-------------------------------------------------------
  Catalogue
  -------------------------------------------------------*/
.catalog {
  padding-top: 30px !important;
}
@media only screen and (min-width: 768px) {
  .catalog .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.catalog .breadcrumbs {
  margin-bottom: 0 !important;
}
.catalog .sidebar {
  display: none;
}
@media only screen and (min-width: 992px) {
  .catalog .sidebar {
    display: block;
  }
}
.catalog .sidebar nav a {
  display: inline-block;
  color: black;
}
.catalog .sidebar nav > ul {
  padding-top: 20px;
  padding-bottom: 30px;
}
.catalog .sidebar nav > ul > li > a {
  font-size: 17px;
  font-weight: 600;
  padding: 5px 0;
}
.catalog .sidebar nav > ul > li.active > ul {
  display: block;
}
.catalog .sidebar nav > ul > li > ul {
  display: none;
  padding-left: 5px;
  margin-bottom: 5px;
}
.catalog .sidebar nav > ul > li > ul > li > a {
  line-height: 30px;
}
.catalog .sidebar nav > ul > li > ul > li.active > a {
  color: #d40000;
  font-weight: 600;
}
.catalog .sidebar nav > ul > li > ul > li.active > ul {
  display: block;
}
.catalog .sidebar nav > ul > li > ul > li.active > ul > li.active > ul {
  display: block;
}
.catalog .sidebar nav > ul > li > ul > li > ul {
  display: none;
  padding-left: 10px;
  margin-bottom: 10px;
}
.catalog .sidebar nav > ul > li > ul > li > ul > li > a {
  font-size: small;
  line-height: 26px;
}
.catalog .sidebar nav > ul > li > ul > li > ul > li.active > a {
  color: #d40000;
  font-weight: 600;
}
.catalog .sidebar nav > ul > li > ul > li > ul > li > ul {
  display: none;
  padding-left: 10px;
  margin-bottom: 10px;
}
.catalog .sidebar nav > ul > li > ul > li > ul > li > ul > li > a {
  font-size: small;
  line-height: 26px;
}
.catalog .sidebar nav > ul > li > ul > li > ul > li > ul > li.active > a {
  color: #d40000;
  font-weight: 500;
}
.catalog .sidebar nav.stick {
  position: fixed;
  top: 0;
}

/*-------------------------------------------------------
  Filter
  -------------------------------------------------------*/
.shop-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  margin-bottom: 10px;
}
.shop-head #grid-type-buttons {
  margin-top: 0;
}
.shop-head h2 {
  line-height: 33px;
  padding-left: 10px;
  margin-bottom: 0;
}
.shop-head .filter-toggle {
  margin-left: auto;
}
.shop-head .filter-toggle .btn {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 3px 12px 2px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 3px 12px 2px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 101;
}
@media only screen and (min-width: 576px) {
  .shop-head .filter-toggle .btn {
    bottom: 20px;
    right: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .shop-head .filter-toggle .btn {
    bottom: 30px;
    right: 30px;
}
}

.woocommerce-result-count {
  display: inline-block;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .woocommerce-result-count {
    margin-left: auto;
  }
}

.woocommerce-result-count,
.woocommerce-ordering-label {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.woocommerce-ordering {
  float: right;
  width: 190px;
}

.woocommerce-ordering-label {
  color: #000;
  margin-right: 20px;
}

.woocommerce-ordering-label:before {
  content: "";
  display: inline-block;
  height: 25px;
  width: 1px;
  position: relative;
  top: 8px;
  margin-right: 20px;
  margin-left: 15px;
  background-color: #e1e1e1;
}

.woocommerce-ordering select {
  margin-bottom: 0;
  background-color: #fff;
}

/**
 * @since 05.2024
 */
.product-filters {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  -webkit-transition: right 375ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: right 375ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: right 375ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 130;
}
@media only screen and (min-width: 992px) {
  .product-filters {
    position: relative;
    display: block;
    max-width: none;
    padding-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #e1e1e1;
    -webkit-box-shadow: none;
            box-shadow: none;
    right: 0;
    z-index: 12;
  }
}
.product-filters-wrapper {
  width: 100%;
  max-width: 300px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  margin-left: auto;
  -webkit-box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.1);
  overflow: auto;
}
@media only screen and (min-width: 420px) {
  .product-filters-wrapper {
    max-width: 340px;
  }
}
@media only screen and (min-width: 768px) {
  .product-filters-wrapper {
    max-width: 420px;
  }
}
@media only screen and (min-width: 992px) {
  .product-filters-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-clip-path: inset(-10px 0px -100vh);
            clip-path: inset(-10px 0px -100vh);
    overflow: inherit;
  }
}
.product-filters .filter-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-header {
    display: none;
  }
}
.product-filters .filter-header h3 {
  font-weight: 700;
  padding-left: 15px;
  margin-right: auto;
  margin-bottom: 0;
}
.product-filters .filter-header button {
  padding: 15px;
  margin-right: 0;
}
.product-filters .filter-option-col {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-option-col {
    padding-left: 0;
    padding-right: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 15px;
  }
}
.product-filters .filter-sl {
  position: relative;
}
.product-filters .filter-sl-lb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a6a6a6;
  padding: 10px;
  border: 1px solid #e1e1e1;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-lb {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.product-filters .filter-sl-lb label {
  color: inherit;
  font-weight: 400;
  margin-bottom: 0;
  cursor: inherit;
}
.product-filters .filter-sl-lb label::-moz-selection {
  background: none;
  color: inherit;
}
.product-filters .filter-sl-lb label::selection {
  background: none;
  color: inherit;
}
.product-filters .filter-sl-lb span {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #222222;
  text-align: center;
  color: white;
  font-size: 10px;
  line-height: 16px;
  padding-right: 1px;
  margin-left: 5px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}
.product-filters .filter-sl-lb span:empty {
  display: none;
}
.product-filters .filter-sl-lb span::-moz-selection {
  background: none;
  color: inherit;
}
.product-filters .filter-sl-lb span::selection {
  background: none;
  color: inherit;
}
.product-filters .filter-sl-lb i {
  margin-left: auto;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-lb i {
    margin-left: 5px;
  }
}
.product-filters .filter-sl-lb:hover {
  color: #222222;
}
.product-filters .filter-sl-lb.check {
  padding: 0;
}
.product-filters .filter-sl-lb.check input:checked + label {
  color: #222222;
}
.product-filters .filter-sl-lb.check label {
  width: 100%;
  padding: 10px;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-lb.check label {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.product-filters .filter-sl-lb.check label::before {
  margin-top: -3px;
}
.product-filters .filter-sl-lb.check label::after {
  top: 17px;
  left: 13px;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-lb.check label::after {
    top: 12px;
  }
}
.product-filters .filter-sl-dd {
  display: none;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-dd {
    min-width: 300px;
    max-width: 360px;
    padding-top: 5px;
    position: absolute;
    left: 0;
    top: 100%;
  }
  .product-filters .filter-sl-dd.right {
    left: inherit;
    right: 0;
  }
}
.product-filters .filter-sl-dd .dd-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  max-height: 300px;
  background-color: white;
  border: 1px solid #222222;
  border-top: none;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-dd .dd-wrapper {
    min-height: 100px;
    border-top: 1px solid;
    border-color: #efefef;
  }
}
.product-filters .filter-sl-dd .dd-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  overflow-y: auto;
}
.product-filters .filter-sl-dd .dd-list ul li.check {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}
.product-filters .filter-sl-dd .dd-list ul li.check input:checked + label {
  color: #222222;
}
.product-filters .filter-sl-dd .dd-list ul li.check label {
  display: block;
  width: 100%;
  padding: 5px 15px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}
.product-filters .filter-sl-dd .dd-list ul li.check label::before {
  margin-top: -3px;
}
.product-filters .filter-sl-dd .dd-list ul li.check label::after {
  left: 18px;
  top: 12px;
}
.product-filters .filter-sl-dd .dd-list ul.col-3 {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-left: 0;
  padding-right: 0;
}
.product-filters .filter-sl-dd .dd-list ul.col-3 li {
  width: 100%;
  max-width: 33.3333%;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .product-filters .filter-sl-dd .dd-list ul.col-3 li {
    max-width: 25%;
  }
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-dd .dd-list ul.col-3 li {
    max-width: 33.3333%;
  }
}
.product-filters .filter-sl-dd .dd-list ul.col-3 li label {
  padding-left: 0;
  -o-text-overflow: inherit;
     text-overflow: inherit;
  overflow: visible;
}
.product-filters .filter-sl-dd .dd-list ul.col-3 li label:after {
  left: 3px;
}
.product-filters .filter-sl-dd .dd-controls {
  display: none;
  border-top: 1px solid #efefef;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl-dd .dd-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-filters .filter-sl.open .filter-sl-lb {
  color: #222222;
  border-color: #222222;
  border-bottom: none;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl.open .filter-sl-lb {
    border-bottom: 1px solid;
  }
}
.product-filters .filter-sl.open .filter-sl-lb i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-filters .filter-sl.open .filter-sl-dd {
  display: block;
}
.product-filters .filter-sl.active .filter-sl-lb {
  color: #222222;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-sl.active .filter-sl-lb {
  border-color: #222222;
}
}
.product-filters .filter-controls {
  background-color: white;
  padding: 10px 15px;
  margin-top: auto;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    padding-top: 15px;
    padding-left: 10px;
    margin-top: 0;
    position: absolute;
    left: inherit;
    top: 0;
  }
}
.product-filters .filter-controls::before {
  content: none;
  width: 40px;
  height: 88%;
  display: block;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), color-stop(70%, white));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.3) 0%, white 70%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.3) 0%, white 70%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, white 70%);
  border-right: 1px solid #e1e1e1;
  position: absolute;
  right: 100%;
  top: 10px;
  bottom: 0;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-controls::before {
    content: '';
  }
}
.product-filters .filter-controls .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  min-height: auto;
  padding-top: 10px;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid #e1e1e1;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-controls .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    border-top: none;
  }
}
.product-filters .filter-controls .btn {
  color: #222222;
  padding-left: 10px;
  padding-right: 10px;
}
.product-filters .filter-controls .btn.btn-filter {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  color: white;
  margin-bottom: 10px;
}
.product-filters .filter-controls .btn.btn-filters {
  display: none;
  color: #a6a6a6;
}
.product-filters .filter-controls .btn.btn-filters span.opened {
  display: none;
}
.product-filters .filter-controls .btn.btn-filters.active span {
  display: none;
}
.product-filters .filter-controls .btn.btn-filters.active span.opened {
  display: inline;
}
.product-filters .filter-controls .btn.btn-reset {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .product-filters .filter-controls .btn.btn-reset {
    margin-bottom: 0;
  }
}
.product-filters .filter-controls .btn:hover {
  color: white;
}
.product-filters.active {
  right: 0;
}
@media only screen and (min-width: 992px) {
  .product-filters.active .product-filters-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media only screen and (min-width: 992px) {
  .product-filters.active .filter-controls {
    position: relative;
    padding-top: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .product-filters.active .filter-controls::before {
    opacity: 0;
  }
}

/*-------------------------------------------------------
  Cart Page
  -------------------------------------------------------*/
@media (max-width: 560px) {
  .table-wrap {
    overflow-x: scroll;
  }
}
.shop_table thead th {
  border-top: 0;
  border-bottom: 0;
  padding: 6px;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.shop_table tr td {
  vertical-align: middle;
  padding: 6px;
}

.shop_table tr:last-child {
  border-bottom: 1px solid #e1e1e1;
}

.shop_table .product-thumbnail {
  padding: 13px 50px 13px 0;
  width: 215px;
  min-width: 80px;
}

@media only screen and (max-width: 991px) {
  .shop_table .product-thumbnail {
    padding: 13px 13px 13px 0;
  }
}
.shop_table td.product-name {
  width: 30%;
  line-height: 24px;
}

.shop_table td.product-quantity {
  min-width: 120px;
}

.shop_table td.product-quantity .quantity {
  padding-left: 0;
  width: auto;
  float: none;
}

.shop_table .product-name a,
.shop_table .product-price span,
.shop_table .product-subtotal span {
  color: #000000;
}

.shop_table .product-name a:hover {
  color: #ec2424;
}

@media only screen and (max-width: 575px) {
  .shop_table tbody .product-name {
    font-size: 13px;
    line-height: 1.5;
  }

  .shop_table .product-price {
    display: none;
  }
}
.shop_table .product-price {
  width: 16%;
}

.shop_table .product-price span,
.shop_table .product-subtotal span {
  font-size: 13px;
  color: #7b7b7b;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.shop_table .product-subtotal span {
  color: #000000;
}

.shop_table .product-remove {
  text-align: right;
  min-width: 30px;
}

.shop_table .remove {
  color: #7b7b7b;
}

.shop_table .remove:hover {
  background-color: transparent;
  color: #000;
}

.remove {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #7b7b7b;
}

.remove i {
  font-size: 18px;
  display: block;
}

.remove:hover {
  background-color: #ec2424;
  color: #fff;
}

/*-------------------------------------------------------
  Quantity
  -------------------------------------------------------*/
.quantity {
  float: none !important;
}

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

.quantity.buttons_added .minus,
.quantity.buttons_added .plus,
.quantity.buttons_added .qty {
  margin-bottom: 0;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  font-size: 22px;
  float: left;
  padding: 0;
  text-align: center;
  -webkit-border-radius: 0;
  border-radius: 0;
  line-height: 1;
}

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

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

.quantity .input-text.qty {
  font-size: 13px;
}

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

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

/*-------------------------------------------------------
  Coupon / Update cart / Proceed to checkout
  -------------------------------------------------------*/
.coupon .input-text {
  width: 50%;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.actions {
  float: right;
}

@media only screen and (max-width: 991px) {
  .actions {
    float: none;
  }
}
.actions > input,
.actions > div {
  display: inline-block;
}

.actions > div {
  margin-left: 5px;
}

@media (max-width: 413px) {
  .actions > input,
  .actions > div {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .actions a {
    width: 100%;
  }
}
/*-------------------------------------------------------
  Shipping
  -------------------------------------------------------*/
.shipping-calculator-form p {
  margin: 0;
}

.shipping-calculator-form > p:last-child {
  margin-bottom: 30px;
}

select.country_to_state,
#calc_shipping_postcode,
#calc_shipping_state {
  margin-bottom: 24px;
}

/*-------------------------------------------------------
  Cart Totals
  -------------------------------------------------------*/
.cart_totals .table td,
.cart_totals .table th,
.ecommerce-checkout-review-order-table td,
.ecommerce-checkout-review-order-table th {
  padding: 7px 0;
  font-weight: 400;
}

.cart_totals tr:first-child th,
.cart_totals tr:first-child td,
.ecommerce-checkout-review-order-table tr:first-child th,
.ecommerce-checkout-review-order-table tr:first-child td {
  border-top: 0;
}

.cart_totals tr td,
.ecommerce-checkout-review-order tr td {
  text-align: right;
}

.order-total th,
.order-total .amount {
  font-weight: 700 !important;
  color: #000000;
}

/*-------------------------------------------------------
  Checkout
  -------------------------------------------------------*/
.showlogin {
  color: #000000;
}

.ecommerce-checkout #customer_details p {
  margin-bottom: 24px;
}

.ecommerce-checkout #customer_details input,
.ecommerce-checkout #customer_details select,
.ecommerce-checkout #customer_details textarea {
  margin-bottom: 0;
}

.ecommerce-checkout #customer_details textarea {
  min-height: 110px;
}

.ecommerce-checkout .create-account {
  padding-bottom: 24px;
  margin-bottom: 25px !important;
  border-bottom: 1px solid #e1e1e1;
}

.ecommerce-checkout .ecommerce-shipping-fields {
  margin-bottom: 34px;
}

abbr.required {
  color: #e7604a;
}

#billing_address_1_field {
  margin-bottom: 10px !important;
}

.checkout {
  padding-top: 5px;
}

/*-------------------------------------------------------
  Your Order
  -------------------------------------------------------*/
.order-review-wrap {
  border: 2px solid #7b7b7b;
  padding: 40px;
}

@media only screen and (max-width: 575px) {
  .order-review-wrap {
    padding: 20px;
  }
}
.ecommerce-checkout-review-order-table {
  margin-bottom: 40px;
}

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

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

.payment_box p {
  margin-top: 10px;
  margin-bottom: 0;
}

.payment_methods label {
  color: #000000;
}

.place-order {
  margin-top: 34px;
}

/*-------------------------------------------------------
  Sticky Nav
  -------------------------------------------------------*/
@media only screen and (min-width: 992px) {
  .nav--sticky {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .nav--sticky.sticky {
    z-index: 120;
  }
}
.nav--always-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/*-------------------------------------------------------
  Navigation
  -------------------------------------------------------*/
.nav {
  height: 70px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 120;
  position: relative;
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  /* Dropdowns (large screen) */
}
@media only screen and (min-width: 992px) {
  .nav {
    height: 106px;
  }
}
.nav .contact-bar {
  padding-left: 5px;
  margin-right: -20px;
  align-content: center;
}
.nav .contact-bar ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav .contact-bar ul li {
  position: relative;
  white-space: nowrap;
}
.nav .contact-bar ul li:before {
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
}
.nav .contact-bar ul li a {
  display: inline-block;
  line-height: 25px;
  padding: 0 10px;
}
@media only screen and (min-width: 1200px) {
  .nav .contact-bar ul li a {
    padding: 0 15px;
  }
}
.nav .shops-link {
  display: inline-block;
  line-height: 25px;
  padding-left: 15px;
}
.nav .top-menu {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
  -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.nav.sticky .top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav.sticky .top-menu.hide {
  top: -80px;
}
.nav.disable-sticky .top-menu {
  position: unset !important;
}

.nav__holder {
  background-color: white;
}

@media only screen and (min-width: 992px) {
  .nav .nav.sticky {
    height: 80px;
  }
}
.nav__menu
{
  list-style: none;
}

.nav__menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav__menu > li {
  position: relative;
}
.nav__menu > li > a {
  font-family: "Montserrat", sans-serif;
  color: #252630;
  font-size: 14px;
  font-weight: 600;
  padding: 0 16px;
  display: block;
  position: relative;
  text-transform: uppercase;
  line-height: 32px;
  letter-spacing: 0.06em;
  z-index: 1;
}

.nav__menu > li > a:hover {
  opacity: 0.95;
}

.nav__menu > li:last-child > a {
  padding-right: 0;
}
.nav__menu > li:hover a {
  color: #c3332b;
}

.nav__dropdown-menu {
  visibility: hidden;
  min-height: 70px;
  width: 100%;
  position: absolute;
  top: 0;
}
.nav__dropdown-menu:before {
  content: "";
}
.nav__dropdown-menu .nav__dropdown-block {
  min-height: 70px;
}
.nav__dropdown-menu .nav__dropdown-block:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent white transparent;
  margin: 60px auto 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}
.nav__dropdown-menu .nav__dropdown-block .nav__dropdown-wrap {
  max-width: -webkit-calc(100vw - 40px);
  max-width: calc(100vw - 40px);
  background-color: white;
  padding: 25px 0;
  margin-top: 7px;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 60px;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.nav__dropdown-menu .nav__dropdown-block .nav__dropdown-wrap .row {
  margin-left: 0;
  margin-right: 0;
}
.nav__dropdown-menu .nav__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  text-align: left;
}
.nav__dropdown-menu .nav__block .submenu h4 {
  font-size: 14px;
  font-weight: 600;
  padding: 0 40px;
}
.nav__dropdown-menu .nav__block .submenu ul li {
  position: relative;
  min-width: 160px;
  white-space: nowrap;
}
.nav__dropdown-menu .nav__block .submenu ul li a {
  display: block;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  padding: 0 50px 0 40px;
}
.nav__dropdown-menu .nav__block .submenu ul li a mark {
  background-color: transparent;
  color: #c3332b;
  font-weight: 500;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  padding-left: 10px;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 7px 0;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  top: 12px;
  left: 3px;
  z-index: 1;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap ul {
  position: relative;
  background-color: #fff;
  padding: 20px 0;
  top: -10px;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap ul a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap ul a i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-left: 15px;
  overflow: hidden;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap ul a i img {
  display: block;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap.drop-up {
  top: inherit;
  bottom: -25px;
}
.nav__dropdown-menu .nav__block .submenu ul li > .sublist-wrap.drop-up::before {
  top: inherit;
  bottom: 35px;
}
.nav__dropdown-menu .nav__block .submenu ul li:hover > a {
  color: #c3332b;
  text-decoration: underline;
}
.nav__dropdown-menu .nav__block .submenu ul li:hover > a i {
  color: #c3332b;
}

.nav__menu > li:hover .nav__dropdown-menu {
  visibility: visible;
}

@media only screen and (min-width: 992px) {
  .nav__menu > li {
    display: inline-block;
    text-align: center;
  }
}
/*-------------------------------------------------------
  Logo
  -------------------------------------------------------*/
.logo {
  display: block;
  padding: 14px 0;
  margin: auto;
}
.logo .logo__img {
  /*ECM-B2B >>*/
  /*max-height: 21px;*/
  display: block;
  width: 166px;
  max-height: 50px;
  /*ECM-B2B >>*/
}

/*-------------------------------------------------------
  Nav Flexbox
  -------------------------------------------------------*/
header .flex-parent {
  min-height: 45px !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

header .flex-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

header .flex-child.nav__wrap {
  -webkit-box-flex: 2;
  -webkit-flex: 2 0 0;
  -ms-flex: 2 0 0px;
  flex: 2 0 0;
  padding-left: 32px;
  padding-right: 32px;
}

header .flex-child.flex-right {
  text-align: right;
}

.nav--align-right {
  margin-left: auto;
}

.nav--align-left {
  margin-right: auto;
}

@media only screen and (min-width: 768px) {
  .nav--align-left {
    margin-left: 60px;
  }
}
/*-------------------------------------------------------
  Nav Search
-------------------------------------------------------*/
.nav__search {
  text-align: right;
}

.nav__search-form {
  position: relative;
}

.nav__search-input {
  width: 240px;
  border: 1px solid transparent;
  margin-bottom: 0;
  height: 30px;
  font-size: 13px;
  padding: 0 12px;
  color: #fff;
  background-color: #efefef;
}

.nav__search-input:focus {
  background-color: #222222;
  border-color: #fff;
}

.nav__search-input:focus + .nav__search-submit {
  color: white;
}

.nav__search-submit {
  background: none;
  position: absolute;
  border: 0;
  font-size: 18px;
  color: #2b2b2b;
  right: 3px;
  top: 2px;
  vertical-align: middle;
}

/* Change Color of Placeholders */
input.nav__search-input::-webkit-input-placeholder {
  color: #c1c1c1;
}

input.nav__search-input:-moz-placeholder {
  color: #c1c1c1;
  opacity: 1;
}

input.nav__search-input::-moz-placeholder {
  color: #c1c1c1;
  opacity: 1;
}

input.nav__search-input:-ms-input-placeholder {
  color: #c1c1c1;
}

/* Mobile Search */
.sidenav__search-mobile-form {
  position: relative;
}

.sidenav__search-mobile-input {
  height: 46px;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #ffffff;
  border-bottom: 1px solid #353535;
}

.sidenav__search-mobile-input:focus {
  background-color: transparent;
  border-color: #fff;
}

.sidenav__search-mobile-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border: 0;
  padding: 0;
  font-size: 22px;
  cursor: pointer;
  color: #b2b2b2;
  background-color: transparent;
}

.nav .side-nav-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#header-search-popup .result-items {
  display: table;
  border-collapse: collapse;
  width: 100%;
  border-top: 5px solid transparent;
}

#header-search-popup .result-items a.item {
  display: table-row;
  color: #b2b2b2;
  font-weight: bold;
  border-bottom: 5px solid transparent;
}

#header-search-popup .result-items a.item:hover {
  color: #fff;
}

#header-search-popup .result-items a.item > * {
  display: table-cell;
  vertical-align: middle;
}

#header-search-popup .result-items .item-image {
  text-align: center;
  padding: 0 5px;
}

#header-search-popup .result-items .item-name {
  padding: 5px;
}

#header-search-popup .result-items .item-price {
  white-space: nowrap;
  padding: 5px;
}

/*-------------------------------------------------------
  Top Bar
  -------------------------------------------------------*/
.top-bar {
  background-color: #c3332b;
  min-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-bar a {
  color: white;
  font-size: 13px;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar__right {
  white-space: nowrap;
  -webkit-box-flex: 1 0 0;
  -webkit-flex: 1 0 0;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}

.top-bar__promo {
  -webkit-box-flex: 2 0 0;
  -webkit-flex: 2 0 0;
  -ms-flex: 2 0 0;
  flex: 2 0 0;
  margin-bottom: 0;
}

.top-bar > ul,
.top-bar__currency,
.top-bar__language {
  display: inline-block;
  position: relative;
}

.top-bar__language {
  margin-right: 10px;
}
.top-bar__language i {
  color: white;
}

.top-bar__currency-dropdown,
.top-bar__language-dropdown {
  background-color: #0d0d0d;
  padding: 6px 16px;
  position: absolute;
  left: -16px;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.top-bar__currency-dropdown ul li,
.top-bar__language-dropdown ul li {
  line-height: 26px;
  border-top: 1px solid #353535;
}

.top-bar__currency-dropdown ul li:first-child,
.top-bar__language-dropdown ul li:first-child {
  border-top: 0;
}

.top-bar__currency:hover .top-bar__currency-dropdown,
.top-bar__language:hover .top-bar__language-dropdown {
  visibility: visible;
  opacity: 1;
}

.top-bar__promo {
  display: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}
@media only screen and (min-width: 992px) {
  .top-bar__promo {
    display: block;
  }
}

.top-bar__right {
  text-align: right;
  margin-right: 16px;
  align-content: center;
}

.top-bar__item {
  display: inline-block;
  margin-left: 16px;
}

.top-bar__item:nth-child(2) i {
  margin-right: 0;
}

.top-bar__item > i,
.top-bar__item > a > i {
  margin-right: 5px;
  color: #fff;
}

.top-bar__sign-in {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-bar__sign-in i {
  font-size: 12px;
}

/*-------------------------------------------------------
  Nav Cart
  -------------------------------------------------------*/
.nav-cart {
  position: relative;
}
.nav-cart a {
  color: #252630;
  white-space: nowrap;
}
.nav-cart a i {
  color: #545454;
  margin-right: 5px !important;
}

.nav-cart__dropdown {
  opacity: 0;
  visibility: hidden;
  min-width: 270px;
  max-width: 300px;
  position: absolute;
  top: 100%;
  right: -15px;
  left: auto;
  background-color: #1a1a1a;
  padding: 20px;
  line-height: 1;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 201;
}
.nav-cart__dropdown.showing {
  visibility: visible;
  opacity: 1;
}

.top-menu.hide .nav-cart__dropdown {
  top: 50px;
}

.nav-cart__dropdown:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 13px;
  display: block;
  top: -10px;
  right: 17px;
}

.nav-cart__items {
  position: relative;
}

.nav-cart__item {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #353535;
  position: relative;
}

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

.nav-cart__img {
  float: left;
  margin-right: 20px;
}

.nav-cart__price {
  color: #c1c1c1;
  font-size: 13px;
  margin-top: 5px;
}

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

.nav-cart__title > a {
  position: relative;
  color: #fff;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.5;
}

.nav-cart__title > a:hover {
  color: #fff;
}

.nav-cart__remove {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #383838;
}
.nav-cart__remove a i {
  position: relative;
  display: inline-block;
  margin-right: 0 !important;
  top: -1px;
}

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

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

.nav-cart__remove:hover {
  background-color: #ec2424;
}

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

.nav-cart__summary {
  margin-top: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.nav-cart__total-price {
  float: right;
}

.nav-cart__actions a {
  width: 100%;
  color: #fff;
}

.nav-cart__actions a:first-child {
  color: #000000;
}

.nav-cart__actions a:hover {
  color: #fff;
}

.nav-cart:hover .nav-cart__dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-cart,
.nav__mobile-wishlist {
  white-space: nowrap;
  color: #222222;
  font-size: 18px;
}

.nav__mobile-cart:hover,
.nav__mobile-wishlist:hover {
  color: black;
}

.nav__mobile-cart-amount {
  font-size: 16px;
}

.nav__mobile-wishlist {
  margin-right: 18px;
}

/*-------------------------------------------------------
  Nav Icon Toggle (mobile nav)
  -------------------------------------------------------*/
.nav-icon-toggle {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  -o-transition: 0.15s linear;
  transition: 0.15s linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  margin-right: 15px;
  overflow: visible;
}

@media only screen and (min-width: 992px) {
  .nav-icon-toggle {
    display: none;
  }
}
.nav-icon-toggle:focus {
  outline: none;
}

.nav-icon-toggle__box {
  width: 22px;
  height: 22px;
  position: relative;
  display: block;
}

.nav-icon-toggle__inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  -webkit-transition: 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nav-icon-toggle__inner,
.nav-icon-toggle__inner:before,
.nav-icon-toggle__inner:after {
  width: 22px;
  height: 2px;
  background-color: #222222;
  position: absolute;
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.nav-icon-toggle__inner:before,
.nav-icon-toggle__inner:after {
  content: "";
  display: block;
}

.nav-icon-toggle__inner:before {
  top: -6px;
  -webkit-transition: top 0.2s 0.2s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.2s 0.2s ease-in, opacity 0.1s ease-in;
  transition: top 0.2s 0.2s ease-in, opacity 0.1s ease-in;
}

.nav-icon-toggle__inner:after {
  bottom: -6px;
  -webkit-transition: bottom 0.2s 0.2s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.2s 0.2s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: bottom 0.2s 0.2s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.2s 0.2s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.2s 0.2s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.2s 0.2s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nav-icon-toggle--is-open .nav-icon-toggle__inner {
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.nav-icon-toggle--is-open .nav-icon-toggle__inner:before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.nav-icon-toggle--is-open .nav-icon-toggle__inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*-------------------------------------------------------
  Nav Mobile Styles
  -------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .nav__header {
    height: 50px;
  }

  .nav__wrap {
    text-align: left;
  }

  .logo {
    /*margin-left: 20px;*/
    line-height: 1;
  }

  .logo__img {
    /*ECM-B2B >>*/
    /*max-height: 16px;*/
    max-height: 21px;
    min-width: 120px;
    /*ECM-B2B >>*/
  }
}
/*-------------------------------------------------------
  Mobile Search
  -------------------------------------------------------*/
.sidenav__search-mobile-form {
  position: relative;
}

.sidenav__search-mobile-input {
  height: 46px;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #ffffff;
  border-bottom: 1px solid #353535;
}

.sidenav__search-mobile-input:focus {
  background-color: transparent;
  border-color: #fff;
}

.sidenav__search-mobile-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border: 0;
  padding: 0;
  font-size: 22px;
  cursor: pointer;
  color: #b2b2b2;
  background-color: transparent;
}

#header-search-popup .result-items {
  display: table;
  border-collapse: collapse;
  width: 100%;
  border-top: 5px solid transparent;
}

#header-search-popup .result-items a.item {
  display: table-row;
  color: #b2b2b2;
  font-weight: bold;
  border-bottom: 5px solid transparent;
}

#header-search-popup .result-items a.item:hover {
  color: #fff;
}

#header-search-popup .result-items a.item > * {
  display: table-cell;
  vertical-align: middle;
}

#header-search-popup .result-items .item-image {
  text-align: center;
  padding: 0 5px;
}

#header-search-popup .result-items .item-name {
  padding: 5px;
}

#header-search-popup .result-items .item-price {
  white-space: nowrap;
  padding: 5px;
}

/*-------------------------------------------------------
  Nav Mobile Sidenav
  -------------------------------------------------------*/
.sidenav {
  background-color: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 270px;
  overflow-y: auto;
  -webkit-transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  -o-transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  -webkit-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  transform: translateX(-270px);
}
@media only screen and (min-width: 420px) {
  .sidenav {
    width: 350px;
    -webkit-transform: translateX(-350px);
    -ms-transform: translateX(-350px);
    transform: translateX(-350px);
  }
}

.sidenav--is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.main {
  -webkit-transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  -o-transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
  transition: transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98), -webkit-transform 0.4s cubic-bezier(0.16, 0.36, 0, 0.98);
}

.main--is-open {
  -webkit-transform: translateX(270px);
  -ms-transform: translateX(270px);
  transform: translateX(270px);
}
@media only screen and (min-width: 420px) {
  .main--is-open {
    -webkit-transform: translateX(350px);
    -ms-transform: translateX(350px);
    transform: translateX(350px);
  }
}

/*-------------------------------------------------------
  Sidenav Menu
  -------------------------------------------------------*/
.sidenav__menu {
  list-style: none;
  padding: 0;
}
.sidenav__menu ul {
  list-style: none;
  padding: 0;
}
.sidenav__menu li {
  position: relative;
  border-bottom: 1px solid #353535;
}
.sidenav__menu li:last-child {
  border-bottom: 0;
}
.sidenav__menu li.active {
  background-color: #252630;
}
.sidenav__menu-dropdown {
  overflow: hidden;
  display: none;
  background-color: #fff;
}
.sidenav__menu-dropdown li {
  border-color: #e1e1e1;
}
.sidenav__menu-dropdown a,
.sidenav__menu-dropdown .sidenav__menu-toggle {
  color: #000000;
}
.sidenav__menu-dropdown a:hover,
.sidenav__menu-dropdown .sidenav__menu-toggle:hover {
  color: #000000;
}
.sidenav__menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 0;
  width: 46px;
  height: 46px;
  text-align: center;
}
.sidenav__menu-toggle:focus {
  outline: none;
}
.sidenav__menu-link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  color: #fefefe;
  line-height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.sidenav__menu-link span {
  padding-left: 16px;
}
.sidenav__menu-link:hover {
  color: #fff;
}
.sidenav__menu--is-open > a {
  background-color: #262626;
  color: #fff;
}
.sidenav__menu--is-open > a:hover {
  color: #fff;
}
.sidenav__menu--is-open > .sidenav__menu-toggle {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fff;
}
.sidenav__menu--is-open > .sidenav__menu-toggle:hover {
  color: #fff;
}

/*-------------------------------------------------------
  Go to Top
  -------------------------------------------------------*/
#back-to-top {
  display: block;
  z-index: 100;
  width: 34px;
  height: 34px;
  text-align: center;
  font-size: 20px;
  position: fixed;
  bottom: -34px;
  right: 20px;
  line-height: 32px;
  background-color: #222222;
  border: 1px solid #2b2b2b;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

#back-to-top i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#back-to-top a {
  display: block;
  color: white;
}

#back-to-top.show {
  bottom: 20px;
}

#back-to-top:hover {
  background-color: #d40000;
  border-color: transparent;
}

#back-to-top:hover i {
  color: #fff;
}

/*-------------------------------------------------------
  Footer
  -------------------------------------------------------*/
footer {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 5px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 5px 0px;
}
footer .footer__widgets {
  padding: 65px 0;
}
footer .footer__widgets .widget {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  footer .footer__widgets .widget {
    margin-bottom: 0;
  }
}
footer .footer__widgets .widget .widget-title {
  font-weight: 600;
  margin-bottom: 15px;
}
footer .footer__widgets ul li a {
  color: #222222;
  font-weight: 500;
}
footer .footer__widgets .socials a {
  width: 32px;
  height: 32px;
  background-color: #222222;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}

/*-------------------------------------------------------
  Bottom Footer
  -------------------------------------------------------*/
.footer__bottom {
  padding: 0px 0 50px;
}
.footer__bottom .copyright {
  padding: 10px;
}

/*-------------------------------------------------------
  Payment Systems
  -------------------------------------------------------*/
.footer__payment-systems i {
  font-size: 26px;
}

/*-------------------------------------------------------
  Spacings
  -------------------------------------------------------*/
.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

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

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
  /*
  TODO: TEST THIS
  padding-bottom: 15px;
  padding-top: 0px;
  */
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

@media only screen and (max-width: 1199px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-10 {
    margin-top: 10px;
  }

  .mt-lg-20 {
    margin-top: 20px;
  }

  .mt-lg-30 {
    margin-top: 30px;
  }

  .mt-lg-40 {
    margin-top: 40px;
  }

  .mt-lg-50 {
    margin-top: 50px;
  }

  .mt-lg-60 {
    margin-top: 60px;
  }

  .mt-lg-70 {
    margin-top: 70px;
  }

  .mt-lg-80 {
    margin-top: 80px;
  }

  .mt-lg-90 {
    margin-top: 90px;
  }

  .mt-lg-100 {
    margin-top: 100px;
  }

  .mt-lg-110 {
    margin-top: 110px;
  }

  .mt-lg-120 {
    margin-top: 120px;
  }

  .mt-lg-130 {
    margin-top: 130px;
  }

  .mt-lg-140 {
    margin-top: 140px;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-10 {
    margin-bottom: 10px;
  }

  .mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-lg-30 {
    margin-bottom: 30px;
  }

  .mb-lg-40 {
    margin-bottom: 40px;
  }

  .mb-lg-50 {
    margin-bottom: 50px;
  }

  .mb-lg-60 {
    margin-bottom: 60px;
  }

  .mb-lg-70 {
    margin-bottom: 70px;
  }

  .mb-lg-80 {
    margin-bottom: 80px;
  }

  .mb-lg-90 {
    margin-bottom: 90px;
  }

  .mb-lg-100 {
    margin-bottom: 100px;
  }

  .mb-lg-110 {
    margin-bottom: 110px;
  }

  .mb-lg-120 {
    margin-bottom: 120px;
  }

  .mb-lg-130 {
    margin-bottom: 130px;
  }

  .mb-lg-140 {
    margin-bottom: 140px;
  }

  .pt-lg-0 {
    padding-top: 0;
  }

  .pt-lg-10 {
    padding-top: 10px;
  }

  .pt-lg-20 {
    padding-top: 20px;
  }

  .pt-lg-30 {
    padding-top: 30px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-50 {
    padding-top: 50px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-70 {
    padding-top: 70px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-90 {
    padding-top: 90px;
  }

  .pt-lg-100 {
    padding-top: 100px;
  }

  .pt-lg-110 {
    padding-top: 110px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }

  .pt-lg-130 {
    padding-top: 130px;
  }

  .pt-lg-140 {
    padding-top: 140px;
  }

  .pb-lg-0 {
    padding-bottom: 0;
  }

  .pb-lg-10 {
    padding-bottom: 10px;
  }

  .pb-lg-20 {
    padding-bottom: 20px;
  }

  .pb-lg-30 {
    padding-bottom: 30px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-50 {
    padding-bottom: 50px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-70 {
    padding-bottom: 70px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-90 {
    padding-bottom: 90px;
  }

  .pb-lg-100 {
    padding-bottom: 100px;
  }

  .pb-lg-110 {
    padding-bottom: 110px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }

  .pb-lg-130 {
    padding-bottom: 130px;
  }

  .pb-lg-140 {
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-10 {
    margin-top: 10px;
  }

  .mt-md-20 {
    margin-top: 20px;
  }

  .mt-md-30 {
    margin-top: 30px;
  }

  .mt-md-40 {
    margin-top: 40px;
  }

  .mt-md-50 {
    margin-top: 50px;
  }

  .mt-md-60 {
    margin-top: 60px;
  }

  .mt-md-70 {
    margin-top: 70px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .mt-md-90 {
    margin-top: 90px;
  }

  .mt-md-100 {
    margin-top: 100px;
  }

  .mt-md-110 {
    margin-top: 110px;
  }

  .mt-md-120 {
    margin-top: 120px;
  }

  .mt-md-130 {
    margin-top: 130px;
  }

  .mt-md-140 {
    margin-top: 140px;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-10 {
    margin-bottom: 10px;
  }

  .mb-md-20 {
    margin-bottom: 20px;
  }

  .mb-md-30 {
    margin-bottom: 30px;
  }

  .mb-md-40 {
    margin-bottom: 40px;
  }

  .mb-md-50 {
    margin-bottom: 50px;
  }

  .mb-md-60 {
    margin-bottom: 60px;
  }

  .mb-md-70 {
    margin-bottom: 70px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mb-md-90 {
    margin-bottom: 90px;
  }

  .mb-md-100 {
    margin-bottom: 100px;
  }

  .mb-md-110 {
    margin-bottom: 110px;
  }

  .mb-md-120 {
    margin-bottom: 120px;
  }

  .mb-md-130 {
    margin-bottom: 130px;
  }

  .mb-md-140 {
    margin-bottom: 140px;
  }

  .pt-md-0 {
    padding-top: 0;
  }

  .pt-md-10 {
    padding-top: 10px;
  }

  .pt-md-20 {
    padding-top: 20px;
  }

  .pt-md-30 {
    padding-top: 30px;
  }

  .pt-md-40 {
    padding-top: 40px;
  }

  .pt-md-50 {
    padding-top: 50px;
  }

  .pt-md-60 {
    padding-top: 60px;
  }

  .pt-md-70 {
    padding-top: 70px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pt-md-90 {
    padding-top: 90px;
  }

  .pt-md-100 {
    padding-top: 100px;
  }

  .pt-md-110 {
    padding-top: 110px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }

  .pt-md-130 {
    padding-top: 130px;
  }

  .pt-md-140 {
    padding-top: 140px;
  }

  .pt-md-150 {
    padding-top: 150px;
  }

  .pb-md-0 {
    padding-bottom: 0;
  }

  .pb-md-10 {
    padding-bottom: 10px;
  }

  .pb-md-20 {
    padding-bottom: 20px;
  }

  .pb-md-30 {
    padding-bottom: 30px;
  }

  .pb-md-40 {
    padding-bottom: 40px;
  }

  .pb-md-50 {
    padding-bottom: 50px;
  }

  .pb-md-60 {
    padding-bottom: 60px;
  }

  .pb-md-70 {
    padding-bottom: 70px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pb-md-90 {
    padding-bottom: 90px;
  }

  .pb-md-100 {
    padding-bottom: 100px;
  }

  .pb-md-110 {
    padding-bottom: 110px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }

  .pb-md-130 {
    padding-bottom: 130px;
  }

  .pb-md-140 {
    padding-bottom: 140px;
  }

  .pb-md-150 {
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-10 {
    margin-top: 10px;
  }

  .mt-sm-20 {
    margin-top: 20px;
  }

  .mt-sm-30 {
    margin-top: 30px;
  }

  .mt-sm-40 {
    margin-top: 40px;
  }

  .mt-sm-50 {
    margin-top: 50px;
  }

  .mt-sm-60 {
    margin-top: 60px;
  }

  .mt-sm-70 {
    margin-top: 70px;
  }

  .mt-sm-80 {
    margin-top: 80px;
  }

  .mt-sm-90 {
    margin-top: 90px;
  }

  .mt-sm-100 {
    margin-top: 100px;
  }

  .mt-sm-110 {
    margin-top: 110px;
  }

  .mt-sm-120 {
    margin-top: 120px;
  }

  .mt-sm-130 {
    margin-top: 130px;
  }

  .mt-sm-140 {
    margin-top: 140px;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-10 {
    margin-bottom: 10px;
  }

  .mb-sm-20 {
    margin-bottom: 20px;
  }

  .mb-sm-30 {
    margin-bottom: 30px;
  }

  .mb-sm-40 {
    margin-bottom: 40px;
  }

  .mb-sm-50 {
    margin-bottom: 50px;
  }

  .mb-sm-60 {
    margin-bottom: 60px;
  }

  .mb-sm-70 {
    margin-bottom: 70px;
  }

  .mb-sm-80 {
    margin-bottom: 80px;
  }

  .mb-sm-90 {
    margin-bottom: 90px;
  }

  .mb-sm-100 {
    margin-bottom: 100px;
  }

  .mb-sm-110 {
    margin-bottom: 110px;
  }

  .mb-sm-120 {
    margin-bottom: 120px;
  }

  .mb-sm-130 {
    margin-bottom: 130px;
  }

  .mb-sm-140 {
    margin-bottom: 140px;
  }

  .pt-sm-0 {
    padding-top: 0;
  }

  .pt-sm-10 {
    padding-top: 10px;
  }

  .pt-sm-20 {
    padding-top: 20px;
  }

  .pt-sm-30 {
    padding-top: 30px;
  }

  .pt-sm-40 {
    padding-top: 40px;
  }

  .pt-sm-50 {
    padding-top: 50px;
  }

  .pt-sm-60 {
    padding-top: 60px;
  }

  .pt-sm-70 {
    padding-top: 70px;
  }

  .pt-sm-80 {
    padding-top: 80px;
  }

  .pt-sm-90 {
    padding-top: 90px;
  }

  .pt-sm-100 {
    padding-top: 100px;
  }

  .pt-sm-110 {
    padding-top: 110px;
  }

  .pt-sm-120 {
    padding-top: 120px;
  }

  .pt-sm-130 {
    padding-top: 130px;
  }

  .pt-sm-140 {
    padding-top: 140px;
  }

  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pb-sm-10 {
    padding-bottom: 10px;
  }

  .pb-sm-20 {
    padding-bottom: 20px;
  }

  .pb-sm-30 {
    padding-bottom: 30px;
  }

  .pb-sm-40 {
    padding-bottom: 40px;
  }

  .pb-sm-50 {
    padding-bottom: 50px;
  }

  .pb-sm-60 {
    padding-bottom: 60px;
  }

  .pb-sm-70 {
    padding-bottom: 70px;
  }

  .pb-sm-80 {
    padding-bottom: 80px;
  }

  .pb-sm-90 {
    padding-bottom: 90px;
  }

  .pb-sm-100 {
    padding-bottom: 100px;
  }

  .pb-sm-110 {
    padding-bottom: 110px;
  }

  .pb-sm-120 {
    padding-bottom: 120px;
  }

  .pb-sm-130 {
    padding-bottom: 130px;
  }

  .pb-sm-140 {
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 480px) {
  .mt-xs-0 {
    margin-top: 0 !important;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .mt-xs-20 {
    margin-top: 20px;
  }

  .mt-xs-30 {
    margin-top: 30px;
  }

  .mt-xs-40 {
    margin-top: 40px;
  }

  .mt-xs-50 {
    margin-top: 50px;
  }

  .mt-xs-60 {
    margin-top: 60px;
  }

  .mt-xs-70 {
    margin-top: 70px;
  }

  .mt-xs-80 {
    margin-top: 80px;
  }

  .mt-xs-90 {
    margin-top: 90px;
  }

  .mt-xs-100 {
    margin-top: 100px;
  }

  .mt-xs-110 {
    margin-top: 110px;
  }

  .mt-xs-120 {
    margin-top: 120px;
  }

  .mt-xs-130 {
    margin-top: 130px;
  }

  .mt-xs-140 {
    margin-top: 140px;
  }

  .mb-xs-0 {
    margin-bottom: 0 !important;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }

  .mb-xs-20 {
    margin-bottom: 20px;
  }

  .mb-xs-30 {
    margin-bottom: 30px;
  }

  .mb-xs-40 {
    margin-bottom: 40px;
  }

  .mb-xs-50 {
    margin-bottom: 50px;
  }

  .mb-xs-60 {
    margin-bottom: 60px;
  }

  .mb-xs-70 {
    margin-bottom: 70px;
  }

  .mb-xs-80 {
    margin-bottom: 80px;
  }

  .mb-xs-90 {
    margin-bottom: 90px;
  }

  .mb-xs-100 {
    margin-bottom: 100px;
  }

  .mb-xs-110 {
    margin-bottom: 110px;
  }

  .mb-xs-120 {
    margin-bottom: 120px;
  }

  .mb-xs-130 {
    margin-bottom: 130px;
  }

  .mb-xs-140 {
    margin-bottom: 140px;
  }

  .pt-xs-0 {
    padding-top: 0;
  }

  .pt-xs-10 {
    padding-top: 10px;
  }

  .pt-xs-20 {
    padding-top: 20px;
  }

  .pt-xs-30 {
    padding-top: 30px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pt-xs-50 {
    padding-top: 50px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .pt-xs-70 {
    padding-top: 70px;
  }

  .pt-xs-80 {
    padding-top: 80px;
  }

  .pt-xs-90 {
    padding-top: 90px;
  }

  .pt-xs-100 {
    padding-top: 100px;
  }

  .pt-xs-110 {
    padding-top: 110px;
  }

  .pt-xs-120 {
    padding-top: 120px;
  }

  .pt-xs-130 {
    padding-top: 130px;
  }

  .pt-xs-140 {
    padding-top: 140px;
  }

  .pb-xs-0 {
    padding-bottom: 0;
  }

  .pb-xs-10 {
    padding-bottom: 10px;
  }

  .pb-xs-20 {
    padding-bottom: 20px;
  }

  .pb-xs-30 {
    padding-bottom: 30px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-50 {
    padding-bottom: 50px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .pb-xs-70 {
    padding-bottom: 70px;
  }

  .pb-xs-80 {
    padding-bottom: 80px;
  }

  .pb-xs-90 {
    padding-bottom: 90px;
  }

  .pb-xs-100 {
    padding-bottom: 100px;
  }

  .pb-xs-110 {
    padding-bottom: 110px;
  }

  .pb-xs-120 {
    padding-bottom: 120px;
  }

  .pb-xs-130 {
    padding-bottom: 130px;
  }

  .pb-xs-140 {
    padding-bottom: 140px;
  }
}
/*-------------------------------------------------------
  Helper Classes
  -------------------------------------------------------*/
.box-shadow {
  -webkit-box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
  box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.box-shadow:hover {
  -webkit-box-shadow: 0 20px 40px rgba(72, 78, 85, 0.1);
  box-shadow: 0 20px 40px rgba(72, 78, 85, 0.1);
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}

.hover-scale img {
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}

.hover-scale:hover img {
  -webkit-transform: scale(1.5, 1.5);
  -ms-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}

.hover-fade img {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
}

.hover-fade:hover img {
  opacity: 0.8;
}

/*-------------------------------------------------------
  Bottom Gradient
  -------------------------------------------------------*/
.bottom-gradient:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}

/*-------------------------------------------------------
  Section Dividers
  -------------------------------------------------------*/
.top-divider {
  border-top: 1px solid #e1e1e1;
}

.bottom-divider {
  border-bottom: 1px solid #e1e1e1;
}

/*-------------------------------------------------------
  Image Floats
  -------------------------------------------------------*/
.alignright {
  float: right;
  margin: 10px 0 10px 34px;
}

.alignleft {
  float: left;
  margin: 10px 34px 10px 0;
}

.margin-top-24 {
  margin-top: 24px;
}

/*Sticky Sidebar*/
@media only screen and (min-width: 992px) {
  .sticky_sidebar {
    will-change: min-height;
  }

  .sticky_sidebar__inner {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    /* For browsers don't support translate3d. */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
  }
}
/*#4111 Price style*/
.price-w-discount {
  color: #d40000;
  font-size: 1.15em;
}

/* #4194 xjeans styling >>*/
.izmeri-variant {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, rgba(255, 255, 255, 0)), color-stop(10%, white), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 5%, white 10%, white 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 5%, white 10%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 5%, white 10%, white 100%);
  display: inline-block;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0%;
  padding-top: 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 5px;
  opacity: 0;
  pointer-events: none;
  bottom: -10px;
}

.product:hover .izmeri-variant {
  pointer-events: auto;
  -webkit-transition: 0.2s !important;
  -o-transition: 0.2s !important;
  transition: 0.2s !important;
  opacity: 1;
  bottom: 0px;
}

.izmeri-text {
  font-size: 0.7em;
  width: 100%;
  max-height: 20%;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.related-img {
  width: 2.4em;
  margin-right: 5px;
  margin-left: 5px;
}

@media (max-width: 960px) {
  .izmeri-text {
    font-size: 0.55em !important;
  }

  .related-img {
    width: 1.7em !important;
  }

  .kk-info {
    width: 0.8em !important;
  }
}
.product-title-expand {
  font-size: 0.7em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.kk-info {
  width: 1.1em;
  margin-left: 3px !important;
  margin-bottom: 2px !important;
}

.kk {
  font-size: 1.15em !important;
  font-weight: 400;
}

.kk-info-div {
  background-color: black;
  width: 90%;
  height: 2.8em;
  top: 2px;
  position: absolute;
  margin-left: 5%;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  opacity: 0;
  display: none;
  pointer-events: none;
}

.kk-info-text {
  font-size: 0.8em;
  line-height: 1.5;
  color: white;
  margin-top: 2px;
}

.kk-info:hover + .kk-info-div {
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: block !important;
}

.kk-cena {
  font-size: 0.8em;
}

.standarta-cena-cipars {
  font-size: 13px;
  font-weight: 300;
}

.product_price_div {
  margin-bottom: 15px !important;
  width: 100% !important;
  line-height: 1;
}

/* #4194 xjeans styling <<*/
/* #4222 xjeans styling >>*/
.titlecard {
  background-color: #0000009c;
  position: absolute;
  padding-top: 7px;
  top: 40px;
  padding-right: 13px;
  padding-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
  padding-bottom: 7px;
}

.page-title {
  padding-top: 0px !important;
}

.cms-column-1-2 {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
}

.cms-column-1-2:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.9;
}

.cms-column-1-2:hover .titlecard {
  -webkit-transform: translateY(-5px) !important;
  -ms-transform: translateY(-5px) !important;
  transform: translateY(-5px) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cms-column-1-3 {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
}

.cms-column-1-3:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.9;
}

.cms-column-1-3:hover .titlecard {
  -webkit-transform: translateY(-5px) !important;
  -ms-transform: translateY(-5px) !important;
  transform: translateY(-5px) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cms-column-1-4 {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
}

.cms-column-1-4:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.9;
}

.cms-column-1-4:hover .titlecard {
  -webkit-transform: translateY(-5px) !important;
  -ms-transform: translateY(-5px) !important;
  transform: translateY(-5px) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

h1.titlecard {
  color: white !important;
}

h2.titlecard {
  color: white !important;
}

a.titlecard {
  color: white !important;
}

/* #4222 xjeans styling <<*/
/* size tool */
#toggle-size-tool {
  padding-top: 13px !important;
  padding-bottom: 12px !important;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  #toggle-size-tool {
    width: 155px;
    margin-left: 15px !important;
  }
}
#toggle-size-tool span {
  color: #2b2b2b;
  font-weight: 500;
}

.size__select {
  padding-left: 10px;
}

#izmeru-container {
  border-color: black;
  border: 2px;
  border-style: solid;
  padding-left: 10px;
  max-width: 26em;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

#izmeru-container input {
  margin-bottom: 10px;
}

#izmeru-container h1 {
  font-size: 1.3em;
  padding-left: 8px;
  padding-right: 8px;
  pointer-events: none;
  margin-bottom: 3px;
}

.slider-circ {
  -webkit-appearance: none;
  width: 50%;
  height: 6px;
  background: black;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.slider-circ:focus {
  background: black;
  border-color: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.slider-circ::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 23px;
  background: red;
  cursor: pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.slider-circ::-moz-range-thumb {
  width: 13px;
  height: 23px;
  background: red;
  cursor: pointer;
}

.slider-circ:hover {
  opacity: 1;
}

.circ-container {
  margin-left: -91px;
}

.slider-length {
  -webkit-appearance: none;
  width: 50%;
  height: 7px;
  background: black;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.slider-length:focus {
  background: black;
  border-color: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.slider-length::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 23px;
  background: red;
  cursor: pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.slider-length::-moz-range-thumb {
  width: 13px;
  height: 23px;
  background: red;
  cursor: pointer;
}

.slider-length:hover {
  opacity: 1;
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: middle;
  -ms-flex-pack: middle;
  -webkit-justify-content: middle;
  justify-content: middle;
}

.length-container {
  margin-left: -91px;
}

.kuras-whole {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  font-size: 25px;
  margin-top: 0px;
  padding-right: 10px;
  margin-bottom: 15px;
}

#kuras {
  -webkit-transition: 0.5s ease-in;
  -o-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  font-weight: 600;
  margin-left: 3px;
}

.info {
  width: 25px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 19px;
  margin-left: 37px;
}

.info {
  width: 25px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 19px;
  margin-left: 37px;
}

.info-hover {
  position: absolute;
  left: 44px;
  background-color: black;
  color: white;
  padding: 0px 0px 0px 20px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  width: 22.2em;
  height: 4.4em;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -3px;
}

#info-hover-length {
  height: 8.3em;
}

#info-text-length {
  font-size: 1em;
  width: 50%;
  margin-right: 20px;
}

.info-text {
  font-size: 0.8em;
  font-weight: 400;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 1.2;
  color: white;
}

#info:hover .info-hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sizing-img-circ {
  margin-left: 10px;
  margin-right: 0px;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  width: 45%;
}

.sizing-img-length {
  margin-left: 10px;
  margin-right: 0px;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
  width: 30%;
  height: 190px;
  -o-object-position: 0px -25px;
  object-position: 0px -25px;
}

.under-slider {
  margin-top: 5px;
  margin-bottom: 15px;
  pointer-events: none;
}

/*size tool <<*/
/*size tool 2.00* >> */
.measure-container {
  position: relative;
  margin-bottom: 20px;
}

.measure-container input {
  border: none;
}

.measure-container .measure-tool {
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border-color: #e1e1e1;
}

.measure-container .measure-left {
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 50px;
  width: 50%;
}

.measure-container .close-icon {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 25px;
  /* fill: white !important; */
  cursor: pointer;
}

@media (max-width: 1800px) {
  .measure-container .measure-result {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .measure-container .measure-result-class {
    margin-top: -20px;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }
}
.measure-container .vert-class {
  position: relative;
  height: 100%;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
.measure-container .width-slider {
  margin: 5px 0px 0px 0px !important;
  width: 60%;
  fill: black;
}
.measure-container .width-slider.no-margin {
  margin-top: 0 !important;
}
.measure-container .horizontal-img {
  position: absolute;
  z-index: -20;
  width: 55%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.measure-container .size3-slider .horizontal-img{
  bottom: 37px;
}
.measure-container .size-slider-horizontal{
  text-align: center;
  position: relative;
  padding: 10px
}
.measure-container .size-slider-vertical{
  position: absolute;
  right: 8px;
  height: 350px;
  top: 83px;
}
.measure-container .width-output {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.measure-container .width-info {
  position: absolute;
  font-size: 0.6em;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.measure-container .height-slider {
  -webkit-transform: rotate(90deg) translate(0%,-235%);
  -ms-transform: rotate(90deg) translate(0%,-235%);
  transform: rotate(90deg) translate(0%,-235%);
  width: 260px;
  /*-moz-transform-origin: 100% 100%;*/
  /*-o-transform-origin: 100% 100%;*/
  /*-webkit-transform-origin: 100% 100%;*/
}

.height-slider {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.measure-container .vertical-img {
  position: absolute;
  height: 260px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right:15px;
}

.measure-container .height-info {
  position: absolute;
  top: 0;
  display: block;
  font-size: 0.6em;
  font-weight: bold;
  right:0;
}

.measure-container .height-output {
  position: absolute;
  bottom: 0;
  right:15px;
}

.measure-container .jeans-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin: auto;
  /*width: 70%;*/
  z-index: -20;
}

.measure-container .divider-vert {
  padding-bottom: 54px;
}

.measure-container .divider-vert img {
  width: 18px;
  height: 2px;
  margin-left: 28px;
}

.measure-container .measure-image-vert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.measure-container .measure-result-class {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  height: 290px;
  max-width: 100%;
  margin-left: auto;
  width: 20px;
  vertical-align: top;
}

@media (max-width: 1800px) {
  .measure-container .measure-result-class {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 200px;
    padding-left: 0;
  }

  .measure-container .measure-left {
    margin-left: 20%;
    margin-right: auto;
    width: 100%;
  }

  .measure-container .measure-result {
    width: 180px;
  }
}
@media (max-width: 1000px) {
  .measure-container .measure-left {
    margin-left: 10%;
  }
}
@media (max-width: 700px) {
  .measure-container .measure-left {
    margin-left: 20%;
  }
}
@media (max-width: 500px) {
  .measure-container .measure-left {
    margin-left: 0;
  }
}
@media (max-width: 340px) {
  .measure-container .measure-left {
    margin-left: -5px !important;
  }
}
.measure-container .measure-result {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  text-align: center;
  height: 100%;
  font-size: 1.2em;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.measure-container .varetu-deret {
  font-size: 0.9em;
  font-weight: bold;
}

.measure-container .final-result {
  background-color: black;
  color: white;
  width: 120px;
  height: 35px;
  line-height: 1.5;
  margin-top: 10px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  font-weight: bold;
  font-size: 1.2em;
}

.measure-container .result-background {
  background-color: #f0f0f0;
  position: absolute;
  padding: 30px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  margin-top: -30px;
}

@media (min-width: 1200px) {
  .result-background {
    margin-right: 15px;
  }
}
@media (min-width: 1440px) {
  .result-background {
    margin-left: 20px;
  }
}
/* slider design */
.measure-container input[type="range"] {
  margin: 13px 0;
  background-color: transparent;
  -webkit-appearance: none;
}

.measure-container input[type="range"]:focus {
  outline: none;
}

.measure-container input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
}

.measure-container input[type="range"]::-webkit-slider-thumb {
  margin-top: -13.5px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2.1px solid #00001e;
  -webkit-border-radius: 21px;
  border-radius: 21px;
  cursor: pointer;
  -webkit-appearance: none;
}

.measure-container input[type="range"]:focus::-webkit-slider-runnable-track {
  background: black;
}

.measure-container input[type="range"]::-moz-range-track {
  background: black;
  width: 100%;
  height: 0px;
  cursor: pointer;
}

.measure-container input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border: 2.1px solid #00001e;
  border-radius: 21px;
  cursor: pointer;
}

.measure-container input[type="range"]::-ms-track {
  background: black;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 0px;
  cursor: pointer;
}

.measure-container input[type="range"]::-ms-fill-lower {
  background: #f2f2f2;
  border: 0.5px solid #010101;
}

.measure-container input[type="range"]::-ms-fill-upper {
  background: rgba(255, 255, 255, 0.78);
  border: 0.5px solid #010101;
}

.measure-container input[type="range"]::-ms-thumb {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border: 2.1px solid #00001e;
  border-radius: 21px;
  cursor: pointer;
  margin-top: 0px;
}

.measure-container input[type="range"]:focus::-ms-fill-lower {
  background: black;
}

.measure-container input[type="range"]:focus::-ms-fill-upper {
  background: black;
}

/*size tool 2.00* << */
/* dec 2020 css update */
.page-title__title {
  font-size: 1.8em;
  padding-top: 15px;
}

@media (min-width: 760px) {
  .page-title__title {
    font-size: 2.1em;
    margin-bottom: 30px;
    padding-top: 25px;
  }
}
@media (max-width: 600px) {
  #customer_details .mb-30 {
    text-align: center;
    margin-bottom: 15px;
    margin-left: -4px;
  }
}
/*-------------------------------------------------------
  Helper Classes
  -------------------------------------------------------*/
.order-fulfilment .top-border-row-bold {
  border-top: solid 2px black;
}

.order-fulfilment .size__select {
  margin-bottom: 0px;
}

.order-fulfilment .width-100 {
  width: 100%;
}

.tag--yellow {
  background: #ffde7b;
  color: #d9534f;
}

.tag--green,
.tag--new {
  background: #8ebf17;
  color: #fff;
}

.tag--light-green {
  background: #a5cf6a;
  color: #fff;
}

.tag--grey {
  background: #50514f;
  color: #fff;
}

.tag--blue {
  background: #225f8f;
  color: #fff;
}

.tag--red {
  background: #d9534f;
  color: #fff;
  text-transform: uppercase;
}

.tag {
  display: inline-block;
  padding: 6px 8px;
  font-size: 10px;
  text-transform: uppercase;
  margin: -6px 1px -6px 0;
}

.sub-cart-overlay div.sub-cart-container {
  position: fixed;
  left: 2%;
  top: 5%;
  width: 96%;
  height: 90%;
  border: 1px solid #666;
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  z-index: 3000;
  overflow-y: scroll;
}

.sub-cart-overlay div.background {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #000;
  opacity: 0.5;
  z-index: 2000;
  top: 0;
  left: 0;
  overflow: hidden;
}

#sub-cart .product-thumbnail a img {
  max-height: 80px !important;
}

.noscroll {
  position: fixed;
  overflow: hidden;
}

.sub-cart-overlay .close {
  margin: 10px;
  font-size: 50px;
  color: #ec2424;
}

.sub-cart-overlay .actions {
  float: left;
  margin-top: 70px;
}

/*-------------------------------------------------------
  Custom elements
  -------------------------------------------------------*/
#adm_line_disc {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.col-lg-10.order-lg-2.mb-40 {
  padding-right: 8px;
}

@media (max-width: 350px) {
  .delivery-info {
    -webkit-transform: translateY(0px) !important;
    -ms-transform: translateY(0px) !important;
    transform: translateY(0px) !important;
  }
}
.cookie-msg {
  color: #c8c8c8 !important;
}

.payment-info {
  width: 50%;
  display: inline-block;
  margin-bottom: -20px;
  margin-left: 3px;
}

.delivery-info {
  width: 47%;
  display: inline-block;
  text-align: center;
}

@media (min-width: 768px) {
  .delivery-info {
    padding-right: 30px;
    padding-left: 30px;
  }

  .payment-info {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.more-info,
.less-info {
  text-align: center;
  font-size: 0.8em;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 0.1em;
  border-bottom: 1px solid #e1e1e1;
}

.more-info a,
.less-info a {
  background: #fff;
  padding: 0 10px;
}

.info-block .hidden-block {
  display: none;
}

.info-block .hidden-block.expanded {
  display: block;
}

.payment-info-open img {
  height: 32px;
  margin-top: 3px;
  margin-left: 5px;
  margin-bottom: 4px;
}

.payment-info-open {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

@media (max-width: 768px) {
  .payment-info-open {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }

  .row.row-10.clearfix.payment-info {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
.less-info a span {
  background-color: #000;
  display: inline-block;
  width: 10px;
  height: 2px;
}

.more-info a span {
  position: relative;
  vertical-align: center;
}

.more-info a span:after,
.more-info a span:before {
  content: "";
  position: absolute;
  background-color: #7b7b7b;
  width: 10px;
  height: 2px;
  right: -5px;
  top: 7px;
}

.more-info a span:after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* Item hero flicky buttons*/
.item-hero .flickity-prev-next-button {
  display: block;
  position: absolute;
  top: 40%;
  margin-top: -17px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-hero .flickity-prev-next-button.previous {
  left: -50px;
}

.item-hero .flickity-prev-next-button.next {
  right: -50px;
}

.item-hero:hover .flickity-prev-next-button.previous {
  opacity: 1;
  left: -25px;
}

.item-hero:hover .flickity-prev-next-button.next {
  opacity: 1;
  right: -25px;
}

.disable-scrollbars *::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* Chrome/Safari/Webkit */
}

.disable-scrollbars * {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.mobile-promo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-promo {
    display: none;
  }
}
.product-tag-incl-vat {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
}

.product-tag-incl-vat-cart {
  font-size: 10px;
  font-weight: normal;
}

/*transfer inport*/
.transfer-import-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.transfer-import-panel > div {
  padding: 20px;
  max-width: 100%;
  list-style-position: inside;
  display: list-item;
  border-bottom: solid 1px;
}

.transfer-import-panel > div select {
  width: 200px;
  display: inline-block;
  margin-bottom: 0;
}

.transfer-import-panel > div .example {
  display: inline-block;
}

input[type="checkbox"] + label.mark-no-item:before {
  border: 1px solid #9c2929;
}

input[type="checkbox"]:checked + label.mark-no-item::after {
  background-color: #9c2929;
}

label.mark-no-item {
  color: #9c2929;
}

.order-list .grid-list-table .list-rows .order.transfer:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#scanbar.sticky {
  position: fixed;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
  top: 0px;
}

#scanbar.sticky .control-row {
  background-color: #eaeaea;
}

#scanbar.sticky .barcode {
  width: 0px;
  height: 0px;
  z-index: -10;
}

#scanbar.sticky .scan-barcode {
  margin-top: 0 !important;
}

@media (max-width: 575px) {
  #scanbar.sticky {
    padding-right: 50px;
  }
}
@media (min-width: 576px) {
  #scanbar.sticky {
    max-width: 490px;
  }
}
@media (min-width: 768px) {
  #scanbar.sticky {
    max-width: 660px;
  }
}
@media (min-width: 992px) {
  #scanbar.sticky {
    max-width: 900px;
    top: 80px;
  }
}
@media (min-width: 1200px) {
  #scanbar.sticky {
    max-width: 1080px;
    top: 80px;
  }
}
@media (min-width: 1440px) {
  #scanbar.sticky {
    top: 80px;
    max-width: 1240px;
  }
}
/*adm_item*/
#inventory-table table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 6;
  background: #fff;
}

#inventory-table table thead th:first-child {
  background: #e9ecef;
}

#inventory-table table tr.bg-A9ACAF td {
  background: #A9ACAF;
}

#inventory-table table thead td:first-child {
  background: #9C9FA2;
}

#inventory-table table td {
  border: 1px solid #e9ecef;
}

#inventory-table table td:first-child,
#inventory-table table th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 10;
}

#inventory-table table tbody tr > td:first-child {
  z-index: 5;
  background: #ced1d4;
}

#inventory-table table tbody tr:hover td {
  background: #ced1d4 !important;
}

/*#inventory-table table tbody td:nth-child(even) {background: #F3F3F3}*/
#inventory-table table tbody tr.bg-dark td {
  background: #ced1d4;
}

/*#inventory-table table thead th:nth-child(even) {*/
/*background: #F3F3F3;*/
/*}*/
#inventory-table table thead tr > th:first-child {
  background: #ced1d4;
}

#inventory-table .loc-color {
  background: #F3F3F3;
}

#inventory-table .accordion__body tbody tr {
  line-height: 2px;
}

#item-order-block .size__select.init-bold {
  font-weight: 600;
  color: #555;
}

#item-order-block .size__select.init-bold option {
  font-weight: normal;
}

#item-order-block .size__select {
  color: #000;
}

.qty-in-doc, span.qty-in-doc {
  position: relative;
}

.qty-in-doc-block {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 10px;
  background-color: #dadcb1;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-weight: bold;
  z-index: 10000;
  bottom: 20px;
}

.qty-in-doc-block span {
  display: block;
  width: 80px;
  line-height: 15px;
}

.qty-in-doc-block.horizontal {
  max-width: 250px;
  height: min-content;
  max-height: 200px;
  width: max-content;
}
.qty-in-doc-block.horizontal span{
  display: inline-block;
}

.qty-in-doc:hover .qty-in-doc-block, span.qty-in-doc:hover .qty-in-doc-block {
  display: block;
}

.size-quantity #size__select {
  margin-top: 26px;
  margin-bottom: 20px;
}

.shop-win a {
  color: #FFFFFF !important;
}

.shop-win ul a {
  margin-left: 20px;
  font-size: 13px !important;
}

.text-black{
  color: #000000;
}

.cookie-dialog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483631;
  visibility: hidden;
}
.cookie-dialog-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.cookie-dialog-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 910px;
  max-height: 100%;
  background-color: white;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) {
  .cookie-dialog-box {
    margin-top: auto;
    margin-bottom: auto;
  }
}
.cookie-dialog-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #d9d9d9;
}
.cookie-dialog-head-logo {
  width: 100%;
}
.cookie-dialog-head-logo img {
  max-height: 46px;
}
.cookie-dialog-head .close {
  padding: 10px;
  margin-right: -10px;
  opacity: 1;
  cursor: pointer;
}
.cookie-dialog-head .close i {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
.cookie-dialog-head .close i::after, .cookie-dialog-head .close i::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  top: 8px;
  left: 1px;
}
.cookie-dialog-head .close i::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cookie-dialog .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  min-height: 54px;
  border-bottom: 1px solid #d9d9d9;
  overflow-x: auto;
}
.cookie-dialog .nav-tabs a {
  display: block;
  width: 100%;
  text-align: center;
  color: #222222;
  font-weight: 600;
  white-space: nowrap;
  padding: 15px;
  border-bottom: 1px solid transparent;
}
.cookie-dialog .nav-tabs a.active {
  color: #d40000;
  border-bottom: 1px solid #d40000;
}
.cookie-dialog-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: auto;
}
.cookie-dialog-content .tab-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 20vh;
  padding-left: 10px;
  padding-right: 10px;
}
.cookie-dialog-content .tab-content-wrapper .text-wrapper {
  padding: 15px 5px 5px;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .tab-content-wrapper .text-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.cookie-dialog-content .tab-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  min-height: 20vh;
  overflow: auto;
}
.cookie-dialog-content .tab-content .tab-pane {
  display: none;
  height: 100%;
}
.cookie-dialog-content .tab-content .tab-pane.active {
  display: block;
}
.cookie-dialog-content .check {
  position: relative;
  width: 57px;
  height: 32px;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .check {
    position: initial;
    width: auto;
    height: auto;
    margin-right: auto;
  }
}
.cookie-dialog-content .check input {
  height: auto;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin-bottom: 0;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
}
.cookie-dialog-content .check input:checked + span {
  background-color: #65c300 !important;
}
.cookie-dialog-content .check input:checked + span::after {
  -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
          transform: translateX(25px);
}
.cookie-dialog-content .check input:disabled {
  cursor: default;
}
.cookie-dialog-content .check span {
  position: relative;
  display: block;
  width: 57px;
  height: 32px;
  background-color: #d7d7d7 !important;
  -webkit-border-radius: 32px;
          border-radius: 32px;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s;
}
.cookie-dialog-content .check span:after {
  content: '';
  display: block;
  background-color: #ffffff;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  position: absolute;
  left: 4px;
  bottom: 4px;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}
.cookie-dialog-content .description {
  height: 100%;
  min-height: 20vh;
  margin-left: -10px;
  margin-right: -10px;
  overflow: auto;
}
.cookie-dialog-content .description .wrapper {
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .description .wrapper {
    padding-top: 20px;
  }
}
.cookie-dialog-content .options {
  margin-left: -10px;
  margin-right: -10px;
}
.cookie-dialog-content .options ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .options ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #d9d9d9;
  }
}
.cookie-dialog-content .options ul li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 10px;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .options ul li {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 1px solid #d9d9d9;
  }
  .cookie-dialog-content .options ul li:last-child {
    border-right: none;
  }
}
.cookie-dialog-content .options label {
  width: 100%;
  color: #222222;
  padding: 15px;
  margin-bottom: 0;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-content .options label {
    padding: 20px;
  }
}
.cookie-dialog-content .cookie-list {
  margin-top: -15px;
}
.cookie-dialog-content .cookie-list-item .gg-chevron-down {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  color: #717274;
  border: 2px solid transparent;
  margin-right: 15px;
  }
.cookie-dialog-content .cookie-list-item .gg-chevron-down::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 4px;
  top: 2px;
}
.cookie-dialog-content .cookie-list-item .item-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.cookie-dialog-content .cookie-list-item .item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie-dialog-content .cookie-list-item .item-head .toggle-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  text-align: left;
  padding: 0;
  border: none;
  outline: 0;
  cursor: pointer;
}
.cookie-dialog-content .cookie-list-item .item-head .toggle-title label {
  color: #222222;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-dialog-content .cookie-list-item .item-head .toggle-title:hover label,
.cookie-dialog-content .cookie-list-item .item-head .toggle-title:hover span {
  color: #d40000;
}
.cookie-dialog-content .cookie-list-item .item-head .toggle-title.open i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cookie-dialog-content .cookie-list-item .item-head .checkbox {
  position: relative;
  margin-left: auto;
}
.cookie-dialog-content .cookie-list-item .item-count {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  background-color: #d9d9d9;
  text-align: center;
  font-size: smaller;
  font-weight: 700;
  line-height: 20px;
  margin-left: 10px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
}
.cookie-dialog-content .cookie-list-item .item-text {
  padding-top: 5px;
}
.cookie-dialog-content .cookie-list-item .item-dropdown {
  display: none;
}
.cookie-dialog-content .cookie-list-details {
  padding-top: 15px;
}
.cookie-dialog-content .cookie-list-details .detail {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
.cookie-dialog-content .cookie-list-details .detail a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222222;
  font-weight: 700;
}
.cookie-dialog-content .cookie-list-details .detail a i {
  margin-left: auto;
}
.cookie-dialog-content .cookie-list-details .detail a:hover,
.cookie-dialog-content .cookie-list-details .detail a:hover i {
  color: #d40000;
}
.cookie-dialog-content .cookie-list-details .detail a.open i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cookie-dialog-content .cookie-list-details .detail-more {
  display: none;
}
.cookie-dialog-content .cookie-list-details .detail-more::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cookie-dialog-content .cookie-list-details .detail-more .ck {
  background-color: #efefef;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
.cookie-dialog-content .cookie-list-details .detail-more .ck:last-child {
  margin-bottom: 0;
}
.cookie-dialog-content .cookie-list-details .detail-more .ck-name {
  font-weight: 700;
  margin-bottom: 5px;
}
.cookie-dialog-content .cookie-list-details .detail-more .ck-details {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #d9d9d9;
}
.cookie-dialog-content .cookie-list-footer {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cookie-dialog-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px;
  border-top: 1px solid #d9d9d9;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.cookie-dialog-footer button, .cookie-dialog-footer .empty-space, .cookie-dialog-footer a {
  width: 100%;
  height: 54px;
  margin-bottom: 10px;
}
.cookie-dialog-footer .empty-space{
  display: none;
}
.cookie-dialog-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #868686;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .cookie-dialog-footer button, .cookie-dialog-footer .empty-space, .cookie-dialog-footer a {
    margin-right: 10px;
  }
  .cookie-dialog-footer button:last-child {
    margin-right: 0;
  }
  .cookie-dialog-footer .empty-space{
    display: block;
  }
}
.top-bar__currency-language{
  align-content: center;
}