@charset "UTF-8";
/*

*/
/*---------------------------------------------------------------------*\
    #TABLE OF CONTENTS
\*---------------------------------------------------------------------*/
/**
 * SETTINGS
 * 00-settings...................Declarations of Sass variables.
 * ...settings.default...........iscss’ default settings.
 * ...settings.colors............Manage our color palette in isolation.
 * ...settings.fonts.............Manage our fonts settings in isolation.
 *
 * TOOLS
 * 05-tools......................Mixins and other tools.
 * ...mixin.scope................Declaration of Sass scope.
 * ...mixin.fonts................iscss’ default font mixins.
 * ...tools.icons................iscss’ default icons mixins.
 * ...tools.z-index..............iscss’ default z-index mixins.
 *
 * GENERIC
 * 08-generic....................Mixins and other tools.
 * ...generic.normalize..........A level playing field.
 * ...generic.reset..............A pared back reset to remove margins.
 * ..,generic.box-sizing.........Better default `box-sizing`.
 * ...generic.shared.............Sensibly and tersely share global commonalities.
 * ...generic.clearfix...........I can’t believe we still need this in 2014.
 *
 * BASE
 * 10-base.......................Sass base
 * ...base.page..................HTML and body class
 * ...base.images................Setup all images
 *
 * VENDOR
 * 20-vendor.....................Vendors Sass classes
 *
 * GLOBAL
 * 30-global.....................Global Sass classes
 * ...demo.bootstrap.............Demo for bootstrap vendor
 *
 * ATOMIC PATTERN
 * 50-atoms......................Atoms classes
 * 60-molecules..................Molecules classes
 * 70-organisms..................Organisms classes
 * 80-templates..................Templates classes
 * 90-pages......................Pages classes
 *
 * TOC To Be Continued
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700|Oswald:700|PT+Sans:700|Source+Sans+Pro:700&subset=latin-ext");
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

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

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

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

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

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

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

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

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

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

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

/*!
 * fullPage 2.8.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none; }

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box; }

.fp-slide {
  float: left; }

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block; }

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out; }

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

.fp-slidesContainer {
  float: left;
  position: relative; }

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent; }

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff; }

.fp-scrollable {
  overflow: hidden;
  position: relative; }

.fp-scroller {
  overflow: hidden; }

.iScrollIndicator {
  border: 0 !important; }

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important; }

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0); }

#fp-nav.right {
  right: 17px; }

#fp-nav.left {
  left: 17px; }

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fp-slidesNav.bottom {
  bottom: 17px; }

.fp-slidesNav.top {
  top: 17px; }

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0; }

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative; }

.fp-slidesNav ul li {
  display: inline-block; }

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none; }

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%; }

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px; }

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer; }

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1; }

#fp-nav ul li .fp-tooltip.right {
  right: 20px; }

#fp-nav ul li .fp-tooltip.left {
  left: 20px; }

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important; }

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important; }

/*------------------------------------*\
    #00-settings SETTINGS
\*------------------------------------*/
/*---------------------------------------------------*\
    #00-settings Colors
\*---------------------------------------------------*/
/*---------------------------------------------------*\
    #00-settings Default
\*---------------------------------------------------*/
/*---------------------------------------------------*\
    #00-settings Fonts
\*---------------------------------------------------*/
/*------------------------------------*\
    #00-settings Config
\*------------------------------------*/
/*------------------------------------*\
    Spacing
\*------------------------------------*/
/*---------------------------------------------------*\
    #00-settings Project
\*---------------------------------------------------*/
/*------------------------------------*\
    #02-vendor VENDOR
\*------------------------------------*/
/*------------------------------------*\
    #20-vendor Fonts
\*------------------------------------*/
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before {
  content: " ";
  display: block;
  background: #000;
  position: absolute;
  z-index: 30; }

.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-horizontal .twentytwenty-handle:before {
  width: 2px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px; }

.twentytwenty-vertical .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px; }

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s; }

.twentytwenty-after-label,
.twentytwenty-before-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity; }

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
  color: #000;
  font-size: 13px;
  letter-spacing: 0.1em; }

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.twentytwenty-horizontal .twentytwenty-after-label:before,
.twentytwenty-horizontal .twentytwenty-before-label:before {
  top: 50%;
  margin-top: -19px; }

.twentytwenty-vertical .twentytwenty-after-label:before,
.twentytwenty-vertical .twentytwenty-before-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px; }

.twentytwenty-down-arrow,
.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow {
  width: 0;
  height: 0;
  border: 10px inset transparent;
  position: absolute; }

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -10px; }

.twentytwenty-down-arrow,
.twentytwenty-up-arrow {
  left: 50%;
  margin-left: -6px; }

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none; }

.twentytwenty-container img {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  display: block; }

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active:hover.twentytwenty-overlay {
  display: none; }

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-before-label {
  opacity: 0; }

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px; }

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px; }

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px; }

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px; }

.twentytwenty-overlay {
  display: none; }

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5); }

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1; }

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1; }

.twentytwenty-before {
  z-index: 20; }

.twentytwenty-after {
  z-index: 10; }

.twentytwenty-handle {
  height: 48px;
  width: 48px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -27px;
  border: 2px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 40;
  cursor: pointer; }

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 26px; }

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 26px; }

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 27px; }

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 27px; }

.twentytwenty-left-arrow {
  border-right: 10px solid #000;
  left: 50%;
  margin-left: -23px; }

.twentytwenty-right-arrow {
  border-left: 10px solid #000;
  right: 50%;
  margin-right: -23px; }

.twentytwenty-up-arrow {
  border-bottom: 6px solid #000;
  top: 50%;
  margin-top: -17px; }

.twentytwenty-down-arrow {
  border-top: 6px solid #000;
  bottom: 50%;
  margin-bottom: -17px; }

/*------------------------------------*\
    #05-tools TOOLS
\*------------------------------------*/
/*------------------------------------*\
    #05-tools Math
\*------------------------------------*/
/* ------------------------------------- *\
    #05-tools Scope
\* ------------------------------------- */
/* Wrap all styles in project global class.
 * Leave empty to output styles directly
 * (apply to all html)
 */
/*------------------------------------*\
    #05-tools Fonts
\*------------------------------------*/
/*------------------------------------*\
    #05-tools animations
\*------------------------------------*/
/*------------------------------------*\
    #05-tools Z-Index
\*------------------------------------*/
/* ------------------------------------- *\
    #05-tools Spacing
\* ------------------------------------- */
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
     * Margin helper classes.
     *
     * Add margins.
     */
.u-m {
  margin: 21px !important; }

.u-mt {
  margin-top: 21px !important; }

.u-mr {
  margin-right: 21px !important; }

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

.u-ml {
  margin-left: 21px !important; }

.u-mh {
  margin-right: 21px !important;
  margin-left: 21px !important; }

.u-mv {
  margin-top: 21px !important;
  margin-bottom: 21px !important; }

/**
     * Add tiny margins.
     */
.u-m-- {
  margin: 5px !important; }

.u-mt-- {
  margin-top: 5px !important; }

.u-mr-- {
  margin-right: 5px !important; }

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

.u-ml-- {
  margin-left: 5px !important; }

.u-mh-- {
  margin-right: 5px !important;
  margin-left: 5px !important; }

.u-mv-- {
  margin-top: 5px !important;
  margin-bottom: 5px !important; }

/**
     * Add small margins.
     */
.u-m- {
  margin: 11px !important; }

.u-mt- {
  margin-top: 11px !important; }

.u-mr- {
  margin-right: 11px !important; }

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

.u-ml- {
  margin-left: 11px !important; }

.u-mh- {
  margin-right: 11px !important;
  margin-left: 11px !important; }

.u-mv- {
  margin-top: 11px !important;
  margin-bottom: 11px !important; }

/**
     * Add large margins.
     */
.u-m\+ {
  margin: 42px !important; }

.u-mt\+ {
  margin-top: 42px !important; }

.u-mr\+ {
  margin-right: 42px !important; }

.u-mb\+ {
  margin-bottom: 42px !important; }

.u-ml\+ {
  margin-left: 42px !important; }

.u-mh\+ {
  margin-right: 42px !important;
  margin-left: 42px !important; }

.u-mv\+ {
  margin-top: 42px !important;
  margin-bottom: 42px !important; }

/**
     * Add huge margins.
     */
.u-m\+\+ {
  margin: 84px !important; }

.u-mt\+\+ {
  margin-top: 84px !important; }

.u-mr\+\+ {
  margin-right: 84px !important; }

.u-mb\+\+ {
  margin-bottom: 84px !important; }

.u-ml\+\+ {
  margin-left: 84px !important; }

.u-mh\+\+ {
  margin-right: 84px !important;
  margin-left: 84px !important; }

.u-mv\+\+ {
  margin-top: 84px !important;
  margin-bottom: 84px !important; }

/**
     * Remove margins.
     */
.u-m0 {
  margin: 0 !important; }

.u-mt0 {
  margin-top: 0 !important; }

.u-mr0 {
  margin-right: 0 !important; }

.u-mb0 {
  margin-bottom: 0 !important; }

.u-ml0 {
  margin-left: 0 !important; }

.u-mh0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.u-mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/**
     * Negative margins.
     */
.u--m {
  margin: -21px !important; }

.u--mt {
  margin-top: -21px !important; }

.u--mr {
  margin-right: -21px !important; }

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

.u--ml {
  margin-left: -21px !important; }

.u--mh {
  margin-right: -21px !important;
  margin-left: -21px !important; }

.u--mv {
  margin-top: -21px !important;
  margin-bottom: -21px !important; }

/**
     * Tiny negative margins.
     */
.u--m-- {
  margin: -5px !important; }

.u--mt-- {
  margin-top: -5px !important; }

.u--mr-- {
  margin-right: -5px !important; }

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

.u--ml-- {
  margin-left: -5px !important; }

.u--mh-- {
  margin-right: -5px !important;
  margin-left: -5px !important; }

.u--mv-- {
  margin-top: -5px !important;
  margin-bottom: -84px !important; }

/**
     * Small negative margins.
     */
.u--m- {
  margin: -11px !important; }

.u--mt- {
  margin-top: -11px !important; }

.u--mr- {
  margin-right: -11px !important; }

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

.u--ml- {
  margin-left: -11px !important; }

.u--mh- {
  margin-right: -11px !important;
  margin-left: -11px !important; }

.u--mv- {
  margin-top: -11px !important;
  margin-bottom: -11px !important; }

/**
     * Large negative margins.
     */
.u--m\+ {
  margin: -42px !important; }

.u--mt\+ {
  margin-top: -42px !important; }

.u--mr\+ {
  margin-right: -42px !important; }

.u--mb\+ {
  margin-bottom: -42px !important; }

.u--ml\+ {
  margin-left: -42px !important; }

.u--mh\+ {
  margin-right: -42px !important;
  margin-left: -42px !important; }

.u--mv\+ {
  margin-top: -42px !important;
  margin-bottom: -42px !important; }

/**
     * Huge negative margins.
     */
.u--m\+\+ {
  margin: -84px !important; }

.u--mt\+\+ {
  margin-top: -84px !important; }

.u--mr\+\+ {
  margin-right: -84px !important; }

.u--mb\+\+ {
  margin-bottom: -84px !important; }

.u--ml\+\+ {
  margin-left: -84px !important; }

.u--mh\+\+ {
  margin-right: -84px !important;
  margin-left: -84px !important; }

.u--mv\+\+ {
  margin-top: -84px !important;
  margin-bottom: -84px !important; }

/**
     * Padding helper classes.
     *
     * Add paddings.
     */
.u-p {
  padding: 21px !important; }

.u-pt {
  padding-top: 21px !important; }

.u-pr {
  padding-right: 21px !important; }

.u-pb {
  padding-bottom: 21px !important; }

.u-pl {
  padding-left: 21px !important; }

.u-ph {
  padding-right: 21px !important;
  padding-left: 21px !important; }

.u-pv {
  padding-top: 21px !important;
  padding-bottom: 21px !important; }

/**
     * Add tiny paddings.
     */
.u-p-- {
  padding: 5px !important; }

.u-pt-- {
  padding-top: 5px !important; }

.u-pr-- {
  padding-right: 5px !important; }

.u-pb-- {
  padding-bottom: 5px !important; }

.u-pl-- {
  padding-left: 5px !important; }

.u-ph-- {
  padding-right: 5px !important;
  padding-left: 5px !important; }

.u-pv-- {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

/**
     * Add small paddings.
     */
.u-p- {
  padding: 11px !important; }

.u-pt- {
  padding-top: 11px !important; }

.u-pr- {
  padding-right: 11px !important; }

.u-pb- {
  padding-bottom: 11px !important; }

.u-pl- {
  padding-left: 11px !important; }

.u-ph- {
  padding-right: 11px !important;
  padding-left: 11px !important; }

.u-pv- {
  padding-top: 11px !important;
  padding-bottom: 11px !important; }

/**
     * Add large paddings.
     */
.u-p\+ {
  padding: 42px !important; }

.u-pt\+ {
  padding-top: 42px !important; }

.u-pr\+ {
  padding-right: 42px !important; }

.u-pb\+ {
  padding-bottom: 42px !important; }

.u-pl\+ {
  padding-left: 42px !important; }

.u-ph\+ {
  padding-right: 42px !important;
  padding-left: 42px !important; }

.u-pv\+ {
  padding-top: 42px !important;
  padding-bottom: 42px !important; }

/**
     * Add huge paddings.
     */
.u-p\+\+ {
  padding: 84px !important; }

.u-pt\+\+ {
  padding-top: 84px !important; }

.u-pr\+\+ {
  padding-right: 84px !important; }

.u-pb\+\+ {
  padding-bottom: 84px !important; }

.u-pl\+\+ {
  padding-left: 84px !important; }

.u-ph\+\+ {
  padding-right: 84px !important;
  padding-left: 84px !important; }

.u-pv\+\+ {
  padding-top: 84px !important;
  padding-bottom: 84px !important; }

/**
     * Remove paddings.
     */
.u-p0 {
  padding: 0 !important; }

.u-pt0 {
  padding-top: 0 !important; }

.u-pr0 {
  padding-right: 0 !important; }

.u-pb0 {
  padding-bottom: 0 !important; }

.u-pl0 {
  padding-left: 0 !important; }

.u-ph0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.u-pv0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

/*------------------------------------*\
    #08-generic GENERIC
\*------------------------------------*/
/*------------------------------------*\
    #08-generic Normalize.css
\*------------------------------------*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent displaying `audio` without controls in Mobile Safari 4/5/6/7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address inconsistent styling of `abbr[title]`.
 * 1. Correct styling in Firefox 39 and Opera 12.
 * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Address inconsistent styling of b and strong.
 * 1. Correct duplicate application of `bolder` in Safari 6.0.2.
 * 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
 */
b,
strong {
  font-weight: inherit;
  /* 1 */ }

b,
strong {
  font-weight: bolder;
  /* 2 */ }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address inconsistent styling of `hr`.
 * 1. Correct `box-sizing` set to `border-box` in Firefox.
 * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * 1. Correct inheritance and scaling of font-size for preformatted text.
 * 2. Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct font properties not being inherited.
 * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Restore focus style in Firefox 4+ (unset by a rule above)
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * Address `appearance` set to `searchfield` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Restore font weight (unset by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/*------------------------------------*\
    #08-generic Reset
\*------------------------------------*/
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],
dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u,
ins {
  text-decoration: none; }

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/*------------------------------------*\
    #08-generic Box-sizing
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

/*------------------------------------*\
    #08-generic shared
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned,this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
hr,
table,
fieldset, figure,
pre {
  margin-bottom: 21px;
  margin-bottom: 1.5rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once,here.
 */
ul, ol, dd {
  margin-left: 42px;
  margin-left: 3rem; }

/*------------------------------------*\
    #08-generic Clearfix
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

@keyframes spin {
  0% {
    transform: rotateZ(0deg); }
  100% {
    transform: rotateZ(360deg); } }

@keyframes ripple {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    width: 300px;
    height: 300px; } }

/*------------------------------------*\
    #10-base BASE
\*------------------------------------*/
/*------------------------------------*\
    #10-base Page
\*------------------------------------*/
/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 0.875em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  background-color: #fff;
  color: #686873;
  overflow-y: scroll;
  /* [2] */
  overflow-x: hidden;
  min-height: 100%;
  /* [3] */
  height: 100%;
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */ }

body {
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  height: 100%;
  padding-top: 160px !important; }

.smcp {
  font-variant-caps: small-caps;
  -moz-font-feature-settings: "smcp";
  -webkit-font-feature-settings: "smcp";
  font-feature-settings: "smcp";
  text-transform: uppercase; }

main {
  overflow-x: hidden; }

.wrapper {
  z-index: 30;
  position: relative;
  background-color: #ffffff; }

.wrap.container-fluid, .wrap.container-sm, .wrap.container-md, .wrap.container-lg, .wrap.container-xl {
  min-height: calc(100vh - 567px); }

.woocommerce-message {
  border-top-color: #d12d28; }

@media (max-width: 991.98px) {
  body {
    padding-top: 78px !important; } }

/*------------------------------------*\
    #10-base Images
\*------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/**
 * 1. Google Maps breaks if `max-width: 100%` acts upon it; use their selector
 *    to remove the effects.
 * 2. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
.gm-style img,
img[width],
img[height] {
  /* [2] */
  max-width: none; }

/*------------------------------------*\
    #20-vendor VENDOR CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #30-global GLOBAL CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #30-global Demo Bootstrap
\*------------------------------------*/
.placeholder {
  background-color: #ddd;
  border: 1px solid #ccc;
  width: 100%;
  padding-top: 100%; }

.demo__background--blue {
  background-color: #224ff6; }

.full_width {
  width: 100%; }

/*------------------------------------*\
    #30-global Utilities
\*------------------------------------*/
/**
 * Global classes useful for overriding default Bootstrap properties, modifying
 * objects and stuff
**/
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", Helvetica, Arial, sans-serif; }

.visible {
  display: block !important; }

.hidden {
  display: none !important; }
  @media (max-width: 767.98px) {
    .hidden-mobile {
      display: none !important; } }

.line {
  display: block;
  width: 100%;
  float: left; }

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

.no-max-width {
  max-width: none; }

.margin-top--small {
  margin-top: 1.42857rem; }

.margin-top--medium {
  margin-top: 4.64286rem; }

.margin-top--large {
  margin-top: 6.07143rem; }

.margin-left--small {
  margin-left: 1.42857rem; }

@media (max-width: 767.98px) {
  .display-none-mobile {
    display: none; } }

.pb--large {
  padding-bottom: 42px; }

.container.with-fullpage .wpb_wrapper > .row {
  height: 80vh; }
  .container.with-fullpage .wpb_wrapper > .row > div[class^="col"] {
    display: flex;
    align-items: center; }

.woocommerce form div[class^="col-"] {
  max-width: none;
  padding: 0; }

.hide-on-mobile {
  visibility: visible; }

@media (max-width: 991.98px) {
  .hide-on-mobile {
    visibility: hidden; } }

.show-on-mobile {
  visibility: hidden;
  width: 0;
  height: 0; }

@media (max-width: 991.98px) {
  .show-on-mobile {
    visibility: visible; } }

html.fp-enabled .wrap.container-fluid, html.fp-enabled .wrap.container-sm, html.fp-enabled .wrap.container-md, html.fp-enabled .wrap.container-lg, html.fp-enabled .wrap.container-xl {
  position: relative;
  z-index: 2; }

html.fp-enabled .site-footer {
  position: relative;
  z-index: 3;
  margin-top: -19.78571rem; }

html.fp-enabled .fp-tableCell > div {
  float: left; }

/*-----------------------------------------*\
    #30-global WordPress Generated Classes
\*-----------------------------------------*/
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto; }

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto; }

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto; }

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 0.5rem; }
  .alignright {
    float: right;
    margin-left: 0.5rem; } }

.main {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.sidebar {
  flex: 0 0 25%;
  max-width: 25%; }

/*-----------------------------------------*\
    #30-global Comments
\*-----------------------------------------*/
.comment-list {
  padding-left: 0;
  list-style: none; }

.comment-list ol {
  list-style: none; }

/*-----------------------------------------*\
    #30-global Search Form
\*-----------------------------------------*/
.search-form label {
  font-weight: normal; }

.vc_single_image-wrapper img {
  max-width: 100%; }

/*------------------------------------*\
    #50-atoms ATOMS CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #50-atoms logo
\*------------------------------------*/
.brand__logo {
  width: 145px;
  height: auto;
  transition: all 0.3s ease-in-out; }

/*------------------------------------*\
    #50-atom icons
\*------------------------------------*/
.icon-left {
  padding-top: 0.28571rem;
  padding-right: 0;
  padding-bottom: 0.28571rem;
  padding-left: 2.28571rem; }

.icon-right {
  padding-top: 0.28571rem;
  padding-right: 2.28571rem;
  padding-bottom: 0.28571rem;
  padding-left: 0; }

.icon-alone-big {
  width: 0;
  height: 0;
  padding-left: 3.57143rem;
  padding-top: 3.57143rem;
  display: inline-block;
  margin-left: 1.71429rem;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 767.98px) {
    .icon-alone-big {
      margin-left: 0.85714rem;
      margin-right: 0.85714rem; } }
  .icon-alone-big:hover {
    opacity: .6; }
  .icon-alone-big a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0; }

.icon-newsletter {
  background: url("../../assets/images/icon-newsletter.svg") no-repeat left center;
  background-size: 24px; }

.icon-user {
  background: url("../../assets/images/icon-user.svg") no-repeat left center;
  background-size: 24px; }

.icon-cart {
  background: url("../../assets/images/icon-cart.svg") no-repeat left center;
  background-size: 24px; }
  .icon-cart.icon-right {
    background: url("../../assets/images/icon-cart.svg") no-repeat right center; }

.icon-facebook {
  background: url("../../assets/images/icon-facebook.svg") no-repeat center;
  background-size: 50px; }

.icon-instagram {
  background: url("../../assets/images/icon-instagram.svg") no-repeat center;
  background-size: 50px; }

.icon-twitter {
  background: url("../../assets/images/icon-twitter.svg") no-repeat center;
  background-size: 50px; }

.icon-pinterest {
  background: url("../../assets/images/icon-pinterest.svg") no-repeat center;
  background-size: 50px; }

/*------------------------------------*\
    #50-atom text
\*------------------------------------*/
.text--red {
  color: #ce3321; }

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

.text--centered {
  text-align: center;
  display: inline-block;
  width: 100%; }

/*------------------------------------*\
    #50-atom helpers
\*------------------------------------*/
.dropdown-arrow {
  position: relative;
  padding-right: 1.14286rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .dropdown-arrow.active {
    color: #ce3321; }
    .dropdown-arrow.active a {
      color: #ce3321; }
    .dropdown-arrow.active::before {
      color: #1b1b1b; }
    .dropdown-arrow.active::after {
      transform: rotate(90deg); }
  .dropdown-arrow::after {
    position: absolute;
    top: calc(50% - 0.28571rem/2);
    right: 0.35714rem;
    content: '';
    border-top: 0.28571rem solid #000000;
    border-bottom: 0.28571rem solid transparent;
    border-left: 0.28571rem solid transparent;
    border-right: 0.28571rem solid transparent;
    transform-origin: 50% 25%;
    transition: all 0.3s ease-in-out; }

.pull-right {
  float: right; }

.wrapper {
  width: 100%; }

/*------------------------------------*\
    #50-atom video
\*------------------------------------*/
.video {
  height: auto;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center; }
  @media (min-width: 1200px) {
    .video {
      height: 46.28571rem; } }
  .video__file {
    width: 100%;
    display: inline-block; }
    @media (min-width: 1200px) {
      .video__file {
        width: 92.85714rem; } }
  .video video {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important; }

/*------------------------------------*\
    #60-molecule text-header
\*------------------------------------*/
.text-header {
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 28px; }
  .text-header--white-contact {
    color: #ffffff;
    margin-top: 60px; }

.text-block {
  font-size: 16px;
  line-height: 20px;
  color: #5e5e5e; }

/*------------------------------------*\
    #50-atom page-header
\*------------------------------------*/
.page-header h1, .page-header h2, .page-header h3, .page-header h4, .page-header h5 {
  color: #000000; }

.page-header h1 {
  font-size: 3rem; }

.page-header h2 {
  font-size: 2.285rem; }

.page-header h3 {
  font-size: 2.142rem; }

.page-header h4 {
  font-size: 1.714rem; }

.page-header h5 {
  font-size: 1.285rem; }

/*------------------------------------*\
    #50-atoms toggles
\*------------------------------------*/
.toggles {
  width: 220px;
  height: 72px;
  position: relative; }
  .toggles-text {
    display: inline-block;
    width: 100%; }
  .toggles__toggle {
    border-radius: 50%;
    background: #fff;
    float: left;
    margin-right: 1.57143rem;
    margin-top: 1.42857rem;
    margin-bottom: 2.78571rem;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease-in-out; }
    .toggles__toggle.size--normal {
      width: 4.78571rem;
      height: 4.78571rem;
      visibility: hidden;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transform: translateX(-100%);
      transition: all 0.3s ease-in-out; }
      .toggles__toggle.size--normal.active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible; }
    .toggles__toggle.size--bigger {
      width: 6.07143rem;
      height: 6.07143rem;
      cursor: pointer; }
      .toggles__toggle.size--bigger img {
        filter: grayscale(100%);
        transition: all 0.3s ease-in-out; }
      .toggles__toggle.size--bigger.active img {
        filter: grayscale(0); }
      .toggles__toggle.size--bigger:not(.active):hover img {
        filter: grayscale(50%); }
    .toggles__toggle.gunmetal {
      background: #686873;
      box-shadow: 0 0 0 1px #686873; }
    .toggles__toggle.sandstorm {
      background: #d3c9c7;
      box-shadow: 0 0 0 1px #d3c9c7; }
    .toggles__toggle.ghost {
      background: #ffffff;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); }

/*------------------------------------*\
    #50-atoms Button
\*------------------------------------*/
.button {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  box-sizing: border-box;
  display: table;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  font-size: 0.92857rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  width: 165px;
  height: 45px;
  position: relative;
  text-decoration: none; }
  .button p, .button a {
    color: #000000;
    margin-top: 13px; }
  .button--red {
    background-color: #d12d28; }
    .button--red a {
      color: #ffffff; }
  .button--silver {
    background-color: #d8d8d8; }
    .button--silver a {
      color: #000000; }
  .button--color-choose {
    border-color: #000000;
    background-clip: content-box;
    padding: 0.14286rem; }
    .button--color-choose--sandstorm {
      background-color: #d3c9c7; }
    .button--color-choose--gunmetal {
      background-color: #70717d; }
      .button--color-choose--gunmetal a {
        color: #ffffff; }
  .button:hover, .button:visited, .button:active, .button:link {
    text-decoration: none;
    cursor: pointer; }

input[type=submit].btn, .btn {
  display: inline-block;
  overflow: hidden;
  height: 3.21429rem;
  line-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out; }
  input[type=submit].btn--empty, .btn--empty {
    background: transparent;
    border: 0.07143rem solid #d8d8d8;
    color: #000000; }
    input[type=submit].btn--empty:hover, .btn--empty:hover {
      background: #d8d8d8;
      color: #000000; }
    input[type=submit].btn--empty--alt, .btn--empty--alt {
      border: 0.07143rem solid transparent; }
  input[type=submit].btn--red, .btn--red {
    background: #d12d28;
    border: 1px solid #d12d28;
    color: #ffffff; }
    input[type=submit].btn--red:hover, .btn--red:hover {
      background: #fff;
      color: #d12d28; }
  input[type=submit].btn:hover, .btn:hover {
    text-decoration: none; }

input[type=submit] {
  display: inline-block;
  height: 3.21429rem;
  line-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  background: transparent;
  border: 1px solid #d8d8d8;
  color: #000000; }
  input[type=submit]:hover {
    background: #d8d8d8;
    color: #000000; }

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #d12d28; }
  .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #d12d28; }

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  border-radius: 0; }

#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: table-cell;
  vertical-align: middle;
  font-size: 13px;
  font-size: 0.92857rem;
  line-height: 1; }

p.return-to-shop {
  display: table; }

a.button.wc-backward {
  display: table-cell;
  vertical-align: middle; }

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #d12d28; }

a.wc-forward, a.button {
  line-height: 1.85714rem !important; }

/*------------------------------------*\
    #50-atoms input
\*------------------------------------*/
.input--text input[type=text] {
  height: 3.21429rem;
  border: 1px solid #d8d8d8;
  width: calc(100% - 28px);
  padding: 0 1rem; }

.input-height {
  line-height: 3.21429rem;
  display: inline-block; }

#lang_sel {
  width: 100%;
  margin-bottom: 2.64286rem; }
  #lang_sel > ul > li {
    width: 100%;
    height: 3.21429rem; }
    #lang_sel > ul > li:first-of-type::after {
      width: 0;
      height: 0;
      border-top: 0.28571rem solid #000000;
      border-bottom: 4px solid transparent;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      position: absolute;
      top: 50%;
      margin-top: -0.09524rem;
      right: 1.42857rem;
      content: ''; }
    #lang_sel > ul > li:first-of-type::before {
      position: absolute;
      top: 0;
      right: 44px;
      bottom: 0;
      width: 1px;
      background: #d8d8d8;
      content: ''; }
    #lang_sel > ul > li a {
      height: 3.21429rem;
      font-size: 14px;
      font-size: 1rem;
      line-height: 3.21429rem;
      width: 100%;
      color: #000000;
      padding: 0 1rem; }
      #lang_sel > ul > li a.lang_sel_sel {
        background: #ffffff; }
    #lang_sel > ul > li ul {
      width: 100%;
      top: 3.14286rem; }
      #lang_sel > ul > li ul li {
        width: 100%; }
        #lang_sel > ul > li ul li a:not(:last-child) {
          border-bottom: none; }

input[type=text], input[type=number], input[type=password], input[type=email] {
  width: 100%;
  box-sizing: border-box;
  padding: 0 1.14286rem;
  height: 3.21429rem;
  border: 1px solid #d8d8d8; }

input[disabled] {
  background: #ffffff; }

/*------------------------------------*\
    #50-atoms textarea
\*------------------------------------*/
.textarea, textarea {
  border: 1px solid #d8d8d8;
  height: 11.21429rem;
  margin-bottom: 0.42857rem;
  padding: 16px; }
  .textarea--full, textarea--full {
    width: 100%; }
  .textarea-desc, textarea-desc {
    display: inline-block;
    margin-top: 2.5rem;
    margin-bottom: 1.07143rem; }

.contact-form textarea {
  width: 100%; }

/*------------------------------------*\
    #50-atoms select-box
\*------------------------------------*/
.select-box {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  background-color: #ffffff;
  width: 360px;
  height: 45px;
  padding-left: 20px;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer; }
  .select-box--full-width {
    width: 100%; }

.select-heading {
  font-size: 17.99px;
  font-size: 1.285rem;
  line-height: 2.142rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  color: #000000; }

label.select {
  position: relative;
  display: inline-block;
  height: 3.21429rem; }
  label.select::after {
    width: 0;
    height: 0;
    border-top: 0.28571rem solid #000000;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    top: 50%;
    margin-top: -0.09524rem;
    right: 1.42857rem;
    content: ''; }
  label.select--full-width {
    width: 100%; }
  label.select--alt::before {
    position: absolute;
    top: 0;
    right: 44px;
    bottom: 0;
    width: 1px;
    background: #d8d8d8;
    content: ''; }

/*------------------------------------*\
    #50-atoms checkbox
\*------------------------------------*/
.checkbox input {
  display: none; }
  .checkbox input:checked + label::after {
    transform: scale(1);
    opacity: 1;
    visibility: visible; }

.checkbox label {
  position: relative;
  padding-left: 42px;
  height: 1.71429rem;
  display: inline-block;
  font-weight: 400;
  cursor: pointer;
  font-size: 15.988px;
  font-size: 1.142rem;
  line-height: 1.285rem; }
  .checkbox label::before, .checkbox label::after {
    position: absolute;
    display: block;
    content: ''; }
  .checkbox label::before {
    left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    border: 1px solid #d5d5d5; }
  .checkbox label::after {
    left: 3px;
    top: 6px;
    width: 18px;
    height: 18px;
    visibility: hidden;
    transform: scale(0.1);
    opacity: 0;
    background: #d5d5d5;
    transition: all .3s ease-in-out; }
  .checkbox label:hover::after {
    opacity: .5;
    transform: scale(0.5);
    visibility: visible; }

/*------------------------------------*\
    #60-molecules MOLECULES CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #60-molecule menu
\*------------------------------------*/
.menu {
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  display: block; }
  .menu-container {
    position: relative; }
    .menu-container--main {
      height: 5.5rem;
      float: left;
      width: 100%; }
  .menu-footer a {
    font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
    color: #ffffff; }
  .menu a:active, .menu a:focus {
    text-decoration: none; }
  .menu--horizontal .menu-item, .menu--vertical .menu-item {
    display: inline-block; }
  .menu--vertical__item {
    float: left;
    clear: left;
    font-size: 15.988px;
    font-size: 1.142rem;
    line-height: 2.142rem; }
  .menu--primary a, .menu--user a {
    color: #000000;
    transition: all 0.3s ease-in-out; }
    .menu--primary a:hover, .menu--user a:hover {
      color: #ce3321;
      text-decoration: none; }
  .menu--primary {
    text-transform: uppercase;
    margin-top: 0.71429rem;
    font-size: 23.996px;
    font-size: 1.714rem;
    line-height: 2rem;
    width: 100%;
    transition: all 0.3s ease-in-out; }
    .menu--primary li {
      margin-top: 0.71429rem;
      margin-right: 1.78571rem;
      margin-bottom: 0;
      margin-left: 0;
      z-index: 10; }
      .menu--primary li.js-active, .menu--primary li.active {
        color: #ce3321; }
        .menu--primary li.js-active > a, .menu--primary li.active > a {
          color: #ce3321; }
  .menu--user {
    text-transform: uppercase;
    margin-top: 2.14286rem;
    font-size: 15.988px;
    font-size: 1.142rem;
    line-height: 1.90333rem;
    transition: all 0.3s ease-in-out; }
    .menu--user li {
      margin-left: 2.28571rem;
      transition: all 0.3s ease-in-out; }
      .menu--user li:hover {
        color: #ce3321; }
        .menu--user li:hover::before {
          color: #000000; }
        .menu--user li:hover a {
          color: #ce3321; }
      .menu--user li.has-separator::before {
        position: absolute;
        content: '|';
        left: -20px;
        top: -2px; }

.mobile-menu-button {
  display: none; }

@media (max-width: 1199.98px) {
  .icon-newsletter, .icon-user {
    width: 0;
    overflow: hidden; }
  .icon-newsletter, .icon-user, .dropdown-arrow {
    display: inline-block;
    height: 24px;
    padding-top: 0;
    padding-bottom: 0; }
  .dropdown-arrow::before {
    display: none; } }

@media (max-width: 991.98px) {
  .mobile-menu-button {
    display: block;
    position: fixed;
    top: 1.07143rem;
    left: 0.71429rem;
    z-index: 101;
    width: 3.42857rem;
    height: 3.42857rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease-in-out; }
    .mobile-menu-button:active, .mobile-menu-button:focus {
      outline: none; }
    .mobile-menu-button span {
      position: absolute;
      top: 23px;
      left: 12px;
      width: 24px;
      background: #1b1b1b;
      height: 2px;
      display: block;
      transition: all 0.3s ease-in-out; }
      .mobile-menu-button span::before, .mobile-menu-button span::after {
        display: block;
        background: #1b1b1b;
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        transition: all 0.3s ease-in-out; }
      .mobile-menu-button span::before {
        top: -6px; }
      .mobile-menu-button span::after {
        bottom: -6px; }
    .mobile-menu-button.active span {
      transform: rotate(180deg); }
      .mobile-menu-button.active span::before, .mobile-menu-button.active span::after {
        left: 11px;
        width: 14px; }
      .mobile-menu-button.active span::before {
        top: -5px;
        transform: rotate(45deg); }
      .mobile-menu-button.active span::after {
        bottom: -5px;
        transform: rotate(-45deg); }
  .menu--primary {
    display: none; }
  .mobile-menu {
    width: 70%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 550;
    background: #ffffff;
    transform: translateX(-100%);
    box-shadow: 0 0 0 transparent;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out; }
    .mobile-menu.active {
      transform: translateX(0);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
    .mobile-menu .mobile-menu-list {
      display: block;
      float: left;
      width: 100%; }
      .mobile-menu .mobile-menu-list li {
        display: block;
        width: 100%; }
        .mobile-menu .mobile-menu-list li a {
          display: block;
          height: 48px;
          line-height: 48px;
          padding: 0 16px;
          color: #1b1b1b;
          overflow: hidden;
          position: relative;
          transition: all 0.6s ease-in-out; }
          .mobile-menu .mobile-menu-list li a::before {
            position: absolute;
            content: '';
            width: 300px;
            height: 300px;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            margin-left: -150px;
            margin-top: -150px;
            background: #70717d;
            transform: scale(0);
            opacity: 1;
            transition: all 0.6s ease-in-out; }
          .mobile-menu .mobile-menu-list li a:focus, .mobile-menu .mobile-menu-list li a:active {
            text-decoration: none;
            background: #d8d8d8; }
            .mobile-menu .mobile-menu-list li a:focus::before, .mobile-menu .mobile-menu-list li a:active::before {
              transform: scale(1.1);
              opacity: 0; }
    .mobile-menu .sub-menu {
      visibility: visible;
      opacity: 1;
      transform: none;
      position: static;
      font-weight: bold;
      font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif; }
  @keyframes slideShow {
    0% {
      background: url("../../assets/images/mobile-tops/menu-a.jpg") no-repeat center;
      background-size: cover; }
    25% {
      background: url("../../assets/images/mobile-tops/menu-b.jpg") no-repeat center;
      background-size: cover; }
    50% {
      background: url("../../assets/images/mobile-tops/menu-c.jpg") no-repeat center;
      background-size: cover; }
    75% {
      background: url("../../assets/images/mobile-tops/menu-d.jpg") no-repeat center;
      background-size: cover; }
    100% {
      background: url("../../assets/images/mobile-tops/menu-a.jpg") no-repeat center;
      background-size: cover; } }
    .mobile-menu::before {
      content: '';
      position: static;
      float: left;
      display: inline-block;
      width: 100%;
      height: 180px;
      animation: slideShow 16s infinite; }
  .mobile-menu-layer {
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 540;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden; }
    .mobile-menu-layer.active {
      opacity: 1;
      visibility: visible; }
  .menu--user .menu-item:not(.js-show-cart) {
    display: none; }
  .icon-user {
    position: absolute;
    top: 132px;
    height: 48px;
    line-height: 48px;
    padding: 0 16px 0 72px;
    color: #1b1b1b;
    background: rgba(255, 255, 255, 0.15) url("../../assets/images/icon-user.svg") no-repeat 16px 50%;
    font-weight: bold;
    width: 100%;
    left: 0;
    backdrop-filter: blur(8px);
    overflow: hidden; }
    .icon-user::before {
      position: absolute;
      content: '';
      width: 300px;
      height: 300px;
      border-radius: 50%;
      left: 50%;
      top: 50%;
      margin-left: -150px;
      margin-top: -150px;
      background: #70717d;
      transform: scale(0);
      opacity: .6;
      transition: all 0.6s ease-in-out; }
    .icon-user:focus, .icon-user:active {
      text-decoration: none;
      color: #1b1b1b; }
      .icon-user:focus::before, .icon-user:active::before {
        transform: scale(1.1);
        opacity: 0; }
    .icon-user::after {
      content: '';
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 6px solid transparent;
      border-left: 6px solid #1b1b1b;
      width: 0;
      height: 0;
      position: absolute;
      right: 10px;
      top: 50%;
      margin-top: -6px; }
  .icon-newsletter {
    position: fixed;
    z-index: 103;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    overflow: hidden;
    background: url("../../assets/images/icon-newsletter.svg") no-repeat center;
    background-size: 24px;
    color: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); }
    .icon-newsletter:focus, .icon-newsletter:active {
      color: transparent; }
  #wpadminbar {
    display: none !important; }
  .js-show-cart {
    position: fixed;
    bottom: 24px;
    right: 24px;
    border-radius: 50% 50% 13px 50%;
    z-index: 160;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #d12d28; }
    .js-show-cart::before, .js-show-cart::after {
      display: none; }
    .js-show-cart a {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: url("../../assets/images/icon-cart.svg") no-repeat center;
      filter: invert(1);
      background-size: 24px;
      color: transparent;
      padding: 0; }
    .js-show-cart .count {
      display: block;
      width: 24px;
      height: 24px;
      position: absolute;
      bottom: 1px;
      right: 1px;
      border-radius: 50%;
      background: #ffffff;
      color: #d12d28;
      line-height: 25px;
      text-align: center;
      font-weight: 700;
      font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
      font-size: 0.85714rem; } }

/*------------------------------------*\
    #60-molecule sub
\*------------------------------------*/
.sub-menu {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.42857rem;
  text-transform: none;
  position: absolute;
  width: 100%;
  left: 0;
  margin-bottom: 0;
  margin-left: 0;
  bottom: 0.35714rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.71429rem);
  transition: all 0.3s ease-in-out; }
  .sub-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

/*------------------------------------*\
    #60-molecule comparer
\*------------------------------------*/
.comparer__compare {
  width: 100%;
  position: relative;
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #000000; }
  .comparer__compare-slide {
    height: 46.28571rem !important; }
  .comparer__compare-text {
    transition: all linear .25s;
    position: absolute;
    bottom: 2.64286rem;
    z-index: 20;
    font-size: 23.996px;
    font-size: 1.714rem;
    line-height: 1.714rem; }
    .comparer__compare-text.bigger {
      font-size: 29.988px;
      font-size: 2.142rem;
      line-height: 2.142rem; }
    .comparer__compare-text.popular {
      left: 0; }
    .comparer__compare-text.bro {
      right: 0; }
  .comparer__compare-toggles {
    position: absolute;
    top: 4.07143rem;
    left: 0;
    z-index: 21;
    font-size: 17.99px;
    font-size: 1.285rem;
    line-height: 1.714rem; }

@media (max-width: 991.98px) {
  .comparer {
    display: none; } }

/*------------------------------------*\
    #60-molecule section
\*------------------------------------*/
.section--black {
  background-color: #000000; }

.section-heading__text {
  text-align: center;
  font-size: 29.988px;
  font-size: 2.142rem;
  line-height: 2.35714rem;
  color: #000000;
  text-transform: uppercase;
  padding: 4.71429rem 0; }

@media (max-width: 991.98px) {
  .section-heading__text {
    padding: 1.71429rem 0; } }

/*------------------------------------*\
    #60-molecule features
\*------------------------------------*/
.features {
  padding-bottom: 2.28571rem; }
  @media (min-width: 768px) {
    .features {
      padding-bottom: 15.14286rem; } }
  .features__images, .features__picker {
    margin-top: 6.07143rem; }
  .features__images {
    height: 70vw;
    margin-top: 1.71429rem;
    position: relative; }
    @media (min-width: 992px) {
      .features__images {
        width: 100%;
        height: 26.42857rem; } }
    .features__images-img {
      position: absolute;
      top: 0;
      left: 0;
      visibility: hidden;
      transform: translateX(-8.57143rem);
      opacity: 0;
      width: 100%;
      transition: all 0.3s ease-in-out; }
      .features__images-img.active {
        visibility: visible;
        transform: translateX(0);
        opacity: 1; }
  .features__picker {
    list-style: none;
    margin-left: 0;
    padding: 0;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      .features__picker {
        column-count: 2;
        margin-top: 0; } }
    .features__picker-item {
      font-size: 15.988px;
      font-size: 1.142rem;
      line-height: 1.90333rem;
      cursor: pointer;
      color: #5e5e5e;
      font-family: "Oswald", Helvetica, Arial, sans-serif;
      margin-bottom: 0.85714rem;
      transition: all 0.3s ease-in-out; }
      @media (max-width: 991.98px) {
        .features__picker-item {
          margin: 0;
          width: 100%;
          font-size: 12px;
          font-size: 0.85714rem;
          line-height: 1.42857rem;
          text-align: center;
          display: inline-block;
          padding: 0.28571rem 0; } }
      .features__picker-item:hover, .features__picker-item.active {
        color: #ce3321; }

/*------------------------------------*\
    #60-molecule text-container
\*------------------------------------*/
@media (max-width: 767.98px) {
  .text-container {
    position: static;
    transform: none;
    top: 0; } }

.text-container {
  display: table-cell;
  vertical-align: middle; }
  @media (max-width: 767.98px) {
    .text-container {
      display: block; } }

.same-height-garment {
  margin-bottom: 50px;
  margin-top: 50px;
  display: table; }

/*------------------------------------*\
    #60-molecule modal
\*------------------------------------*/
.modal-layer, .modal-box {
  position: fixed;
  opacity: 0;
  visibility: hidden; }

.modal-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  z-index: 200;
  transition: all 0.6s ease-in-out; }
  .modal-layer.active {
    opacity: .75;
    visibility: visible; }

.modal-box {
  width: 750px;
  height: 608px;
  top: 50%;
  left: 50%;
  margin-left: -375px;
  margin-top: -304px;
  background: #ffffff url("../../assets/images/dotted-world.png") no-repeat top left;
  z-index: 201;
  transform: scale(0.4) perspective(45px) rotateX(1deg);
  transition: all 0.6s ease-in-out; }
  .modal-box__close {
    width: 1.71429rem;
    height: 1.71429rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: url("../../assets/images/modal-close.png") no-repeat center;
    opacity: 0;
    transition: all 0.6s ease-in-out; }
    .modal-box__close:hover {
      transform: rotate(90deg); }
    .modal-box__close:focus {
      outline: none; }
  .modal-box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotateX(0); }
    .modal-box.active .modal-box__close {
      top: -2.35714rem;
      right: -2.5rem;
      opacity: 1; }

.modal__body {
  border: 1px solid #000000;
  position: absolute;
  z-index: 52;
  top: 2.14286rem;
  left: 2.14286rem;
  bottom: 2.14286rem;
  right: 2.14286rem;
  padding: 4.07143rem 4.78571rem; }
  .modal__body ul {
    margin: 0 0 3.21429rem 1.5rem;
    padding: 0;
    font-size: 1.142rem;
    list-style: square; }
    .modal__body ul li {
      font-size: 16px;
      font-size: 1.14286rem;
      line-height: 2.285rem; }
  .modal__body .info {
    font-size: 14px;
    font-size: 1rem;
    line-height: 2.285rem; }
  .modal__body .select {
    margin-bottom: 2.64286rem;
    width: 100%; }
    .modal__body .select select {
      width: 100%; }

.modal__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: center; }
  .modal__footer .btn {
    display: inline-block;
    line-height: 2.92857rem;
    text-align: center;
    margin-bottom: 2.35714rem; }
    .modal__footer .btn a {
      display: block;
      width: 100%;
      height: 3.21429rem; }

@media (max-width: 991.98px) {
  .modal-box {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-top: 0; }
    .modal-box.active .modal-box__close {
      width: 3.42857rem;
      height: 3.42857rem;
      z-index: 53;
      top: 0;
      right: 0;
      background: #1b1b1b url("../../assets/images/modal-close.png") no-repeat center; }
  .modal__body {
    top: 1.07143rem;
    bottom: 1.07143rem;
    left: 1.07143rem;
    right: 1.07143rem;
    padding: 1.78571rem 0.71429rem;
    border: none; }
    .modal__body ul {
      margin: 0 0 1.14286rem 1.71429rem; }
    .modal__body ul li, .modal__body .info {
      font-size: 14px;
      line-height: 22px; } }

/*------------------------------------*\
    #60-molecule cart
\*------------------------------------*/
.cart-ddown {
  position: absolute;
  top: calc(100% + 0.85714rem);
  right: 0;
  border: 1px solid #d8d8d8;
  width: 39.28571rem;
  background: #ffffff;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6);
  transform-origin: 100% 0;
  font-weight: 700;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out; }
  .cart-ddown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  .cart-ddown::before {
    width: 0;
    height: 0;
    border-top: 1rem solid transparent;
    border-left: 0.78571rem solid transparent;
    border-right: 0.78571rem solid transparent;
    border-bottom: 1rem solid #d8d8d8;
    position: absolute;
    content: '';
    top: -2rem;
    right: 3rem; }
  .cart-ddown__items {
    width: 100%;
    display: inline-block;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden; }
  .cart-ddown__empty {
    display: inline-block;
    text-align: center;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: none;
    font-weight: normal;
    font-style: italic;
    padding: 1.71429rem 0; }
  .cart-ddown__list {
    width: 100%; }
    .cart-ddown__list-item {
      width: calc(100% - 2.85714rem);
      border-bottom: 1px dashed #d8d8d8;
      height: 15rem;
      position: relative;
      margin: 0 1.42857rem 1.42857rem 1.42857rem; }
      .cart-ddown__list-item-remove {
        width: 1.71429rem;
        height: 1.71429rem;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
        background: transparent;
        z-index: 2; }
        .cart-ddown__list-item-remove::before, .cart-ddown__list-item-remove::after {
          position: absolute;
          top: 0; }
        .cart-ddown__list-item-remove::before {
          width: 1.71429rem;
          height: 1.71429rem;
          background: url("../../assets/images/item-remove.png") no-repeat center;
          z-index: 2;
          content: '';
          right: 0;
          transition: all 0.3s ease-in-out; }
        .cart-ddown__list-item-remove::after {
          height: 1.71429rem;
          width: 8.85714rem;
          right: 1px;
          font-size: 11.004px;
          line-height: 1.57143rem;
          text-align: center;
          background: #d12d28;
          padding-right: 1.71429rem;
          border-radius: 0.85714rem;
          color: #ffffff;
          content: attr(data-title);
          opacity: 0;
          visibility: hidden;
          z-index: 1;
          transform-origin: 0 50%;
          transition: all 0.3s ease-in-out; }
        .cart-ddown__list-item-remove:hover {
          opacity: 1; }
          .cart-ddown__list-item-remove:hover::before {
            background: url("../../assets/images/item-remove--hover.png") no-repeat center; }
          .cart-ddown__list-item-remove:hover::after {
            opacity: 1;
            visibility: visible; }
      .cart-ddown__list-item img {
        width: 10.35714rem;
        height: auto;
        position: absolute;
        top: 1.42857rem;
        left: 0; }
      .cart-ddown__list-item-details {
        width: 24.28571rem;
        position: absolute;
        top: 1.42857rem;
        right: 0;
        color: #000000; }
        .cart-ddown__list-item-details__config {
          font-size: 14px;
          font-size: 1rem;
          line-height: 1.66667rem; }
        .cart-ddown__list-item-details__price {
          font-size: 24px;
          font-size: 1.71429rem;
          line-height: 2.85714rem;
          margin: 0.71429rem 0; }
        .cart-ddown__list-item-details__rating {
          margin-bottom: 1.42857rem; }
          .cart-ddown__list-item-details__rating a {
            color: #000000;
            font-size: 14px;
            text-decoration: underline; }
        .cart-ddown__list-item-details__count > * {
          float: left; }
        .cart-ddown__list-item-details__count input[type=text], .cart-ddown__list-item-details__count input[type=number] {
          width: 3.42857rem;
          margin-right: 40px;
          padding: 0 5px;
          text-align: center;
          height: 3.21429rem; }
        .cart-ddown__list-item-details__count .input-height {
          width: 8.57143rem; }
        .cart-ddown__list-item-details__count .variant {
          line-height: 1.142rem;
          font-size: 1rem;
          margin-top: 0.42857rem; }
    .cart-ddown__list .stars {
      float: left;
      margin-right: 0.5rem;
      width: 5rem; }
      .cart-ddown__list .stars__wrap {
        height: 12px;
        overflow: hidden;
        height: 12px;
        margin: 0.28571rem 0; }
      .cart-ddown__list .stars__line {
        width: 5rem; }
      .cart-ddown__list .stars__star {
        display: block;
        float: left;
        width: 12px;
        height: 12px;
        margin-right: 2px;
        background: url("../../assets/images/star.png") no-repeat center; }
  .cart-ddown__total {
    padding: 0 1.42857rem;
    width: 100%;
    text-align: right;
    color: #000000; }
    .cart-ddown__total .final-price {
      font-size: 2.142rem; }
  .cart-ddown__buttons {
    width: 100%;
    text-align: right;
    margin-top: 2.5rem;
    padding: 0 1.42857rem 1.42857rem 1.42857rem; }
    .cart-ddown__buttons .btn {
      margin-left: 1.85714rem; }

/*------------------------------------*\
    #60-molecule stars
\*------------------------------------*/
.stars-rating {
  float: left; }
  .stars-rating--big .star {
    display: inline-block;
    width: 23px;
    height: 23px; }
    .stars-rating--big .star--full {
      background: url("../../assets/images/star-big.png") no-repeat top center; }
    .stars-rating--big .star--empty {
      background: url("../../assets/images/star-big--empty.png") no-repeat top center; }

/*------------------------------------*\
    #60-molecule rating
\*------------------------------------*/
.rating {
  float: left; }
  .rating input {
    display: none; }
    .rating input:checked ~ .star::before {
      background: url("../../assets/images/star-big.png") no-repeat top center; }
  .rating > .star {
    float: right;
    position: relative;
    cursor: pointer; }
    .rating > .star::before, .rating > .star::after {
      transition: all 0.3s ease-in-out; }
    .rating > .star::before {
      content: '';
      margin: 0.14286rem;
      display: inline-block;
      width: 23px;
      height: 23px;
      background: url("../../assets/images/star-big--empty.png") no-repeat top center; }
    .rating > .star::after {
      content: attr(data-title);
      position: absolute;
      opacity: 0;
      visibility: hidden;
      bottom: calc(100% + 1px);
      left: 0.21429rem;
      width: 5.85714rem;
      height: 1.57143rem;
      padding-top: 0.07143rem;
      text-align: center;
      background: url("../../assets/images/rating-tip.png") no-repeat top left;
      transform: translateY(5px);
      font-size: 12px;
      font-size: 0.85714rem;
      line-height: 1.42857rem; }
    .rating > .star:hover::before {
      background: url("../../assets/images/star-big.png") no-repeat top center; }
    .rating > .star:hover::after {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
    .rating > .star:hover ~ .star::before {
      background: url("../../assets/images/star-big.png") no-repeat top center; }

/*------------------------------------*\
    #60-molecule Scroll
\*------------------------------------*/
.scroll-please {
  display: none;
  position: fixed;
  z-index: 50;
  bottom: 0;
  width: 9.14286rem;
  min-height: 6.57143rem;
  transform: translateX(-50%);
  left: 50%;
  cursor: pointer;
  text-align: center;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  background-color: #d12d28;
  color: #ffffff;
  padding: 1.07143rem;
  border-radius: 0.28571rem 0.28571rem 0 0;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease-in-out; }
  .scroll-please.hidden-by-js {
    transform: translateX(-50%) translateY(100%);
    opacity: 0; }
  .scroll-please::before, .scroll-please::after {
    position: absolute;
    content: '';
    left: 50%;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-in-out; }
  .scroll-please::before {
    width: 1.71429rem;
    height: 1.71429rem;
    bottom: 1.71429rem;
    transform: translateX(-50%) rotate(45deg);
    border-right: 0.14286rem solid #ffffff;
    border-bottom: 0.14286rem solid #ffffff; }
  .scroll-please::after {
    bottom: 0;
    border-radius: 50%;
    width: 18.28571rem;
    height: 18.28571rem;
    transform: translateX(-50%) translateY(50%) scale(0);
    background-color: rgba(0, 0, 0, 0.1); }
  .scroll-please:hover::after {
    transform: translateX(-50%) translateY(50%) scale(1); }

/*------------------------------------*\
    #70-organisms ORGANISMS CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #70-organisms header
\*------------------------------------*/
.site-header {
  width: 100%;
  border-top: 0.35714rem solid #ce3321;
  padding: 2.42857rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 160px;
  background: #ffffff;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease-in-out; }
  .site-header--smaller {
    padding: 1.14286rem 0;
    height: 7.14286rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    border-top: none; }
    .site-header--smaller .brand__logo {
      width: 8.57143rem;
      height: auto; }
    .site-header--smaller .menu--primary {
      margin-top: -0.21429rem; }
    .site-header--smaller .menu-container--main {
      height: 4.35714rem; }
    .site-header--smaller .menu--user {
      margin-top: 1.14286rem; }

@media (max-width: 991.98px) {
  .site-header {
    padding: 0.85714rem 0;
    height: 78px;
    border-top: 0.35714rem solid #ce3321;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    overflow: hidden; }
    .site-header .brand__logo {
      width: 88px;
      position: fixed;
      z-index: 102;
      left: 50%;
      margin-left: -44px; } }

/*------------------------------------*\
    #70-organisms footer
\*------------------------------------*/
.site-footer {
  width: 100%;
  padding: 4.71429rem 0;
  background: #000000; }
  @media (max-width: 575.98px) {
    .site-footer {
      text-align: center; } }
  .site-footer .menu-heading {
    color: #ce3321;
    text-transform: uppercase;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 3.07143rem;
    padding-left: 0;
    font-size: 17.99px;
    font-size: 1.285rem;
    line-height: 2.14167rem;
    margin: 0; }
    .site-footer .menu-heading.hidden {
      display: none; }
  .site-footer .menu-item {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15.988px;
    font-size: 1.142rem;
    line-height: 2.142rem; }
    .site-footer .menu-item a {
      color: #fff; }
  .site-footer__sm {
    list-style: none;
    display: inline-block;
    float: right;
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 767.98px) {
      .site-footer__sm {
        margin-top: 30px;
        float: none;
        width: 100%;
        text-align: center; } }

@media (max-width: 991.98px) {
  .site-footer .menu-heading {
    text-align: center;
    padding-top: 2.28571rem;
    padding-bottom: 0; } }

/*------------------------------------*\
    #70-organisms contact-block
\*------------------------------------*/
.uppercase-text {
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700; }
  .uppercase-text--white-contact {
    color: #ffffff;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 46px; }
  .uppercase-text--red {
    color: #d12d28;
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 25px; }
  .uppercase-text--black {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    margin-top: 6px;
    margin-bottom: 6px; }

.p--black {
  color: #000000; }

/*------------------------------------*\
    #70-organisms single-product
\*------------------------------------*/
.uppercase-text--single-p {
  margin-top: 25px;
  margin-bottom: 16px;
  font-size: 18px;
  transition: all 0.3s ease-in-out; }

table.variations {
  display: none; }

.woocommerce-variation-price {
  margin: 15px 0; }
  .woocommerce-variation-price .price span.woocommerce-Price-amount.amount {
    color: #000000;
    font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700; }

.images__after-text {
  color: #ce3321;
  font-weight: 700;
  letter-spacing: -0.42px;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2rem;
  text-align: left; }

.sizing-chart {
  font-size: 1.142rem;
  font-weight: 700; }
  .sizing-chart a {
    color: #5e5e5e; }

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .quantity {
  display: none; }

.change-option {
  display: inline-block;
  margin: 5px; }

@media (max-width: 1199.98px) {
  .single_variation_wrap {
    text-align: center; }
  .button__group {
    text-align: center; }
  .select-box {
    width: 165px; }
  label.select {
    display: inherit; }
  .sizing-chart {
    text-align: center; } }

@media (max-width: 991.98px) {
  .select-box {
    width: 100%; }
  .sizing-chart {
    display: block;
    width: 100%;
    line-height: 48px;
    background: #d8d8d8; } }

/*------------------------------------*\
    #70-organisms newsletter
\*------------------------------------*/
.mymail-form-fields .mymail-wrapper.mymail-email-wrapper {
  width: 21.42857rem; }
  .mymail-form-fields .mymail-wrapper.mymail-email-wrapper label {
    font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    font-size: 1.14285rem;
    font-size: 1.14285rem/14pxrem;
    line-height: 1.7142rem;
    margin-top: 0.4287rem;
    margin-bottom: 0.4287rem; }
  .mymail-form-fields .mymail-wrapper.mymail-email-wrapper input#mymail-email-1 {
    border-style: solid;
    border-width: 1px;
    border-color: #d8d8d8;
    background-color: #ffffff;
    width: 25.71429rem;
    height: 2.5rem;
    padding-left: 1.5rem;
    display: inline-block; }
    .mymail-form-fields .mymail-wrapper.mymail-email-wrapper input#mymail-email-1:focus {
      outline: none; }

/*------------------------------------*\
    #70-organisms checkout
\*------------------------------------*/
.woocommerce form .form-row input.input-text {
  height: 3.21429rem;
  border: 1px solid #d8d8d8;
  padding: 0 0.9999rem; }

.form-row.form-row label {
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  font-size: 1.14285rem;
  font-size: 1.14285rem/14pxrem;
  line-height: 1.7142rem;
  margin-top: 0.4287rem;
  margin-bottom: 0.4287rem; }

.woocommerce h3 {
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  font-size: 1.28565rem;
  font-size: 1.28565rem/14pxrem;
  line-height: 1.7142rem;
  margin-top: 0.4287rem;
  margin-bottom: 0.4287rem; }

.woocommerce .product-name--name {
  color: #000000;
  font-size: 1.28565rem;
  font-size: 1.28565rem/14pxrem;
  line-height: 1.7142rem;
  text-transform: uppercase;
  font-family: "Oswald", Helvetica, Arial, sans-serif; }

.woocommerce textarea#order_comments {
  height: 7.14286rem;
  border: 1px solid #d8d8d8;
  padding: 0.9999rem; }

.woocommerce div#s2id_billing_country a.select2-choice {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  background-color: #ffffff;
  height: 3.21429rem;
  padding-left: 1.42845rem;
  padding-top: 0.57135rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0; }

.woocommerce-shipping-fields #ship-to-different-address {
  float: none !important; }

.woocommerce-shipping-fields #ship-to-different-address-checkbox {
  display: inline-block; }

.select2-drop-active {
  border: 1px solid #d8d8d8; }

/*------------------------------------*\
    #70-organisms my-account
\*------------------------------------*/
.woocommerce-MyAccount-navigation a {
  color: #000000;
  transition: all 0.3s ease-in-out; }
  .woocommerce-MyAccount-navigation a:hover {
    color: #ce3321;
    text-decoration: none; }

.woocommerce-MyAccount-navigation a {
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 28px; }

.woocommerce-MyAccount-navigation li {
  list-style-type: none; }

.woocommerce-MyAccount-navigation ul, .woocommerce-MyAccount-navigation ol, .woocommerce-MyAccount-navigation dd {
  margin-left: 0; }

/*------------------------------------*\
    #70-organisms opinion
\*------------------------------------*/
.opinion {
  border-top: 1px dashed #d8d8d8;
  padding-bottom: 2rem;
  padding-top: 3.42857rem; }
  .opinion:first-child {
    border-top: none; }
  @media (max-width: 575.98px) {
    .opinion__image {
      display: none; } }
  .opinion__details {
    background-position: right top;
    background-size: 100px auto;
    background-repeat: no-repeat; }
    @media (min-width: 576px) {
      .opinion__details {
        background-image: unset !important; } }
  .opinion__conf, .opinion__person, .opinion__desc {
    float: left;
    width: 100%; }
  .opinion__conf {
    font-family: "Oswald", Helvetica, Arial, sans-serif; }
  .opinion__person strong {
    display: inline-block;
    float: left;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-size: 1.71429rem;
    line-height: 3.857rem;
    margin-right: 1.85714rem;
    margin-top: 0.85714rem;
    text-transform: uppercase;
    color: #1b1b1b; }
  .opinion__person .stars-rating {
    margin-top: 1.85714rem; }
  .opinion__person .line {
    margin-bottom: 0.71429rem;
    font-size: 15.988px;
    font-size: 1.142rem;
    line-height: 1.90333rem; }
  .opinion__desc {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.66667rem;
    font-style: italic; }

/*------------------------------------*\
    #70-organisms WooCommerce
\*------------------------------------*/
.woocommerce-info::before {
  color: #d12d28; }

/*------------------------------------*\
    #80-templates TEMPLATES CLASSES
\*------------------------------------*/
/*------------------------------------*\
    #80-templates cart
\*------------------------------------*/
.woocommerce td.product-name dl.variation dd, .woocommerce td.product-name dl.variation dt {
  margin-bottom: 0.14286rem; }

.woocommerce-cart table.cart {
  margin-top: 5rem; }
  .woocommerce-cart table.cart .product-name a {
    color: #000000;
    font-size: 18px;
    font-size: 1.28571rem;
    line-height: 2.14286rem;
    text-transform: uppercase;
    font-family: "Oswald", Helvetica, Arial, sans-serif; }

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
  height: 3.21429rem;
  width: 8.57143rem; }

.woocommerce .quantity .qty {
  height: 3.21429rem;
  width: 5rem; }

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
  margin-bottom: 5rem; }

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
  width: 7.14286rem; }

.woocommerce td.product-name dl.variation {
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.woocommerce td.product-name dl.variation dt {
  color: #000000; }

/*------------------------------------*\
    #80-templates signin
\*------------------------------------*/
.login-banner {
  position: relative;
  height: 12.57143rem;
  margin-bottom: 4.78571rem; }
  .login-banner__img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -46.42857rem;
    width: 92.85714rem;
    height: auto; }
    .login-banner__img img {
      width: 100%;
      height: auto; }

.login-container {
  border-bottom: 1px dashed #d8d8d8;
  padding-bottom: 4.64286rem;
  margin-bottom: 8.57143rem; }

.login-info {
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.42857rem;
  text-align: center;
  color: #1b1b1b;
  padding-bottom: 3.92857rem;
  border-bottom: 1px dashed #d8d8d8; }

.login-heading {
  text-transform: uppercase;
  font-family: "Open Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-size: 2.57143rem;
  line-height: 2.14286rem;
  color: #1b1b1b;
  margin-top: 3.92857rem; }
  .login-heading + p {
    margin-top: 2.5rem;
    color: #1b1b1b;
    font-size: 15.988px;
    font-size: 1.142rem;
    line-height: 1.90333rem; }

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: none;
  padding: 0; }

.woocommerce label {
  color: #1b1b1b;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 1.142rem; }

.woocommerce form a:not(.btn) {
  color: #a3a5a4; }

.woocommerce .checkbox {
  margin-top: 0.35714rem;
  width: 40%;
  float: left; }

.register {
  width: 100%;
  position: relative; }
  .register-before-click, .register-after-click {
    position: absolute;
    top: 4.85714rem;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out; }
    .register-before-click.active, .register-after-click.active {
      visibility: visible;
      opacity: 1; }

#customer_login {
  position: relative; }
  #customer_login::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 5;
    content: '';
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out; }
  #customer_login.inactive::after {
    opacity: .9;
    visibility: visible; }

@media (max-width: 991.98px) {
  .register-before-click, .js-toggle-registration {
    display: none; }
  .register-after-click {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible; } }

/*------------------------------------*\
    #80-templates reviews
\*------------------------------------*/
.reviews__text {
  border-top: 1px dashed #d8d8d8;
  border-bottom: 1px dashed #d8d8d8;
  padding: 2.5rem 6.42857rem;
  text-align: center;
  margin-bottom: 5rem; }

.reviews h2, .reviews h3, .reviews h4 {
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 29.988px;
  font-size: 2.142rem;
  line-height: 3.57rem; }

.page-template-t-reviews .preview-wrapper h3 {
  margin-bottom: 0 !important; }
  .page-template-t-reviews .preview-wrapper h3 span {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.66667rem; }

.opinions-list {
  margin-bottom: 5.14286rem; }

.opinion__conf > .line:nth-child(2) {
  text-transform: uppercase; }

@media (max-width: 991.98px) {
  .reviews__text {
    padding: 2.28571rem 2.14286rem;
    border-top: none; } }

/*------------------------------------*\
    #80-templates myaccount
\*------------------------------------*/
.woocommerce-MyAccount-navigation {
  border-right: 1px dashed #d8d8d8; }
  .woocommerce-MyAccount-navigation .is-active a {
    color: #d12d28; }

.woocommerce-info {
  border: none; }

@media (max-width: 991.98px) {
  .woocommerce-MyAccount-navigation {
    padding: 1.42857rem 0;
    margin-bottom: 1.42857rem;
    border-right: none;
    background: #eee;
    border-radius: 0 0 3px 3px; }
    .woocommerce-MyAccount-navigation ul {
      margin: 0; }
    .woocommerce-MyAccount-navigation li {
      display: inline-block;
      line-height: 48px;
      height: 48px;
      width: 49%;
      text-align: center; } }

/*------------------------------------*\
    #80-templates homepage
\*------------------------------------*/
.home-slider__text {
  background: #000;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  padding: 0.71429rem 1rem !important;
  text-transform: uppercase;
  font-size: 2.14286rem !important;
  line-height: 2.42857rem !important; }
  .home-slider__text span {
    font-size: 2.14286rem !important;
    line-height: 2.42857rem !important; }

.bros {
  margin-bottom: 5.14286rem; }

.hero {
  background: transparent;
  text-align: center;
  height: auto; }
  .hero__text {
    width: 100%;
    color: #1b1b1b;
    font-size: 29.988px;
    font-size: 2.142rem;
    line-height: 3.57rem;
    text-transform: uppercase;
    margin-top: 2.28571rem;
    font-size: 1.71429rem; }
  .hero .btn {
    margin-top: 2.14286rem; }

.logos {
  width: 100%;
  margin: 5.71429rem 0;
  text-align: center; }
  .logos .logo-coolmax, .logos .logo-lycra {
    display: inline-block;
    margin: 0 30px; }

@media (max-width: 991.98px) {
  .home-slider__text {
    display: none; } }

.homepage-banner {
  max-width: 1920px;
  margin: 0 auto; }

@media (min-width: 768px) {
  .bros {
    background: url("../../assets/images/bro.png") no-repeat top center; }
  .hero {
    height: 53.57143rem;
    width: 100%;
    position: relative;
    text-align: center; }
    .hero__text {
      padding-top: 20rem;
      width: 440px;
      margin: 0 auto; }
    .hero .btn {
      width: 11.71429rem; } }

/*------------------------------------*\
    #80-templates garment-details
\*------------------------------------*/
.garment-banner {
  background: url("../../assets/images/garment-banner.png") no-repeat center;
  background-size: cover;
  height: 24.57143rem; }

/*------------------------------------*\
    #80-templates textpage
\*------------------------------------*/
.textpage h1, .textpage h2, .textpage h3, .textpage h4, .textpage h5 {
  color: #000000; }

.textpage h1 {
  font-size: 2.142rem; }

.textpage h2 {
  font-size: 1.714rem; }

.textpage h3 {
  font-size: 1.285rem; }

.textpage h4 {
  font-size: 1.142rem; }

.textpage h5 {
  font-size: 1rem; }

.textpage p {
  font-size: 1.142rem; }

.textpage blockquote {
  background: #f8f8f8;
  border-left: 4px solid #d12d28;
  padding: 1.07143rem;
  margin: 1.78571rem 0; }
  .textpage blockquote p {
    margin: 0;
    padding: 0; }

/*------------------------------------*\
    #80-templates product
\*------------------------------------*/
.inactive {
  position: relative; }
  .inactive::after {
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.6); }

.sizing-chart-box {
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out; }
  .sizing-chart-box.active {
    opacity: 1;
    visibility: visible; }
  .sizing-chart-box__body {
    background: #fff;
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 501;
    margin-left: -32.14286rem;
    margin-top: -21.42857rem;
    width: 64.28571rem;
    height: 42.85714rem; }
  .sizing-chart-box__close {
    position: absolute;
    top: -2.28571rem;
    right: -2.28571rem;
    width: 2rem;
    height: 2rem;
    background: #fff url("../../assets/images/item-remove.png") no-repeat center;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease-in-out; }
    .sizing-chart-box__close:hover {
      opacity: .75; }

.gecko-dots::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: -50%;
  display: none;
  width: 200%;
  padding: 10px;
  height: auto;
  background: #ffffff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid #d8d8d8;
  z-index: 100; }

.gecko-dots:hover::after {
  display: block; }

.summary .button, .summary .select-box {
  box-shadow: 0 0 0 0 #ce3321, 0 0 0 4px transparent;
  transition: all 0.3s ease-in-out; }
  .summary .button:hover, .summary .select-box:hover {
    box-shadow: 0 0 0 0 #ce3321, 0 0 0 4px #d8d8d8; }
  .summary .button.choosed, .summary .select-box.choosed {
    border: 1px solid #ce3321;
    box-shadow: 0 0 0 1px #ce3321, 0 0 0 0 #ce3321; }

.single_add_to_cart_button {
  width: 165px;
  box-shadow: 0 0 0 15px transparent;
  transition: all 0.3s ease-in-out; }
  .single_add_to_cart_button[disabled] {
    opacity: .2; }

.variations_form {
  margin-top: 2.85714rem;
  border-top: 1px dashed #d8d8d8; }

@media (max-width: 991.98px) {
  .sizing-chart-box__body {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0; }
  .sizing-chart-box__close {
    top: 10px;
    right: 10px;
    box-shadow: none; } }

/*------------------------------------*\
    #80-templates product
\*------------------------------------*/
.page-template-t-product-choice .product-choice .col-6 a .product-image {
  max-width: 100%;
  height: auto; }

.page-template-t-product-choice .product-choice .col-6.col-even a .product-image {
  transform: rotateY(180deg); }

/*------------------------------------*\
    #80-templates thankyou
\*------------------------------------*/
.woocommerce-thankyou-order-received {
  margin: 3.42857rem 0; }

.woocommerce .order_details {
  margin: 2.57143rem 0;
  text-align: center; }

.woocommerce-order-details .woocommerce-table__product-name > a {
  color: #000000;
  font-size: 18px;
  font-size: 1.28571rem;
  line-height: 2.14286rem;
  text-transform: uppercase;
  font-family: "Oswald", Helvetica, Arial, sans-serif; }

.woocommerce-order-details .woocommerce-table__product-name ul.wc-item-meta li {
  display: unset; }
  .woocommerce-order-details .woocommerce-table__product-name ul.wc-item-meta li .wc-item-meta-label {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  .woocommerce-order-details .woocommerce-table__product-name ul.wc-item-meta li p {
    color: #000000;
    text-transform: uppercase; }

.woocommerce-customer-details .woocommerce-columns {
  display: flex; }
  @media (max-width: 991.98px) {
    .woocommerce-customer-details .woocommerce-columns {
      flex-wrap: wrap; } }
  @media (max-width: 991.98px) {
    .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0; } }
  @media (max-width: 991.98px) {
    .woocommerce-customer-details .woocommerce-columns .woocommerce-column--billing-address {
      margin-bottom: 2rem; } }
  @media (min-width: 768px) {
    .woocommerce-customer-details .woocommerce-columns .woocommerce-column:first-child {
      padding-left: 0; }
    .woocommerce-customer-details .woocommerce-columns .woocommerce-column:last-child {
      padding-right: 0; } }

.wc-bacs-bank-details-heading {
  text-align: center; }

/*------------------------------------*\
    #80-templates Woocommerce Checkout
\*------------------------------------*/
.woocommerce-checkout-review-order {
  margin-bottom: 84px; }

/*------------------------------------*\
    #80-pages ....PAGES.... CLASSES
\*------------------------------------*/
