/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: "Manrope", sans-serif;
  --main-font-size: 15px;
  --main-font-color: #000;
  --body-background: #fff;
  /* layout */
  --container-width: 1570px;
  --container-pad: 30px;
  /*--> Place custom settings here <--*/
  --color-dark-black-opacity-75: rgb(0, 0, 0,0.75);
  --color-black: #10100f;
  --color-black-opacity-90: rgba(16, 16, 15, 0.9);
  --color-black-opacity-70: rgba(16, 16, 15, 0.7);
  --color-grey-lighter-3-opacity-90: rgba(234, 234, 234, 0.9);
  --color-grey-lighter-3:	#EAEAEA;
  --color-grey-lighter-2: #FCFCFC;
  --color-grey-lighter: #fcfaf5;
  --color-grey-light-2: #DCDCDC;
  --color-grey-light: #ececec;
  --color-grey: #F0F0F0;
  --color-grey-dark:#B4B4B4;
  --color-white:#fff;
  --color-burgundy: #A72525;
  --color-beige-light: #9C8972;
  --color-beige-light-opacity-90: rgba(156, 137, 114,0.9);
  --color-beige: #967C5E;
  --color-brown-dark: #2E2622;
  --color-brown-dark-opacity-90: rgba(46, 38, 34,0.9);
  --color-green: #409966;
  --color-charcoal: #232124;
  --color-charcoal-opacity-90: rgba(35, 33, 36,0.9);
  --color-yellow:#ECC70E;
  --color-brown:#552B10;
  --color-brown-opacity-44: rgba( 85, 43, 16, 0.44);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 768px) {
  :root {
    --container-pad: 14px;
  }
}
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

@media screen and (max-width: 1600px) {
  .text-xxl-center {
    text-align: center;
  }

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

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

  .float-xxl-left {
    float: left;
  }

  .float-xxl-right {
    float: right;
  }

  .overflow-xxl-hidden {
    overflow: hidden;
  }

  .overflow-xxl-visible {
    overflow: visible;
  }

  .position-xxl-static {
    position: static;
  }

  .position-xxl-relative {
    position: relative;
  }

  .position-xxl-absolute {
    position: absolute;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }
}
@media screen and (max-width: 1400px) {
  .text-xl-center {
    text-align: center;
  }

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

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

  .float-xl-left {
    float: left;
  }

  .float-xl-right {
    float: right;
  }

  .overflow-xl-hidden {
    overflow: hidden;
  }

  .overflow-xl-visible {
    overflow: visible;
  }

  .position-xl-static {
    position: static;
  }

  .position-xl-relative {
    position: relative;
  }

  .position-xl-absolute {
    position: absolute;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }

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

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

  .float-lg-left {
    float: left;
  }

  .float-lg-right {
    float: right;
  }

  .overflow-lg-hidden {
    overflow: hidden;
  }

  .overflow-lg-visible {
    overflow: visible;
  }

  .position-lg-static {
    position: static;
  }

  .position-lg-relative {
    position: relative;
  }

  .position-lg-absolute {
    position: absolute;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }

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

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

  .float-md-left {
    float: left;
  }

  .float-md-right {
    float: right;
  }

  .overflow-md-hidden {
    overflow: hidden;
  }

  .overflow-md-visible {
    overflow: visible;
  }

  .position-md-static {
    position: static;
  }

  .position-md-relative {
    position: relative;
  }

  .position-md-absolute {
    position: absolute;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }

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

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

  .float-sm-left {
    float: left;
  }

  .float-sm-right {
    float: right;
  }

  .overflow-sm-hidden {
    overflow: hidden;
  }

  .overflow-sm-visible {
    overflow: visible;
  }

  .position-sm-static {
    position: static;
  }

  .position-sm-relative {
    position: relative;
  }

  .position-sm-absolute {
    position: absolute;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

.off-3 {
  margin-left: 25%;
}

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

.off-6 {
  margin-left: 50%;
}

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

.off-9 {
  margin-left: 75%;
}

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-1,
.gap-1-x {
  margin-left: -12px;
}
.gap-1 > *,
.gap-1-x > * {
  padding-left: 12px;
}

.gap-1,
.gap-1-y {
  margin-top: -12px;
}
.gap-1 > *,
.gap-1-y > * {
  padding-top: 12px;
}

.gap-2,
.gap-2-x {
  margin-left: -24px;
}
.gap-2 > *,
.gap-2-x > * {
  padding-left: 24px;
}

.gap-2,
.gap-2-y {
  margin-top: -24px;
}
.gap-2 > *,
.gap-2-y > * {
  padding-top: 24px;
}

.gap-3,
.gap-3-x {
  margin-left: -9px;
}
.gap-3 > *,
.gap-3-x > * {
  padding-left: 9px;
}

.gap-3,
.gap-3-y {
  margin-top: -9px;
}
.gap-3 > *,
.gap-3-y > * {
  padding-top: 9px;
}

.gap-4,
.gap-4-x {
  margin-left: -3px;
}
.gap-4 > *,
.gap-4-x > * {
  padding-left: 3px;
}

.gap-4,
.gap-4-y {
  margin-top: -3px;
}
.gap-4 > *,
.gap-4-y > * {
  padding-top: 3px;
}

.gap-5,
.gap-5-x {
  margin-left: -6px;
}
.gap-5 > *,
.gap-5-x > * {
  padding-left: 6px;
}

.gap-5,
.gap-5-y {
  margin-top: -6px;
}
.gap-5 > *,
.gap-5-y > * {
  padding-top: 6px;
}

.gap-6,
.gap-6-x {
  margin-left: -10px;
}
.gap-6 > *,
.gap-6-x > * {
  padding-left: 10px;
}

.gap-6,
.gap-6-y {
  margin-top: -10px;
}
.gap-6 > *,
.gap-6-y > * {
  padding-top: 10px;
}

.gap-7,
.gap-7-x {
  margin-left: -64px;
}
.gap-7 > *,
.gap-7-x > * {
  padding-left: 64px;
}

.gap-7,
.gap-7-y {
  margin-top: -64px;
}
.gap-7 > *,
.gap-7-y > * {
  padding-top: 64px;
}

.gap-8,
.gap-8-x {
  margin-left: -80px;
}
.gap-8 > *,
.gap-8-x > * {
  padding-left: 80px;
}

.gap-8,
.gap-8-y {
  margin-top: -80px;
}
.gap-8 > *,
.gap-8-y > * {
  padding-top: 80px;
}

.gap-9,
.gap-9-x {
  margin-left: -44px;
}
.gap-9 > *,
.gap-9-x > * {
  padding-left: 44px;
}

.gap-9,
.gap-9-y {
  margin-top: -44px;
}
.gap-9 > *,
.gap-9-y > * {
  padding-top: 44px;
}

.gap-10,
.gap-10-x {
  margin-left: -13.5px;
}
.gap-10 > *,
.gap-10-x > * {
  padding-left: 13.5px;
}

.gap-10,
.gap-10-y {
  margin-top: -13.5px;
}
.gap-10 > *,
.gap-10-y > * {
  padding-top: 13.5px;
}

.gap-11,
.gap-11-x {
  margin-left: -35px;
}
.gap-11 > *,
.gap-11-x > * {
  padding-left: 35px;
}

.gap-11,
.gap-11-y {
  margin-top: -35px;
}
.gap-11 > *,
.gap-11-y > * {
  padding-top: 35px;
}

.gap-12,
.gap-12-x {
  margin-left: -70px;
}
.gap-12 > *,
.gap-12-x > * {
  padding-left: 70px;
}

.gap-12,
.gap-12-y {
  margin-top: -70px;
}
.gap-12 > *,
.gap-12-y > * {
  padding-top: 70px;
}

.gap-13,
.gap-13-x {
  margin-left: -28px;
}
.gap-13 > *,
.gap-13-x > * {
  padding-left: 28px;
}

.gap-13,
.gap-13-y {
  margin-top: -28px;
}
.gap-13 > *,
.gap-13-y > * {
  padding-top: 28px;
}

.gap-14,
.gap-14-x {
  margin-left: -25px;
}
.gap-14 > *,
.gap-14-x > * {
  padding-left: 25px;
}

.gap-14,
.gap-14-y {
  margin-top: -25px;
}
.gap-14 > *,
.gap-14-y > * {
  padding-top: 25px;
}

.gap-15,
.gap-15-x {
  margin-left: -17px;
}
.gap-15 > *,
.gap-15-x > * {
  padding-left: 17px;
}

.gap-15,
.gap-15-y {
  margin-top: -17px;
}
.gap-15 > *,
.gap-15-y > * {
  padding-top: 17px;
}

/* Generate all responsive steps */
@media screen and (max-width: 1600px) {
  .col-xxl {
    flex: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }

  /* Generate all column/offset classes */
  .col-xxl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

  .col-xxl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xxl-3 {
    flex: 25%;
    max-width: 25%;
  }

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

  .col-xxl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }

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

  .col-xxl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xxl-6 {
    flex: 50%;
    max-width: 50%;
  }

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

  .col-xxl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }

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

  .col-xxl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xxl-9 {
    flex: 75%;
    max-width: 75%;
  }

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

  .col-xxl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }

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

  .col-xxl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .off-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 100%;
    max-width: 100%;
  }

  .off-xxl-12 {
    margin-left: 100%;
  }

  /* Generate the extra classes */
  .col-xxl-20 {
    flex: 20%;
    max-width: 20%;
  }

  /* Generate all gap classes */
  .gap-xxl-0,
.gap-xxl-0-x {
    margin-left: 0;
  }
  .gap-xxl-0 > *,
.gap-xxl-0-x > * {
    padding-left: 0;
  }

  .gap-xxl-0,
.gap-xxl-0-y {
    margin-top: 0;
  }
  .gap-xxl-0 > *,
.gap-xxl-0-y > * {
    padding-top: 0;
  }

  .gap-xxl-1,
.gap-xxl-1-x {
    margin-left: -12px;
  }
  .gap-xxl-1 > *,
.gap-xxl-1-x > * {
    padding-left: 12px;
  }

  .gap-xxl-1,
.gap-xxl-1-y {
    margin-top: -12px;
  }
  .gap-xxl-1 > *,
.gap-xxl-1-y > * {
    padding-top: 12px;
  }

  .gap-xxl-2,
.gap-xxl-2-x {
    margin-left: -24px;
  }
  .gap-xxl-2 > *,
.gap-xxl-2-x > * {
    padding-left: 24px;
  }

  .gap-xxl-2,
.gap-xxl-2-y {
    margin-top: -24px;
  }
  .gap-xxl-2 > *,
.gap-xxl-2-y > * {
    padding-top: 24px;
  }

  .gap-xxl-3,
.gap-xxl-3-x {
    margin-left: -9px;
  }
  .gap-xxl-3 > *,
.gap-xxl-3-x > * {
    padding-left: 9px;
  }

  .gap-xxl-3,
.gap-xxl-3-y {
    margin-top: -9px;
  }
  .gap-xxl-3 > *,
.gap-xxl-3-y > * {
    padding-top: 9px;
  }

  .gap-xxl-4,
.gap-xxl-4-x {
    margin-left: -3px;
  }
  .gap-xxl-4 > *,
.gap-xxl-4-x > * {
    padding-left: 3px;
  }

  .gap-xxl-4,
.gap-xxl-4-y {
    margin-top: -3px;
  }
  .gap-xxl-4 > *,
.gap-xxl-4-y > * {
    padding-top: 3px;
  }

  .gap-xxl-5,
.gap-xxl-5-x {
    margin-left: -6px;
  }
  .gap-xxl-5 > *,
.gap-xxl-5-x > * {
    padding-left: 6px;
  }

  .gap-xxl-5,
.gap-xxl-5-y {
    margin-top: -6px;
  }
  .gap-xxl-5 > *,
.gap-xxl-5-y > * {
    padding-top: 6px;
  }

  .gap-xxl-6,
.gap-xxl-6-x {
    margin-left: -10px;
  }
  .gap-xxl-6 > *,
.gap-xxl-6-x > * {
    padding-left: 10px;
  }

  .gap-xxl-6,
.gap-xxl-6-y {
    margin-top: -10px;
  }
  .gap-xxl-6 > *,
.gap-xxl-6-y > * {
    padding-top: 10px;
  }

  .gap-xxl-7,
.gap-xxl-7-x {
    margin-left: -64px;
  }
  .gap-xxl-7 > *,
.gap-xxl-7-x > * {
    padding-left: 64px;
  }

  .gap-xxl-7,
.gap-xxl-7-y {
    margin-top: -64px;
  }
  .gap-xxl-7 > *,
.gap-xxl-7-y > * {
    padding-top: 64px;
  }

  .gap-xxl-8,
.gap-xxl-8-x {
    margin-left: -80px;
  }
  .gap-xxl-8 > *,
.gap-xxl-8-x > * {
    padding-left: 80px;
  }

  .gap-xxl-8,
.gap-xxl-8-y {
    margin-top: -80px;
  }
  .gap-xxl-8 > *,
.gap-xxl-8-y > * {
    padding-top: 80px;
  }

  .gap-xxl-9,
.gap-xxl-9-x {
    margin-left: -44px;
  }
  .gap-xxl-9 > *,
.gap-xxl-9-x > * {
    padding-left: 44px;
  }

  .gap-xxl-9,
.gap-xxl-9-y {
    margin-top: -44px;
  }
  .gap-xxl-9 > *,
.gap-xxl-9-y > * {
    padding-top: 44px;
  }

  .gap-xxl-10,
.gap-xxl-10-x {
    margin-left: -13.5px;
  }
  .gap-xxl-10 > *,
.gap-xxl-10-x > * {
    padding-left: 13.5px;
  }

  .gap-xxl-10,
.gap-xxl-10-y {
    margin-top: -13.5px;
  }
  .gap-xxl-10 > *,
.gap-xxl-10-y > * {
    padding-top: 13.5px;
  }

  .gap-xxl-11,
.gap-xxl-11-x {
    margin-left: -35px;
  }
  .gap-xxl-11 > *,
.gap-xxl-11-x > * {
    padding-left: 35px;
  }

  .gap-xxl-11,
.gap-xxl-11-y {
    margin-top: -35px;
  }
  .gap-xxl-11 > *,
.gap-xxl-11-y > * {
    padding-top: 35px;
  }

  .gap-xxl-12,
.gap-xxl-12-x {
    margin-left: -70px;
  }
  .gap-xxl-12 > *,
.gap-xxl-12-x > * {
    padding-left: 70px;
  }

  .gap-xxl-12,
.gap-xxl-12-y {
    margin-top: -70px;
  }
  .gap-xxl-12 > *,
.gap-xxl-12-y > * {
    padding-top: 70px;
  }

  .gap-xxl-13,
.gap-xxl-13-x {
    margin-left: -28px;
  }
  .gap-xxl-13 > *,
.gap-xxl-13-x > * {
    padding-left: 28px;
  }

  .gap-xxl-13,
.gap-xxl-13-y {
    margin-top: -28px;
  }
  .gap-xxl-13 > *,
.gap-xxl-13-y > * {
    padding-top: 28px;
  }

  .gap-xxl-14,
.gap-xxl-14-x {
    margin-left: -25px;
  }
  .gap-xxl-14 > *,
.gap-xxl-14-x > * {
    padding-left: 25px;
  }

  .gap-xxl-14,
.gap-xxl-14-y {
    margin-top: -25px;
  }
  .gap-xxl-14 > *,
.gap-xxl-14-y > * {
    padding-top: 25px;
  }

  .gap-xxl-15,
.gap-xxl-15-x {
    margin-left: -17px;
  }
  .gap-xxl-15 > *,
.gap-xxl-15-x > * {
    padding-left: 17px;
  }

  .gap-xxl-15,
.gap-xxl-15-y {
    margin-top: -17px;
  }
  .gap-xxl-15 > *,
.gap-xxl-15-y > * {
    padding-top: 17px;
  }

  .reset-xxl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1400px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }

  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .off-xl-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .off-xl-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }

  .off-xl-3 {
    margin-left: 25%;
  }

  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .off-xl-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .off-xl-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }

  .off-xl-6 {
    margin-left: 50%;
  }

  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .off-xl-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .off-xl-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }

  .off-xl-9 {
    margin-left: 75%;
  }

  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .off-xl-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .off-xl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }

  .off-xl-12 {
    margin-left: 100%;
  }

  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }

  /* Generate all gap classes */
  .gap-xl-0,
.gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
.gap-xl-0-x > * {
    padding-left: 0;
  }

  .gap-xl-0,
.gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
.gap-xl-0-y > * {
    padding-top: 0;
  }

  .gap-xl-1,
.gap-xl-1-x {
    margin-left: -12px;
  }
  .gap-xl-1 > *,
.gap-xl-1-x > * {
    padding-left: 12px;
  }

  .gap-xl-1,
.gap-xl-1-y {
    margin-top: -12px;
  }
  .gap-xl-1 > *,
.gap-xl-1-y > * {
    padding-top: 12px;
  }

  .gap-xl-2,
.gap-xl-2-x {
    margin-left: -24px;
  }
  .gap-xl-2 > *,
.gap-xl-2-x > * {
    padding-left: 24px;
  }

  .gap-xl-2,
.gap-xl-2-y {
    margin-top: -24px;
  }
  .gap-xl-2 > *,
.gap-xl-2-y > * {
    padding-top: 24px;
  }

  .gap-xl-3,
.gap-xl-3-x {
    margin-left: -9px;
  }
  .gap-xl-3 > *,
.gap-xl-3-x > * {
    padding-left: 9px;
  }

  .gap-xl-3,
.gap-xl-3-y {
    margin-top: -9px;
  }
  .gap-xl-3 > *,
.gap-xl-3-y > * {
    padding-top: 9px;
  }

  .gap-xl-4,
.gap-xl-4-x {
    margin-left: -3px;
  }
  .gap-xl-4 > *,
.gap-xl-4-x > * {
    padding-left: 3px;
  }

  .gap-xl-4,
.gap-xl-4-y {
    margin-top: -3px;
  }
  .gap-xl-4 > *,
.gap-xl-4-y > * {
    padding-top: 3px;
  }

  .gap-xl-5,
.gap-xl-5-x {
    margin-left: -6px;
  }
  .gap-xl-5 > *,
.gap-xl-5-x > * {
    padding-left: 6px;
  }

  .gap-xl-5,
.gap-xl-5-y {
    margin-top: -6px;
  }
  .gap-xl-5 > *,
.gap-xl-5-y > * {
    padding-top: 6px;
  }

  .gap-xl-6,
.gap-xl-6-x {
    margin-left: -10px;
  }
  .gap-xl-6 > *,
.gap-xl-6-x > * {
    padding-left: 10px;
  }

  .gap-xl-6,
.gap-xl-6-y {
    margin-top: -10px;
  }
  .gap-xl-6 > *,
.gap-xl-6-y > * {
    padding-top: 10px;
  }

  .gap-xl-7,
.gap-xl-7-x {
    margin-left: -64px;
  }
  .gap-xl-7 > *,
.gap-xl-7-x > * {
    padding-left: 64px;
  }

  .gap-xl-7,
.gap-xl-7-y {
    margin-top: -64px;
  }
  .gap-xl-7 > *,
.gap-xl-7-y > * {
    padding-top: 64px;
  }

  .gap-xl-8,
.gap-xl-8-x {
    margin-left: -80px;
  }
  .gap-xl-8 > *,
.gap-xl-8-x > * {
    padding-left: 80px;
  }

  .gap-xl-8,
.gap-xl-8-y {
    margin-top: -80px;
  }
  .gap-xl-8 > *,
.gap-xl-8-y > * {
    padding-top: 80px;
  }

  .gap-xl-9,
.gap-xl-9-x {
    margin-left: -44px;
  }
  .gap-xl-9 > *,
.gap-xl-9-x > * {
    padding-left: 44px;
  }

  .gap-xl-9,
.gap-xl-9-y {
    margin-top: -44px;
  }
  .gap-xl-9 > *,
.gap-xl-9-y > * {
    padding-top: 44px;
  }

  .gap-xl-10,
.gap-xl-10-x {
    margin-left: -13.5px;
  }
  .gap-xl-10 > *,
.gap-xl-10-x > * {
    padding-left: 13.5px;
  }

  .gap-xl-10,
.gap-xl-10-y {
    margin-top: -13.5px;
  }
  .gap-xl-10 > *,
.gap-xl-10-y > * {
    padding-top: 13.5px;
  }

  .gap-xl-11,
.gap-xl-11-x {
    margin-left: -35px;
  }
  .gap-xl-11 > *,
.gap-xl-11-x > * {
    padding-left: 35px;
  }

  .gap-xl-11,
.gap-xl-11-y {
    margin-top: -35px;
  }
  .gap-xl-11 > *,
.gap-xl-11-y > * {
    padding-top: 35px;
  }

  .gap-xl-12,
.gap-xl-12-x {
    margin-left: -70px;
  }
  .gap-xl-12 > *,
.gap-xl-12-x > * {
    padding-left: 70px;
  }

  .gap-xl-12,
.gap-xl-12-y {
    margin-top: -70px;
  }
  .gap-xl-12 > *,
.gap-xl-12-y > * {
    padding-top: 70px;
  }

  .gap-xl-13,
.gap-xl-13-x {
    margin-left: -28px;
  }
  .gap-xl-13 > *,
.gap-xl-13-x > * {
    padding-left: 28px;
  }

  .gap-xl-13,
.gap-xl-13-y {
    margin-top: -28px;
  }
  .gap-xl-13 > *,
.gap-xl-13-y > * {
    padding-top: 28px;
  }

  .gap-xl-14,
.gap-xl-14-x {
    margin-left: -25px;
  }
  .gap-xl-14 > *,
.gap-xl-14-x > * {
    padding-left: 25px;
  }

  .gap-xl-14,
.gap-xl-14-y {
    margin-top: -25px;
  }
  .gap-xl-14 > *,
.gap-xl-14-y > * {
    padding-top: 25px;
  }

  .gap-xl-15,
.gap-xl-15-x {
    margin-left: -17px;
  }
  .gap-xl-15 > *,
.gap-xl-15-x > * {
    padding-left: 17px;
  }

  .gap-xl-15,
.gap-xl-15-y {
    margin-top: -17px;
  }
  .gap-xl-15 > *,
.gap-xl-15-y > * {
    padding-top: 17px;
  }

  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }

  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .off-lg-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .off-lg-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }

  .off-lg-3 {
    margin-left: 25%;
  }

  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .off-lg-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .off-lg-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }

  .off-lg-6 {
    margin-left: 50%;
  }

  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .off-lg-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .off-lg-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }

  .off-lg-9 {
    margin-left: 75%;
  }

  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .off-lg-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .off-lg-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }

  .off-lg-12 {
    margin-left: 100%;
  }

  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }

  /* Generate all gap classes */
  .gap-lg-0,
.gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
.gap-lg-0-x > * {
    padding-left: 0;
  }

  .gap-lg-0,
.gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
.gap-lg-0-y > * {
    padding-top: 0;
  }

  .gap-lg-1,
.gap-lg-1-x {
    margin-left: -12px;
  }
  .gap-lg-1 > *,
.gap-lg-1-x > * {
    padding-left: 12px;
  }

  .gap-lg-1,
.gap-lg-1-y {
    margin-top: -12px;
  }
  .gap-lg-1 > *,
.gap-lg-1-y > * {
    padding-top: 12px;
  }

  .gap-lg-2,
.gap-lg-2-x {
    margin-left: -24px;
  }
  .gap-lg-2 > *,
.gap-lg-2-x > * {
    padding-left: 24px;
  }

  .gap-lg-2,
.gap-lg-2-y {
    margin-top: -24px;
  }
  .gap-lg-2 > *,
.gap-lg-2-y > * {
    padding-top: 24px;
  }

  .gap-lg-3,
.gap-lg-3-x {
    margin-left: -9px;
  }
  .gap-lg-3 > *,
.gap-lg-3-x > * {
    padding-left: 9px;
  }

  .gap-lg-3,
.gap-lg-3-y {
    margin-top: -9px;
  }
  .gap-lg-3 > *,
.gap-lg-3-y > * {
    padding-top: 9px;
  }

  .gap-lg-4,
.gap-lg-4-x {
    margin-left: -3px;
  }
  .gap-lg-4 > *,
.gap-lg-4-x > * {
    padding-left: 3px;
  }

  .gap-lg-4,
.gap-lg-4-y {
    margin-top: -3px;
  }
  .gap-lg-4 > *,
.gap-lg-4-y > * {
    padding-top: 3px;
  }

  .gap-lg-5,
.gap-lg-5-x {
    margin-left: -6px;
  }
  .gap-lg-5 > *,
.gap-lg-5-x > * {
    padding-left: 6px;
  }

  .gap-lg-5,
.gap-lg-5-y {
    margin-top: -6px;
  }
  .gap-lg-5 > *,
.gap-lg-5-y > * {
    padding-top: 6px;
  }

  .gap-lg-6,
.gap-lg-6-x {
    margin-left: -10px;
  }
  .gap-lg-6 > *,
.gap-lg-6-x > * {
    padding-left: 10px;
  }

  .gap-lg-6,
.gap-lg-6-y {
    margin-top: -10px;
  }
  .gap-lg-6 > *,
.gap-lg-6-y > * {
    padding-top: 10px;
  }

  .gap-lg-7,
.gap-lg-7-x {
    margin-left: -64px;
  }
  .gap-lg-7 > *,
.gap-lg-7-x > * {
    padding-left: 64px;
  }

  .gap-lg-7,
.gap-lg-7-y {
    margin-top: -64px;
  }
  .gap-lg-7 > *,
.gap-lg-7-y > * {
    padding-top: 64px;
  }

  .gap-lg-8,
.gap-lg-8-x {
    margin-left: -80px;
  }
  .gap-lg-8 > *,
.gap-lg-8-x > * {
    padding-left: 80px;
  }

  .gap-lg-8,
.gap-lg-8-y {
    margin-top: -80px;
  }
  .gap-lg-8 > *,
.gap-lg-8-y > * {
    padding-top: 80px;
  }

  .gap-lg-9,
.gap-lg-9-x {
    margin-left: -44px;
  }
  .gap-lg-9 > *,
.gap-lg-9-x > * {
    padding-left: 44px;
  }

  .gap-lg-9,
.gap-lg-9-y {
    margin-top: -44px;
  }
  .gap-lg-9 > *,
.gap-lg-9-y > * {
    padding-top: 44px;
  }

  .gap-lg-10,
.gap-lg-10-x {
    margin-left: -13.5px;
  }
  .gap-lg-10 > *,
.gap-lg-10-x > * {
    padding-left: 13.5px;
  }

  .gap-lg-10,
.gap-lg-10-y {
    margin-top: -13.5px;
  }
  .gap-lg-10 > *,
.gap-lg-10-y > * {
    padding-top: 13.5px;
  }

  .gap-lg-11,
.gap-lg-11-x {
    margin-left: -35px;
  }
  .gap-lg-11 > *,
.gap-lg-11-x > * {
    padding-left: 35px;
  }

  .gap-lg-11,
.gap-lg-11-y {
    margin-top: -35px;
  }
  .gap-lg-11 > *,
.gap-lg-11-y > * {
    padding-top: 35px;
  }

  .gap-lg-12,
.gap-lg-12-x {
    margin-left: -70px;
  }
  .gap-lg-12 > *,
.gap-lg-12-x > * {
    padding-left: 70px;
  }

  .gap-lg-12,
.gap-lg-12-y {
    margin-top: -70px;
  }
  .gap-lg-12 > *,
.gap-lg-12-y > * {
    padding-top: 70px;
  }

  .gap-lg-13,
.gap-lg-13-x {
    margin-left: -28px;
  }
  .gap-lg-13 > *,
.gap-lg-13-x > * {
    padding-left: 28px;
  }

  .gap-lg-13,
.gap-lg-13-y {
    margin-top: -28px;
  }
  .gap-lg-13 > *,
.gap-lg-13-y > * {
    padding-top: 28px;
  }

  .gap-lg-14,
.gap-lg-14-x {
    margin-left: -25px;
  }
  .gap-lg-14 > *,
.gap-lg-14-x > * {
    padding-left: 25px;
  }

  .gap-lg-14,
.gap-lg-14-y {
    margin-top: -25px;
  }
  .gap-lg-14 > *,
.gap-lg-14-y > * {
    padding-top: 25px;
  }

  .gap-lg-15,
.gap-lg-15-x {
    margin-left: -17px;
  }
  .gap-lg-15 > *,
.gap-lg-15-x > * {
    padding-left: 17px;
  }

  .gap-lg-15,
.gap-lg-15-y {
    margin-top: -17px;
  }
  .gap-lg-15 > *,
.gap-lg-15-y > * {
    padding-top: 17px;
  }

  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }

  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .off-md-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .off-md-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }

  .off-md-3 {
    margin-left: 25%;
  }

  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .off-md-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .off-md-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }

  .off-md-6 {
    margin-left: 50%;
  }

  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .off-md-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .off-md-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }

  .off-md-9 {
    margin-left: 75%;
  }

  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .off-md-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .off-md-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }

  .off-md-12 {
    margin-left: 100%;
  }

  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }

  /* Generate all gap classes */
  .gap-md-0,
.gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
.gap-md-0-x > * {
    padding-left: 0;
  }

  .gap-md-0,
.gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
.gap-md-0-y > * {
    padding-top: 0;
  }

  .gap-md-1,
.gap-md-1-x {
    margin-left: -12px;
  }
  .gap-md-1 > *,
.gap-md-1-x > * {
    padding-left: 12px;
  }

  .gap-md-1,
.gap-md-1-y {
    margin-top: -12px;
  }
  .gap-md-1 > *,
.gap-md-1-y > * {
    padding-top: 12px;
  }

  .gap-md-2,
.gap-md-2-x {
    margin-left: -24px;
  }
  .gap-md-2 > *,
.gap-md-2-x > * {
    padding-left: 24px;
  }

  .gap-md-2,
.gap-md-2-y {
    margin-top: -24px;
  }
  .gap-md-2 > *,
.gap-md-2-y > * {
    padding-top: 24px;
  }

  .gap-md-3,
.gap-md-3-x {
    margin-left: -9px;
  }
  .gap-md-3 > *,
.gap-md-3-x > * {
    padding-left: 9px;
  }

  .gap-md-3,
.gap-md-3-y {
    margin-top: -9px;
  }
  .gap-md-3 > *,
.gap-md-3-y > * {
    padding-top: 9px;
  }

  .gap-md-4,
.gap-md-4-x {
    margin-left: -3px;
  }
  .gap-md-4 > *,
.gap-md-4-x > * {
    padding-left: 3px;
  }

  .gap-md-4,
.gap-md-4-y {
    margin-top: -3px;
  }
  .gap-md-4 > *,
.gap-md-4-y > * {
    padding-top: 3px;
  }

  .gap-md-5,
.gap-md-5-x {
    margin-left: -6px;
  }
  .gap-md-5 > *,
.gap-md-5-x > * {
    padding-left: 6px;
  }

  .gap-md-5,
.gap-md-5-y {
    margin-top: -6px;
  }
  .gap-md-5 > *,
.gap-md-5-y > * {
    padding-top: 6px;
  }

  .gap-md-6,
.gap-md-6-x {
    margin-left: -10px;
  }
  .gap-md-6 > *,
.gap-md-6-x > * {
    padding-left: 10px;
  }

  .gap-md-6,
.gap-md-6-y {
    margin-top: -10px;
  }
  .gap-md-6 > *,
.gap-md-6-y > * {
    padding-top: 10px;
  }

  .gap-md-7,
.gap-md-7-x {
    margin-left: -64px;
  }
  .gap-md-7 > *,
.gap-md-7-x > * {
    padding-left: 64px;
  }

  .gap-md-7,
.gap-md-7-y {
    margin-top: -64px;
  }
  .gap-md-7 > *,
.gap-md-7-y > * {
    padding-top: 64px;
  }

  .gap-md-8,
.gap-md-8-x {
    margin-left: -80px;
  }
  .gap-md-8 > *,
.gap-md-8-x > * {
    padding-left: 80px;
  }

  .gap-md-8,
.gap-md-8-y {
    margin-top: -80px;
  }
  .gap-md-8 > *,
.gap-md-8-y > * {
    padding-top: 80px;
  }

  .gap-md-9,
.gap-md-9-x {
    margin-left: -44px;
  }
  .gap-md-9 > *,
.gap-md-9-x > * {
    padding-left: 44px;
  }

  .gap-md-9,
.gap-md-9-y {
    margin-top: -44px;
  }
  .gap-md-9 > *,
.gap-md-9-y > * {
    padding-top: 44px;
  }

  .gap-md-10,
.gap-md-10-x {
    margin-left: -13.5px;
  }
  .gap-md-10 > *,
.gap-md-10-x > * {
    padding-left: 13.5px;
  }

  .gap-md-10,
.gap-md-10-y {
    margin-top: -13.5px;
  }
  .gap-md-10 > *,
.gap-md-10-y > * {
    padding-top: 13.5px;
  }

  .gap-md-11,
.gap-md-11-x {
    margin-left: -35px;
  }
  .gap-md-11 > *,
.gap-md-11-x > * {
    padding-left: 35px;
  }

  .gap-md-11,
.gap-md-11-y {
    margin-top: -35px;
  }
  .gap-md-11 > *,
.gap-md-11-y > * {
    padding-top: 35px;
  }

  .gap-md-12,
.gap-md-12-x {
    margin-left: -70px;
  }
  .gap-md-12 > *,
.gap-md-12-x > * {
    padding-left: 70px;
  }

  .gap-md-12,
.gap-md-12-y {
    margin-top: -70px;
  }
  .gap-md-12 > *,
.gap-md-12-y > * {
    padding-top: 70px;
  }

  .gap-md-13,
.gap-md-13-x {
    margin-left: -28px;
  }
  .gap-md-13 > *,
.gap-md-13-x > * {
    padding-left: 28px;
  }

  .gap-md-13,
.gap-md-13-y {
    margin-top: -28px;
  }
  .gap-md-13 > *,
.gap-md-13-y > * {
    padding-top: 28px;
  }

  .gap-md-14,
.gap-md-14-x {
    margin-left: -25px;
  }
  .gap-md-14 > *,
.gap-md-14-x > * {
    padding-left: 25px;
  }

  .gap-md-14,
.gap-md-14-y {
    margin-top: -25px;
  }
  .gap-md-14 > *,
.gap-md-14-y > * {
    padding-top: 25px;
  }

  .gap-md-15,
.gap-md-15-x {
    margin-left: -17px;
  }
  .gap-md-15 > *,
.gap-md-15-x > * {
    padding-left: 17px;
  }

  .gap-md-15,
.gap-md-15-y {
    margin-top: -17px;
  }
  .gap-md-15 > *,
.gap-md-15-y > * {
    padding-top: 17px;
  }

  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }

  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .off-sm-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .off-sm-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }

  .off-sm-3 {
    margin-left: 25%;
  }

  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .off-sm-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .off-sm-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }

  .off-sm-6 {
    margin-left: 50%;
  }

  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .off-sm-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .off-sm-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }

  .off-sm-9 {
    margin-left: 75%;
  }

  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .off-sm-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .off-sm-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }

  .off-sm-12 {
    margin-left: 100%;
  }

  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }

  /* Generate all gap classes */
  .gap-sm-0,
.gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
.gap-sm-0-x > * {
    padding-left: 0;
  }

  .gap-sm-0,
.gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
.gap-sm-0-y > * {
    padding-top: 0;
  }

  .gap-sm-1,
.gap-sm-1-x {
    margin-left: -12px;
  }
  .gap-sm-1 > *,
.gap-sm-1-x > * {
    padding-left: 12px;
  }

  .gap-sm-1,
.gap-sm-1-y {
    margin-top: -12px;
  }
  .gap-sm-1 > *,
.gap-sm-1-y > * {
    padding-top: 12px;
  }

  .gap-sm-2,
.gap-sm-2-x {
    margin-left: -24px;
  }
  .gap-sm-2 > *,
.gap-sm-2-x > * {
    padding-left: 24px;
  }

  .gap-sm-2,
.gap-sm-2-y {
    margin-top: -24px;
  }
  .gap-sm-2 > *,
.gap-sm-2-y > * {
    padding-top: 24px;
  }

  .gap-sm-3,
.gap-sm-3-x {
    margin-left: -9px;
  }
  .gap-sm-3 > *,
.gap-sm-3-x > * {
    padding-left: 9px;
  }

  .gap-sm-3,
.gap-sm-3-y {
    margin-top: -9px;
  }
  .gap-sm-3 > *,
.gap-sm-3-y > * {
    padding-top: 9px;
  }

  .gap-sm-4,
.gap-sm-4-x {
    margin-left: -3px;
  }
  .gap-sm-4 > *,
.gap-sm-4-x > * {
    padding-left: 3px;
  }

  .gap-sm-4,
.gap-sm-4-y {
    margin-top: -3px;
  }
  .gap-sm-4 > *,
.gap-sm-4-y > * {
    padding-top: 3px;
  }

  .gap-sm-5,
.gap-sm-5-x {
    margin-left: -6px;
  }
  .gap-sm-5 > *,
.gap-sm-5-x > * {
    padding-left: 6px;
  }

  .gap-sm-5,
.gap-sm-5-y {
    margin-top: -6px;
  }
  .gap-sm-5 > *,
.gap-sm-5-y > * {
    padding-top: 6px;
  }

  .gap-sm-6,
.gap-sm-6-x {
    margin-left: -10px;
  }
  .gap-sm-6 > *,
.gap-sm-6-x > * {
    padding-left: 10px;
  }

  .gap-sm-6,
.gap-sm-6-y {
    margin-top: -10px;
  }
  .gap-sm-6 > *,
.gap-sm-6-y > * {
    padding-top: 10px;
  }

  .gap-sm-7,
.gap-sm-7-x {
    margin-left: -64px;
  }
  .gap-sm-7 > *,
.gap-sm-7-x > * {
    padding-left: 64px;
  }

  .gap-sm-7,
.gap-sm-7-y {
    margin-top: -64px;
  }
  .gap-sm-7 > *,
.gap-sm-7-y > * {
    padding-top: 64px;
  }

  .gap-sm-8,
.gap-sm-8-x {
    margin-left: -80px;
  }
  .gap-sm-8 > *,
.gap-sm-8-x > * {
    padding-left: 80px;
  }

  .gap-sm-8,
.gap-sm-8-y {
    margin-top: -80px;
  }
  .gap-sm-8 > *,
.gap-sm-8-y > * {
    padding-top: 80px;
  }

  .gap-sm-9,
.gap-sm-9-x {
    margin-left: -44px;
  }
  .gap-sm-9 > *,
.gap-sm-9-x > * {
    padding-left: 44px;
  }

  .gap-sm-9,
.gap-sm-9-y {
    margin-top: -44px;
  }
  .gap-sm-9 > *,
.gap-sm-9-y > * {
    padding-top: 44px;
  }

  .gap-sm-10,
.gap-sm-10-x {
    margin-left: -13.5px;
  }
  .gap-sm-10 > *,
.gap-sm-10-x > * {
    padding-left: 13.5px;
  }

  .gap-sm-10,
.gap-sm-10-y {
    margin-top: -13.5px;
  }
  .gap-sm-10 > *,
.gap-sm-10-y > * {
    padding-top: 13.5px;
  }

  .gap-sm-11,
.gap-sm-11-x {
    margin-left: -35px;
  }
  .gap-sm-11 > *,
.gap-sm-11-x > * {
    padding-left: 35px;
  }

  .gap-sm-11,
.gap-sm-11-y {
    margin-top: -35px;
  }
  .gap-sm-11 > *,
.gap-sm-11-y > * {
    padding-top: 35px;
  }

  .gap-sm-12,
.gap-sm-12-x {
    margin-left: -70px;
  }
  .gap-sm-12 > *,
.gap-sm-12-x > * {
    padding-left: 70px;
  }

  .gap-sm-12,
.gap-sm-12-y {
    margin-top: -70px;
  }
  .gap-sm-12 > *,
.gap-sm-12-y > * {
    padding-top: 70px;
  }

  .gap-sm-13,
.gap-sm-13-x {
    margin-left: -28px;
  }
  .gap-sm-13 > *,
.gap-sm-13-x > * {
    padding-left: 28px;
  }

  .gap-sm-13,
.gap-sm-13-y {
    margin-top: -28px;
  }
  .gap-sm-13 > *,
.gap-sm-13-y > * {
    padding-top: 28px;
  }

  .gap-sm-14,
.gap-sm-14-x {
    margin-left: -25px;
  }
  .gap-sm-14 > *,
.gap-sm-14-x > * {
    padding-left: 25px;
  }

  .gap-sm-14,
.gap-sm-14-y {
    margin-top: -25px;
  }
  .gap-sm-14 > *,
.gap-sm-14-y > * {
    padding-top: 25px;
  }

  .gap-sm-15,
.gap-sm-15-x {
    margin-left: -17px;
  }
  .gap-sm-15 > *,
.gap-sm-15-x > * {
    padding-left: 17px;
  }

  .gap-sm-15,
.gap-sm-15-y {
    margin-top: -17px;
  }
  .gap-sm-15 > *,
.gap-sm-15-y > * {
    padding-top: 17px;
  }

  .reset-sm {
    margin-left: 0;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--fluid {
  max-width: 100%;
}
.container--product-page {
  max-width: 1920px;
  padding: 0 96px;
}
@media only screen and (max-width: 1400px) {
  .container--product-page {
    padding: 0 var(--container-pad);
  }
}
.container--shop-info {
  max-width: 1547px;
}
.container--category-2 {
  max-width: 1570px;
}
.container--sm {
  max-width: 1380px;
}
.container--xs {
  max-width: 981px;
}
.container--xxs {
  max-width: 950px;
}
.container--xl {
  max-width: 1510px;
}
.container--thanks {
  max-width: 1275px;
}

/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

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

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-background);
  color: var(--color-black);
}

ul {
  list-style: none;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:ELEMENTS]
   ========================================================================== */
.btn {
  display: inline-block;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  color: #000;
  padding: 16px 40px 15px 40px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
}
.btn--white-opacity {
  background: rgba(255, 255, 255, 0.9);
}
.btn--size-small {
  font-size: 16px;
  line-height: 1.375;
}
.btn--medium {
  padding: 16px 66px 15px 66px;
}
.btn--large {
  font-size: 21px;
  line-height: 1.3333333333;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .btn--large {
    font-size: 16px;
    padding-bottom: 17px;
    padding-top: 17px;
  }
}
.btn--full-width {
  width: 100%;
}
.btn--uppercase {
  text-transform: uppercase;
}
.btn--beige {
  color: #fff;
  background-color: var(--color-beige-light-opacity-90);
}
.btn--brown-dark {
  color: #fff;
  background-color: var(--color-brown-dark-opacity-90);
}
.btn--charcoal {
  color: #fff;
  background-color: var(--color-charcoal-opacity-90);
}
.btn--black {
  color: #fff;
  background-color: var(--color-black-opacity-90);
}
.btn--green {
  color: #fff;
  background-color: var(--color-green);
}
.btn--add-to-cart {
  background-color: rgba(64, 153, 102, 0.9);
  color: var(--color-white);
  font-size: 21px;
  line-height: 1.3333333333;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .btn--add-to-cart {
    font-size: 18px;
    line-height: 1.2222222222;
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .btn--add-to-cart {
    font-size: 16px;
    line-height: 1.375;
    padding: 15px;
  }
}
.btn--like {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-grey-lighter);
  border-radius: 100%;
  min-width: 65px;
  height: 65px;
  padding: 0;
}
.btn--like img {
  width: 38.5px;
  height: 34.4px;
  object-fit: contain;
}
.btn--like-small {
  min-width: 41px;
  height: 41px;
}
.btn--like-small img {
  width: 22px;
  height: 19px;
}
.btn--submit {
  color: var(--color-white);
  background-color: var(--color-grey-lighter-3-opacity-90);
  pointer-events: none;
  cursor: none;
}
.btn--submit-active {
  color: var(--color-white);
  background-color: var(--color-black-opacity-90);
  pointer-events: all;
  cursor: pointer;
}

button {
  outline: 0;
  border: 0;
  cursor: pointer;
}

.link-arrow-small {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3846153846;
  text-decoration: underline;
  background-image: url("../images/icons/icon-arrow-right-long-small-black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 85px;
}

.link-arrow-medium {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
  text-decoration: underline;
  background-image: url("../images/icons/icon-arrow-right-long-medium-black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 127px;
}

.product {
  display: flex;
  flex-direction: column;
  position: relative;
}
.product__images img {
  width: 100%;
}
.product__images.owl-carousel {
  position: relative;
}
.product__images.owl-carousel .owl-stage-outer {
  overflow: hidden;
}
.product__images.owl-carousel .owl-dots {
  position: absolute;
  display: flex;
  left: 16px;
  bottom: 12px;
  height: 11px;
}
.product__images.owl-carousel .owl-dots button:not(:last-child) span {
  margin-right: 9px;
}
.product__images.owl-carousel .owl-dots button:hover span {
  background: #fff;
}
.product__images.owl-carousel .owl-dots button.active span {
  background: var(--color-black);
  border-color: var(--color-black);
}
.product__images.owl-carousel .owl-dots button span {
  margin: 0;
  padding: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--color-grey-dark);
  background: #fff;
}
.product__info {
  transition: all 0.3s ease;
  position: relative;
}
.product__info:hover .product__info-inner {
  transform: translateY(-36px);
}
.product__info:hover .product__info-inner {
  transform: translateY(0);
}
.product__info:hover .product__sizes {
  opacity: 1;
}
.product__info:hover .product-tag--plus-size {
  transform: translateY(-36px);
}
.product__info-inner {
  position: relative;
  z-index: 2;
  padding-top: 17px;
  padding-right: 42px;
  background: #fff;
  cursor: default;
  transition: all 0.3s ease;
}
.product .product-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 2px;
}
.product .product-details {
  max-width: 312px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4615384615;
}
.product .product-prices {
  display: flex;
  font-size: 16px;
  line-height: 1.375;
}
.product .product-prices .seperator {
  margin-right: 8px;
  margin-left: 8px;
}
.product .deleted-price {
  text-decoration: line-through;
}
.product .price {
  font-weight: 700;
}
.product__sizes {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4615384615;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.product__sizes{
  opacity: 1;
  position: relative;
  margin-top: 10px;
}
.product__sizes a.unvailable {
  color: var(--color-grey-lighter-3);
  font-weight: 300;
}
.product__sizes-seperator {
  font-weight: 300;
  margin: 0 15px;
}
.product .product-wishlist {
  position: absolute;
  top: 17px;
  right: 0;
  display: inline-block;
}
.product .product-wishlist__inner {
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.product .product-wishlist__inner.active .product-wishlist-inactive {
  opacity: 0;
}
.product .product-wishlist__inner.active .product-wishlist-active {
  opacity: 1;
}
.product .product-wishlist-inactive {
  width: 37px;
  height: 37px;
  background: var(--color-grey-lighter);
  border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.product .product-wishlist-inactive img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product .product-wishlist-active {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background: var(--color-black);
  opacity: 0;
  transition: all 0.3s ease;
}
.product .product-wishlist-active img {
  width: 22px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product .products-tags-wrapper {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  top: 42px;
  z-index: 2;
}
.product .product-tag-wrapper {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 2;
}
.product .product-tag-wrapper .product-tag-grey {
  font-size: 17px;
  line-height: 1.3529411765;
  font-weight: 700;
}
    .product .product-tag-wrapper.product-tag-wrapper--discount {
        position: absolute;
      
        z-index: 2;
        right: 0;
        top: 0;
        margin-left: auto;
        width: 79px;
    }
.product .product-tag-wrapper.product-tag-wrapper--new {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 2;
}
.product .product-tag-wrapper.product-tag-wrapper--new .product-tag.product-tag--grey {
  line-height: 1.3529411765;
  font-size: 17px;
  padding: 5px 19px 7px 15px;
}
.product .product-tag {
  font-size: 21px;
  line-height: 1.3333333333;
}
.product .product-tag--green {
  padding: 6px 14px;
  font-weight: 800;
  color: #fff;
  background: var(--color-green);
}
.product .product-tag--grey {
  padding: 6px 17px;
  font-weight: 700;
  color: var(--color-black);
  background: var(--color-grey-lighter);
}
.product .product-tag--plus-size {
  position: absolute;
  top: -40px;
  right: 0;
  background-color: #10100f;
  padding: 0 18px;
  height: 40px;
  z-index: 99;
  transition: all 0.3s ease;
}
.product .product-tag--plus-size span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 42px;
  color: #ffffff;
}

.outer-pop-up {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: 300ms all ease;
}
.outer-pop-up.active {
  opacity: 1;
  pointer-events: all;
}
.outer-pop-up__close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.outer-pop-up__close img {
  width: 12px;
}

.outer-pop-up--cookies.active .pop-up--cookies {
  transform: translateY(0);
}

.outer-pop-up__close--cookies {
  position: absolute;
  top: 17px;
  right: 25px;
}
.outer-pop-up__close--cookies img {
  width: 15px;
}
@media only screen and (max-width: 768px) {
  .outer-pop-up__close--cookies {
    top: 18px;
    right: 18px;
  }
}

.pop-up {
  position: relative;
}

.pop-up--cookies {
  background: #fff;
  max-width: 458px;
  padding: 47px 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(100vh);
  transition: all 0.4s ease-out;
  margin: 0 15px;
}
@media only screen and (max-width: 768px) {
  .pop-up--cookies {
    padding: 47px 35px;
  }
}
.pop-up--cookies h6 {
  font-size: 19px;
  line-height: 1.3684210526;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .pop-up--cookies h6 {
    margin-bottom: 14px;
  }
}
.pop-up--cookies p,
.pop-up--cookies a:not(:nth-of-type(1)) {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3846153846;
}
.pop-up--cookies .btn {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  padding: 14px 50px;
  letter-spacing: 0.001em;
}
@media only screen and (max-width: 768px) {
  .pop-up--cookies .btn {
    padding: 14px 22px;
  }
}
.pop-up--cookies p {
  margin-bottom: 37px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .pop-up--cookies p {
    max-width: 264px;
    margin: 0 auto 12px auto;
  }
}
.pop-up--cookies a:nth-of-type(2) {
  text-decoration: underline;
}

.grey-flow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-black-opacity-75);
  z-index: 1000;
}
.grey-flow.active {
  display: block;
}

@media only screen and (max-width: 500px) {
  .product .product__images.owl-carousel .owl-dots {
    bottom: 6px;
    left: 6px;
  }
  .product .product__images.owl-carousel .owl-dots button:not(:last-child) span {
    margin-right: 6px;
  }
  .product .product__images.owl-carousel .owl-dots button.active span,
.product .product__images.owl-carousel .owl-dots button span {
    width: 7px;
    height: 7px;
  }
  .product .product-title {
    font-size: 14px;
    line-height: 19px;
  }
  .product .product-details {
    font-size: 11px;
    line-height: 18px;
  }
  .product .product-prices {
    font-size: 13px;
  }
  .product .product-wishlist {
    top: -21px;
    z-index: 99;
  }
  .product .products-tags-wrapper {
    top: 15px;
  }
  .product .product-tag-wrapper--new {
    top: 28px;
  }
  .product .product-tag-wrapper--new .product-tag--grey {
    padding: 3.5px 10px !important;
    font-size: 13px !important;
    line-height: 18px !important;
  }
  .product .product-tag--plus-size {
    top: -21px;
    padding: 3px 49px 3px 6px;
    height: 21px;
  }
  .product .product-tag--plus-size span {
    font-size: 11px;
    line-height: 15px;
  }
  .product .product-tag--grey, .product .product-tag--green {
    padding: 3.5px 10px;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}

.clear {
  clear: both;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:NAV]
   ========================================================================== */
.site-main-categories-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 19px;
  line-height: 0.9473684211;
  margin-left: -15px;
}
@media only screen and (max-width: 1400px) {
  .site-main-categories-nav {
    margin-left: -10px;
    font-size: 17px;
    line-height: 0.9411764706;
  }
}
@media only screen and (max-width: 1024px) {
  .site-main-categories-nav {
    font-size: 16px;
    line-height: 0.9375;
    margin-left: -3px;
  }
}
.site-main-categories-nav > li:not(:last-child) {
  margin-right: 32px;
}
@media only screen and (max-width: 1470px) {
  .site-main-categories-nav > li:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1400px) {
  .site-main-categories-nav > li:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-main-categories-nav > li:not(:last-child) {
    margin-right: 5px;
  }
}
.site-main-categories-nav > li.active a {
  background: var(--color-grey-lighter);
  padding: 7px 15px;
  font-weight: 700;
}
.site-main-categories-nav > li a {
  padding: 7px 15px;
}
@media only screen and (max-width: 1400px) {
  .site-main-categories-nav > li a {
    padding: 7px 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-main-categories-nav > li a {
    padding: 7px 3px;
  }
}
.site-main-categories-nav > li a:hover {
  background: var(--color-grey-lighter);
  font-weight: 700;
}

.site-product-categories-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -25px;
}
@media only screen and (max-width: 1400px) {
  .site-product-categories-nav {
    margin-left: -14px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-product-categories-nav {
    margin-left: -3px;
  }
}
.site-product-categories-nav > li:not(:last-child) {
  margin-right: 21px;
}
@media only screen and (max-width: 1470px) {
  .site-product-categories-nav > li:not(:last-child) {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1470px) {
  .site-product-categories-nav > li:not(:last-child) {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-product-categories-nav > li:not(:last-child) {
    margin-right: 5px;
  }
}
.site-product-categories-nav > li.active a {
  background: var(--color-grey-lighter);
}
.site-product-categories-nav > li:hover > a {
  background: var(--color-grey-lighter-2);
  font-weight: 700;
}
.site-product-categories-nav > li:hover .offset-megamenu {
  opacity: 1;
  pointer-events: all;
}
.site-product-categories-nav > li > a {
  padding: 9px 25px;
  font-size: 16px;
  line-height: 1.375;
}
@media only screen and (max-width: 1400px) {
  .site-product-categories-nav > li > a {
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
@media only screen and (max-width: 1024px) {
  .site-product-categories-nav > li > a {
    padding: 7px 3px;
  }
}

.offset-megamenu {
  width: 100%;
  min-height: 600px;
  background: var(--color-grey-lighter-2);
  position: absolute;
  top: calc(100% - 7px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

/*commented by Protean 23/03/2022*/
/*.offset-megamenu::after {
  content: "";
  position: absolute;
  bottom: -303px;
  left: 0;
  width: 100%;
  height: 303px;
  background: var(--color-black-opacity-70);
}*/

.offset-megamenu__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
}
.offset-megamenu__left {
  display: flex;
  justify-content: space-between;
  margin: 0 -45px;
}
@media only screen and (max-width: 1470px) {
  .offset-megamenu__left {
    margin: 0 -25px;
  }
}
@media only screen and (max-width: 1134px) {
  .offset-megamenu__left {
    margin: 0 -12px;
  }
}
@media only screen and (max-width: 1024px) {
  .offset-megamenu__left {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .offset-megamenu__right {
    display: none;
  }
}
.offset-megamenu__clothes, .offset-megamenu__brands {
  padding: 0 45px;
}
@media only screen and (max-width: 1470px) {
  .offset-megamenu__clothes, .offset-megamenu__brands {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1134px) {
  .offset-megamenu__clothes, .offset-megamenu__brands {
    padding: 0 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .offset-megamenu__clothes {
    flex: 1;
  }
}
.offset-megamenu__title {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 10px 0;
  margin-bottom: 13px;
}
@media only screen and (max-width: 1400px) {
  .offset-megamenu__title {
    padding: 7px 0;
    margin-bottom: 10px;
  }
}
.offset-megamenu__title a {
  color: #000;
  font-size: 19px;
  line-height: 1.3684210526;
  text-decoration: underline;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .offset-megamenu__title a {
    font-size: 16px;
    line-height: 1.4375;
  }
}
.offset-megamenu__title a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  background-image: url("../images/icons/icon-arrow-right-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.offset-megamenu__grid {
  margin: 0 -40px;
  display: flex;
}
@media only screen and (max-width: 1134px) {
  .offset-megamenu__grid {
    margin: 0 -20px;
  }
}
.offset-megamenu__image {
  position: relative;
}
@media only screen and (max-width: 1470px) {
  .offset-megamenu__image {
    max-width: 330px;
  }
}
@media only screen and (max-width: 1186px) {
  .offset-megamenu__image {
    max-width: 280px;
  }
}

.offset-megamenu-col {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1134px) {
  .offset-megamenu-col {
    padding: 0 20px;
  }
}
.offset-megamenu-col a {
  display: flex;
  font-size: 19px;
  padding: 8px 0;
}
@media only screen and (max-width: 1400px) {
  .offset-megamenu-col a {
    font-size: 16px;
    line-height: 1.4375;
    padding: 6px 0;
  }
}
.offset-megamenu-col a:not(:last-child) {
  margin-bottom: 11px;
}
@media only screen and (max-width: 1400px) {
  .offset-megamenu-col a:not(:last-child) {
    margin-bottom: 9px;
  }
}
.offset-megamenu-col--bold-links a {
  font-weight: 700;
}
.offset-megamenu-col--bold-links .burgundy {
  color: var(--color-burgundy);
}
.offset-megamenu-col--brands a {
  text-transform: uppercase;
}

.offset-megamenu-link-image {
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.offset-megamenu-link-image img {
  object-fit: contain;
}

.offset-show-more {
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 11px 0 11px 108px;
}
@media only screen and (max-width: 1400px) {
  .offset-show-more {
    padding: 11px 0 11px 0px;
    text-align: center;
  }
}
.offset-show-more a {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding-right: 70px;
  background: url(../images/icons/icon-long-white-arrow-right.svg) right center no-repeat;
}
@media only screen and (max-width: 1400px) {
  .offset-show-more a {
    font-size: 16px;
  }
}

.outer-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  background: var(--color-dark-black-opacity-75);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.outer-mobile-menu.active {
  pointer-events: all;
  opacity: 1;
  z-index: 1000;
}
.outer-mobile-menu.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu {
  width: calc(100% - 39px);
  background: var(--color-white);
  height: 100%;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}
.mobile-menu__top {
  padding: 24px 25px 0px 14px;
}
.mobile-menu__top input ~ img {
  width: 16px;
  height: auto;
}
.mobile-menu__body {
  overflow-y: scroll;
  position: relative;
  height: calc(100% - 270px);
}
.mobile-menu__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.mobile-menu__submenu {
  position: fixed;
  top: 133px;
  left: 0;
  width: 100%;
  height: calc(100% - 270px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  background: #fff;
}
.mobile-menu__submenu.is_active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.mobile-menu__bottom {
  padding-top: 21px;
  margin-top: auto;
  width: 100%;
  z-index: 10;
  background: #fff;
}

.mobile-menu-main-categories {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}
.mobile-menu-main-categories li.active a {
  background: var(--color-black);
  font-weight: 700;
  color: var(--color-white);
}
.mobile-menu-main-categories a {
  display: inline-block;
  font-size: 15px;
  line-height: 1.125;
  font-weight: 300;
  padding: 9px 9px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 365px) {
  .mobile-menu-main-categories a {
    padding: 9px 10px;
  }
}

.mobile-products-categories {
  display: flex;
  flex-direction: column;
  margin-right: 36px;
  height: 100%;
}
.mobile-products-categories > li:not(:last-child) > a::before {
  content: "";
  position: absolute;
  right: 2px;
  height: 1px;
  background: var(--color-grey-light-2);
}
.mobile-products-categories--main {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 29px;
  margin-left: 14px;
  height: 100%;
  overflow-y: auto;
}
.mobile-products-categories--main > li:not(:last-child) > a {
  margin-bottom: 25px;
}
.mobile-products-categories--main > li:not(:last-child) > a::before {
  width: 88%;
  bottom: -12px;
}
.mobile-products-categories--inner {
  font-size: 20px;
  line-height: 3;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.mobile-products-categories--inner > li:not(:last-child) > a {
  margin-bottom: 15px;
}
.mobile-products-categories--inner > li:not(:last-child) > a::before {
  width: 91%;
  bottom: -9px;
}

.mobile-products-categorie {
  display: flex;
  align-items: center;
  height: 45px;
  position: relative;
  padding-right: 15px;
}
.mobile-products-categorie::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  background-image: url("../images/icons/icon-arrow-right-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.mobile-products-categorie--show-all {
  font-size: 16px;
  line-height: 1.375;
  text-decoration: underline;
}
.mobile-products-categorie__icon {
  width: 29px;
  display: flex;
  justify-content: center;
  margin-right: 19px;
}

.mobile-menu-bottom--top {
  padding-left: 25px;
  padding-right: 36px;
  margin-bottom: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-bottom--top .mobile-menu-phone-icon {
  display: inline-block;
}
.mobile-menu-bottom--top .header-languages {
  display: flex;
  justify-content: space-between;
  width: 78px;
  font-size: 16px;
  line-height: 1.375;
}
.mobile-menu-bottom--top .header-language.active {
  font-weight: 700;
}

.mobile-menu-bottom--bottom {
  background: var(--color-grey-lighter);
  display: flex;
  justify-content: center;
  padding: 15px 0 16px 0;
}
.mobile-menu-bottom--bottom .mobile-menu-logreg {
  width: 148px;
  font-size: 14px;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
}

.mobile-submenu {
  padding-left: 25px;
  height: 100%;
  overflow-y: auto;
}
.mobile-submenu .submenu-title {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 20px;
  cursor: pointer;
}
.mobile-submenu .submenu-title img {
  margin-right: 34px;
}
.mobile-submenu .submenu-title h4 {
  font-size: 21px;
  line-height: 1.3333333333;
}

.close-mobile-menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -42px;
  cursor: pointer;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FORMS]
   ========================================================================== */
.input-label {
  font-size: 14px;
  line-height: 21px;
  color: #000;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .input-label {
    font-size: 9px;
    line-height: 19px;
  }
}

.input-style {
  background-color: white;
  border: 0.3px solid var(--color-black);
  border-radius: 2px;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.0588235294;
  padding: 13.5px 27.5px;
}
@media only screen and (max-width: 500px) {
  .input-style {
    padding: 11.5px 11px;
  }
}

.custom-dropdown {
  position: relative;
  cursor: pointer;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center right 18px;
  background-size: 13px 6.5px;
  padding-right: 34px;
}
@media only screen and (max-width: 500px) {
  .custom-dropdown {
    background-position: center right 27px;
    padding-right: 40px;
  }
}
.custom-dropdown img.img--header {
  display: none;
}

.custom-dropdown-selection a {
  display: none;
}

.search-form .form-group label {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-dropdown-options {
    background-color: white;
    border: 1px solid var(--color-black);
    border-radius: 0 0 3px 3px;
    position: absolute;
    left: 0;
    top: 100%;
    height: auto;
    max-height: 300px;
    overflow-y: scroll;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.custom-dropdown.active {
  background-image: initial;
  z-index: 1001;
  padding: 17px 26.5px;
  background-position: center right 19px;
  padding-right: 33px;
  border-radius: 2px 2px 0 0;
  cursor: initial;
}
@media screen and (max-width: 768px) {
  .custom-dropdown.active {
    padding: 18px 38px 19px;
    padding-right: 52px;
  }
}
@media only screen and (max-width: 380px) {
  .custom-dropdown.active {
    padding: 18px;
    padding-right: 34px;
  }
}
.custom-dropdown.active .custom-dropdown-options {
  opacity: 1;
  pointer-events: all;
  border: 0;
}
.custom-dropdown.active .custom-dropdown-selection span {
  display: none;
}
@media only screen and (max-width: 768px) {
  .custom-dropdown.active .custom-dropdown-selection img {
    display: inline-block;
  }
}
.custom-dropdown.active .custom-dropdown-selection a {
  display: inline-block;
}
.custom-dropdown.active .custom-dropdown-selection .find-your-size {
  display: none;
  margin: 0 27px 0 10px;
}
@media only screen and (max-width: 768px) {
  .custom-dropdown.active .custom-dropdown-selection .find-your-size {
    display: inline-block;
  }
}
@media only screen and (max-width: 425px) {
  .custom-dropdown.active .custom-dropdown-selection .find-your-size {
    margin: 0 27px 10px 10px;
  }
}

.custom-dropdown-option {
  cursor: pointer;
  color: var(--color-black);
  font-size: 17px;
  line-height: 1.0588235294;
  font-weight: normal;
  padding: 14px 28px;
}
.custom-dropdown-option:first-child {
  position: relative;
}
.custom-dropdown-option:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 37px);
  display: block;
  height: 0.5px;
  background-color: var(--color-grey-light-2);
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option:first-child::before {
    width: calc(100% - 28px);
  }
}
@media only screen and (max-width: 380px) {
  .custom-dropdown-option:first-child::before {
    width: calc(100% - 18px);
  }
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option {
    padding: 17px 38px;
  }
}
@media only screen and (max-width: 380px) {
  .custom-dropdown-option {
    padding: 14px 18px;
  }
}
.custom-dropdown-option:hover {
  background-color: var(--color-grey-lighter);
}
.custom-dropdown-option.out-of-stock {
  color: var(--color-grey-light-2);
}
.custom-dropdown-option.out-of-stock:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.custom-dropdown-option.low-availability:hover {
  background-color: var(--color-yellow);
  color: var(--color-white);
}
.custom-dropdown-option--message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-dropdown-option--message .message {
  color: var(--color-black);
  font-size: 13px;
  line-height: 1.3846153846;
  font-weight: 500;
}
.custom-dropdown-option--message .message__text {
  margin-right: -88px;
  background-color: var(--color-white);
  transition: margin-right 0.3s ease;
  z-index: 10;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .custom-dropdown-option--message .message__text {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--message .message__text {
    margin-right: 0;
    display: inline;
  }
}
@media only screen and (max-width: 400px) {
  .custom-dropdown-option--message .message__text {
    display: none;
  }
}
.custom-dropdown-option--message .message--availability {
  color: var(--color-yellow);
}
@media only screen and (max-width: 1024px) {
  .custom-dropdown-option--message .message--availability {
    font-size: 0;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--message .message--availability {
    font-size: 13px;
    margin-left: auto;
    margin-right: 27px;
  }
}
@media only screen and (max-width: 400px) {
  .custom-dropdown-option--message .message--availability {
    font-size: 0;
  }
}
.custom-dropdown-option--message .message .availability-btn {
  transition: all 0.3s ease;
  pointer-events: none;
  margin: 0 23px 0 15px;
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--message .message .availability-btn {
    display: none;
  }
}
.custom-dropdown-option--message svg {
  margin-left: 18px;
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--message svg {
    margin-left: 7.5px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--message .message--email svg {
    margin-left: 19px;
  }
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message {
  color: var(--color-white);
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message svg path {
  fill: var(--color-white);
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message__text {
  margin-right: 0;
  background-color: transparent;
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message .availability-btn {
  display: inline-block;
  position: relative;
  pointer-events: all;
  cursor: pointer;
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message .availability-btn svg path {
  fill: initial;
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option:hover.custom-dropdown-option--message .message .availability-btn {
    display: none;
  }
}
.custom-dropdown-option:hover.custom-dropdown-option--message .message--availability {
  color: var(--color-white);
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .custom-dropdown-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    display: block;
    height: 0.5px;
    background-color: var(--color-grey-light-2);
  }
}

.custom-dropdown-option:last-child {
  border-bottom: none;
}

.variation-sizes-wrapper .form-input-wrapper--custom-dropdown .input-style > label {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-dropdown-option--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8px 15px 28px;
  position: relative;
}
.custom-dropdown-option--footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 37px);
  display: block;
  height: 0.5px;
  background-color: var(--color-grey-light-2);
}
@media only screen and (max-width: 1024px) {
  .custom-dropdown-option--footer .img--footer {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dropdown-option--footer {
    display: none;
  }
}

.form-input-wrapper--email {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--color-black);
  border-radius: 2px;
  padding: 18px 25px;
}
@media only screen and (max-width: 1200px) {
  .form-input-wrapper--email {
    padding: 15px 25px;
  }
}
@media only screen and (max-width: 500px) {
  .form-input-wrapper--email {
    padding: 10px 15px;
  }
}
.form-input-wrapper--email svg:first-of-type {
  min-width: 21px;
  margin-right: 56px;
  margin-left: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  .form-input-wrapper--email svg:first-of-type {
    margin-right: 27px;
  }
}
@media only screen and (max-width: 500px) {
  .form-input-wrapper--email svg:first-of-type {
    margin-right: 10px;
  }
}
.form-input-wrapper--email svg:last-of-type {
  margin-right: 0;
  margin-left: auto;
  min-width: 30px;
}
.form-input-wrapper--email input {
  font-size: 15px;
  line-height: 1.4;
  border: 0;
  outline: 0;
}

input::placeholder {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-grey-dark);
  font-weight: 300;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1200px) {
  .checkbox-wrap {
    padding-left: 26px;
  }
}
@media only screen and (max-width: 500px) {
  .checkbox-wrap {
    padding-left: 10px;
  }
}
.checkbox-wrap label {
  color: var(--color-black);
  font-size: 11px;
  line-height: 1.2727272727;
  padding-left: 23px;
  margin-bottom: 9px;
  font-weight: 300;
}
.checkbox-wrap label a {
  text-decoration: underline;
}
.checkbox-wrap label a:hover {
  text-decoration: none;
}

.cbox-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 22px;
  height: 22px;
}

.cbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  z-index: 99999;
}

.cbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid var(--color-black);
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid var(--color-black);
}

.cbox-wrapper input:checked ~ .cbox-checkmark {
  background-image: url(../images/icons/ico-radio-checked.svg);
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cbox-wrapper input:checked ~ .cbox-checkmark:after {
  display: block;
}

.cbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.site-header-top {
  background: var(--color-black);
  color: #fff;
  padding: 14px 0;
  margin-bottom: 41px;
}
@media only screen and (max-width: 768px) {
  .site-header-top {
    margin-bottom: 28px;
  }
}
.site-header-top__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.site-header-top .header-tel {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3846153846;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-tel {
    position: relative;
    flex-shrink: 0;
    left: 0;
    top: 0;
    transform: translateY(0);
  }
}
.site-header-top .header-tel__number {
  display: flex;
  align-items: center;
  margin-left: 13px;
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-tel__number {
    margin-left: 0;
  }
}
.site-header-top .header-tel__number img {
  margin-right: 5px;
}
.site-header-top .header-benefits-slideshow {
  max-width: 554px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-benefits-slideshow {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .site-header-top .header-benefits-slideshow {
    max-width: 393px;
    margin: 0 auto;
  }
}
.site-header-top .header-benefits-slideshow-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header-top .header-benefits-slideshow .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  text-align: left;
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-benefits-slideshow .owl-nav {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-benefits-slideshow .owl-nav .owl-prev,
.site-header-top .header-benefits-slideshow .owl-nav .owl-next {
    max-width: 7px;
    margin: 0;
    font-size: 0;
  }
}
.site-header-top .header-benefits-slideshow .owl-nav .owl-prev:hover,
.site-header-top .header-benefits-slideshow .owl-nav .owl-next:hover {
  background: none;
}
.site-header-top .header-benefits-slideshow .owl-nav .owl-prev.disabled,
.site-header-top .header-benefits-slideshow .owl-nav .owl-next.disabled {
  opacity: 1;
}
.site-header-top .header-benefits-slideshow .owl-nav .owl-next {
  float: right;
}
.site-header-top .header-benefit {
  padding: 0 33px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
.site-header-top .header-benefit b {
  font-weight: 700;
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-benefit {
    font-size: 14px;
    padding: 0 19px;
  }
}
@media only screen and (max-width: 768px) {
  .site-header-top .header-benefit {
    font-size: 13px;
    line-height: 1.3846153846;
    padding: 0;
  }
  .site-header-top .header-benefit:not(:nth-child(1)) {
    display: none;
  }
}
.site-header-top .header-languages {
  display: flex;
  width: 80px;
  justify-content: space-between;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-languages {
    width: 55px;
    flex-shrink: 0;
    position: relative;
    right: 0;
    top: 0;
    transform: translateY(0);
    font-size: 14px;
    margin-left: 36px;
  }
}
.site-header-top .header-languages span {
  cursor: pointer;
  pointer-events: none;
}
.site-header-top .header-language {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
}
@media only screen and (max-width: 1400px) {
  .site-header-top .header-language {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.site-header-top .header-language.active {
  font-weight: 700;
}

.site-header-middle {
  margin-bottom: 33px;
  color: var(--color-black);
}
@media only screen and (max-width: 768px) {
  .site-header-middle {
    margin-bottom: 28px;
  }
}
.site-header-middle .site-header-middle__inner {
  display: flex;
  align-items: center;
}
.site-header-middle .site-header-middle__inner > div {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .site-header-middle .site-header-middle__inner > div {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 500px) {
  .site-header-middle .site-header-middle__inner > div {
    flex: unset;
  }
}
.site-header-middle .site-header-middle__inner .header-middle-left {
  margin-right: auto;
  justify-content: flex-start;
  align-items: center;
}
.site-header-middle .site-header-middle__inner .header-middle-right {
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .site-header-middle .site-header-middle__inner .header-logo img {
    max-width: 245px;
  }
}
@media only screen and (max-width: 768px) {
  .site-header-middle .site-header-middle__inner .header-logo img {
    max-width: 186px;
  }
}
@media only screen and (max-width: 360px) {
  .site-header-middle .site-header-middle__inner .header-logo img {
    max-width: 165px;
  }
}
.site-header-middle .site-header-middle__inner .menu-toggler {
  margin-right: 24px;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .site-header-middle .site-header-middle__inner .menu-toggler {
    display: inline-block;
  }
}
@media only screen and (max-width: 360px) {
  .site-header-middle .site-header-middle__inner .menu-toggler {
    margin-right: 14px;
  }
}
.site-header-middle .site-header-middle__inner .header-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-header-middle .site-header-middle__inner .header-controls a {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.375;
}
@media only screen and (max-width: 1400px) {
  .site-header-middle .site-header-middle__inner .header-controls a {
    margin-right: 10px;
    font-size: 12px;
    line-height: 1.5;
  }
  .site-header-middle .site-header-middle__inner .header-controls a:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .site-header-middle .site-header-middle__inner .header-controls a:nth-child(1) img, .site-header-middle .site-header-middle__inner .header-controls a:nth-child(2) img {
    width: 25px;
    height: auto;
  }
  .site-header-middle .site-header-middle__inner .header-controls a:nth-child(3) img {
    height: 26px;
    width: auto;
  }
}
@media only screen and (max-width: 413px) {
  .site-header-middle .site-header-middle__inner .header-controls a:nth-child(1) img, .site-header-middle .site-header-middle__inner .header-controls a:nth-child(2) img {
    width: 20px;
    height: auto;
  }
  .site-header-middle .site-header-middle__inner .header-controls a:nth-child(3) img {
    height: 20px;
    width: auto;
  }
}
.site-header-middle .site-header-middle__inner .header-controls a:not(:last-child) {
  margin-right: 57px;
}
@media only screen and (max-width: 1470px) {
  .site-header-middle .site-header-middle__inner .header-controls a:not(:last-child) {
    margin-right: 18px;
  }
}
@media only screen and (max-width: 1400px) {
  .site-header-middle .site-header-middle__inner .header-controls a:not(:last-child) {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 413px) {
  .site-header-middle .site-header-middle__inner .header-controls a:not(:last-child) {
    margin-right: 12px;
  }
}
.site-header-middle .site-header-middle__inner .header-controls img {
  margin-right: 5px;
}
@media only screen and (max-width: 1400px) {
  .site-header-middle .site-header-middle__inner .header-controls img {
    margin-right: 0;
  }
}

.site-header-bottom {
  position: relative;
  color: var(--color-black);
}
@media only screen and (max-width: 768px) {
  .site-header-bottom {
    margin-bottom: 14px;
  }
}
.site-header-bottom .site-header-bottom__inner {
  display: flex;
  align-items: center;
}
.site-header-bottom .site-header-bottom__inner .header-bottom-left {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .site-header-bottom .site-header-bottom__inner .header-bottom-right {
    flex: 1;
  }
}

.header-search__wrapper {
  width: 405px;
  position: relative;
}
@media only screen and (max-width: 1470px) {
  .header-search__wrapper {
    width: 330px;
  }
}
@media only screen and (max-width: 1400px) {
  .header-search__wrapper {
    width: 252px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-search__wrapper {
    width: 224px;
  }
}
@media only screen and (max-width: 768px) {
  .header-search__wrapper {
    width: 100%;
  }
}
.header-search__wrapper.active {
  background: var(--color-grey-lighter);
}
.header-search__wrapper.active .header-search__form input {
  background: var(--color-grey-lighter);
}
.header-search__wrapper.active .header-search__form label span:nth-child(1) {
  opacity: 0;
}
.header-search__wrapper.active .header-search__form label span:nth-child(2) {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.header-search__wrapper.active .header-search__related {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.header-search__menu.active label {
  display: none;
}
.header-search__menu.active .header-search__related {
  height: calc(100vh - 132px);
  background: #ffff;
}
.header-search__menu.active .header-search__related li:first-of-type {
  margin-top: 19px;
}
.header-search__menu.active .header-search__related li:not(:last-of-type) {
  margin-bottom: 19px;
}
.header-search__menu.active .header-search__related li a {
  justify-content: initial;
  align-items: center;
  font-size: 19px;
  padding: 16px 25px;
}
.header-search__menu.active .header-search__related li a img:first-of-type {
  width: 16.19px;
  margin-right: 20px;
}
.header-search__menu.active .header-search__related li a img:last-of-type {
  margin-left: auto;
  margin-right: 20px;
}
.header-search__form {
  transition: all 0.3s ease;
  padding: 15px 13px 12px 19px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .header-search__form {
    background: var(--color-grey-lighter);
    width: 100%;
    padding: 14px 25px;
  }
}
.header-search__form label {
  margin-right: 21px;
  min-width: 52px;
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.125;
}
@media only screen and (max-width: 1400px) {
  .header-search__form label {
    min-width: 46px;
    font-size: 14px;
    line-height: 1.1428571429;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header-search__form label {
    font-size: 16px;
    line-height: 1.125;
  }
}
.header-search__form label span {
  transition: all 0.3s ease;
}
.header-search__form label span:nth-child(2) {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
}
.header-search__form input {
  border: none;
  border-bottom: 1px solid var(--color-grey-dark);
  width: 280px;
  font-size: 16px;
  line-height: 1.125;
  min-width: 0;
}
@media only screen and (max-width: 1400px) {
  .header-search__form input {
    width: 144px;
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
@media only screen and (max-width: 1024px) {
  .header-search__form input {
    width: 116px;
  }
}
@media only screen and (max-width: 768px) {
  .header-search__form input {
    background: var(--color-grey-lighter);
    font-size: 16px;
    line-height: 1.125;
    width: unset;
    flex: 1;
    border-bottom: unset;
  }
}
.header-search__form input:focus {
  outline: none;
}
.header-search__form button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media only screen and (max-width: 1400px) {
  .header-search__form button img {
    height: 19px;
  }
}
.header-search__related {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header-search__related li {
  transition: all 0.3s ease;
}
.header-search__related a {
  width: 100%;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 15px 16px 19px;
  line-height: 0.9473684211;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1400px) {
  .header-search__related a {
    font-size: 16px;
    line-height: 0.9375;
  }
}
.header-search__related a:hover {
  background: var(--color-grey-lighter);
}

.welcome-screen {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.welcome-screen::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-black-opacity-75);
}
.welcome-wrapper {
  padding-top: 81px;
  padding-bottom: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.welcome-image {
  margin-bottom: 155px;
}
@media screen and (max-width: 768px) {
  .welcome-image {
    margin-bottom: 72px;
  }
  .welcome-image img {
    max-width: 200px;
  }
}
.welcome-menu {
  margin-bottom: 146px;
}
@media screen and (max-width: 768px) {
  .welcome-menu {
    margin-bottom: 91px;
  }
}
.welcome-menu ul {
  display: flex;
  flex-direction: column;
}
.welcome-menu li {
  min-width: 316px;
  font-size: 23px;
  line-height: 1.3913043478;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 35px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .welcome-menu li {
    min-width: 236px;
    font-size: 22px;
    line-height: 1.3636363636;
    margin-bottom: 26px;
  }
}
.welcome-menu li:last-child {
  margin-bottom: 0;
}
.welcome-languages ul {
  display: flex;
  align-items: center;
}
.welcome-languages li {
  color: var(--color-white);
  font-size: 21px;
  line-height: 1.3333333333;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .welcome-languages li {
    font-size: 20px;
    line-height: 1.35;
  }
}
.welcome-languages li.lng-separator {
  background-color: var(--color-white);
  width: 1px;
  height: 18px;
  margin: 0 22px;
  display: block;
}
.welcome-languages li.active {
  font-weight: 700;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MINICART]
   ========================================================================== */
.minicart {
  position: absolute;
  width: 75%;
  max-width: 680px;
  height: 100%;
  background-color: rgba(252, 250, 245, 0.95);
  right: 0;
  top: 0;
  padding: 60px 40px 50px;
  z-index: 999999999;
  flex-direction: column;
  display: flex;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow: auto;
}
@media only screen and (max-width: 1400px) {
  .minicart {
    width: 90%;
  }
}
@media only screen and (max-width: 1024px) {
  .minicart {
    width: 100%;
    max-width: unset;
  }
}
@media only screen and (max-width: 768px) {
  .minicart {
    padding: 30px 20px;
  }
}
.minicart.open {
  transform: translateX(0);
  transition: all 0.3s ease;
}
.minicart__header {
  display: grid;
  grid-template-columns: auto 44px;
  grid-template-rows: 1fr auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .minicart__header {
    grid-template-columns: auto 25px;
    margin-bottom: 50px;
  }
}
.minicart__header h3 {
  color: var(--color-black);
  font-size: 33px;
  line-height: 44px;
  font-weight: bold;
  grid-area: 1/1/2/2;
}
.minicart__header span {
  color: var(--color-black);
  font-size: 21px;
  line-height: 29px;
  font-weight: 300;
  grid-area: 2/1/3/2;
}
.minicart__header a {
  text-decoration: none;
  grid-area: 1/2/2/3;
  display: flex;
  align-items: center;
}
.minicart__header a img {
  height: auto;
  width: 25px;
}
.minicart__footer {
  margin-top: auto;
  border-top: 1px solid var(--color-grey-light-2);
  padding-top: 40px;
}
@media only screen and (max-width: 768px) {
  .minicart__footer {
    padding-top: 20px;
  }
}
.minicart__footer h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-green);
  font-weight: bold;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .minicart__footer h3 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .minicart__footer h3 {
    margin-bottom: 20px;
  }
}
.minicart__footer h3 span {
  flex: 1;
}
.minicart__footer h3 span:first-child {
  font-size: 25px;
  line-height: 33px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .minicart__footer h3 span:first-child {
    font-size: 20px;
    line-height: 1.2;
  }
}
.minicart__footer h3 span:last-child {
  font-size: 25px;
  line-height: 33px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .minicart__footer h3 span:last-child {
    font-size: 20px;
    line-height: 1.2;
  }
}
.minicart__footer .btn {
  letter-spacing: 0;
  font-size: 20px;
  padding: 15px;
}
.minicart__footer .btn:not(.btn--green) {
  background-color: transparent;
  margin-bottom: 15px;
  border: 1px solid #707070;
}
.minicart__item {
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .minicart__item {
    margin-bottom: 25px;
  }
}
.minicart__item .thanks__product-desc {
  max-width: 200px;
}
.minicart__item .quantity-container {
  position: absolute;
  right: 90px;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .minicart__item .quantity-container {
    position: static;
  }
}
.minicart__item .qty-btn {
  font-size: 20px;
  height: 30px;
  width: 30px;
  border: 1px solid #707070;
  border-radius: 0;
}
.minicart__item .qty {
  outline: 0;
  background: transparent;
  text-decoration: none;
  font-weight: bold;
  font-size: 28px;
  width: 80px;
}
@media only screen and (max-width: 768px) {
  .minicart__item .qty {
    font-size: 20px;
    width: 40px;
  }
}
.minicart__item a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
}
.minicart__item a img {
  width: 15px;
  height: auto;
}
.minicart__item:last-of-type {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .minicart__item:last-of-type {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
	PSDGator SCSS Styles [Gift Card]
	========================================================================== */
.section-gift-card {
  padding: 120px 0;
}

.section-gift-card .container {
  width:70%;
}


@media only screen and (max-width: 768px) {
  .section-gift-card {
    padding: 80px 20px;
  }
    .section-gift-card .container {
        width: 100%;
    }
}

.gift-card {
  background: #10100f;
  border-radius: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  padding: 60px;
  margin-bottom: 110px;
  max-width: 730px;
}
@media only screen and (max-width: 1400px) {
  .gift-card {
    height: 300px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .gift-card {
    padding: 55px 0;
    height: unset;
    max-width: 500px;
    margin: 0 auto 50px;
  }
}
.gift-card img {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .gift-card img {
    max-width: 200px;
    margin-bottom: 50px;
  }
}
.gift-card span {
  text-transform: uppercase;
  color: #fff;
  font-size: 42px;
  line-height: 56px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .gift-card span {
    font-size: 32px;
    line-height: 43px;
  }
}

.gift-card-form-wrapper h1 {
  font-size: 42px;
  line-height: 56px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  .gift-card-form-wrapper h1 {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.gift-card-form-wrapper h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1400px) {
  .gift-card-form-wrapper h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper h2 {
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 20px;
  }
}
.gift-card-form-wrapper h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper h3 {
    font-size: 11px;
    line-height: 15px;
  }
}
.gift-card-form-wrapper .input-wrapper {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.gift-card-form-wrapper .input-wrapper label {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper label {
    font-size: 11px;
    line-height: 15px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=text],
.gift-card-form-wrapper .input-wrapper input[type=email],
.gift-card-form-wrapper .input-wrapper textarea {
  height: 90px;
  border-radius: 0;
  outline: none;
  border: 1px solid #10100f;
  padding-left: 30px;
  color: #10100f;
  font-size: 28px;
  font-weight: 300;
}
.gift-card-form-wrapper .input-wrapper input[type=text]::-webkit-input-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::-webkit-input-placeholder,
.gift-card-form-wrapper .input-wrapper textarea::-webkit-input-placeholder {
  color: #c2c2c2;
  font-size: 28px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text]::-webkit-input-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::-webkit-input-placeholder,
.gift-card-form-wrapper .input-wrapper textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=text]:-moz-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]:-moz-placeholder,
.gift-card-form-wrapper .input-wrapper textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #c2c2c2;
  font-size: 28px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text]:-moz-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]:-moz-placeholder,
.gift-card-form-wrapper .input-wrapper textarea:-moz-placeholder {
    font-size: 14px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=text]::-moz-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::-moz-placeholder,
.gift-card-form-wrapper .input-wrapper textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #c2c2c2;
  font-size: 28px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text]::-moz-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::-moz-placeholder,
.gift-card-form-wrapper .input-wrapper textarea::-moz-placeholder {
    font-size: 14px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=text]:-ms-input-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]:-ms-input-placeholder,
.gift-card-form-wrapper .input-wrapper textarea:-ms-input-placeholder {
  color: #c2c2c2;
  font-size: 28px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text]:-ms-input-placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]:-ms-input-placeholder,
.gift-card-form-wrapper .input-wrapper textarea:-ms-input-placeholder {
    font-size: 14px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=text]::placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::placeholder,
.gift-card-form-wrapper .input-wrapper textarea::placeholder {
  color: #c2c2c2;
  font-size: 28px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text]::placeholder,
.gift-card-form-wrapper .input-wrapper input[type=email]::placeholder,
.gift-card-form-wrapper .input-wrapper textarea::placeholder {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=text],
.gift-card-form-wrapper .input-wrapper input[type=email],
.gift-card-form-wrapper .input-wrapper textarea {
    height: 65px;
    padding-left: 15px;
    font-size: 14px;
  }
}
.gift-card-form-wrapper .input-wrapper input[type=submit] {
  height: 100px;
  background-color: #409966;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  line-height: 38px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  border: none;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper input[type=submit] {
    height: 70px;
    font-size: 20px;
  }
}
.gift-card-form-wrapper .input-wrapper textarea {
  padding: 20px 30px;
  height: 190px;
  resize: none;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .input-wrapper textarea {
    height: 120px;
    padding: 10px 15px;
  }
}
.gift-card-form-wrapper .gift-card__radio {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.gift-card-form-wrapper .gift-card__radio:first-of-type {
  margin-left: 0;
}
.gift-card-form-wrapper .gift-card__radio label {
  margin-bottom: 0;
  margin-right: 15px;
  height: 30px;
}
.gift-card-form-wrapper .gift-card__radio span {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .gift-card__radio span {
    font-size: 11px;
  }
}
.gift-card-form-wrapper .gift-card__radio .circle-checkbox .circle {
  height: 30px;
  width: 30px;
}
.gift-card-form-wrapper .range-input-wrapper {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.gift-card-form-wrapper .range-input-wrapper::before, .gift-card-form-wrapper .range-input-wrapper::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 53px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .range-input-wrapper::before, .gift-card-form-wrapper .range-input-wrapper::after {
    font-size: 22px;
    line-height: 30px;
  }
}
.gift-card-form-wrapper .range-input-wrapper::before {
  content: "-";
  left: 0;
}
.gift-card-form-wrapper .range-input-wrapper::after {
  content: "+";
  right: 0;
}
.gift-card-form-wrapper input[type=range] {
  height: 31px;
  -webkit-appearance: none;
  margin: 10px auto;
  width: calc(100% - 80px);
}
.gift-card-form-wrapper input[type=range]:focus {
  outline: none;
}
.gift-card-form-wrapper input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #10100f;
  border-radius: 0px;
  border: 0px solid #000000;
}
.gift-card-form-wrapper input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  background: #10100f;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -12px;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper input[type=range]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
  }
}
.gift-card-form-wrapper input[type=range]:focus::-webkit-slider-runnable-track {
  background: #10100f;
}
.gift-card-form-wrapper input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #10100f;
  border-radius: 0px;
  border: 0px solid #000000;
}
.gift-card-form-wrapper input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  background: #10100f;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper input[type=range]::-moz-range-thumb {
    height: 18px;
    width: 18px;
  }
}
.gift-card-form-wrapper input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.gift-card-form-wrapper input[type=range]::-ms-fill-lower {
  background: #10100f;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000;
}
.gift-card-form-wrapper input[type=range]::-ms-fill-upper {
  background: #10100f;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000;
}
.gift-card-form-wrapper input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 0px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  background: #10100f;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper input[type=range]::-ms-thumb {
    height: 18px;
    width: 18px;
  }
}
.gift-card-form-wrapper input[type=range]:focus::-ms-fill-lower {
  background: #10100f;
}
.gift-card-form-wrapper input[type=range]:focus::-ms-fill-upper {
  background: #10100f;
}
.gift-card-form-wrapper .gift-card-amount {
  display: flex;
  align-items: center;
}
.gift-card-form-wrapper .gift-card-amount input[type=text] {
  height: 70px;
  font-size: 40px;
  color: #10100f;
  max-width: 200px;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .gift-card-amount input[type=text] {
    height: 50px;
    font-size: 22px;
    max-width: 120px;
  }
}
.gift-card-form-wrapper .gift-card-amount span {
  margin-left: 40px;
  color: #10100f;
  font-size: 21px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .gift-card-form-wrapper .gift-card-amount span {
    font-size: 16px;
  }
}

.section-error-page {
  margin: 107px 0 137px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-error-page {
    margin: 25px 0 33px;
  }
}
.section-error-page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 400px;
  background-color: var(--color-grey-lighter);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section-error-page::before {
    content: initial;
  }
}

.error-message-wrapper {
  position: relative;
  padding: 142px 0;
}
@media screen and (max-width: 768px) {
  .error-message-wrapper {
    padding: 81px 0;
  }
}
.error-message-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-brown-opacity-44);
  z-index: 10;
  mix-blend-mode: multiply;
}
.error-message-image {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.error-message-image img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.error-message-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
  z-index: 15;
  padding: 0 32px;
}
.error-message-content h1 {
  font-size: 35px;
  line-height: 1.3714285714;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .error-message-content h1 {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
.error-message-content p {
  font-size: 23px;
  line-height: 1.3913043478;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .error-message-content p {
    font-size: 16px;
    line-height: 1.375;
    margin-bottom: 25px;
  }
}
.error-message-content .btn {
  max-width: 270px;
  margin: 0 auto;
  padding: 15px 34px;
}
@media screen and (max-width: 768px) {
  .error-message-content .btn {
    font-size: 18px;
    line-height: 1.3333333333;
  }
}

/* ==========================================================================
	PSDGator SCSS Styles [No Results]
	========================================================================== */
.section-no-results {
  position: relative;
  margin: 100px 0;
  margin-bottom: 35px;
}
@media only screen and (max-width: 981px) {
  .section-no-results {
    margin: 20px 0 30px;
    padding: 52px 0 40px;
  }
}
.section-no-results.background-image {
  background-image: none;
}
@media only screen and (max-width: 981px) {
  .section-no-results.background-image {
    background-image: url(../images/no-results.jpg);
  }
}
.section-no-results:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 16%;
  height: 480px;
  background-color: #fcfaf5;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .section-no-results:before {
    display: none;
  }
}
.section-no-results:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 45.5%;
  height: 480px;
  background-color: #fcfaf5;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .section-no-results:after {
    display: none;
  }
}

.no-results {
  display: flex;
}
@media only screen and (max-width: 981px) {
  .no-results {
    margin: 0 10px;
  }
}
.no-results--left {
  flex-basis: 467px;
  max-width: 467px;
  margin-right: 70px;
}
@media only screen and (max-width: 981px) {
  .no-results--left {
    flex-basis: 386px;
    max-width: 386px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 981px) {
  .no-results--right {
    display: none;
  }
}
.no-results__mail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background-color: #fcfaf5;
  width: fit-content;
  width: -webkit-fit-content;
  margin: 30px 0 25px;
  border-radius: 5px;
}
.no-results__mail img.icon-mail {
  margin-right: 14px;
}
.no-results__mail img.icon-arrow-right {
  margin-left: 14px;
  color: #10100f;
}
@media only screen and (max-width: 981px) {
  .no-results__mail img.icon-arrow-right {
    display: none;
  }
}

.result-text {
  padding-top: 25px;
}
@media only screen and (max-width: 981px) {
  .result-text {
    padding-top: 0;
  }
}
.result-text h2 {
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  color: #10100f;
}
@media only screen and (max-width: 981px) {
  .result-text h2 {
    font-size: 17px;
    line-height: 23px;
    color: #ffffff;
    text-align: center;
  }
}
.result-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #10100f;
  margin-top: 25px;
}
@media only screen and (max-width: 981px) {
  .result-text p {
    font-size: 13px;
    line-height: 17px;
    color: #ffffff;
    text-align: center;
    margin-top: 30px;
  }
}
.result-text .mobile {
  display: none;
}
@media only screen and (max-width: 981px) {
  .result-text .mobile {
    display: block;
  }
}
.result-text .desktop {
  display: block;
}
@media only screen and (max-width: 981px) {
  .result-text .desktop {
    display: none;
  }
}
.result-text .telephones-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
  background-color: #fcfaf5;
  border-radius: 5px;
  padding: 12px 22px;
  width: fit-content;
  width: -webkit-fit-content;
}
.result-text .telephones-wrapper a {
  display: flex;
  font-size: 18px;
  line-height: 24px;
}
.result-text .telephones-wrapper a:first-of-type {
  padding-right: 28px;
  border-right: 1px solid #b4b4b4;
}
.result-text .telephones-wrapper a:last-of-type {
  padding-left: 28px;
}
.result-text .telephones-wrapper a img {
  margin-right: 8px;
}

@media only screen and (max-width: 981px) {
  .mobile-table {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    background-color: #fcfaf5;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 981px) {
  .mobile-table p {
    color: #10100f;
    margin-top: 0;
  }
  .mobile-table p:first-of-type {
    order: 3;
  }
  .mobile-table p:last-of-type {
    order: 1;
  }
}
@media only screen and (max-width: 981px) {
  .mobile-table .no-results__mail {
    order: 4;
    background-color: #10100f;
    color: #ffffff;
    margin: 17px auto 0 auto;
    padding: 0;
    width: 235px;
    height: 45px;
    justify-content: center;
  }
}
@media only screen and (max-width: 981px) {
  .mobile-table .telephones-wrapper {
    order: 2;
    background-color: #10100f;
    margin: 17px auto 20px auto;
    padding: 12px 38px;
  }
  .mobile-table .telephones-wrapper a {
    color: #ffffff;
    display: flex;
    padding-left: 0 !important;
  }
  .mobile-table .telephones-wrapper a.desktop {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .products-carousel-wrapper .text-area h2 {
    display: block !important;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 19px;
  }
}

.section-login {
  margin-top: 65px;
}
@media only screen and (max-width: 768px) {
  .section-login {
    margin-top: 0;
  }
}

.login {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .login {
    width: 100%;
    max-width: 386px;
    margin: 28px auto 0 auto;
  }
}
.login--left {
  flex-basis: 50%;
  max-width: 50%;
  padding-right: 58px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .login--left {
    padding-right: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .login--left {
    padding-right: 0;
    flex-basis: 100%;
    max-width: 100%;
    display: none;
  }
}
.login--left:after {
  content: "";
  position: absolute;
  right: 0;
  height: 321px;
  width: 1px;
  background-color: #10100f;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .login--left:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .login--left.active {
    display: block;
  }
}
.login--left h3 {
  text-align: right;
}
.login--right {
  padding-left: 58px;
  flex-basis: 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .login--right {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .login--right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .login--right.active {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .login--right .btn-login {
    margin-top: 0;
  }
}
.login--right p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  color: #10100f;
  margin-top: 15px;
}
.login--right p strong {
  font-weight: 700;
}
.login--right span {
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  margin-top: 3px;
}
.login h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .login h3 {
    display: none;
  }
}
.login .btn-login--green {
  margin-top: auto;
}
@media only screen and (max-width: 768px) {
  .login .btn-login--green {
    margin-top: 50px;
  }
}

.submit-form {
  display: none;
}
@media only screen and (max-width: 768px) {
  .submit-form {
    display: block;
  }
}

.login-form__forget,
.submit-form__forget {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
  margin-top: 10px;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .login-form__forget,
.submit-form__forget {
    display: none;
  }
}
.login-form label,
.submit-form label {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
  margin-bottom: 3px;
}
.login-form label:before,
.submit-form label:before {
  content: "*";
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #a72525;
  padding-right: 2px;
}
.login-form input[type=email],
.login-form input[type=password],
.submit-form input[type=email],
.submit-form input[type=password] {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 300;
  color: #10100f;
  border-radius: 5px;
  border: 1px solid #10100f;
  padding-left: 25px;
}
.login-form input[type=email]:focus,
.login-form input[type=password]:focus,
.submit-form input[type=email]:focus,
.submit-form input[type=password]:focus {
  outline: none;
}
.login-form input[type=email].mb-14,
.login-form input[type=password].mb-14,
.submit-form input[type=email].mb-14,
.submit-form input[type=password].mb-14 {
  margin-bottom: 14px;
}
.login-form input[type=email],
.submit-form input[type=email] {
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .login-form input[type=email],
.submit-form input[type=email] {
    margin-bottom: 14px;
  }
}

.login__social {
  display: flex;
  align-items: center;
  margin-top: 28px;
}
@media only screen and (max-width: 768px) {
  .login__social {
    margin-top: 18px;
  }
}
.login__social span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #10100f;
  flex-shrink: 0;
  margin-right: 15px;
}
.login__social ul {
  display: flex;
  flex-basis: 216px;
  max-width: 216px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}
.login__social ul li:not(:last-of-type) {
  margin-right: 5px;
}

.btn-login {
  display: block;
  font-size: 19px;
  line-height: 20px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  background-color: #000000;
  border-radius: 5px;
  height: 55px;
  margin-top: 28px;
  cursor: pointer;
}
.btn-login.mt-27 {
  margin-top: 27px !important;
}
.btn-login--green {
  background-color: #409966;
  color: #ffffff;
}

.back2Basket {
  margin-top: 78px;
  margin-bottom: 118px;
}
@media only screen and (max-width: 768px) {
  .back2Basket {
    display: none;
  }
}
.back2Basket a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}
.back2Basket a img {
  margin-right: 8px;
}

.login-mobile {
  margin: 0 auto;
  width: 100%;
  max-width: 386px;
}
.login-mobile__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}
.login-mobile__tab {
  cursor: pointer;
}
.login-mobile__tab.active {
  position: relative;
}
.login-mobile__tab.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #10100f;
}
.login-mobile__tab span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #10100f;
  padding-bottom: 6px;
}
.login-mobile__txt {
  display: none;
  margin-bottom: 27px;
}
@media only screen and (max-width: 768px) {
  .login-mobile__txt {
    display: block;
  }
}
.login-mobile__txt p {
  font-size: 19px;
  line-height: 24px;
  color: #10100f;
  font-weight: 300;
  text-align: center;
  margin-bottom: 18px;
}
.login-mobile__txt p strong {
  font-weight: 700;
  color: #409966;
}
.login-mobile__txt span {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  color: #10100f;
}

.section-order {
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .section-order {
    padding-top: 30px;
  }
}

.order {
  display: flex;
  justify-content: space-between;
  margin-bottom: 102px;
}
@media only screen and (max-width: 1400px) {
  .order {
    flex-wrap: wrap;
    max-width: 770px;
    margin: 0 auto 102px auto;
  }
}
@media only screen and (max-width: 768px) {
  .order {
    margin: 0 auto;
  }
}
.order h3 {
  font-size: 23px;
  line-height: 32px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 23px;
}
@media only screen and (max-width: 768px) {
  .order h3 {
    text-align: center;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.order input {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 300;
  color: #10100f;
  border-radius: 5px;
  border: 1px solid #10100f;
  padding-left: 25px;
}
.order input.--lg {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
}
.order input.--centered {
  padding-right: 25px;
  text-align: center;
}
.order input.--bold {
  font-weight: 700;
}
.order input:focus {
  outline: none;
}
.order label {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
  margin-bottom: 3px;
}
.order label:before {
  content: "*";
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #a72525;
  padding-right: 2px;
}
.order .form__row {
  display: flex;
  margin-bottom: 10px;
}
.order .form__col {
  flex: 1;
}
.order .form__col:not(:last-of-type) {
  margin-right: 14px;
}
.order__radio {
  display: flex;
  padding: 0 16px;
  height: 45px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #10100f;
}
.order__radio label {
  margin-bottom: 0;
}
.order__radio > span {
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
  margin-left: 14px;
  pointer-events: none;
}
.order__radio > span.price {
  font-weight: 300;
  margin-left: 20px;
}
.order__address-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 17px;
}
.order__address-checkbox > span {
  display: block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #10100f;
  text-decoration: underline;
}
.order__present {
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .order__present {
    margin-top: 25px;
    background-color: #fcfaf5;
    padding: 3px 3px 14px 15px;
  }
}
.order__present > .simple-checkbox {
  margin-top: 8px;
}
.order__present-info {
  margin-left: 8px;
  padding: 9px 20px 9px 14px;
  background-color: #fcfaf5;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.order__present-content {
  display: none;
}
.order__present-content.open {
  display: block;
}
.order__present-content .present-row {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .order__present-content .present-row {
    margin-left: -44px;
  }
}
.order__present-content .present-row span {
  display: block;
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
}
.order__present-content .present-row img {
  margin: 0 16px;
}
@media only screen and (max-width: 768px) {
  .order__present-content .present-row img {
    margin: 0 38px 0 16px;
  }
}
.order__present-content > span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #10100f;
  margin-top: 19px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .order__present-content > span {
    margin-left: 10px;
  }
}
.order__present-content a {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: #10100f;
  margin-top: 14px;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .order__present-content a {
    margin-left: 20px;
  }
}
.order__present-title {
  display: flex;
}
.order__present-title span:first-of-type {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #10100f;
}
.order__present-title span:last-of-type {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #10100f;
  margin-left: auto;
}
.order__present-title img {
  margin-right: 7px;
}
.order__next {
  height: 55px;
  line-height: 55px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  background-color: #409966;
  border-radius: 5px;
  margin-top: 29px;
  justify-content: center;
  cursor: pointer;
}
.order__tab {
  display: flex;
  margin: 17px 0 10px;
}
@media only screen and (max-width: 768px) {
  .order__tab {
    justify-content: center;
  }
}
.order__tab span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #10100f;
  position: relative;
  cursor: pointer;
}
.order__tab span:first-of-type {
  margin-right: 18px;
}
.order__tab span:first-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 1px;
  height: 100%;
  background-color: #10100f;
}
.order__tab span:last-of-type {
  margin-left: 18px;
}
.order__tab span.active {
  font-weight: 700;
}
.order__tab span.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #10100f;
}
.order--left {
  max-width: 386px;
  flex-basis: 386px;
}
@media only screen and (max-width: 1400px) {
  .order--left {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .order--left {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.order--left h3 {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .order--left h3 {
    text-align: center;
  }
}
.order__comments {
  display: flex;
  padding: 12px;
  background-color: #fcfaf5;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.order__comments span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #10100f;
  text-decoration: underline;
  margin-left: 8px;
}
.order__comments textarea {
  display: none;
}
.order__comments.open {
  justify-content: unset;
  align-items: unset;
  padding: 0;
  background-color: transparent;
  flex-direction: column;
}
.order__comments.open textarea {
  display: block;
  padding: 9px 11px;
  border: 1px solid #10100f;
  border-radius: 5px;
  height: 77px;
  font-size: 13px;
  line-height: 18px;
  color: #10100f;
  resize: none;
  margin: 12px 0 18px;
}
.order__comments.open textarea:focus {
  outline: none;
}
.order__comments.open textarea::-webkit-input-placeholder {
  color: #dcdcdc;
}
.order__comments.open textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #dcdcdc;
}
.order__comments.open textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #dcdcdc;
}
.order__comments.open textarea:-ms-input-placeholder {
  color: #dcdcdc;
}
.order__comments.open textarea::placeholder {
  color: #dcdcdc;
}
.order__comments.open span {
  position: relative;
  width: 100%;
  text-decoration: none;
  margin-left: 0;
}
.order__comments.open span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/icons/icon-close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  width: 17px;
  height: 17px;
}
.order__comments.open img {
  display: none;
}
.order--mid {
  max-width: 364px;
  flex-basis: 364px;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 1400px) {
  .order--mid {
    margin-right: 0;
    max-width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .order--mid {
    max-width: 100%;
    flex-basis: 100%;
    margin-left: 0;
  }
}
.order--mid h3 {
  text-align: center;
}
.order--mid h3:last-of-type {
  margin-top: 48px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .order--mid h3:last-of-type {
    margin-top: 27px;
    margin-bottom: 9px;
  }
}
.order__consent {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
.order__consent > span,
.order__consent a {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #10100f;
}
.order__consent > span {
  margin-left: 7px;
}
.order__consent > span a {
  margin-left: 2px;
  text-decoration: underline;
}
.order__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.order__total span {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  color: #409966;
}
.order__discount {
  display: flex;
  height: 50px;
  background-color: #fcfaf5;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}
.order__discount span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #10100f;
  text-decoration: underline;
  cursor: pointer;
}
.order__discount span:hover {
  color: #409966;
}
.order__discount span:first-of-type {
  padding-right: 25px;
  position: relative;
}
.order__discount span:first-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #10100f;
}
.order__discount span:last-of-type {
  padding-left: 25px;
}
.order__discount span.active {
  color: #409966;
}
.order__product {
  display: flex;
  width: 100%;
}
.order__product:not(:last-of-type) {
  margin-bottom: 12px;
}
.order__product-wrapper {
  display: flex;
  flex-direction: column;
}
.order__product-desc {
  padding: 0 0 5px 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.order__product-desc .title {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
  margin-bottom: 13px;
}
.order__product-desc .prices {
  margin-top: auto;
  margin-left: auto;
  display: flex;
}
.order__product-desc .prices span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #10100f;
}
.order__product-desc .prices span:first-of-type {
  font-weight: 300;
  padding-right: 5px;
  text-decoration: line-through;
  position: relative;
}
.order__product-desc .prices span:first-of-type:after {
  content: "";
  position: absolute;
  background-color: #10100f;
  width: 1px;
  height: 13px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.order__product-desc .prices span:last-of-type {
  font-weight: 700;
  padding-left: 5px;
}
.order__product-desc .info__item {
  display: flex;
  width: 75px;
}
.order__product-desc .info__item:not(:last-of-type) {
  margin-bottom: 3px;
}
.order__product-desc .info__item span,
.order__product-desc .info__item strong {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: #10100f;
}
.order__product-desc .info__item span {
  font-weight: 300;
}
.order__product-desc .info__item strong {
  font-weight: 700;
  margin-left: auto;
}
.order__costs {
  margin: 14px 0;
}
@media only screen and (max-width: 1400px) {
  .order__costs {
    margin: 22px 0;
    padding: 11px 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
  }
}
.order__costs-row {
  display: flex;
  justify-content: space-between;
}
.order__costs-row:not(:last-of-type) {
  margin-bottom: 3px;
}
.order__costs-row span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
}
.order--right {
  max-width: 420px;
  flex-basis: 420px;
}
@media only screen and (max-width: 1400px) {
  .order--right {
    margin-top: 30px;
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .order--right {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.order--right h3 {
  text-align: left;
  position: relative;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .order--right h3 {
    text-align: center;
  }
}
.order--right h3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-image: url(../images/icons/icon-circle-arrow.svg);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .order--right h3:after {
    display: none;
  }
}
.order--right input[type=submit] {
  height: 60px;
  margin-top: 21px;
  background-color: rgba(64, 153, 102, 0.9);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  border: none;
}
.order--right .count-product {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: #10100f;
  padding-bottom: 21px;
  border-bottom: 1px solid #dcdcdc;
}
@media only screen and (max-width: 768px) {
  .order--right .count-product {
    text-align: center;
    border-bottom: none;
    padding-bottom: 18px;
  }
}

.order__discount-field {
  margin-bottom: 20px;
}

.order__coupon-discount-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.order__coupon-discount-wrapper span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
}

/*the container must be positioned relative:*/
.custom-select.custom-select-form {
  position: relative;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 300;
  color: #10100f;
  border-radius: 5px;
  border: 1px solid #10100f;
  padding-left: 25px;
  display: block;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select.custom-select-form select {
  display: none;
  /*hide original SELECT element:*/
}
.custom-select.custom-select-form .select-selected:after {
  position: absolute;
  content: "";
  top: 19px;
  left: unset;
  right: 11px;
  width: 17px;
  height: 10px;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.custom-select.custom-select-form .select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}
.custom-select.custom-select-form .select-items div,
.custom-select.custom-select-form .select-selected {
  cursor: pointer;
  user-select: none;
}
.custom-select.custom-select-form .select-selected {
  display: block;
  padding-bottom: 2px;
  white-space: nowrap;
}
.custom-select.custom-select-form .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fcfcfc;
  padding: 0;
  border-radius: 5px;
  border: 1px solid #10100f;
}
.custom-select.custom-select-form .select-items > div {
  display: flex;
  font-size: 13px;
  font-weight: 300;
  color: #10100f;
  padding-bottom: 2px;
  padding-top: 2px;
  padding-left: 25px;
}
.custom-select.custom-select-form .select-items > div:not(:last-of-type) {
  border-bottom: 1px solid #10100f;
}
.custom-select.custom-select-form .select-hide {
  display: none;
}

/* The simple-checkbox */
.simple-checkbox {
  display: flex;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #10100f;
  width: 22px;
  height: 22px;
}
.simple-checkbox:before {
  display: none !important;
}
.simple-checkbox.checkbox-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
}
.simple-checkbox.checkbox-right .checkmark {
  display: block;
  position: relative;
}

/* Hide the browser's default checkbox */
.simple-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.simple-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid #10100f;
  border-radius: 2px;
  background-color: #ffffff;
}

/* On mouse-over, add a grey background color */
.simple-checkbox:hover input ~ .checkmark {
  opacity: 0.87;
}

/* When the checkbox is checked, add a blue background */
.simple-checkbox input:checked ~ .checkmark {
  border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.simple-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.simple-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.simple-checkbox .checkmark:after {
  background-image: url(../images/icons/ico-radio-checked.svg);
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* The circle-checkbox */
.circle-checkbox {
  display: flex;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #10100f;
  width: 22px;
  height: 22px;
}
.circle-checkbox:before {
  display: none !important;
}
.circle-checkbox.checkbox-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
}
.circle-checkbox.checkbox-right .circle {
  display: block;
  position: relative;
}

/* Hide the browser's default checkbox */
.circle-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.circle-checkbox .circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #10100f;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.circle-checkbox:hover input ~ .circle {
  opacity: 0.87;
}

/* Create the circle/indicator (hidden when not checked) */
.circle-checkbox .circle:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the circle when checked */
.circle-checkbox input:checked ~ .circle:after {
  display: block;
}

/* Style the circle/indicator */
.circle-checkbox .circle:after {
  width: 14px;
  height: 14px;
  background-color: #409966;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.invoice-row {
  display: none;
}
.invoice-row.active {
  display: block;
}

.checkout-products-summary-wrapper {
  padding: 20px 0;
  display: none;
}
@media only screen and (max-width: 768px) {
  .checkout-products-summary-wrapper {
    display: flex;
  }
}

.order--right .checkout-products-summary-title.active:after {
  transform: rotate(180deg);
}

.order-different-address {
  flex: 0 0 100%;
  max-width: 100%;
  display: none;
  margin-top: 10px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HOMEPAGE]
   ========================================================================== */
.section-homepage-hero-slideshow {
  position: relative;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .section-homepage-hero-slideshow {
    margin-bottom: 10px;
  }
}
.section-homepage-hero-slideshow .btn-hero-slideshow {
  position: absolute;
  bottom: 115px;
  left: 110px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3913043478;
  text-transform: uppercase;
  padding: 22px 98px;
  background: #fff;
  color: var(--color-beige);
  bottom: 15.7%;
  left: 7.2%;
  text-align: center;
  border-radius: 2px;
}
@media only screen and (max-width: 1024px) {
  .section-homepage-hero-slideshow .btn-hero-slideshow {
    bottom: 10.7%;
    font-size: 18px;
    line-height: 24px;
    min-width: 236px;
    padding: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .section-homepage-hero-slideshow .btn-hero-slideshow {
    background: rgba(255, 255, 255, 0.9);
    bottom: 13.3%;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 236px;
    text-align: center;
  }
}
.section-homepage-hero-slideshow .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-homepage-hero-slideshow .owl-dots .owl-dot span {
  width: 40px;
  height: 6px;
  background: var(--color-grey-lighter);
  border-radius: 0;
  transition: all 0.3s ease;
  opacity: 0.5;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .section-homepage-hero-slideshow .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
  }
}
.section-homepage-hero-slideshow .owl-dots .owl-dot:not(:last-child) {
  margin: 0 14px 0 0;
}
.section-homepage-hero-slideshow .owl-dots .owl-dot:hover span {
  background: var(--color-grey-lighter);
}
.section-homepage-hero-slideshow .owl-dots .owl-dot.active span {
  opacity: 1;
  background: var(--color-grey-lighter);
}

.section-brands {
  padding-bottom: 32px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1400px) {
  .section-brands {
    padding-bottom: 68px;
    margin-bottom: 37px;
  }
}
.section-brands h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  color: #10100f;
  text-align: center;
  padding: 8px 0 11px;
}

.brands {
  overflow: visible;
}
.brands__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.brands__slider {
  max-width: 1148px;
}
@media only screen and (max-width: 1400px) {
  .brands__slider {
    max-width: 100%;
  }
}
.brands__slider .owl-dots,
.brands__slider .owl-nav {
  margin-top: 0;
  position: absolute;
  bottom: -43px;
  width: 100%;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands__slider .owl-dots {
  left: 30%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1400px) {
  .brands__slider .owl-dots {
    left: 0;
    bottom: -32px;
    transform: translate(0);
  }
}
.brands__slider .owl-dots .owl-dot span {
  width: 20px;
  height: 3px;
  background: var(--color-grey);
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}
.brands__slider .owl-dots .owl-dot:not(:last-child) {
  margin: 0 12px 0 0;
}
.brands__slider .owl-dots .owl-dot:hover span {
  background: var(--color-grey);
}
.brands__slider .owl-dots .owl-dot.active span {
  opacity: 1;
  background: var(--color-black);
}
.brands__slider .owl-nav {
  width: 40px;
  z-index: 2;
  left: 40%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1400px) {
  .brands__slider .owl-nav {
    right: 0;
    left: initial;
    bottom: -32px;
    transform: translate(0);
  }
}
.brands__slider .owl-nav button.owl-next,
.brands__slider .owl-nav button.owl-prev {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.brands__slider .owl-nav button.owl-next:hover,
.brands__slider .owl-nav button.owl-prev:hover {
  background: none;
}
.brands .brand-slide {
  text-align: center;
}
.brands .brand-slide img {
  width: unset;
  display: inline-block;
}
.brands .brands-search {
  position: relative;
  padding: 19px 22px 19px 16px;
  margin-right: 53px;
  max-width: 311px;
  background: var(--color-grey-lighter-2);
}
@media only screen and (max-width: 1400px) {
  .brands .brands-search {
    display: none;
  }
}
.brands .brands-search__inner {
  display: flex;
}
.brands .brands-search__inner input {
  width: 202px;
  margin-right: 48px;
  color: var(--color-black);
  font-size: 19px;
  line-height: 1.3684210526;
  font-weight: 700;
  border: none;
  border-bottom: 1px solid var(--color-grey-dark);
  background: var(--color-grey-lighter-2);
  /* Chrome/Opera/Safari */
  /* Firefox 19+ */
  /* IE 10+ */
  /* Firefox 18- */
}
.brands .brands-search__inner input::placeholder {
  font-family: "Manrope";
  color: var(--color-black);
  opacity: 1;
  font-size: 19px;
  line-height: 1.3684210526;
  font-weight: 700;
}
.brands .brands-search__inner input::-webkit-input-placeholder {
  color: var(--color-black);
}
.brands .brands-search__inner input::-moz-placeholder {
  color: var(--color-black);
}
.brands .brands-search__inner input:-ms-input-placeholder {
  color: var(--color-black);
}
.brands .brands-search__inner input:-moz-placeholder {
  color: var(--color-black);
}
.brands .brands-search__inner input ::placeholder {
  color: var(--color-black);
}
.brands .brands-search__inner input:focus {
  outline: none;
}
.brands .brands-search__inner img {
  height: 24px;
  width: auto;
}
.brands .brands-search.active {
  background: var(--color-grey-lighter);
}
.brands .brands-search.active .brands-search__form input {
  background: var(--color-grey-lighter);
  margin-left: 24px;
  margin-right: 24px;
}
.brands .brands-search.active .brands-search__form label span {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.brands .brands-search.active .brands-search__related {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.brands .brands-search__form {
  transition: all 0.3s ease;
}
.brands .brands-search__form label {
  display: inline-block;
  position: relative;
}
.brands .brands-search__form label span {
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
}
.brands .brands-search__form label span img {
  min-width: 14px;
}
.brands .brands-search__related {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.brands .brands-search__related li {
  transition: all 0.3s ease;
}
.brands .brands-search__related a {
  width: 100%;
  font-size: 19px;
  font-weight: 700;
  padding: 16px 15px 16px 19px;
  line-height: 0.9473684211;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1400px) {
  .brands .brands-search__related a {
    font-size: 16px;
    line-height: 0.9375;
  }
}
.brands .brands-search__related a:hover {
  background: var(--color-grey-lighter);
}
.brands .brands-search__form button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.brands .link-arrow-small {
  position: absolute;
  bottom: -29px;
  right: 0;
}
@media only screen and (max-width: 1400px) {
  .brands .link-arrow-small {
    bottom: -67px;
    right: initial;
    transform: translate(-50%, 0);
    left: 50%;
    padding-right: 0;
    background-image: none;
  }
}

.section-image-text--first {
  margin-bottom: 69px;
}
.section-image-text--second {
  margin-bottom: 38px;
}
.section-image-text--third {
  margin-bottom: 128px;
}
.section-image-text--reverse {
  position: relative;
}
.section-image-text--reverse:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 490px;
  background: var(--color-grey-lighter-2);
  z-index: -1;
}
@media only screen and (max-width: 1400px) {
  .section-image-text--reverse:before {
    display: none;
  }
}
.section-image-text--background-light.section-image-text .text-content-wrapper {
  background: var(--color-grey-lighter-2);
}
.section-image-text .image-text-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 1292px;
}
@media only screen and (max-width: 1400px) {
  .section-image-text .image-text-wrapper {
    flex-direction: column;
  }
  .section-image-text .image-text-wrapper .image-content {
    text-align: center;
    max-width: 574px;
    margin: 0 auto;
  }
}
.section-image-text .image-text-wrapper--reverse .image-content {
  display: inline-block;
  order: 2;
}
.section-image-text .image-text-wrapper--reverse .text-content-wrapper {
  order: 1;
  padding: 151px 32px 141px 0;
}
@media only screen and (max-width: 1400px) {
  .section-image-text .image-text-wrapper--reverse .text-content-wrapper {
    padding: 118px 69px;
  }
}
.section-image-text .text-content-wrapper {
  flex: 1;
  background: var(--color-grey-lighter);
  align-self: center;
  padding: 118px 69px;
}
.section-image-text .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 441px;
}
.section-image-text .text-content h2 {
  margin-bottom: 6px;
}
.section-image-text .text-content p {
  margin-bottom: 40px;
}

.section-products-carousel-homepage--first {
  margin-bottom: 53px;
}
@media only screen and (max-width: 1400px) {
  .section-products-carousel-homepage--first {
    margin-bottom: 25px;
  }
}
.section-products-carousel-homepage--second {
  margin-bottom: 59px;
}
@media only screen and (max-width: 1400px) {
  .section-products-carousel-homepage--second {
    margin-bottom: 25px;
  }
}
.section-products-carousel-homepage--third {
  margin-bottom: 87px;
}
@media only screen and (max-width: 1400px) {
  .section-products-carousel-homepage--third {
    margin-bottom: 25px;
  }
}

.section-two-banners {
  position: relative;
  margin-bottom: 137px;
}
.section-two-banners::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 452px;
  background: var(--color-grey-lighter-2);
  z-index: -1;
}
.section-two-banners .two-banners-wrapper {
  display: flex;
  justify-content: center;
}
.section-two-banners .banner:nth-child(1) {
  margin-right: 103px;
}

.section-brands-banner-text {
  margin-bottom: 98px;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text {
    margin-bottom: 44px;
  }
}
.section-brands-banner-text .brands-banner-text-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1401px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .brands-banner-text-wrapper {
    flex-direction: column-reverse;
  }
}
.section-brands-banner-text .brands-banner-text-wrapper .brands-banner {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .brands-banner-text-wrapper .brands-banner {
    text-align: center;
    width: fit-content;
    width: -webkit-fit-content;
    margin: 0 auto;
  }
}
.section-brands-banner-text .brands-banner-text-wrapper .brands-banner .btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 50px;
  min-width: 236px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .brands-banner-text-wrapper .brands-banner .btn {
    display: inline-block;
  }
}
.section-brands-banner-text .brands-banner-text {
  display: flex;
  flex-direction: column;
  max-width: 529px;
  padding: 54px 0;
  margin-left: 30px;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .brands-banner-text {
    margin-left: 0px;
    max-width: 100%;
    padding: 0 0 21px;
  }
}
.section-brands-banner-text .brand-link {
  padding-right: 218px;
  margin-bottom: auto;
  position: relative;
  /*		&::after {
  	content: "";
  	position: absolute;
  	top: 50%;
  	right: 0;
  	transform: translateY(-50%);
  	width: 10px;
  	height: 100%;
  	background-image: url("../images/icons/icon-arrow-right-black.svg");
  	background-repeat: no-repeat;
  	background-position: center center;
  	@media only screen and (max-width: $max-lg) {
  		display: none;
  	}
  }*/
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .brand-link {
    order: 2;
    text-align: center;
    padding-right: 0;
  }
  .section-brands-banner-text .brand-link img {
    width: initial;
    margin: 0 auto;
  }
}
.section-brands-banner-text .text-area {
  margin-bottom: auto;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .text-area {
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .text-area a {
    display: none;
  }
}
.section-brands-banner-text .text-area h2 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .text-area h2 {
    text-align: center;
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 0px;
  }
}
.section-brands-banner-text .text-area p {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .text-area p {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}
.section-brands-banner-text .link-arrow-medium {
  align-self: flex-start;
}
@media only screen and (max-width: 1024px) {
  .section-brands-banner-text .link-arrow-medium {
    display: none;
  }
}

.brands-banner-slider {
  max-width: 1401px;
  margin: 0 auto;
  position: relative;
}
.brands-banner-slider.owl-theme .owl-nav {
  position: absolute;
  width: 60px;
  right: 0;
  top: 45px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .brands-banner-slider.owl-theme .owl-nav {
    top: initial;
    bottom: -6px;
    width: 386px;
    max-width: 100%;
    right: initial;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.brands-banner-slider.owl-theme .owl-nav button:hover {
  background: transparent;
}
.brands-banner-slider.owl-theme .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none;
}
.brands-banner-slider .owl-dots {
  margin-top: 5px;
  position: relative;
}
.brands-banner-slider .owl-dots .owl-dot {
  z-index: 5;
  position: relative;
}
.brands-banner-slider .owl-dots .owl-dot span {
  width: 20px;
  height: 3px;
  background: var(--color-grey);
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}
.brands-banner-slider .owl-dots .owl-dot:not(:last-child) {
  margin: 0 12px 0 0;
}
.brands-banner-slider .owl-dots .owl-dot:hover span {
  background: var(--color-grey);
}
.brands-banner-slider .owl-dots .owl-dot.active span {
  opacity: 1;
  background: var(--color-black);
}

.section-company-advantages .company-advantages-wrapper {
  display: flex;
  align-items: center;
  max-width: 1372px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .section-company-advantages .company-advantages-wrapper {
    flex-wrap: wrap;
  }
}
.section-company-advantages .company-advantage {
  display: flex;
  flex-direction: column;
  padding: 0 72px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
}
@media only screen and (max-width: 1024px) {
  .section-company-advantages .company-advantage {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
    padding: 0 3vw !important;
  }
}
.section-company-advantages .company-advantage b {
  font-weight: 700;
}
.section-company-advantages .company-advantage:first-child {
  padding-left: 0;
}
.section-company-advantages .company-advantage:last-child {
  padding-right: 0;
}
.section-company-advantages .company-advantage:not(:last-child) {
  border-right: 1px solid var(--color-black);
}
@media only screen and (max-width: 1024px) {
  .section-company-advantages .company-advantage:nth-child(2n+1) {
    border-right: 1px solid var(--color-black) !important;
  }
  .section-company-advantages .company-advantage:nth-child(2n) {
    border-right: none !important;
  }
}

/* ==========================================================================
   Section banner Slider
   ========================================================================== */
.section-banner__slider {
  margin-bottom: 41px;
}
.section-banner__slider--grey {
  margin-bottom: 25px;
}
.section-banner__slider--grey .banner-slider {
  background-color: #fcfaf5;
  padding: 12px 0;
}

.banner-slider {
  padding: 0 26px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.banner-slider.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: 0;
  transform: translate(0, -50%);
  width: calc(100% - 54px);
  height: 22px;
  left: 27px;
}
.banner-slider.owl-theme .owl-nav button {
  margin: 0;
  width: 8px;
  height: 22px;
}
.banner-slider.owl-theme .owl-nav button:hover {
  background: transparent;
}
.banner-slider.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
}
.banner-slider.owl-theme .owl-nav button.owl-next {
  position: absolute;
  right: 0;
}
.banner-slider__item span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #10100f;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:Category Page]
   ========================================================================== */
.section-categories--top {
  margin-top: 24px;
  padding: 21px 0;
  background-color: #fcfcfc;
}
@media only screen and (max-width: 768px) {
  .section-categories--top {
    background-color: #ffffff;
    margin: 20px 0 26px;
    padding: 0;
  }
}
@media only screen and (max-width: 500px) {
  .section-categories--top {
    overflow: visible;
  }
}

.categories--top {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .categories--top {
    flex-direction: column-reverse;
  }
}
.categories--back {
  display: flex;
  align-items: center;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  color: #10100f;
}
.categories--back img {
  margin-right: 51px;
}
@media only screen and (max-width: 768px) {
  .categories--back img {
    display: none;
  }
}
.categories--back span {
  display: block;
  font-size: 21px;
  line-height: 28px;
  font-weight: 300;
  color: #10100f;
  margin-left: 3px;
}
.categories-gap {
  flex-basis: 125px;
  max-width: 125px;
}
@media only screen and (max-width: 1720px) {
  .categories-gap {
    display: none;
  }
}

.categories-label__wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1400px) {
  .categories-label__wrapper {
    display: none;
  }
}
.categories-label__slider-wrapper {
  width: 722px;
  position: relative;
}
.categories-label__slider-nav {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.categories-label__slider-nav a {
  display: inline-block;
  width: 6px;
}
.categories-label__slider-nav a:first-child {
  margin-right: 8px;
}
.categories-label__item {
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  padding: 5px 27px;
  background-color: #10100f;
  color: #ffffff;
  border-radius: 5px;
  margin-bottom: 5px;
  margin-right: 22px;
  cursor: pointer;
}
.categories-label__title {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
  margin-right: 33px;
}
@media only screen and (max-width: 1720px) {
  .categories-label__title {
    display: none;
  }
}

.categories-breadcrumb {
  display: flex;
}
@media only screen and (max-width: 1400px) {
  .categories-breadcrumb {
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .categories-breadcrumb {
    margin-left: initial;
    margin-bottom: 7px;
  }
}
.categories-breadcrumb a {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: #10100f;
}
.categories-breadcrumb a.active {
  font-weight: 700;
}
@media only screen and (max-width: 500px) {
  .categories-breadcrumb a {
    font-size: 11px;
    line-height: 15px;
  }
}
.categories-breadcrumb a:not(:last-of-type):after {
  content: "/";
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  padding-left: 3px;
  padding-right: 3px;
  color: #10100f;
}
@media only screen and (max-width: 500px) {
  .categories-breadcrumb a:not(:last-of-type):after {
    font-size: 11px;
    line-height: 15px;
  }
}

.section-categories__filters {
  padding: 15px 0 10px;
  background-color: #ffffff;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .section-categories__filters {
    padding: 11px 0 8px;
    margin-top: 0px;
  }
}

.category-filters-wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1720px) {
  .category-filters-wrapper {
    display: none;
  }
}
.category-filters-wrapper.filters-open .more-filters img {
  transition: all 200ms linear;
  transform: rotate(180deg);
}
.category-filters-wrapper.filters-open .category-filters--container .category-filters__row:last-of-type {
  display: flex;
}

.more-filters {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.more-filters span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #10100f;
  margin-left: 6px;
}

/* The filter-checkbox */
.filter-checkbox {
  display: flex;
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #10100f;
  width: 161px;
}
.filter-checkbox.checkbox-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
}
.filter-checkbox.checkbox-right .checkmark {
  display: block;
  position: relative;
}

.filters-dropdown .filter-checkbox {
  font-size: 14px;
  line-height: 1.2;
}
.filters-dropdown .filters-dropdown-submit {
  margin: 15px 0;
  margin-bottom: 15px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  background-color: #dcdcdc;
  pointer-events: none;
  padding: 0;
  margin-bottom: 0;
  cursor: pointer;
}
.filters-dropdown .filters-dropdown-submit.active {
  background-color: #10100f;
  pointer-events: all;
}
.filters-dropdown .outer-filters__checkbox,
.filters-dropdown .outer-filters__checkbox:not(:last-of-type) {
  margin: 30px 0;
}

/* Hide the browser's default checkbox */
.filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.filter-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid #10100f;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.filter-checkbox:hover input ~ .checkmark {
  opacity: 0.87;
}

/* When the checkbox is checked, add a blue background */
.filter-checkbox input:checked ~ .checkmark {
  border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.filter-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.filter-checkbox .checkmark:after {
  background-image: url(../images/icons/ico-radio-checked.svg);
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*the container must be positioned relative:*/
.custom-select-category {
  height: unset;
  padding: 0;
  line-height: inherit;
  color: #000000;
  background: unset;
  border: unset;
  border-radius: unset;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #10100f;
  display: block;
  padding-left: 23px;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select-category select {
  display: none;
  /*hide original SELECT element:*/
}
.custom-select-category .select-category-selected:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 10%;
  width: 17px;
  height: 10px;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.custom-select-category .select-category-selected.select-category-arrow-active:after {
  transform: rotate(180deg);
}
.custom-select-category .select-category-items div,
.custom-select-category .select-category-selected {
  cursor: pointer;
  user-select: none;
}
.custom-select-category .select-category-selected {
  display: block;
  padding-bottom: 2px;
  white-space: nowrap;
}
.custom-select-category .select-category-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fcfcfc;
  padding: 12px 15px;
}
.custom-select-category .select-category-items > div {
  font-size: 13px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
  padding-top: 10px;
}
.custom-select-category .select-category-items > div.submit-custom-select {
  margin: 15px 0;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  background-color: #dcdcdc;
  pointer-events: none;
  padding: 0;
  margin-bottom: 0;
}
.custom-select-category .select-category-items > div.submit-custom-select.active {
  background-color: #10100f;
  pointer-events: all;
}
.custom-select-category .select-category-items > div img {
  margin-right: 10px;
}
.custom-select-category .select-category-items > div .select-checkmark {
  margin-left: auto;
}
.custom-select-category .select-category-items > div:not(:last-of-type) {
  position: relative;
}
.custom-select-category .select-category-items > div:not(:last-of-type):after {
  content: "";
  position: absolute;
  width: calc(100% - 35px);
  height: 1px;
  left: 35px;
  bottom: 0;
  background-color: #b4b4b4;
}
.custom-select-category .select-category-hide {
  display: none;
}

/*the container must be positioned relative:*/
.custom-select {
  height: unset;
  padding: 0;
  line-height: inherit;
  color: #000000;
  background: unset;
  border: unset;
  border-radius: unset;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #10100f;
  display: block;
  padding-left: 23px;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}
.custom-select.active .select-selected:after {
  transform: rotate(180deg);
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 10%;
  width: 17px;
  height: 10px;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.custom-select .select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}
.custom-select .select-items div,
.custom-select .select-selected {
  cursor: pointer;
  user-select: none;
}
.custom-select .select-selected {
  display: block;
  padding-bottom: 2px;
  white-space: nowrap;
}
.custom-select .select-items,
.custom-select .custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fcfcfc;
  padding: 12px 15px;
}
.custom-select .select-items > div,
.custom-select .custom-select-options > div {
  font-size: 13px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
  padding-top: 10px;
}
.custom-select .select-hide {
  display: none;
}

.custom-select--color .custom-select-options {
  display: none;
}
.custom-select--color.active .custom-select-options {
  display: block;
}

.category-filters--left {
  margin-right: auto;
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 8px;
  height: fit-content;
  height: -webkit-fit-content;
  position: relative;
  flex-shrink: 0;
}
.category-filters--left .custom-select .select-selected:after {
  left: 0;
}
.category-filters--right {
  margin-left: auto;
  margin-top: 8px;
  padding-left: 10px;
  flex-shrink: 0;
}
.category-filters--container {
  width: 100%;
  max-width: calc(100% - 270px);
  position: relative;
}
.category-filters--container .category-filters__row {
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
.category-filters--container .category-filters__row:not(:last-of-type) {
  margin-bottom: 20px;
}
.category-filters--container .category-filters__row:last-of-type {
  position: absolute;
  width: 100%;
  display: none;
}
.category-filters--container .category-filters__row:last-of-type .filters-item:first-of-type .filters-select {
  padding-left: 0px;
}
.category-filters--container .filters-item {
  padding: 7px 0 16px;
  width: 100%;
  max-width: 234px;
  display: flex;
  justify-content: center;
  position: relative;
}
.category-filters--container .filters-item.active-select {
  background-color: #fcfcfc;
}
.category-filters--container .filters-item.borders {
  position: relative;
}
.category-filters--container .filters-item.borders:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 25px;
  background-color: #b4b4b4;
  transform: translate(0, -50%);
}
.category-filters--container .filters-item.borders:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 25px;
  background-color: #b4b4b4;
  transform: translate(0, -50%);
}
.category-filters--container .filters-item.borders:last-of-type:after {
  content: "";
  display: none;
}
.category-filters--container .filters-item.borders .filters-select {
  margin: 0 5px;
}
.category-filters--container .filters-item.border-right {
  position: relative;
}
.category-filters--container .filters-item.border-right:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 25px;
  background-color: #b4b4b4;
  transform: translate(0, -50%);
}
.category-filters--container .filters-item.border-right .filters-select {
  margin: 0 5px;
}
.category-filters--container .filters-select .custom-select,
.category-filters--container .filters-select .custom-select-category {
  width: 161px;
}
.category-filters--container .filters-select .custom-select:after,
.category-filters--container .filters-select .custom-select-category:after {
  content: "";
  position: absolute;
  bottom: 16px;
  width: calc(100% - 45%);
  height: 1px;
  background-color: #10100f;
}

.custom-select__label {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: #10100f;
  padding-left: 23px;
  pointer-events: none;
  margin-top: -18px;
}

.section-category__tags {
  margin: 30px 0 40px;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .section-category__tags {
    margin: 11px 0 26px;
  }
}

.category-tags {
  display: flex;
  align-items: center;
  float: left;
}
.category-tags__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  background-color: #fcfaf5;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  .category-tags__item {
    flex-direction: row-reverse;
    background-color: transparent;
    padding: 4px 11px;
    border: 1px solid #10100f;
    border-radius: 5px;
  }
}
.category-tags__item:not(:last-of-type) {
  margin-right: 12px;
}
.category-tags__item img {
  margin-right: 10px;
}
@media only screen and (max-width: 500px) {
  .category-tags__item img {
    margin-left: 12px;
    margin-right: 0px;
  }
}
.category-tags__item span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #10100f;
}
@media only screen and (max-width: 500px) {
  .category-tags__item span {
    font-weight: 300;
  }
}

.select-checkmark {
  height: 22px;
  width: 22px;
  border: 1px solid #10100f;
}
.select-checkmark.active {
  background-image: url(../images/icons/ico-radio-checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.categories-mobile-layout {
  display: none;
  margin-top: 26px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 500px) {
  .categories-mobile-layout {
    display: flex;
  }
}
.categories-mobile-layout--left {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.categories-mobile-layout--left span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
  margin-right: 13px;
}
.categories-mobile-layout--right {
  display: flex;
}

.change-layout {
  display: flex;
  cursor: pointer;
}
.change-layout.active .change-layout__box {
  border: 2px solid #10100f;
}
.change-layout:not(:last-of-type) {
  margin-right: 27px;
}
.change-layout__box {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #dcdcdc;
  border-radius: 5px;
}
.change-layout__box:last-of-type {
  margin-left: 5px;
}

.filters-btn__wrapper {
  display: none;
  justify-content: flex-end;
}
@media only screen and (max-width: 1720px) {
  .filters-btn__wrapper {
    display: flex;
  }
}
@media only screen and (max-width: 500px) {
  .filters-btn__wrapper {
    justify-content: space-between;
  }
}
.filters-btn__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 186px;
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #10100f;
  cursor: pointer;
}
.filters-btn__item:not(:last-of-type) {
  margin-right: 14px;
}
.filters-btn__item span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
}

.outer-filters {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -414px;
  width: 100%;
  max-width: 414px;
  height: 100vh;
  height: -webkit-fill-available;
  background-color: #ffffff;
  z-index: 999;
  transition: all 200ms linear;
  transform: translate(0, 0);
}
.outer-filters.open {
  transform: translate(414px, 0);
}
.outer-filters--left {
  margin: 0 5px 0 -5px;
}
.outer-filters--top {
  background-color: #fcfaf5;
  display: flex;
  padding: 11px 25px;
  justify-content: space-between;
}
.outer-filters--top span {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #000000;
}
.outer-filters--bottom {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  padding: 0 14px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 25px;
  margin-bottom: 20px;
  height: calc(100vh - 108px);
}
.outer-filters--menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms linear;
  display: none;
  position: relative;
}
.outer-filters--menu.active {
  opacity: 1;
  pointer-events: all;
  display: block;
}
.outer-filters--menu > li:not(:last-of-type) {
  margin-bottom: 18px;
}
.outer-filters--menu > li:not(:last-of-type) > span {
  width: 100%;
  position: relative;
  padding-bottom: 15px;
}
.outer-filters--menu > li:not(:last-of-type) > span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #dcdcdc;
  width: 100%;
  max-width: 345px;
  z-index: 1;
}
.outer-filters--menu li {
  display: flex;
  align-items: center;
  height: 45px;
  cursor: pointer;
}
.outer-filters--menu li.border-full:not(:last-of-type):after {
  max-width: 100%;
}
.outer-filters--menu li .outer-filters__icon {
  flex-basis: 50px;
  max-width: 50px;
  flex-shrink: 0;
}
.outer-filters--menu li span {
  display: block;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  color: #10100f;
}
.outer-filters--menu li .filter-arrow {
  margin-left: auto;
}
.outer-filters__close {
  cursor: pointer;
}
.outer-filters__back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  margin-top: 20px;
}
.outer-filters__back--left {
  display: flex;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.outer-filters__back--left.active {
  opacity: 1;
  pointer-events: all;
}
.outer-filters__back--left img {
  margin-right: 30px;
}
.outer-filters__back--left span {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #000000;
}
.outer-filters__back--right {
  display: flex;
  cursor: pointer;
}
.outer-filters__back--right span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  color: #10100f;
  margin-right: 8px;
  text-decoration: underline;
}
.outer-filters__back--right img {
  width: 10px;
}
.outer-filters--fix {
  /*		margin: 0 15px 0 -15px;*/
}
.outer-filters__btn-close {
  height: 55px;
  width: calc(100% - 50px);
  margin: 0 auto;
  background-color: #10100f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-bottom: 25px;
}
.outer-filters__btn-close.green {
  background-color: #409966;
}
.outer-filters__checkbox:first-of-type {
  margin-top: 30px;
}
.outer-filters__checkbox:not(:last-of-type) {
  margin-bottom: 38px;
}
.outer-filters__form {
  background: var(--color-grey-lighter);
  width: 100%;
  padding: 14px 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.outer-filters__form--dropdown {
  padding: 10px;
}
.outer-filters__form label {
  display: block;
  font-size: 16px;
  margin-right: 10px;
  line-height: 18px;
  color: #10100f;
}
.outer-filters__form input {
  border: none;
  width: 280px;
  background: var(--color-grey-lighter);
  font-size: 16px;
  line-height: 1.125;
  flex: 1;
}
.outer-filters__form input:focus {
  outline: none;
}
.outer-filters__form button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

.filters-sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
}
.filters-sub-menu.active {
  opacity: 1;
  pointer-events: all;
  width: 100%;
  z-index: 2;
  overflow: auto;
  height: calc(100% - 200px);
  top: 116px;
  padding: 0 14px;
}

.filter-half {
  justify-content: space-between;
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
}
.filter-half:after {
  display: none;
}

.more-items {
  margin: 100px 0 20px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .more-items {
    margin: 65px 0 20px;
  }
}
.more-items .more {
  border: none;
  background-color: #10100f;
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 15px 63px;
}

@media only screen and (max-width: 500px) {
  .product .product__images.owl-carousel .owl-dots {
    bottom: 6px;
    left: 6px;
  }
  .product .product__images.owl-carousel .owl-dots button:not(:last-child) span {
    margin-right: 6px;
  }
  .product .product__images.owl-carousel .owl-dots button.active span,
.product .product__images.owl-carousel .owl-dots button span {
    width: 7px;
    height: 7px;
  }
  .product .product-title {
    font-size: 14px;
    line-height: 19px;
  }
  .product .product-details {
    font-size: 11px;
    line-height: 18px;
  }
  .product .product-prices {
    font-size: 13px;
  }
  .product .product-wishlist {
    top: -21px;
    z-index: 99;
  }
  .product .products-tags-wrapper {
    top: 15px;
  }
  .product .product-tag-wrapper--discount {
    top: 28px;
  }
  .product .product-tag--plus-size {
    top: -21px;
    padding: 3px 49px 3px 6px;
    height: 21px;
  }
  .product .product-tag--plus-size span {
    font-size: 11px;
    line-height: 15px;
  }
  .product .product-tag--grey, .product .product-tag--green {
    padding: 3.5px 10px;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}

@media only screen and (max-width: 500px) {
  .category-grid .col-sm-12 .product .product__images.owl-carousel .owl-dots {
    bottom: 15px;
    left: 12px;
  }
  .category-grid .col-sm-12 .product .product__images.owl-carousel .owl-dots button:not(:last-child) span {
    margin-right: 15px;
  }
  .category-grid .col-sm-12 .product .product__images.owl-carousel .owl-dots button.active span,
.category-grid .col-sm-12 .product .product__images.owl-carousel .owl-dots button span {
    width: 10px;
    height: 10px;
  }
  .category-grid .col-sm-12 .product .product-title {
    font-size: 19px;
    line-height: 26px;
  }
  .category-grid .col-sm-12 .product .product-prices {
    font-size: 19px;
    line-height: 26px;
  }
  .category-grid .col-sm-12 .product .product-wishlist {
    top: -32.5px;
    z-index: 99;
  }
  .category-grid .col-sm-12 .product .product-wishlist-inactive, .category-grid .col-sm-12 .product .product-wishlist-active {
    width: 65px;
    height: 65px;
  }
  .category-grid .col-sm-12 .product .products-tags-wrapper {
    top: 38px;
  }
  .category-grid .col-sm-12 .product .product-tag-wrapper--discount {
    top: 70px;
  }
  .category-grid .col-sm-12 .product .product-tag--plus-size {
    top: -32px;
    right: 32px;
    padding: 5px 58px 5px 17px;
    height: 32px;
  }
  .category-grid .col-sm-12 .product .product-tag--plus-size span {
    font-size: 16px;
    line-height: 22px;
  }
  .category-grid .col-sm-12 .product .product-tag--grey, .category-grid .col-sm-12 .product .product-tag--green {
    padding: 5px 10px 4px 10px;
    font-size: 19px;
    line-height: 26px;
    text-align: center;
  }
}

.order-select-wrapper {
  float: right;
  background-color: var(--color-grey-lighter-2);
  padding: 9px 15px;
}
.order-select-wrapper .custom-select .select-selected {
  font-weight: 400;
}
.order-select-wrapper .custom-select {
  padding-left: 30px;
}
.order-select-wrapper .custom-select .select-selected:after {
  left: 15px;
}
@media only screen and (max-width: 500px) {
  .order-select-wrapper {
    display: none;
  }
  .order-select-wrapper--mobile {
    background-color: transparent;
    display: block;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #10100f;
    margin-right: 13px;
    padding: 0;
  }
  .order-select-wrapper--mobile .custom-select .select-items {
    width: 150px;
  }
  .order-select-wrapper--mobile .custom-select .select-selected {
    font-weight: 400;
  }
  .order-select-wrapper--mobile .custom-select {
    padding-left: 0;
    padding-right: 24px;
  }
  .order-select-wrapper--mobile .custom-select .select-selected:after {
    right: 0;
    left: initial;
    width: 11px;
    height: 5.5px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
  }
}

.price-slider {
  width: 100%;
  margin: 0 20px;
}
.price-slider .price-slider-btn {
  width: 100%;
  height: 36px;
  border: 2px solid var(--color-black);
  margin: 20px auto 0 auto;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.price-slider .price-slider-delete {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-top: 10px;
}
.price-slider .price-slider-delete svg {
  width: 9px;
  margin-right: 10px;
}
.price-slider .price-slider-delete span {
  color: var(--color-grey-dark);
  font-size: 13px;
}
@media only screen and (max-width: 1720px) {
  .price-slider {
    width: auto;
    margin: 30px 0;
  }
}

#slider-range.ui-widget.ui-widget-content {
  border: 0;
  margin-left: 8px;
  width: calc(100% - 16px);
}
#slider-range.ui-slider-horizontal {
  height: 1px;
  background: #dfe0e0;
}
#slider-range .ui-widget-header {
  background: #cea600;
  color: #cea600;
}
#slider-range .ui-state-default,
#slider-range .ui-widget-content .ui-state-default,
#slider-range .ui-widget-header .ui-state-default,
#slider-range .ui-button,
#slider-range html .ui-button.ui-state-disabled:hover,
#slider-range html .ui-button.ui-state-disabled:active {
  border: 1px solid #cea600;
  background: #cea600;
  color: #cea600;
  border-radius: 100%;
}
#slider-range.ui-slider-horizontal .ui-slider-handle {
  top: -8px;
}
#slider-range.ui-slider .ui-slider-handle {
  width: 16px;
  height: 16px;
}
#slider-range.ui-slider .ui-slider-handle:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
}
#slider-range.ui-slider .ui-slider-handle:nth-of-type(1):after {
  right: -3px;
}
#slider-range.ui-slider .ui-slider-handle:nth-of-type(2):after {
  left: -3px;
}

.input-range-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  margin: 15px -5px 0;
}

.input-price {
  width: 100%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bbbfc2;
}
.input-price:focus-visible {
  border-bottom: 1px solid #454545;
}
.input-price input[type=number] {
  border: 0;
  outline: 0;
  -moz-appearance: textfield;
  width: 100%;
}
.input-price input[type=number]::-webkit-outer-spin-button,
.input-price input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.color-box {
  margin-left: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: text-bottom;
}

.color-palete {
  width: 20px;
  height: 20px;
  display: block;
}

.custom-select-option {
  cursor: pointer;
}

.custom-select-option--color {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select--filter .filters-dropdown {
  display: none;
}
.custom-select--filter.active .filters-dropdown {
  display: block;
}

.filters-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fcfcfc;
  padding: 12px 15px;
  max-height: 300px;
  overflow: auto;
}

.outer-filters__form--dropdown input {
  width: 100%;
}

.section-thank-you {
  margin: 90px 0;
}
@media only screen and (max-width: 768px) {
  .section-thank-you {
    margin: 30px 0 25px;
  }
}

.thanks {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .thanks {
    flex-direction: column;
  }
}
.thanks--left {
  flex-basis: 353px;
  max-width: 353px;
  margin-right: 25px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .thanks--left {
    margin: 0 auto 25px auto;
  }
}
@media only screen and (max-width: 768px) {
  .thanks--left {
    display: none;
  }
}
.thanks--left h3 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 13px;
}
.thanks--right {
  flex-basis: 713px;
  max-width: 713px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .thanks--right {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .thanks--right {
    flex-basis: 334px;
    max-width: 334px;
  }
}
.thanks__header span {
  padding: 14px 15px;
  display: block;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #409966;
}
@media only screen and (max-width: 768px) {
  .thanks__header span {
    padding: 11px 15px;
  }
}
.thanks__logo {
  margin-top: 78px;
}
@media only screen and (max-width: 768px) {
  .thanks__logo {
    margin-top: 30px;
  }
}
.thanks__logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.thanks__product {
  display: flex;
}
.thanks__product:not(:last-of-type) {
  margin-bottom: 43px;
}
.thanks__product-mobile {
  width: 100%;
  max-width: 335px;
  margin: 0 auto 19px auto;
  order: 6;
}
.thanks__product-mobile .count-product {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 9px;
  text-align: center;
}
.thanks__product-desc {
  margin-left: 23px;
  display: flex;
  flex-direction: column;
}
.thanks__product-desc .title {
  display: block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  color: #10100f;
  margin-bottom: 9px;
}
.thanks__product-desc .prices {
  margin-top: auto;
  margin-left: auto;
  display: flex;
}
.thanks__product-desc .prices span {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #10100f;
}
.thanks__product-desc .prices span:last-of-type {
  font-weight: 700;
  padding-left: 8px;
}
.thanks__product-desc .prices span:first-of-type {
  font-weight: 300;
  text-decoration: line-through;
  padding-right: 8px;
  position: relative;
}
.thanks__product-desc .prices span:first-of-type:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 1px;
  height: 16px;
  background-color: #10100f;
}
.thanks__product-desc .info__item {
  display: flex;
  width: 94px;
}
.thanks__product-desc .info__item:not(:last-of-type) {
  margin-bottom: 2px;
}
.thanks__product-desc .info__item span,
.thanks__product-desc .info__item strong {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #10100f;
}
.thanks__product-desc .info__item span {
  font-weight: 300;
}
.thanks__product-desc .info__item strong {
  font-weight: 700;
  margin-left: auto;
}
.thanks__message {
  padding: 50px 100px;
  background-color: #fcfaf5;
}
@media only screen and (max-width: 768px) {
  .thanks__message {
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
  }
}
.thanks__message h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .thanks__message h2 {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    order: 1;
  }
}
.thanks__confirmation {
  display: block;
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  margin-bottom: 14px;
  color: #10100f;
}
@media only screen and (max-width: 768px) {
  .thanks__confirmation {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 20px;
    order: 2;
  }
}
.thanks__total-cost {
  display: block;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  color: #409966;
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  .thanks__total-cost {
    text-align: center;
    margin-bottom: 7px;
    order: 3;
  }
}
.thanks__code {
  display: flex;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .thanks__code {
    flex-direction: column;
    padding: 5px 16px;
    background-color: #fcfaf5;
    width: fit-content;
    width: -webkit-fit-content;
    margin: 0 auto 10px auto;
    order: 4;
  }
}
.thanks__code span {
  display: block;
  font-size: 19px;
  font-weight: 300;
  line-height: 21px;
  color: #10100f;
}
@media only screen and (max-width: 768px) {
  .thanks__code span {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}
.thanks__code strong {
  display: block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
  color: #10100f;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .thanks__code strong {
    margin-left: 0px;
    line-height: 28px;
    text-align: center;
  }
}
.thanks__deliver-time {
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .thanks__deliver-time {
    justify-content: center;
    order: 5;
  }
}
.thanks__deliver-time span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: #10100f;
}
.thanks__deliver-time strong {
  display: block;
  margin-left: 3px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #409966;
}
.thanks__btn {
  display: block;
  width: 100%;
  max-width: 327px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(16, 16, 15, 0.9);
}
@media only screen and (max-width: 768px) {
  .thanks__btn {
    margin: 0 auto;
    order: 8;
  }
}
.thanks_links {
  margin-top: 22px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .thanks_links {
    margin-bottom: 52px;
    margin-top: 0;
    order: 7;
    justify-content: space-between;
  }
}
.thanks_links a {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  text-decoration: underline;
  color: #10100f;
}
.thanks_links a:first-of-type {
  padding-right: 15px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .thanks_links a:first-of-type {
    padding-right: 0;
  }
}
.thanks_links a:first-of-type:after {
  content: "";
  position: absolute;
  height: 13px;
  width: 1px;
  background-color: #10100f;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .thanks_links a:first-of-type:after {
    display: none;
  }
}
.thanks_links a:last-of-type {
  padding-left: 15px;
}
@media only screen and (max-width: 768px) {
  .thanks_links a:last-of-type {
    padding-left: 0;
  }
}
.thanks__social {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .thanks__social {
    order: 9;
    display: flex;
    align-items: center;
  }
}
.thanks__social h4 {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #10100f;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .thanks__social h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 0;
  }
}
.thanks__social-items {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .thanks__social-items {
    margin-left: auto;
  }
}
.thanks__social-items a {
  display: block;
}
.thanks__social-items a:first-of-type {
  padding-right: 25px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .thanks__social-items a:first-of-type {
    padding-right: 40px;
  }
}
.thanks__social-items a:first-of-type:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #10100f;
}
@media only screen and (max-width: 768px) {
  .thanks__social-items a:first-of-type:after {
    display: none;
  }
}
.thanks__social-items a:last-of-type {
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .thanks__social-items a:last-of-type {
    padding-left: 0;
  }
}

.section-category-2 {
  margin-bottom: 25px;
}

.brands-category {
  margin-top: 30px;
  padding-bottom: 0;
  margin-bottom: 35px;
}

.brands__slider.hide-nav .owl-nav,
.brands__slider.hide-nav .owl-dots {
  display: none;
}

@media only screen and (max-width: 768px) {
  .category-2--grid {
    justify-content: center;
  }
}
.category-2--grid-item {
  display: block;
}
.category-2--grid-item:last-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-2--grid-item h4 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
  margin-top: 8px;
  transition: all 300ms;
  position: relative;
  top: 0;
  left: 0;
  width: max-content;
}
.category-2--grid-item-image-wrapper {
  position: relative;
  transition: all 300ms;
}
.category-2--grid-item-image-wrapper::after {
  transition: all 300ms;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 15, 0.75);
  left: 0;
  top: 0;
  opacity: 0;
}
.category-2--grid-item:hover h4 {
  color: #ffffff;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
}
.category-2--grid-item:hover .category-2--grid-item-image-wrapper::after {
  opacity: 1;
}

.category-2--labels {
  margin-top: 66px;
}

.category-2--label {
  display: block;
  padding: 8px 28px;
  background-color: #10100f;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #ffffff;
}

.more-clothes {
  display: flex;
  padding: 15px 20px;
  background-color: #fcfaf5;
}
.more-clothes span {
  display: block;
  font-size: 19px;
  line-height: 26px;
  font-weight: 400;
  color: #000000;
  margin-right: 10px;
  text-decoration: underline;
}
.more-clothes img {
  width: 40px;
}

.section-category-3 {
  margin-bottom: 25px;
}

.category-3 {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .category-3 {
    flex-direction: column;
  }
}
.category-3--left {
  margin-right: 25px;
}
@media only screen and (max-width: 1024px) {
  .category-3--left {
    margin-right: 0;
  }
}
.category-3--left .more-clothes {
  padding: 15px 25px;
  margin-left: 113px;
  width: fit-content;
  width: -webkit-fit-content;
}
@media only screen and (max-width: 768px) {
  .category-3--left .more-clothes {
    margin-left: 0;
  }
}
.category-3--right {
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .category-3--right {
    margin-left: 0;
    text-align: center;
    margin-top: 25px;
  }
}

.back2Category {
  display: flex;
  align-items: center;
  margin: 45px 0;
}
.back2Category img {
  margin-right: 55px;
}
.back2Category span {
  display: block;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  color: #10100f;
}

.category-list {
  display: flex;
  margin-left: 113px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .category-list {
    flex-direction: column;
  }
}
.category-list__item:first-of-type {
  margin-right: 145px;
}
@media only screen and (max-width: 1400px) {
  .category-list__item:first-of-type {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .category-list__item:first-of-type {
    margin-right: 0px;
    margin-bottom: 40px;
  }
}
.category-list__item li:not(:last-of-type) {
  margin-bottom: 40px;
}
.category-list__item li a {
  display: block;
  font-size: 19px;
  line-height: 21px;
  font-weight: 400;
  color: #000000;
}

.cart-pop {
  position: relative;
}
.cart-pop.offset:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(16, 16, 15, 0.75);
}
.cart-pop--offset {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 997;
  background-color: black;
  display: none;
}
.cart-pop--offset.open {
  display: block;
}
.cart-pop__close {
  position: absolute;
  width: 18px;
  right: 40px;
  top: 100px;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  .cart-pop__close {
    right: 18px;
  }
}
.cart-pop-2--outer {
  max-width: 529px;
  background-color: #ffffff;
  z-index: 999;
  display: block;
  width: calc(100% - 40px);
  position: absolute;
  left: 50%;
  top: calc(50% - 146px);
  transform: translate(-50%, -50%);
}
.cart-pop-2--outer .custom-dropdown-options {
  margin-top: -1px;
}
.cart-pop-2--outer .variation-sizes-wrapper {
  margin-bottom: 0;
}
.cart-pop-2--outer .custom-dropdown.active {
  border-bottom: 0;
}
@media only screen and (max-width: 500px) {
  .cart-pop-2--outer .custom-dropdown-option--message .message__text {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .cart-pop-2--outer .custom-dropdown-option--message .message--availability {
    font-size: 0;
  }
}
.cart-pop-1--outer {
  max-width: 866px;
  background-color: #ffffff;
  z-index: 999;
  display: block;
  width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cart-pop-1--outer-wrapper {
  position: relative;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  overflow-y: auto;
  margin: 20px;
}
.cart-pop__btn {
  margin: 24px auto 0 auto;
  display: block;
  width: 100%;
  max-width: 272px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(64, 153, 102, 0.9);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
}
.cart-pop__basket {
  display: flex;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #10100f;
  text-align: center;
  margin: 10px auto 0 auto;
  width: fit-content;
  width: -webkit-fit-content;
}
.cart-pop__basket img {
  margin-right: 12px;
}
.cart-pop--top {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-pop--top h2 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .cart-pop--top h2 {
    font-size: 13px;
    line-height: 16px;
  }
}
.cart-pop--top h2 strong {
  display: block;
  font-weight: 700;
}
.cart-pop--content {
  width: 100%;
  max-width: 493px;
  padding: 24px 25px 40px 25px;
  background-color: #ffffff;
  margin: 0 auto;
}
.cart-pop--content h3 {
  font-size: 19px;
  line-height: 19px;
  font-weight: 700;
  color: #10100f;
  text-align: center;
}
.cart-pop--content > h4 {
  margin-top: 24px;
  font-size: 18px;
  line-height: 21px;
  color: #409966;
  font-weight: 600;
  text-align: center;
}
.cart-pop--content .cart-upsells {
  max-width: 100%;
  padding: 20px 30px;
  position: relative;
  margin: 20px auto;
  width: fit-content;
  width: -webkit-fit-content;
}
.cart-pop--content .cart-upsells--like {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translate(0px, -50%);
}
.cart-pop--content .cart-upsells-heading {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
.cart-pop--content .cart-upsells-desc {
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}
.cart-pop--content .cart-upsells .product-set-slider__flex {
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.cart-pop--content .cart-upsells .product-set-slider-wrapper {
  max-width: 193px;
  margin: 6px auto 0 auto;
  padding: 0;
}
.cart-pop--content .cart-upsells .product-set-slider__img {
  flex-basis: 76px;
  max-width: 76px;
  margin-right: 10px;
}
.cart-pop--content .cart-upsells .product-brand--text {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 0;
}
.cart-pop--content .cart-upsells .product-short-description {
  font-size: 9px;
  line-height: 13px;
  margin-bottom: 8px;
}
.cart-pop--content .cart-upsells .product-regular-price {
  font-size: 14px;
  line-height: 19px;
}
.cart-pop--content .cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--right {
  right: -35px;
}
.cart-pop__count {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  color: #10100f;
  text-align: center;
  margin-bottom: 16px;
}
.cart-pop__subtitle {
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  color: #10100f;
  text-align: center;
}
.cart-pop__subtitle strong {
  font-weight: 600;
  color: #409966;
}

.product-box {
  display: flex;
  width: 100%;
  padding: 17px 20px;
  border-top: 1px solid #b4b4b4;
  border-bottom: 1px solid #b4b4b4;
  /*	margin: 16px 0 24px;*/
}
.product-box:not(:first-of-type) {
  border-top: none;
}
@media only screen and (max-width: 500px) {
  .product-box {
    flex-direction: column;
    align-items: center;
    padding: 17px 0;
  }
}
.product-box__content {
  margin-left: 19px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 500px) {
  .product-box__content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.product-box__content h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 4px;
}
@media only screen and (max-width: 500px) {
  .product-box__content h4 {
    text-align: center;
  }
}
.product-box__content > span {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
}
@media only screen and (max-width: 500px) {
  .product-box__content > span {
    text-align: center;
  }
}
.product-box__prices {
  display: flex;
  margin-bottom: auto;
  margin-top: auto;
}
@media only screen and (max-width: 500px) {
  .product-box__prices {
    margin-bottom: 12px;
    margin-top: 12px;
    justify-content: center;
  }
}
.product-box__prices span {
  display: block;
  font-size: 19px;
  line-height: 19px;
  font-weight: 300;
  color: #10100f;
  padding-right: 8px;
  position: relative;
}
.product-box__prices span:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-color: #10100f;
}
.product-box__prices strong {
  display: block;
  font-size: 19px;
  line-height: 19px;
  font-weight: 700;
  color: #409966;
  padding-left: 8px;
}
.product-box__details {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .product-box__details {
    flex-direction: column;
    align-items: center;
  }
}
.product-box__details--item {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 500px) {
  .product-box__details--item:not(:last-of-type) {
    margin-bottom: 4px;
  }
}
.product-box__details--item span:first-of-type {
  display: block;
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #10100f;
  padding-right: 3px;
}
.product-box__details--item span:last-of-type {
  display: block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #10100f;
}

.search-bar {
  position: relative;
}
.search-bar__close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
.search-bar__outer {
  display: none;
  position: fixed;
  padding: 31px 96px 110px 59px;
  height: calc(100vh - 217px);
  background-color: #fcfcfc;
  top: 217px;
  right: 0;
  width: 100%;
  max-width: 625px;
  z-index: 999;
  overflow-y: auto;
}
@media only screen and (max-width: 1400px) {
  .search-bar__outer {
    top: 208px;
    height: calc(100vh - 208px);
  }
}
@media only screen and (max-width: 768px) {
  .search-bar__outer {
    padding: 25px 50px;
    top: 180px;
    height: calc(100vh - 180px);
  }
}
.search-bar__outer.open {
  display: block;
}
.search-bar h3 {
  font-size: 29px;
  line-height: 40px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 7px;
}
.search-bar__all_category {
  display: block;
  margin-top: 17px;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #10100f;
}
.search-bar__all_category img {
  margin-right: 10px;
}
.search-bar__offset {
  pointer-events: none;
  opacity: 0;
  transition: 200ms all linear;
  position: fixed;
  top: 217px;
  left: 0;
  width: 100%;
  height: calc(100vh - 217px);
  background: var(--color-black-opacity-70);
  z-index: 998;
}
@media only screen and (max-width: 1400px) {
  .search-bar__offset {
    top: 208px;
    height: calc(100vh - 208px);
  }
}
@media only screen and (max-width: 768px) {
  .search-bar__offset {
    top: 180px;
    height: calc(100vh - 180px);
  }
}
.search-bar__offset.open {
  pointer-events: all;
  opacity: 1;
}
.search-bar__preferred h4 {
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 16px;
}
.search-bar__preferred-item {
  display: flex;
}
.search-bar__preferred-item:not(:last-of-type) {
  margin-bottom: 38px;
}
.search-bar__preferred-item img {
  margin-right: 18px;
}
.search-bar__preferred .preferred-item__info h5 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 6px;
}
.search-bar__preferred .preferred-item__info > span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #10100f;
  margin-bottom: 6px;
  font-weight: 300;
}
.search-bar__preferred .preferred-item__info .preferred-item__sizes {
  display: flex;
  flex-wrap: wrap;
}
.search-bar__preferred .preferred-item__info .preferred-item__sizes li {
  width: 33px;
  height: 30px;
  background-color: #10100f;
  border-radius: 5px;
  color: #ffffff;
  font-size: 13px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar__preferred .preferred-item__info .preferred-item__sizes li:not(:last-of-type) {
  margin-right: 8px;
  margin-bottom: 8px;
}
.search-bar__more {
  margin-top: 40px;
  padding: 11px 37px;
  background-color: #10100f;
  color: #ffffff;
  width: fit-content;
  width: -webkit-fit-content;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}
.search-bar__suggested-brands {
  margin-top: 50px;
}
.search-bar__suggested-brands h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: #10100f;
  margin-bottom: 15px;
}
.search-bar__category h4 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #10100f;
  margin-bottom: 12px;
}
.search-bar__category-label a {
  display: block;
  padding: 0 20px;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
  background-color: #10100f;
  border-radius: 5px;
}

.section-product-summary {
  margin: 52px 0 140px;
}
@media only screen and (max-width: 1024px) {
  .section-product-summary {
    margin: 52px 0;
  }
}
@media only screen and (max-width: 500px) {
  .section-product-summary {
    margin: 16px 0 85px;
  }
}
@media only screen and (max-width: 500px) {
  .section-product-summary.top {
    transition: all 0.3s ease;
  }
  .section-product-summary.top .gallery-wrapper img {
    max-height: calc(100vh - 347px);
  }
  .section-product-summary.top .top--fixed {
    position: fixed;
    bottom: 180px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999;
    padding: 7px 14px 11px;
  }
  .section-product-summary.top .product-summary-variations__item.top--fixed {
    bottom: 66px;
  }
  .section-product-summary.top .product-summary-actions {
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 0 14px;
    padding-bottom: 14px;
    background-color: #ffffff;
    width: 100%;
    left: 0;
    z-index: 100;
  }
  .section-product-summary.top .product-summary-actions > * {
    margin: 0;
  }
}

.product-summary__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 -30px;
}
@media only screen and (max-width: 1600px) {
  .product-summary__flex {
    margin: 0 -15px;
  }
}
@media only screen and (max-width: 768px) {
  .product-summary__flex {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
}
.product-summary__left, .product-summary__right {
  padding: 0 30px;
}
@media only screen and (max-width: 1600px) {
  .product-summary__left, .product-summary__right {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .product-summary__left, .product-summary__right {
    padding: 0;
  }
}
.product-summary__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 -26px;
  flex: 0 0 67%;
  max-width: 67%;
}
@media only screen and (max-width: 1600px) {
  .product-summary__left {
    flex: 0 0 60%;
    max-width: 60%;
    margin: 0 -15px;
  }
}
@media only screen and (max-width: 1024px) {
  .product-summary__left {
    align-items: initial;
    flex-wrap: wrap-reverse;
  }
}
@media only screen and (max-width: 768px) {
  .product-summary__left {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap-reverse;
    margin: 0 auto;
  }
}
.product-summary__right {
  flex: 0 0 33%;
  max-width: 33%;
}
@media only screen and (max-width: 1600px) {
  .product-summary__right {
    flex: 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .product-summary__right {
    flex: 100%;
    max-width: 100%;
  }
}

.zoomed-btns,
.zoomed-close {
  display: none;
}

.product-summary__flex--zoomed .product-summary__left {
  touch-action: manipulation;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.88);
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  z-index: 10;
  overflow: auto;
  z-index: 999999;
}
.product-summary__flex--zoomed .zoomed-close {
  display: block;
  position: fixed;
  top: 106px;
  right: 106px;
  cursor: pointer;
}
@media only screen and (max-width: 1400px) {
  .product-summary__flex--zoomed .zoomed-close {
    right: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .zoomed-close {
    top: 20px;
  }
}
.product-summary__flex--zoomed .zoomed-close img {
  width: 30px;
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .zoomed-close img {
    width: 20px;
  }
}
.product-summary__flex--zoomed .zoomed-btns {
  position: fixed;
  display: flex;
  right: 94px;
  top: 50%;
  transform: 50%;
}
@media only screen and (max-width: 1400px) {
  .product-summary__flex--zoomed .zoomed-btns {
    flex-direction: column;
    right: 20px;
    top: calc(50% - 82px);
    transform: translate(0, calc(50% - 82px));
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .zoomed-btns {
    flex-direction: row;
    right: 20px;
    top: initial;
    bottom: 20px;
    transform: initial;
    width: calc(100vw - 40px);
    justify-content: center;
  }
}
.product-summary__flex--zoomed .zoomed-btns img {
  cursor: pointer;
}
.product-summary__flex--zoomed .zoomed-btns img:first-of-type {
  margin-right: 25px;
}
@media only screen and (max-width: 1400px) {
  .product-summary__flex--zoomed .zoomed-btns img:first-of-type {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .zoomed-btns img:first-of-type {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.product-summary__flex--zoomed .product-tag--plus-size,
.product-summary__flex--zoomed .product-wishlist {
  display: none !important;
}
.product-summary__flex--zoomed .product-summary__right {
  margin-left: 67%;
}
.product-summary__flex--zoomed .product-thumbnails-wrapper {
  background: #fcfaf5;
  display: flex;
  max-width: 100%;
  padding: 80px 70px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .product-summary__flex--zoomed .product-thumbnails-wrapper {
    height: 213px;
    bottom: 0;
    top: initial;
    width: 100%;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .product-thumbnails-wrapper {
    display: none;
  }
}
.product-summary__flex--zoomed .product-thumbnails-wrapper .thumb-wrapper {
  max-width: 160px;
}
@media only screen and (max-width: 1024px) {
  .product-summary__flex--zoomed .product-thumbnails-wrapper .thumb-wrapper {
    max-width: 100px;
  }
}
.product-summary__flex--zoomed .product-thumbnails-wrapper .thumb-wrapper img {
  max-width: 160px;
  height: calc(((100vh - 238px) / 4));
}
@media only screen and (max-width: 1024px) {
  .product-summary__flex--zoomed .product-thumbnails-wrapper .thumb-wrapper img {
    height: 160px;
    max-width: 100px;
  }
}
.product-summary__flex--zoomed .product-gallery-wrapper {
  margin: 0 0 0 300px;
  max-width: calc(100% - 300px);
  padding: 80px 312px 80px 0;
}
@media only screen and (max-width: 1400px) {
  .product-summary__flex--zoomed .product-gallery-wrapper {
    padding: 80px 97px 80px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .product-summary__flex--zoomed .product-gallery-wrapper {
    margin: 20px;
    max-width: calc(100vw - 117px);
    padding: 20px;
    margin-bottom: calc(100vh - (100vh - 213px));
    height: calc(100vh - 253px);
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .product-gallery-wrapper {
    margin: 0;
    max-width: 100vw;
    padding: 20px;
    padding-top: 65px;
    margin-bottom: calc(100vh - (100vh - 85px));
    height: calc(100vh - 85px);
  }
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .product-gallery-wrapper .slick-list {
    overflow: hidden;
  }
}
.product-summary__flex--zoomed .generic-nav-arrow {
  display: none;
}
.product-summary__flex--zoomed .products-tags-wrapper {
  display: none;
}
.product-summary__flex--zoomed .gallery-wrapper:hover:before {
  display: none;
}
.product-summary__flex--zoomed .gallery-wrapper:hover .icon-zoom {
  display: none;
}
.product-summary__flex--zoomed .gallery-wrapper .zoom-img {
  max-width: 100%;
  min-width: 67vw;
  width: calc(100vw - 212px);
  transition: all 200ms linear;
}
@media only screen and (max-width: 500px) {
  .product-summary__flex--zoomed .gallery-wrapper .zoom-img {
    max-width: 100% !important;
    width: 100% !important;
    min-width: initial;
    max-height: calc(100vh - 300px);
  }
}

.product-thumbnails-wrapper {
  flex: 0 0 224px;
  max-width: 224px;
  padding: 0 26px;
}
@media only screen and (max-width: 1600px) {
  .product-thumbnails-wrapper {
    flex: 0 0 120px;
    max-width: 120px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .product-thumbnails-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .product-thumbnails-wrapper {
    padding: 0;
  }
}
@media only screen and (max-width: 500px) {
  .product-thumbnails-wrapper {
    display: none;
  }
}
.product-thumbnails-wrapper .slick-track {
  transform: translate3d(0px, 0px, 0px) !important;
}
.product-thumbnails-wrapper .thumb-wrapper {
  margin-bottom: 26px;
  cursor: pointer;
}
.product-thumbnails-wrapper .thumb-wrapper img {
  max-width: 172px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .product-thumbnails-wrapper .thumb-wrapper img {
    height: 120px;
  }
}
.product-thumbnails-wrapper .thumb-wrapper:last-child {
  margin-bottom: 0;
}
.product-thumbnails-wrapper .thumb-wrapper.slick-current.slick-active {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .product-thumbnails-wrapper .thumb-wrapper {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .product-thumbnails-wrapper .thumb-wrapper:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.product-gallery-wrapper {
  padding: 0 26px;
  flex: 0 0 calc(100% - 296px);
  max-width: calc(100% - 296px);
  padding: 0 15px;
  position: relative;
}
@media only screen and (max-width: 1600px) {
  .product-gallery-wrapper {
    padding: 0 15px;
    flex: 0 0 calc(100% - 120px);
    max-width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 1024px) {
  .product-gallery-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .product-gallery-wrapper {
    padding: 0;
  }
}
@media only screen and (max-width: 500px) {
  .product-gallery-wrapper {
    margin-bottom: 7px;
  }
}

.product-gallery {
  position: relative;
}
@media only screen and (max-width: 500px) {
  .product-gallery.slick-dotted.slick-slider {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 500px) {
  .product-gallery .slick-list {
    overflow: visible;
  }
}
.product-gallery .slick-dots {
  position: absolute;
  display: flex;
  left: 13px;
  bottom: 17px;
  height: 10px;
  margin: 0 -7.5px;
}
.product-gallery .slick-dots li {
  height: 10px;
  width: 10px;
  margin: 0 7.5px;
}
.product-gallery .slick-dots li button {
  margin: 0;
  padding: 0;
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-grey-dark);
  background: #fff;
  border-radius: 100%;
}
.product-gallery .slick-dots li.slick-active button {
  background: var(--color-black);
  border-color: var(--color-black);
}

.generic-nav-arrow {
  width: 18px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 2;
}
.generic-nav-arrow--left {
  left: -16px;
}
.generic-nav-arrow--right {
  right: -16px;
}
@media only screen and (max-width: 1600px) {
  .generic-nav-arrow {
    width: 10px;
    height: 25px;
  }
  .generic-nav-arrow--left {
    left: 0;
  }
  .generic-nav-arrow--right {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .generic-nav-arrow {
    display: none;
  }
}

.gallery-wrapper {
  position: relative;
}
.gallery-wrapper:hover {
  cursor: pointer;
}
.gallery-wrapper:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 15, 0.29);
  z-index: 99;
}
.gallery-wrapper:hover .icon-zoom {
  display: block;
}
.gallery-wrapper .icon-zoom {
  display: none;
  position: absolute;
  width: 68px;
  height: 68px;
  right: 40px;
  top: 40px;
  transition: all 200ms linear;
  z-index: 100;
}
@media only screen and (max-width: 500px) {
  .gallery-wrapper .icon-zoom {
    width: 40px;
    height: 40px;
    right: 20px;
    top: 20px;
  }
}
.gallery-wrapper img {
  cursor: pointer;
  object-fit: cover;
  max-width: 812px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .gallery-wrapper img {
    max-height: 500px;
    height: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .gallery-wrapper img {
    max-height: 412px;
    height: 100%;
  }
}
.gallery-wrapper .product-wishlist {
  display: none;
}
@media only screen and (max-width: 500px) {
  .gallery-wrapper .product-wishlist {
    position: absolute;
    bottom: -9.5px;
    right: 9px;
    display: inline-block;
  }
  .gallery-wrapper .product-wishlist__inner {
    position: relative;
    z-index: 3;
    cursor: pointer;
  }
  .gallery-wrapper .product-wishlist__inner.active .product-wishlist-inactive {
    opacity: 0;
  }
  .gallery-wrapper .product-wishlist__inner.active .product-wishlist-active {
    opacity: 1;
  }
  .gallery-wrapper .product-wishlist-inactive {
    width: 65px;
    height: 65px;
    background: var(--color-grey-lighter);
    border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.3s ease;
  }
  .gallery-wrapper .product-wishlist-inactive img {
    width: 38.55px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .gallery-wrapper .product-wishlist-active {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border-radius: 50%;
    background: var(--color-black);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .gallery-wrapper .product-wishlist-active img {
    width: 38.55px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.product-summary__head {
  padding-top: 43px;
}
@media only screen and (max-width: 500px) {
  .product-summary__head {
    padding-top: 0;
  }
}

.product-brand {
  margin-bottom: 33px;
}
.product-title {
  font-size: 19px;
  line-height: 1.2105263158;
  letter-spacing: 0.014em;
  font-weight: 700;
  margin-bottom: 5px;
}
.product-short-description {
  font-size: 13px;
  line-height: 1.7692307692;
  color: var(--color-grey-dark);
  margin-bottom: 12px;
}
@media screen and (max-width: 500px) {
  .product-short-description {
    color: var(--color-black);
  }
}
.product-regular-price {
  display: inline-block;
  font-size: 23px;
  line-height: 1.347826087;
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  .product-regular-price {
    font-size: 16px;
    line-height: 1.375;
  }
}
.product-price-separator {
  display: inline-block;
  margin: 0 14px;
  font-size: 23px;
  line-height: 1.347826087;
  color: var(--color-black);
}
@media screen and (max-width: 500px) {
  .product-price-separator {
    color: var(--color-green);
    font-size: 16px;
    line-height: 1.375;
  }
}
.product-sale-price {
  display: inline-block;
  color: var(--color-green);
  font-size: 23px;
  line-height: 1.347826087;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  .product-sale-price {
    font-size: 16px;
    line-height: 1.375;
  }
}

.product-pclub-wrapper {
  margin: 34px 0 20px;
  background-color: var(--color-grey-lighter);
  padding: 4px 37px 4px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) and (min-width: 768.01px) {
  .product-pclub-wrapper {
    padding: 7.5px 11.6px 6.5px 5.5px;
    margin: 16px 0 28px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768.01px) {
  .product-pclub-wrapper {
    flex-direction: column;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    padding: 2.5px 16px;
  }
}
@media only screen and (max-width: 500px) {
  .product-pclub-wrapper {
    margin: 16px 0 28px;
    padding: 7.5px 11.6px 6.5px 5.5px;
  }
}
@media only screen and (max-width: 370px) {
  .product-pclub-wrapper {
    flex-direction: column;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    padding: 2.5px 16px;
  }
}

.product-pclub-price {
  color: var(--color-green);
  font-size: 25px;
  line-height: 1.28;
  font-weight: 700;
}
@media only screen and (max-width: 1200px) and (min-width: 768.01px) {
  .product-pclub-price {
    font-size: 19px;
    line-height: 1.3684210526;
    color: var(--color-black);
  }
}
@media only screen and (max-width: 500px) {
  .product-pclub-price {
    font-size: 19px;
    line-height: 1.3684210526;
    color: var(--color-black);
  }
}
.product-pclub__text {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 300;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1200px) and (min-width: 768.01px) {
  .product-pclub__text {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
@media only screen and (max-width: 500px) {
  .product-pclub__text {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
.product-pclub__text img {
  margin: 0 6.5px;
}
.product-pclub__text span {
  font-size: 19px;
  line-height: 1.3684210526;
  font-weight: 800;
}
@media only screen and (max-width: 1200px) and (min-width: 768.01px) {
  .product-pclub__text span {
    font-size: 17px;
    line-height: 1.3529411765;
  }
}
@media only screen and (max-width: 500px) {
  .product-pclub__text span {
    font-size: 17px;
    line-height: 1.3529411765;
  }
}
.product-pclub__link {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 300;
  text-decoration: underline;
}
@media only screen and (max-width: 1200px) and (min-width: 768.01px) {
  .product-pclub__link {
    font-size: 13px;
    line-height: 1.3846153846;
  }
  .product-pclub__link img {
    max-width: 29px;
  }
}
@media only screen and (max-width: 500px) {
  .product-pclub__link {
    font-size: 13px;
    line-height: 1.3846153846;
  }
  .product-pclub__link img {
    max-width: 29px;
  }
}
.product-pclub__link img {
  margin-left: 8px;
  width: 29.4px;
}

.variation-color-swatches {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  margin: -8px;
}
@media only screen and (max-width: 400px) {
  .variation-color-swatches {
    margin: -4px;
  }
}

.variation-thumb-item {
  position: relative;
  padding: 8px;
  flex: 0 0 20%;
}
@media only screen and (max-width: 1024px) {
  .variation-thumb-item {
    flex: 0 0 25%;
  }
}
@media only screen and (max-width: 768px) {
  .variation-thumb-item {
    flex: 0 0 20%;
  }
}
@media only screen and (max-width: 400px) {
  .variation-thumb-item {
    flex: 0 0 25%;
    padding: 4px;
  }
}
.variation-thumb-item:last-child {
  margin-right: 0;
}
.variation-thumb-item.is_active a {
  pointer-events: none;
}
.variation-thumb-item.is_active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 16px);
  height: 4px;
  background-color: var(--color-green);
}
@media only screen and (max-width: 400px) {
  .variation-thumb-item.is_active:before {
    width: calc(100% - 8px);
  }
}
.variation-thumb-item--no-stock {
  opacity: 0.2;
}
.variation-thumb-item img {
  width: 100%;
}

.variation-header {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.variation-header img {
  margin-right: 23px;
}
@media only screen and (max-width: 1100px) and (min-width: 768.01px) {
  .variation-header {
    margin-bottom: 19px;
  }
  .variation-header img {
    margin-right: 7px;
  }
}
@media only screen and (max-width: 500px) {
  .variation-header {
    margin-bottom: 19px;
  }
  .variation-header img {
    margin-right: 15px;
  }
}

.find-your-size {
  font-size: 13px;
  line-height: 1.3846153846;
  font-weight: 300;
  text-decoration: underline;
  color: var(--color-black);
}
.find-your-size:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1100px) and (min-width: 768.01px) {
  .find-your-size {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 500px) {
  .find-your-size {
    margin-bottom: 5px;
  }
}

.size-quide {
  margin-left: auto;
  background-color: var(--color-grey-lighter);
  padding: 4px 21px;
  font-size: 16px;
  line-height: 1.0625;
  font-weight: 500;
  border-radius: 16px;
}
@media only screen and (max-width: 1100px) and (min-width: 768.01px) {
  .size-quide {
    padding: 1px 9px;
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
@media only screen and (max-width: 500px) {
  .size-quide {
    padding: 1px 9px;
    font-size: 13px;
    line-height: 1.3846153846;
  }
}

.products-tags-wrapper {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  top: 42px;
  z-index: 2;
}
.products-tags-wrapper--small {
  top: 18px;
}

.product-tag-wrapper {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 2;
}
.product-tag-wrapper .product-tag-grey {
  font-size: 17px;
  line-height: 1.3529411765;
  font-weight: 700;
}

.product-tag--bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-tag-wrapper.product-tag-wrapper--discount {
  position: absolute;
  left: 0;
  top: 57px;
  z-index: 2;
}

.product-tag-wrapper.product-tag-wrapper--new {
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 2;
}
.product-tag-wrapper.product-tag-wrapper--new .product-tag.product-tag--grey {
  line-height: 1.3529411765;
  font-size: 17px;
  padding: 5px 19px 7px 15px;
}

.product-tag {
  font-size: 21px;
  line-height: 1.3333333333;
}
.product-tag--plus-size {
  display: none;
  height: 32px;
  padding-left: 17px;
  background-color: #10100f;
  width: 178px;
  position: absolute;
  right: 0;
  bottom: 11px;
}
@media only screen and (max-width: 500px) {
  .product-tag--plus-size {
    display: block;
  }
}
.product-tag--plus-size span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  color: #ffffff;
}
.product-tag--green {
  padding: 6px 14px;
  font-weight: 800;
  color: #fff;
  background: var(--color-green);
}
.product-tag--grey {
  padding: 6px 17px;
  font-weight: 700;
  color: var(--color-black);
  background: var(--color-grey-lighter);
}
.product-tag--black {
  background: var(--color-black);
  color: var(--color-white);
}
.product-tag--small {
  font-size: 10px;
  line-height: 1.4;
  padding: 4px 12px;
}
@media only screen and (max-width: 768px) {
  .product-tag--small {
    padding: 3px 6px;
    font-size: 6px;
    line-height: 2.3333333333;
  }
  .product-tag--small-size {
    font-size: 8px;
    line-height: 1.375;
  }
}

.mini-popup {
  display: none;
  position: absolute;
  top: -60.4px;
  left: 0;
  width: 100%;
  padding: 38px 44px;
  background-color: var(--color-white);
  height: auto;
  z-index: 1000;
  cursor: initial;
}
@media only screen and (max-width: 1120px) and (min-width: 768.01px) {
  .mini-popup {
    height: calc(100% + 78.2px);
    padding: 17px 39px;
    top: -60.4px;
    left: calc(100% - 414px);
    min-width: 414px;
    min-height: 358px;
  }
}
@media only screen and (max-width: 768px) {
  .mini-popup {
    height: calc(100% + 78.2px);
    padding: 17px 39px;
    top: -117.4px;
    min-width: 414px;
    min-height: 358px;
  }
}
@media only screen and (max-width: 500px) {
  .mini-popup {
    top: -133.4px;
    padding: 15px;
    min-width: initial;
  }
}
@media only screen and (max-width: 360px) {
  .mini-popup {
    min-height: 400px;
  }
}
.mini-popup__close-btn {
  background-image: url(../images/icons/icon-close-dropdown.svg);
  background-position: center;
  position: absolute;
  top: 23px;
  right: 19px;
  display: block;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.mini-popup__header {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--color-black) !important;
}
@media only screen and (max-width: 1200px) {
  .mini-popup__header {
    padding-right: 60px;
  }
  .mini-popup__header br {
    display: none;
  }
}
.mini-popup .form-input-wrapper {
  margin-bottom: 25px;
}
.mini-popup button {
  margin-top: 28px;
}

.size-table {
  display: none;
}

.size-table__header {
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--color-grey-light-2);
}
@media screen and (max-width: 768px) {
  .size-table__header {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.size-table__header .product-brand {
  display: block !important;
  margin-bottom: 60px;
}
.size-table__header .product-brand img {
  max-width: 186px;
  height: 21px;
  object-fit: cover;
}
.size-table__header h2 {
  display: inline-block;
  font-size: 16px;
  line-height: 1.125;
}

.size-table__back-btn {
  display: inline-block;
  margin-right: 23.5px;
}

.size-table__body {
  overflow: scroll;
  padding: 22px 0 20px;
}
@media screen and (max-width: 768px) {
  .size-table__body {
    padding: 22px 0 55px;
  }
}

.size-table__table {
  width: 100%;
  border-spacing: 0;
}
.size-table__table tr {
  margin-bottom: 28px;
}
.size-table__table tr:last-child {
  margin-bottom: 0;
}
.size-table__table th {
  font-size: 11px;
  line-height: 1.6363636364;
  color: var(--color-black);
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .size-table__table th {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
.size-table__table td {
  text-align: center;
  font-size: 13px;
  line-height: 1.3846153846;
  border-right: 0.3px solid var(--color-grey-dark);
  padding: 0 18px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .size-table__table td {
    text-align: left;
    padding: 0;
  }
}
.size-table__table td:last-child {
  border: 0;
  padding: 0 0 0 18px;
}
@media screen and (max-width: 768px) {
  .size-table__table td:last-child {
    padding: 0;
  }
}
.size-table__table tr.noborders td {
  border: 0;
}

.close-button {
  background-image: url(../images/icons/icon-close-dropdown.svg);
  background-position: center;
  position: absolute;
  top: 23px;
  right: 19px;
  display: block;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .close-button {
    top: 21px;
    right: 39px;
  }
}
@media only screen and (max-width: 380px) {
  .close-button {
    right: 18px;
  }
}

.variation-sizes-wrapper {
  margin-bottom: 11.5px;
}
.variation-sizes-wrapper--fixed {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 500px;
  transform: translate(-50%, -50%);
  z-index: 9999999;
}

.variation-alert {
  display: none;
  align-items: center;
  font-size: 13px;
  line-height: 1.3846153846;
  margin-bottom: 11.5px;
}
.variation-alert svg {
  margin-right: 10px;
}
.variation-alert--warning {
  color: var(--color-yellow);
}

.product-summary-actions {
  display: flex;
  align-items: center;
  margin: 0 -8.5px 10px;
}
@media only screen and (max-width: 500px) {
  .product-summary-actions {
    margin: 18px -8.5px 10px;
  }
}
.product-summary-actions > * {
  margin: 0 8.5px;
}

.product-delivery-time {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.375;
}
@media only screen and (max-width: 500px) {
  .product-delivery-time {
    font-size: 13px;
    line-height: 1.3846153846;
    text-align: center;
  }
}

.product-set-wrapper {
  margin-top: 42px;
  position: relative;
}
.product-set-wrapper:not(.active) .accordion-btn-close {
  display: none;
}
.product-set-wrapper .accordion-btn-close {
  position: absolute;
  top: 15px;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .product-set-wrapper.active {
    padding-top: 10px;
    background-color: var(--color-grey-lighter);
    margin: 42px 25px 0;
  }
  .product-set-wrapper.active .accordion-btn {
    display: none;
  }
  .product-set-wrapper.active .accordion-btn-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
  }
}
@media only screen and (max-width: 500px) {
  .product-set-wrapper {
    margin-top: 11px;
  }
  .product-set-wrapper.active {
    margin: 11px 0 0;
  }
}

.product-accordion {
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.3684210526;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .product-accordion {
    text-decoration: none;
  }
  .active .product-accordion {
    justify-content: center;
  }
}
@media only screen and (max-width: 500px) {
  .product-accordion {
    flex-direction: row-reverse;
    justify-content: center;
    font-size: 16px;
    line-height: 1.375;
  }
}
.product-accordion a {
  display: inline-flex;
  align-items: center;
}
.product-accordion svg {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.jsAccordionWrapper.active .product-accordion svg {
  transform: rotate(0deg);
}

.accordion-btn {
  background-color: var(--color-grey-lighter);
  border-radius: 100%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}
@media only screen and (max-width: 500px) {
  .accordion-btn {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    margin-right: 0px;
  }
}

.product-set-message {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  font-weight: 300;
}
.product-set-message strong {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .active .product-set-message {
    text-align: center;
  }
}
@media only screen and (max-width: 500px) {
  .product-set-message {
    font-size: 13px;
    line-height: 1.3846153846;
    text-align: center;
    margin-bottom: 23px;
  }
}
.product-set-message strong {
  color: var(--color-green);
}

.product-set-slider-wrapper {
  position: relative;
  margin-top: 38px;
}
.product-set-slider-wrapper--accordion {
  display: none;
}

.generic-nav-arrow--set-slider {
  width: 18px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 2;
}
.generic-nav-arrow--set-slider img {
  width: 10px;
  height: 18px;
}
.generic-nav-arrow--set-slider.generic-nav-arrow--left {
  left: 0;
}
@media screen and (max-width: 1200px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--left {
    left: 20px;
    top: 40%;
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 768px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--left {
    left: 37px;
  }
}
@media screen and (max-width: 400px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--left {
    left: 10px;
  }
}
.generic-nav-arrow--set-slider.generic-nav-arrow--right {
  right: 68px;
}
@media screen and (max-width: 1200px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--right {
    top: 40%;
    left: initial;
    right: 20px;
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 768px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--right {
    right: 37px;
  }
}
@media screen and (max-width: 400px) {
  .generic-nav-arrow--set-slider.generic-nav-arrow--right {
    right: 10px;
  }
}

.product-set-slider-wrapper {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .product-set-slider-wrapper {
    background-color: var(--color-grey-lighter);
    max-width: 336px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-set-slider-wrapper {
    margin: 0 auto;
    padding: 10px 37px;
    max-width: 336px;
  }
}

.product-set-slider__flex {
  display: flex;
  position: relative;
}

.product-set-slider__img {
  position: relative;
  flex: 0 0 149px;
  max-width: 149px;
  margin-right: 25px;
  margin-left: 36px;
}
@media screen and (max-width: 1200px) {
  .product-set-slider__img {
    flex: 0 0 87px;
    max-width: 87px;
    margin-right: 16px;
    margin-left: 26px;
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 400px) {
  .product-set-slider__img {
    margin-left: 0;
  }
}

.product-set-slider__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand--text {
  font-size: 21px;
  line-height: 1.3333333333;
  font-weight: 700;
  margin-bottom: 1px;
}
@media screen and (max-width: 1200px) {
  .product-brand--text {
    font-size: 14px;
    line-height: 1.3571428571;
  }
}

.product-short-description {
  font-size: 13px;
  line-height: 1.2307692308;
  margin-bottom: 7px;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .product-short-description {
    font-size: 13px;
    line-height: 1.3846153846;
    margin-bottom: 8px;
  }
}

.product-set-slider__like {
  align-self: center;
}
@media screen and (max-width: 1200px) {
  .product-set-slider__like {
    position: absolute;
    left: 26px;
    bottom: 0;
    min-width: 24px;
    height: 24px;
  }
  .product-set-slider__like img {
    width: 13px;
    height: 11.5px;
  }
}
@media screen and (max-width: 400px) {
  .product-set-slider__like {
    left: 0;
  }
}

.product-set-slider__content .product-regular-price {
  color: var(--color-green);
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 1200px) {
  .product-set-slider__content .product-regular-price {
    font-size: 14px;
    line-height: 1.3571428571;
  }
}

.product-more-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 1.3636363636;
  font-weight: 300;
}
@media only screen and (max-width: 1200px) {
  .product-more-info {
    justify-content: space-between;
  }
  .product-more-info br {
    display: none;
  }
}
.product-more-info img {
  margin-left: 8.6px;
  width: 29.4px;
}

.product-summary__footer {
  margin-top: 42px;
}
@media only screen and (max-width: 500px) {
  .product-summary__footer {
    margin-top: 50px;
  }
}

.product-general-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-weight: 300;
}
.product-general-tabs .product-tab a {
  font-size: 13px;
  line-height: 1.3846153846;
}
.product-general-tabs .product-tab.active {
  font-weight: 700;
}
.product-general-tabs .product-tab--separator {
  margin: 0 26px;
  width: 1px;
  height: 14px;
  display: block;
  background-color: var(--color-black);
}

.product-tab-content {
  display: none;
}
.product-tab-content.active {
  display: block;
}
.product-tab-content__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.product-general-accordions {
  display: flex;
  align-items: center;
  margin-bottom: 85px;
  padding: 22px 25px;
  background-color: #fcfcfc;
}
.product-general-accordions .product-accordion {
  justify-content: space-between;
  text-decoration: none;
}
.product-general-accordions .product-accordion a {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
}
.product-general-accordions .product-accordion svg {
  transform: rotate(0deg);
}
.product-general-accordions .product-accordion.active svg {
  transform: rotate(180deg);
}

.product-accordion-content {
  border-bottom: 0.5px solid var(--color-grey-light-2);
  padding-bottom: 18px;
  margin-bottom: 27px;
}
.product-accordion-content__text {
  font-size: 12px;
  line-height: 1.5;
}

.shop_attributes {
  margin-top: 11px;
  font-weight: 300;
  padding-left: 15px;
}
.shop_attributes li {
  list-style: disc;
  font-size: 12px;
  line-height: 1.5;
}
.shop_attributes li strong {
  font-weight: 600;
}

.section-shop-info {
  margin: 140px 0 52px;
}
@media only screen and (max-width: 1024px) {
  .section-shop-info {
    margin: 52px 0;
  }
}

.shop-info {
  border-right: 1px solid var(--color-black);
  padding: 0 6%;
}
.shop-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .shop-info-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1400px) {
  .shop-info {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .shop-info {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
    border-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .shop-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.shop-info h2 {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 300;
  text-align: center;
}
.shop-info h2 strong {
  font-weight: 700;
}
.shop-info:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .shop-info:first-child {
    padding-left: 20px;
  }
}
.shop-info:last-child {
  padding-right: 0;
  border: 0;
}
@media only screen and (max-width: 1024px) {
  .shop-info:last-child {
    padding-right: 20px;
  }
}

.products-carousel--relative {
  max-width: 1482px;
}
.products-carousel--relative .owl-nav button.owl-next {
  margin-right: -28px;
}
@media only screen and (max-width: 768px) {
  .products-carousel--relative {
    max-width: calc(100% + 28px);
    width: calc(100% + 28px);
    margin-left: -14px !important;
    margin-right: -14px !important;
  }
  .products-carousel--relative .owl-nav {
    max-width: 100% !important;
    width: 100%;
    height: 21px;
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translateX(-50%);
    height: 21px !important;
  }
  .products-carousel--relative .owl-nav .owl-prev {
    margin-left: 40px !important;
  }
  .products-carousel--relative .owl-nav .owl-next {
    margin-right: 40px !important;
  }
  .products-carousel--relative .owl-item:not(.active) .product__info-inner {
    display: none;
  }
  .products-carousel--relative .owl-item:not(.active) .product .product-wishlist {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .products-carousel--relative .owl-nav .owl-prev {
    margin-left: 20px !important;
  }
  .products-carousel--relative .owl-nav .owl-next {
    margin-right: 20px !important;
  }
}

.circle-checkmark {
  border: 0.5px solid var(--color-black);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: relative;
}
.custom-dropdown-option.active .circle-checkmark:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  padding: 3px;
  background-color: var(--color-green);
  width: 14px;
  height: 14px;
}

@media only screen and (max-width: 1024px) {
  .d-1200-none {
    display: none !important;
  }

  .d-1200-flex {
    display: flex !important;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
.container-fluid-header-top {
  max-width: 1800px;
  padding: 0 33px;
  margin: 0 auto;
}
@media only screen and (max-width: 500px) {
  .container-fluid-header-top {
    padding: 0;
  }
}

.container-fluid {
  max-width: 1800px;
  padding: 0 33px;
  margin: 0 auto;
}
@media only screen and (max-width: 500px) {
  .container-fluid {
    padding: 0 14px;
  }
}

.background-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.site-content {
  position: relative;
  overflow: hidden;
}
.site-content.overflow {
  overflow: hidden;
  height: 100vh;
}

section {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.text-area h2 {
  font-size: 30px;
  line-height: 1.3666666667;
  color: var(--color-black);
}
.text-area p {
  font-size: 19px;
  line-height: 1.3684210526;
  color: var(--color-black);
}
@media only screen and (min-width: 768.01px) {
  .text-area p.fn-21 {
    font-size: 21px;
    line-height: 1.2857142857;
  }
}
.text-area p.light {
  font-weight: 300;
}

@media only screen and (max-width: 768px) {
  .products-carousel {
    margin-left: 26px;
  }
}
.products-carousel-wrapper {
  overflow: hidden;
}
.products-carousel-wrapper img.w-100 {
  margin-bottom: 25px;
}
.products-carousel-wrapper .container {
  position: relative;
}
.products-carousel-wrapper .container::before {
  content: "";
  position: absolute;
  width: calc((100vw - 100%) / 2 + 30px);
  height: 100%;
  left: calc(((100vw - 100%) / 2) * -1);
  top: 0;
  background: #fff;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .products-carousel-wrapper .container::before {
    display: none;
  }
}
.products-carousel-wrapper h2 {
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  .products-carousel-wrapper h2 {
    display: none;
  }
}
.products-carousel .owl-stage-outer {
  overflow: visible;
}
.products-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 12px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .products-carousel .owl-nav {
    max-width: 92%;
  }
}
.products-carousel .owl-nav button.owl-next,
.products-carousel .owl-nav button.owl-prev {
  margin: 0;
  font-size: 12px;
  line-height: 1;
}
.products-carousel .owl-nav button.owl-next.disabled,
.products-carousel .owl-nav button.owl-prev.disabled {
  opacity: 0;
  pointer-events: none;
}
.products-carousel .owl-nav button.owl-next:hover,
.products-carousel .owl-nav button.owl-prev:hover {
  background: none;
}
.products-carousel .owl-item {
  opacity: 0.2;
  transition: all 0.3s ease;
}
.products-carousel .owl-item.active {
  opacity: 1;
}

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

.text-bold {
  font-weight: bold;
}

@media only screen and (max-width: 1400px) {
  .off-xl-0 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .off-md-0 {
    margin-left: 0;
  }
}

.notice {
  background-color: var(--color-grey-lighter);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 12px 0;
}
@media only screen and (max-width: 1024px) {
  .notice {
    background-color: transparent;
  }
}
@media only screen and (max-width: 768px) {
  .notice {
    font-size: 14px;
    line-height: 18px;
    padding: 25px 0;
  }
}

.cart-form {
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .cart-form {
    margin-bottom: 25px;
    padding: 25px 0;
  }
}

.cart-heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cart-heading-container .cart-heading {
  margin-bottom: 0;
}

.cart-heading {
  color: var(--color-black);
  display: block;
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .cart-heading {
    font-size: 21px;
    line-height: 28px;
  }
}
.cart-heading--sm {
  font-size: 21px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .cart-heading--sm {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart-form-title {
  border-bottom: 1px solid #dcdcdc;
  padding: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .cart-form-title {
    border-bottom: none;
    text-align: center;
  }
}
.cart-form-title span {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}

.cart-items {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .cart-items {
    border-bottom: none;
    padding-bottom: 0;
    padding-right: 0;
  }
}

.cart-item {
  display: flex;
  margin-bottom: 30px;
}
.cart-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .cart-item-img-container {
    padding-left: 25px;
    padding-right: 15px;
    position: relative;
    width: 50%;
  }
}
.cart-item-img-container .btn--like {
  display: none;
}
@media only screen and (max-width: 768px) {
  .cart-item-img-container .btn--like {
    display: flex;
    height: 42px;
    width: 42px;
    min-width: 42px;
    position: absolute;
    bottom: 0;
    right: 15px;
    transform: translate(0, 50%);
  }
}

.cart-item-img {
  min-width: 135px;
}
@media only screen and (max-width: 768px) {
  .cart-item-img {
    height: 100%;
    min-width: auto;
    object-fit: cover;
    width: 100%;
  }
}

.cart-item-content {
  flex: 1;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: calc(100% - 135px);
}
@media only screen and (max-width: 768px) {
  .cart-item-content {
    max-width: 50%;
    padding-left: 0;
    width: 50%;
  }
}

.cart-item-title {
  display: block;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .cart-item-title {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart-item-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .cart-item-desc {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
    font-size: 11px;
  }
}

.cart-item-price {
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .cart-item-price {
    text-align: right;
  }
}
.cart-item-price .product-regular-price,
.cart-item-price .product-sale-price,
.cart-item-price .product-price-separator {
  font-size: 19px;
  line-height: 26px;
}
@media only screen and (max-width: 768px) {
  .cart-item-price .product-regular-price,
.cart-item-price .product-sale-price,
.cart-item-price .product-price-separator {
    font-size: 16px;
  }
}
.cart-item-price .product-regular-price,
.cart-item-price .product-price-separator {
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .cart-item-price .product-price-separator {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.cart-item-atts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .cart-item-atts {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 10px;
  }
}

.cart-item-att {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .cart-item-att {
    font-size: 11px;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .cart-item-att[data-attribute=quantity] {
    margin-top: 20px;
  }
}

.cart-item-att-value {
  font-weight: 700;
  margin-left: 1ch;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .cart-item-att-value {
    font-size: 13px;
  }
}
.cart-item-att-value .custom-select {
  padding-left: 0;
  padding-right: 16px;
}
@media only screen and (max-width: 768px) {
  .cart-item-att-value .custom-select {
    font-size: 13px;
  }
}
.cart-item-att-value .custom-select .select-selected {
  padding-bottom: 0;
}
.cart-item-att-value .custom-select .select-selected::after {
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/icons/icon-arrow-down-sm.svg);
  height: 5px;
  width: 10px;
}

.cta {
  font-size: 11px;
  font-weight: 300;
  line-height: 16px;
}
.cta--icon {
  display: flex;
  align-items: center;
}
.cta--icon figure {
  background-color: var(--color-grey-lighter);
  border-radius: 50%;
  min-width: 42px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}

.cart-item-actions {
  display: flex;
}
.cart-item-actions .cta {
  margin-right: 36px;
}
.cart-item-actions .cta:last-child {
  margin-right: 0;
}

.cart-actions {
  margin-top: 30px;
}

.cart-action {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  text-decoration: underline;
}
.cart-action--icon {
  display: flex;
  align-items: center;
}
.cart-action--icon img {
  margin-right: 18px;
}

.cart-summary {
  padding-left: 20%;
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .cart-summary {
    padding-left: 10%;
  }
}
@media only screen and (max-width: 1024px) {
  .cart-summary {
    padding-left: 0;
    padding-top: 25px;
  }
}

.cart-summary-banner {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .cart-summary-banner {
    margin-bottom: 0;
  }
}
.cart-summary-banner a {
  color: #fff;
  display: block;
  font-size: 17px;
  line-height: 22px;
  padding: 50px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .cart-summary-banner a {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .cart-summary-banner a {
    font-size: 14px;
    line-height: 17px;
    padding: 18px;
    margin-bottom: 0;
  }
}

.cart-summary-extras {
  background-color: var(--color-grey-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px;
}
@media only screen and (max-width: 768px) {
  .cart-summary-extras {
    padding: 11px;
  }
}
.cart-summary-extras a {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
@media only screen and (max-width: 768px) {
  .cart-summary-extras a {
    font-size: 13px;
    line-height: 18px;
  }
}
.cart-summary-extras a span {
  text-decoration: underline;
}
.cart-summary-extras a span.active {
  color: #409966;
}
.cart-summary-extras a::after {
  content: "|";
  margin: 0 1ch;
}
.cart-summary-extras a:last-child::after {
  display: none;
}

.cart-upsells {
  background-color: var(--color-grey-lighter);
  max-width: 69%;
  padding: 25px 70px 45px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .cart-upsells {
    max-width: 100%;
    padding: 25px 30px;
  }
}
.cart-upsells .product-set-slider__img {
  margin-left: 0;
}
.cart-upsells .product-set-slider__content {
  justify-content: center;
}
.cart-upsells .product-brand--text {
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-brand--text {
    font-size: 14px;
    line-height: 19px;
  }
}
.cart-upsells .product-short-description {
  color: var(--color-black);
  font-size: 11px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-short-description {
    font-size: 9px;
    line-height: 13px;
  }
}
.cart-upsells .product-regular-price {
  font-size: 21px;
  line-height: 29px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-regular-price {
    font-size: 14px;
    line-height: 19px;
  }
}
.cart-upsells .product-tag--small {
  font-weight: 700;
}
.cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--left {
  left: -35px;
}
@media only screen and (max-width: 1024px) {
  .cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--left {
    left: -25px;
  }
}
@media only screen and (max-width: 768px) {
  .cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--left {
    left: -35px;
  }
}
.cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--right {
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--right {
    right: -25px;
  }
}
@media only screen and (max-width: 768px) {
  .cart-upsells .generic-nav-arrow--set-slider.generic-nav-arrow--right {
    right: -35px;
  }
}
.cart-upsells .product-set-slider__like {
  display: none;
}
.cart-upsells .product-set-slider__img {
  flex-basis: 119px;
  max-width: 119px;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-set-slider__img {
    flex-basis: 76px;
    max-width: 76px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-set-slider-wrapper {
    margin-top: 15px;
    margin-left: 20%;
    margin-right: 20%;
  }
}
@media only screen and (max-width: 400px) {
  .cart-upsells .product-set-slider-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .cart-upsells .product-set-slider__flex {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.cart-upsells .btn--like {
  display: none;
}
@media only screen and (max-width: 768px) {
  .cart-upsells .btn--like {
    display: flex;
    height: 24px;
    width: 24px;
    min-width: 24px;
    position: absolute;
    bottom: 0;
    left: -15px;
  }
}
.cart-upsells .btn--like img {
  height: auto;
  width: 13px;
}
.cart-upsells .slick-slide:not(.slick-active) .btn--like {
  display: none;
}

.cart-upsells-heading {
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells-heading {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
}

.cart-upsells-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}
@media only screen and (max-width: 768px) {
  .cart-upsells-desc {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}
.cart-upsells-desc strong {
  color: var(--color-green);
  font-weight: 600;
}

.cart-upsells-like-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  height: 50px;
  width: 50px;
}
.cart-upsells-like-cta a {
  height: inherit;
  min-width: auto;
  width: inherit;
}
.cart-upsells-like-cta img {
  height: auto;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .cart-page-container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .cart-submit-btn-container .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    margin-bottom: 50px;
  }
}

.cart-item-remove {
  position: absolute;
  left: 0;
  top: 0;
}

.quantity-container {
  display: flex;
  align-items: center;
}
.quantity-container input::-webkit-outer-spin-button,
.quantity-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-container input[type=number] {
  -moz-appearance: textfield;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-grey-lighter);
  border-radius: 50%;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1;
  height: 28px;
  width: 28px;
}
@media only screen and (max-width: 768px) {
  .qty-btn {
    height: 22px;
    width: 22px;
  }
}

.qty {
  border: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .qty {
    font-size: 13px;
    width: 42px;
  }
}

.cart-summary input.--bold {
  font-weight: 700;
}
.cart-summary input.--centered {
  padding-right: 25px;
  text-align: center;
}
.cart-summary input.--lg {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
}
.cart-summary input {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 300;
  color: #10100f;
  border-radius: 5px;
  border: 1px solid #10100f;
  padding-left: 25px;
}

.checkout-header {
  border-top: 50px solid var(--color-grey-lighter);
  padding: 85px 0;
}
@media only screen and (max-width: 768px) {
  .checkout-header {
    padding: 0;
    border-top: none;
  }
}

.checkout-header-back {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 11px 0;
  background-color: var(--color-grey-lighter);
  margin-bottom: 30px;
}
.checkout-header-back img {
  margin-right: 8px;
  width: 30px;
}
.checkout-header-back span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

.checkout-logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.checkout-footer {
  border-bottom: 50px solid var(--color-grey-lighter);
}
@media only screen and (max-width: 768px) {
  .checkout-footer {
    border-bottom: none;
    width: 100%;
    max-width: 386px;
    margin: 0 auto;
  }
}

.section-card-progress {
  margin: 40px 0 21px;
}

.card__progress {
  text-align: center;
}
.card__progress img {
  display: none;
}
.card__progress img.active {
  display: block;
  margin: 0 auto;
}

.img-card-payment {
  display: block;
  margin-bottom: 38px;
}
@media only screen and (max-width: 768px) {
  .img-card-payment {
    margin-bottom: 23px;
    margin-top: 48px;
  }
}
.img-card-payment img {
  width: 100%;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
.section-subscribe {
  margin: 118px 0;
}
@media only screen and (max-width: 768px) {
  .section-subscribe {
    margin: 44px 0 57px;
  }
}

@media only screen and (max-width: 768px) {
  .site-footer {
    padding-top: 20px;
    background-color: #fcfcfc;
  }
}

.subscribe {
  max-width: 1074px;
  width: 100%;
  margin: 0 auto;
  background-color: #fcfaf5;
  padding: 69px 15px 138px;
}
@media only screen and (max-width: 768px) {
  .subscribe {
    padding: 47px 15px 25px;
  }
}
.subscribe--homepage .radio-item .checkmark {
  border-radius: 50%;
}
.subscribe:not(.open) {
  padding: 38px 0;
}
.subscribe:not(.open) .subscribe-toggle-wrapper {
  display: none;
}
.subscribe.open .subscribe-toggle-arrow {
  display: none;
}
.subscribe .subscribe-toggle-arrow {
  display: block;
  text-align: center;
  cursor: pointer;
  margin-top: -13px;
}
.subscribe-form h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 41px;
  padding-bottom: 5px;
  color: #10100f;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .subscribe-form h3 {
    font-size: 21px;
    line-height: 28px;
    padding-bottom: 8px;
    max-width: 294px;
    margin: 0 auto;
  }
}
.subscribe-form p {
  font-size: 19px;
  line-height: 27px;
  font-weight: 400;
  color: #10100f;
  text-align: center;
  padding-bottom: 31px;
}
@media only screen and (max-width: 768px) {
  .subscribe-form p {
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 22px;
    max-width: 294px;
    margin: 0 auto;
  }
}
.subscribe-form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 60px;
  background-color: #10100f;
  border: none;
  margin: 28px auto 0 auto;
  font-size: 21px;
  font-weight: 400;
  color: #fcfaf5;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .subscribe-form input[type=submit] {
    margin: 22px auto 0 auto;
    font-size: 17px;
    line-height: 50px;
    height: 50px;
    max-width: 236px;
  }
}

/* The radio Button item */
.radio-item {
  display: flex;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.radio-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.radio-item .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid #10100f;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

/* On mouse-over, add a grey background color */
.radio-item:hover input ~ .checkmark {
  opacity: 0.87;
}

/* When the checkbox is checked, add a blue background */
.radio-item input:checked ~ .checkmark {
  border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.radio-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.radio-item input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.radio-item .checkmark:after {
  background-image: url(../images/icons/ico-radio-checked.svg);
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.radio-wrapper {
  display: flex;
  justify-content: center;
}
.radio-wrapper .radio-item:not(:last-of-type) {
  margin-right: 40px;
}
.radio-wrapper .radio-item label {
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  color: #10100f;
  cursor: pointer;
  padding-left: 28px;
  margin-left: -22px;
  position: relative;
  z-index: 2;
}

.subscribe-email-wrapper {
  display: block;
  width: 100%;
  max-width: 546px;
  margin: 33px auto 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper {
    margin: 20px auto 0;
    max-width: 336px;
  }
}
.subscribe-email-wrapper:before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 26.77px;
  height: 17px;
  top: 50%;
  left: 22px;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper:before {
    width: 21px;
    height: 14px;
    left: 25px;
  }
}
.subscribe-email-wrapper:after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 42px;
  height: 16px;
  top: 50%;
  right: 31px;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper:after {
    width: 29px;
    height: 11px;
    right: 25px;
  }
}
.subscribe-email-wrapper input[type=email] {
  display: block;
  width: 100%;
  height: 62px;
  border: 0.5px solid #10100f;
  font-size: 19px;
  font-weight: 300;
  color: #b4b4b4;
  line-height: 62px;
  padding-left: 116px;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper input[type=email] {
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding-left: 75px;
  }
}
.subscribe-email-wrapper input[type=email]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 19px;
  font-weight: 300;
  color: #b4b4b4;
  opacity: 1;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper input[type=email]::-webkit-input-placeholder {
    font-size: 15px;
  }
}
.subscribe-email-wrapper input[type=email]::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 19px;
  font-weight: 300;
  color: #b4b4b4;
  opacity: 1;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper input[type=email]::-moz-placeholder {
    font-size: 15px;
  }
}
.subscribe-email-wrapper input[type=email]:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 19px;
  font-weight: 300;
  color: #b4b4b4;
  opacity: 1;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper input[type=email]:-ms-input-placeholder {
    font-size: 15px;
  }
}
.subscribe-email-wrapper input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  font-size: 19px;
  font-weight: 300;
  color: #b4b4b4;
  opacity: 1;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .subscribe-email-wrapper input[type=email]:-moz-placeholder {
    font-size: 15px;
  }
}

.container__footer {
  max-width: 946px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 51px;
}
@media only screen and (max-width: 768px) {
  .footer-logo {
    display: none;
  }
}

.footer-row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    max-width: 386px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col ul li {
    width: 100%;
  }
}
.footer-col ul li a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  color: #10100f;
}
.footer-col h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  color: #10100f;
  padding-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .footer-col h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__company {
    order: 4;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__help {
    order: 3;
  }
}
.footer-col__social {
  display: none;
  padding: 17px 0;
  max-width: 336px;
  width: 100%;
  margin: 55px auto 0px auto;
  justify-content: space-between;
  align-items: center;
  order: 2;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.footer-col__social h3 {
  padding-bottom: 0;
}
.footer-col__social ul {
  display: flex;
}
.footer-col__social ul li:not(:last-of-type) {
  margin-right: 39px;
}
@media only screen and (max-width: 768px) {
  .footer-col__social {
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__contact {
    order: 1;
  }
}
.footer-col__contact h3 {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact h3 {
    text-align: left;
    padding-left: 24px;
    padding-bottom: 22px;
  }
}
.footer-col__contact ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul {
    align-items: baseline;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li:last-of-type {
    order: 1;
    margin-bottom: 31px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li:not(:first-of-type), .footer-col__contact ul li:not(:last-of-type) {
    padding-top: 25px;
  }
}
.footer-col__contact ul li:first-of-type {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li:first-of-type {
    padding-bottom: 25px;
  }
  .footer-col__contact ul li:first-of-type:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    max-width: 236px;
    transform: translate(-50%, 0);
  }
}
.footer-col__contact ul li:not(:last-of-type) {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li:not(:last-of-type) {
    order: 2;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 336px;
    margin: 0 auto;
  }
}
.footer-col__contact ul li a {
  display: flex;
  align-items: center;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
.footer-col__contact ul li img:first-of-type {
  margin-right: 12px;
}
.footer-col__contact ul li img:last-of-type {
  margin-left: 12px;
}
.footer-col__contact ul li .telephones-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper {
    height: 50px;
    justify-content: space-between;
    margin-top: -25px;
  }
}
.footer-col__contact ul li .telephones-wrapper a {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper a {
    background-color: #10100f;
    color: #ffffff;
    width: 100%;
    max-width: 186px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper a {
    line-height: 50px;
    display: flex;
    justify-content: center;
  }
}
.footer-col__contact ul li .telephones-wrapper a:first-of-type {
  padding-right: 20px;
  /*border-right: 1px solid #b4b4b4;*/
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper a:first-of-type {
    padding-right: 0;
    border-right: none;
    margin-right: 14px;
  }
}
.footer-col__contact ul li .telephones-wrapper a:last-of-type {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper a:last-of-type {
    padding-left: 0;
  }
}
.footer-col__contact ul li .telephones-wrapper a img {
  margin-right: 8px;
}
.footer-col__contact ul li .telephones-wrapper a img.mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .footer-col__contact ul li .telephones-wrapper a img.mobile {
    display: block;
  }
  .footer-col__contact ul li .telephones-wrapper a img.desktop {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-col__toggle {
    max-width: 336px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid #dcdcdc;
  }
  .footer-col__toggle.active ul {
    display: block;
  }
  .footer-col__toggle.active h3:after {
    top: 50%;
    transform: rotate(0deg) translate(0, -50%);
  }
  .footer-col__toggle h3 {
    position: relative;
    padding-bottom: 0;
    cursor: pointer;
  }
  .footer-col__toggle h3:after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 17px;
    height: 10px;
    background-image: url(../images/icons/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    transform: rotate(180deg) translate(0, -50%);
    cursor: pointer;
  }
  .footer-col__toggle ul {
    margin-top: 16px;
    display: none;
  }
}
.footer-category {
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
}
.footer-category ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-category ul li {
  margin-top: 20px;
}
.footer-category ul li:not(:last-of-type) {
  margin-right: 16px;
}
.footer-category ul li.active a {
  color: #ffffff;
  background-color: #10100f;
}
.footer-category ul li a {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding: 9px 15px;
  color: #10100f;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .footer-social {
    display: none;
  }
}
.footer-social a {
  display: block;
}
.footer-social a:first-of-type {
  padding-right: 28px;
  border-right: 1px solid #b4b4b4;
}
.footer-social a:last-of-type {
  padding-left: 28px;
}

.footer-payment {
  margin-bottom: 50px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .footer-payment {
    margin-bottom: 10px;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-payment img {
    mix-blend-mode: multiply;
  }
}

.footer-bottom {
  padding: 18px 0;
  background-color: #fcfaf5;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .footer-bottom {
    background-color: transparent;
    padding: 0px 0 23px;
  }
}
.footer-bottom a {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: underline;
  color: #10100f;
}
@media only screen and (max-width: 768px) {
  .footer-bottom a {
    font-size: 13px;
  }
}
.footer-bottom a:first-of-type {
  margin-right: 8px;
}

.scroll2top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 59px;
  height: 59px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #10100f;
  border-radius: 2px;
  cursor: pointer;
  z-index: 99999999;
}
.scroll2top.hidden {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .scroll2top {
    width: 36px;
    height: 36px;
  }
  .scroll2top img {
    width: 16.38px;
  }
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}

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