@charset "UTF-8";
/* -------------------------------------------------------------------------
 * CONFIG
 *
 * Main configuration, settings, foundations and tools. No CSS output from
 * them. Should be modified with caution. Values should be expressed in PX,
 * if you plan to convert them into relative units, please, do so on usage.
 *
 * settings ................... Main configuration, settings and core functions
 * foundations ................ Visual language expressed into SASS vars
 * tools ...................... Helper mixins for mq, quantities, ...
 *
 */
/* -------------------------------------------------------------------------
 * SETTINGS
 *
 * Main configuration, settings and core functions.
 *
 * core ....................... Core font size
 * config ..................... Global configuration: env, paths, scoped, ...
 * core-functions ............. Functions related to units, math, ...
 *
 */
/* -------------------------------------------------------------------------
 * CORE
 *
 * This core file sets up the most important setup variable, core font size.
 * It underpin some calculations based on that value.
 * Should be modified with caution.
 * Values should be expressed in PX.
 *
 */
/* SAFE CHECKING
 * Check that the chosen core values are pixel numbers.
 */
/* -------------------------------------------------------------------------
 * CONFIG
 *
 * Global configuration: env, paths, scoped, ...
 *
 */
/* -------------------------------------------------------------------------
 * SCOPED
 * enable if you are scoping the output in a scope selector
 */
/* -------------------------------------------------------------------------
 * ENVIRONMENT
 * dev .................. Development
 * prod ................. Production
 */
/* -------------------------------------------------------------------------
 * DEBUG
 * for debugging proposes
 */
/* -------------------------------------------------------------------------
 * PATHS
 * where to refer for fonts, images and other resources
 */
/* -------------------------------------------------------------------------
 * SPECIAL CHARS
 * peculiar chars used on strings, separators and suffixes
 */
/* -------------------------------------------------------------------------
 * CORE FUNCTIONS
 * SASS core functions (s-core- prefixed)
 *
 * map-diff .............. returns the differences between two maps, skipping equal values
 * px-to-em .............. returns EM equivalent value using a given PX value and a REM reference
 * px-to-rem ............. returns REM equivalent value using a given PX value
 * rem-to-px ............. returns PX equivalent value using a given REM value
 * string-breakpoint ..... returns a string with breakpoint separator concatenated to a given breakpoint
 * string-ratio .......... returns a ratio string with its escaped separator of a given width and height
 * strip-units ........... returns the unitless number of a given value
 *
 */
/* -------------------------------------------------------------------------
 * MAP DIFF
 *
 * Compares the differences between two maps, skipping equal values.
 * Compares both keys and values.
 *
 * Params:
 * MAP-A .............................. Main map to compare with
 * MAP-B .............................. Secondary map to reduce
 *
 * Returns:
 * MAP-B skipping key/values if they are the same on MAP-A
 *
 * Example
 * map-a: ("foo": 1, "bar": 3)
 * map-b: ("foo": 2, "bar": 3)
 * map-c: s-core-map-diff(map-a, map-b)
 * map-c: ("foo": 2)
 *
 */
/* -------------------------------------------------------------------------
 * PX TO EM
 *
 * Returns EM equivalent value using a given PX value and a REM reference
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-em(24px, 1.143rem) == 1.5em
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * REM TO PX
 *
 * Returns PX equivalent value using a given REM value.
 * By default, uses $s-core__font-size on the conversion, and the returned value is rounded.
 *
 * s-core-rem-to-px(1.143rem) == 16px
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 *
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 *
 */
/* -------------------------------------------------------------------------
 * PX TO REM
 *
 * Returns REM equivalent value using a given PX value.
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-rem(16px) == 1.143rem
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 *
 */
/* -------------------------------------------------------------------------
 * REM TO PX
 *
 * Returns PX equivalent value using a given REM value.
 * By default, uses $s-core__font-size on the conversion, and the returned value is rounded.
 *
 * s-core-rem-to-px(1.143rem) == 16px
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 *
 */
/* -------------------------------------------------------------------------
 * STRING BREAKPOINT
 *
 * Returns a breakpoint string with its escaped separator
 * Useful for utilities that uses breakpoints modifiers
 *
 * s-core-string-breakpoint(md) == \@md
 */
/* -------------------------------------------------------------------------
 * STRING RATIO
 *
 * Returns a ratio string with its escaped separator
 * Useful for objects and utilities that uses ratio modifiers
 *
 * s-core-string-ratio(16, 9) == 16\:9
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 *
 */
/* -------------------------------------------------------------------------
 * FOUNDATIONS
 *
 * A visual language defined by close collaboration between developers and
 * designers
 *
 * The contained values here are for sample proposes, consider add your owns
 *
 * aspect-ratios ......... to support some objects, material and components
 * breakpoints ........... to determine screen sizes and media queries
 * colors ................ brand, neutral, vendor, state and other colors
 * durations ............. time durations to be used on animations
 * easings ............... easing functions to be used on animations
 * font-families ......... to import and define the families
 * font-sizes ............ fixed sizes catalog
 * line-heights .......... unit less line heights
 * radiuses .............. to be used as a border radius
 * shadows ............... uncolored shadow sizes
 * sizes ................. to determine common sizes
 * spaces ................ to determine common spacing and gutters
 * z-indexes ............. to determine z-index values
 *
 */
/* -------------------------------------------------------------------------
 * ASPECT RATIOS
 *
 * Used to preserve relation between with and heights
 * The values here are for sample proposes, consider add your owns
 *
 */
/* SAFE CHECKING
 * Check that the chosen ratios are numbers.
 */
/* -------------------------------------------------------------------------
 * BREAKPOINTS
 *
 * Viewport breakpoints
 * Values should be expressed in PX.
 * The values here are for sample proposes, consider add your owns
 *
 * Extracted from [Google Material Design]
 * (https://www.google.com/design/spec/layout/adaptive-ui.html)
 *
 */
/* SAFE CHECKING
 * Check that the chosen breakpoints are pixels.
 */
/* -------------------------------------------------------------------------
 * COLORS
 *
 * Import all color groups and build the main color map
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * COLORS BRAND
 *
 * Define brand colors and its priorities
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * COLORS NEUTRAL
 *
 * Neutral colors are the ones without saturation
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * COLORS STATE
 *
 * Define all state colors
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * COLORS VENDOR
 *
 * Define all vendor colors
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * COLORS OTHER
 *
 * Define all other colors
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * DURATIONS
 *
 * Define durations foundation
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * EASINGS
 *
 * Define easings foundation
 * The values here are for sample proposes, consider add your owns
 *
 * Extracted from [Polaris]
 * (https://github.com/Shopify/polaris/blob/master/src/styles/foundation/easing.scss)
 *
 */
/* -------------------------------------------------------------------------
 * FONTS
 *
 * Font families & fallback
 * The values here are for sample proposes, consider add your owns
 *
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600");
/* -------------------------------------------------------------------------
 * FONT SIZES
 *
 * Values should be expressed in PX.
 * The values here are for sample proposes, consider add your owns
 *
 * If you need a relative unit based on that values, use the core functions
 * on context usage.
 *
 */
/* SAFE CHECKING
 * Check that the chosen values are pixel numbers.
 */
/* -------------------------------------------------------------------------
 * LINE HEIGHTS
 *
 * Values should be expressed unit less
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * RADIUS
 *
 * Border radius sizes
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * SHADOWS
 *
 * Define uncolored shadow sizes
 * The values here are for sample proposes, consider add your owns
 *
 */
/* -------------------------------------------------------------------------
 * SIZES
 *
 * Element's sizes
 *
 */
/* -------------------------------------------------------------------------
 * SPACES
 *
 * Base spaces naming and value pairing
 * The values here are for sample proposes, consider add your owns
 *
 * Modifying these variables can break the vertical rhythm.
 * Should be modified with caution.
 * Values should be expressed in PX.
 *
 * If you need a relative unit based on that values, use the core functions
 * on used context.
 *
 */
/* SAFE CHECKING
 * Check that the chosen values are pixel numbers.
 */
/* -------------------------------------------------------------------------
 * TOOLS
 *
 * Helper SASS mixins where project is built on
 *
 * clearfix ............... Micro clearfix
 * color .................. Mixins for colors
 * geometry ............... Geometric figures
 * sass-mq ................ Media query manager based on sass-mq
 * object-fit ............. Mixin for use "object-fit" property
 * objects ................ Mixins for objects
 * quantity-queries ....... Third party quantity queries
 *
 */
/* -------------------------------------------------------------------------
 * CLEARFIX
 *
 * Mixin to drop micro clearfix into a selector. Further reading:
 * http://www.cssmojo.com/the-very-latest-clearfix-reloaded/
 *
 */
/* -------------------------------------------------------------------------
 * COLORS
 *
 * Mixins for colors
 *
 */
/* -------------------------------------------------------------------------
 * GEOMETRIC FIGURES
 *
 *
 */
/**
 * Crea formas de triángulos
 * @param  {string} $dir   [dirección donde apunta]
 * @param  {string} $size  [tamaño]
 * @param  {string} $color [color]
 */
/* -------------------------------------------------------------------------
 * SASS-MQ
 *
 * Based on https://github.com/sass-mq/sass-mq
 * Adapted to Haiticss settings and workflow
 *
 */
/* -------------------------------------------------------------------------
 * OBJECT FIT
 *
 * Mixin & classes for use "object-fit" property
 *
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* -------------------------------------------------------------------------
 * OBJECTS
 *
 * Mixins for objects
 *
 */
/*
 * Estilos para los placeholders
  Uso:
  input[type=text] {
    color: red;
    @include placeholder {
      color: blue;
    }
  }
 */
/* -------------------------------------------------------------------------
 * BASE
 *
 * Main HTML elements reset and setup, and base material
 *
 * generic .................... Normalize browser behaviour
 * elements ................... HTML elements default appearance
 * material ................... Class based elements: headings, icons, ...
 *
 */
/* -------------------------------------------------------------------------
 * GENERIC
 *
 * Normalize browser behaviour and bootstrap box model
 *
 * box-sizing ............. Sets a better default 'box-sizing'
 * normalize .............. @necolas' normalize.css
 * reset .................. A tiny reset to complement normalize
 *
 */
/* -------------------------------------------------------------------------
 * BOX-SIZING
 *
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

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

/* normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* -------------------------------------------------------------------------
 * RESET
 *
 * A very simple reset that sits on top of Normalize.css.
 *
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0; }

li > ol,
li > ul {
  margin-bottom: 0; }

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

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 2rem; }

dd,
ol,
ul {
  margin-left: 2rem; }

/* -------------------------------------------------------------------------
 * ELEMENTS
 * HTML elements default appearance
 *
 * document ............... Document defaults (html, body)
 * form ................... Forms & inputs
 * headings ............... Minimal heading styles
 * hr ..................... Horizontal rules
 * images ................. Image fluidity and alt text
 * links .................. Minimal links styles
 * paragraphs ............. Minimal paragraphs styles
 * tables ................. Ensure tables fill up as much space as possible.
 *
 */
/* -------------------------------------------------------------------------
 * DOCUMENT
 *
 * Based on inuitcss reference
 * Adapted to haiticss scoped mode
 *
 * Simple page-level setup
 *
 * 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.
 *
 */
html {
  font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 0.75em;
  /* [1] */
  line-height: 1.618;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */ }

/* -------------------------------------------------------------------------
 * HEADINGS
 *
 * Define some minimal heading styles
 *
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 400; }

h1 {
  font-size: 3.33333333rem; }

h2 {
  font-size: 2.66666667rem; }

h3 {
  font-size: 2rem; }

h4 {
  font-size: 1.5rem; }

h5 {
  font-size: 1rem; }

h6 {
  font-size: 1.16666667rem; }

/* -------------------------------------------------------------------------
 * HORIZONTAL RULES
 *
 * Ensure to use border bottom as width source
 *
 */
hr {
  border-top-width: 0;
  border-bottom-width: 1px;
  border-color: #000; }

/* -------------------------------------------------------------------------
 * 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 {
  display: block;
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
  border-style: none;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  /* [1] */ }

/* -------------------------------------------------------------------------
 * LINKS
 *
 * Define some minimal links styles
 *
 */
a {
  color: #000;
  text-decoration: none; }

/* -------------------------------------------------------------------------
 * PARAGRAPHS
 *
 * Appearance & behaviour for paragraphs
 *
 */
p + p {
  margin-top: -12px; }

p:last-child {
  margin-bottom: 0; }

/* -------------------------------------------------------------------------
 * TABLES
 *
 * 1. Ensure tables fill up as much space as possible.
 *
 */
table {
  width: 100%;
  /* [1] */ }

/* -------------------------------------------------------------------------
 * MATERIAL
 *
 * Class based elements
 * Too simple to be a component
 * Icons, sprites, ...
 *
 * Body  .................. Element agnostic body variants
 * Heading ................ Element agnostic heading variants
 * Fonticon ............... Element agnostic fonticon variants
 * Hamburgers ............. Hamburgers for mobile menu
 * Image .................. Images
 * Map .................... Maps
 * Sprite ................. Sprite images
 * SVG .................... SVG's
 *
 */
@font-face {
  font-family: "fonticon";
  src: url("../files/fonts/fonticon.eot");
  src: url("../files/fonts/fonticon.eot?#iefix") format("eot"), url("../files/fonts/fonticon.woff") format("woff"), url("../files/fonts/fonticon.ttf") format("truetype"), url("../files/fonts/fonticon.svg#fonticon") format("svg");
  font-weight: normal;
  font-style: normal; }
.m-fi {
  display: inline-block;
  font-family: "fonticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-stretch: normal;
  text-transform: none;
  font-size: inherit;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: auto;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.m-fi--close:before {
  content: ""; }

.m-fi--heart-filled:before {
  content: ""; }

.m-fi--heart:before {
  content: ""; }

.m-fi--look:before {
  content: ""; }

.m-fi--more:before {
  content: ""; }

.m-fi--next:before {
  content: ""; }

.m-fi--plus:before {
  content: ""; }

.m-fi--prev:before {
  content: ""; }

.m-fi--share:before {
  content: ""; }

.m-fi--tallas-2:before {
  content: ""; }

.m-fi--tallas-3:before {
  content: ""; }

.m-fi--tallas:before {
  content: ""; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -6px; }
  .hamburger-inner::after {
    bottom: -6px; }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* -------------------------------------------------------------------------
 * HAMBURGER
 *
 * Hamburger button
 *
 */
.m-hamburger {
  padding: 0;
  line-height: 0;
  outline: 0; }
  .m-hamburger__box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }

/* -------------------------------------------------------------------------
 * IMAGES
 *
 *
 */
.m-image--background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }
  .m-image--background.is-behind {
    z-index: -1; }
  .m-image--background--small {
    width: 75%;
    height: 75%; }
  .m-image--background__img {
    width: 100% !important;
    height: 100% !important; }
    .m-image--background__img--cover {
      -o-object-fit: cover;
      object-fit: cover;
      font-family: "object-fit: cover"; }
    .m-image--background__img--contain {
      -o-object-fit: contain;
      object-fit: contain;
      font-family: "object-fit: contain"; }

.m-image--full {
  width: 100%; }

/* -------------------------------------------------------------------------
 * ABSTRACTIONS
 *
 * Reusable design abstractions and patterns
 *
 * spacings ................... An abstraction about spaces
 * objects .................... Unstyled design patterns
 * animations ................. Movement and transition patterns
 * color-schemes .............. Color combination schemes
 *
 */
/* -------------------------------------------------------------------------
 * SPACINGS
 *
 * An abstraction about spaces, it's implemented according to a Nathan Curtis article about spacing in design systems
 * you can find the article here: https://medium.com/eightshapes-llc/space-in-design-systems-188bcbae0d62
 *
 * Inline ............... To separate inline items
 * Inset ................ To give space between container and content
 * Inset Squish ......... To give space between container and content emphasizing top and bottom spaces
 * Inset Stretch ........ To give space between container and content emphasizing right and left spaces
 * Stack ................ To separate stacked elements
 *
 */
/* -------------------------------------------------------------------------
 * OBJECTS
 *
 * Unstyled design patterns
 * Consider extend with your owns
 *
 * block .................. Stacked content object with or without header and footer
 * box .................... The box object simply boxes off content
 * bullet ................. The bullet pattern is used to align an icon with some text
 * crop ................... A cropping wrapper with preserved ratio
 * flag ................... A media object based on tables
 * layout ................. Grid-like layout system
 * list-bare .............. Strip list-like appearance
 * list-inline ............ List of items in one line
 * media .................. Image-like and text-like content side-by-side
 * pack ................... Pack up elements horizontally to fill an equal
 * ratio .................. Ratio-bound content block
 * table .................. For manipulating the structure of HTML tables
 * wrapper ................ Page-level constraining and wrapping elements
 *
 */
/* -------------------------------------------------------------------------
 * LIST BARE
 *
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 *
 */
.o-list-bare, .p-user .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }

/* -------------------------------------------------------------------------
 * LIST IN-LINE
 *
 * The list-inline object simply displays a list of items in one line.
 *
 */
.o-list-inline {
  font-size: 0; }
  .o-list-inline > * {
    font-size: 1rem;
    display: inline-block; }

/* -------------------------------------------------------------------------
 * WRAPPER
 *
 * Page-level constraining and wrapping elements.
 *
 */
.o-wrapper {
  margin-right: auto;
  margin-left: auto;
  width: 100%; }
  .o-wrapper::after {
    content: "";
    display: block;
    clear: both; }
  .o-wrapper--p {
    padding-left: 20px;
    padding-right: 20px; }

@media (min-width: 1px) {
  .o-wrapper--from\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 320px) {
  .o-wrapper--from\@xxxs {
    max-width: 26.66666667rem; } }
@media (min-width: 480px) {
  .o-wrapper--from\@xxxs {
    max-width: 40rem; } }
@media (min-width: 600px) {
  .o-wrapper--from\@xxxs {
    max-width: 50rem; } }
@media (min-width: 840px) {
  .o-wrapper--from\@xxxs {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--from\@xxxs {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@xxxs {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@xxxs {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@xxxs {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@xxxs {
    max-width: 160rem; } }

@media (min-width: 320px) {
  .o-wrapper--from\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 480px) {
  .o-wrapper--from\@xxs {
    max-width: 40rem; } }
@media (min-width: 600px) {
  .o-wrapper--from\@xxs {
    max-width: 50rem; } }
@media (min-width: 840px) {
  .o-wrapper--from\@xxs {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--from\@xxs {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@xxs {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@xxs {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@xxs {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@xxs {
    max-width: 160rem; } }

@media (min-width: 480px) {
  .o-wrapper--from\@xs {
    max-width: 40rem; } }
@media (min-width: 600px) {
  .o-wrapper--from\@xs {
    max-width: 50rem; } }
@media (min-width: 840px) {
  .o-wrapper--from\@xs {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--from\@xs {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@xs {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@xs {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@xs {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@xs {
    max-width: 160rem; } }

@media (min-width: 600px) {
  .o-wrapper--from\@sm {
    max-width: 50rem; } }
@media (min-width: 840px) {
  .o-wrapper--from\@sm {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--from\@sm {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@sm {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@sm {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@sm {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@sm {
    max-width: 160rem; } }

@media (min-width: 840px) {
  .o-wrapper--from\@sml {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--from\@sml {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@sml {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@sml {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@sml {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@sml {
    max-width: 160rem; } }

@media (min-width: 960px) {
  .o-wrapper--from\@md {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--from\@md {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@md {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@md {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@md {
    max-width: 160rem; } }

@media (min-width: 1280px) {
  .o-wrapper--from\@lg {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--from\@lg {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@lg {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@lg {
    max-width: 160rem; } }

@media (min-width: 1440px) {
  .o-wrapper--from\@xl {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--from\@xl {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@xl {
    max-width: 160rem; } }

@media (min-width: 1600px) {
  .o-wrapper--from\@xxl {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--from\@xxl {
    max-width: 160rem; } }

@media (min-width: 1920px) {
  .o-wrapper--from\@xxxl {
    max-width: 160rem; } }

@media (min-width: 1px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 320px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 480px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 600px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 840px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 960px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@xxxs {
    max-width: 0.08333333rem; } }

@media (min-width: 320px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 480px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 600px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 840px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 960px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@xxs {
    max-width: 26.66666667rem; } }

@media (min-width: 480px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 600px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 840px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 960px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@xs {
    max-width: 40rem; } }

@media (min-width: 600px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 840px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 960px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@sm {
    max-width: 50rem; } }

@media (min-width: 840px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }
@media (min-width: 960px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@sml {
    max-width: 70rem; } }

@media (min-width: 960px) {
  .o-wrapper--to\@md {
    max-width: 80rem; } }
@media (min-width: 1280px) {
  .o-wrapper--to\@md {
    max-width: 80rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@md {
    max-width: 80rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@md {
    max-width: 80rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@md {
    max-width: 80rem; } }

@media (min-width: 1280px) {
  .o-wrapper--to\@lg {
    max-width: 106.66666667rem; } }
@media (min-width: 1440px) {
  .o-wrapper--to\@lg {
    max-width: 106.66666667rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@lg {
    max-width: 106.66666667rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@lg {
    max-width: 106.66666667rem; } }

@media (min-width: 1440px) {
  .o-wrapper--to\@xl {
    max-width: 120rem; } }
@media (min-width: 1600px) {
  .o-wrapper--to\@xl {
    max-width: 120rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@xl {
    max-width: 120rem; } }

@media (min-width: 1600px) {
  .o-wrapper--to\@xxl {
    max-width: 133.33333333rem; } }
@media (min-width: 1920px) {
  .o-wrapper--to\@xxl {
    max-width: 133.33333333rem; } }

@media (min-width: 1920px) {
  .o-wrapper--to\@xxxl {
    max-width: 160rem; } }

/* -------------------------------------------------------------------------
 * ANIMATIONS
 *
 * Movement and transition patterns
 * Consider extend with your owns
 *
 * animations ............. Vendor animations
 * reveal-opacity ......... Reveal from transparent to opaque
 * reveal-slide ........... Reveal from translated to untranslated position
 *
 */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
body {
  -webkit-backface-visibility: hidden; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .animated.infinite {
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s; }
  .animated.bounceIn, .animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s; }
  .animated.flipOutX, .animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px); } }
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center; }
  20% {
    -webkit-transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg); }
  10% {
    -webkit-transform: skewX(-8deg); }
  20% {
    -webkit-transform: skewX(7deg); }
  30% {
    -webkit-transform: skewX(-6deg); }
  40% {
    -webkit-transform: skewX(5deg); }
  50% {
    -webkit-transform: skewX(-4deg); }
  60% {
    -webkit-transform: skewX(3deg); }
  70% {
    -webkit-transform: skewX(-2deg); }
  80% {
    -webkit-transform: skewX(1deg); }
  90% {
    -webkit-transform: skewX(0deg); }
  100% {
    -webkit-transform: skewX(0deg); } }
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg); }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg); }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg); }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg); }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg); }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg); }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg); }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg); }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg); }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg); }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg); } }
.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%); } }
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%); } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0); } }
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0); } }
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; } }
.flip {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }
@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(-2000px, 0, 0);
            transform: scale3d(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1) translate3d(2000px, 0, 0);
            transform: scale3d(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

/* -------------------------------------------------------------------------
 * COLOR SCHEMES
 *
 * Color combination schemes that affects border, background, content,
 * links, headings and other colors.
 * Consider extend with your owns
 *
 * brand primary ............... Color scheme based on brand primary colors
 *
 */
/* -------------------------------------------------------------------------
 * CONTENT
 *
 * Tangible content. Empty group on haiticss. Organize and put your
 * content here. A proposal on how to organize your content could be:
 *
 * components ................. Abstract named components
 * widgets .................... Data and business driven components
 * templates .................. Template layouts
 * renderings ................. Concrete use cases of components and widgets
 * pages ...................... Concrete use cases of templates
 *
 */
/* -------------------------------------------------------------------------
 * COMPONENTS
 *
 * button ................. Buttons
 * form ................... Forms
 * gallery ................ Gallery
 * masonry ................ Masonry
 * menu ................... Menus
 * mosaic ................. Mosaics
 * pagination ............. Pagination
 * plugin ................. Plugins
 * popup .................. Popup's
 * posts .................. Posts
 * product ................ Products
 * site-body .............. Site body
 * site-footer ............ Site footer
 * site-header ............ Site header
 * site-nav ............... Site nav
 * site-page .............. Site pages
 * text ................... Texts
 * woocommerce ............ Woocommerce
 *
 */
/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 12px 24px;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 6px;
  outline: 0; }

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background-color: #202a4a; }
  .c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
    text-decoration: none;
    /* [4] */
    color: #fff; }
  .c-btn--primary:hover, .c-btn--primary:focus {
    background-color: #2f3e6e; }

.c-btn--secondary {
  background-color: #2f4054; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    text-decoration: none;
    color: #fff; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background-color: #1d2733; }

.c-btn--tertiary {
  background-color: #0095ac;
  color: #fff; }
  .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
    text-decoration: none;
    color: #fff; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    color: #fff; }

.c-btn--skew {
  border-radius: 0;
  -webkit-transform: skew(-18deg);
      -ms-transform: skew(-18deg);
          transform: skew(-18deg); }
  .c-btn--skew__text {
    display: inline-block;
    -webkit-transform: skew(18deg);
        -ms-transform: skew(18deg);
            transform: skew(18deg); }

.c-btn--menu-mobile {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  display: none;
  z-index: 99999;
  position: absolute;
  top: 25px;
  right: 20px;
  width: 20px;
  height: 14px;
  padding: 0; }
  @media (max-width: 840px) {
    .c-btn--menu-mobile {
      display: block; } }

.c-btn--cart {
  margin-top: 20px;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.91666667rem;
  background-color: #efefef; }

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 6px 12px; }

.c-btn--large {
  font-size: 18px; }

/* Ghost buttons
   ========================================================================== */
/**
 * Ghost buttons have see-through backgrounds and are bordered.
 */
.c-btn--ghost {
  border: 2px solid currentColor;
  padding: 10px 22px; }
  .c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
    background: none; }
  .c-btn--ghost.c-btn--small {
    padding: 4px 10px; }
  .c-btn--ghost.c-btn--large {
    padding: 22px 46px; }
  .c-btn--ghost.c-btn--primary {
    color: #4a8ec2; }
    .c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
      color: #3774a2; }
  .c-btn--ghost.c-btn--secondary {
    color: #2f4054; }
    .c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
      color: #1d2733; }
  .c-btn--ghost.c-btn--tertiary {
    color: #fff; }
    .c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
      color: #fff; }

/* -------------------------------------------------------------------------
 * GALLERY
 *
 *
 */
.c-gallery {
  position: relative; }

.c-gallery__nav {
  z-index: 200;
  cursor: pointer;
  position: absolute;
  top: calc( 50% - (200px / 2) );
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.5rem;
  color: #c3c3c3;
  -webkit-transition: color 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: color 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  transition: color 0.3s cubic-bezier(0.64, 0, 0.35, 1); }
  @media (max-width: 840px) {
    .c-gallery__nav {
      top: calc( 50% - (calc( 200px - 50px ) / 2) ); } }
  .c-gallery__nav:hover {
    color: #3c3c3c; }
  .c-gallery__nav--prev {
    left: 5px; }
  .c-gallery__nav--next {
    right: 5px; }

/* -------------------------------------------------------------------------
 * MASONRY
 *
 *
 */
.c-masonry__item {
  float: left; }
  .c-masonry__item-title {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
    -o-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
    transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1); }
  .c-masonry__item:hover .c-masonry__item-title {
    opacity: 1; }

.c-masonry__item-curation {
  margin-bottom: 120px;
  width: calc( calc(100% / 3) - calc( calc(100px * 2) / 3 ) ); }
  @media (max-width: 840px) {
    .c-masonry__item-curation {
      width: calc( calc(100% / 3) - calc( calc(60px * 2) / 3) );
      margin-bottom: 100px; } }
  @media (max-width: 480px) {
    .c-masonry__item-curation {
      width: 100%;
      margin-bottom: 40px; } }

.c-masonry__gutter--curation {
  width: 100px; }
  @media (max-width: 840px) {
    .c-masonry__gutter--curation {
      width: 60px; } }
  @media (max-width: 480px) {
    .c-masonry__gutter--curation {
      width: 40px; } }
  @media (max-width: 320px) {
    .c-masonry__gutter--curation {
      width: 0; } }

.c-masonry__item-diario {
  width: calc(25% - calc( calc(60px * 3) / 4) );
  margin-bottom: 60px; }
  @media (max-width: 840px) {
    .c-masonry__item-diario {
      width: calc( calc(100% / 3) - calc( calc(40px * 2) / 3) ); } }
  @media (max-width: 480px) {
    .c-masonry__item-diario {
      width: calc( 50% - 10px ); } }
  @media (max-width: 320px) {
    .c-masonry__item-diario {
      width: 100%;
      margin-bottom: 40px; } }

.c-masonry__gutter--diario {
  width: 60px; }
  @media (max-width: 840px) {
    .c-masonry__gutter--diario {
      width: 40px; } }
  @media (max-width: 480px) {
    .c-masonry__gutter--diario {
      width: 20px; } }
  @media (max-width: 320px) {
    .c-masonry__gutter--diario {
      width: 0; } }

/* -------------------------------------------------------------------------
 * MENÚ
 *
 *
 */
.c-menu__list {
  margin-bottom: 0; }

.c-menu__item {
  font-size: 12px; }
  .c-menu__item--title {
    font-weight: 600; }
  .c-menu__item:hover .c-menu--submenu, .c-menu__item:focus .c-menu--submenu {
    z-index: 999;
    opacity: 1;
    height: auto;
    overflow: visible;
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (max-width: 840px) {
      .c-menu__item:hover .c-menu--submenu, .c-menu__item:focus .c-menu--submenu {
        height: auto;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 15px; } }
    @media (max-width: 480px) {
      .c-menu__item:hover .c-menu--submenu, .c-menu__item:focus .c-menu--submenu {
        padding-bottom: 0; } }
  .c-menu__item:hover .c-submenu--cart, .c-menu__item:focus .c-submenu--cart {
    height: auto; }

.c-menu__link:hover, .c-menu__link:focus {
  border-bottom: 1px solid #000; }
.c-menu__link.is-active {
  font-weight: 600; }

.c-menu__link-image {
  position: relative;
  display: block;
  width: 100%;
  background-color: #f9f9f9; }
  .c-menu__link-image-name {
    z-index: 200;
    position: absolute;
    top: 10px;
    left: 15px; }

.c-menu--lang {
  text-align: right;
  width: calc(5% + 75px); }
  @media (max-width: 1280px) {
    .c-menu--lang {
      width: 60px; } }
  @media (max-width: 840px) {
    .c-menu--lang {
      width: 25%;
      position: absolute;
      top: 240px;
      left: 20px;
      text-align: left; } }
  .c-menu--lang .c-menu__item:first-child {
    margin-right: 15px; }
  .c-menu--lang .c-menu__item .c-menu__link.is-active {
    border-bottom: none; }

.c-menu--header {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: right; }
  .c-menu--header > .c-menu__list {
    height: 100%; }
    @media (max-width: 840px) {
      .c-menu--header > .c-menu__list {
        font-size: inherit;
        text-align: left;
        width: 25%; }
        .c-menu--header > .c-menu__list > * {
          font-size: inherit;
          display: inherit; } }
    @media (max-width: 480px) {
      .c-menu--header > .c-menu__list {
        width: 50%; } }
    .c-menu--header > .c-menu__list > .c-menu__item {
      width: calc(100% / 6);
      height: 100%;
      text-align: center; }
      @media (max-width: 840px) {
        .c-menu--header > .c-menu__list > .c-menu__item {
          width: 100%;
          text-align: left; } }
      .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link {
        display: block;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px; }
        @media (max-width: 840px) {
          .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link {
            padding: 10px 0; } }
        .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link:hover, .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link:focus {
          border-bottom: none; }
          .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link:hover .c-menu__link-name, .c-menu--header > .c-menu__list > .c-menu__item > .c-menu__link:focus .c-menu__link-name {
            border-bottom: 1px solid #000; }

.c-menu--submenu {
  z-index: -99;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.15s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: opacity 0.15s cubic-bezier(0.64, 0, 0.35, 1);
  transition: opacity 0.15s cubic-bezier(0.64, 0, 0.35, 1); }
  @media (max-width: 840px) {
    .c-menu--submenu {
      top: 10px;
      left: 25%;
      width: calc(75% - 20px); } }
  @media (max-width: 480px) {
    .c-menu--submenu {
      width: 50%;
      left: 50%; } }

.c-submenu {
  background-color: #fff;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555; }
  @media (max-width: 840px) {
    .c-submenu {
      border-top: none;
      border-bottom: none;
      border-left: 1px solid #555; } }

.c-submenu--cart {
  max-width: 500px;
  border: 1px solid #c4c4c4; }
  @media (max-width: 1280px) {
    .c-submenu--cart {
      left: auto !important;
      right: 0; } }
  @media (max-width: 840px) {
    .c-submenu--cart {
      right: auto !important;
      left: 25% !important;
      max-width: 100%;
      border: none; } }
  @media (max-width: 480px) {
    .c-submenu--cart {
      left: 50% !important; } }
  .c-submenu--cart .c-submenu__list {
    display: block; }
    .c-submenu--cart .c-submenu__list .c-submenu__title {
      margin-bottom: 20px; }
    .c-submenu--cart .c-submenu__list .c-submenu__item {
      padding-top: 10px;
      padding-bottom: 10px;
      border-top: 1px solid #c4c4c4; }
    .c-submenu--cart .c-submenu__list .c-submenu__footer {
      padding-top: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      border-top: 1px solid #c4c4c4; }
      @media (max-width: 840px) {
        .c-submenu--cart .c-submenu__list .c-submenu__footer {
          padding-bottom: 20px; } }
      @media (max-width: 480px) {
        .c-submenu--cart .c-submenu__list .c-submenu__footer {
          display: block; } }
      @media (max-width: 480px) {
        .c-submenu--cart .c-submenu__list .c-submenu__footer-side:first-child {
          margin-bottom: 5px; } }

.c-submenu__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 480px) {
    .c-submenu__product {
      display: block; } }
  .c-submenu__product-media {
    width: 120px; }
    @media (max-width: 600px) {
      .c-submenu__product-media {
        width: 80px; } }
    @media (max-width: 480px) {
      .c-submenu__product-media {
        width: 100%;
        margin-bottom: 20px; } }
  .c-submenu__product-info {
    width: calc(100% - 120px);
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.25; }
    @media (max-width: 600px) {
      .c-submenu__product-info {
        width: calc(100% - 80px); } }
    @media (max-width: 480px) {
      .c-submenu__product-info {
        width: 100%;
        padding-left: 0; } }
  .c-submenu__product-attr {
    width: calc(100% / 3);
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
    font-size: 0.91666667rem; }
    @media (max-width: 480px) {
      .c-submenu__product-attr {
        width: 100%; } }

.c-submenu__list {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 5%;
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  text-align: left; }
  @media (max-width: 1280px) {
    .c-submenu__list {
      -ms-grid-columns: (1fr)[4];
          grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 960px) {
    .c-submenu__list {
      grid-column-gap: 20px; } }
  @media (max-width: 840px) {
    .c-submenu__list {
      height: auto;
      grid-row-gap: 20px;
      -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr);
      -ms-grid-rows: auto (150px)[2];
          grid-template-rows: auto repeat(2, 150px); } }
  @media (max-width: 600px) {
    .c-submenu__list {
      display: block; } }
  @media (max-width: 480px) {
    .c-submenu__list {
      font-size: inherit; }
      .c-submenu__list > * {
        font-size: inherit;
        display: inherit; }
      .c-submenu__list > .c-submenu__item {
        margin-bottom: 30px !important; }
        .c-submenu__list > .c-submenu__item:last-child {
          margin-bottom: 0 !important; } }

.c-submenu__item {
  vertical-align: top; }
  @media (max-width: 600px) {
    .c-submenu__item {
      margin-right: 20px; } }
  @media (max-width: 480px) {
    .c-submenu__item {
      margin-right: 0; } }
  .c-submenu__item:not(.has-image) {
    margin-bottom: 3px; }
    @media (max-width: 840px) {
      .c-submenu__item:not(.has-image) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 4; } }
  @media (max-width: 840px) {
    .c-submenu__item.has-image {
      -ms-grid-row: 2;
      grid-row: 2; } }
  @media (max-width: 600px) {
    .c-submenu__item.has-image {
      display: none; } }

.c-submenu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 480px) {
    .c-submenu__lists {
      display: block; } }
  .c-submenu__lists .c-menu__list {
    margin-right: 60px;
    width: calc(100% / 3); }
    @media (max-width: 600px) {
      .c-submenu__lists .c-menu__list {
        margin-right: 40px; } }
    @media (max-width: 480px) {
      .c-submenu__lists .c-menu__list {
        width: 100%;
        margin-bottom: 40px; } }
    .c-submenu__lists .c-menu__list:last-child {
      margin-right: 0; }

/* -------------------------------------------------------------------------
 * MOSAIC
 *
 *
 */
.c-mosaic {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 1280px) {
    .c-mosaic {
      -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 840px) {
    .c-mosaic {
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) {
    .c-mosaic {
      -ms-grid-columns: 100%;
          grid-template-columns: 100%; } }

.c-mosaic__item {
  position: relative;
  background-color: #f5f5f5; }
  .c-mosaic__item--description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    background-color: transparent; }
    .c-mosaic__item--description-name {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 1rem; }
  .c-mosaic__item--image {
    background-color: transparent; }
  .c-mosaic__item--video {
    background-color: transparent;
    overflow: hidden; }
    @media (max-width: 600px) {
      .c-mosaic__item--video {
        min-height: 800px !important; } }
    @media (max-width: 480px) {
      .c-mosaic__item--video {
        min-height: 600px !important; } }
  .c-mosaic__item--link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    font-weight: 600; }
    .c-mosaic__item--link .m-fi {
      font-size: 0.66666667rem; }

.c-mosaic--category {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 40px; }
  .c-mosaic--category .c-mosaic__item {
    height: 400px; }
    @media (max-width: 1600px) {
      .c-mosaic--category .c-mosaic__item {
        height: 300px; } }
    .c-mosaic--category .c-mosaic__item--alfombra {
      height: 500px; }
      @media (max-width: 1600px) {
        .c-mosaic--category .c-mosaic__item--alfombra {
          height: 450px; } }
    .c-mosaic--category .c-mosaic__item--description {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / 3;
      font-size: 2rem;
      padding-left: 20%;
      padding-right: 20%; }
      @media (max-width: 600px) {
        .c-mosaic--category .c-mosaic__item--description {
          -ms-grid-column: 1;
          grid-column: 1;
          padding-left: 10%;
          padding-right: 10%; } }
      @media (max-width: 480px) {
        .c-mosaic--category .c-mosaic__item--description {
          font-size: 1.66666667rem; } }

.c-mosaic--store {
  -ms-grid-rows: (300px)[3];
      grid-template-rows: repeat(3, 300px);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-bottom: 60px; }
  @media (max-width: 840px) {
    .c-mosaic--store {
      -ms-grid-rows: (300px)[4];
          grid-template-rows: repeat(4, 300px); } }
  @media (max-width: 600px) {
    .c-mosaic--store {
      display: block;
      margin-bottom: 0; }
      .c-mosaic--store .c-mosaic__item {
        min-height: 300px;
        margin-bottom: 40px; }
        .c-mosaic--store .c-mosaic__item--description {
          min-height: 0;
          padding-top: 40px;
          padding-bottom: 40px; } }
      @media (max-width: 600px) and (max-width: 480px) {
        .c-mosaic--store .c-mosaic__item--description {
          padding-left: 20px;
          padding-right: 20px; } }

  .c-mosaic--store:first-of-type {
    margin-top: 60px; }
    @media (max-width: 600px) {
      .c-mosaic--store:first-of-type {
        margin-top: 40px; } }

.c-mosaic--layout_1 {
      grid-template-areas: ". . product-1 description" "product-2 photo product-4 product-4" "product-3 product-3 product-4 product-4"; }
  @media (max-width: 1280px) {
    .c-mosaic--layout_1 {
          grid-template-areas: ". product-1 description" "product-2 photo product-4" "product-3 product-3 product-4"; } }
  @media (max-width: 840px) {
    .c-mosaic--layout_1 {
          grid-template-areas: "product-1 description" "product-2 photo" "product-3 product-3" "product-4 product-4"; } }
  .c-mosaic--layout_1 .c-product-preview--1 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-1; }
  .c-mosaic--layout_1 .c-product-preview--2 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-2; }
  .c-mosaic--layout_1 .c-product-preview--3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-3; }
  .c-mosaic--layout_1 .c-product-preview--4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-4; }
  .c-mosaic--layout_1 .c-mosaic__item--description {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
    grid-area: description; }
  .c-mosaic--layout_1 .c-mosaic__item--image {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: photo; }

	
	
	
	
	
.c-mosaic--layout_21 {
      grid-template-areas: ". . product-1 description" "product-2 photo product-4 product-4" "product-3 product-3 product-4 product-4"; }
  @media (max-width: 1280px) {
    .c-mosaic--layout_21 {
          grid-template-areas: ". product-1 description" "product-2 photo product-4" "product-3 product-3 product-4"; } }
  @media (max-width: 840px) {
    .c-mosaic--layout_21 {
          grid-template-areas: "product-1 description" "product-2 photo" "product-3 product-3" "product-4 product-4"; } }
  .c-mosaic--layout_21 .c-product-preview--1 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-1; }
  .c-mosaic--layout_21 .c-product-preview--2 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-2; }
  .c-mosaic--layout_21 .c-product-preview--3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-3; }
  .c-mosaic--layout_21 .c-product-preview--4 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  grid-area: photo;
	}
  .c-mosaic--layout_21 .c-mosaic__item--description {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
    grid-area: description; }
  .c-mosaic--layout_21 .c-mosaic__item--image {


    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
	  	grid-area: product-4;

    	}
	
	
	
	
	
	
	
	
	
	
.c-mosaic--layout_2,
.c-mosaic--layout_4 {
      grid-template-areas: "description-1 video description-2 photo-2" "photo-1 video product-2 product-2" "product-1 product-1 product-2 product-2"; }
  @media (max-width: 1280px) {
    .c-mosaic--layout_2,
    .c-mosaic--layout_4 {
          grid-template-areas: "description-1 video description-2" "photo-1 video product-2" "product-1 product-1 photo-2"; } }
  @media (max-width: 840px) {
    .c-mosaic--layout_2,
    .c-mosaic--layout_4 {
          grid-template-areas: "description-1 video" "photo-1 video" "product-2 description-2" "photo-2 product-1"; } }
  .c-mosaic--layout_2 .c-product-preview--1,
  .c-mosaic--layout_4 .c-product-preview--1 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-1; }
  .c-mosaic--layout_2 .c-product-preview--2,
  .c-mosaic--layout_4 .c-product-preview--2 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-2; }
  .c-mosaic--layout_2 .c-mosaic__item--description-1,
  .c-mosaic--layout_4 .c-mosaic__item--description-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: description-1; }
  .c-mosaic--layout_2 .c-mosaic__item--description-2,
  .c-mosaic--layout_4 .c-mosaic__item--description-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: description-2; }
  .c-mosaic--layout_2 .c-mosaic__item--image-1,
  .c-mosaic--layout_4 .c-mosaic__item--image-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: photo-1; }
  .c-mosaic--layout_2 .c-mosaic__item--image-2,
  .c-mosaic--layout_4 .c-mosaic__item--image-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: photo-2; }
  .c-mosaic--layout_2 .c-mosaic__item--video,
  .c-mosaic--layout_4 .c-mosaic__item--video {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
    grid-area: video; }

	
  
    


	
    .c-mosaic--layout_22 {
          grid-template-areas: "photo-1 product-2 description-2 product-3" "photo-1 product-2 video video" "product-1 product-1 video video"; }
      @media (max-width: 1280px) {
        .c-mosaic--layout_22 {
              grid-template-areas: "photo-1 video description-2" "photo-1 video product-2" "product-1 product-1 product-3"; } }
      @media (max-width: 840px) {
        .c-mosaic--layout_22 {
              grid-template-areas: "photo-1 video" "photo-1 video" "product-2 description-2" "product-3 product-1"; } }
      .c-mosaic--layout_22 .c-product-preview--1{
        -ms-grid-row: 2;
        -ms-grid-row-span: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: product-1; }
      .c-mosaic--layout_22 .c-product-preview--2 {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: product-2; }
      .c-mosaic--layout_22 .c-mosaic__item--description-1 {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: description-1; }
      .c-mosaic--layout_22 .c-mosaic__item--description-2{
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: description-2; }
      .c-mosaic--layout_22 .c-mosaic__item--image-1{
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: photo-1; }
 
      .c-mosaic--layout_22 .c-mosaic__item--video{
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 4;
        grid-area: video; }
    











	
	
	
.c-mosaic--layout_12 {
      grid-template-areas: "description-1 video description-2 photo-2" "photo-1 video product-2 product-2" "product-1 product-1 product-2 product-2"; }
  @media (max-width: 1280px) {
    .c-mosaic--layout_12 {
          grid-template-areas: "description-1 video description-2" "photo-1 video product-2" "product-1 product-1 photo-2"; } }
  @media (max-width: 840px) {
    .c-mosaic--layout_12 {
          grid-template-areas: "description-1 video" "photo-1 video" "product-2 description-2" "photo-2 product-1"; } }
  .c-mosaic--layout_12 .c-product-preview--1 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-1; }
  .c-mosaic--layout_12 .c-product-preview--2 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-2; }
  .c-mosaic--layout_12 .c-mosaic__item--description-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: description-1; }
  .c-mosaic--layout_12 .c-mosaic__item--description-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: description-2; }
  .c-mosaic--layout_12 .c-mosaic__item--image-1 {

	    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
    grid-area: video; 
	
	}
  .c-mosaic--layout_12 .c-mosaic__item--image-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: photo-2; }
  .c-mosaic--layout_12 .c-mosaic__item--video {

	    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: photo-1; 
	
	}
	
	
	
	
	
	
	
	
	
.c-mosaic--layout_3,
.c-mosaic--layout_5 {
      grid-template-areas: "description-1 photo-1 description-2 video" "product-1  product-1 photo-2 video" "product-1 product-1 product-2 product-2"; }
  @media (max-width: 1280px) {
    .c-mosaic--layout_3,
    .c-mosaic--layout_5 {
          grid-template-areas: "description-1 photo-1 product-1" "video description-2 photo-2" "video description-2 product-2"; } }
  @media (max-width: 840px) {
    .c-mosaic--layout_3,
    .c-mosaic--layout_5 {
          grid-template-areas: "description-1 photo-2" "photo-1  product-1" "description-2 video" "product-2 video"; } }
  .c-mosaic--layout_3 .c-product-preview--1,
  .c-mosaic--layout_5 .c-product-preview--1 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: product-1; }
  .c-mosaic--layout_3 .c-product-preview--2,
  .c-mosaic--layout_5 .c-product-preview--2 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: product-2; }
  .c-mosaic--layout_3 .c-mosaic__item--description-1,
  .c-mosaic--layout_5 .c-mosaic__item--description-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: description-1; }
  .c-mosaic--layout_3 .c-mosaic__item--description-2,
  .c-mosaic--layout_5 .c-mosaic__item--description-2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: description-2; }
  .c-mosaic--layout_3 .c-mosaic__item--image-1,
  .c-mosaic--layout_5 .c-mosaic__item--image-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: photo-1; }
  .c-mosaic--layout_3 .c-mosaic__item--image-2,
  .c-mosaic--layout_5 .c-mosaic__item--image-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: photo-2; }
  .c-mosaic--layout_3 .c-mosaic__item--video,
  .c-mosaic--layout_5 .c-mosaic__item--video {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
    grid-area: video; }

.c-mosaic--colaboraciones {
  grid-row-gap: 40px;
  grid-column-gap: 40px; }
  @media (max-width: 600px) {
    .c-mosaic--colaboraciones {
      grid-row-gap: 20px; } }
  .c-mosaic--colaboraciones .c-mosaic__item {
    height: 800px;
    background: transparent; }
    @media (max-width: 1600px) {
      .c-mosaic--colaboraciones .c-mosaic__item {
        height: 600px; } }
    .c-mosaic--colaboraciones .c-mosaic__item--project {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      cursor: pointer; }
      .c-mosaic--colaboraciones .c-mosaic__item--project-part {
        position: relative;
        height: calc(50% - 20px); }
        @media (max-width: 600px) {
          .c-mosaic--colaboraciones .c-mosaic__item--project-part {
            height: calc(50% - 10px); } }
        .c-mosaic--colaboraciones .c-mosaic__item--project-part--info {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          padding: 40px;
          background-color: #d7ffff; }
      .c-mosaic--colaboraciones .c-mosaic__item--project.is-inverted .c-mosaic__item--project-part--info {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
      .c-mosaic--colaboraciones .c-mosaic__item--project.is-inverted .c-mosaic__item--project-part:not(.c-mosaic__item--project-part--info) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
    .c-mosaic--colaboraciones .c-mosaic__item--filled-big {
      grid-column: span 2; }
      @media (max-width: 840px) {
        .c-mosaic--colaboraciones .c-mosaic__item--filled-big {
          display: none; } }

.c-mosaic--campana {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-bottom: 60px; }
  @media (max-width: 1280px) {
    .c-mosaic--campana {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      margin-bottom: 40px; } }
  @media (max-width: 600px) {
    .c-mosaic--campana {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      margin-bottom: 20px; } }
  @media (max-width: 320px) {
    .c-mosaic--campana {
      display: block; } }
  @media (max-width: 320px) {
    .c-mosaic--campana .c-mosaic__picture {
      margin-bottom: 20px; }
      .c-mosaic--campana .c-mosaic__picture:last-child {
        margin-bottom: 0; } }

.c-mosaic--bespoke {
  margin-bottom: 60px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5%; }
  @media (max-width: 840px) {
    .c-mosaic--bespoke {
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-row-gap: 40px; } }
  @media (max-width: 600px) {
    .c-mosaic--bespoke {
      -ms-grid-columns: 100%;
          grid-template-columns: 100%; } }
  .c-mosaic--bespoke .c-mosaic__item {
    height: 400px; }
    @media (max-width: 1600px) {
      .c-mosaic--bespoke .c-mosaic__item {
        height: 300px; } }

/* -------------------------------------------------------------------------
 * PLUGINS
 *
 *
 */
.wpostahs-slider-design-2 .wpostahs-slider-nav .slick-current .wpostahs-main-title button {
  background: #d7ffff;
  border-color: #000; }

.wpostahs-slider-design-2 .wpostahs-slider-nav .wpostahs-slider-nav-title:hover .wpostahs-main-title button {
  background: #d7ffff; }

.wpostahs-slider-design-2 .wpostahs-slider-nav .slick-current {
  color: rgba(0, 0, 0, 0.75); }

#qtranslate-chooser {
  list-style: none;
  margin: 0; }
  #qtranslate-chooser .language-chooser-item {
    text-transform: uppercase;
    margin-bottom: 10px; }
    #qtranslate-chooser .language-chooser-item.active {
      font-weight: 600; }

.c-menu--lang #qtranslate-chooser .language-chooser-item {
  display: inline-block;
  margin-bottom: 0; }
  .c-menu--lang #qtranslate-chooser .language-chooser-item:first-child {
    margin-right: 5px; }

/* -------------------------------------------------------------------------
 * POPUP's
 *
 *
 */
.c-popup {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75); }
  .c-popup:target {
    display: block; }

.c-popup__inset {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 650px;
  height: 60vh;
  padding: 40px 20px 20px;
  overflow-y: auto;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  border: 1px solid #c4c4c4; }

.c-popup__close {
  position: absolute;
  top: 15px;
  right: 15px; }

.c-popup__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.16666667rem; }

.c-popup__content p:last-child {
  margin-bottom: 40px; }

.c-popup-subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 480px) {
    .c-popup-subscription {
      display: block; } }
  .c-popup-subscription__side {
    width: 50%; }
    @media (max-width: 480px) {
      .c-popup-subscription__side {
        width: 100%; } }
    @media (max-width: 480px) {
      .c-popup-subscription__side--left {
        display: none; } }
    .c-popup-subscription__side--left img {
      height: auto; }
    .c-popup-subscription__side--right {
      padding: 20px; }
  .c-popup-subscription__form {
    text-align: center; }
    .c-popup-subscription__form-title {
      margin-bottom: 20px;
      font-weight: 600;
      font-size: 1.83333333rem;
      line-height: 1.25; }
    .c-popup-subscription__form-input {
      width: 100%;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border-top: none;
      border-left: none;
      border-right: none;
      text-align: center;
      border-bottom: 1px solid #000; }
    .c-popup-subscription__form .wpcf7-acceptance {
      display: block;
      padding-top: 20px;
      padding-bottom: 10px;
      color: #999;
      font-size: 0.83333333rem; }
      .c-popup-subscription__form .wpcf7-acceptance a {
        color: #999;
        text-decoration: underline; }
      .c-popup-subscription__form .wpcf7-acceptance .wpcf7-list-item {
        margin-left: 0; }
        .c-popup-subscription__form .wpcf7-acceptance .wpcf7-list-item label {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .c-popup-subscription__form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
            padding-left: 5px; }
    .c-popup-subscription__form-btn {
      display: block;
      width: 100%;
      padding: 15px;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: none;
      cursor: pointer;
      background-color: #000;
      color: #fff;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 1.5rem; }

/* -------------------------------------------------------------------------
 * POSTS
 *
 *
 */
.c-post {
  max-width: 700px;
  margin: 0 auto; }

.c-post__image {
  display: block;
  margin-bottom: 20px; }

.c-post__date {
  margin-bottom: 12px;
  font-size: 0.83333333rem; }

.c-post__title {
  font-weight: 600; }

/* -------------------------------------------------------------------------
 * PRODUCTS
 *
 *
 */
.c-product__description {
  padding-top: 3px;
  font-size: 0.91666667rem;
  line-height: 1.25; }

.c-product__gallery {
  height: 100%; }
  .c-product__gallery-photos {
    height: 100%; }
    .c-product__gallery-photos .owl-stage-outer {
      height: 100%; }
      .c-product__gallery-photos .owl-stage-outer .owl-stage {
        height: 100%; }
        .c-product__gallery-photos .owl-stage-outer .owl-stage .owl-item {
          height: calc( 100% - 200px );
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          @media (max-width: 840px) {
            .c-product__gallery-photos .owl-stage-outer .owl-stage .owl-item {
              height: calc( 100% - calc( 200px - 50px ) ); } }

.c-product__photo {
  width: auto !important;
  height: 100% !important;
  display: inline-block !important;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: transform 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  transition: transform 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  transition: transform 0.6s cubic-bezier(0.64, 0, 0.35, 1), -webkit-transform 0.6s cubic-bezier(0.64, 0, 0.35, 1); }
  @media (max-width: 840px) {
    .c-product__photo {
      -o-object-fit: cover;
      object-fit: cover;
      font-family: "object-fit: cover"; } }
  @media (max-width: 600px) {
    .c-product__photo {
      width: 100% !important;
      height: auto !important; } }
  .c-product__photo.has-zoom {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
    -webkit-transform: scale(2);
        -ms-transform: scale(2);
            transform: scale(2); }
    @media (max-width: 840px) {
      .c-product__photo.has-zoom {
        -webkit-transform: scale(1.75);
            -ms-transform: scale(1.75);
                transform: scale(1.75); } }

.c-product__btn-add-cart {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000;
  text-align: left;
  padding: 0;
  font-weight: 600; }

.c-product__price {
  font-weight: 300;
  font-size: 3.33333333rem;
  line-height: 1; }
  .c-product__price.is-rebajado {
    position: relative;
    color: red; }
  .c-product__price--rebajado {
    position: absolute;
    left: 0;
    bottom: calc(100% + 5px);
    text-decoration: line-through;
    color: #b3b3b3;
    font-size: 1rem; }

.c-product__icon-link {
  font-size: 0.83333333rem; }

.c-product__extras-item {
  margin-right: 25px; }

.c-product-preview {
  display: block; }
  .c-product-preview:hover .c-product-preview__info,
  .c-product-preview:hover .c-product-preview__image-campaign, .c-product-preview:focus .c-product-preview__info,
  .c-product-preview:focus .c-product-preview__image-campaign {
    opacity: 1; }
  .c-product-preview:hover .c-product-preview__rebajado, .c-product-preview:focus .c-product-preview__rebajado {
    display: none; }
  .c-product-preview:hover.has-image-campaign .c-product-preview__info--attributes-item,
  .c-product-preview:hover.has-image-campaign .c-product-preview__info, .c-product-preview:focus.has-image-campaign .c-product-preview__info--attributes-item,
  .c-product-preview:focus.has-image-campaign .c-product-preview__info {
    color: #fff; }
  .c-product-preview:hover.has-image-campaign .c-product-preview__info--price-rebajado, .c-product-preview:focus.has-image-campaign .c-product-preview__info--price-rebajado {
    color: #fff;
    opacity: 0.8; }

.c-product-preview__rebajado {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100%;
  max-width: 60px !important; }

.c-product-preview__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 300px;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%); }
  .c-mosaic__item--alfombra .c-product-preview__image {
    max-width: 75%; }

.c-product-preview__image-campaign {
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1); }

.c-product-preview__info {
  z-index: 200;
  position: absolute;
  width: calc(100% / 3);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  transition: opacity 0.3s cubic-bezier(0.64, 0, 0.35, 1); }
  .c-product-preview__info::after {
    content: "";
    display: block;
    clear: both; }
  .c-product-preview__info .c-product-preview__info-item {
    float: left;
    margin-top: 0;
    margin-bottom: 0; }
  .c-product-preview__info--attributes {
    top: 20px;
    left: 20px; }
    .c-product-preview__info--attributes-item {
      margin-bottom: 10px; }
  .c-product-preview__info--price {
    top: 20px;
    right: 20px;
    text-align: right; }
    .c-product-preview__info--price-rebajado {
      margin-right: 5px;
      text-decoration: line-through;
      color: #b3b3b3; }
  .c-product-preview__info--colors {
    bottom: 20px;
    left: 20px;
    max-width: 140px; }

.c-product-colors {
  width: 90%;
  height: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.c-product-color {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%; }

.c-product-wrapper-colors select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none; }
.c-product-wrapper-colors .c-product-color {
  position: relative;
  cursor: pointer; }
  .c-product-wrapper-colors .c-product-color:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; }

/* -------------------------------------------------------------------------
 * SITE BODY
 *
 *
 */
.c-site-html {
  overflow-x: hidden; }
  .c-site-html.not-scroll {
    overflow-y: hidden; }

.c-site-body.has-menu .c-site-header {
  background-color: #fff; }
.c-site-body.has-menu .c-site-header__content {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); }

.c-site-body.is_edge .c-intro__ball,
.c-site-body.is_IE .c-intro__ball {
  -webkit-animation: ball_in 1s linear 0.5s forwards, spin 1.5s linear forwards;
          animation: ball_in 1s linear 0.5s forwards, spin 1.5s linear forwards; }

/* -------------------------------------------------------------------------
 * SITE FOOTER
 *
 *
 */
.c-site-footer {
  height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #dedede;
  font-size: 11px;
  line-height: 1.25; }
  @media (max-width: 960px) {
    .c-site-footer {
      height: auto;
      padding-top: 40px; } }

.c-site-footer__inset {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 40px; }
  @media (max-width: 960px) {
    .c-site-footer__inset {
      -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 480px) {
    .c-site-footer__inset {
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); } }

.c-site-footer__column:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
@media (max-width: 1280px) {
  .c-site-footer__column {
    margin-bottom: 40px; } }

.c-site-footer__btn {
  cursor: pointer; }

/* -------------------------------------------------------------------------
 * SITE HEADER
 *
 *
 */
.c-site-header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  height: 80px;
  -webkit-transition: background-color 0.15s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: background-color 0.15s cubic-bezier(0.64, 0, 0.35, 1);
  transition: background-color 0.15s cubic-bezier(0.64, 0, 0.35, 1); }
  .c-site-header__link {
    display: block;
    max-width: 120px;
    font-weight: 600; }
  .c-site-header:hover {
    background-color: #fff; }
    @media (max-width: 840px) {
      .c-site-header:hover {
        background: none; } }
  .c-site-header.is-fixed {
    position: fixed;
    background-color: #fff; }
  .page-template-page-slider .c-site-header {
    background-color: #fff; }

.c-site-header__inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }
  @media (max-width: 840px) {
    .c-site-header__inset {
      display: block; } }

.c-site-header__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  @media (max-width: 840px) {
    .c-site-header__content {
      display: block;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      height: calc(100vh - 80px);
      overflow-y: auto;
      padding: 0 20px;
      background-color: #fff;
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
      -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.64, 0, 0.35, 1);
      transition: -webkit-transform 0.15s cubic-bezier(0.64, 0, 0.35, 1);
      -o-transition: transform 0.15s cubic-bezier(0.64, 0, 0.35, 1);
      transition: transform 0.15s cubic-bezier(0.64, 0, 0.35, 1);
      transition: transform 0.15s cubic-bezier(0.64, 0, 0.35, 1), -webkit-transform 0.15s cubic-bezier(0.64, 0, 0.35, 1); } }

/* -------------------------------------------------------------------------
 * SITE NAVIGATION
 *
 *
 */
.c-site-nav {
  font-size: 12px; }

/* -------------------------------------------------------------------------
 * SITE PAGES
 *
 *
 */
.c-site-page {
  min-height: calc( 100vh - 175px);
  padding-top: calc( 80px + 40px );
  padding-bottom: 40px; }
  .c-site-page__title {
    font-size: 1.5rem; }
  .c-site-page__text {
    font-size: 1rem; }
  @media (max-width: 960px) {
    .c-site-page {
      min-height: 0; } }

.c-site-page-wrapper {
  padding-left: 20px;
  padding-right: 20px; }
  .c-site-page-wrapper .accordion-title {
    cursor: pointer; }

.c-site-page-intro {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 840px) {
    .c-site-page-intro {
      display: block;
      text-align: center; } }
  .c-site-page-intro__media {
    width: calc(75% - 10px); }
    @media (max-width: 1280px) {
      .c-site-page-intro__media {
        width: calc( ((100% / 3) * 2) - 10px); } }
    @media (max-width: 840px) {
      .c-site-page-intro__media {
        width: 100%; } }
  .c-site-page-intro__content {
    width: calc(25% - 10px); }
    @media (max-width: 1280px) {
      .c-site-page-intro__content {
        width: calc( (100% / 3) - 10px); } }
    @media (max-width: 840px) {
      .c-site-page-intro__content {
        width: 100%;
        padding-top: 30px; } }
  .c-site-page-intro__title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.33333333rem; }

/* -------------------------------------------------------------------------
 * WOOCOMMERCE
 *
 *
 */
.woocommerce mark {
  font-weight: 600;
  padding-left: 0.25em;
  padding-right: 0.25em;
  background-color: #dedede; }
.woocommerce .cart-empty {
  position: absolute;
  top: calc(50% - 80px);
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center; }
  .woocommerce .cart-empty ~ .return-to-shop {
    text-align: center;
    position: absolute;
    top: calc(50% - 80px);
    left: 0;
    width: 100%;
    -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
            transform: translateY(40px); }
.woocommerce .button,
.woocommerce a.button {
  -webkit-transition: background-color 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: background-color 0.3s cubic-bezier(0.64, 0, 0.35, 1);
  transition: background-color 0.3s cubic-bezier(0.64, 0, 0.35, 1); }
  .woocommerce .button.alt,
  .woocommerce a.button.alt {
    background-color: #919191; }
    .woocommerce .button.alt:hover, .woocommerce .button.alt:focus,
    .woocommerce a.button.alt:hover,
    .woocommerce a.button.alt:focus {
      background-color: #777; }
.woocommerce .woocommerce-order-details__title {
  font-size: 1.5rem; }
.woocommerce .woocommerce-customer-details .woocommerce-column__title {
  font-size: 1.5rem; }
.woocommerce .woocommerce-cart-form__cart-item.cart_item {
  background-color: #f5f5f5; }
.woocommerce table.cart img {
  width: 150px !important; }
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #919191; }
  .woocommerce #respond input#submit.alt:hover, .woocommerce #respond input#submit.alt:focus,
  .woocommerce a.button.alt:hover,
  .woocommerce a.button.alt:focus,
  .woocommerce button.button.alt:hover,
  .woocommerce button.button.alt:focus,
  .woocommerce input.button.alt:hover,
  .woocommerce input.button.alt:focus {
    background-color: #777; }

/* -------------------------------------------------------------------------
 * WIDGETS
 *
 * general ................. General
 *
 */
/* -------------------------------------------------------------------------
 * TEMPLATES
 *
 * blog ................. Blog templates
 *
 */
/* -------------------------------------------------------------------------
 * PAGES
 *
 * bespoke ................ Bespoke
 * bio .................... Biografía
 * blog ................... Blog page
 * campaigns............... Campaign's page
 * campana ................ Campaña page
 * colaboraciones ......... Colaboraciones page
 * curation ............... Curation page
 * diario ................. Diario page
 * error .................. Error pages
 * home ................... Home page
 * post ................... Post
 * product ................ Product page
 * slider ................. Slider page
 * store .................. Store page
 * talleres ............... Talleres
 * user ................... User page
 *
 */
/* -------------------------------------------------------------------------
 * BESPOKE
 *
 *
 */
.p-bespoke__file {
  margin: 60px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  @media (max-width: 840px) {
    .p-bespoke__file {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (max-width: 600px) {
    .p-bespoke__file {
      display: block; } }

.p-bespoke__column {
  width: 30%; }
  @media (max-width: 840px) {
    .p-bespoke__column {
      width: 47.5%; } }
  @media (max-width: 600px) {
    .p-bespoke__column {
      width: 100%;
      margin-bottom: 40px; } }
  @media (max-width: 840px) {
    .p-bespoke__column .wpcf7-form {
      margin-top: 40px; } }
  .p-bespoke__column .wpcf7-form [type="submit"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 15px;
    background: #000;
    color: #fff; }
  .p-bespoke__column .wpcf7-form .wpcf7-validation-errors {
    display: none !important; }
  .p-bespoke__column .wpcf7-form .wpcf7-mail-sent-ok {
    padding: 15px;
    border: none;
    background-color: lightgray;
    text-align: center;
    font-weight: 700; }

.p-bespoke__formbox {
  padding: 5px 0 2.5px;
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid lightgrey; }
  .p-bespoke__formbox--wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .p-bespoke__formbox--wrap label {
      width: 100%; }
  .p-bespoke__formbox label {
    font-size: 0.91666667rem;
    padding-right: 5px; }
  .p-bespoke__formbox span {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2; }
    .p-bespoke__formbox span input,
    .p-bespoke__formbox span textarea {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: none;
      background: transparent;
      width: 100%;
      font-size: 0.91666667rem; }
      .p-bespoke__formbox span input:focus,
      .p-bespoke__formbox span textarea:focus {
        outline: 0; }
    .p-bespoke__formbox span input {
      padding: 0 5px; }
    .p-bespoke__formbox span textarea {
      margin-top: 5px;
      height: 30px;
      resize: none; }
  .p-bespoke__formbox .wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    font-style: italic;
    font-size: 0.75rem; }

/* -------------------------------------------------------------------------
 * BIOGRAFÍA
 *
 *
 */
.p-bio-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 40px;
  background-color: #f5f5f5; }
  @media (max-width: 600px) {
    .p-bio-text {
      display: block; } }
  @media (max-width: 480px) {
    .p-bio-text {
      padding: 40px 20px; } }
  .p-bio-text__side:first-child {
    width: calc(40% - 40px); }
    @media (max-width: 1280px) {
      .p-bio-text__side:first-child {
        width: calc(25% - 20px); } }
    @media (max-width: 600px) {
      .p-bio-text__side:first-child {
        width: 100%;
        margin-bottom: 40px; } }
  .p-bio-text__side:last-child {
    width: calc(60% - 40px);
    padding-right: 100px; }
    @media (max-width: 1280px) {
      .p-bio-text__side:last-child {
        width: calc(75% - 20px); } }
    @media (max-width: 840px) {
      .p-bio-text__side:last-child {
        padding-right: 0; } }
    @media (max-width: 600px) {
      .p-bio-text__side:last-child {
        width: 100%; } }

.p-bio-columns {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 40px;
          column-gap: 40px;
  text-align: justify; }
  @media (max-width: 480px) {
    .p-bio-columns {
      -webkit-column-count: 1;
              column-count: 1;
      -webkit-column-gap: 0;
              column-gap: 0; } }

.p-bio-timeline {
  padding: 100px 20px; }

/* -------------------------------------------------------------------------
 * CAMPAÑAS
 *
 *
 */
.p-campaigns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }

.p-campaigns-item {
  max-width: 40%;
  margin-top: 60px;
  margin-bottom: 40px; }
  @media (max-width: 960px) {
    .p-campaigns-item {
      max-width: 45%; } }
  @media (max-width: 320px) {
    .p-campaigns-item {
      max-width: 100%; } }
  .p-campaigns-item__title {
    display: block;
    padding-top: 0.75rem; }

/* -------------------------------------------------------------------------
 * CAMPAÑA
 *
 *
 */
.p-campana__intro {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center; }
.p-campana__separator {
  height: 60px; }
  @media (max-width: 1280px) {
    .p-campana__separator {
      height: 40px; } }
.p-campana__footer {
  padding-top: 60px;
  padding-bottom: 40px; }
  @media (max-width: 1280px) {
    .p-campana__footer {
      padding-top: 40px; } }
  @media (max-width: 600px) {
    .p-campana__footer {
      padding-bottom: 20px; } }

/* -------------------------------------------------------------------------
 * COLABORACIONES
 *
 *
 */
.p-colaboraciones {
  padding: calc(80px + 40px) 40px 40px; }
  @media (max-width: 600px) {
    .p-colaboraciones {
      padding-left: 20px;
      padding-right: 20px; } }

.p-colaboraciones-slider {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #fff;
  opacity: 0;
  z-index: -99;
  -webkit-transition: opacity 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.64, 0, 0.35, 1);
  transition: opacity 0.6s cubic-bezier(0.64, 0, 0.35, 1); }
  .p-colaboraciones-slider.is-open {
    opacity: 1; }
  .p-colaboraciones-slider__inset {
    width: calc(100vw - 160px);
    height: 100%;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 960px) {
      .p-colaboraciones-slider__inset {
        width: calc(100vw - 80px); } }
  .p-colaboraciones-slider__nav, .p-colaboraciones-slider__close {
    z-index: 200;
    position: absolute;
    font-weight: 500;
    cursor: pointer; }
  .p-colaboraciones-slider__nav {
    z-index: 999;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media (max-width: 960px) {
      .p-colaboraciones-slider__nav {
        top: 10px;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; } }
    .p-colaboraciones-slider__nav--prev {
      left: 10px; }
    .p-colaboraciones-slider__nav--next {
      right: 10px; }
    .p-colaboraciones-slider__nav .m-fi {
      display: none; }
  .p-colaboraciones-slider__close {
    z-index: 999;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
  .p-colaboraciones-slider__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff; }
    .p-colaboraciones-slider__item.cycle-slide-active {
      z-index: 999 !important; }
    .p-colaboraciones-slider__item--image {
      position: relative;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 40px; }
    .p-colaboraciones-slider__item--info {
      max-width: 600px;
      max-height: 250px;
      overflow-y: auto;
      margin-left: auto;
      margin-right: auto;
      padding: 40px 20px; }
      @media (max-width: 600px) {
        .p-colaboraciones-slider__item--info {
          padding-top: 20px;
          padding-bottom: 20px; } }

.p-colaboraciones-subslider {
  height: 100%; }
  .p-colaboraciones-subslider__item {
    width: 100%;
    height: 100%; }
    .p-colaboraciones-subslider__item .m-image--background {
      top: 0 !important;
      left: 0 !important;
      -webkit-transform: none !important;
          -ms-transform: none !important;
              transform: none !important; }
  .p-colaboraciones-subslider__nav {
    z-index: 200;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.66666667rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .p-colaboraciones-subslider__nav--prev {
      left: 20px;
      padding-right: 3px; }
      @media (max-width: 960px) {
        .p-colaboraciones-subslider__nav--prev {
          left: 0; } }
    .p-colaboraciones-subslider__nav--next {
      right: 20px;
      padding-left: 3px; }
      @media (max-width: 960px) {
        .p-colaboraciones-subslider__nav--next {
          right: 0; } }

/* -------------------------------------------------------------------------
 * CURATION
 *
 *
 */
.p-curation {
  padding: 80px 20px 0; }

/* -------------------------------------------------------------------------
 * DIARIO
 *
 *
 */
.p-diario {
  padding: 80px 20px 0; }

/* -------------------------------------------------------------------------
 * HOME PAGE
 *
 *
 */
.p-home {
  font-size: 12px; }
  .p-home__logo {
    margin-bottom: 20px; }
  .p-home__info {
    position: absolute;
    top: 40px;
    left: 40px;
    max-width: 200px; }
  .p-home__author {
    position: absolute;
    bottom: 20px;
    right: 40px; }
  .p-home.is-light {
    color: #fff; }
    .p-home.is-light a {
      color: #fff; }

/* -------------------------------------------------------------------------
 * POST
 *
 *
 */
.p-post {
  padding: 80px 20px 40px; }

/* -------------------------------------------------------------------------
 * PRODUCT PAGE
 *
 *
 */
.p-product {
  min-height: 100vh;
  background-color: #f5f5f5; }
  .p-product .woocommerce-error {
    z-index: 200;
    position: absolute;
    bottom: 200px;
    left: 0;
    width: 100%;
    margin-bottom: 0; }
    @media (max-width: 840px) {
      .p-product .woocommerce-error {
        bottom: calc( 200px - 50px ); } }

.p-product__content {
  position: relative;
  height: 100vh; }

.p-product__footer {
  z-index: 200;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px; }
  @media (max-width: 840px) {
    .p-product__footer {
      height: auto;
      display: block;
      bottom: auto;
      top: calc(100vh - calc( 200px - 50px )); } }

.p-product__footer-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 10px 30px 20px; }
  .p-product__footer-side--left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc( calc(100% / 16) * 12);
    background-color: rgba(255, 255, 255, 0.8); }
    @media (max-width: 1280px) {
      .p-product__footer-side--left {
        width: calc( calc(100% / 10) * 8); } }
    @media (max-width: 840px) {
      .p-product__footer-side--left {
        width: 100%; } }
    .p-product__footer-side--left .p-product__footer-column {
      width: calc(100% / 12); }
      @media (max-width: 1280px) {
        .p-product__footer-side--left .p-product__footer-column {
          width: calc(100% / 6); } }
      @media (max-width: 840px) {
        .p-product__footer-side--left .p-product__footer-column {
          width: calc(100% / 4); } }
      @media (max-width: 600px) {
        .p-product__footer-side--left .p-product__footer-column {
          width: calc(100% / 2); } }
      .p-product__footer-side--left .p-product__footer-column select {
        max-width: 100%; }
      .p-product__footer-side--left .p-product__footer-column--double {
        width: calc( calc(100% / 12) * 2); }
        @media (max-width: 1280px) {
          .p-product__footer-side--left .p-product__footer-column--double {
            width: calc(100% / 6); } }
        @media (max-width: 840px) {
          .p-product__footer-side--left .p-product__footer-column--double {
            width: calc(100% / 4); } }
        @media (max-width: 600px) {
          .p-product__footer-side--left .p-product__footer-column--double {
            width: calc(100% / 2);
            margin-top: 40px; } }
      .p-product__footer-side--left .p-product__footer-column--quadruple {
        width: calc( calc(100% / 12) * 4); }
        @media (max-width: 1280px) {
          .p-product__footer-side--left .p-product__footer-column--quadruple {
            width: calc( calc(100% / 6) * 2); } }
        @media (max-width: 840px) {
          .p-product__footer-side--left .p-product__footer-column--quadruple {
            width: 100%;
            padding-bottom: 20px; } }
      .p-product__footer-side--left .p-product__footer-column--sixfold {
        display: none;
        width: calc( calc(100% / 12) * 4); }
        @media (max-width: 1280px) {
          .p-product__footer-side--left .p-product__footer-column--sixfold {
            width: calc( calc(100% / 6) * 2); } }
        @media (max-width: 840px) {
          .p-product__footer-side--left .p-product__footer-column--sixfold {
            width: calc( (100% / 4) * 3); } }
        @media (max-width: 600px) {
          .p-product__footer-side--left .p-product__footer-column--sixfold {
            width: calc(100% / 2); } }
  .p-product__footer-side--right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc( calc(100% / 16) * 4);
    background-color: #ededed; }
    @media (max-width: 1280px) {
      .p-product__footer-side--right {
        width: calc( calc(100% / 10) * 2); } }
    @media (max-width: 840px) {
      .p-product__footer-side--right {
        width: 100%;
        height: calc( 200px - 50px );
        background-color: #efefef75; } }
    .p-product__footer-side--right .p-product__footer-row {
      height: 100%; }
    .p-product__footer-side--right .p-product__footer-column:first-child {
      width: 60%; }
    .p-product__footer-side--right .p-product__footer-column:last-child {
      width: 40%; }

.p-product__footer-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .p-product__footer-row--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .p-product__footer-row--vertical .c-product__price {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-bottom: 0; }
  .p-product__footer-row--h50 {
    height: 50% !important; }
  .p-product__footer-row:nth-child(2) {
    margin-top: 20px; }

.p-product__footer-column {
  padding-right: 10px; }
  .p-product__footer-column--align-down {
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

/* -------------------------------------------------------------------------
 * SLIDER PAGE
 *
 *
 */
.p-slider {
  padding-bottom: 0; }

.p-slider__content {
  overflow: hidden; }

.p-slider__slide {
  width: 100%;
  padding: 40px 60px 80px; }
  @media (max-width: 480px) {
    .p-slider__slide {
      padding: 20px 40px 60px; } }
  .p-slider__slide a {
    display: block; }

.p-slider__image {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.p-slider__nav {
  z-index: 999;
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  @media (max-width: 480px) {
    .p-slider__nav {
      font-size: 20px; } }
  .p-slider__nav--prev {
    left: 10px; }
  .p-slider__nav--next {
    right: 10px; }

/* -------------------------------------------------------------------------
 * STORE PAGE
 *
 *
 */
.p-store {
  margin-top: calc(80px + 20px); }

/* -------------------------------------------------------------------------
 * TALLERES
 *
 *
 */
.p-talleres {
  padding-top: 80px;
  padding-bottom: 40px; }

.p-talleres-section-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 40px 500px; }
  @media (max-width: 1280px) {
    .p-talleres-section-1 {
      padding-bottom: 350px; } }
  @media (max-width: 840px) {
    .p-talleres-section-1 {
      display: block;
      padding-top: 40px;
      padding-bottom: 300px; } }
  @media (max-width: 480px) {
    .p-talleres-section-1 {
      padding: 40px 20px 200px; } }
  @media (max-width: 840px) {
    .p-talleres-section-1__side {
      width: 100% !important; } }
  .p-talleres-section-1__side--left {
    width: calc(45% - 40px); }
    @media (max-width: 1280px) {
      .p-talleres-section-1__side--left {
        width: calc(40% - 20px); } }
  .p-talleres-section-1__side--right {
    width: calc(55% - 40px); }
    @media (max-width: 1280px) {
      .p-talleres-section-1__side--right {
        width: calc(60% - 20px); } }

.p-talleres-gallery {
  max-width: 80%; }
  @media (max-width: 1600px) {
    .p-talleres-gallery {
      max-width: 100%; } }
  @media (max-width: 840px) {
    .p-talleres-gallery {
      margin-bottom: 40px; } }
  .p-talleres-gallery__caption {
    z-index: 999;
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #fff; }

.p-talleres-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 480px) {
    .p-talleres-city {
      display: block; } }
  .p-talleres-city__side {
    width: calc(50% - 40px);
    max-width: 350px; }
    @media (max-width: 1280px) {
      .p-talleres-city__side {
        width: calc(50% - 20px); } }
    @media (max-width: 480px) {
      .p-talleres-city__side {
        width: 100%; } }
  .p-talleres-city:first-child {
    margin-bottom: 80px; }
    @media (max-width: 480px) {
      .p-talleres-city:first-child {
        margin-bottom: 60px; } }

.p-talleres-section-2 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 250px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (max-width: 960px) {
    .p-talleres-section-2 {
      padding-top: 150px;
      padding-bottom: 150px; } }
  @media (max-width: 600px) {
    .p-talleres-section-2 {
      display: block;
      padding-top: 80px;
      padding-bottom: 80px; } }
  @media (max-width: 480px) {
    .p-talleres-section-2 {
      padding-left: 20px;
      padding-right: 20px; } }
  .p-talleres-section-2__side {
    width: calc(50% - 80px); }
    @media (max-width: 960px) {
      .p-talleres-section-2__side {
        width: calc(50% - 40px); } }
    @media (max-width: 600px) {
      .p-talleres-section-2__side {
        width: 100%; } }
    .p-talleres-section-2__side:first-child {
      font-size: 1.33333333rem; }
      @media (max-width: 600px) {
        .p-talleres-section-2__side:first-child {
          margin-bottom: 60px; } }
      @media (max-width: 480px) {
        .p-talleres-section-2__side:first-child {
          font-size: 1.16666667rem; } }

.p-talleres-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 960px) {
    .p-talleres-team {
      display: block; } }
  .p-talleres-team__side {
    width: 50%; }
    @media (max-width: 960px) {
      .p-talleres-team__side {
        width: 100%; }
        .p-talleres-team__side:first-child {
          margin-bottom: 20px; } }

/* -------------------------------------------------------------------------
 * USER PAGES
 *
 *
 */
.p-user .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link {
  margin-bottom: 10px;
  background-color: #ececec; }
  .p-user .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active {
    font-weight: 600;
    background-color: #cccccc; }
  .p-user .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 5px 10px; }

/* -------------------------------------------------------------------------
 * OVERRIDES
 *
 * Safe belt scopes and utilities
 *
 * scopes ..................... Untrusted or corrupted sources under control
 * utilities .................. Helper classes with important statements
 *
 */
/* -------------------------------------------------------------------------
 * UTILITIES
 *
 * Helper classes with important statements
 *
 * alignments ............. Force text alignment
 * bgcolors ............... Foundation colors as a background color
 * colors ................. Foundation colors as color
 * font-families .......... Foundation font-families
 * font-sizes ............. Foundation font-sizes
 * heights ................ Heights
 * hidden ................. Force hide elements on certain breakpoints range
 * line-heights ........... Foundation line-heights
 * margins ................ Margin utilities based on foundations spaces
 * paddings ............... Padding utilities based on foundations spaces
 * radiuses ............... Foundation radiuses as border-radius
 * shadows ................ Foundation shadows
 * widths ................. Fraction widths
 *
 */
/* -------------------------------------------------------------------------
 * ALIGNMENTS
 *
 * Force text alignment
 *
 * Params:
 * ALIGNMENTS .......................... Horizontal alignments
 *
 */
.u-align--left {
  text-align: left !important; }

.u-align--center {
  text-align: center !important; }

.u-align--right {
  text-align: right !important; }

@media (min-width: 1px) {
  .u-align--left\@xxxs {
    text-align: left !important; }

  .u-align--center\@xxxs {
    text-align: center !important; }

  .u-align--right\@xxxs {
    text-align: right !important; } }
@media (min-width: 480px) {
  .u-align--left\@xs {
    text-align: left !important; }

  .u-align--center\@xs {
    text-align: center !important; }

  .u-align--right\@xs {
    text-align: right !important; } }
@media (min-width: 600px) {
  .u-align--left\@sm {
    text-align: left !important; }

  .u-align--center\@sm {
    text-align: center !important; }

  .u-align--right\@sm {
    text-align: right !important; } }
@media (min-width: 840px) {
  .u-align--left\@sml {
    text-align: left !important; }

  .u-align--center\@sml {
    text-align: center !important; }

  .u-align--right\@sml {
    text-align: right !important; } }
@media (min-width: 960px) {
  .u-align--left\@md {
    text-align: left !important; }

  .u-align--center\@md {
    text-align: center !important; }

  .u-align--right\@md {
    text-align: right !important; } }
@media (min-width: 1280px) {
  .u-align--left\@lg {
    text-align: left !important; }

  .u-align--center\@lg {
    text-align: center !important; }

  .u-align--right\@lg {
    text-align: right !important; } }
@media (min-width: 1440px) {
  .u-align--left\@xl {
    text-align: left !important; }

  .u-align--center\@xl {
    text-align: center !important; }

  .u-align--right\@xl {
    text-align: right !important; } }
@media (min-width: 1600px) {
  .u-align--left\@xxl {
    text-align: left !important; }

  .u-align--center\@xxl {
    text-align: center !important; }

  .u-align--right\@xxl {
    text-align: right !important; } }
@media (min-width: 1920px) {
  .u-align--left\@xxxl {
    text-align: left !important; }

  .u-align--center\@xxxl {
    text-align: center !important; }

  .u-align--right\@xxxl {
    text-align: right !important; } }
/* -------------------------------------------------------------------------
 * COLORS
 *
 * Foundation colors as a background color
 *
 */
.u-bg-color--brand-primary {
  background-color: #202a4a !important; }

.u-bg-color--brand-secondary {
  background-color: #7581a5 !important; }

.u-bg-color--brand-accent {
  background-color: #d7ffff !important; }

.u-bg-color--brand-primary--ultra-light {
  background-color: #eff0f2 !important; }

.u-bg-color--brand-primary--light {
  background-color: #2f3e6e !important; }

.u-bg-color--brand-primary--semi-light {
  background-color: #28345c !important; }

.u-bg-color--brand-primary--semi-dark {
  background-color: #182038 !important; }

.u-bg-color--brand-primary--dark {
  background-color: #090c15 !important; }

.u-bg-color--brand-secondary--ultra-light {
  background-color: #f5f6f8 !important; }

.u-bg-color--brand-secondary--light {
  background-color: #949db9 !important; }

.u-bg-color--brand-secondary--semi-light {
  background-color: #848faf !important; }

.u-bg-color--brand-secondary--semi-dark {
  background-color: #66739b !important; }

.u-bg-color--brand-secondary--dark {
  background-color: #515c7c !important; }

.u-bg-color--brand-accent--ultra-light {
  background-color: #fcffff !important; }

.u-bg-color--brand-accent--light {
  background-color: white !important; }

.u-bg-color--brand-accent--semi-light {
  background-color: #f1ffff !important; }

.u-bg-color--brand-accent--semi-dark {
  background-color: #beffff !important; }

.u-bg-color--brand-accent--dark {
  background-color: #8bffff !important; }

.u-bg-color--neutral-white {
  background-color: #fff !important; }

.u-bg-color--neutral-black {
  background-color: #000 !important; }

.u-bg-color--neutral-grey--ultra-light {
  background-color: #f2f2f2 !important; }

.u-bg-color--neutral-grey--light {
  background-color: #e6e6e6 !important; }

.u-bg-color--neutral-grey--semi-light {
  background-color: #cccccc !important; }

.u-bg-color--neutral-grey {
  background-color: #b3b3b3 !important; }

.u-bg-color--neutral-grey--semi-dark {
  background-color: #4d4d4d !important; }

.u-bg-color--neutral-grey--dark {
  background-color: #333333 !important; }

.u-bg-color--neutral-grey--ultra-dark {
  background-color: #1a1a1a !important; }

.u-bg-color--neutral-white--transparent {
  background-color: rgba(255, 255, 255, 0) !important; }

.u-bg-color--neutral-black--transparent {
  background-color: transparent !important; }

.u-bg-color--state-success {
  background-color: #8cb338 !important; }

.u-bg-color--state-info {
  background-color: #20a0de !important; }

.u-bg-color--state-warning {
  background-color: #f99500 !important; }

.u-bg-color--state-danger {
  background-color: #c1101f !important; }

.u-bg-color--state-success--ultra-light {
  background-color: #f6f9f1 !important; }

.u-bg-color--state-success--light {
  background-color: #a4ca54 !important; }

.u-bg-color--state-success--semi-light {
  background-color: #9ac441 !important; }

.u-bg-color--state-success--semi-dark {
  background-color: #7da032 !important; }

.u-bg-color--state-success--dark {
  background-color: #5e7926 !important; }

.u-bg-color--state-info--ultra-light {
  background-color: #eff8fc !important; }

.u-bg-color--state-info--light {
  background-color: #4cb3e5 !important; }

.u-bg-color--state-info--semi-light {
  background-color: #36aae2 !important; }

.u-bg-color--state-info--semi-dark {
  background-color: #1d90c8 !important; }

.u-bg-color--state-info--dark {
  background-color: #16709b !important; }

.u-bg-color--state-warning--ultra-light {
  background-color: #fef7ed !important; }

.u-bg-color--state-warning--light {
  background-color: #ffab2d !important; }

.u-bg-color--state-warning--semi-light {
  background-color: #ffa014 !important; }

.u-bg-color--state-warning--semi-dark {
  background-color: #e08600 !important; }

.u-bg-color--state-warning--dark {
  background-color: #ac6700 !important; }

.u-bg-color--state-danger--ultra-light {
  background-color: #faeeef !important; }

.u-bg-color--state-danger--light {
  background-color: #ec182a !important; }

.u-bg-color--state-danger--semi-light {
  background-color: #d91223 !important; }

.u-bg-color--state-danger--semi-dark {
  background-color: #a90e1b !important; }

.u-bg-color--state-danger--dark {
  background-color: #7a0a14 !important; }

.u-bg-color--vendor-facebook {
  background-color: #3b5998 !important; }

.u-bg-color--vendor-twitter {
  background-color: #00aced !important; }

.u-bg-color--vendor-facebook--ultra-light {
  background-color: #f7f7f7 !important; }

.u-bg-color--vendor-facebook--light {
  background-color: #dfe3ee !important; }

.u-bg-color--vendor-facebook--semi-light {
  background-color: #8b9dc3 !important; }

.u-bg-color--vendor-twitter--ultra-light {
  background-color: #fff !important; }

.u-bg-color--vendor-twitter--light {
  background-color: #c0deed !important; }

.u-bg-color--vendor-twitter--semi-light {
  background-color: #1dcaff !important; }

.u-bg-color--vendor-twitter--dark {
  background-color: #0084b4 !important; }

.u-bg-color--other-digital-blue {
  background-color: #000 !important; }

.u-bg-color--other-text {
  background-color: #000 !important; }

.u-bg-color--other-bg-photos {
  background-color: #f5f5f5 !important; }

/* -------------------------------------------------------------------------
 * COLORS
 *
 * Foundation colors as color
 *
 */
.u-color--brand-primary {
  color: #202a4a !important; }

.u-color--brand-secondary {
  color: #7581a5 !important; }

.u-color--brand-accent {
  color: #d7ffff !important; }

.u-color--brand-primary--ultra-light {
  color: #eff0f2 !important; }

.u-color--brand-primary--light {
  color: #2f3e6e !important; }

.u-color--brand-primary--semi-light {
  color: #28345c !important; }

.u-color--brand-primary--semi-dark {
  color: #182038 !important; }

.u-color--brand-primary--dark {
  color: #090c15 !important; }

.u-color--brand-secondary--ultra-light {
  color: #f5f6f8 !important; }

.u-color--brand-secondary--light {
  color: #949db9 !important; }

.u-color--brand-secondary--semi-light {
  color: #848faf !important; }

.u-color--brand-secondary--semi-dark {
  color: #66739b !important; }

.u-color--brand-secondary--dark {
  color: #515c7c !important; }

.u-color--brand-accent--ultra-light {
  color: #fcffff !important; }

.u-color--brand-accent--light {
  color: white !important; }

.u-color--brand-accent--semi-light {
  color: #f1ffff !important; }

.u-color--brand-accent--semi-dark {
  color: #beffff !important; }

.u-color--brand-accent--dark {
  color: #8bffff !important; }

.u-color--neutral-white {
  color: #fff !important; }

.u-color--neutral-black {
  color: #000 !important; }

.u-color--neutral-grey--ultra-light {
  color: #f2f2f2 !important; }

.u-color--neutral-grey--light {
  color: #e6e6e6 !important; }

.u-color--neutral-grey--semi-light {
  color: #cccccc !important; }

.u-color--neutral-grey {
  color: #b3b3b3 !important; }

.u-color--neutral-grey--semi-dark {
  color: #4d4d4d !important; }

.u-color--neutral-grey--dark {
  color: #333333 !important; }

.u-color--neutral-grey--ultra-dark {
  color: #1a1a1a !important; }

.u-color--neutral-white--transparent {
  color: rgba(255, 255, 255, 0) !important; }

.u-color--neutral-black--transparent {
  color: transparent !important; }

.u-color--state-success {
  color: #8cb338 !important; }

.u-color--state-info {
  color: #20a0de !important; }

.u-color--state-warning {
  color: #f99500 !important; }

.u-color--state-danger {
  color: #c1101f !important; }

.u-color--state-success--ultra-light {
  color: #f6f9f1 !important; }

.u-color--state-success--light {
  color: #a4ca54 !important; }

.u-color--state-success--semi-light {
  color: #9ac441 !important; }

.u-color--state-success--semi-dark {
  color: #7da032 !important; }

.u-color--state-success--dark {
  color: #5e7926 !important; }

.u-color--state-info--ultra-light {
  color: #eff8fc !important; }

.u-color--state-info--light {
  color: #4cb3e5 !important; }

.u-color--state-info--semi-light {
  color: #36aae2 !important; }

.u-color--state-info--semi-dark {
  color: #1d90c8 !important; }

.u-color--state-info--dark {
  color: #16709b !important; }

.u-color--state-warning--ultra-light {
  color: #fef7ed !important; }

.u-color--state-warning--light {
  color: #ffab2d !important; }

.u-color--state-warning--semi-light {
  color: #ffa014 !important; }

.u-color--state-warning--semi-dark {
  color: #e08600 !important; }

.u-color--state-warning--dark {
  color: #ac6700 !important; }

.u-color--state-danger--ultra-light {
  color: #faeeef !important; }

.u-color--state-danger--light {
  color: #ec182a !important; }

.u-color--state-danger--semi-light {
  color: #d91223 !important; }

.u-color--state-danger--semi-dark {
  color: #a90e1b !important; }

.u-color--state-danger--dark {
  color: #7a0a14 !important; }

.u-color--vendor-facebook {
  color: #3b5998 !important; }

.u-color--vendor-twitter {
  color: #00aced !important; }

.u-color--vendor-facebook--ultra-light {
  color: #f7f7f7 !important; }

.u-color--vendor-facebook--light {
  color: #dfe3ee !important; }

.u-color--vendor-facebook--semi-light {
  color: #8b9dc3 !important; }

.u-color--vendor-twitter--ultra-light {
  color: #fff !important; }

.u-color--vendor-twitter--light {
  color: #c0deed !important; }

.u-color--vendor-twitter--semi-light {
  color: #1dcaff !important; }

.u-color--vendor-twitter--dark {
  color: #0084b4 !important; }

.u-color--other-digital-blue {
  color: #000 !important; }

.u-color--other-text {
  color: #000 !important; }

.u-color--other-bg-photos {
  color: #f5f5f5 !important; }

/* -------------------------------------------------------------------------
 * FONT-FAMILIES
 *
 * Foundation font-families
 *
 */
.u-font-family--primary {
  font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif !important; }

.u-font-family--secondary {
  font-family: Helvetica, Arial, Tahoma, sans-serif !important; }

.u-font-family--accent {
  font-family: Georgia, Helvetica, Arial, Tahoma, sans-serif !important; }

/* -------------------------------------------------------------------------
 * FONT-SIZES
 *
 * Foundation font-sizes
 *
 */
.u-font-size--xxxs {
  font-size: 0.66666667rem !important; }

.u-font-size--xxss {
  font-size: 0.75rem !important; }

.u-font-size--xxs {
  font-size: 0.83333333rem !important; }

.u-font-size--xss {
  font-size: 0.91666667rem !important; }

.u-font-size--xs {
  font-size: 1rem !important; }

.u-font-size--s {
  font-size: 1.16666667rem !important; }

.u-font-size--m {
  font-size: 1rem !important; }

.u-font-size--l {
  font-size: 1.5rem !important; }

.u-font-size--xl {
  font-size: 2rem !important; }

.u-font-size--xxl {
  font-size: 2.66666667rem !important; }

.u-font-size--xxxl {
  font-size: 3.33333333rem !important; }

/* -------------------------------------------------------------------------
 * HEIGHTS
 *
 *
 *
 */
.u-height--min-full-viewpage {
  min-height: 100vh; }

/* -------------------------------------------------------------------------
 * HIDDEN
 *
 * Force hide elements on certain breakpoints range
 *
 */
.u-hidden {
  display: none !important; }

@media (min-width: 1px) {
  .u-hidden--from\@xxxs {
    display: none !important; } }

@media (min-width: 480px) {
  .u-hidden--from\@xs {
    display: none !important; } }

@media (min-width: 600px) {
  .u-hidden--from\@sm {
    display: none !important; } }

@media (min-width: 840px) {
  .u-hidden--from\@sml {
    display: none !important; } }

@media (min-width: 960px) {
  .u-hidden--from\@md {
    display: none !important; } }

@media (min-width: 1280px) {
  .u-hidden--from\@lg {
    display: none !important; } }

@media (min-width: 1440px) {
  .u-hidden--from\@xl {
    display: none !important; } }

@media (min-width: 1600px) {
  .u-hidden--from\@xxl {
    display: none !important; } }

@media (min-width: 1920px) {
  .u-hidden--from\@xxxl {
    display: none !important; } }

@media all {
  .u-hidden--until\@xxxs {
    display: none !important; } }

@media (max-width: 479px) {
  .u-hidden--until\@xs {
    display: none !important; } }

@media (max-width: 599px) {
  .u-hidden--until\@sm {
    display: none !important; } }

@media (max-width: 839px) {
  .u-hidden--until\@sml {
    display: none !important; } }

@media (max-width: 959px) {
  .u-hidden--until\@md {
    display: none !important; } }

@media (max-width: 1279px) {
  .u-hidden--until\@lg {
    display: none !important; } }

@media (max-width: 1439px) {
  .u-hidden--until\@xl {
    display: none !important; } }

@media (max-width: 1599px) {
  .u-hidden--until\@xxl {
    display: none !important; } }

@media (max-width: 1919px) {
  .u-hidden--until\@xxxl {
    display: none !important; } }

/* -------------------------------------------------------------------------
 * LINE-HEIGHTS
 *
 * Foundation line-heights
 *
 */
.u-line-height--tiny {
  line-height: 1 !important; }

.u-line-height--small {
  line-height: 1.25 !important; }

.u-line-height--medium {
  line-height: 1.618 !important; }

.u-line-height--large {
  line-height: 2 !important; }

/* -------------------------------------------------------------------------
 * Margins
 *
 * Margin utilities based on foundations spaces
 *
 */
.u-mt--none {
  margin-top: 0 !important; }

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

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

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

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

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

.u-m--none {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important; }

.u-mt--tiny {
  margin-top: 0.5rem !important; }

.u-mr--tiny {
  margin-right: 0.5rem !important; }

.u-mb--tiny {
  margin-bottom: 0.5rem !important; }

.u-ml--tiny {
  margin-left: 0.5rem !important; }

.u-mv--tiny {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.u-mh--tiny {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important; }

.u-m--tiny {
  margin-top: 0.5rem !important;
  margin-right: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  margin-left: 0.5rem !important; }

.u-mt--small {
  margin-top: 1rem !important; }

.u-mr--small {
  margin-right: 1rem !important; }

.u-mb--small {
  margin-bottom: 1rem !important; }

.u-ml--small {
  margin-left: 1rem !important; }

.u-mv--small {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.u-mh--small {
  margin-left: 1rem !important;
  margin-right: 1rem !important; }

.u-m--small {
  margin-top: 1rem !important;
  margin-right: 1rem !important;
  margin-bottom: 1rem !important;
  margin-left: 1rem !important; }

.u-mt--medium {
  margin-top: 2rem !important; }

.u-mr--medium {
  margin-right: 2rem !important; }

.u-mb--medium {
  margin-bottom: 2rem !important; }

.u-ml--medium {
  margin-left: 2rem !important; }

.u-mv--medium {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }

.u-mh--medium {
  margin-left: 2rem !important;
  margin-right: 2rem !important; }

.u-m--medium {
  margin-top: 2rem !important;
  margin-right: 2rem !important;
  margin-bottom: 2rem !important;
  margin-left: 2rem !important; }

.u-mt--large {
  margin-top: 4rem !important; }

.u-mr--large {
  margin-right: 4rem !important; }

.u-mb--large {
  margin-bottom: 4rem !important; }

.u-ml--large {
  margin-left: 4rem !important; }

.u-mv--large {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important; }

.u-mh--large {
  margin-left: 4rem !important;
  margin-right: 4rem !important; }

.u-m--large {
  margin-top: 4rem !important;
  margin-right: 4rem !important;
  margin-bottom: 4rem !important;
  margin-left: 4rem !important; }

.u-mt--huge {
  margin-top: 8rem !important; }

.u-mr--huge {
  margin-right: 8rem !important; }

.u-mb--huge {
  margin-bottom: 8rem !important; }

.u-ml--huge {
  margin-left: 8rem !important; }

.u-mv--huge {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important; }

.u-mh--huge {
  margin-left: 8rem !important;
  margin-right: 8rem !important; }

.u-m--huge {
  margin-top: 8rem !important;
  margin-right: 8rem !important;
  margin-bottom: 8rem !important;
  margin-left: 8rem !important; }

/* -------------------------------------------------------------------------
 * Paddings
 *
 * Padding utilities based on foundations spaces
 *
 */
.u-pt--none {
  padding-top: 0 !important; }

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

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

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

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

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

.u-p--none {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important; }

.u-pt--tiny {
  padding-top: 0.5rem !important; }

.u-pr--tiny {
  padding-right: 0.5rem !important; }

.u-pb--tiny {
  padding-bottom: 0.5rem !important; }

.u-pl--tiny {
  padding-left: 0.5rem !important; }

.u-pv--tiny {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.u-ph--tiny {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important; }

.u-p--tiny {
  padding-top: 0.5rem !important;
  padding-right: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0.5rem !important; }

.u-pt--small {
  padding-top: 1rem !important; }

.u-pr--small {
  padding-right: 1rem !important; }

.u-pb--small {
  padding-bottom: 1rem !important; }

.u-pl--small {
  padding-left: 1rem !important; }

.u-pv--small {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.u-ph--small {
  padding-left: 1rem !important;
  padding-right: 1rem !important; }

.u-p--small {
  padding-top: 1rem !important;
  padding-right: 1rem !important;
  padding-bottom: 1rem !important;
  padding-left: 1rem !important; }

.u-pt--medium {
  padding-top: 2rem !important; }

.u-pr--medium {
  padding-right: 2rem !important; }

.u-pb--medium {
  padding-bottom: 2rem !important; }

.u-pl--medium {
  padding-left: 2rem !important; }

.u-pv--medium {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }

.u-ph--medium {
  padding-left: 2rem !important;
  padding-right: 2rem !important; }

.u-p--medium {
  padding-top: 2rem !important;
  padding-right: 2rem !important;
  padding-bottom: 2rem !important;
  padding-left: 2rem !important; }

.u-pt--large {
  padding-top: 4rem !important; }

.u-pr--large {
  padding-right: 4rem !important; }

.u-pb--large {
  padding-bottom: 4rem !important; }

.u-pl--large {
  padding-left: 4rem !important; }

.u-pv--large {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important; }

.u-ph--large {
  padding-left: 4rem !important;
  padding-right: 4rem !important; }

.u-p--large {
  padding-top: 4rem !important;
  padding-right: 4rem !important;
  padding-bottom: 4rem !important;
  padding-left: 4rem !important; }

.u-pt--huge {
  padding-top: 8rem !important; }

.u-pr--huge {
  padding-right: 8rem !important; }

.u-pb--huge {
  padding-bottom: 8rem !important; }

.u-pl--huge {
  padding-left: 8rem !important; }

.u-pv--huge {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important; }

.u-ph--huge {
  padding-left: 8rem !important;
  padding-right: 8rem !important; }

.u-p--huge {
  padding-top: 8rem !important;
  padding-right: 8rem !important;
  padding-bottom: 8rem !important;
  padding-left: 8rem !important; }

/* -------------------------------------------------------------------------
 * RADIUSES
 *
 * Foundation radiuses as border-radius
 *
 */
.u-radius--none {
  border-radius: 0 !important; }

.u-radius--small {
  border-radius: 3px !important; }

.u-radius--medium {
  border-radius: 6px !important; }

.u-radius--large {
  border-radius: 12px !important; }

/* -------------------------------------------------------------------------
 * SHADOWS
 *
 * Foundation shadows
 *
 */
.u-shadow--discrete {
  -webkit-box-shadow: 2px 2px 2px 2px !important;
          box-shadow: 2px 2px 2px 2px !important; }

.u-shadow--elevated {
  -webkit-box-shadow: 0 14px 28px 0 !important;
          box-shadow: 0 14px 28px 0 !important; }

.u-shadow--sunken {
  -webkit-box-shadow: inset 0 0 28px 0 !important;
          box-shadow: inset 0 0 28px 0 !important; }

/* -------------------------------------------------------------------------
 * WIDTHS
 *
 * Generates a series of utility classes that give a fluid width to
 * whichever element they're applied, combining the fractions numbers, e.g.:
 *
 *   <img src="" alt="" class="u-1/2" />
 *
 * These classes are most commonly used in conjunction with objects, e.g.:
 *
 *   <div class="o-layout__item  u-1/2">
 *
 * By default, will also generate responsive variants of each of these
 * classes by using your Sass MQ configuration, e.g.:
 *
 *   <div class="o-layout__item  u-1/1  u-1/2@sm  u-1/3@lg">
 *
 * Optionally, offset classes can br generated which can push and pull
 * elements left and right by a specified amount, e.g.:
 *
 *   <div class="o-layout__item  u-2/3  u-pull--1/3">
 *
 * This is useful for making very granular changes to the rendered order of
 * items in a layout.
 *
 * N.B. This option is turned off by default.
 */
.u-1\/1 {
  width: 100% !important; }

.u-1\/2 {
  width: 50% !important; }

.u-1\/3 {
  width: 33.33333333% !important; }

.u-2\/3 {
  width: 66.66666667% !important; }

.u-1\/4 {
  width: 25% !important; }

.u-2\/4 {
  width: 50% !important; }

.u-3\/4 {
  width: 75% !important; }

.u-1\/5 {
  width: 20% !important; }

.u-2\/5 {
  width: 40% !important; }

.u-3\/5 {
  width: 60% !important; }

.u-4\/5 {
  width: 80% !important; }

@media (min-width: 1px) {
  .u-1\/1\@xxxs {
    width: 100% !important; }

  .u-1\/2\@xxxs {
    width: 50% !important; }

  .u-1\/3\@xxxs {
    width: 33.33333333% !important; }

  .u-2\/3\@xxxs {
    width: 66.66666667% !important; }

  .u-1\/4\@xxxs {
    width: 25% !important; }

  .u-2\/4\@xxxs {
    width: 50% !important; }

  .u-3\/4\@xxxs {
    width: 75% !important; }

  .u-1\/5\@xxxs {
    width: 20% !important; }

  .u-2\/5\@xxxs {
    width: 40% !important; }

  .u-3\/5\@xxxs {
    width: 60% !important; }

  .u-4\/5\@xxxs {
    width: 80% !important; } }
@media (min-width: 480px) {
  .u-1\/1\@xs {
    width: 100% !important; }

  .u-1\/2\@xs {
    width: 50% !important; }

  .u-1\/3\@xs {
    width: 33.33333333% !important; }

  .u-2\/3\@xs {
    width: 66.66666667% !important; }

  .u-1\/4\@xs {
    width: 25% !important; }

  .u-2\/4\@xs {
    width: 50% !important; }

  .u-3\/4\@xs {
    width: 75% !important; }

  .u-1\/5\@xs {
    width: 20% !important; }

  .u-2\/5\@xs {
    width: 40% !important; }

  .u-3\/5\@xs {
    width: 60% !important; }

  .u-4\/5\@xs {
    width: 80% !important; } }
@media (min-width: 600px) {
  .u-1\/1\@sm {
    width: 100% !important; }

  .u-1\/2\@sm {
    width: 50% !important; }

  .u-1\/3\@sm {
    width: 33.33333333% !important; }

  .u-2\/3\@sm {
    width: 66.66666667% !important; }

  .u-1\/4\@sm {
    width: 25% !important; }

  .u-2\/4\@sm {
    width: 50% !important; }

  .u-3\/4\@sm {
    width: 75% !important; }

  .u-1\/5\@sm {
    width: 20% !important; }

  .u-2\/5\@sm {
    width: 40% !important; }

  .u-3\/5\@sm {
    width: 60% !important; }

  .u-4\/5\@sm {
    width: 80% !important; } }
@media (min-width: 840px) {
  .u-1\/1\@sml {
    width: 100% !important; }

  .u-1\/2\@sml {
    width: 50% !important; }

  .u-1\/3\@sml {
    width: 33.33333333% !important; }

  .u-2\/3\@sml {
    width: 66.66666667% !important; }

  .u-1\/4\@sml {
    width: 25% !important; }

  .u-2\/4\@sml {
    width: 50% !important; }

  .u-3\/4\@sml {
    width: 75% !important; }

  .u-1\/5\@sml {
    width: 20% !important; }

  .u-2\/5\@sml {
    width: 40% !important; }

  .u-3\/5\@sml {
    width: 60% !important; }

  .u-4\/5\@sml {
    width: 80% !important; } }
@media (min-width: 960px) {
  .u-1\/1\@md {
    width: 100% !important; }

  .u-1\/2\@md {
    width: 50% !important; }

  .u-1\/3\@md {
    width: 33.33333333% !important; }

  .u-2\/3\@md {
    width: 66.66666667% !important; }

  .u-1\/4\@md {
    width: 25% !important; }

  .u-2\/4\@md {
    width: 50% !important; }

  .u-3\/4\@md {
    width: 75% !important; }

  .u-1\/5\@md {
    width: 20% !important; }

  .u-2\/5\@md {
    width: 40% !important; }

  .u-3\/5\@md {
    width: 60% !important; }

  .u-4\/5\@md {
    width: 80% !important; } }
@media (min-width: 1280px) {
  .u-1\/1\@lg {
    width: 100% !important; }

  .u-1\/2\@lg {
    width: 50% !important; }

  .u-1\/3\@lg {
    width: 33.33333333% !important; }

  .u-2\/3\@lg {
    width: 66.66666667% !important; }

  .u-1\/4\@lg {
    width: 25% !important; }

  .u-2\/4\@lg {
    width: 50% !important; }

  .u-3\/4\@lg {
    width: 75% !important; }

  .u-1\/5\@lg {
    width: 20% !important; }

  .u-2\/5\@lg {
    width: 40% !important; }

  .u-3\/5\@lg {
    width: 60% !important; }

  .u-4\/5\@lg {
    width: 80% !important; } }
@media (min-width: 1440px) {
  .u-1\/1\@xl {
    width: 100% !important; }

  .u-1\/2\@xl {
    width: 50% !important; }

  .u-1\/3\@xl {
    width: 33.33333333% !important; }

  .u-2\/3\@xl {
    width: 66.66666667% !important; }

  .u-1\/4\@xl {
    width: 25% !important; }

  .u-2\/4\@xl {
    width: 50% !important; }

  .u-3\/4\@xl {
    width: 75% !important; }

  .u-1\/5\@xl {
    width: 20% !important; }

  .u-2\/5\@xl {
    width: 40% !important; }

  .u-3\/5\@xl {
    width: 60% !important; }

  .u-4\/5\@xl {
    width: 80% !important; } }
@media (min-width: 1600px) {
  .u-1\/1\@xxl {
    width: 100% !important; }

  .u-1\/2\@xxl {
    width: 50% !important; }

  .u-1\/3\@xxl {
    width: 33.33333333% !important; }

  .u-2\/3\@xxl {
    width: 66.66666667% !important; }

  .u-1\/4\@xxl {
    width: 25% !important; }

  .u-2\/4\@xxl {
    width: 50% !important; }

  .u-3\/4\@xxl {
    width: 75% !important; }

  .u-1\/5\@xxl {
    width: 20% !important; }

  .u-2\/5\@xxl {
    width: 40% !important; }

  .u-3\/5\@xxl {
    width: 60% !important; }

  .u-4\/5\@xxl {
    width: 80% !important; } }
@media (min-width: 1920px) {
  .u-1\/1\@xxxl {
    width: 100% !important; }

  .u-1\/2\@xxxl {
    width: 50% !important; }

  .u-1\/3\@xxxl {
    width: 33.33333333% !important; }

  .u-2\/3\@xxxl {
    width: 66.66666667% !important; }

  .u-1\/4\@xxxl {
    width: 25% !important; }

  .u-2\/4\@xxxl {
    width: 50% !important; }

  .u-3\/4\@xxxl {
    width: 75% !important; }

  .u-1\/5\@xxxl {
    width: 20% !important; }

  .u-2\/5\@xxxl {
    width: 40% !important; }

  .u-3\/5\@xxxl {
    width: 60% !important; }

  .u-4\/5\@xxxl {
    width: 80% !important; } }

	
	
		@font-face {
    font-family: 'ogg_romanregular';
    src: url('ogg-roman-webfont.woff2') format('woff2'),
         url('ogg-roman-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*  FORM RESERVAS */
#popup_reserva .c-popup__inset{

  width:340px;
}


#popup_reserva .c-popup__inset input{
  width:280px !important;
  border-left:0px;
  border-right:0px;
  border-top:0px;
  border-width:3px
}
#popup_reserva .c-popup__inset input[type="submit"]{
  height:50px;
  border-style:none;
  font-size:20px;
  font-weight:bold;
  text-transform: uppercase;
  margin-top:4px;
}
#popup_reserva .c-popup__inset textarea{
  width:280px !important;
  height:50px;
  border-style: none; 
   border-color: Transparent; 
    overflow: auto; 
  
}
.input-disabled{
    background-color:#FFF;
}