@charset "UTF-8";

/*
                                                ,,            ,,                          ,,
 .M"""bgd mm                                    db          `7MM        mm         mm   `7MM                                    OO OO OO
,MI    "Y MM                                                  MM        MM         MM     MM                                    88 88 88
`MMb.   mmMMmm ,pW"Wq.`7MMpdMAo.     `7Mb,od8 `7MM  .P"Ybmmm  MMpMMMb.mmMMmm     mmMMmm   MMpMMMb.  .gP"Ya `7Mb,od8 .gP"Ya      || || ||
  `YMMNq. MM  6W'   `Wb MM   `Wb       MM' "'   MM :MI  I8    MM    MM  MM         MM     MM    MM ,M'   Yb  MM' "',M'   Yb     || || ||
.     `MM MM  8M     M8 MM    M8       MM       MM  WmmmP"    MM    MM  MM         MM     MM    MM 8M""""""  MM    8M""""""     `' `' `'
Mb     dM MM  YA.   ,A9 MM   ,AP       MM       MM 8M         MM    MM  MM         MM     MM    MM YM.    ,  MM    YM.    ,     ,, ,, ,,
P"Ybmmd"  `Mbmo`Ybmd9'  MMbmmd'      .JMML.   .JMML.YMMMMMb .JMML  JMML.`Mbmo      `Mbmo.JMML  JMML.`Mbmmd'.JMML.   `Mbmmd'     db db db
                        MM                         6'     dP
                      .JMML.                       Ybmmmd'

Pattern Lab doesn't have any CSS requirements, which means you can write your styles however you want. Hooray!
You can use Sass, Less, vanilla CSS, or some other crazy thing I haven't heard of yet.
So please don't use these styles. They're just here to put together the demo, and nothing more.
They're intentionally gray, boring, and crappy because you're supposed to do this stuff yourself.

Atomic design is philosophically complimentary with these CSS approaches:

* SMACSS by Jonathan Snook http://smacss.com/
* OOCSS by Nicole Sullivan http://oocss.org/
* BEM CSS Methology : http://bem.info/method/
* CSS Guidelines by Harry Roberts : https://github.com/csswizardry/CSS-Guidelines

So feel free to use any of these approaches. Or don't. It's totally up to you.

*/

/*------------------------------------*
    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/

/**
 * ABSTRACTS..............Declarations of Sass variables and mixins
 * Mixins.................Mixin styles that are included in the site
 * Variables..............Variables for styles that are used in the site
 *
 * BASE...................Base/reset styles for certain elements
 * Animation..............Animation base styles
 * Forms..................Form field base styles
 * Global Classes.........Base styles used across the entirety of the site
 * Headings...............Base styles for headings (h1, h2, etc.)
 * Links..................Base styles for links
 * Lists..................Base styles lists
 * Main...................Base styles for main section
 * Media..................Base styles for various media (videos, iframes, etc.)
 * Reset..................Reset base styles (i.e. Display block on certain elements)
 * Tables.................Base styles for tables
 * Text...................Base styles for text elements
 *
 * COMPONENTS.............Styles for certain components
 * Accordion..............Styles for accordion components
 * Article................Styles for article components
 * Blocks.................Styles for block components
 * Buttons................Styles for button components
 * Carousels..............Styles for carousels
 * Comments...............Styles for comments component
 * Footer.................Styles for the footer component
 * Forms..................Styles for form components
 * Header.................Styles for header component
 * Icons..................Styles for icons
 * Lists..................Styles for types of lists
 * Main...................Styles for main section
 * Messaging..............Styles for alerts/messaging components
 * Nav....................Styles for navigation components
 * Sections...............Styles for section components
 * Tabs...................Styles for tabs
 * Text...................Styles for text components
 * Tooltip................Styles for tooltips
 *
 * LAYOUT.................Styles that affect the site's general layout
 * Layout.................Layout styles
 *
 * UTILITIES..............Styles that require a utility class
 *
 */

/*------------------------------------*
    $ABSTRACTS
\*------------------------------------*/

/*------------------------------------*
    #MIXINS
\*------------------------------------*/

/** Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
 *  Usage: @include font-size(1, large);
 */

/**
  Animations
 */

@keyframes zip {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(9px, 0, 0);
  }
}

@keyframes zip-out {
  0% {
    transform: translate3d(9px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/** DW Overwrite
 *  Usage: @include dw-overwrite { };
 */

/** Placeholder text color
 *  Usage: @include placeholder();
 */

/** Remove scrollbars
 *  Usage: @include no-scroll-bars(right);
 */

/** Basic Color Filter
 *  Usage: @include color-filter($color-filter-black);
 */

/** Light Color Filter
 *  Usage: @include color-filter-light($color-filter-white);
 */

/** Selected Color Filter
 *  Usage: @include selected-color-filter($color-filter-black);
 */

/** Selected Light Color Filter
 *  Usage: @include selected-color-filter-light($color-filter-white);
 */

/** Message Icon Status
 *  Usage: @include message-icon-status($success);
 */

/** Spinner Animation
 *  Usage: @include spinner-animation();
 */

/*------------------------------------*
    #VARIABLES
\*------------------------------------*/

/*------------------------------------*
    #COLORS
\*------------------------------------*/

/*
 * 1) Color variables involve a two-tier system to keep colors in sync. The
 *    first tier defines the brand and neutral colors, and the second tier
 *    defines the application of those colors.
 */

/*
 * Brand Colors
 * 1) Brand color variables use English names to define colors to make palettes easier to
 *    identify. Names are generated using this tool: http://chir.ag/projects/name-that-color/
 * 2) Brand color variables should typically not be used directly in Sass partials. Instead, use
 *    second-tier application colors.
 *
 */

/*
  Run Signature Colors
 */

/*
 * Neutral Colors
 * 1) Neutral color variables use a numbered system to define variables for better maintainability.
 *    '$color-gray-10' means '10% gray', which is a gray closer to white than to black. For more info
 *    read https://medium.com/eightshapes-llc/color-in-design-systems-a1c80f65fa3#.brevrq67p
 */

/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 * form validation, etc.
 */

/*------------------------------------*
    #BACKGROUND GRADIENTS
\*------------------------------------*/

/*
 * Text Colors
 * 1) These are non-linked text colors, such as body copy.
 */

/*
 * Heading Colors
 * 1) These are non-linked heading colors, such as h2, h3, etc.
 */

/*
 * Text Link Colors
 * 1) These are for linked text, such as a link found within an article,
 *    navigation link, footer link, etc.
 */

/*
 * Border Colors
 * 1) Border colors are used as decoration or dividers, such as as a seperator
 *    for navigation items, block borders, etc.
 */

/*
 * Filter Colors
 * 1) Filter colors are the colors allowed within the filters on the PCP
 *    this does not include colors that require a gradient or image
 */

/*------------------------------------*
    #TYPOGRAPHY
\*------------------------------------*/

/*------------------------------------*
    #LAYOUT
\*------------------------------------*/

/**
 * Spacing Defaults
 */

/*------------------------------------*
    #BORDERS
\*------------------------------------*/

/**
 * Border Width
 */

/**
 * Border Radius
 */

/*------------------------------------*
    #ANIMATION
\*------------------------------------*/

/**
 * Animation Duration
 */

/*------------------------------------*
    #BREAKPOINTS
\*------------------------------------*/

/**
 * Breakpoints
 */

/**
 * Px Breakpoints
 */

/*------------------------------------*
    #GRID
\*------------------------------------*/

:root {
  --spacing-minor: 20px;
  --spacing-major: 30px;
  --spacing-module: 60px;
  --spacing-inner: 10px;
  --spacing-outer: 20px;
}

@media (min-width: 595px) {
  :root {
    --spacing-minor: 20px;
    --spacing-major: 40px;
    --spacing-module: 80px;
    --spacing-inner: 20px;
    --spacing-outer: 40px;
  }
}

@media (min-width: 1080px) {
  :root {
    --spacing-minor: 30px;
    --spacing-major: 60px;
    --spacing-module: 120px;
    --spacing-inner: 30px;
    --spacing-outer: 60px;
  }
}

@font-face {
  font-family: 'Proxima';
  src: url("fonts/ProximaNovaReg.otf");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Bold';
  src: url("fonts/ProximaNovaBold.otf");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Black';
  src: url("fonts/ProximaNovaBlackIt.otf");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Extra Bold';
  src: url("fonts/ProximaNovaXBold.woff") format("woff"), url("fonts/ProximaNovaXbold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'NeoSans Bold Italic';
  src: url("fonts/NeoSansStd-BoldItalic.otf");
  font-display: swap;
}

@font-face {
  font-family: 'NeoSans Black Italic';
  src: url("fonts/NeoSansStd-BlackItalic.otf");
  font-display: swap;
}

@font-face {
  font-family: 'Happy Feet';
  src: url("fonts/Happy-Feet-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Happy-Feet-Regular.woff") format("woff"), url("fonts/Happy-Feet-Regular.ttf") format("truetype"), url("fonts/Happy-Feet-Regular.svg#HappyFeet-Regular") format("svg");
  font-weight: normal;
  font-display: swap;
}

.font__wrapper .font-primary,
.font__wrapper .font-secondary {
  margin-bottom: 30px;
}

.sg-pattern-head .sg-pattern-title a {
  color: #444;
}

.sg-pattern-category-title .patternLink {
  font-size: 50px;
}

.patternLink {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  color: #444;
}

.experience-copy {
  display: inline-block;
  width: auto;
}

.experience-copy:only-child::after {
  content: '';
}

.experience-copy::after {
  content: ', ';
}

.experience-copy:last-of-type {
  margin: 0;
}

.experience-copy:last-of-type::after {
  content: '';
}

p {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 23px;
}

@media (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  p {
    font-size: 20px;
    line-height: 27px;
  }
}

.type {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 23px;
}

@media (min-width: 768px) {
  .type {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  .type {
    font-size: 20px;
    line-height: 27px;
  }
}

.xx-large {
  color: #F2F2F2;
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
  font-size: 60px;
  line-height: 50px;
}

@media (min-width: 768px) {
  .xx-large {
    font-size: 80px;
    line-height: 70px;
  }
}

@media (min-width: 975px) {
  .xx-large {
    font-size: 100px;
    line-height: 90px;
  }
}

@media (min-width: 1280px) {
  .xx-large {
    font-size: 120px;
    line-height: 100px;
  }
}

.x-large {
  color: #D3D0CD;
  font-family: "Proxima Black", "Helvetica", "Arial", sans-serif;
  font-size: 50px;
  line-height: 50px;
}

@media (min-width: 768px) {
  .x-large {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (min-width: 1280px) {
  .x-large {
    font-size: 75px;
    line-height: 85px;
  }
}

@media (min-width: 1440px) {
  .x-large {
    font-size: 85px;
    line-height: 95px;
  }
}

.x-large--left {
  margin: 0 0 0 -62px;
}

.x-large--left--no-wrapper {
  margin: 0 0 0 -2px;
}

.large {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-size: 30px;
  line-height: 34px;
}

@media (min-width: 768px) {
  .large {
    font-size: 40px;
    line-height: 45px;
  }
}

@media (min-width: 1080px) {
  .large {
    font-size: 50px;
    line-height: 55px;
  }
}

.medium {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-size: 22px;
  line-height: 25px;
}

@media (min-width: 768px) {
  .medium {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (min-width: 1080px) {
  .medium {
    font-size: 30px;
    line-height: 35px;
  }
}

.small {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.small--bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
}

.small--italic {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.33;
}

.small--grey {
  color: #787673;
}

.small--red {
  color: #DF001A;
}

.small--strike {
  text-decoration: line-through;
}

.x-small {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.x-small--bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.x-small--grey {
  font-size: 12px;
  line-height: 16px;
  color: #787673;
}

.x-small--red {
  color: #DF001A;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.x-small--blue {
  color: #0363F7;
  margin: -13px auto 0;
}

@media (min-width: 975px) {
  .x-small--blue {
    margin: -10px auto 0;
  }
}

.x-small--underline {
  margin: 0 0 10px;
  max-width: 100%;
  padding: 0 0 9px;
  position: relative;
}

.x-small--underline::after {
  background: #0363F7;
  bottom: 0;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 32px;
}

.xx-small {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
}

.label {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
}

.label--bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
}

.label--underline {
  margin: 0 0 15px;
  max-width: 100%;
  padding: 0 0 10px;
  position: relative;
}

.label--underline::after {
  background: #0E0E0E;
  bottom: 0;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 32px;
}

.label--underline.white::after {
  background: #FFF;
  content: '';
}

.label--underline.gray::after {
  background: #D3D0CD;
  content: '';
}

.label.x-small--grey {
  text-transform: capitalize;
  letter-spacing: 0;
}

.title.h6 {
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
  font-size: 21px;
  line-height: 21px;
}

@media (max-width: 320px) {
  .title.h6 {
    font-size: 19px;
    line-height: 19px;
  }
}

.title.h6--b-italic {
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
  font-size: 21px;
  line-height: 21px;
}

.super__header {
  position: relative;
}

.super__header::after {
  content: '';
  display: block;
  height: 2px;
  width: 32px;
  background: #0363F7;
  margin: 12px auto 0;
}

.black .label--underline::after {
  background: #0E0E0E;
}

.black .label--underline::after .white {
  background: #FFF;
}

.white {
  color: #FFF;
}

.white .label--underline::after {
  background: #FFF;
}

/**
 * Display secondary font family
 */

.font-primary {
  font-size: 15px;
}

@media (max-width: 320px) {
  .font-primary {
    font-size: 12px;
  }
}

.font-primary.italics {
  font-style: italic;
}

.font-primary--bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
}

.font-primary--xbold {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
}

.font-primary--reg {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.font-secondary {
  font-size: 15px;
}

@media (max-width: 320px) {
  .font-secondary {
    font-size: 12px;
  }
}

.font-secondary--b-italic {
  font-weight: bold;
  font-style: italic;
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
}

.font-secondary--l-italic {
  font-style: italic;
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
}

/*------------------------------------*
    $VENDOR
\*------------------------------------*/

/* Slider */

.slick-loading .slick-list {
  background: #FFF center center no-repeat;
}

/* Icons */

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 45px;
  width: 45px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: 0;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  opacity: 1;
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
  opacity: 0.25;
}

.slick-prev::before,
.slick-next::before {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #FFF;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  left: -25px;
  right: auto;
}

/* Dots */

.slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 20px 0 0;
  margin: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .slick-dots {
    padding: 40px 0 0;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:hover::before {
  color: #D3D0CD;
  opacity: 1;
}

.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:focus::before {
  color: #D3D0CD;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-size: 30px;
  line-height: 18px;
  text-align: center;
  color: #787673;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  color: #0363F7;
  opacity: 1;
}

.slick-dots li:only-child {
  display: none;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track::before,
.slick-track::after {
  content: '';
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  width: 500px;
  display: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! jQuery UI - v1.12.1 - 2020-04-07
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, button.css, controlgroup.css, checkboxradio.css, dialog.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-draggable-handle {
  -ms-touch-action: none;
      touch-action: none;
}

/* Layout helpers
----------------------------------*/

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
      touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

/* workarounds */

/* Support: Firefox 5 - 40 */

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */

.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/

.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/

/* Corner radius */

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */

.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

/* Visually hide jQuery UI accessibility content */

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.ui-widget-overlay {
  background: #0E0E0E;
  opacity: .8;
  position: fixed;
  z-index: 2000;
}

@media (min-width: 320px) and (max-width: 595px) {
  .ui-widget-overlay {
    background: #FFF;
    opacity: 1;
  }
}

/* Contains un-refreshed styles that should be fixed */

.ui-dialog {
  transform: none;
  transition: none;
  max-width: 100%;
  z-index: 2001;
  background: #FFF;
  box-shadow: none;
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0;
  position: absolute;
  top: 0 !important;
  /*------------------------------------*
        Tech-debt from SFRA account
    \*------------------------------------*/
}

@media (min-width: 768px) {
  .ui-dialog {
    width: 660px;
    box-shadow: 0 2px 6px 0 rgba(14, 14, 14, 0.2);
    top: 10% !important;
  }
}

.ui-dialog.no-close .ui-dialog-titlebar-close {
  display: none;
}

.ui-dialog h1,
.ui-dialog h2,
.ui-dialog h3,
.ui-dialog h4,
.ui-dialog h5,
.ui-dialog h6 {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
}

.ui-dialog h1,
.ui-dialog h2 {
  font-size: 2em;
  font-weight: 400;
}

.ui-dialog h4 {
  font-size: 1.385em;
  margin: 1em 0;
}

.ui-dialog p {
  font-size: 15px;
}

.ui-dialog .ui-widget-header {
  cursor: initial;
  background: transparent;
  border: 0;
}

.ui-dialog .ui-dialog-titlebar {
  display: block;
}

.ui-dialog .ui-dialog-titlebar-close {
  background: none;
  border: 0 none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 2;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar-close span {
  display: none;
}

.ui-dialog .ui-dialog-title {
  display: none;
}

.ui-dialog .ui-dialog-content {
  clear: both;
  display: none;
  padding: 0 20px;
  margin: 20px 0;
}

@media (min-width: 1080px) {
  .ui-dialog .ui-dialog-content {
    padding: 0 30px;
    margin: 20px 0;
  }
}

.ui-dialog .m-form * {
  box-sizing: border-box !important;
}

.dialog-content {
  display: none;
}

.ui-button-icon-only {
  text-indent: -9999px;
}

.ui-tooltip {
  background-color: #002855;
  color: #FFF;
  padding: 20px;
  padding-right: 30px;
  z-index: 9999;
}

@media (max-width: 767px) {
  .ui-tooltip {
    position: fixed;
    bottom: 0 !important;
    left: 0 !important;
    top: initial !important;
    width: 100vw;
    max-height: 50vh;
    max-width: 100%;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .ui-tooltip {
    position: absolute;
    max-width: 320px;
    border-radius: 6px;
  }
}

.ui-tooltip.ui-widget-content {
  border: 0;
}

.ui-tooltip .close__icon {
  position: absolute;
  top: 0;
  right: 3px;
  cursor: pointer;
  padding: 10px;
}

.TTratingBox {
  height: 16px;
  width: 90px;
  margin-right: 5px;
  display: inline-block;
}

.TurnToReviewsTeaser {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 12px !important;
  display: inline-block;
}

.TurnToReviewsTeaser a {
  text-decoration: none !important;
}

.TurnToReviewsTeaser a:hover {
  color: #0E0E0E;
}

.TurnToItemTeaser {
  display: inline-block;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 12px !important;
}

.TurnToItemTeaser a {
  text-decoration: none !important;
}

.TurnToItemTeaser a:hover {
  color: #0E0E0E;
}

#TurnToContent {
  clear: both;
}

#TTpartnerRegWindow {
  width: 750px;
  height: 500px;
}

.tt-c-summary-dim__heading,
.tt-o-expander__text,
.tt-c-ratings-breakdown__heading,
.tt-c-review__heading-text,
.tt-c-reviews-summary__rating-text,
.tt-c-reviews-list__heading,
.tt-c-related-questions-list__heading,
.tt-o-expander__text,
.tt-u-hide-until--md,
.tt-c-answer-form__submit,
.tt-c-answer-form__cancel,
.tt-c-reviews-summary__write-review {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif !important;
}

.tt-c-review-responses__source.tt-u-mb--sm {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif !important;
}

.tt-c-instant-answers__submit-question.tt-o-button {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif !important;
}

.tt-c-review-form__submit.tt-o-button.tt-o-button--primary {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif !important;
}

.tt-c-answer--best .tt-c-answer__best-answer-label {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif !important;
}

.tt-c-question__title,
.tt-o-byline__author {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif !important;
  font-size: 15px !important;
  font-weight: normal !important;
  line-height: 20px !important;
}

.tt-c-answer__text {
  color: #0E0E0E !important;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif !important;
  font-size: 15px !important;
  font-weight: normal !important;
  line-height: 20px !important;
}

/*------------------------------------*
    $BASE
\*------------------------------------*/

/*------------------------------------*
    #BODY
\*------------------------------------*/

/**
 * Body base styles
 */

body {
  background: #FFF;
  color: #0E0E0E;
  font: 100%/1.5 "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow-x: hidden;
}

/*------------------------------------*
    #ANIMATION
\*------------------------------------*/

/**
 * Fade Animation
 */

.animate-fade {
  transition: opacity 0.3s ease-out;
}

.animate-fade:hover {
  opacity: 0;
}

/*------------------------------------*
    #GLOBAL CLASSES
\*------------------------------------*/

.site__wrapper {
  margin: 0 20px;
}

@media (min-width: 595px) {
  .site__wrapper {
    margin: 0 40px;
  }
}

@media (min-width: 1080px) {
  .site__wrapper {
    margin: 0 60px;
  }
}

.site__wrapper--padding {
  padding: 0 20px;
}

@media (min-width: 595px) {
  .site__wrapper--padding {
    padding: 0 40px;
  }
}

@media (min-width: 1080px) {
  .site__wrapper--padding {
    padding: 0 60px;
  }
}

.site__wrapper--margin {
  margin: 0 auto 60px;
}

@media (min-width: 768px) {
  .site__wrapper--margin {
    margin: 0 auto 80px;
  }
}

@media (min-width: 975px) {
  .site__wrapper--margin {
    margin: 0 auto 120px;
  }
}

#wrapper.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.skip--content {
  position: fixed;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Set up some rules to govern the grid */

.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  width: 100%;
}

.grid--container {
  width: 1320px;
  max-width: 100% !important;
  overflow: hidden;
  margin: 0 auto;
}

.grid .columns {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
}

/* Wrapping at a maximum width is optional */

.grid-container {
  width: 1020px;
  width: 72.85714rem;
  max-width: 100% !important;
  overflow: hidden;
  margin: 0 auto;
}

.column-offset {
  margin: 0 -15px;
}

.column-width-1 {
  margin: 0 10px 0 0;
  margin: 0 var(--spacing-inner) 0 0;
  width: calc(100% * (1 / 6));
}

@media (min-width: 975px) {
  .column-width-1 {
    width: calc(100% * (1 / 12));
  }
}

.column-width-2 {
  margin: 0 10px 0 0;
  margin: 0 var(--spacing-inner) 0 0;
  width: calc(100% * (2 / 6));
}

@media (min-width: 975px) {
  .column-width-2 {
    width: calc(100% * (2 / 12));
  }
}

.column-width-3 {
  margin: 0 10px 0 0;
  margin: 0 var(--spacing-inner) 0 0;
  width: calc(100% * (3 / 6));
}

@media (min-width: 975px) {
  .column-width-3 {
    width: calc(100% * (3 / 12));
  }
}

@media (min-width: 975px) {
  .column-width-4 {
    margin: 0 10px 0 0;
    margin: 0 var(--spacing-inner) 0 0;
    width: calc(100% * (4 / 12));
  }
}

@media (min-width: 975px) {
  .column-width-6 {
    margin: 0 10px 0 0;
    margin: 0 var(--spacing-inner) 0 0;
    width: calc(100% * (6 / 12));
  }
}

.column-width-8 {
  width: calc(100% * (8 / 12));
}

@media (max-width: 767px) {
  .column-width-8 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .column-width-10 {
    width: calc(100% * (10 / 12));
  }
}

@media (max-width: 767px) {
  .column-width-10 {
    width: calc(100% * (4 / 12));
  }
}

.column-width-half {
  width: 100%;
}

@media (min-width: 595px) {
  .column-width-half {
    margin: 0 10px 0 0;
    margin: 0 var(--spacing-inner) 0 0;
    width: calc(100% * (3 / 6) - 10px);
    width: calc(100% * (3 / 6) - var(--spacing-inner));
  }
}

@media (min-width: 1080px) {
  .column-width-half {
    width: calc(100% * (6 / 12) - 10px);
    width: calc(100% * (6 / 12) - var(--spacing-inner));
  }
}

@media (min-width: 595px) {
  .column-width-half:nth-of-type(2n) {
    margin-right: 0;
    width: calc(100% * (6 / 12));
  }
}

.column-width-full {
  margin: 0 10px 0 0;
  margin: 0 var(--spacing-inner) 0 0;
  width: calc(100% * (6 / 6));
}

@media (min-width: 975px) {
  .column-width-full {
    width: calc(100% * (12 / 12));
  }
}

.col-sm-1 {
  float: left;
  width: calc(100% * (1 / 2));
}

.col-sm-1--margin {
  float: left;
  width: calc(100% * (1 / 2) - 5px);
  width: calc(100% * (1 / 2) - (var(--spacing-inner)  / 2));
}

.col-sm-2 {
  width: calc(100% * (2 / 2));
}

.col-sm-2--site__wrapper {
  float: left;
  width: calc(100% * (2 / 2) - 40px);
  width: calc(100% * (2 / 2) - (2 * var(--spacing-outer)));
}

@media (min-width: 595px) {
  .col-md-1 {
    width: calc(100% * (1 / 6));
  }

  .col-md-1--margin {
    float: left;
    width: calc(100% * (1 / 6) - 5px);
    width: calc(100% * (1 / 6) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 595px) {
  .col-md-2 {
    float: left;
    width: calc(100% * (2 / 6));
  }

  .col-md-2--margin {
    float: left;
    width: calc(100% * (2 / 6) - 5px);
    width: calc(100% * (2 / 6) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 595px) {
  .col-md-3 {
    float: left;
    width: calc(100% * (3 / 6));
  }

  .col-md-3--margin {
    float: left;
    width: calc(100% * (3 / 6) - 5px);
    width: calc(100% * (3 / 6) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 595px) {
  .col-md-4 {
    float: left;
    width: calc(100% * (4 / 6));
  }

  .col-md-4--margin {
    float: left;
    width: calc(100% * (4 / 6) - 5px);
    width: calc(100% * (4 / 6) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 595px) {
  .col-md-5 {
    float: left;
    width: calc(100% * (5 / 6));
  }

  .col-md-5--margin {
    float: left;
    width: calc(100% * (5 / 6) - 5px);
    width: calc(100% * (5 / 6) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 595px) {
  .col-md-6 {
    float: left;
    width: calc(100% * (6 / 6));
  }

  .col-md-6--site__wrapper {
    float: left;
    width: calc(100% * (6 / 6) - 40px);
    width: calc(100% * (6 / 6) - (2 * var(--spacing-outer)));
  }
}

@media (min-width: 975px) {
  .col-lg-1 {
    width: calc(100% * (1 / 12));
  }

  .col-lg-1--margin {
    float: left;
    width: calc(100% * (1 / 12) - 5px);
    width: calc(100% * (1 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-2 {
    width: calc(100% * (2 / 12));
  }

  .col-lg-2--margin {
    float: left;
    width: calc(100% * (2 / 12) - 5px);
    width: calc(100% * (2 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-3 {
    width: calc(100% * (3 / 12));
  }

  .col-lg-3--margin {
    float: left;
    width: calc(100% * (3 / 12) - 5px);
    width: calc(100% * (3 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-4 {
    width: calc(100% * (4 / 12));
  }

  .col-lg-4--margin {
    float: left;
    width: calc(100% * (4 / 12) - 5px);
    width: calc(100% * (4 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-5 {
    width: calc(100% * (5 / 12));
  }

  .col-lg-5--margin {
    float: left;
    width: calc(100% * (5 / 12) - 5px);
    width: calc(100% * (5 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-6 {
    width: calc(100% * (6 / 12));
  }

  .col-lg-6--margin {
    float: left;
    width: calc(100% * (6 / 12) - 5px);
    width: calc(100% * (6 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-7 {
    width: calc(100% * (7 / 12));
  }

  .col-lg-7--margin {
    float: left;
    width: calc(100% * (7 / 12) - 5px);
    width: calc(100% * (7 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-8 {
    width: calc(100% * (8 / 12));
  }

  .col-lg-8--margin {
    float: left;
    width: calc(100% * (8 / 12) - 5px);
    width: calc(100% * (8 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-9 {
    width: calc(100% * (9 / 12));
  }

  .col-lg-9--margin {
    float: left;
    width: calc(100% * (9 / 12) - 5px);
    width: calc(100% * (9 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-10 {
    width: calc(100% * (10 / 12));
  }

  .col-lg-10--margin {
    float: left;
    width: calc(100% * (10 / 12) - 5px);
    width: calc(100% * (10 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-11 {
    width: calc(100% * (11 / 12));
  }

  .col-lg-11--margin {
    float: left;
    width: calc(100% * (11 / 12) - 5px);
    width: calc(100% * (11 / 12) - (var(--spacing-inner)  / 2));
  }
}

@media (min-width: 975px) {
  .col-lg-12 {
    width: calc(100% * (12 / 12));
  }

  .col-lg-12--margin {
    float: left;
    width: calc(100% * (12 / 12) - 5px);
    width: calc(100% * (12 / 12) - (var(--spacing-inner)  / 2));
  }
}

.no-float {
  float: none;
}

.intrinsic {
  display: block;
  height: 0;
  padding-top: 100%;
  position: relative;
  width: 100%;
  background: #F2F2F2;
}

.intrinsic--3x2 {
  padding-top: 66.66%;
}

.intrinsic--4x3 {
  padding-top: 75%;
}

.intrinsic--16x9 {
  padding-top: 56.25%;
}

.intrinsic .intrinsic__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

::-moz-selection {
  background: #0363F7;
  /* WebKit/Blink Browsers */
  color: #FFF;
}

::selection {
  background: #0363F7;
  /* WebKit/Blink Browsers */
  color: #FFF;
}

::-moz-selection {
  background: #0363F7;
  /* Gecko Browsers */
  color: #FFF;
}

.breadcrumbs {
  margin: 10px 0;
}

.breadcrumbs .breadcrumb__link::after {
  bottom: 2px;
  color: #D3D0CD;
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #D3D0CD;
  margin: 0 2px;
  position: relative;
}

.breadcrumbs .breadcrumb__link:last-of-type {
  cursor: default;
  pointer-events: none;
}

.breadcrumbs .breadcrumb__link:last-of-type span {
  border: 0;
}

.breadcrumbs .breadcrumb__link:last-of-type span:hover {
  border: 0;
}

.breadcrumbs .breadcrumb__link:last-of-type::after {
  display: none;
}

.breadcrumbs a {
  cursor: pointer;
}

.breadcrumbs a span {
  border-bottom: 1px solid #D3D0CD;
}

.breadcrumbs a span:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
}

p {
  margin-bottom: 0;
  max-width: 560px;
}

p.description {
  font-size: 14px;
  line-height: 24px;
  max-width: 400px;
}

@media (min-width: 1440px) {
  p.description {
    max-width: 420px;
  }
}

hr {
  border: 0;
  height: 1px;
  /* Set the hr color */
  color: #F2F2F2;
  /* old IE */
  background-color: #F2F2F2;
  /* Modern Browsers */
}

hr.dark {
  color: #D3D0CD;
  /* old IE */
  background-color: #D3D0CD;
  /* Modern Browsers */
}

/**
 * Clearfix pseudo-elements
 */

.cf::before,
.cf::after {
  content: ' ';
  /* 1 */
  display: table;
  /* 2 */
}

.cf::after {
  clear: both;
}

/**
 * Completely remove from the flow and screen readers.
 */

.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/**
 * Completely remove from the flow but leave available to screen readers.
 */

.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * Text align right
 */

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

/**
 * Text align center
 */

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

/**
 * Text Align left
 */

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

/**
 * Hide on small screens
 */

@media all and (max-width: 46.8em) {
  .hide-small {
    display: none;
  }
}

/**
 * Hide on medium screens
 */

@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none;
  }
}

/**
 * Hide on large screens
 */

@media all and (min-width: 50em) {
  .hide-large {
    display: none;
  }
}

/**
 * Show error text color
 */

.error {
  color: #DF001A;
}

/**
 * Show warning text color
 */

.warning {
  color: #0E0E0E;
}

/**
 * Show informational text color
 */

.information {
  color: #0E0E0E;
}

.label--select {
  position: fixed;
  top: -1000px;
  visibility: hidden;
}

.v--hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Hide lazyload images if JavaScript is not supported */

.no-js .lazy {
  display: none;
}

/* Avoid empty images to appear as broken */

img:not([src]):not([srcset]) {
  visibility: hidden;
}

.lazyload,
.lazyloading {
  filter: blur(8px);
}

.lazyloaded {
  filter: blur(0);
  transition: filter 0.3s;
}

img.isLoading {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

img.isLoading.loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.6s ease;
}

.ratio-container {
  position: relative;
}

.ratio-container--3x5::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 56%;
}

.ratio-container--3x5 > img,
.ratio-container--3x5 iframe,
.ratio-container--3x5 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ratio-container::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 42.93%;
}

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ratio-container--16x9::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 56.25%;
}

.ratio-container--16x9 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ratio-container--benefits::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 595px) {
  .ratio-container--benefits::after {
    padding-bottom: 56.25%;
  }
}

.ratio-container--benefits > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.animate--fast {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.animate--fast:hover {
  opacity: 0;
}

.animate--med {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.animate--med:hover {
  opacity: 0;
}

.animate--slow {
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.animate--slow:hover {
  opacity: 0;
}

.animate--xslow {
  opacity: 1;
  transition: all 0.9s ease-in-out;
}

.animate--xslow:hover {
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

/*------------------------------------*
    #LINKS
\*------------------------------------*/

/**
 * Links
 */

a {
  color: #0E0E0E;
  text-decoration: none;
  outline: 0;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: #0363F7;
}

a:focus {
  outline: thin dotted;
}

@media (min-width: 1080px) {
  a[href^='tel:'] {
    pointer-events: none;
    text-decoration: none;
    color: #0E0E0E;
  }

  a[href^='tel:'].white {
    color: #FFF;
  }
}

/*------------------------------------*
    #LINKS
\*------------------------------------*/

/**
 * Ordered/Unordered list base styles
 */

.no-decoration {
  list-style-type: none;
}

ol {
  color: #0363F7;
  counter-reset: count;
  font-family: "NeoSans Bold Italic", "Trebuchet MS", "Arial", sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ol li {
  cursor: pointer;
}

ol li::before {
  content: "0" counter(count) " ";
  /*Instead of '. ' */
  counter-increment: count;
}

ol li span {
  color: #0E0E0E;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  line-height: 37px;
}

/* DW Overwrite */

ul {
  color: #0363F7;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

ul li span {
  color: #0E0E0E;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  line-height: 37px;
}

ul li.nav-item {
  color: #0E0E0E;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 13px;
  line-height: 20px;
  list-style: none;
  padding: 10px 0;
  width: 100%;
  transition: color 0.6s ease;
  margin-top: 0;
}

@media (min-width: 975px) {
  ul li.nav-item {
    padding: 5px 0;
  }
}

@media (min-width: 1080px) {
  ul li.nav-item {
    font-size: 15px;
  }
}

ul li.nav-item.sale {
  color: #DF001A;
}

ul li.nav-item.sale:hover {
  color: #0363F7;
}

ul li.nav-item.sale a {
  color: #DF001A;
}

ul li.nav-item.all {
  padding: 10px 0 0;
  position: relative;
}

ul li.nav-item.all::before {
  bottom: 20px;
  content: '';
  display: block;
  background: #F2F2F2;
  position: relative;
  left: 0;
  height: 1px;
  width: 18px;
  margin-top: 25px;
}

ul li.nav-item span {
  font-size: 15px;
  list-style: none;
}

ul li.nav-item:hover {
  color: #0363F7;
  transition: color 0.6s ease;
}

.pt_gift-registry ol,
.pt_gift-registry ul,
.pt_account ol,
.pt_account ul,
.pt_order ol,
.pt_order ul,
.pt_wishlist ol,
.pt_wishlist ul,
.pt_content ol,
.pt_content ul,
.pt_customer-service ol,
.pt_customer-service ul,
.pt_site-map ol,
.pt_site-map ul,
.pt_error ol,
.pt_error ul,
.pt_athletes ol,
.pt_athletes ul,
.pt_events ol,
.pt_events ul,
.pt_programs ol,
.pt_programs ul,
.pt_hello ol,
.pt_hello ul,
.pt_content-search-result ol,
.pt_content-search-result ul,
.pt_map ol,
.pt_map ul,
.pt_store-locator ol,
.pt_store-locator ul,
.ui-dialog:not(.web-refresh) ol,
.ui-dialog:not(.web-refresh) ul {
  color: #0E0E0E;
  font: 100%/1.5 "HelveticaNeue", "Helvetica", "Arial", sans-serif;
}

.pt_gift-registry ol li,
.pt_gift-registry ul li,
.pt_account ol li,
.pt_account ul li,
.pt_order ol li,
.pt_order ul li,
.pt_wishlist ol li,
.pt_wishlist ul li,
.pt_content ol li,
.pt_content ul li,
.pt_customer-service ol li,
.pt_customer-service ul li,
.pt_site-map ol li,
.pt_site-map ul li,
.pt_error ol li,
.pt_error ul li,
.pt_athletes ol li,
.pt_athletes ul li,
.pt_events ol li,
.pt_events ul li,
.pt_programs ol li,
.pt_programs ul li,
.pt_hello ol li,
.pt_hello ul li,
.pt_content-search-result ol li,
.pt_content-search-result ul li,
.pt_map ol li,
.pt_map ul li,
.pt_store-locator ol li,
.pt_store-locator ul li,
.ui-dialog:not(.web-refresh) ol li,
.ui-dialog:not(.web-refresh) ul li {
  cursor: initial;
}

/**
 * Definition list base styles
 */

dl {
  overflow: hidden;
  margin: 0 0 1em;
}

/**
 * Terms/Names base styles
 */

dt {
  font-weight: bold;
}

/**
 * Definition list description base styles
 */

dd {
  margin-left: 0;
}

.list__wrapper .label {
  max-width: 320px;
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.list__wrapper .label::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  width: 100%;
  left: 0;
  height: 1px;
  background: #F2F2F2;
}

.m-unordered__list {
  color: #0E0E0E;
}

.m-unordered__list .unordered__item {
  position: relative;
  padding-left: 20px;
  margin: 15px 0;
  cursor: auto;
}

.m-unordered__list .unordered__item:first-of-type {
  margin-top: 18px;
}

@media (min-width: 595px) {
  .m-unordered__list .unordered__item:first-of-type {
    margin-top: 15px;
  }
}

.m-unordered__list .unordered__item::before {
  content: '';
  display: inline-block;
  position: relative;
  top: -2.5px;
  left: -20px;
  margin-right: -9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0363F7;
}

/*------------------------------------*
    #MAIN
\*------------------------------------*/

/*
 * Main content area
 */

[role='main'] {
  -ms-flex: 1;
      flex: 1;
}

#wrapper #main,
#wrapper [role^='main'] {
  margin-top: 0;
}

/*------------------------------------*
    #MEDIA ELEMENTS
\*------------------------------------*/

/**
 * Make media elements responsive
 */

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

img.icon,
video.icon,
object.icon {
  cursor: pointer;
  margin: 0 50px 0 0;
}

/**
 * Iframe base styles
 */

iframe {
  margin-bottom: 1em;
}

/**
 * Figure caption base styles
 */

figcaption {
  font-style: italic;
}

/*------------------------------------*
    #RESET
\*------------------------------------*/

/**
 * Use border box on all elements
 */

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pt_gift-registry *,
.pt_account *,
.pt_order *,
.pt_wishlist *,
.pt_content *,
.pt_customer-service *,
.pt_site-map *,
.pt_error *,
.pt_athletes *,
.pt_events *,
.pt_programs *,
.pt_hello *,
.pt_content-search-result *,
.pt_map *,
.pt_store-locator *,
.ui-dialog:not(.web-refresh) * {
  box-sizing: initial;
}

.pt_gift-registry select,
.pt_gift-registry button,
.pt_gift-registry input,
.pt_gift-registry .grid-container,
.pt_gift-registry .grid,
.pt_gift-registry .columns,
.pt_account select,
.pt_account button,
.pt_account input,
.pt_account .grid-container,
.pt_account .grid,
.pt_account .columns,
.pt_order select,
.pt_order button,
.pt_order input,
.pt_order .grid-container,
.pt_order .grid,
.pt_order .columns,
.pt_wishlist select,
.pt_wishlist button,
.pt_wishlist input,
.pt_wishlist .grid-container,
.pt_wishlist .grid,
.pt_wishlist .columns,
.pt_content select,
.pt_content button,
.pt_content input,
.pt_content .grid-container,
.pt_content .grid,
.pt_content .columns,
.pt_customer-service select,
.pt_customer-service button,
.pt_customer-service input,
.pt_customer-service .grid-container,
.pt_customer-service .grid,
.pt_customer-service .columns,
.pt_site-map select,
.pt_site-map button,
.pt_site-map input,
.pt_site-map .grid-container,
.pt_site-map .grid,
.pt_site-map .columns,
.pt_error select,
.pt_error button,
.pt_error input,
.pt_error .grid-container,
.pt_error .grid,
.pt_error .columns,
.pt_athletes select,
.pt_athletes button,
.pt_athletes input,
.pt_athletes .grid-container,
.pt_athletes .grid,
.pt_athletes .columns,
.pt_events select,
.pt_events button,
.pt_events input,
.pt_events .grid-container,
.pt_events .grid,
.pt_events .columns,
.pt_programs select,
.pt_programs button,
.pt_programs input,
.pt_programs .grid-container,
.pt_programs .grid,
.pt_programs .columns,
.pt_hello select,
.pt_hello button,
.pt_hello input,
.pt_hello .grid-container,
.pt_hello .grid,
.pt_hello .columns,
.pt_content-search-result select,
.pt_content-search-result button,
.pt_content-search-result input,
.pt_content-search-result .grid-container,
.pt_content-search-result .grid,
.pt_content-search-result .columns,
.pt_map select,
.pt_map button,
.pt_map input,
.pt_map .grid-container,
.pt_map .grid,
.pt_map .columns,
.pt_store-locator select,
.pt_store-locator button,
.pt_store-locator input,
.pt_store-locator .grid-container,
.pt_store-locator .grid,
.pt_store-locator .columns,
.ui-dialog:not(.web-refresh) select,
.ui-dialog:not(.web-refresh) button,
.ui-dialog:not(.web-refresh) input,
.ui-dialog:not(.web-refresh) .grid-container,
.ui-dialog:not(.web-refresh) .grid,
.ui-dialog:not(.web-refresh) .columns {
  box-sizing: border-box;
}

.stepNum {
  box-sizing: content-box;
}

/**
 * Zero out margin and padding on most elements as base style
 */

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
ol,
ul,
li,
form,
legend,
label,
table,
header,
footer,
nav,
section,
figure {
  margin: 0;
  padding: 0;
}

.pt_gift-registry h2,
.pt_account h2,
.pt_order h2,
.pt_wishlist h2,
.pt_content h2,
.pt_customer-service h2,
.pt_site-map h2,
.pt_error h2,
.pt_athletes h2,
.pt_events h2,
.pt_programs h2,
.pt_hello h2,
.pt_content-search-result h2,
.pt_map h2,
.pt_store-locator h2,
.ui-dialog:not(.web-refresh) h2 {
  margin: 14px 0;
}

.pt_gift-registry h3,
.pt_account h3,
.pt_order h3,
.pt_wishlist h3,
.pt_content h3,
.pt_customer-service h3,
.pt_site-map h3,
.pt_error h3,
.pt_athletes h3,
.pt_events h3,
.pt_programs h3,
.pt_hello h3,
.pt_content-search-result h3,
.pt_map h3,
.pt_store-locator h3,
.ui-dialog:not(.web-refresh) h3 {
  margin: 1rem 0;
}

.pt_gift-registry h4,
.pt_account h4,
.pt_order h4,
.pt_wishlist h4,
.pt_content h4,
.pt_customer-service h4,
.pt_site-map h4,
.pt_error h4,
.pt_athletes h4,
.pt_events h4,
.pt_programs h4,
.pt_hello h4,
.pt_content-search-result h4,
.pt_map h4,
.pt_store-locator h4,
.ui-dialog:not(.web-refresh) h4 {
  margin: 1rem 0 .5rem;
}

.pt_gift-registry p,
.pt_account p,
.pt_order p,
.pt_wishlist p,
.pt_content p,
.pt_customer-service p,
.pt_site-map p,
.pt_error p,
.pt_athletes p,
.pt_events p,
.pt_programs p,
.pt_hello p,
.pt_content-search-result p,
.pt_map p,
.pt_store-locator p,
.ui-dialog:not(.web-refresh) p {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1em;
}

.pt_gift-registry legend,
.pt_account legend,
.pt_order legend,
.pt_wishlist legend,
.pt_content legend,
.pt_customer-service legend,
.pt_site-map legend,
.pt_error legend,
.pt_athletes legend,
.pt_events legend,
.pt_programs legend,
.pt_hello legend,
.pt_content-search-result legend,
.pt_map legend,
.pt_store-locator legend,
.ui-dialog:not(.web-refresh) legend {
  padding: 20px 0;
}

/**
 * Display block as base for these elements
 */

header,
footer,
nav,
section,
article,
hgroup,
figure {
  display: block;
}

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

/*------------------------------------*
    #TABLE
\*------------------------------------*/

/**
 * Table base styles
 */

table.shoe__specs {
  margin: 6px 0 0;
  max-width: none;
  width: 100%;
  border-collapse: inherit;
}

@media (min-width: 595px) {
  table.shoe__specs {
    margin: 0;
    width: 100%;
  }
}

/**
 * Table header base styles
 */

th {
  text-align: left;
}

.specs__row {
  background: none;
}

.specs__row:nth-child(odd) {
  background: none;
}

.specs__row td {
  border-right: 0;
  border-bottom: 1px solid #F2F2F2;
  border-left: 0;
  line-height: 36px;
  position: relative;
  padding: 0;
  vertical-align: inherit;
}

.specs__row td:last-of-type {
  text-align: right;
}

.specs__row td .small {
  margin: 0;
  display: inline-block;
}

/*------------------------------------*
    #TEXT
\*------------------------------------*/

/**
 * Blockquote base styles
 */

blockquote {
  font-style: italic;
  border-left: 1px solid #808080;
  color: #808080;
  padding-left: 1em;
  margin-bottom: 1em;
}

/**
* Abbreviation base styles
*/

abbr {
  border-bottom: 1px dotted #808080;
  cursor: help;
}

.m-block--hero--promo {
  height: auto;
  position: relative;
  width: calc(100% + 80px);
}

@media (max-width: 320px) {
  .m-block--hero--promo::after {
    display: none;
    margin-top: 0;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo::after {
    display: none;
    margin: 0;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo {
    height: 90vh;
    min-height: 721px;
    position: relative;
    right: initial;
    width: 100%;
  }
}

.m-block--hero--promo.unset {
  min-height: unset;
  max-height: unset;
}

.m-block--hero--promo.hero--recommended-products {
  height: auto;
  min-height: 300px;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__img {
  height: 283px;
  max-height: 283px;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .m-block--hero--promo__img {
    max-height: initial;
    height: 400px;
  }
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta {
  max-width: none;
  width: 100%;
  transform: none;
  left: initial;
  top: 48px;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
  background: transparent;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta {
    margin-bottom: 30px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta {
    margin-bottom: 60px;
  }
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta.light > * {
  color: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn {
  margin-top: 15px;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light {
  color: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light .icon,
.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light + .icon {
  fill: #FFF;
  stroke: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn--primary {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn--secondary {
  vertical-align: baseline;
}

.m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
  position: absolute;
  margin-bottom: 0;
  height: 235px;
  /* 283px - 48px (position top) */
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
    height: 322px;
    /* 400px - 48px (position top) - 30px (margin-bottom) */
    position: relative;
    margin-bottom: 30px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
    height: 292px;
    /* 400px - 48px (position top) - 60px (margin-bottom) */
    position: relative;
    margin-bottom: 60px;
  }
}

.m-block--hero--promo.hero--recommended-products .grid__items {
  position: relative;
  display: block;
  z-index: 400;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .grid__items {
    margin-top: 60px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products .grid__items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (min-width: 1080px) {
  .m-block--hero--promo.hero--recommended-products .grid__items {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.m-block--hero--promo.hero--recommended-products .grid__items::before,
.m-block--hero--promo.hero--recommended-products .grid__items::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--hero--promo.hero--recommended-products .grid__items .o-block--related-product__product-card {
  margin: 6px 0 0 20px;
  float: left;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .grid__items .o-block--related-product__product-card {
    margin: 6px 10px 20px;
    width: calc(100% * (1 / 2) - 20px);
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products .grid__items .o-block--related-product__product-card {
    margin: 6px 15px 0;
    width: calc(100% * (4 / 12) - 30px);
  }
}

.m-block--hero--promo__img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 595px) {
  .m-block--hero--promo__img {
    position: absolute;
  }
}

.m-block--hero--promo__meta {
  background: #FFF;
  margin: 0 auto;
  max-width: 530px;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  width: calc(100% - 80px);
  z-index: 300;
  margin-top: -61px;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta {
    background: none;
    left: initial;
    margin: 0;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo__meta {
    width: calc(100% * (5 / 12));
  }
}

.m-block--hero--promo__meta .product--meta__badge {
  top: 0;
  margin-bottom: 15px;
}

.m-block--hero--promo__meta h1 {
  margin: 14px 0 10px;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta h1 {
    margin: 9px 0 0;
  }
}

.m-block--hero--promo__meta p {
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta p {
    margin: 15px 0 0;
  }
}

.m-block--hero--promo__meta.white {
  color: #0E0E0E;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.white {
    color: #FFF;
  }
}

.m-block--hero--promo__meta.white .label--underline {
  display: inline-block;
  width: auto;
}

.m-block--hero--promo__meta.white .label--underline::after {
  background: #0E0E0E;
  left: 50%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.white .label--underline::after {
    background: #FFF;
    left: 15px;
  }
}

.m-block--hero--promo__meta.black {
  color: #0E0E0E;
}

.m-block--hero--promo__meta.black .label--bold {
  color: #0E0E0E;
}

.m-block--hero--promo__meta.black .label--underline {
  display: inline-block;
  width: auto;
}

.m-block--hero--promo__meta.black .label--underline::after {
  background: #0E0E0E;
}

.m-block--hero--promo__meta.center {
  background: #FFF;
  margin: 0 auto;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  width: calc(100% - 80px);
  z-index: 300;
  margin-top: -61px;
}

.m-block--hero--promo__meta.center .label--underline::after {
  left: 50%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center p {
    margin: 15px auto 0;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center {
    background: none;
    display: inline-block;
    left: 50%;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 540px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.m-block--hero--promo__meta.right {
  background: #FFF;
  margin: 0 auto;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  width: calc(100% - 80px);
  z-index: 300;
  margin-top: -61px;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.right .label--underline::after {
    left: 15px;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.right {
    background: none;
    left: initial;
    position: absolute;
    right: 40px;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 20px 0;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo__meta.right {
    right: 60px;
  }
}

.m-block--hero--promo.light .m-block--hero--promo__overlay {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
}

@media (min-width: 595px) {
  .m-block--hero--promo.light .m-block--hero--promo__overlay {
    display: block;
  }
}

.m-block--hero--promo.light .m-block--hero--promo__overlay--left {
  background-image: linear-gradient(to left, rgba(0, 14, 30, 0), rgba(0, 14, 30, 0.6));
}

.m-block--hero--promo.light .m-block--hero--promo__overlay--center {
  background: rgba(0, 14, 30, 0.6);
}

.m-block--hero--promo.light .m-block--hero--promo__overlay--right {
  background-image: linear-gradient(to right, rgba(0, 14, 30, 0), rgba(0, 14, 30, 0.6));
}

.m-block--hero--promo.dark .m-block--hero--promo__overlay {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
}

@media (min-width: 595px) {
  .m-block--hero--promo.dark .m-block--hero--promo__overlay {
    display: block;
  }
}

details {
  display: block;
}

details[open] summary::before {
  transform: rotate(-45deg);
}

@media (min-width: 975px) {
  details.collapse-mobile-only summary {
    cursor: auto;
  }

  details.collapse-mobile-only summary::before {
    content: normal;
    display: none;
  }
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: '' !important;
  float: right;
  width: 8px;
  height: 8px;
  position: relative;
  top: 4px;
  background: transparent;
  border-top: 2px solid #0363F7;
  border-right: 2px solid #0363F7;
  box-shadow: 0 0 0 #D3D0CD;
  transform: rotate(135deg);
  padding-right: 0 !important;
}

/*------------------------------------*
    $ATOMS
\*------------------------------------*/

.a-text-btn {
  cursor: pointer;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  display: inline-block;
  color: #0363F7;
  line-height: 18px;
  position: relative;
  overflow: hidden;
}

.a-text-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0363F7;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.2s ease-in-out;
}

.a-text-btn:hover {
  color: #0363F7;
}

.a-text-btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition: opacity 0.2s, transform 0.2s ease-in-out;
}

.a-text-btn--secondary {
  cursor: pointer;
  line-height: 16px;
  vertical-align: text-bottom;
  overflow: initial;
}

.a-text-btn--secondary::after {
  display: none;
}

.a-text-btn--secondary .icon-long-arrow,
.a-text-btn--secondary + .icon-long-arrow {
  width: 13px;
  height: 13px;
  line-height: 13px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 4px;
  animation: arrowIn 0.2s ease-in-out;
  animation-fill-mode: forwards;
}

.a-text-btn--secondary + .icon-long-arrow,
.a-text-btn--secondary + .icon-long-arrow--white {
  top: 0;
}

.a-text-btn--secondary .icon-long-arrow--white,
.a-text-btn--secondary + .icon-long-arrow--white {
  width: 13px;
  height: 13px;
  line-height: 13px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-left: 4px;
  fill: none;
  stroke: #FFF;
}

.a-text-btn--secondary:hover .icon-long-arrow,
.a-text-btn--secondary:hover + .icon-long-arrow {
  animation: arrowInOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

.a-text-btn--secondary:hover .icon-long-arrow--white,
.a-text-btn--secondary:hover + .icon-long-arrow--white {
  animation: arrowInOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

.a-text-btn--white {
  color: #FFF;
}

.a-text-btn--white:hover {
  color: #FFF;
}

.a-text-btn--white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #FFF;
}

.a-text-btn--white .icon-long-arrow,
.a-text-btn--white + .icon-long-arrow {
  stroke: #FFF;
}

a.a-btn {
  height: 60px;
  line-height: 55px;
  text-align: center;
}

a.a-btn:hover {
  color: #FFF;
}

.a-btn {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  color: #FFF;
  cursor: pointer;
  background: #0363F7;
  border-radius: 100px;
  width: 100%;
  height: 60px;
  transition: background 0.3s;
  border: 0;
  max-width: 280px;
  text-transform: none;
}

@media (min-width: 768px) {
  .a-btn {
    max-width: 309px;
  }
}

@media (max-width: 320px) {
  .a-btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
  }
}

.a-btn--secondary--inactive,
.a-btn--primary--inactive {
  cursor: default;
}

.a-btn--secondary--inactive--background,
.a-btn--primary--inactive--background {
  cursor: default;
}

.a-btn--secondary--inactive--background.animate,
.a-btn--primary--inactive--background.animate {
  animation: none !important;
}

.a-btn--secondary--inactive.animate,
.a-btn--primary--inactive.animate {
  animation: none !important;
}

.a-btn--secondary--loading,
.a-btn--primary--loading {
  font-size: 0;
}

.a-btn--secondary--loading::before,
.a-btn--primary--loading::before {
  width: 32px;
  height: 32px;
  background-image: url("images/icons/static-loader.svg");
  animation: spin 0.9s linear infinite;
  content: '';
  position: relative;
  margin: 0 auto;
  display: block;
  top: 3px;
}

.a-btn--secondary {
  background: #FFF;
  color: #0363F7;
  border: 2px solid #0363F7;
}

.a-btn--secondary:hover,
.a-btn--secondary:focus {
  background: #002855;
  border: 2px solid #002855;
  color: #FFF;
  transition: background 0.3s;
}

.a-btn--secondary:hover {
  outline: none;
}

.a-btn--secondary--inactive {
  border: 2px solid #787673;
  color: #787673;
}

.a-btn--secondary--inactive:hover,
.a-btn--secondary--inactive:focus {
  animation: none;
  border: 2px solid #787673;
  color: #787673;
  cursor: default;
  transition: background 0.3s;
}

.a-btn--secondary--inactive:hover {
  outline: none;
}

.a-btn--secondary--inactive--background {
  background: #0363F7;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.a-btn--secondary--background {
  background: #0363F7;
  border: 2px solid #FFF;
  color: #FFF;
  cursor: pointer;
}

.a-btn--secondary--background:hover,
.a-btn--secondary--background:focus {
  background: #002855;
  border: 2px solid transparent;
  color: #FFF;
  outline: none;
  transition: background 0.3s;
}

.a-btn--primary.a-btn {
  color: #FFF;
}

.a-btn--primary:hover,
.a-btn--primary:focus {
  background: #002855;
  transition: background 0.3s;
}

.a-btn--primary:hover {
  outline: none;
}

.a-btn--primary--inactive {
  background: rgba(120, 118, 115, 0.3);
  color: rgba(14, 14, 14, 0.3);
  cursor: default;
}

.a-btn--primary--inactive:hover,
.a-btn--primary--inactive:focus {
  animation: none;
  background: rgba(120, 118, 115, 0.3);
  cursor: default;
  transition: background 0.3s;
}

.a-btn--primary--inactive--background {
  background: rgba(255, 255, 255, 0.7);
  color: #002855;
  outline: none;
}

.a-btn--primary--background {
  background: #FFF;
  color: #0363F7;
  cursor: pointer;
}

.a-btn--primary--background:hover,
.a-btn--primary--background:focus {
  background: #002855;
  color: #FFF;
  transition: background 0.3s;
}

.a-btn--primary--background:hover {
  outline: none;
}

.a-btn--payment {
  background: #FFF;
  border: 2px solid #0E0E0E;
}

.a-btn--payment img {
  margin-top: 5px;
}

.a-btn--form {
  background: #0363F7;
  border-radius: 0 2px 2px 0;
  color: #FFF;
  height: 40px;
  padding: 0 26px;
  width: auto;
}

.a-btn--form:hover,
.a-btn--form:focus {
  background: #002855;
  transition: background 0.3s;
}

.a-btn--form:hover {
  outline: none;
}

@media (min-width: 768px) {
  .a-btn--form {
    border-radius: 0 2px 2px 0;
  }
}

.a-btn--form--inactive {
  background: rgba(120, 118, 115, 0.3);
  color: rgba(14, 14, 14, 0.3);
  cursor: default;
}

.a-btn--form--inactive:hover,
.a-btn--form--inactive:focus {
  animation: none;
  background: rgba(120, 118, 115, 0.3);
  outline: none;
  transition: background 0.3s;
}

.a-btn.animate {
  animation: buttonHover 0.3s ease-in-out;
}

.a-btn.filter-btn {
  background: #FFF;
  border: 1px solid #D3D0CD;
  border-radius: 0;
  color: #0E0E0E;
  height: 40px;
  line-height: 40px;
  position: relative;
}

.a-btn.filter-btn p {
  display: inline-block;
  left: 15px;
  margin: 0;
  line-height: 40px;
  position: absolute;
  top: 0;
  width: auto;
}

.a-btn.filter-btn span {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 0;
  width: auto;
}

@keyframes buttonHover {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes arrowInOut {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-4px, 0, 0);
  }

  75% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes arrowIn {
  0% {
    transform: translate3d(4px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.a-btn--back-to-top {
  transition: opacity 0.3s ease-in-out;
  background: #FFF;
  box-shadow: 0 0 3px 0 #D3D0CD;
  border-radius: 50px;
  bottom: 20px;
  height: 44px;
  max-width: 44px;
  opacity: 0;
  position: fixed;
  right: 20px;
  width: 55px;
  z-index: 9999;
}

@media (min-width: 595px) {
  .a-btn--back-to-top {
    right: 40px;
  }
}

@media (min-width: 975px) {
  .a-btn--back-to-top {
    right: 60px;
    width: 100%;
  }
}

.a-btn--back-to-top.show {
  opacity: 1;
}

.a-btn--back-to-top__badge {
  fill: transparent;
  height: 18px;
  left: 12px;
  position: absolute;
  stroke: #0E0E0E;
  top: 52%;
  transform: translate(0, -50%);
  width: 20px;
}

@media (min-width: 975px) {
  .a-btn--back-to-top__badge {
    left: 22px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.a-text-plain {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  color: #0363F7;
  display: inline;
  font-size: 15px;
  cursor: pointer;
}

.a-text-plain :hover {
  color: #0363F7;
}

.a-text-plain.white {
  color: #FFF;
}

.a-text-plain.white :hover {
  color: #FFF;
}

/* Tech-debt from SFCC stylesheets */

button.a-text-plain {
  border-radius: 0;
  font-size: 100%;
  padding: 0;
  background: none;
  text-transform: none;
}

/* Rectangle 13: */

/* Default custom select styles */

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon/icomoon.eot?#iefix-rdnm34") format("embedded-opentype"), url("fonts/icomoon/icomoon.woff?-rdnm34") format("woff"), url("fonts/icomoon/icomoon.ttf?-rdnm34") format("truetype"), url("fonts/icomoon/icomoon.svg?-rdnm34#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html.touch .select-container::after,
html.touchevents .select-container::after {
  content: url("images/caret-black.svg");
  display: block;
  position: absolute;
  top: calc(50% + 2.5px);
  right: 15px;
  width: 5px;
  background: transparent;
  height: auto;
  box-shadow: 0 0 0 #F2F2F2;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

html.touch select.cs-select:not(.cs-select--navigation),
html.touchevents select.cs-select:not(.cs-select--navigation) {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 14px 14px 11px;
  padding-right: 3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 1;
  height: initial;
  text-indent: none;
  color: #0E0E0E;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF;
  border: 1px solid #D3D0CD;
  box-sizing: border-box;
  border-radius: 0;
}

html.touch select.cs-select:not(.cs-select--navigation):focus,
html.touchevents select.cs-select:not(.cs-select--navigation):focus {
  font-size: 15px !important;
}

html.touch select.cs-select:not(.cs-select--navigation) + label.select__label,
html.touchevents select.cs-select:not(.cs-select--navigation) + label.select__label {
  visibility: hidden;
  position: absolute !important;
}

html.touch .category__controls__select .select-container::after,
html.touchevents .category__controls__select .select-container::after {
  top: calc(50% + 7.5px);
}

html.touch .category__controls__select select.cs-select,
html.touchevents .category__controls__select select.cs-select {
  padding: 10px 12px 11px;
  width: 100%;
}

html.touch .cs-placeholder,
html.touchevents .cs-placeholder {
  display: none;
}

.select-container {
  display: block;
  position: relative;
}

li.cs-select {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
  background: #FFF;
  z-index: 300;
  width: 100%;
  max-width: 180px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 320px) {
  li.cs-select {
    max-width: 280px;
  }
}

li.cs-select.active {
  z-index: 200;
}

li.cs-select--navigation {
  display: inline-block;
  float: left;
  width: auto;
  z-index: 600;
}

li.cs-select--navigation.cs-active:focus {
  outline: auto;
}

li.cs-select--navigation:focus {
  outline: none;
}

@media (min-width: 975px) {
  li.cs-select--navigation:focus {
    outline: auto;
  }
}

.cs-select--product-size {
  max-width: 207px;
}

.cs-select--product-size::before {
  display: none !important;
}

.cs-select--product-size span {
  background: #FFF;
}

.cs-select--product-size .cs-options {
  background: #FFF;
  border: 1px solid #D3D0CD;
  max-width: 207px;
  padding: 0 10px;
  width: auto;
}

.cs-select--product-size .cs-options ul::before {
  background: #FFF !important;
}

.cs-select--product-size .cs-options li {
  border: 1px solid #D3D0CD;
  border-color: #D3D0CD;
  display: inline-block;
  margin: 0 3px 3px 0;
  width: calc(100% * (1 / 4) - 3px);
}

.cs-select--product-size .cs-options li:last-of-type {
  margin: 0 0 10px;
  padding-bottom: 0 !important;
}

.cs-select--product-size .cs-options li:hover {
  color: #0E0E0E;
  border: 1px solid;
  border-color: #0E0E0E;
  transition: border-color 0.6s ease-in-out;
}

.cs-select--product-size .cs-options li.selected {
  border-color: #0E0E0E;
}

.cs-select--product-size .cs-options li.false {
  cursor: default;
  pointer-events: none;
}

.cs-select--product-size .cs-options li.false:hover {
  border: 1px solid;
  border-color: transparent;
}

.cs-select--product-size .cs-options li.false span {
  background: #F2F2F2;
  color: #787673;
}

.cs-select--product-size .cs-options li span {
  line-height: inherit;
  background: #FFF;
  overflow: visible;
  padding: 10px 0 !important;
  text-align: center;
  white-space: normal;
}

.cs-select--product-size .cs-options li span:hover {
  color: #0E0E0E;
}

.cs-select--product-size .cs-options li.cs-selected:hover span {
  color: #FFF;
}

.cs-select--product-size .cs-options li.cs-selected span {
  background: #0363F7;
  border-color: #0E0E0E;
  color: #FFF;
}

.cs-select--product-size .cs-options li.cs-selected span::before {
  content: url("");
  display: none;
}

.cs-select--product-width {
  max-width: 207px;
}

.cs-select--product-width::before {
  display: none !important;
}

.cs-select--product-width span {
  background: #FFF;
}

.cs-select--product-width .cs-options {
  background: #FFF;
  border: 1px solid #D3D0CD;
  max-width: 207px;
  padding: 0 10px;
  width: auto;
}

.cs-select--product-width .cs-options ul::before {
  background: #FFF !important;
}

.cs-select--product-width .cs-options li {
  border: 1px solid;
  border-color: #D3D0CD;
  display: inline-block;
  margin: 0 0 3px;
  width: 100%;
}

.cs-select--product-width .cs-options li:last-of-type {
  margin: 0 0 10px;
  padding-bottom: 0 !important;
}

.cs-select--product-width .cs-options li:hover {
  border: 1px solid;
  border-color: #0E0E0E;
  transition: border-color 0.6s ease-in-out;
}

.cs-select--product-width .cs-options li.selected {
  border-color: #0E0E0E;
}

.cs-select--product-width .cs-options li.cs-selected:hover span {
  color: #FFF;
}

.cs-select--product-width .cs-options li.cs-selected span {
  background: #0363F7;
  border-color: #0E0E0E;
  color: #FFF;
}

.cs-select--product-width .cs-options li.cs-selected span::before {
  content: url("");
  display: none;
}

.cs-select--product-width .cs-options li.false {
  cursor: default;
  pointer-events: none;
}

.cs-select--product-width .cs-options li.false:hover {
  border: 1px solid;
  border-color: transparent;
}

.cs-select--product-width .cs-options li.false span {
  background: #F2F2F2;
  color: #787673;
}

.cs-select--product-width .cs-options li span {
  background: #FFF;
  overflow: visible;
  padding: 11px 0 !important;
  text-align: center;
  line-height: inherit;
}

.cs-select--product-width .cs-options li span:hover {
  color: #0E0E0E;
}

.cs-select {
  /* Options */
}

.cs-select select {
  display: none;
}

.cs-select::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border: 1px solid #D3D0CD;
  border-radius: 0;
}

.cs-select .cs-placeholder {
  transition: color 0.6s;
}

.cs-select .cs-placeholder:hover {
  color: #0363F7;
  transition: color 0.6s;
}

.cs-select .cs-placeholder,
.cs-select span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 14px 14px 11px;
  padding-right: 3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  line-height: 1;
}

.cs-select > span::before {
  content: url("images/caret-black.svg");
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  width: 5px;
  background: transparent;
  height: auto;
  box-shadow: 0 0 0 #F2F2F2;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.cs-select .cs-selected span::before {
  speak: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cs-select.cs-active .cs-placeholder {
  border-bottom: 0;
  outline: none;
}

.cs-select.cs-active > span::before {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.cs-select.cs-active .cs-options {
  visibility: visible;
  pointer-events: auto;
  border: 1px solid #D3D0CD;
  border-top: 0;
  transition: border 0.2s 0.2s ease-in-out;
}

.cs-select.cs-active .cs-options ul::before {
  transform: scale3d(1, 1, 1);
  transition: transform 0.2s;
}

.cs-select.cs-active .cs-options ul li {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.2s, background 0.6s, border-color 0.6s;
}

.cs-select.cs-active .cs-options ul li:focus {
  outline: auto;
}

.cs-select .cs-options {
  position: absolute;
  width: calc(100% + 2px);
  overflow: visible;
  background: transparent;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  border-color: #D3D0CD;
  border-top: 0;
  border-radius: 0;
  z-index: 2000;
}

.cs-select .cs-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.cs-select .cs-options ul::before {
  content: '';
  position: absolute;
  width: calc(100%);
  height: 100%;
  left: 0;
  top: 0;
  transform: scale3d(1, 0, 1);
  background: #FFF;
  transition: transform 0.6s;
}

.cs-select .cs-options li {
  opacity: 0;
  transform: translate3d(0, -25px, 0);
  transition: opacity 0.2s, transform 0.2s;
}

.cs-select .cs-options li:hover {
  color: #0363F7;
  transition: color 0.6s;
}

.cs-select .cs-options li:focus {
  outline: auto;
}

.cs-select .cs-options li.cs-focus {
  outline: auto;
}

.cs-select .cs-options li span {
  padding: 10px 20px;
}

.cs-select .cs-options li:last-of-type {
  padding-bottom: 10px;
}

.cs-select .cs-options span {
  border: 0;
}

.cs-select .cs-options span:hover {
  color: #0363F7;
  transition: color 0.6s;
}

.cs-select--reviews::before {
  border-color: #D3D0CD;
}

.cs-select--reviews .cs-options {
  max-width: none;
  min-width: 100%;
  right: 0;
}

@media (min-width: 975px) {
  .cs-select--reviews .cs-options {
    width: auto;
  }
}

.cs-select--navigation::before {
  content: '';
  display: block;
  position: absolute;
  width: auto;
  border: 0;
}

.cs-select--navigation.cs-active::before {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.cs-select--navigation.cs-active span.cs-placeholder::after {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.cs-select--navigation .cs-select > span::before {
  top: calc(50% - 4px);
}

.cs-select--navigation .cs-options {
  margin: 8px 0 0;
  width: initial;
  min-width: 100%;
  max-width: none;
}

@media (min-width: 975px) {
  .cs-select--navigation .cs-options {
    width: auto;
  }
}

.cs-select--navigation .cs-options li {
  height: 30px;
}

.cs-select--navigation .cs-options li:last-of-type {
  margin: 0 0 8px;
}

.cs-select--navigation .cs-options li span {
  display: initial;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: capitalize;
  transition: transform 0.3s;
  color: #0E0E0E;
}

.cs-select--navigation span::before {
  height: auto;
  top: 1px;
  width: auto;
  max-width: 8px;
  position: absolute;
  display: inline-block;
  float: right;
  right: 20px;
}

@media (min-width: 975px) {
  .cs-select--navigation span:hover::before {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
  }
}

.cs-select--navigation span.cs-placeholder {
  color: #0E0E0E;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0 15px 0 0;
  padding: 1px 20px 0;
  text-transform: capitalize;
  overflow: visible;
  width: 100%;
}

@media (min-width: 1080px) {
  .cs-select--navigation span.cs-placeholder {
    font-size: 12px;
    margin: 0 15px 0 0;
  }
}

body.checkout .m-navigation__list--utility .cs-select--navigation {
  float: none;
}

@media (min-width: 595px) {
  body.checkout .m-navigation__list--utility .cs-select--navigation {
    float: left;
  }
}

body.checkout .m-navigation__list--utility .cs-select--navigation .cs-placeholder {
  padding: 0 20px 0 10px;
  margin-right: 0;
}

body.checkout .m-navigation__list--utility .cs-select--navigation .cs-placeholder::before {
  right: 10px;
}

@media (min-width: 595px) {
  body.checkout .m-navigation__list--utility .cs-select--navigation .cs-placeholder {
    margin: 0 15px 0 0;
    padding: 2px 3em 0;
  }
}

@keyframes expand {
  0% {
    transform: scale3d(1, 0, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounce {
  0% {
    transform: translate3d(0, -25px, 0);
    opacity: 0;
  }

  25% {
    transform: translate3d(0, 10px, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }

  75% {
    transform: translate3d(0, 2px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF url("images/caret-black.svg") no-repeat center right 10px;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  font-size: 0.875rem;
  color: #0E0E0E;
  padding: 0 25px 0 12px;
  border: 1px solid #D3D0CD;
  border-radius: 0;
  height: 40px;
  width: 100%;
  box-shadow: 0 0 0 #D3D0CD;
}

.quantity-form {
  display: inline-block;
  margin: 4px 0 29px;
  width: 100%;
}

@media (min-width: 595px) {
  .quantity-form {
    float: left;
    position: relative;
    width: 30%;
  }
}

@media (min-width: 975px) {
  .quantity-form {
    margin: 0;
  }
}

.quantity-form label {
  display: block;
  margin: 0 0 5px;
  text-align: left;
  width: 100%;
}

.quantity-selector {
  border: 1px solid #D3D0CD;
  display: block;
  height: 40px;
  position: relative;
  max-width: 135px;
  text-align: center;
  width: auto;
}

@media (min-width: 595px) {
  .quantity-selector {
    max-width: 100%;
  }
}

.quantity-selector input[type='number'] {
  border: 0;
  display: inline-block;
  line-height: 20px;
  padding: 11px 0 6px;
  text-align: center;
  width: calc(100% * (1 / 3));
}

.quantity-selector--minus {
  cursor: pointer;
  display: inline-block;
  float: left;
  padding: 8px 14px;
  position: relative;
}

.quantity-selector--plus {
  cursor: pointer;
  display: inline-block;
  float: right;
  line-height: 20px;
  padding: 8px 12px;
  position: relative;
}

.site-radio__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.site-radio__wrapper .radio-label {
  cursor: pointer;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.site-radio__wrapper .e-input__radio {
  cursor: pointer;
  margin-right: 9px;
  margin-top: 8px;
  width: auto;
  height: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.site-checkbox__wrapper {
  cursor: pointer;
  display: inline-block;
  position: relative;
  border: 1px solid #D3D0CD;
  border-radius: 0;
  width: 220px;
  line-height: 40px;
}

@media (max-width: 320px) {
  .site-checkbox__wrapper {
    width: 100%;
    max-width: 280px;
  }
}

.site-checkbox__wrapper a {
  color: #0E0E0E;
}

.site-checkbox__wrapper .checkbox-label {
  transform: scale(1);
  transition: transform 0.6s;
}

.site-checkbox__wrapper .checkbox-label.expand {
  transform: scale(1.1);
  transition: transform 0.6s;
}

.site-checkbox__wrapper.circle input[type='checkbox'] + label::before {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-family: 'Arial Unicode MS';
  background-color: #FFF;
  border: 0;
  color: #FFF;
}

.site-checkbox__wrapper.circle input[type='checkbox'] + label::after {
  width: auto;
  height: auto;
}

.site-checkbox__wrapper.circle .icon__wrapper {
  top: 0;
}

.site-checkbox__wrapper.no-border {
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: 5px;
  width: auto;
  word-wrap: normal;
  border: 0;
}

.site-checkbox__wrapper input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  padding: 0;
  z-index: 1;
  cursor: pointer;
  margin: 2px 0 0;
  position: absolute;
  border: 0;
}

.site-checkbox__wrapper input[type='checkbox'] + label {
  display: inline-block;
  line-height: 16px;
  margin-right: 10px;
}

.site-checkbox__wrapper input[type='checkbox'] + label .icon__wrapper {
  margin-top: 2px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.site-checkbox__wrapper input[type='checkbox'] + label .icon__wrapper .icon-checkmark {
  border-radius: 2px;
  width: 14px;
  height: 14px;
  stroke: #FFF;
  opacity: 1;
  stroke-dasharray: 50px, 50px;
  animation: checkmarkReverse 0.3s ease-in-out 0.3s forwards 1;
}

.site-checkbox__wrapper input[type='checkbox'] + label::before {
  border-radius: 2px;
  content: '\00a0';
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-family: 'Arial Unicode MS';
  background-color: #FFF;
  border: 1px solid #D3D0CD;
  color: #0E0E0E;
  text-align: center;
  cursor: pointer;
  margin-top: 2px;
}

:not(.selected).initial input[type='checkbox'] + label .icon__wrapper .icon-checkmark {
  opacity: 0;
}

.selected input[type='checkbox'] + label::before {
  animation: checkboxExpand 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

.selected input[type='checkbox'] + label::after {
  transform: scale(1);
  transition: transform 0.3s;
}

.selected input[type='checkbox'] + label .icon__wrapper .icon-checkmark {
  background-color: #0363F7;
  animation: checkmark 0.3s ease-in-out 0.3s backwards 1;
  opacity: 1;
  padding: 2px;
}

input[type='checkbox']:checked + label::before {
  animation: checkboxExpand 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

input[type='checkbox']:checked + label .icon__wrapper .icon-checkmark {
  background-color: #0363F7;
  animation: checkmark 0.3s ease-in-out 0.3s backwards 1;
  opacity: 1;
  padding: 2px;
}

@keyframes checkboxExpand {
  0% {
    transform: scale(1.1);
  }

  25% {
    transform: scale(0.6);
  }

  50% {
    transform: scale(0.9);
  }

  75% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: -50px;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmarkReverse {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -50px;
  }
}

.stat {
  font-family: "NeoSans Bold Italic", "Trebuchet MS", "Arial", sans-serif;
  display: block;
  font-size: 66px;
  line-height: 80px;
  color: #0363F7;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .stat {
    font-size: 100px;
    line-height: 80px;
    margin-bottom: 12px;
  }
}

.spectrum__wrapper {
  float: none;
  margin: 0 auto;
  margin-top: 13px;
  display: block;
}

.spectrum__wrapper::before,
.spectrum__wrapper::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 768px) {
  .spectrum__wrapper {
    margin-top: 33px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    display: -ms-flexbox;
    display: flex;
  }
}

.spectrum__wrapper .fit__spectrum {
  float: none;
  margin: 0 auto 34px;
  width: 100%;
}

@media (min-width: 768px) {
  .spectrum__wrapper .fit__spectrum {
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    float: left;
    margin-right: 0;
    margin-left: 15px;
  }

  .spectrum__wrapper .fit__spectrum:first-of-type {
    margin-left: 0;
  }
}

.fit__spectrum {
  display: block;
  max-width: none;
}

@media (min-width: 595px) {
  .fit__spectrum {
    position: relative;
    display: block;
    margin-bottom: 34px;
    max-width: 450px;
  }
}

@media (min-width: 768px) {
  .fit__spectrum {
    max-width: 228px;
  }
}

@media (min-width: 975px) {
  .fit__spectrum {
    max-width: 238px;
  }
}

@media (min-width: 1080px) {
  .fit__spectrum {
    max-width: 258px;
  }
}

@media (min-width: 1440px) {
  .fit__spectrum {
    max-width: 264px;
  }
}

.fit__spectrum .label {
  display: inline-block;
}

.fit__spectrum .x-small {
  margin-left: 5px;
}

.fit__spectrum--cta {
  text-align: center;
  margin-bottom: 60px;
}

.fit__spectrum--cta--empty {
  margin: 40px 0 100px;
}

.fit__range-bar {
  width: 100%;
  background: #D3D0CD;
  height: 3px;
  border-radius: 2px;
  margin-top: 15px;
  max-width: none;
}

@media (min-width: 595px) {
  .fit__range-bar {
    max-width: 450px;
  }
}

@media (min-width: 768px) {
  .fit__range-bar {
    max-width: 228px;
  }
}

@media (min-width: 975px) {
  .fit__range-bar {
    max-width: 238px;
  }
}

@media (min-width: 1080px) {
  .fit__range-bar {
    max-width: 258px;
  }
}

@media (min-width: 1440px) {
  .fit__range-bar {
    max-width: 264px;
  }
}

.fit__range-bar .spectrum {
  position: relative;
  display: block;
  margin: 0;
  width: 47px;
  left: calc(50% - 47px);
  background: #0363F7;
  height: 3px;
}

.fit__range--spectrum-info {
  color: #787673;
  margin-top: 12px;
}

.fit__range--spectrum-info::before,
.fit__range--spectrum-info::after {
  content: '';
  display: block;
  clear: both;
}

.fit__range--spectrum-info .x-small {
  margin-left: 0;
}

.fit__range--spectrum-info .left {
  float: left;
  margin-right: 0;
}

.fit__range--spectrum-info .right {
  float: right;
  width: 50%;
  text-align: right;
}

.a-details__content {
  margin-top: 20px;
}

.a-loading {
  background-color: #FFF;
  opacity: .9;
  z-index: 999;
  width: 100%;
  height: 100%;
}

.a-loading--full {
  position: fixed;
}

.a-loading--full .a-loading__spinner {
  left: 50%;
  top: 50%;
}

.a-loading--section {
  position: absolute;
}

.a-loading--section .a-loading__spinner {
  left: 45%;
  top: 40%;
}

.a-loading__spinner {
  width: 32px;
  height: 32px;
  background-image: url("images/icons/static-loader.svg");
  animation: spin 0.9s linear infinite;
  position: absolute;
}

/*------------------------------------*
    $MOLECULES
\*------------------------------------*/

/*------------------------------------*
    #BLOCKS
\*------------------------------------*/

/**
 * 1) Blocks are collections of text and/or images/media working together as a unit.
 */

/*------------------------------------*
  #TILE BLOCK
\*------------------------------------*/

.m-block--hero .a-btn {
  margin: 0 0 20px;
}

@media (min-width: 595px) {
  .m-block--hero .a-btn {
    margin: 0 15px 20px;
  }
}

@media (min-width: 975px) {
  .m-block--hero .a-btn {
    margin: 0 15px;
  }
}

.m-block--hero--basic--collection {
  background: #0363F7;
  overflow-x: visible;
  padding: 8px 0 0;
  position: relative;
}

@media (min-width: 595px) {
  .m-block--hero--basic--collection {
    float: none;
  }
}

@media (min-width: 975px) {
  .m-block--hero--basic--collection {
    float: left;
    padding: 23px 0 0;
    height: 400px;
  }
}

.m-block--hero--basic--collection .collection-hero-overlay {
  background: url("images/curve-blue.png") no-repeat;
  background-size: contain;
  position: absolute;
  display: none;
  height: 100%;
  left: 100%;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 975px) {
  .m-block--hero--basic--collection .collection-hero-overlay {
    display: block;
  }
}

.m-block--hero--basic--collection .collection-hero-overlay.sports-bra {
  background: url("images/curve-gradient.png") no-repeat;
  background-size: contain;
}

.m-block--hero--basic {
  background: #0363F7;
  overflow: hidden;
  padding: 8px 0 0;
  position: relative;
}

.m-block--hero--basic .a-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .m-block--hero--basic .a-btn {
    max-width: 260px;
  }
}

@media (min-width: 1440px) {
  .m-block--hero--basic .a-btn {
    max-width: 297px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--basic {
    padding: 60px 0 0;
  }
}

.m-block--hero--basic .m-block--hero__content__copy {
  margin: 0 calc(100% * (1 / 6));
}

@media (min-width: 975px) {
  .m-block--hero--basic .m-block--hero__content__copy .x-small {
    margin: 0 0 23px;
  }
}

.m-block--hero__content__copy {
  color: #FFF;
  margin: 0 auto 3px;
  position: relative;
  text-align: center;
}

.m-block--hero__content__copy--black {
  color: #0E0E0E;
  margin: 0 20px 20px;
}

.m-block--hero__content__copy--black .type {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 20px;
}

@media (min-width: 768px) {
  .m-block--hero__content__copy--black .type {
    margin: 9px 10%;
  }
}

@media (min-width: 975px) {
  .m-block--hero__content__copy--black .type {
    margin: 10px 50% 0 0;
  }
}

@media (min-width: 975px) {
  .m-block--hero__content__copy--black {
    text-align: left;
    padding: 20px 0 0 20px;
  }
}

@media (min-width: 1080px) {
  .m-block--hero__content__copy--black {
    padding: 20px 0 0 40px;
  }
}

.m-block--hero--collection__content {
  margin: 0 20px;
  padding: 0 0 31px;
}

@media (min-width: 595px) {
  .m-block--hero--collection__content {
    margin: 0 40px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--collection__content {
    margin: 0 30px 120px 60px;
    padding: 0;
  }
}

.m-block--hero--collection__content h1 {
  color: #FFF;
  margin: 0 0 13px;
}

@media (min-width: 975px) {
  .m-block--hero--collection__content h1 {
    margin: 0 0 8px;
  }
}

.m-block--hero--collection__content h2 {
  color: #FFF;
  margin: 1rem 0;
}

.m-block--hero--collection__content p {
  margin: 0 auto 31px;
}

.m-block--hero--collection__content.site__wrapper {
  position: relative;
}

.m-block--hero--collection__content .m-block--hero__content__copy {
  color: #0E0E0E;
  margin: 0;
}

@media (min-width: 975px) {
  .m-block--hero--collection__content .m-block--hero__content__copy {
    text-align: left;
  }
}

.m-block--hero--collection__content__copy {
  color: #FFF;
  margin: 0 auto 3px;
  position: relative;
  text-align: center;
}

.m-block--hero--promo--loading .m-block--hero--promo__superheader {
  display: none;
}

.m-block--hero--promo--loading .m-block--hero--promo__header {
  display: block;
  margin: 0 auto;
  background-image: linear-gradient(to top, #F2F2F2, rgba(242, 242, 242, 0.5));
  width: 312px;
  height: 34px;
}

@media (min-width: 768px) {
  .m-block--hero--promo--loading .m-block--hero--promo__header {
    width: 450px;
    height: 45px;
  }
}

@media (min-width: 1080px) {
  .m-block--hero--promo--loading .m-block--hero--promo__header {
    width: 548px;
    height: 55px;
  }
}

.m-block--hero--promo--loading .m-block--hero--promo__header h1.large {
  display: none;
}

.m-block--hero--promo--loading .product__card--wrapper {
  background: none;
  background-image: linear-gradient(to top, #F2F2F2, rgba(242, 242, 242, 0.5));
}

.m-block--hero--promo--loading .loading-icon {
  width: 32px;
  height: 32px;
  background-image: url("images/icons/static-loader.svg");
  animation: spin 0.9s linear infinite;
  position: absolute;
  top: 45%;
  left: 43%;
}

@media (min-width: 1440px) {
  .m-block--hero--promo--loading .loading-icon {
    top: 50%;
    left: 45%;
  }
}

.m-block--hero--promo--loading .card__slider {
  display: none;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary {
  border: 0;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .left {
  background-image: linear-gradient(to top, #F2F2F2, rgba(242, 242, 242, 0.5));
  width: 100%;
  margin-top: 20px;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .right {
  width: 50%;
  display: block;
  float: left;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .bottom {
  width: 25%;
  clear: both;
  float: left;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .left,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .right,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .bottom {
  background-image: linear-gradient(to top, #F2F2F2, rgba(242, 242, 242, 0.5));
  margin-top: 10px;
  height: 20px;
}

.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .left h4,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .left p,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .right h4,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .right p,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .bottom h4,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--primary .bottom p {
  display: none;
}

.m-block--hero--promo--loading .product__card--bottom-info .o-block--related-product__product-card__reviews,
.m-block--hero--promo--loading .product__card--bottom-info .o-block--related-product__product-card__reviews__count,
.m-block--hero--promo--loading .product__card--bottom-info .product__info--secondary,
.m-block--hero--promo--loading .product__card--bottom-info .card__slider,
.m-block--hero--promo--loading .product__card--bottom-info .product-container__thumbnails {
  display: none;
}

.m-block--hero--promo--loading .o-block--related-product__product-card .product__box .award__badge .slick-dots {
  display: none;
}

.m-block--video-player {
  max-width: 1095px;
}

.m-block--benefits {
  text-align: center;
}

.m-block--benefits::before,
.m-block--benefits::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--benefits .m-block__image {
  margin: 0 auto;
  float: none;
  max-width: 1095px;
  position: relative;
  top: 35px;
}

.m-block--benefits .m-block__image::before,
.m-block--benefits .m-block__image::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 768px) {
  .m-block--benefits .m-block__image {
    top: 55px;
  }
}

.m-block--benefits .m-block__image .m-block--module-heading {
  margin-bottom: 30px;
}

@media (min-width: 595px) {
  .m-block--benefits .m-block__image .m-block--module-heading {
    margin-bottom: 54px;
  }
}

.m-block--benefits .m-block__image .a-product-features__img {
  display: block;
  z-index: 200;
}

.m-block--benefits .m-block__image .a-product-features__img .m-block--video-player {
  margin: 0;
}

.m-block--benefits .m-block__image .a-product-features__img img {
  opacity: 1;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 200;
}

.m-block--benefits .m-block__image .a-product-features__img img.hide {
  opacity: 0;
  z-index: 0;
  transition: all 0.6s ease-in-out;
}

.m-block--benefits .m-block__image .a-product-features__img--overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 300;
}

.m-block--benefits .m-block__image .a-product-features__img--overlay.hide {
  opacity: 0;
  z-index: 0;
  transition: all 0.6s ease-in-out;
}

.m-block--benefits .m-block__image .a-product-features__img--overlay .icon-video-play {
  cursor: pointer;
  fill: #0363F7;
  height: 60px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: fill 0.6s ease-in-out;
  width: 60px;
}

.m-block--benefits .m-block__image .a-product-features__img--overlay .icon-video-play:hover {
  fill: #002855;
}

@media (min-width: 595px) {
  .m-block--benefits .m-block__image .a-product-features__img--overlay .icon-video-play {
    height: 80px;
    width: 80px;
  }
}

.m-block--benefits .m-block__image .a-product-features__img--overlay__meta {
  bottom: 20px;
  left: 20px;
  position: absolute;
  text-align: left;
}

@media (min-width: 768px) {
  .m-block--benefits .m-block__image .a-product-features__img--overlay__meta {
    bottom: 30px;
    left: 29px;
  }
}

.m-block--benefits .m-block__image .a-product-features__img--overlay__meta span {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.m-block--benefits .m-block__image .a-product-features__video {
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
  z-index: 100;
}

@media (min-width: 768px) {
  .m-block--benefits .m-block__image .a-product-features__video {
    object-fit: fill;
  }
}

.m-block--benefits .m-block__image .a-product-features__video.show {
  opacity: 1;
}

.m-block--benefits .m-block__image .a-product-features__video--overlay {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
}

.m-block--benefits .m-block__image .a-product-features__video--overlay .icon-video-pause {
  cursor: pointer;
  fill: #FFF;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}

.m-block--benefits .m-block__image .a-product-features__video--overlay.show {
  opacity: 1;
}

.m-feature__description .medium {
  padding-bottom: 10px;
}

@media (min-width: 975px) {
  .m-feature__description .type {
    max-width: 420px;
  }
}

.section--benefits {
  z-index: 200;
}

.section--benefits .module--hero {
  z-index: 200;
}

.section--benefits .module--benefits {
  z-index: 100;
  position: relative;
}

.o-module__specs {
  background: #F2F2F2;
  padding-bottom: 80px;
  padding-top: 142px;
}

@media (min-width: 595px) {
  .o-module__specs {
    padding-top: 167px;
  }
}

.section--shoe-specs {
  float: none;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 3px 0 #D3D0CD;
  background: #FFF;
  max-width: 90vw;
}

.section--shoe-specs::before,
.section--shoe-specs::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 595px) {
  .section--shoe-specs {
    max-width: none;
  }
}

.section--shoe-specs .inner__wrap {
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

@media (min-width: 595px) {
  .section--shoe-specs .inner__wrap {
    top: 0;
    position: relative;
  }
}

@media (min-width: 975px) {
  .section--shoe-specs .inner__wrap {
    position: relative;
  }
}

.section--shoe-specs .inner__wrap::after {
  content: '';
  display: none;
}

@media (min-width: 595px) {
  .section--shoe-specs .inner__wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: calc(100% - 80px);
    width: 1px;
    background: #F2F2F2;
  }
}

.section--shoe-specs .inner__wrap .wrap {
  position: relative;
  top: initial;
  transform: none;
}

.section--shoe-specs .inner__wrap .wrap.center::after {
  display: none;
}

.section--shoe-specs .inner__wrap .wrap::after {
  content: '';
  display: none;
}

@media (min-width: 595px) {
  .section--shoe-specs .inner__wrap .wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: calc(100% - 80px);
    width: 1px;
    background: #F2F2F2;
  }
}

.section--shoe-specs .content--top {
  text-align: center;
  margin-top: 0;
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
}

.section--shoe-specs .info__module {
  padding: 40px 0;
}

.section--shoe-specs .info__module::before,
.section--shoe-specs .info__module::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 595px) {
  .section--shoe-specs .info__module {
    padding: 60px 0;
  }
}

.section--shoe-specs .info__module.center .info--left,
.section--shoe-specs .info__module.center .info--right {
  float: none;
  margin: 0 auto;
}

.section--shoe-specs .info__module.center .info--left::after,
.section--shoe-specs .info__module.center .info--right::after {
  display: none;
}

.section--shoe-specs .info--left {
  float: none;
  display: block;
  padding: 0 20px;
  position: relative;
}

@media (min-width: 595px) {
  .section--shoe-specs .info--left {
    float: left;
    padding: 0 20px;
    padding-left: calc(100% * (1 / 12));
    padding-right: 45px;
  }
}

.section--shoe-specs .info--left::after {
  content: '';
  display: block;
  left: 0;
  height: 2px;
  width: 100%;
  bottom: -30px;
  position: absolute;
  background: #F2F2F2;
}

@media (min-width: 595px) {
  .section--shoe-specs .info--left::after {
    content: '';
    display: none;
  }
}

.section--shoe-specs .info--left table.shoe__specs {
  margin-top: 8px;
}

.section--shoe-specs .info--right {
  float: none;
  display: block;
  padding: 0 20px;
  margin-top: 70px;
}

@media (min-width: 595px) {
  .section--shoe-specs .info--right {
    float: right;
    margin-top: 0;
    padding-left: 45px;
  }
}

.module--benefits {
  padding: 150px 0 60px;
}

@media (min-width: 595px) {
  .module--benefits {
    padding: 150px 0 80px;
  }
}

@media (min-width: 1080px) {
  .module--benefits {
    padding: 150px 0 120px;
  }
}

.module--benefits.no-rtb {
  padding-top: 20px;
}

.module--benefits.no-rtb.has-video {
  padding-top: 60px;
}

.module--benefits.no-rtb.has-video .benefits__section--additional {
  margin-top: 25px;
}

@media (min-width: 595px) {
  .module--benefits.no-rtb.has-video .benefits__section--additional {
    margin-top: 65px;
  }
}

.module--benefits.no-rtb.no-video .benefits__section--additional {
  margin-top: 25px;
}

.module--benefits--sports-bra {
  background-image: linear-gradient(to top, #8FCEBF, #00AB91 48%, #00C8FF);
}

.module--benefits .m-feature {
  position: relative;
  margin: 0;
}

.module--benefits .m-feature::before,
.module--benefits .m-feature::after {
  content: '';
  display: block;
  clear: both;
}

.module--benefits .m-feature:first-of-type {
  margin-top: 0;
}

@media (min-width: 595px) {
  .module--benefits .m-feature {
    margin-top: 80px;
    margin: 80px 40px 0;
  }
}

@media (min-width: 975px) {
  .module--benefits .m-feature {
    margin: 100px 40px 0;
  }
}

@media (min-width: 1080px) {
  .module--benefits .m-feature {
    margin: 0 60px;
  }
}

.module--benefits .m-feature img {
  max-width: 100%;
}

.module--benefits .m-feature:nth-child(even) .m-feature__img--alignment {
  left: 0;
  text-align: left;
}

@media (min-width: 595px) {
  .module--benefits .m-feature:nth-child(even) .m-feature__img--alignment {
    float: left;
    left: -60px;
  }
}

.module--benefits .m-feature:nth-child(even) .m-feature__img--alignment + .m-feature__description {
  margin-top: 0;
  left: auto;
  opacity: 1;
  right: 0;
}

@media (min-width: 1080px) {
  .module--benefits .m-feature:nth-child(even) .m-feature__img--alignment + .m-feature__description {
    opacity: 0;
    margin-top: 20px;
  }
}

.module--benefits .m-feature:nth-child(even) .m-feature__img--alignment + .m-feature__description.show {
  margin-top: 0;
  opacity: 1;
  transition: margin-top 0.6s ease-in-out, opacity 0.9s ease-in-out;
}

.module--benefits .m-feature__description {
  position: relative;
  display: block;
  color: #0E0E0E;
  padding: 0 20px;
}

.module--benefits .m-feature__description.textOnly {
  position: relative;
  top: initial;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__description.textOnly {
    margin-top: 0;
  }
}

@media (min-width: 975px) {
  .module--benefits .m-feature__description.textOnly {
    margin-top: 80px;
  }
}

.module--benefits .m-feature__description.textOnly .vertical__wrap {
  top: initial;
  transform: none;
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}

.module--benefits .m-feature__description.textOnly .vertical__wrap .type {
  max-width: none;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__description {
    position: absolute;
    top: 0;
    height: 100%;
    padding-left: 0;
  }
}

@media (min-width: 975px) {
  .module--benefits .m-feature__description {
    padding-left: calc(100% * (1 / 12));
  }
}

.module--benefits .m-feature__description .vertical__wrap {
  top: initial;
  transform: none;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__description .vertical__wrap {
    position: relative;
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}

.module--benefits .m-feature__description .vertical__wrap img {
  margin-bottom: 15px;
}

.module--benefits .m-feature__description .vertical__wrap .type {
  margin-bottom: 60px;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__description .vertical__wrap .type {
    margin-bottom: 0;
  }
}

.module--benefits .m-feature__img {
  position: relative;
  float: none;
  display: block;
  margin-bottom: 25px;
  opacity: 1;
  text-align: right;
}

@media (min-width: 1080px) {
  .module--benefits .m-feature__img {
    opacity: 0;
  }
}

.module--benefits .m-feature__img.ratio-container::after {
  padding-bottom: 68.57%;
}

.module--benefits .m-feature__img.show {
  opacity: 1;
  transition: left 0.6s ease-in-out, right 0.6s ease-in-out, margin-top 0.6s ease-in-out, opacity 0.9s ease-in-out;
}

.module--benefits .m-feature__img.show.m-feature__img--alignment {
  right: 0;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__img.show.m-feature__img--alignment {
    right: -60px;
  }
}

.module--benefits .m-feature__img.show.m-feature__description {
  margin-top: 0;
  opacity: 1;
}

.module--benefits .m-feature__img.videoWrapper {
  position: relative;
}

.module--benefits .m-feature__img.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.module--benefits .m-feature__img.videoWrapper iframe.active {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.module--benefits .m-feature__img.videoWrapper iframe.active + .play__btn {
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.module--benefits .m-feature__img.videoWrapper img {
  display: block;
}

.module--benefits .m-feature__img.videoWrapper .play__btn {
  width: 78px;
  height: 30px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 900;
  line-height: 30px;
  text-transform: uppercase;
}

.module--benefits .m-feature__img.videoWrapper .play__btn .icon {
  vertical-align: middle;
  margin: 0 8px;
}

.module--benefits .m-feature__img--alignment {
  right: -20px;
}

@media (min-width: 595px) {
  .module--benefits .m-feature__img--alignment {
    float: right;
    right: -80px;
  }
}

.module--benefits .m-feature__img--alignment + .m-feature__description {
  left: 0;
  margin-top: 0;
  opacity: 1;
}

@media (min-width: 1080px) {
  .module--benefits .m-feature__img--alignment + .m-feature__description {
    opacity: 0;
    margin-top: 20px;
  }
}

.module--benefits .m-feature__img--alignment + .m-feature__description.show {
  margin-top: 0;
  opacity: 1;
  transition: margin-top 0.6s ease-in-out, opacity 0.9s ease-in-out;
}

.module--benefits .m-feature__description + figure {
  margin-right: -60px;
}

.module--benefits .benefits__section--additional {
  float: none;
  margin-top: 65px;
}

.module--benefits .benefits__section--additional::before,
.module--benefits .benefits__section--additional::after {
  content: '';
  display: block;
  clear: both;
}

.module--benefits .benefits__section--additional .content__wrapper {
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .module--benefits .benefits__section--additional .content__wrapper {
    margin: 0 40px;
  }
}

.module--benefits .benefits__section--additional .content__wrapper .label {
  display: block;
  margin-bottom: 23px;
  text-align: center;
  padding: 0 0 15px;
}

@media (min-width: 768px) {
  .module--benefits .benefits__section--additional .content__wrapper .label {
    margin-bottom: 38px;
  }
}

.module--benefits .benefits__section--additional .content__wrapper #benefits__slider {
  display: block;
}

.module--benefits .benefits__section--additional .content__wrapper #benefits__slider::before,
.module--benefits .benefits__section--additional .content__wrapper #benefits__slider::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 769px) {
  .module--benefits .benefits__section--additional .content__wrapper #benefits__slider {
    margin-left: -15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.module--benefits .benefits__section--additional .content__wrapper .slick-dots {
  left: 0;
}

.module--benefits .benefits__section--additional .content__wrapper .additional-benefit {
  margin-left: 0;
}

@media (min-width: 595px) {
  .module--benefits .benefits__section--additional .content__wrapper .additional-benefit {
    max-width: none;
    float: left;
    margin-left: 15px;
  }
}

@media (min-width: 975px) {
  .module--benefits .benefits__section--additional .content__wrapper .additional-benefit {
    -ms-flex: 1 100%;
        flex: 1 100%;
    margin-left: 15px;
  }
}

@media (min-width: 1080px) {
  .module--benefits .benefits__section--additional .content__wrapper .additional-benefit {
    max-width: 420px;
  }
}

.module--benefits .benefits__section--additional .content__wrapper .additional-benefit .small--bold {
  margin-bottom: 10px;
}

.module--benefits .benefits__section--additional .content__wrapper .additional-benefit .small {
  max-width: none;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 595px) {
  .module--benefits .benefits__section--additional .content__wrapper .additional-benefit .small {
    margin: 0;
  }
}

.module--benefits .benefits__section--additional .content__wrapper .additional-benefit .small--bold {
  margin-bottom: 10px;
}

.o-module__specs .section--shoe-specs {
  margin-top: -80px;
  max-width: 90vw;
}

.press__section {
  float: none;
  display: block;
  text-align: center;
  background-color: #FFF;
  box-shadow: 0 2px 6px 0 #D3D0CD;
  padding-top: 55px;
  padding-bottom: 25px;
  position: relative;
  z-index: 100;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

.press__section.bg__wrap {
  display: inline-block;
  max-width: none;
  padding: 50px 0 36px;
  width: 100%;
}

@media (min-width: 595px) {
  .press__section.bg__wrap {
    padding: 60px 0;
  }
}

@media (min-width: 595px) {
  .press__section {
    max-width: 869px;
  }
}

.press__section .content--top {
  position: absolute;
  top: -20px;
  left: calc(50% - 30px);
}

.press__section .type {
  padding: 0 20px;
  margin: 20px auto 0;
}

.press__section .logo__row {
  text-align: center;
  width: 135px;
  min-height: 25px;
  margin: 0 auto;
  position: relative;
  padding: 3.3%;
  margin-top: 10px;
}

.press__section .logo__row .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#shoe-finder {
  float: none;
  display: block;
  margin: 0 auto;
  max-width: 90%;
}

@media (min-width: 595px) {
  #shoe-finder {
    max-width: 869px;
  }
}

#shoe-finder .o-block--related-product__shoe-finder {
  background: url("images/brooks-path-background-white.jpg") no-repeat;
  background-position: left center;
  background-size: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px 1px rgba(14, 14, 14, 0.1);
  color: #0E0E0E;
  display: block;
  max-width: 980px;
  padding-bottom: 43px;
  position: relative;
  text-align: center;
  width: 100%;
  float: none;
  margin: 5rem auto;
}

#shoe-finder .o-block--related-product__shoe-finder a {
  margin: 0 auto;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results {
  max-width: 83%;
  margin: 0 auto;
  padding: 47px 0;
  padding-bottom: 0;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results::before,
#shoe-finder .o-block--related-product__shoe-finder .finder__results::after {
  content: '';
  display: block;
  clear: both;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .medium {
  margin-bottom: 15px;
  margin-top: 0;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .shoe__specs {
  float: none;
  max-width: none;
  margin-top: 0;
}

@media (min-width: 595px) {
  #shoe-finder .o-block--related-product__shoe-finder .finder__results .shoe__specs {
    max-width: 300px;
    float: left;
    width: 50%;
    margin-top: -7px;
  }
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .shoe__specs .specs__row .label {
  text-align: left;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .finder__reasons {
  text-align: left;
  float: none;
  display: block;
  margin-top: 20px;
}

@media (min-width: 595px) {
  #shoe-finder .o-block--related-product__shoe-finder .finder__results .finder__reasons {
    float: left;
    margin-left: 30px;
    margin-top: 0;
    width: calc(50% - 30px);
  }
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .finder__reasons .type,
#shoe-finder .o-block--related-product__shoe-finder .finder__results .finder__reasons .small {
  max-width: none;
}

#shoe-finder .o-block--related-product__shoe-finder .finder__results .finder__reasons .type {
  margin-bottom: 5px;
}

#shoe-finder .o-block--related-product__shoe-finder .icon-bra-icon {
  position: absolute;
  top: -20px;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 55px;
}

#shoe-finder .o-block--related-product__shoe-finder .icon-sneaker-icon {
  height: 45px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  width: 100%;
}

#shoe-finder .o-block--related-product__shoe-finder__copy {
  margin: 0 auto;
  padding: 39px 15px 5px;
  text-align: center;
  width: 100%;
}

@media (min-width: 595px) {
  #shoe-finder .o-block--related-product__shoe-finder__copy {
    padding: 54px 0 5px;
  }
}

#shoe-finder .o-block--related-product__shoe-finder .a-btn {
  display: block;
  margin: 0 auto;
}

.o-block--reviews {
  display: none;
}

.o-block--reviews.current {
  display: block;
}

.o-block--questions {
  display: none;
}

.o-block--questions.current {
  display: block;
}

.section__reviews {
  background: #F2F2F2;
}

.section__reviews::before,
.section__reviews::after {
  content: '';
  display: block;
  clear: both;
}

.section__reviews.turnto {
  padding-bottom: 80px;
}

.section__reviews--top {
  float: none;
  margin: auto;
  padding: 30px 20px 33px;
}

.section__reviews--top::before,
.section__reviews--top::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 595px) {
  .section__reviews--top {
    padding: 40px 20px 33px;
  }
}

.section__reviews--top .small--bold {
  float: none;
  display: block;
  margin-bottom: 13px;
}

@media (min-width: 595px) {
  .section__reviews--top .small--bold {
    float: left;
    width: 25%;
    margin-bottom: 0;
    line-height: 44px;
  }
}

.section__reviews--filters {
  float: none;
  display: block;
}

@media (min-width: 595px) {
  .section__reviews--filters {
    float: right;
    width: 100%;
  }
}

.section__reviews--filters .m-formfield {
  width: 100%;
}

@media (min-width: 595px) {
  .section__reviews--filters .m-formfield {
    width: 202px;
    float: right;
    margin-left: 20px;
  }
}

.section__reviews .o-review {
  float: none;
  margin: 0 auto;
}

.section__questions {
  background: #F2F2F2;
}

.section__questions::before,
.section__questions::after {
  content: '';
  display: block;
  clear: both;
}

.section__questions.turnto {
  padding-bottom: 80px;
}

.section__questions--top {
  float: none;
  margin: auto;
  padding: 40px 0 33px;
}

.section__questions--top::before,
.section__questions--top::after {
  content: '';
  display: block;
  clear: both;
}

.section__questions--top .small--bold {
  float: none;
  display: block;
  margin-bottom: 13px;
}

@media (min-width: 595px) {
  .section__questions--top .small--bold {
    float: left;
    width: 25%;
    margin-bottom: 0;
    line-height: 44px;
  }
}

.section__questions--filters {
  float: none;
  display: block;
}

@media (min-width: 595px) {
  .section__questions--filters {
    float: right;
    width: 100%;
  }
}

.section__questions--filters .m-formfield {
  width: 100%;
}

@media (min-width: 595px) {
  .section__questions--filters .m-formfield {
    width: 202px;
    float: right;
    margin-left: 20px;
  }
}

.section__questions--filters .cs-select {
  margin-left: 0;
  margin-bottom: 10px;
  max-width: none;
}

@media (min-width: 595px) {
  .section__questions--filters .cs-select {
    margin-left: 20px;
    margin-bottom: 0;
    max-width: 202px;
  }
}

div.m-block--flexible-module:last-of-type {
  margin-bottom: 41px;
}

@media (min-width: 975px) {
  div.m-block--flexible-module:last-of-type {
    margin-bottom: 120px;
  }
}

/*------------------------------------*
    #CAROUSEL
\*------------------------------------*/

/**
 * Horizontal carousel
 */

.carousel-horizontal {
  margin-bottom: 1em;
  overflow: hidden;
  position: relative;
}

/**
 * Carousel island container
 */

.carousel-island-container {
  overflow: hidden;
}

/**
 * Carousel container
 */

.carousel-container {
  position: relative;
}

/**
 * Carousel controls
 */

.carousel-controls {
  display: table;
  width: 100%;
  margin: -0.5em 0 1em;
  /**
    * Carousel pagination
    */
  /**
    * Carousel next button
    */
}

.carousel-controls a,
.carousel-controls div {
  display: table-cell;
  padding: 0.5em;
}

.carousel-controls .carousel-pagination {
  text-align: center;
}

.carousel-controls .carousel-next {
  text-align: right;
}

/*------------------------------------*
    #FOOTER
\*------------------------------------*/

/**
 * Footer
 */

.m-footer {
  clear: both;
  overflow: hidden;
  color: #0E0E0E;
  background-color: #FFF;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.m-footer ::-webkit-input-placeholder {
  color: #787673;
}

.m-footer :-ms-input-placeholder {
  color: #787673;
}

.m-footer ::-ms-input-placeholder {
  color: #787673;
}

.m-footer :-ms-input-placeholder {
  color: #787673;
}

.m-footer ::placeholder {
  color: #787673;
}

.m-footer--simplified .m-footer--toolbar {
  border-top: 0;
}

@media (min-width: 975px) {
  .m-footer--simplified .m-footer--toolbar {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

@media (min-width: 975px) {
  .m-footer--simplified .m-footer--toolbar__navigation {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

.m-footer__container {
  margin: 0 auto;
  width: auto;
}

.m-footer__container--lists {
  margin: 0 auto;
  width: auto;
}

@media (min-width: 975px) {
  .m-footer__container--lists {
    margin: 20px auto 0;
  }
}

.m-footer__primary--lists {
  margin: 0 auto;
}

@media (min-width: 975px) {
  .m-footer__primary--lists {
    border-bottom: 1px solid #F2F2F2;
    margin: 0 auto 35px;
    width: calc(100% * (8 / 12));
  }
}

.m-footer--toolbar {
  text-align: center;
  border-top: 1px solid #F2F2F2;
  padding-top: 10px;
  display: block;
}

@media (min-width: 975px) {
  .m-footer--toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.m-footer--toolbar > * {
  margin-bottom: 20px;
}

@media (min-width: 975px) {
  .m-footer--toolbar > * {
    margin-bottom: 0;
  }
}

.m-footer--toolbar li {
  display: inline-block;
  padding: 0 10px 20px 0;
  width: auto;
  transition: color 0.6s ease;
}

@media (min-width: 975px) {
  .m-footer--toolbar li {
    padding: 0 10px 0 0;
  }
}

.m-footer--toolbar li:hover {
  color: #0363F7;
  transition: color 0.6s ease;
}

.m-footer--toolbar__copyright {
  max-width: none;
  margin-top: 6px;
}

.m-footer--toolbar__social-icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.m-footer--toolbar__social-icons .hide--tablet {
  display: inline-block;
}

@media (min-width: 768px) {
  .m-footer--toolbar__social-icons .hide--tablet {
    display: none;
  }
}

.m-footer--toolbar__social-icons a {
  width: auto;
}

.m-footer--toolbar__social-icons a:last-of-type {
  margin: 0;
}

@media (min-width: 975px) {
  .m-footer--toolbar__social-icons a {
    margin: 0 25px 0 0;
  }
}

.m-footer--toolbar__social-icons a .icon {
  color: #0363F7;
  font-size: 20px;
  margin: 0;
  padding: 10px;
  width: auto;
  transition: color 0.6s;
}

.m-footer--toolbar__social-icons a .icon:hover {
  color: #0E0E0E;
  transition: color 0.6s;
}

@media (min-width: 975px) {
  .m-footer--toolbar__social-icons a .icon {
    font-size: 14px;
    padding: 0;
    height: 15px;
  }
}

.m-footer__guarantee {
  background: #0363F7;
  padding: 0 20px 32px;
  position: relative;
  text-align: center;
  width: 100%;
  box-sizing: border-box !important;
}

@media (min-width: 595px) {
  .m-footer__guarantee {
    display: -ms-flexbox;
    display: flex;
    padding: 0 46px 32px;
  }
}

@media (min-width: 768px) {
  .m-footer__guarantee {
    padding: 0 40px;
  }
}

.m-footer__guarantee__seal {
  transform: rotate(-15deg);
  width: auto;
}

@media (min-width: 595px) {
  .m-footer__guarantee__seal {
    display: inline-block;
    float: left;
    margin: 0 30px 0 0;
  }
}

@media (min-width: 768px) {
  .m-footer__guarantee__seal {
    margin: 0 30px -5px 0;
  }
}

@media (min-width: 975px) {
  .m-footer__guarantee__seal {
    margin: 0 30px -25px 0;
  }
}

.m-footer__seal {
  margin: 0 auto;
  max-height: 130px;
  max-width: 130px;
  position: relative;
  top: -10px;
  width: auto;
}

@media (min-width: 768px) {
  .m-footer__seal {
    margin: 0 0 -5px;
  }
}

@media (min-width: 975px) {
  .m-footer__seal {
    margin: 0 0 -25px;
  }
}

.m-footer__copy-block {
  color: #FFF;
  display: inline-block;
  margin: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-footer__copy-block {
    top: 28px;
  }
}

@media (min-width: 768px) {
  .m-footer__copy-block {
    transform: translate3d(0, 55%, 0);
    margin: 0 0 0 -30px;
    top: 0;
  }
}

@media (min-width: 768px) {
  .m-footer__copy-block {
    transform: translate3d(0, 0, 0);
    margin: 34px 0 20px -30px;
  }
}

@media (min-width: 975px) {
  .m-footer__copy-block {
    margin: 24px 0 20px -30px;
  }
}

.m-footer__copy-block .a-text-btn--secondary {
  line-height: 12px;
  vertical-align: middle;
}

.m-footer__copy-block a {
  width: auto;
}

@media (min-width: 768px) {
  .m-footer__copy-block a {
    margin: 0 6px 0 4px;
    padding: 0;
  }
}

@media (min-width: 595px) {
  .m-footer__copy-block {
    display: inline-block;
    width: calc(100% * (4 / 6));
  }
}

.m-footer__button-container {
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .m-footer__button-container {
    width: auto;
  }
}

.m-footer__list {
  border-bottom: 1px solid #F2F2F2;
  color: #0E0E0E;
  cursor: pointer;
  height: auto;
  padding: 21px 20px 18px;
  position: relative;
  width: 100%;
}

@media (min-width: 595px) {
  .m-footer__list {
    padding: 21px 40px 18px;
  }
}

@media (min-width: 975px) {
  .m-footer__list {
    cursor: default;
    border: 0;
    display: inline-block;
    height: auto;
    margin: 0 30px 47px 0;
    max-height: 100%;
    padding: 0;
    vertical-align: text-top;
    width: calc(100% * (2 / 8) - 30px);
  }
}

@media (min-width: 975px) and (min-width: 1280px) {
  .m-footer__list {
    margin: 0 40px 47px 0;
    width: calc(100% * (2 / 8) - 40px);
  }
}

@media (min-width: 975px) and (min-width: 1440px) {
  .m-footer__list {
    margin: 0 44px 47px 0;
    width: calc(100% * (2 / 8) - 44px);
  }
}

@media (min-width: 975px) {
  .m-footer__list:last-of-type {
    margin-right: 0;
  }
}

@media (min-width: 1080px) {
  .m-footer__list {
    margin: 0 35px 46px 0;
  }
}

@media (min-width: 1280px) {
  .m-footer__list {
    margin: 0 40px 46px 0;
  }
}

@media (min-width: 1440px) {
  .m-footer__list {
    margin: 0 44px 46px 0;
    text-align: left;
  }
}

.m-footer__list.active .m-footer__list-title::after {
  transform: rotate(-45deg);
  transition: transform 0.3s;
}

.m-footer__list .nav-item {
  display: none;
}

.m-footer__list .nav-item:first-of-type {
  padding: 20px 0 10px;
}

@media (min-width: 975px) {
  .m-footer__list .nav-item:first-of-type {
    padding: 5px 0;
  }
}

@media (min-width: 1080px) {
  .m-footer__list .nav-item {
    display: block;
    opacity: 1;
  }

  .m-footer__list .nav-item:first-of-type {
    padding: 5px 0;
  }
}

.m-footer__full-list {
  border-bottom: 1px solid #F2F2F2;
  color: #0E0E0E;
  cursor: pointer;
  height: auto;
  padding: 27px 20px 30px;
  position: relative;
  width: 100%;
}

@media (min-width: 595px) {
  .m-footer__full-list {
    margin: 0 auto;
    padding: 38px 40px 36px;
    text-align: center;
  }
}

@media (min-width: 975px) {
  .m-footer__full-list {
    cursor: default;
    display: inline-block;
    margin: 0;
    padding: 0 0 35px;
    vertical-align: text-top;
    width: 100%;
  }
}

.m-footer__full-list .nav-item--full {
  display: inline-block;
  margin: 20px 0 0;
  width: calc(50% - 20px);
}

.m-footer__full-list .nav-item--full:nth-child(odd) {
  margin: 20px 0 0 20px;
}

@media (min-width: 595px) {
  .m-footer__full-list .nav-item--full {
    margin: 0 10px 0 0;
    width: auto;
  }

  .m-footer__full-list .nav-item--full:nth-child(odd) {
    margin: 0 10px 0 0;
  }

  .m-footer__full-list .nav-item--full:last-of-type {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .m-footer__full-list .nav-item--full {
    margin: 0 20px 0 0;
  }

  .m-footer__full-list .nav-item--full:nth-child(odd) {
    margin: 0 20px 0 0;
  }
}

@media (min-width: 1280px) {
  .m-footer__full-list .nav-item--full {
    margin: 0 40px 0 0;
    width: auto;
  }

  .m-footer__full-list .nav-item--full:nth-child(odd) {
    margin: 0 40px 0 0;
  }

  .m-footer__full-list .nav-item--full:last-of-type {
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .m-footer__full-list .nav-item--full {
    margin: 0 44px 0 0;
    width: auto;
  }

  .m-footer__full-list .nav-item--full:nth-child(odd) {
    margin: 0 44px 0 0;
  }

  .m-footer__full-list .nav-item--full:last-of-type {
    margin: 0;
  }
}

.m-footer__full-list-title {
  position: relative;
}

@media (min-width: 595px) {
  .m-footer__full-list-title {
    margin: 0 0 17px;
    text-align: center;
  }
}

@media (min-width: 975px) {
  .m-footer__full-list-title {
    margin: 0 0 15px;
  }
}

.m-footer__email-signup {
  border-bottom: 1px solid #F2F2F2;
  margin: 40px 20px 28px;
  padding: 0 0 49px;
  text-align: center;
  width: auto;
}

@media (min-width: 595px) {
  .m-footer__email-signup {
    margin: 40px 40px 28px;
    padding: 0 0 50px;
    text-align: center;
  }
}

@media (min-width: 975px) {
  .m-footer__email-signup {
    border-bottom: 0;
    margin: 0 auto 13px;
    padding: 0;
    width: calc(100% * (8 / 12));
  }
}

@media (min-width: 1080px) {
  .m-footer__email-signup {
    margin: 40px auto;
  }
}

.m-footer__email-signup--border {
  border-top: 1px solid #F2F2F2;
  padding-top: 56px;
  position: relative;
}

.m-footer__email-signup__icon {
  background: url("images/brooks-pin-icon.png") no-repeat;
  background-size: contain;
  height: 64px;
  left: 50%;
  position: absolute;
  top: -30px;
  transform: translate(-50%, 0);
  width: 51px;
}

.m-footer__email-signup p {
  display: inline-block;
  margin: 0 0 25px;
  text-align: left;
  vertical-align: top;
  font-size: 17px;
  line-height: 23px;
  float: left;
}

@media (min-width: 595px) {
  .m-footer__email-signup p {
    padding: 10px;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .m-footer__email-signup p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  .m-footer__email-signup p {
    font-size: 20px;
    line-height: 27px;
  }
}

.m-footer__email-signup .m-formfield {
  padding-top: 0;
}

.m-footer__email-signup .label--bold {
  display: block;
  font-size: 12px;
}

.m-footer__form {
  display: block;
  margin: 5px 0 0;
  position: relative;
  text-align: left;
}

@media (min-width: 595px) {
  .m-footer__form {
    display: inline-block;
  }
}

.m-footer__form .label {
  display: block;
  margin: 25px 0 10px;
  text-transform: uppercase;
  box-sizing: border-box;
}

@media (min-width: 595px) {
  .m-footer__form .label {
    margin: 0 0 10px;
  }
}

.m-footer__form .error {
  border: 1px solid #DF001A;
  color: #DF001A;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.m-footer__form span.error {
  border: 0;
  color: #DF001A;
  display: inline-block;
  left: 0;
  margin: 0 0 12px;
  position: relative;
  width: auto;
}

@media (min-width: 595px) {
  .m-footer__form span.error {
    margin: 12px 0 0;
  }
}

/* DW Overwrite */

p.m-footer__copy-block {
  margin: 0;
  line-height: 23px;
  font-size: 17px;
}

@media (min-width: 768px) {
  p.m-footer__copy-block {
    margin: 34px 0 20px -30px;
    line-height: 24px;
    font-size: 18px;
  }
}

@media (min-width: 975px) {
  p.m-footer__copy-block {
    margin: 24px 0 20px -30px;
  }
}

@media (min-width: 1080px) {
  p.m-footer__copy-block {
    font-size: 20px;
    line-height: 27px;
  }
}

.m-footer-nav {
  border-bottom: 1px solid #F2F2F2;
  padding: 21px 20px 18px;
}

@media (min-width: 595px) {
  .m-footer-nav {
    padding: 21px 40px 18px;
  }
}

@media (min-width: 975px) {
  .m-footer-nav {
    border-bottom: 0;
    display: inline-block;
    margin: 46px 30px 46px 0;
    padding: 0;
    vertical-align: text-top;
    width: calc(100% * (2 / 8) - 30px);
    text-align: center;
  }

  .m-footer-nav:last-of-type {
    margin-right: 0;
  }
}

@media (min-width: 1080px) {
  .m-footer-nav {
    margin-right: 35px;
  }
}

@media (min-width: 1280px) {
  .m-footer-nav {
    margin-right: 40px;
    width: calc(100% * (2 / 8) - 40px);
  }
}

@media (min-width: 1440px) {
  .m-footer-nav {
    margin-right: 44px;
    width: calc(100% * (2 / 8) - 44px);
  }
}

.m-footer-nav__list {
  margin-top: 10px;
}

.m-footer-nav__list-item {
  padding: 10px 0;
}

@media (min-width: 975px) {
  .m-footer-nav__list-item {
    padding: 5px 0;
  }
}

/*------------------------------------*
    #FORMS
\*------------------------------------*/

/**
 * Input and text area base styles
 * 1) Width entire container, gray border, padding
 */

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

input,
textarea {
  color: #0E0E0E;
  width: 100%;
  border: 1px solid #D3D0CD;
  padding: 9px 15px;
  transition: color 0.6s, border 0.6s;
}

input:focus,
textarea:focus {
  transition: color 0.6s, border 0.6s;
}

/**
 * Input Styles
 */

.e-text__input {
  background: #FFF;
  border: 1px solid #D3D0CD;
  border-radius: 0;
  color: #0E0E0E;
  max-width: 400px;
  height: 40px;
  text-indent: 0;
  transition: color 0.6s, border-color 0.6s;
}

.e-text__input:hover,
.e-text__input:focus {
  color: #0E0E0E;
  border-color: #787673;
  transition: color 0.6s, border-color 0.6s;
}

.e-text__textarea {
  border: 1px solid #D3D0CD;
  border-radius: 0;
  color: #0E0E0E;
  height: 120px;
  max-width: 400px;
  transition: color 0.6s, border-color 0.6s;
}

.e-text__textarea:hover,
.e-text__textarea:focus {
  color: #0E0E0E;
  border-color: #787673;
  transition: color 0.6s, border-color 0.6s;
}

/**
 * Search form
 */

.c-search-form {
  display: none;
}

.c-search-form--is-active {
  display: block;
  position: absolute;
  top: 67px;
  right: 2px;
  width: 100%;
  padding: 1em;
  box-shadow: 0 3px 5px -2px rgba(0, 0, 0, 0.2);
  background: #FFF;
  z-index: 1;
}

@media all and (min-width: 29.75em) {
  .c-search-form {
    display: block;
  }
}

/**
 * Search input
 */

.c-search-form__input {
  padding: .5rem;
}

.error-message,
.error-form {
  color: #DF001A;
  font-size: 15px;
  line-height: 20px;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  display: block;
}

.error-form {
  padding: 0 0 20px;
}

@media (min-width: 595px) {
  .error-form {
    padding: 0 0 20px;
  }
}

.email-input__wrapper {
  background: #F2F2F2;
  padding: 27px 20px 30px;
  margin-bottom: 25px;
}

.email-input__wrapper .m-footer__form {
  position: relative;
  display: block;
  max-width: 400px;
}

.email-input__wrapper .m-footer__form .e-text__input {
  position: relative;
  display: block;
}

.email-input__wrapper .m-footer__form .a-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.email-input__wrapper .m-footer__form .a-btn--form {
  width: auto;
  text-align: center;
  padding: 0 13px;
}

.email-input__wrapper .m-footer__form .a-btn--form .icon {
  width: .8em;
  height: .6em;
}

.email-input__wrapper .m-footer__form .m-formfield {
  padding-top: 0;
}

.m-block-teaser-signup {
  background: #FFF;
  box-shadow: 0 0 3px 0 #D3D0CD;
  float: none;
  margin: 0 auto;
  padding: 34px 20px 36px;
  position: relative;
  text-align: center;
}

@media (min-width: 595px) {
  .m-block-teaser-signup {
    padding: 34px 40px 36px;
  }
}

@media (min-width: 1080px) {
  .m-block-teaser-signup {
    padding: 29px 60px 32px;
  }
}

.m-block-teaser-signup .a-btn {
  max-width: 100%;
}

.m-block-teaser-signup .m-footer__email-signup {
  border-bottom: 0;
  margin: 30px auto;
  padding-bottom: 0;
}

@media (min-width: 975px) {
  .m-block-teaser-signup .m-footer__email-signup {
    margin: 20px auto 32px;
  }
}

.m-block-teaser-signup .m-footer__form {
  max-width: 420px;
  width: 100%;
}

.m-block-teaser-signup .a-text-btn {
  display: table;
  margin: 0 auto 20px;
}

.m-block-teaser-signup .a-text-btn:last-of-type {
  margin: 0 auto;
}

@media (min-width: 595px) {
  .m-block-teaser-signup .a-text-btn {
    display: inline-block;
    margin: 0 30px;
  }
}

.m-block-teaser-signup p {
  float: none;
  margin: 0 auto;
}

.m-form .alert.alert--verbose,
.m-formfield .alert.alert--verbose {
  background: none;
  border: 0;
  padding: 0;
  margin-bottom: 8px;
}

.m-form__error .alert.alert--verbose {
  margin: 0;
}

.m-form__error .alert.alert--verbose:last-child {
  margin-bottom: 20px;
}

.m-form__subtitle {
  max-width: none;
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .m-form__subtitle {
    width: calc(100% * 10 / 12);
  }
}

.m-form .m-form__fields--onecolumn *:first-child .m-formfield {
  padding-top: 0;
}

.m-form .m-form__fields--twocolumn {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.m-form .m-form__fields--twocolumn *:first-child .m-formfield,
.m-form .m-form__fields--twocolumn *:nth-child(2) .m-formfield {
  padding-top: 0;
}

.m-form .m-locale-summary {
  margin-bottom: 20px;
}

.m-formfield {
  padding-top: 20px;
  /* This is tech debt after A/B test to remove */
}

.m-formfield .e-text__input {
  max-width: none;
}

.m-formfield .required::after {
  content: '*';
}

.m-formfield .error {
  background-color: rgba(223, 0, 26, 0.05);
  border: 1px solid #DF001A;
}

.m-formfield .error.cs-select::before {
  border: 0;
  padding: 0;
}

.m-formfield .error.cs-select .cs-placeholder {
  background-color: rgba(223, 0, 26, 0.05);
}

.m-formfield .alert--verbose {
  margin-bottom: 0;
  margin-top: 8px;
}

.m-formfield .alert--verbose:nth-of-type(1n+2)::before {
  background: none;
}

.m-formfield .error[generated='true'] {
  display: none !important;
}

.m-dropdown-links .a-text-plain {
  display: block;
  float: left;
  margin: 0 15px 10px 0;
}

.m-dropdown-links .a-text-plain:last-of-type {
  margin-right: 0;
}

.m-dropdown-links .m-formfield {
  margin-bottom: 10px;
  padding-top: 0;
}

.m-shipping-method-option__title {
  margin-top: 7px;
  margin-bottom: 10px;
}

.m-shipping-method-option .pricing {
  float: right;
  position: relative;
  top: 4px;
}

.m-address-option {
  width: 50%;
}

@media (max-width: 767px) {
  .m-address-option {
    width: 100%;
    margin-bottom: 20px;
  }

  .m-address-option:last-child {
    margin-bottom: 0;
  }
}

.m-address-option__title {
  margin: 6px 0 10px;
}

.m-address-option .e-input__radio {
  margin-top: 2px;
}

.m-address-review-list[data-review-state='noOptions'] .js-hasOptions,
.m-address-review-list[data-review-state='noOptions'] .js-isValid {
  display: none;
}

.m-address-review-list[data-review-state='hasOptions'] .js-noOptions,
.m-address-review-list[data-review-state='hasOptions'] .js-isValid {
  display: none;
}

.m-address-review-list[data-review-state='isValid'] .js-noOptions,
.m-address-review-list[data-review-state='isValid'] .js-hasOptions {
  display: none;
}

.m-address-review-list__title {
  margin-bottom: 10px;
}

.m-address-review-list__text {
  margin-bottom: 20px;
  max-width: none;
}

.m-address-review-list__options,
.m-address-review-list__nooptions {
  margin-bottom: 20px;
}

.m-address-review-list__options p,
.m-address-review-list__nooptions p {
  max-width: none;
}

@media (min-width: 975px) {
  .m-address-review-list__options {
    float: left;
    width: 50%;
  }
}

.m-address-review-list__nooptions {
  width: 100%;
  float: left;
}

.m-textfield-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 2;
      flex-shrink: 2;
  margin-bottom: 20px;
}

.m-textfield-inline .m-formfield {
  -ms-flex: 1 1 60em;
      flex: 1 1 60em;
}

.m-textfield-inline button {
  width: 100%;
  -ms-flex: 2 2 20em;
      flex: 2 2 20em;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (min-width: 595px) {
  .m-textfield-inline--button-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 2;
        flex-shrink: 2;
  }
}

@media (min-width: 595px) {
  .m-textfield-inline--button-wrap .m-formfield {
    -ms-flex: 1 1 60em;
        flex: 1 1 60em;
  }
}

.m-textfield-inline--button-wrap button {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

@media (min-width: 595px) {
  .m-textfield-inline--button-wrap button {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 0;
  }
}

/*------------------------------------*
    #HEADER
\*------------------------------------*/

body.nav-up .promo--active #search-results-container #secondary {
  top: -25px;
}

body.nav-up #search-results-container #secondary {
  top: -65px;
}

body.nav-down #wrapper:not(.promo--active) #search-results-container .filters-container.active #secondary {
  top: 0;
}

/**
 * Header
 */

.promo-bar {
  background: #0363F7;
  color: #FFF;
  display: none;
  top: 0;
  width: 100%;
  position: relative;
  z-index: 2000;
}

@media (min-width: 975px) {
  .promo-bar {
    z-index: 200;
  }
}

.promo-bar b {
  color: #FFF;
}

.promo-bar.active {
  display: block;
}

.promo-bar.nav--hidden {
  display: none;
}

.promo-bar__close-icon {
  cursor: pointer;
  height: 11px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  width: 11px;
}

@media (min-width: 595px) {
  .promo-bar__close-icon {
    right: 40px;
  }
}

@media (min-width: 1080px) {
  .promo-bar__close-icon {
    right: 60px;
  }
}

.promo-bar__close-icon svg {
  position: absolute;
  left: 0;
  width: 11px;
  height: 11px;
}

.promo-bar p {
  margin: 0 auto;
  padding: 11px 0 9px;
  text-align: center;
  width: 80%;
}

.promo-bar p a {
  color: #FFF;
}

@media (min-width: 595px) {
  .promo-bar p {
    width: 100%;
  }
}

.o-header {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 500;
  line-height: 60px;
  transition: transform opacity 0.3s;
}

.o-header select {
  width: auto;
  height: auto;
  background: #FFF;
  max-width: 95px;
  padding: 0;
  margin: 0 20px;
  border: 0;
  color: #0E0E0E;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-style: normal;
  text-decoration: none;
}

.o-header select::-ms-expand {
  display: none;
}

@media (max-width: 767px) {
  .o-header {
    white-space: nowrap;
  }
}

.o-header.nav-up {
  transform: translate3d(0, -100%, 0);
  transition: transform 0.3s;
}

@media (min-width: 975px) {
  .o-header.nav-up {
    transform: none;
  }
}

.o-header.nav-down {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s;
}

@media (min-width: 975px) {
  .o-header.nav-down {
    transform: none;
  }
}

.o-header.nav--hidden {
  display: none;
}

@media (min-width: 975px) {
  .o-header {
    position: relative;
    line-height: 20px;
    height: 100px;
  }
}

.o-header::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 9.2px;
  left: 0;
  opacity: .05;
  bottom: -9.2px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 15%, #0E0E0E 100%);
  z-index: 500;
}

@media (max-width: 767px) {
  .o-header {
    display: block;
    height: 60px;
    line-height: 60px;
  }
}

.o-header * {
  box-sizing: border-box;
}

.o-header .mini-cart {
  line-height: initial;
  text-align: initial;
}

.nav__container {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.nav__container::before,
.nav__container::after {
  content: '';
  display: block;
  clear: both;
}

.nav__container.search-active {
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .nav__container {
    width: 100%;
  }
}

@media (min-width: 975px) {
  .nav__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}

.nav__container--offCanvas {
  height: 100vh;
  background: #FFF;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: visible;
  position: absolute;
  top: -1000px;
  width: 300%;
  display: block;
  z-index: -1;
  max-width: none;
}

.nav__container--offCanvas::before,
.nav__container--offCanvas::after {
  content: '';
  display: block;
  clear: both;
}

.nav__container--offCanvas.active {
  top: 60px;
  left: 0;
  overflow: auto;
  padding-bottom: 60px;
  opacity: 1;
  z-index: 100;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s, position 0.2s, opacity 0.6s 0.2s;
}

.nav__container--offCanvas.step-two {
  transform: translate3d(-33.333%, 0, 0);
  transition: transform 0.3s;
}

.nav__container--offCanvas.step-three {
  transform: translate3d(-66.666%, 0, 0);
}

.nav__container--offCanvas .o-header__molecules--right {
  float: none;
  display: block;
  width: 100%;
  height: 100%;
}

.nav__container--offCanvas .o-header__molecules--right::before,
.nav__container--offCanvas .o-header__molecules--right::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 975px) {
  .nav__container--offCanvas {
    display: none;
  }
}

.m-mobile-nav__one,
.m-mobile-nav__two,
.m-mobile-nav__three {
  float: left;
  display: block;
  width: 33.333%;
}

.m-mobile-nav__label,
.m-mobile-nav__header,
.m-mobile-nav__item {
  display: block;
  padding-left: 6.3%;
  border-bottom: 1px solid #D3D0CD;
}

.m-mobile-nav__header,
.m-mobile-nav__label {
  background: #F2F2F2;
}

.m-mobile-nav__header,
.m-mobile-nav__item {
  height: 60px;
  line-height: 60px;
  position: relative;
}

.m-mobile-nav__label {
  height: 40px;
  line-height: 40px;
  background: #F2F2F2;
}

.m-mobile-nav__header {
  text-align: center;
}

.m-mobile-nav__header::before {
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  left: 6.3%;
  width: 8px;
  height: 8px;
  background: transparent;
  border-top: 2px solid #0363F7;
  border-right: 2px solid #0363F7;
  box-shadow: 0 0 0 #F2F2F2;
  transform: rotate(-135deg);
}

.m-mobile-nav__two .m-mobile-nav__list,
.m-mobile-nav__three .m-mobile-nav__list {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.m-mobile-nav__two .m-mobile-nav__list--show,
.m-mobile-nav__three .m-mobile-nav__list--show {
  display: block;
  opacity: 1;
}

.m-mobile-nav__item--expand::after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 6.3%;
  width: 8px;
  height: 8px;
  background: transparent;
  border-top: 2px solid #0363F7;
  border-right: 2px solid #0363F7;
  box-shadow: 0 0 0 #F2F2F2;
  transform: rotate(45deg);
}

@media (min-width: 595px) {
  .m-mobile-nav__item--expand::after {
    right: 50px;
  }
}

.m-mobile-nav__link {
  display: block;
  line-height: 60px;
}

.m-mobile-nav__link.sale {
  color: #DF001A;
}

/**
* This separates the header layout into left and right sides
* The logo makes up the left side and the rest is right
*/

.o-header__molecules--left {
  display: block;
  float: left;
  width: 50%;
  margin: 0;
}

@media (min-width: 975px) {
  .o-header__molecules--left {
    margin: 0;
    width: calc(100% * (3 / 12));
  }
}

@media (min-width: 1080px) {
  .o-header__molecules--left {
    width: calc(100% * (2 / 12));
    margin: 0 30px 0 0;
  }
}

.o-header__molecules--left .logo {
  min-width: 130px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  background: none;
  margin: 0;
  height: auto;
  width: auto;
}

.o-header__molecules--left .logo::before,
.o-header__molecules--left .logo::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 975px) {
  .o-header__molecules--left .logo {
    padding: 39px 0 39px 25px;
  }
}

@media (min-width: 1280px) {
  .o-header__molecules--left .logo {
    padding: 39px 0 39px 40px;
  }
}

.o-header__molecules--left .logo .icon {
  float: left;
}

.o-header__molecules--right {
  float: right;
  width: 50%;
  position: relative;
}

@media (min-width: 975px) {
  .o-header__molecules--right {
    float: left;
    width: calc(100% * (9 / 12));
  }
}

@media (min-width: 1080px) {
  .o-header__molecules--right {
    float: left;
    width: calc(100% * (10 / 12));
  }
}

.o-header__molecules--right .m-header__utility {
  width: 100%;
  position: relative;
  line-height: 20px;
  padding-bottom: 6px;
  display: none;
  border-bottom: 1px solid #F2F2F2;
}

.o-header__molecules--right .m-header__utility::before,
.o-header__molecules--right .m-header__utility::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 975px) {
  .o-header__molecules--right .m-header__utility {
    display: block;
  }
}

.o-header__molecules--right .m-header__utility .alert {
  float: left;
}

.o-header__molecules--right .m-header__utility .m-navigation__list {
  float: right;
  line-height: 20px;
  position: relative;
  top: -2px;
  list-style: none;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .icon__wrapper {
  float: left;
  line-height: 20px;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .icon__wrapper .icon,
.o-header__molecules--right .m-header__utility .m-navigation__list .icon__wrapper .x-small--bold {
  display: inline-block;
  color: #0E0E0E;
  font-size: 12px;
  line-height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .a-navigation__item {
  line-height: 20px;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .a-navigation__item .a-primary-nav__link {
  line-height: 20px;
  vertical-align: middle;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .a-navigation__item:last-of-type {
  margin-right: 0;
}

.o-header__molecules--right .m-header__utility .m-navigation__list .changeRegionNav--right {
  float: right;
}

@media (min-width: 975px) {
  .o-header__molecules--right .wrap {
    margin-top: 19px;
  }
}

.o-header__molecules--right .m-primary-nav {
  float: none;
  clear: both;
  display: none;
  line-height: 1;
}

@media (min-width: 975px) {
  .o-header__molecules--right .m-primary-nav {
    display: inline-block;
    vertical-align: middle;
  }
}

.o-header__molecules--right .o-header__utility--right {
  float: right;
}

.o-header__molecules--right .o-header__utility--right .navigation__icons {
  position: relative;
  top: -2px;
}

@media (min-width: 768px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons {
    margin: 0;
  }
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .icon__wrapper {
  display: inline-block;
  margin: 0 18px 0 0;
  vertical-align: middle;
  position: relative;
}

@media (min-width: 595px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .icon__wrapper {
    margin: 0 24px 0 0;
  }
}

@media (min-width: 975px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .icon__wrapper {
    margin: 0 30px 0 0;
  }
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .icon__wrapper:last-of-type {
  margin: 0;
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search {
  width: 100%;
  height: 1.375rem;
  border-radius: .8125rem;
  border: solid 1px #787673;
  background-color: inherit;
  vertical-align: text-bottom;
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search:hover {
  border-color: #0363F7;
  color: #0363F7;
  transition: color 0.3s;
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search:hover .icon-search {
  stroke: #0363F7;
  transition: stroke 0.3s;
}

@media (min-width: 975px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search {
    width: 7.8125rem;
    height: 1.6875rem;
    padding: 0;
    vertical-align: middle;
  }
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search .icon-search {
  width: 1.0625rem;
  height: 1.0625rem;
  margin-left: .5rem;
  vertical-align: top;
}

@media (min-width: 595px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search .icon-search {
    margin-left: 1.25rem;
  }
}

@media (min-width: 975px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .btn-search .icon-search {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .a-icon--primary-nav:last-of-type {
  margin: 0;
}

@media (min-width: 975px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .a-icon--primary-nav.icon--bag {
    margin: 0;
  }
}

@media (min-width: 975px) {
  .o-header__molecules--right .o-header__utility--right .navigation__icons .a-icon--mobile {
    display: none;
  }
}

.o-header__molecules--right .o-header__utility--right .navigation__icons .a-icon--mobile .icon {
  margin-right: 0;
}

.o-header__molecules--right .chooseshipto img {
  float: none;
  top: initial;
  bottom: initial;
  vertical-align: middle;
  margin-right: 0;
}

/*------------------------------------*
    #ShoeFinder specific header
\*------------------------------------*/

#wrapper.pt_shoefinder {
  background-color: #FFF;
}

#wrapper.pt_shoefinder .nav__container--offCanvas.active {
  position: relative;
  top: -5px;
  overflow: visible;
}

/*------------------------------------*
    #Checkout specific header
\*------------------------------------*/

body.checkout .alert {
  display: block;
}

body.checkout header {
  height: 60px;
}

body.checkout .o-header__molecules--left .logo {
  min-width: 130px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 10px 20px 20px;
}

@media (min-width: 595px) {
  body.checkout .o-header__molecules--left .logo {
    padding: 20px;
  }
}

body.checkout .o-header__molecules--right {
  text-align: right;
}

body.checkout .o-header__molecules--right .o-header__controls {
  position: relative;
  vertical-align: middle;
}

body.checkout .o-header__molecules--right .o-header__controls .m-header__utility {
  vertical-align: middle;
}

body.checkout .o-header__molecules--right .o-header__controls .wrap {
  vertical-align: middle;
  margin-top: 0;
}

body.checkout .m-primary-nav {
  display: none;
}

body.checkout .m-header__utility {
  display: inline-block;
  width: auto;
  border-bottom: 0;
  padding-bottom: 0;
}

body.checkout .m-header__utility .m-navigation__list--utility {
  line-height: initial;
}

@media (min-width: 595px) {
  body.checkout .m-header__utility .m-navigation__list--utility {
    line-height: 20px;
  }
}

body.checkout .wrap {
  display: inline-block;
  width: auto;
}

body.checkout .wrap .o-header__utility--right .o-header__search-form {
  display: none;
}

body.checkout .wrap .o-header__utility--right .navigation__icons .icon--search {
  display: none;
}

body.checkout .wrap .o-header__utility--right .navigation__icons .icon--bag {
  margin-right: 0;
}

body.checkout .wrap .o-header__utility--right .navigation__icons .icon--menu {
  display: none;
}

body.checkout .mini-cart__quantity {
  right: 0;
}

/*------------------------------------*
    #LOGO
\*------------------------------------*/

.c-logo {
  display: block;
  max-width: 200px;
}

.a-logo-link {
  display: inline-block;
}

.a-logo-link .icon-brooks-path,
.a-logo-link .icon-brooks-letters,
.a-logo-link .icon-logo {
  transition: fill 0.6s ease;
}

.a-logo-link .logo:hover .icon-brooks-path,
.a-logo-link .logo:hover .icon-brooks-letters,
.a-logo-link .logo:hover .icon-logo {
  fill: #002855;
  transition: fill 0.6s ease;
}

.a-logo-link:hover .icon-brooks-letters {
  fill: #002855;
  transition: fill 0.6s ease;
}

/*------------------------------------*
    #ICONS
\*------------------------------------*/

/**
 * Icon fonts
 */

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icons.eot?#iefix") format("embedded-opentype"), url("fonts/icons.woff") format("woff"), url("fonts/icons.ttf") format("truetype"), url("fonts/icons.svg#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/**
 * Use the following CSS code if you want to use data attributes for inserting your icons
 */

[data-icon]::before {
  font-family: 'icons';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Icons and icon pseudo-elements
 */

.icon-twitter::before,
.icon-stumbleupon::before,
.icon-pinterest::before,
.icon-linkedin::before,
.icon-google-plus::before,
.icon-search::before,
.icon-play::before,
.icon-menu::before,
.icon-arrow-left::before,
.icon-arrow-right::before,
.icon-bubble::before,
.icon-facebook::before,
.icon-feed::before,
.icon-youtube::before,
.icon-tag::before,
.icon-tumblr::before,
.icon-instagram,
.icon-podcast,
.icon-apple,
.icon-android,
.icon-arrow::after,
.icon-envelope::before {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Twitter icon
 */

.icon-twitter::before {
  content: '\74';
}

/**
 * Stumbleupon icon
 */

.icon-stumbleupon::before {
  content: '\75';
}

/**
 * Pinterest icon
 */

.icon-pinterest::before {
  content: '\70';
}

/**
 * LinkedIn icon
 */

.icon-linkedin::before {
  content: '\69';
}

/**
 * Google plus icon
 */

.icon-google-plus::before {
  content: '\67';
}

/**
 * Icon search
 */

.icon-search::before {
  content: '\73';
}

/**
 * Play button icon
 */

.icon-play::before {
  content: '\61';
}

/**
 * Menu icon
 */

.icon-menu::before {
  content: '\21';
}

/**
 * Arrow left icon
 */

.icon-arrow-left::before {
  content: '\23';
}

/**
 * Arrow right icon
 */

.icon-arrow-right::before {
  content: '\24';
}

/**
 * Bubble icon
 */

.icon-bubble::before {
  content: '\25';
}

/**
 * Facebook icon
 */

.icon-facebook::before {
  content: '\66';
}

/**
 * Feed icon
 */

.icon-feed::before {
  content: '\27';
}

/**
 * YouTube icon
 */

.icon-youtube::before {
  content: '\79';
}

/**
 * Tag icon
 */

.icon-tag::before {
  content: '\28';
}

/**
 * Tumblr icon
 */

.icon-tumblr::before {
  content: '\6d';
}

/**
 * Instagram icon
 */

.icon-instagram::before {
  content: '\22';
}

/**
 * Podcast icon
 */

.icon-podcast::before {
  content: '\26';
}

/**
 * Android icon
 */

.icon-android::before {
  content: '\29';
}

/**
 * Twitter icon
 */

.icon-apple::before {
  content: '\2a';
}

/**
 * Envelope icon
 */

.icon-envelope::before {
  content: '\2b';
}

/**
 * Arrow icon
 */

.icon-arrow::after {
  content: '\61';
  display: inline-block;
  transform: rotate(90deg);
}

/**
 * Play icon
 */

.icon-play::before {
  font-size: .7rem;
  padding-left: .2em;
}

/**
 * Play box icon & before
 */

.icon-play-box {
  display: block;
  margin-left: 2em;
}

.icon-play-box::before {
  padding: 0.25em;
  background: #808080;
  color: #FFF;
  margin-left: -1.7rem;
  margin-right: 0.5em;
}

/**
 * WS_BROOKS ICONS SVG
 */

.icon {
  background: none;
  margin: 0;
}

.icon-brooks-logo-blue,
.icon-brooks-logo-black {
  width: 197px;
  height: 23px;
}

.icon-brooks-path {
  width: 37px;
  height: 20px;
  fill: #0363F7;
}

@media (min-width: 975px) {
  .icon-brooks-path {
    width: 56px;
    height: 22px;
  }
}

.icon-brooks-letters {
  width: 93px;
  height: 20px;
  fill: #0363F7;
}

@media (min-width: 975px) {
  .icon-brooks-letters {
    height: 22px;
    width: 140px;
  }
}

.icon-logo {
  width: 100px;
  height: 20px;
  fill: #0363F7;
}

@media (min-width: 595px) {
  .icon-logo {
    width: 162px;
    height: 20px;
  }
}

@media (min-width: 975px) {
  .icon-logo {
    width: 190px;
    height: 23px;
  }
}

.icon-brooks-logo-black {
  fill: #0E0E0E;
}

.icon-keyboard_arrow_down::before {
  content: '\e313';
}

.icon__wrapper:focus {
  outline: #0363F7;
}

.icon-long-arrow {
  fill: none;
  stroke: #0363F7;
}

.icon-checkmark {
  stroke-width: 8px;
}

.icon-checklist {
  width: 2.45em;
  height: 3.2em;
}

.icon-press {
  width: 4em;
  height: 3.2em;
}

.icon-play {
  width: .75em;
  height: 1em;
}

.icon-search {
  width: 20px;
  height: 20px;
  stroke: #0E0E0E;
  transition: stroke 0.6s;
}

.icon-search:hover {
  stroke: #0363F7;
  transition: stroke 0.6s;
}

@media (min-width: 975px) {
  .icon-search {
    height: 23px;
    width: 23px;
  }
}

.icon-search-button {
  cursor: pointer;
  display: none;
  fill: #0363F7;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  z-index: 1000;
  transition: fill 0.6s ease;
}

.icon-search-button:hover {
  fill: #002855;
  transition: fill 0.6s ease;
}

@media (min-width: 975px) {
  .icon-search-button {
    display: block;
  }
}

.icon-bag1 {
  width: 1.6em;
  height: 19px;
  cursor: pointer;
}

@media (min-width: 975px) {
  .icon-bag1 {
    width: 2em;
    height: 25px;
  }
}

.icon-bag1 path {
  fill: none;
  stroke: #0E0E0E;
  transition: stroke 0.6s;
  stroke-width: 3.4;
}

@media (min-width: 975px) {
  .icon-bag1 path {
    stroke-width: 2.9;
  }
}

.icon-bag1 path:nth-of-type(5) {
  fill: #0E0E0E;
  stroke: none;
  transform-origin: 50% 50%;
  transition: stroke 0.6s, fill 0.6s;
  animation: zip-out 0.6s forwards;
}

.icon-bag1:hover path {
  stroke: #0363F7;
  transition: stroke 0.6s;
}

.icon-bag1:hover path:nth-of-type(5) {
  fill: #0363F7;
  stroke: none;
  transition: stroke 0.6s, fill 0.6s;
  animation: zip 0.6s alternate forwards;
}

.icon-Bag {
  width: 30px;
  height: 30px;
  line-height: 20px;
  vertical-align: bottom;
  stroke: #0E0E0E;
  transition: stroke 0.6s ease;
}

.icon-close {
  width: 12px;
  height: 12px;
  stroke: #0E0E0E;
  transition: stroke 0.6s ease;
}

.icon-close-white {
  min-width: 12px;
  width: 12px;
  height: 12px;
}

.icon-Hamburger {
  height: 18px;
  width: 18px;
}

.icon-usa-flag {
  width: 1em;
  height: .93em;
}

.icon-cloud {
  width: 1.87890625em;
  height: 1em;
}

.icon-hash-knit {
  width: 1.0634765625em;
  height: 1em;
}

.icon-cushion-icon {
  width: 1.1455078125em;
  height: 1em;
}

.icon-squiggle {
  width: 1.025390625em;
}

.icon-sneaker-icon {
  width: 2.2861328125em;
  height: 2em;
}

.icon-bra-icon {
  width: .9052734375em;
  height: 1em;
}

.icon-star {
  width: 1em;
  height: 1em;
  fill: #D3D0CD;
}

.icon-star.full {
  fill: #0363F7;
}

.icon-review-icon,
.icon-icon-questions {
  width: 70px;
  height: 47px;
}

.icon-thumbs-up {
  fill: #FFF;
  width: 1.075em;
  height: 1.2em;
  margin: 0 0 0 9px;
}

.icon-thumb_icon {
  width: 1em;
  height: 1.1em;
}

.icon-arrow-circle {
  width: 1em;
  height: 1em;
}

.icon-caret-black {
  width: 1.5205078125em;
  height: 1em;
  stroke: #0E0E0E;
  fill: none;
}

.icon-caret-sm-white {
  height: 1em;
  width: .599609375em;
}

#nav-icon3 {
  width: 20px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.6s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0E0E0E;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 2px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 14px;
}

#nav-icon3.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.icon-video-play {
  fill: #FFF;
}

.icon-video-pause {
  fill: #FFF;
}

.grid-icon-container {
  background-color: #FFF;
  border: 1px solid #D3D0CD;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 37px;
  position: relative;
  transition: background 0.2s ease-in-out;
  width: 45.5px;
}

.grid-icon-container.active {
  background: #0363F7;
}

.grid-icon-container.active .icon-grid-view-icon {
  fill: #FFF;
}

.grid-icon-container.active:hover .icon-grid-view-icon {
  fill: #FFF;
}

.grid-icon-container:hover .icon-grid-view-icon {
  fill: #0363F7;
}

.icon-grid-view-icon {
  display: inline-block;
  height: 13px;
  left: 28%;
  position: absolute;
  top: 30%;
  transition: fill 0.3s ease-in-out;
  width: 19px;
}

.list-icon-container {
  background-color: #FFF;
  border: 1px solid #D3D0CD;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 37px;
  margin: 0 0 0 -2px;
  position: relative;
  transition: background 0.2s ease-in-out;
  width: 45.5px;
}

.list-icon-container.active {
  background: #0363F7;
}

.list-icon-container.active .icon-list-view-icon {
  fill: #FFF;
}

.list-icon-container.active:hover .icon-list-view-icon {
  fill: #FFF;
}

.list-icon-container:hover .icon-list-view-icon {
  fill: #0363F7;
}

.icon-list-view-icon {
  display: inline-block;
  height: 13px;
  left: 28%;
  position: absolute;
  top: 30%;
  transition: fill 0.3s ease-in-out;
  width: 19px;
}

/*------------------------------------*
    #LISTS
\*------------------------------------*/

/**
 * Inline list
 */

.inline-list li {
  display: inline-block;
}

/**
 * Social list
 */

.social-list li {
  margin: 0 0.4rem 1em 0;
}

.social-list a {
  font-size: 1.6em;
}

/**
 * Headline list
 */

.headline-list {
  margin-bottom: 1em;
}

.headline-list.flush {
  margin: 0;
}

.headline-list h4 {
  font-weight: normal;
}

.headline-list li {
  padding: 0.25em 0;
  border-top: 1px solid #A5A5A5;
}

/**
 * Post list
 */

.post-list li {
  margin-bottom: 1em;
}

/**
 * Bullet list
 */

.bullet-list {
  list-style: square;
  margin: 0 0 1em 1.2em;
  line-height: 1.3;
}

.bullet-list li {
  margin-bottom: 1em;
}

/**
 * Text list
 */

.text-list {
  margin: 0 0 1em;
  line-height: 1.3;
}

.text-list li {
  margin-bottom: 1em;
}

/**
 * Media List
 */

.m-list__icon-block {
  list-style: none;
}

.m-list__icon-block .m-list__item {
  margin-bottom: 40px;
  color: #0E0E0E;
  position: relative;
  display: block;
}

.m-list__icon-block .m-list__item::before,
.m-list__icon-block .m-list__item::after {
  content: '';
  display: block;
  clear: both;
}

.m-list__icon-block .m-list__item .icon__wrapper {
  width: 40px;
  height: 40px;
  border: 1px solid #787673;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  float: left;
}

.m-list__icon-block .m-list__item .data {
  max-width: none;
  float: left;
  padding-left: 20px;
  width: calc(90% - 20px);
}

@media (min-width: 768px) {
  .m-list__icon-block .m-list__item .data {
    padding-left: 50px;
    display: inline-block;
    width: calc(90% - 30px);
  }
}

@media (min-width: 975px) {
  .m-list__icon-block .m-list__item .data .a-text-btn--primary {
    margin-bottom: 5px;
  }
}

.m-list__icon-block .m-list__item .data .icon-long-arrow {
  margin-right: 20px;
}

.m-list__icon-block .m-list__item .data .a-text-btn--primary {
  position: relative;
  top: 3px;
  margin-right: 20px;
}

/**
 * Change Region Landing
 */

.regions {
  background-image: url("images/changeregion/changeregion_worldbackground_1440.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 595px) {
  .regions__list {
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 37px;
  }
}

@media (max-width: 767px) {
  .regions__list {
    padding-left: 20px;
    padding-top: 40px;
    padding-bottom: 83px;
  }
}

@media (min-width: 975px) {
  .regions__list {
    padding-left: 56px;
    padding-top: 60px;
    padding-bottom: 122px;
  }
}

.regions__list ul {
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 30px;
}

.regions__list li {
  margin-bottom: 23px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: default;
}

.regions__cant-find-country {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media (min-width: 595px) {
  .regions__cant-find-country {
    margin-top: 7px;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .regions__cant-find-country {
    margin-top: 23px;
  }
}

@media (min-width: 975px) {
  .regions__cant-find-country {
    display: -ms-flexbox;
    display: flex;
    margin-top: 37px;
  }
}

.regions .small {
  margin-right: 10px;
}

.regions__locale {
  margin-left: 10px;
  color: #0363F7;
}

.product .breadcrumbs {
  display: block;
  padding: 0 20px;
}

.product .breadcrumbs span {
  border: 0;
  font-size: 12px;
}

.product .breadcrumbs span:hover {
  border-bottom: 1px solid #0363F7;
}

@media (min-width: 975px) {
  .product .breadcrumbs {
    display: none;
  }
}

.product--meta .m-match-badge span {
  background: #D8D8D8;
  display: inline-block;
  padding: 5px 10px;
  line-height: 10px;
  margin: 10px 0;
}

.product--meta .breadcrumbs {
  display: none;
  line-height: 16px;
}

@media (min-width: 975px) {
  .product--meta .breadcrumbs {
    display: block;
    margin: 10px 0 0;
  }
}

.product--meta .breadcrumbs li.breadcrumb__link a span {
  color: #0E0E0E;
}

.product--meta .breadcrumbs li.breadcrumb__link span {
  color: #787673;
}

.product--meta .breadcrumbs li.breadcrumb__link::after {
  bottom: 2px;
  color: #D3D0CD;
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #D3D0CD;
  margin: 0 2px;
  position: relative;
}

.product--meta .breadcrumbs li.breadcrumb__link:last-of-type {
  color: #787673;
  cursor: default;
  pointer-events: none;
}

.product--meta .breadcrumbs li.breadcrumb__link:last-of-type span {
  border: 0;
}

.product--meta .breadcrumbs li.breadcrumb__link:last-of-type span:hover {
  border: 0;
}

.product--meta .breadcrumbs li.breadcrumb__link:last-of-type::after {
  content: '';
  display: none;
}

.m-block--hero--collection__content .breadcrumbs {
  margin: 0 auto 10px;
  padding: 0;
}

@media (min-width: 975px) {
  .m-block--hero--collection__content .breadcrumbs {
    margin: 0 0 69px;
  }
}

.m-block--hero--collection__content .breadcrumbs li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
}

.m-block--hero--collection__content .breadcrumbs .breadcrumb__link {
  opacity: 1;
}

.m-block--hero--collection__content .breadcrumbs .breadcrumb__link span {
  color: #FFF;
  font-size: 12px;
  border: 0;
}

.m-block--hero--collection__content .breadcrumbs .breadcrumb__link span:hover {
  border-bottom: 1px solid #D3D0CD;
}

.account .breadcrumbs,
.pt_content .breadcrumbs {
  margin: 10px 0;
  padding: 10px 0;
}

.account .breadcrumbs li,
.pt_content .breadcrumbs li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
}

.account .breadcrumbs li.breadcrumb__link a,
.pt_content .breadcrumbs li.breadcrumb__link a {
  color: #0E0E0E;
  cursor: pointer;
  transition: none;
}

.account .breadcrumbs li.breadcrumb__link a span,
.pt_content .breadcrumbs li.breadcrumb__link a span {
  border: 0 !important;
}

.account .breadcrumbs li.breadcrumb__link a:hover,
.pt_content .breadcrumbs li.breadcrumb__link a:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
}

.account .breadcrumbs li.breadcrumb__link:last-of-type,
.pt_content .breadcrumbs li.breadcrumb__link:last-of-type {
  cursor: default;
  pointer-events: none;
}

.account .breadcrumbs li.breadcrumb__link:last-of-type span,
.pt_content .breadcrumbs li.breadcrumb__link:last-of-type span {
  color: #787673;
}

.account .breadcrumbs li.breadcrumb__link:last-of-type a,
.pt_content .breadcrumbs li.breadcrumb__link:last-of-type a {
  color: #D3D0CD !important;
}

.account .breadcrumbs li.breadcrumb__link:last-of-type a span,
.pt_content .breadcrumbs li.breadcrumb__link:last-of-type a span {
  border: 0;
  color: #787673;
}

.account .breadcrumbs li.breadcrumb__link:last-of-type::after,
.pt_content .breadcrumbs li.breadcrumb__link:last-of-type::after {
  display: none;
}

.page-content .breadcrumbs {
  margin: 10px 0;
  padding: 10px 0;
}

.page-content .breadcrumbs li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
}

.page-content .breadcrumbs li.breadcrumb__link a {
  color: #0E0E0E;
  cursor: pointer;
  transition: none;
}

.page-content .breadcrumbs li.breadcrumb__link a span {
  border: 0 !important;
}

.page-content .breadcrumbs li.breadcrumb__link a:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
}

.page-content .breadcrumbs li.breadcrumb__link:last-of-type {
  cursor: default;
  pointer-events: none;
}

.page-content .breadcrumbs li.breadcrumb__link:last-of-type span {
  color: #787673;
}

.page-content .breadcrumbs li.breadcrumb__link:last-of-type a {
  color: #D3D0CD !important;
}

.page-content .breadcrumbs li.breadcrumb__link:last-of-type a span {
  border: 0;
  color: #787673;
}

.page-content .breadcrumbs li.breadcrumb__link:last-of-type::after {
  display: none;
}

/*------------------------------------*
  #MESSAGING
\*------------------------------------*/

/**
* Alert
*/

.alert--release {
  background: #0363F7;
  color: #FFF;
  padding: 11px 0 9px 20px;
}

.alert--release .label--bold {
  margin-right: 7px;
}

.alert--shipping {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  color: #0E0E0E;
  line-height: 40px;
  font-size: 11px;
  padding-left: 6.3%;
}

@media (min-width: 975px) {
  .alert--shipping {
    padding-left: 0;
    font-size: 12px;
    line-height: 20px;
  }
}

.alert--verbose {
  padding: 20px;
}

.alert--verbose.alert--error {
  border: 1px solid #DF001A;
}

.alert--verbose.alert--error::before {
  content: '';
  background: url("images/icons/error.svg") no-repeat;
  height: 23px;
  width: 23px;
  display: block;
  float: left;
  margin-right: 7px;
}

.alert--verbose.alert--error .alert__title,
.alert--verbose.alert--error .alert__text {
  display: block;
  font-size: 15px;
  padding-top: 2px;
  line-height: 24px;
  max-width: none;
}

.alert--verbose.alert--error .alert__text {
  margin-left: 30px;
}

/**
* Error alert
*/

.alert--error {
  color: #DF001A;
  background: #FFF0F0;
}

/**
* Success alert
*/

.alert--success {
  color: #0E0E0E;
  background: #48BC24;
}

/**
* Warning alert
*/

.alert--warning {
  color: #0E0E0E;
  background: #FFE114;
}

/**
* Info alert
*/

.alert--info {
  color: #0E0E0E;
  background: #F2F2F2;
}

/**
* Slidedown animation
*/

@keyframes slideDown {
  0% {
    max-height: 0;
    padding: 0;
  }

  100% {
    padding: 1rem;
    max-height: 12em;
  }
}

/*------------------------------------*
    #PRIMARY NAVIGATION
\*------------------------------------*/

.m-primary-nav {
  position: relative;
}

.m-primary-nav__items {
  display: inline-block;
  list-style: none;
  margin: 0;
  position: relative;
}

.m-primary-nav__item {
  display: inline-block;
  margin-right: 20px;
}

.m-primary-nav__link {
  overflow: hidden;
  position: relative;
}

.m-primary-nav__link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -21px;
  height: 4px;
  background: #0363F7;
  opacity: 1;
  left: 0;
  width: 100%;
  transform-origin: left;
  transform: scale(0, 1);
  transition: transform 0.3s ease-in-out;
}

.m-primary-nav__link--hover::before {
  transform: scale(1, 1);
  transition: transform 0.3s ease-in-out;
}

.m-primary-nav__link.sale {
  color: #DF001A;
}

.m-primary-nav__link.sale::before {
  background: #DF001A;
}

/**
 * Pagination
 */

.pagination {
  overflow: hidden;
}

.pagination li {
  float: left;
  border-right: 1px solid #D9D9D9;
}

.pagination li:last-child {
  border: 0;
}

.pagination a {
  padding: 1em;
}

.pt_gift-registry .pagination,
.pt_account .pagination,
.pt_order .pagination,
.pt_wishlist .pagination,
.pt_content .pagination,
.pt_customer-service .pagination,
.pt_site-map .pagination,
.pt_error .pagination,
.pt_athletes .pagination,
.pt_events .pagination,
.pt_programs .pagination,
.pt_hello .pagination,
.pt_content-search-result .pagination,
.pt_map .pagination,
.pt_store-locator .pagination,
.ui-dialog:not(.web-refresh) .pagination {
  float: none;
  margin: auto;
  text-align: center;
  padding: 30px 0 80px;
  color: #0E0E0E;
}

.pt_gift-registry .pagination .arrow .icon,
.pt_account .pagination .arrow .icon,
.pt_order .pagination .arrow .icon,
.pt_wishlist .pagination .arrow .icon,
.pt_content .pagination .arrow .icon,
.pt_customer-service .pagination .arrow .icon,
.pt_site-map .pagination .arrow .icon,
.pt_error .pagination .arrow .icon,
.pt_athletes .pagination .arrow .icon,
.pt_events .pagination .arrow .icon,
.pt_programs .pagination .arrow .icon,
.pt_hello .pagination .arrow .icon,
.pt_content-search-result .pagination .arrow .icon,
.pt_map .pagination .arrow .icon,
.pt_store-locator .pagination .arrow .icon,
.ui-dialog:not(.web-refresh) .pagination .arrow .icon {
  width: 2.5em;
  height: 2.5em;
  stroke: #787673;
  cursor: pointer;
  transition: stroke 0.3s ease;
}

.pt_gift-registry .pagination .arrow--right .icon,
.pt_account .pagination .arrow--right .icon,
.pt_order .pagination .arrow--right .icon,
.pt_wishlist .pagination .arrow--right .icon,
.pt_content .pagination .arrow--right .icon,
.pt_customer-service .pagination .arrow--right .icon,
.pt_site-map .pagination .arrow--right .icon,
.pt_error .pagination .arrow--right .icon,
.pt_athletes .pagination .arrow--right .icon,
.pt_events .pagination .arrow--right .icon,
.pt_programs .pagination .arrow--right .icon,
.pt_hello .pagination .arrow--right .icon,
.pt_content-search-result .pagination .arrow--right .icon,
.pt_map .pagination .arrow--right .icon,
.pt_store-locator .pagination .arrow--right .icon,
.ui-dialog:not(.web-refresh) .pagination .arrow--right .icon {
  transform: rotate(180deg);
}

.pt_gift-registry .pagination .pagination__info,
.pt_gift-registry .pagination .arrow,
.pt_account .pagination .pagination__info,
.pt_account .pagination .arrow,
.pt_order .pagination .pagination__info,
.pt_order .pagination .arrow,
.pt_wishlist .pagination .pagination__info,
.pt_wishlist .pagination .arrow,
.pt_content .pagination .pagination__info,
.pt_content .pagination .arrow,
.pt_customer-service .pagination .pagination__info,
.pt_customer-service .pagination .arrow,
.pt_site-map .pagination .pagination__info,
.pt_site-map .pagination .arrow,
.pt_error .pagination .pagination__info,
.pt_error .pagination .arrow,
.pt_athletes .pagination .pagination__info,
.pt_athletes .pagination .arrow,
.pt_events .pagination .pagination__info,
.pt_events .pagination .arrow,
.pt_programs .pagination .pagination__info,
.pt_programs .pagination .arrow,
.pt_hello .pagination .pagination__info,
.pt_hello .pagination .arrow,
.pt_content-search-result .pagination .pagination__info,
.pt_content-search-result .pagination .arrow,
.pt_map .pagination .pagination__info,
.pt_map .pagination .arrow,
.pt_store-locator .pagination .pagination__info,
.pt_store-locator .pagination .arrow,
.ui-dialog:not(.web-refresh) .pagination .pagination__info,
.ui-dialog:not(.web-refresh) .pagination .arrow {
  display: inline-block;
  vertical-align: middle;
}

.pt_gift-registry .pagination .pagination__info,
.pt_account .pagination .pagination__info,
.pt_order .pagination .pagination__info,
.pt_wishlist .pagination .pagination__info,
.pt_content .pagination .pagination__info,
.pt_customer-service .pagination .pagination__info,
.pt_site-map .pagination .pagination__info,
.pt_error .pagination .pagination__info,
.pt_athletes .pagination .pagination__info,
.pt_events .pagination .pagination__info,
.pt_programs .pagination .pagination__info,
.pt_hello .pagination .pagination__info,
.pt_content-search-result .pagination .pagination__info,
.pt_map .pagination .pagination__info,
.pt_store-locator .pagination .pagination__info,
.ui-dialog:not(.web-refresh) .pagination .pagination__info {
  vertical-align: baseline;
}

.a-navigation__item {
  display: inline-block;
  margin-right: 20px;
}

.a-navigation__item:last-of-type {
  margin-right: 0;
}

.a-navigation__item--link .a-primary-nav__link {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.a-navigation__item .sale {
  color: #DF001A;
}

.a-navigation__item .sale span {
  color: #DF001A;
}

.a-primary-nav__link {
  color: #0E0E0E;
  opacity: 1;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  transition: color 0.6s ease;
  overflow: hidden;
}

@media (min-width: 975px) {
  .a-primary-nav__link {
    position: relative;
    overflow: hidden;
  }
}

.a-primary-nav__link.x-small {
  font-size: 13px;
}

@media (min-width: 1080px) {
  .a-primary-nav__link.x-small {
    font-size: 15px;
  }
}

.a-primary-nav__link.xx-small {
  font-size: 11px;
}

@media (min-width: 975px) {
  .a-primary-nav__link.xx-small {
    font-size: 12px;
  }
}

.a-primary-nav__link:hover {
  color: #0363F7;
  transition: color 0.6s ease;
}

.a-primary-nav__link.small {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.a-primary-nav__link span {
  left: 6.3%;
  line-height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: normal;
  word-wrap: break-word;
  width: 80%;
  font-size: 13px;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

.o-nav-dropdown {
  background: #FFF;
  border-bottom: 1px solid #F2F2F2;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
  left: 9999px;
  opacity: 0;
  position: fixed;
  transition: opacity 0.6s, z-index 0.6s;
  z-index: -1;
  padding: 40px 0 60px;
}

.o-nav-dropdown--visible {
  left: 0;
  opacity: 1;
  transition: opacity 0.6s, z-index 0.6s;
  z-index: 100;
}

.o-nav-dropdown__list {
  list-style: none;
  position: relative;
  top: 5px;
  margin: 20px 10px 0;
  -ms-flex-preferred-size: calc(25% - 10px);
      flex-basis: calc(25% - 10px);
}

.o-nav-dropdown__list.featured {
  background: #F2F2F2;
  margin-top: 0;
  padding: 20px;
}

.o-nav-dropdown__title {
  color: #0E0E0E;
  margin-bottom: 20px;
}

.o-nav-dropdown__title:hover {
  color: #0E0E0E !important;
  cursor: default;
}

.o-nav-dropdown__item {
  line-height: 20px;
  padding: 5px 0;
}

.o-nav-dropdown__link.sale {
  color: #DF001A;
}

.o-nav-dropdown__link.all::before {
  bottom: 15px;
  content: '';
  display: block;
  background: #F2F2F2;
  position: relative;
  left: 0;
  height: 1px;
  width: 18px;
  margin-top: 25px;
}

.search-alternatives ul {
  margin: 1.15rem 0 .5rem;
}

/*------------------------------------*
    #PAGE HEADER
\*------------------------------------*/

/**
 * 1) The page header contains the page's heading, as perhaps other page information
 *    such as description or actions (edit, delete, etc).
 */

.c-page-header__title {
  padding: 1rem 0 .5rem;
  position: relative;
  color: #444;
}

.c-page-header__title::after {
  content: '';
  display: block;
  position: absolute;
  width: 3rem;
  height: .5rem;
  bottom: 0;
  background: #A5A5A5;
}

/*------------------------------------*
    #SECTIONS
\*------------------------------------*/

/**
 * Section
 */

.c-section {
  position: relative;
  margin: 0 0 2em;
}

@media all and (min-width: 39.8em) {
  .l-sidebar .c-section {
    margin-right: 2em;
    width: 50%;
  }

  .l-sidebar .c-section:last-child {
    margin-right: 0;
  }
}

@media all and (min-width: 50em) {
  .l-sidebar .c-section {
    width: 100%;
    margin-right: 0;
  }
}

/**
 * Section title
 */

.c-section__title {
  position: relative;
  color: #444;
  margin-bottom: 1.5rem;
}

.c-section__title::after {
  content: '';
  display: block;
  position: absolute;
  width: 2rem;
  height: .3rem;
  top: 30px;
  left: 1px;
  background: #A5A5A5;
}

/*------------------------------------*
    #TEXT
\*------------------------------------*/

::-webkit-input-placeholder {
  color: #787673;
}

:-ms-input-placeholder {
  color: #787673;
}

::-ms-input-placeholder {
  color: #787673;
}

:-ms-input-placeholder {
  color: #787673;
}

::placeholder {
  color: #787673;
}

small {
  font-size: 13px;
}

@media all and (max-width: 46.8em) {
  small {
    font-size: 15px;
  }
}

strong,
b {
  color: #0E0E0E;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

em {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-style: italic;
}

u {
  border-bottom: 1px solid #0E0E0E;
  text-decoration: none;
}

mark {
  background: #0363F7;
  color: #FFF;
}

/**
 * Passages of text
 */

.text:not(.btn-container) a {
  overflow: hidden;
}

.text a {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  display: inline-block;
  color: #0363F7;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.text a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0363F7;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.2s ease-in-out;
}

.text a:hover {
  color: #0363F7;
}

.text a:hover::after {
  transform: translate3d(0, 0, 0);
  transition: opacity 0.2s, transform 0.2s ease-in-out;
}

.m-block--text-module {
  float: none;
  position: relative;
  text-align: center;
}

@media (min-width: 975px) {
  .m-block--text-module__icon {
    margin: 0 auto 14px;
    width: 57px;
  }
}

.m-block--text-module h1 {
  margin: 0 0 9px;
}

.m-block--text-module p {
  max-width: 100%;
}

.m-block--text-module p.x-small--bold {
  text-transform: uppercase;
}

.m-block--text-module .a-btn {
  margin: 20px 0 0;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--text-module .a-btn {
    width: calc(50% - 20px);
    margin: 30px 0 0;
  }

  .m-block--text-module .a-btn:last-of-type {
    margin: 30px 0 0 10px;
  }
}

.m-block--module-heading {
  display: inline-block;
  position: relative;
  margin: 0 0 30px;
  text-align: center;
  width: 100%;
}

.m-block--module-heading::before,
.m-block--module-heading::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--module-heading--collection {
  position: relative;
  text-align: left;
}

.m-block--module-heading--collection p {
  margin: 10px 0 0;
}

.m-block--module-heading--collection .a-text-btn {
  margin: 15px 0 0;
}

.m-block--module-heading p {
  text-transform: uppercase;
  margin: 0 0 15px;
  font-size: 12px;
  line-height: 20px;
}

.m-block--module-heading h1 {
  margin: 9px 0 0;
}

.m-address__name,
.m-address__address1,
.m-address__address2,
.m-address__country {
  display: block;
}

.m-address__city,
.m-address__state,
.m-address__postalcode {
  display: inline-block;
}

/*------------------------------------*
    #FEEDBACK
\*------------------------------------*/

/**
 * 1) Feedback consists of components that give information back to the user. Examples include progress bars, progress wheels, etc.
 */

/**
 * Progress bar
 */

.c-progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #CDCAA2;
  background-size: auto;
  width: 100%;
  max-width: 300px;
  height: .5rem;
  border-radius: 6px;
  margin-bottom: 1em;
}

.c-progress::-moz-progress-bar {
  background-color: #DF001A;
  background-image: linear-gradient(to right, #DF001A, #FA4616, #F1F81C, #5C832F);
  background-size: 300px 50px;
  border-radius: 6px;
}

.c-progress::-webkit-progress-value {
  background-color: #DF001A;
  background-image: linear-gradient(to right, #DF001A, #FA4616, #F1F81C, #5C832F);
  background-size: 300px 50px;
  border-radius: 6px;
}

progress[value]::-webkit-progress-bar {
  border-radius: 6px;
}

.anim::-moz-progress-bar {
  transition: width 4s ease;
}

.anim::-webkit-progress-value {
  transition: width 4s ease;
}

.c-progress.start::-moz-progress-bar {
  width: 0% !important;
  background: #CDCAA2 !important;
}

.c-progress.start::-webkit-progress-value {
  width: 0% !important;
  background: #CDCAA2 !important;
}

.section__reviews .pagination,
.section__questions .pagination {
  float: none;
  margin: auto;
  text-align: center;
  padding: 30px 0 80px;
}

.section__reviews .pagination .arrow,
.section__reviews .pagination .pagination__info,
.section__questions .pagination .arrow,
.section__questions .pagination .pagination__info {
  display: inline-block;
  vertical-align: middle;
}

.section__reviews .pagination .pagination__info,
.section__questions .pagination .pagination__info {
  margin: 0 30px;
  vertical-align: baseline;
}

.section__reviews .pagination .arrow .icon,
.section__questions .pagination .arrow .icon {
  width: 2.5em;
  height: 2.5em;
  stroke: #787673;
  cursor: pointer;
  transition: stroke 0.6s ease;
}

.section__reviews .pagination .arrow:hover .icon,
.section__questions .pagination .arrow:hover .icon {
  stroke: #0363F7;
  transition: stroke 0.6s ease;
}

.section__reviews .pagination .arrow--right .icon,
.section__questions .pagination .arrow--right .icon {
  transform: rotate(180deg);
}

html.touch .o-block--related-product__product-card:hover,
html.touchevents .o-block--related-product__product-card:hover {
  z-index: 0;
}

html.touch .o-block--related-product__product-card:hover .product__box,
html.touchevents .o-block--related-product__product-card:hover .product__box {
  visibility: hidden;
  box-shadow: 0 0 0 10px #FFF, 0 5px 30px 0 rgba(255, 255, 255, 0);
}

html.touch .o-block--related-product__product-card:hover .product-container__thumbnails,
html.touchevents .o-block--related-product__product-card:hover .product-container__thumbnails {
  display: none;
}

html.touch .o-block--related-product__product-card:hover .product__card--bottom-info .product__info--additional,
html.touchevents .o-block--related-product__product-card:hover .product__card--bottom-info .product__info--additional {
  display: none;
}

.o-block--related-product__product-card {
  margin: 0;
  position: relative;
  z-index: 0;
}

.o-block--related-product__product-card::before,
.o-block--related-product__product-card::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 595px) {
  .o-block--related-product__product-card:hover {
    z-index: 100;
  }

  .o-block--related-product__product-card:hover .product__box {
    visibility: visible;
    box-shadow: 0 0 0 10px #FFF, 0 5px 30px 0 rgba(120, 118, 115, 0.49);
    transition: box-shadow 0.3s ease-in-out;
  }

  .o-block--related-product__product-card:hover .product-container__thumbnails {
    display: block;
    opacity: 1;
    transition: all 0.6s ease-in-out;
  }

  .o-block--related-product__product-card:hover .product__card--bottom-info .product__info--additional {
    display: block;
    opacity: 1;
    padding: 9px 0;
    visibility: visible;
    height: auto;
    transition: all 0.3s ease-in-out;
  }
}

.o-block--related-product__product-card .product--meta__badge {
  z-index: 300;
  top: -15px;
  left: 15px;
}

.o-block--related-product__product-card .product__box {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 200;
  background: #FFF;
  visibility: hidden;
  box-shadow: 0 0 0 10px #FFF, 0 5px 30px 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.3s ease-in-out;
}

.o-block--related-product__product-card .product__box .award__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 57px;
  height: 33.46px;
  z-index: 2000;
  opacity: 1;
  display: block;
  visibility: visible;
}

@media (min-width: 595px) {
  .o-block--related-product__product-card .product__box .award__badge {
    width: 92px;
    height: 54px;
    top: 30px;
    right: 30px;
  }
}

.o-block--related-product__product-card .product__box .slick-list {
  max-width: calc(100% - 32px);
  display: inline-block;
}

.o-block--related-product__product-card .product__box .slick-list .slick-slide {
  width: auto;
}

.o-block--related-product__product-card .product__box .slick-list .slick-slide img.active {
  border: 1px solid #0E0E0E;
  transition: border 0.6s ease-in;
}

@media (min-width: 975px) {
  .o-block--related-product__product-card .product__box .slick-list .slick-slide:hover img {
    border: 1px solid #0E0E0E;
    transition: border 0.6s ease-in;
  }
}

.o-block--related-product__product-card .product__box .slick-prev {
  position: relative;
  display: inline-block;
  left: 0;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  top: -10px;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.o-block--related-product__product-card .product__box .slick-prev.slick-disabled {
  opacity: .1;
  transition: opacity 0.6s ease-out;
}

.o-block--related-product__product-card .product__box .slick-prev .icon-caret-black {
  width: 11px;
  height: 11px;
  transform: rotate(90deg);
}

.o-block--related-product__product-card .product__box .slick-next {
  position: relative;
  display: inline-block;
  right: 0;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  top: -10px;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.o-block--related-product__product-card .product__box .slick-next .icon-caret-black {
  width: 11px;
  height: 11px;
  transform: rotate(-90deg);
}

.o-block--related-product__product-card .product__box .slick-next.slick-disabled {
  opacity: .1;
  transition: opacity 0.6s ease-out;
}

.o-block--related-product__product-card .product__box .slick-next::before {
  display: none;
}

.o-block--related-product__product-card .product__box .product__card--wrapper,
.o-block--related-product__product-card .product__box .product__card--bottom-info {
  visibility: visible;
}

.o-block--related-product__product-card .product__box .product__card--wrapper .card__slider .o-block--related-product__product-card__image {
  max-width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
}

.o-block--related-product__product-card.wide {
  width: 100%;
}

.o-block--related-product__product-card.wide .product__card--wrapper {
  display: inline-block;
  padding-top: 0;
  margin-right: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .o-block--related-product__product-card.wide .product__card--wrapper {
    float: left;
    width: calc(61% - 15px);
  }
}

.o-block--related-product__product-card.wide .product__card--wrapper::after {
  content: '';
  display: block;
  padding-top: 66.666%;
}

.o-block--related-product__product-card.wide .product__card--wrapper a {
  position: relative;
}

.o-block--related-product__product-card.wide .product__card--wrapper .card__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-block--related-product__product-card.wide .product__card--wrapper .card__slider .o-block--related-product__product-card__image {
  max-width: none;
}

.o-block--related-product__product-card.wide .product__card--bra-wrapper {
  padding-top: 59.4%;
}

@media (min-width: 768px) {
  .o-block--related-product__product-card.wide .product__card--bra-wrapper {
    padding-top: 36.472%;
    width: calc(100% * (8 / 12) - 15px);
  }
}

.o-block--related-product__product-card.wide .product__card--bra-wrapper a {
  position: absolute;
}

@media (min-width: 768px) {
  .o-block--related-product__product-card.wide .product__card--bra-wrapper + .product__card--bottom-info {
    width: calc(100% * (4 / 12) - 15px);
  }
}

.o-block--related-product__product-card.wide .product__card--bottom-info {
  display: inline-block;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .o-block--related-product__product-card.wide .product__card--bottom-info {
    margin-left: 15px;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
  }
}

.o-block--related-product__product-card.wide .product__card--bottom-info .content__wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .o-block--related-product__product-card.wide .product__card--bottom-info {
    float: left;
    width: calc(39% - 15px);
  }
}

.o-block--related-product__product-card.wide .product__card--bottom-info .product__info--additional {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 5px 0;
  display: block;
}

.o-block--related-product__product-card.wide .product__card--bottom-info .product-container__thumbnails {
  opacity: 1;
  display: block;
}

.o-block--related-product__product-card__variant-count {
  margin: 0;
  display: inline-block;
  float: none;
}

.o-block--related-product__product-card__variant-count::before {
  content: '|';
  font-size: 10px;
  margin: 0 3px 0 0;
}

.o-block--related-product__product-card__variant-count:first-of-type::before {
  content: '';
  display: none;
}

.o-block--related-product__product-card__price {
  display: block;
  padding: 0 0 5px;
}

@media (min-width: 595px) {
  .o-block--related-product__product-card__price {
    padding: 9px 0 0;
  }
}

.o-block--related-product__product-card__reviews {
  display: inline-block;
  float: left;
}

.o-block--related-product__product-card__reviews__count {
  display: inline-block;
  margin: 0 0 0 5px;
  position: relative;
  vertical-align: top;
}

.product__card--bottom-info {
  position: relative;
}

.product__card--bottom-info::before,
.product__card--bottom-info::after {
  content: '';
  display: block;
  clear: both;
}

.product__card--bottom-info .m-match-badge {
  width: 100%;
  line-height: 10px;
  padding: 5px 10px;
  background: #D8D8D8;
}

.product__card--bottom-info .m-match-badge.search-result {
  display: none;
}

.product__card--bottom-info .product__info--primary {
  border-bottom: 1px solid #F2F2F2;
  padding: 0 0 4px;
}

.product__card--bottom-info .product__info--primary .left {
  display: block;
  width: 100%;
  float: none;
}

.product__card--bottom-info .product__info--primary .left a {
  color: #0E0E0E;
  display: block;
}

@media (min-width: 975px) {
  .product__card--bottom-info .product__info--primary .left {
    display: inline-block;
    width: 70%;
    margin: 0;
    float: left;
  }
}

.product__card--bottom-info .product__info--primary .left .product__info--reviews {
  display: block;
  float: left;
  margin: 9px 0 0;
  width: 100%;
}

@media (min-width: 1080px) {
  .product__card--bottom-info .product__info--primary .left .product__info--reviews {
    display: inline-block;
    margin: 5px 0 0;
    width: auto;
  }
}

.product__card--bottom-info .product__info--primary .right {
  width: initial;
}

@media (min-width: 975px) {
  .product__card--bottom-info .product__info--primary .right {
    display: inline-block;
    float: right;
    width: 30%;
    text-align: right;
  }
}

.product__card--bottom-info .product__info--primary .right a {
  color: #0E0E0E;
  display: block;
}

@media (min-width: 975px) {
  .product__card--bottom-info .product__info--primary .bottom {
    display: inline-block;
    padding-top: 4px;
    width: 100%;
  }
}

.product__card--bottom-info .product__info--primary h4 {
  display: inline-block;
  float: none;
  margin: 7px 0;
  padding: 9px 0 0;
}

.product__card--bottom-info .product__info--secondary {
  margin: 0 0 10px;
}

.product__card--bottom-info .product__info--secondary::before,
.product__card--bottom-info .product__info--secondary::after {
  content: '';
  display: block;
  clear: both;
}

.product__card--bottom-info .product__info--secondary .experience-copy {
  margin: 0;
  margin-bottom: 3px;
}

.product__card--bottom-info .product__info--secondary .product__info--variants {
  display: block;
  width: 100%;
  margin-top: 5px;
}

.product__card--bottom-info .product__info--secondary .product__info--variants::before,
.product__card--bottom-info .product__info--secondary .product__info--variants::after {
  content: '';
  display: block;
  clear: both;
}

.product__card--bottom-info .product__info--secondary .product__info--variants .o-block--related-product__product-card__experience {
  float: left;
  display: inline-block;
  width: auto;
}

.product__card--bottom-info .product__info--secondary .product__info--variants .variants {
  clear: both;
  display: block;
  float: none;
  position: relative;
  top: -4px;
}

@media (min-width: 595px) {
  .product__card--bottom-info .product__info--secondary .product__info--variants .variants {
    float: right;
    display: inline-block;
    clear: none;
    top: 0;
  }
}

.product__card--bottom-info .product__info--additional {
  border-bottom: 1px solid #F2F2F2;
  display: none;
  transition: all 0.3s ease-in-out;
}

.product__card--wrapper {
  position: relative;
  padding-top: 116.88%;
  background: #F2F2F2;
  width: 100%;
}

.product__card--wrapper a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.product__card--wrapper.product__card--bra-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
}

.product__card--bra a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.product-container__thumbnails {
  position: relative;
  max-width: 100%;
  display: none;
  opacity: 0;
  margin: 10px 0 0;
  transition: all 0.6s ease-in-out;
  overflow: hidden;
}

.product-container__thumbnails::before,
.product-container__thumbnails::after {
  content: '';
  display: block;
  clear: both;
}

.product-container__thumbnails:first-of-type img {
  margin: 0 7px 0 0;
}

.product-container__thumbnails img {
  border: 1px solid transparent;
  cursor: pointer;
  margin: 0 7px;
  max-height: 38px;
  max-width: 56px;
  transition: border 0.6s ease-in-out;
  float: left;
}

@media (min-width: 595px) {
  .product-container__thumbnails img {
    max-height: 42px;
    max-width: 62px;
  }
}

.m-block--shoppable-card {
  float: none;
  max-width: 1100px;
  position: relative;
  box-sizing: border-box;
}

.m-block--shoppable-card::before,
.m-block--shoppable-card::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--shoppable-card__content {
  cursor: pointer;
  margin: 0 auto;
}

@media (min-width: 595px) {
  .m-block--shoppable-card__content {
    max-width: 420px;
  }
}

@media (min-width: 595px) {
  .m-block--shoppable-card__content:nth-of-type(2) {
    float: right;
  }
}

.m-block--shoppable-card__content .m-block--shoppable-card__image img {
  top: 0;
  transition: top 0.3s ease-in-out;
}

.m-block--shoppable-card__content:hover .m-block--shoppable-card__image img {
  top: -10px;
}

.m-block--shoppable-card__content:hover .a-btn {
  background: #002855;
  border: 2px solid #002855;
  color: #FFF;
  outline: none;
  transition: background 0.3s;
}

.m-block--shoppable-card__image {
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  padding: 30px 0 50px;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}

.m-block--shoppable-card__image img {
  max-width: 200%;
  left: -10px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  width: 105%;
}

@media (min-width: 595px) {
  .m-block--shoppable-card__image img {
    left: -30px;
    width: 120%;
  }
}

.m-block--shoppable-card__meta {
  margin: 20px 0 40px;
  text-align: center;
}

@media (min-width: 595px) {
  .m-block--shoppable-card__meta {
    margin: 30px 0 0;
  }
}

.m-block--shoppable-card__meta p {
  margin: 20px 0 0;
  max-width: 100%;
}

/*------------------------------------*
    Styling for the Header Search Molecule
\*------------------------------------*/

.o-header__molecules--left {
  opacity: 1;
  transition: opacity 0.6s 0.6s;
}

.o-header__molecules--left.search-animate {
  opacity: 0;
  transition: opacity 0.6s;
}

@media (min-width: 975px) {
  .o-header__molecules--left.search-animate {
    opacity: 1;
  }
}

.o-header {
  opacity: 1;
  transition: opacity 0.6s 0.6s;
}

.o-header.search-animate .nav__container {
  opacity: 0;
  z-index: -1;
  transition: all 0.6s;
}

.o-header.search-animate .navigation__icons {
  opacity: 0;
  transition: opacity 0.6s;
}

.o-header.search-animate.search-active .nav__container {
  opacity: 0;
  transition: all 0.6s;
}

.o-header.search-animate.search-active .o-header__search-form {
  opacity: 1;
  transition: all 0.6s;
  z-index: 100;
}

.o-header.search-animate.search-active .icon-close {
  opacity: 1;
  transition: all 0.6s ease;
}

.o-header .o-header__search-form input:focus ::-webkit-input-placeholder {
  color: #787673;
}

.o-header .o-header__search-form input:focus :-ms-input-placeholder {
  color: #787673;
}

.o-header .o-header__search-form input:focus ::-ms-input-placeholder {
  color: #787673;
}

.o-header .o-header__search-form input:focus :-ms-input-placeholder {
  color: #787673;
}

.o-header .o-header__search-form input:focus ::placeholder {
  color: #787673;
}

.o-header .o-header__search-form.active {
  opacity: 1;
  transition: opacity 0.6s;
  z-index: 9999;
}

.o-header .o-header__search-form.active .icon-close {
  opacity: 1;
  transition: all 0.6s ease;
}

.o-header__molecules--right .m-primary-nav {
  opacity: 1;
  z-index: 100;
  transition: all 0.6s 0.6s;
}

.o-header__molecules--right .o-header__utility--right .navigation__icons {
  opacity: 1;
  transition: opacity 0.6s 0.6s;
}

.o-header__molecules--right.search-animate .m-primary-nav {
  opacity: 0;
  z-index: -1;
  transition: all 0.6s;
}

.o-header__molecules--right.search-animate .navigation__icons {
  opacity: 0;
  transition: opacity 0.6s;
}

.o-header__molecules--right.search-animate.search-active .m-primary-nav {
  opacity: 0;
  transition: all 0.6s;
}

.o-header__molecules--right.search-animate.search-active .o-header__utility--right {
  opacity: 1;
  transition: all 0.6s;
}

.o-header__molecules--right.search-animate.search-active .o-header__utility--right .o-header__search-form {
  opacity: 1;
  z-index: 100;
  transition: all 0.6s;
}

.o-header__molecules--right.search-animate.search-active .o-header__utility--right .icon-close {
  opacity: 1;
  transition: all 0.6s ease;
}

.o-header__search-form {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: #FFF;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: -1;
  bottom: auto;
}

.o-header__search-form input[type='submit'] {
  display: none;
}

@media (min-width: 975px) {
  .o-header__search-form {
    height: 100%;
    position: absolute;
    text-align: center;
  }

  .o-header__search-form input[type='submit'] {
    background: transparent;
    border: 0;
    border-radius: 0 3px 3px 0;
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
  }
}

.o-header__search-form .o-header__search {
  box-sizing: border-box;
  border: 0;
  color: #787673;
  padding: 8px 10px 7px;
  max-width: none;
  text-overflow: clip;
  text-indent: 0;
  transition: color 0.6s, border-color 0.6s;
  width: 100%;
}

.o-header__search-form .o-header__search:hover,
.o-header__search-form .o-header__search:focus {
  color: #0E0E0E;
  border-color: #787673;
  transition: color 0.6s, border-color 0.6s;
}

@media (min-width: 975px) {
  .o-header__search-form .o-header__search {
    border: 1px solid #D3D0CD;
    display: inherit;
    height: 50px;
    line-height: auto;
    width: calc(100% - 95px);
  }
}

.o-header__search-form fieldset {
  position: relative;
  overflow: hidden;
}

.o-header__search-form form.site-search {
  display: inline-block;
  width: 65%;
  vertical-align: middle;
  margin-left: 15px;
  position: relative;
}

@media (min-width: 975px) {
  .o-header__search-form form.site-search {
    margin-left: 0;
    top: 0;
    vertical-align: top;
    transform: translateY(50%);
    width: 50%;
  }
}

.o-header__search-form .icon__wrapper {
  position: relative;
  display: inline-block;
  line-height: 20px;
  margin-left: 20px;
}

@media (min-width: 975px) {
  .o-header__search-form .icon__wrapper {
    margin-left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.o-header__search-form .icon__wrapper.close__icon {
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  cursor: pointer;
}

.o-header__search-form .icon__wrapper.close__icon:hover .icon-close {
  stroke: #0363F7;
  transition: stroke 0.6s ease-in-out;
}

@media (min-width: 595px) {
  .o-header__search-form .icon__wrapper.close__icon {
    right: 40px;
  }
}

@media (min-width: 975px) {
  .o-header__search-form .icon__wrapper.close__icon {
    top: calc(50%);
  }
}

@media (min-width: 1080px) {
  .o-header__search-form .icon__wrapper.close__icon {
    right: 60px;
  }
}

.o-header__search-form .icon__wrapper .icon-close {
  opacity: 0;
  transition: all 0.6s;
  line-height: 20px;
}

.o-header__search-form .icon__wrapper .icon-search {
  vertical-align: bottom;
  stroke: #0363F7;
  fill: #0363F7;
}

@media (min-width: 975px) {
  .o-header__search-form .icon__wrapper .icon-search {
    display: none;
  }
}

#suggestions::-webkit-scrollbar {
  display: none;
}

#suggestions {
  cursor: default;
  max-height: 60vh;
  overflow-y: scroll;
  text-align: left;
}

#suggestions > div {
  padding: 5px 0 5px 10px !important;
}

@media (min-width: 975px) {
  #suggestions > div {
    margin: 0 auto;
    padding: 5px !important;
    position: relative;
    width: 50%;
  }
}

#suggestions > div a {
  color: #0363F7;
  cursor: pointer;
}

#suggestions > div a:hover,
#suggestions > div a:focus {
  color: #0E0E0E;
}

#suggestions h3 {
  margin: 0;
}

#suggestions .suggestion-info {
  max-height: 75px;
}

#suggestions .product-review-stars {
  top: 0;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}

#suggestions .product-review-stars .stars {
  overflow: hidden;
  color: #D3D0CD;
  position: relative;
  top: 0;
  display: block;
  height: 1rem;
  line-height: 1rem;
  word-wrap: normal;
}

#suggestions .product-review-stars .stars.count {
  color: #0363F7;
  margin-top: -1rem;
}

#suggestions a {
  max-height: 75px;
}

@media (min-width: 975px) {
  #suggestions {
    top: 100px;
  }

  #suggestions h3 {
    margin: 1rem 0;
  }

  #suggestions .product-review-stars {
    top: 0;
    vertical-align: middle;
  }

  #suggestions .product-review-stars .stars {
    vertical-align: middle;
  }
}

.shadow-overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.6s;
  width: 100%;
  z-index: -1;
}

.shadow-overlay.show {
  display: block;
  height: 100%;
  opacity: 1;
  transition: opacity 0.6s;
  z-index: 400;
}

/*------------------------------------*
    Styling for the Search Results Page
\*------------------------------------*/

.search-page-results__highlight-type {
  display: none;
  margin: 30px 0 0 60px;
}

@media (min-width: 975px) {
  .search-page-results__highlight-type {
    display: block;
  }
}

.search-page-results--none {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #F2F2F2;
  height: 100vh;
  width: 100%;
}

.search-page-results__meta {
  margin: 0 auto;
  text-align: center;
}

.search-page-results__meta p {
  margin: 0 auto 21px;
}

@media (min-width: 975px) {
  .search-page-results__meta p {
    margin: 0 auto 28px;
  }
}

.search-page-results__icon {
  margin: 0 0 20px;
}

@media (min-width: 975px) {
  .search-page-results__icon {
    margin: 0 0 25px;
  }
}

.m-block--fullwidth-images {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.m-block--fullwidth-images.spacer {
  margin: 60px 0;
}

@media (min-width: 595px) {
  .m-block--fullwidth-images.spacer {
    margin: 80px auto;
  }
}

@media (min-width: 1080px) {
  .m-block--fullwidth-images.spacer {
    margin: 120px auto;
  }
}

@media (min-width: 1080px) {
  .m-block--fullwidth-images.spacer {
    margin: 120px auto;
  }
}

.m-block--fullwidth-images.spacer + .m-block--fullwidth-images {
  margin: 0;
}

.m-block--fullwidth-images__container.split {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--fullwidth-images__container.split {
    width: 50%;
  }
}

.m-block--fullwidth-images__container.thirds {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--fullwidth-images__container.thirds {
    width: calc(100% * (1 / 3));
  }
}

.m-block--fullwidth-images__text-option {
  display: inherit;
  margin: 20px 20px 30px;
  position: relative;
  width: auto;
}

.m-block--fullwidth-images__text-option:last-of-type {
  margin-bottom: 0;
}

.m-block--fullwidth-images__text-option p {
  margin-bottom: 0;
}

@media (min-width: 595px) {
  .m-block--fullwidth-images__text-option {
    margin: 30px 30px 40px;
  }
}

.m-block--fullwidth-images__text-option .label--bold,
.m-block--fullwidth-images__text-option .small {
  margin: 0 0 4px;
}

.m-block--fullwidth-images__text-option .x-small,
.m-block--fullwidth-images__text-option .x-small--grey {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.m-block--fullwidth-images__text-option.spacer {
  margin: 20px 20px 0;
}

@media (min-width: 595px) {
  .m-block--fullwidth-images__text-option.spacer {
    margin: 30px 30px 0;
  }
}

@media (min-width: 1080px) {
  .m-block--fullwidth-images__text-option.spacer {
    margin: 30px 30px 0;
  }
}

.m-block--fullwidth-images img {
  display: block;
  margin: 0;
  width: 100%;
}

.m-block--gutter-images {
  margin-top: 30px;
  margin-right: 0;
  margin-left: 0;
  position: relative;
}

.m-block--gutter-images::before,
.m-block--gutter-images::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--gutter-images.spacer {
  margin: 60px 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images.spacer {
    margin: 80px auto;
  }
}

@media (min-width: 1080px) {
  .m-block--gutter-images.spacer {
    margin: 120px auto;
  }
}

.m-block--gutter-images__container {
  margin: 0 20px;
  position: relative;
}

@media (min-width: 595px) {
  .m-block--gutter-images__container {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
}

@media (min-width: 975px) {
  .m-block--gutter-images__container {
    margin: 0 30px;
    width: calc(100% - 60px);
  }
}

.m-block--gutter-images__container.split {
  float: left;
}

@media (min-width: 595px) {
  .m-block--gutter-images__container.split {
    margin: 0 0 0 20px;
    width: calc(100% * (1 / 2) - 30px);
  }
}

@media (min-width: 975px) {
  .m-block--gutter-images__container.split {
    margin: 0 0 0 30px;
    width: calc(100% * (1 / 2) - 45px);
  }
}

.m-block--gutter-images__container.split img {
  margin: 0;
}

.m-block--gutter-images__container.thirds {
  margin: 0 20px;
  float: left;
}

@media (min-width: 595px) {
  .m-block--gutter-images__container.thirds {
    margin: 0 0 0 20px;
    width: calc(100% * (1 / 3) - 27px);
  }
}

@media (min-width: 975px) {
  .m-block--gutter-images__container.thirds {
    margin: 0 0 0 30px;
    width: calc(100% * (1 / 3) - 40px);
  }
}

.m-block--gutter-images__container.thirds img {
  margin: 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images__container {
    display: inline-block;
  }

  .m-block--gutter-images__container .m-block--fullwidth-images__text-option {
    margin: 20px 20px 0;
  }
}

@media (min-width: 595px) and (min-width: 595px) {
  .m-block--gutter-images__container .m-block--fullwidth-images__text-option {
    margin: 24px 30px 0;
  }
}

@media (min-width: 975px) {
  .m-block--gutter-images__container {
    margin: 0 30px;
  }
}

.m-block--gutter-images__text-option {
  display: inherit;
  margin: 20px 20px 30px;
  position: relative;
  width: auto;
}

.m-block--gutter-images__text-option:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images__text-option {
    margin: 0 30px 40px;
  }
}

.m-block--gutter-images__text-option .label--bold,
.m-block--gutter-images__text-option .small {
  margin: 0 0 4px;
}

.m-block--gutter-images__text-option .x-small,
.m-block--gutter-images__text-option .x-small--grey {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.m-block--gutter-images__text-option.spacer {
  margin: 20px 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images__text-option.spacer {
    margin: 30px 0 0;
  }
}

.m-block--gutter-images__single {
  margin: 60px 0 0 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.m-block--gutter-images__single img.thirds {
  margin: 0 0 20px;
  width: 100% !important;
}

@media (min-width: 595px) {
  .m-block--gutter-images__single {
    display: inline-block;
    margin: 20px 0 0 20px;
    width: calc(100% * (1 / 3) - 13px);
  }
}

@media (min-width: 768px) {
  .m-block--gutter-images__single {
    display: inline-block;
    margin: 40px 0 0 30px;
    width: calc(100% * (1 / 3) - 23px);
  }
}

.m-block--gutter-images__single .small {
  margin: 10px 0 0;
}

.m-block--gutter-images picture:first-of-type img.split {
  margin: 5px 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images picture:first-of-type img.split {
    margin: 30px 0;
  }
}

.m-block--gutter-images picture:first-of-type img.thirds {
  margin: 5px 0;
}

@media (min-width: 595px) {
  .m-block--gutter-images picture:first-of-type img.thirds {
    margin: 30px 0;
  }
}

.m-block--gutter-images img {
  display: inline-block;
  margin: 5px 0;
  width: 100%;
}

.m-block--gutter-images img.split {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--gutter-images img.split {
    margin: 30px 0 30px 30px;
    width: calc(100% * (1 / 2) - 15px);
  }
}

.m-block--gutter-images img.thirds {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--gutter-images img.thirds {
    margin: 30px 0 30px 30px;
    width: calc(100% * (1 / 3) - 20px);
  }
}

.m-block--gutter-images--with-text {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--gutter-images--with-text {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 768px) {
  .m-block--gutter-images--with-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (min-width: 1080px) {
  .m-block--gutter-images--with-text {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.m-block--gutter-images--with-text p {
  display: inline-block;
  max-width: 100%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .m-block--gutter-images--with-text p {
    margin-top: 30px;
  }
}

.m-block--gutter-images--with-text__single {
  padding: 0 10px 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.m-block--gutter-images--with-text__single:first-of-type img {
  padding-left: 0;
}

.m-block--gutter-images--with-text__single:last-of-type img {
  padding-right: 0;
}

@media (min-width: 1080px) {
  .m-block--gutter-images--with-text__single {
    padding: 5px 15px;
  }
}

@media (min-width: 595px) {
  .m-block--gutter-images--with-text__single {
    display: inline-block;
    width: calc(100% * (1 / 3));
  }

  .m-block--gutter-images--with-text__single .fourths-container {
    width: calc(100% * (1 / 4));
  }
}

@media (min-width: 768px) {
  .m-block--gutter-images--with-text__single {
    display: inline-block;
    padding: 30px 0 0 30px;
    width: calc(100% * (1 / 3));
  }

  .m-block--gutter-images--with-text__single.fourths-container {
    width: calc(100% * (1 / 4));
  }
}

.m-block--gutter-images--with-text__single img {
  display: inline-block;
  width: 100%;
}

.m-block--gutter-images--with-text__single .small {
  margin: 10px 0 0;
}

.m-block--gutter-images--with-text__single .a-text-btn {
  margin-top: 10px;
  vertical-align: text-top;
}

.m-block--gutter-images--with-text__single .a-text-btn--secondary {
  top: 1px;
}

.m-block--gutter-images--with-text__single .a-text-btn:first-of-type {
  margin-right: 20px;
}

.m-block--gutter-images--with-text__single:only-child {
  margin: 0;
}

.m-block--gutter-images--with-text__left {
  text-align: left;
}

.m-featured__img-description {
  position: relative;
}

.m-featured__img-description::before,
.m-featured__img-description::after {
  content: '';
  display: block;
  clear: both;
}

.m-featured__img-description.image--right .feature__img--gradient {
  float: right;
}

@media (min-width: 595px) {
  .m-featured__img-description.image--right .description__wrapper {
    left: 0;
  }
}

@media (min-width: 975px) {
  .m-featured__img-description.image--right .description__wrapper {
    padding-left: 40px;
  }
}

@media (min-width: 1080px) {
  .m-featured__img-description.image--right .description__wrapper {
    padding-left: 60px;
  }
}

.m-featured__img-description.image--left .feature__img--gradient {
  float: left;
}

@media (min-width: 768px) {
  .m-featured__img-description.image--left .description__wrapper {
    right: 0;
  }
}

.m-featured__img-description .feature__img--gradient {
  float: left;
  margin-bottom: 30px;
}

@media (min-width: 595px) {
  .m-featured__img-description .feature__img--gradient {
    padding-left: 0;
  }
}

@media (min-width: 975px) {
  .m-featured__img-description .feature__img--gradient {
    margin-bottom: 0;
  }
}

.m-featured__img-description .feature__img--gradient .image--gradient {
  position: relative;
  display: block;
}

.m-featured__img-description .feature__img--gradient .image--gradient .foreground__image {
  z-index: 100;
}

.m-featured__img-description .feature__img--gradient .image--gradient .image__pattern {
  position: absolute;
  bottom: -10px;
  z-index: -1;
  left: -10px;
}

.m-featured__img-description .description__wrapper {
  float: left;
  position: relative;
  padding: 0;
}

@media (min-width: 595px) {
  .m-featured__img-description .description__wrapper {
    width: 100%;
    float: none;
    display: block;
    clear: both;
  }
}

@media (min-width: 975px) {
  .m-featured__img-description .description__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 30px;
    width: calc(100% * (3/6));
    max-width: none;
  }
}

.m-featured__img-description .description__wrapper .vertical__wrap {
  position: relative;
  top: initial;
  transform: none;
}

@media (min-width: 975px) {
  .m-featured__img-description .description__wrapper .vertical__wrap {
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}

.m-featured__img-description .description__wrapper .medium {
  margin-bottom: 5px;
}

@media (min-width: 595px) {
  .m-featured__img-description .description__wrapper .medium {
    margin-bottom: 15px;
  }
}

.m-block--video-player {
  display: block;
  z-index: 100;
}

.m-block--video-player img {
  opacity: 1;
  height: 100% !important;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 200;
}

.m-block--video-player img.hide {
  opacity: 0;
  z-index: 0;
  transition: all 0.6s ease-in-out;
}

.m-block--video-player--overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 300;
}

.m-block--video-player--overlay.hide {
  opacity: 0;
  z-index: 0;
  transition: all 0.6s ease-in-out;
}

.m-block--video-player--overlay .icon-video-play {
  cursor: pointer;
  fill: #0363F7;
  height: 60px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: fill 0.6s ease-in-out;
  width: 60px;
}

@media (min-width: 595px) {
  .m-block--video-player--overlay .icon-video-play {
    height: 80px;
    width: 80px;
  }
}

.m-block--video-player--overlay .icon-video-play:hover {
  fill: #002855;
}

.m-block--video-player--overlay__meta {
  bottom: 20px;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}

@media (min-width: 768px) {
  .m-block--video-player--overlay__meta {
    bottom: 50px;
  }
}

.m-block--video-player--overlay__meta span {
  color: #FFF;
  display: block;
  width: 100%;
}

.m-block--video-player__video {
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
  z-index: 100;
}

@media (min-width: 768px) {
  .m-block--video-player__video {
    object-fit: fill;
  }
}

.m-block--video-player__video.show {
  opacity: 1;
}

.m-block--video-player__video--overlay {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
}

.m-block--video-player__video--overlay .icon-video-pause {
  cursor: pointer;
  fill: #FFF;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}

.m-block--video-player__video--overlay.show {
  opacity: 1;
}

.m-block--hero-image {
  margin: 28px 0 0;
  width: 100%;
}

@media (min-width: 975px) {
  .m-block--hero-image {
    margin: 56px 0 0;
  }
}

.m-block--hero-image img {
  object-fit: cover;
  object-position: right;
}

@media (min-width: 975px) {
  .m-block--hero-image img {
    object-position: center;
  }
}

.m-block--featured-image {
  background: #D3D0CD;
  margin: 0 0 40px;
}

.m-block--featured-image::after {
  padding-bottom: 117%;
}

@media (min-width: 595px) {
  .m-block--featured-image::after {
    padding-bottom: 48.62%;
  }
}

@media (min-width: 975px) {
  .m-block--featured-image {
    margin: 0 0 60px;
  }
}

.m-block--featured-image img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.m-block--featured-image .small {
  margin: 7px 0 15px;
}

.m-block--featured-image__meta {
  bottom: 15px;
  height: auto;
  left: initial;
  padding: 0 20px;
  top: initial;
  z-index: 100;
  max-width: 530px;
}

@media (min-width: 595px) {
  .m-block--featured-image__meta {
    bottom: 22px;
    padding: 0 30px;
  }
}

.m-block--featured-image__meta.white {
  color: #FFF;
}

.m-block--featured-image__meta .a-text-btn--primary {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.m-block--featured-image__meta .a-text-btn--secondary {
  vertical-align: baseline;
}

.m-block--featured-image__meta .a-text-btn:first-of-type {
  margin-right: 15px;
}

.m-block--featured-image .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(14, 14, 14, 0.6));
}

.m-block--image-grid {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.m-block--image-grid.spacer {
  margin: 60px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid.spacer {
    margin: 80px auto;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid.spacer {
    margin: 120px auto;
  }
}

.m-block--image-grid__img-container {
  position: relative;
}

.m-block--image-grid__headline-cta-option {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
  z-index: 300;
}

@media (min-width: 768px) {
  .m-block--image-grid__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid__headline-cta-option {
    bottom: 60px;
    padding: 0 60px;
  }
}

.m-block--image-grid__headline-cta-option .cta-group--small {
  margin-top: 20px;
}

.m-block--image-grid__headline-cta-option .cta-group--small .cta-group__action .a-btn {
  min-width: initial;
  max-width: initial;
}

.m-block--image-grid__headline-cta-option.center {
  text-align: center;
}

.m-block--image-grid__headline-cta-option.center .cta-group--small {
  -ms-flex-pack: center;
      justify-content: center;
}

.m-block--image-grid__headline-cta-option.right {
  text-align: right;
}

.m-block--image-grid__headline-cta-option.right .cta-group--small {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.m-block--image-grid__headline-cta-option.middle-center {
  bottom: initial;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.m-block--image-grid__headline-cta-option.middle-center .cta-group--small {
  -ms-flex-pack: center;
      justify-content: center;
}

.m-block--image-grid__container {
  position: relative;
  font-size: 0;
}

@media (min-width: 768px) {
  .m-block--image-grid__container .cta-group--small .cta-group__action .a-btn {
    width: calc((100vw - 180px) * (2/6) * .75);
  }
}

@media (min-width: 975px) {
  .m-block--image-grid__container .cta-group--small .cta-group__action .a-btn {
    width: calc((100vw - 180px) * (2/12) * 1.3);
  }
}

.m-block--image-grid__container.half {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--image-grid__container.half {
    width: calc(100% * (1 / 2));
  }

  .m-block--image-grid__container.half .cta-group--small .cta-group__action {
    width: calc((50vw - 50px) / 2);
  }

  .m-block--image-grid__container.half .cta-group--small .cta-group__action .a-btn {
    width: 100%;
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid__container.half .cta-group--small .cta-group__action {
    width: calc((100vw - 180px) * (2 / 12));
  }
}

.m-block--image-grid__container.half .m-block--image-grid__headline-cta-option {
  bottom: 20px;
}

.m-block--image-grid__container.half .m-block--image-grid__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 768px) {
  .m-block--image-grid__container.half .m-block--image-grid__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid__container.thirds {
  float: left;
  width: 100%;
}

.m-block--image-grid__container.thirds .cta-group--small .cta-group__action {
  width: calc((100vw - 50px) * (1/2) * .85);
}

.m-block--image-grid__container.thirds .cta-group--small .cta-group__action:first-of-type {
  margin-right: 10px;
}

.m-block--image-grid__container.thirds .cta-group--small .cta-group__action:only-child {
  margin-right: 0;
}

.m-block--image-grid__container.thirds .cta-group--small .cta-group__action .a-btn {
  width: 100%;
  padding: 12px;
}

@media (min-width: 595px) {
  .m-block--image-grid__container.thirds {
    width: calc(100% * (1 / 3));
  }

  .m-block--image-grid__container.thirds .cta-group--small {
    margin-top: 10px;
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 40px) / 2);
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 6px;
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/6) * .75);
    margin-right: 0;
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action .a-btn {
    padding: 8px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 10px;
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action:only-child {
    margin-right: 0;
  }
}

@media (min-width: 975px) {
  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/12));
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid__container.thirds .cta-group--small {
    margin-top: 20px;
  }

  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action .a-btn {
    padding: 12px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid__container.thirds .cta-group--small .cta-group__action {
    width: calc((100vw - 400px) * (2 / 12));
  }
}

.m-block--image-grid__container.thirds .m-block--image-grid__headline-cta-option {
  bottom: 20px;
  padding: 0 20px;
}

.m-block--image-grid__container.thirds .m-block--image-grid__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 595px) {
  .m-block--image-grid__container.thirds .m-block--image-grid__headline-cta-option {
    bottom: 15px;
    padding: 0 15px;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid__container.thirds .m-block--image-grid__headline-cta-option {
    bottom: 20px;
    padding: 0 20px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid__container.thirds .m-block--image-grid__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid__container.two-thirds {
  float: left;
  width: 100%;
}

.m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action {
  width: calc((100vw - 50px) * (1/2) * .85);
}

.m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:only-child {
  margin-right: 0;
}

.m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action .a-btn {
  width: 100%;
  padding: 12px;
}

@media (min-width: 595px) {
  .m-block--image-grid__container.two-thirds {
    width: calc(100% * (2 / 3));
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 40px) / 2);
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 6px;
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/6) * .75);
    margin-right: 0;
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action .a-btn {
    padding: 8px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 10px;
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:only-child {
    margin-right: 0;
  }
}

@media (min-width: 975px) {
  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/12));
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid__container.two-thirds {
    width: calc(100% * (2 / 3));
  }

  .m-block--image-grid__container.two-thirds .cta-group--small .cta-group__action {
    width: calc((100vw - 400px) * (2 / 12));
  }
}

.m-block--image-grid__container.two-thirds .m-block--image-grid__headline-cta-option {
  bottom: 20px;
  padding: 0 20px;
}

.m-block--image-grid__container.two-thirds .m-block--image-grid__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 595px) {
  .m-block--image-grid__container.two-thirds .m-block--image-grid__headline-cta-option {
    bottom: 15px;
    padding: 0 15px;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid__container.two-thirds .m-block--image-grid__headline-cta-option {
    bottom: 20px;
    padding: 0 20px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid__container.two-thirds .m-block--image-grid__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid__img-action {
  display: inline-block;
}

.m-block--image-grid__text-option {
  display: inherit;
  margin: 20px 20px 30px;
  position: relative;
  width: auto;
}

.m-block--image-grid__text-option p {
  margin-bottom: 0;
}

@media (min-width: 595px) {
  .m-block--image-grid__text-option {
    margin: 30px 30px 40px;
  }
}

.m-block--image-grid__text-option .label--bold,
.m-block--image-grid__text-option .small {
  margin: 0 0 4px;
}

.m-block--image-grid__text-option .x-small,
.m-block--image-grid__text-option .x-small--grey {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.m-block--image-grid__text-option.spacer {
  margin: 20px 20px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid__text-option.spacer {
    margin: 30px 30px 0;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid__text-option.spacer {
    margin: 30px 30px 0;
  }
}

.m-block--image-grid img {
  display: block;
  margin: 0;
  width: 100%;
}

.m-block--image-grid-margins {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  margin-right: 0;
  margin-left: 0;
  position: relative;
}

.m-block--image-grid-margins::before,
.m-block--image-grid-margins::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins {
    margin-top: 30px;
  }
}

.m-block--image-grid-margins.spacer {
  margin: 60px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins.spacer {
    margin: 80px auto;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins.spacer {
    margin: 120px auto;
  }
}

.m-block--image-grid-margins__img-container {
  position: relative;
}

.m-block--image-grid-margins__headline-cta-option {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
  z-index: 300;
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__headline-cta-option {
    bottom: 60px;
    padding: 0 60px;
  }
}

.m-block--image-grid-margins__headline-cta-option .cta-group--small {
  margin-top: 20px;
}

.m-block--image-grid-margins__headline-cta-option .cta-group--small .cta-group__action .a-btn {
  min-width: initial;
  max-width: initial;
}

.m-block--image-grid-margins__headline-cta-option.center {
  text-align: center;
}

.m-block--image-grid-margins__headline-cta-option.center .cta-group--small {
  -ms-flex-pack: center;
      justify-content: center;
}

.m-block--image-grid-margins__headline-cta-option.right {
  text-align: right;
}

.m-block--image-grid-margins__headline-cta-option.right .cta-group--small {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.m-block--image-grid-margins__headline-cta-option.middle-center {
  bottom: initial;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.m-block--image-grid-margins__headline-cta-option.middle-center .cta-group--small {
  -ms-flex-pack: center;
      justify-content: center;
}

.m-block--image-grid-margins__container {
  margin: 0 20px;
  width: calc(100% - 40px);
  position: relative;
  font-size: 0;
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container {
    margin: 0 40px;
    width: calc(100% - 80px);
  }

  .m-block--image-grid-margins__container .cta-group--small .cta-group__action .a-btn {
    width: calc((100vw - 180px) * (2/6) * .75);
  }
}

@media (min-width: 975px) {
  .m-block--image-grid-margins__container .cta-group--small .cta-group__action .a-btn {
    width: calc((100vw - 180px) * (2/12) * 1.3);
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container {
    margin: 0 60px;
    width: calc(100% - 120px);
  }
}

.m-block--image-grid-margins__container.half {
  float: left;
  width: calc(100% - 40px);
  margin: 0 0 0 20px;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__container.half {
    width: calc((100% - 60px) * (1 / 2));
  }

  .m-block--image-grid-margins__container.half:last-of-type {
    margin: 0 0 0 20px;
  }

  .m-block--image-grid-margins__container.half .cta-group--small .cta-group__action {
    width: calc((50vw - 80px) / 2);
  }

  .m-block--image-grid-margins__container.half .cta-group--small .cta-group__action .a-btn {
    width: 100%;
    padding: 12px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.half {
    width: calc((100% - 100px) * (1 / 2));
    margin: 0 0 0 40px;
  }

  .m-block--image-grid-margins__container.half:last-of-type {
    margin: 0 0 0 20px;
  }

  .m-block--image-grid-margins__container.half .cta-group--small .cta-group__action {
    width: calc((100vw - 180px) * (2/12));
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container.half {
    width: calc((100% - 150px) * (1 / 2));
    margin: 0 0 0 60px;
  }

  .m-block--image-grid-margins__container.half:last-of-type {
    margin: 0 0 0 30px;
  }
}

.m-block--image-grid-margins__container.half .m-block--image-grid-margins__headline-cta-option {
  bottom: 20px;
}

.m-block--image-grid-margins__container.half .m-block--image-grid-margins__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.half .m-block--image-grid-margins__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid-margins__container.thirds {
  float: left;
  width: calc(100% - 40px);
  margin: 0 0 0 20px;
}

.m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action {
  width: calc((100% - 50px) * (1/2) * .85);
}

.m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:first-of-type {
  margin-right: 10px;
}

.m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:only-child {
  width: calc((100vw - 50px) * (1/2));
  margin-right: 0;
}

.m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action .a-btn {
  width: 100%;
  padding: 12px;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__container.thirds {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc((100% - 80px) * (1 / 3));
  }

  .m-block--image-grid-margins__container.thirds img {
    height: 100%;
    object-fit: cover;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small {
    margin-top: 10px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 40px) / 2);
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 6px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/6) * .75);
    margin-right: 0;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action .a-btn {
    padding: 8px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.thirds {
    width: calc((100% - 120px) * (1 / 3));
  }

  .m-block--image-grid-margins__container.thirds:first-of-type {
    margin: 0 0 0 40px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 80px) / 2);
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 10px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:only-child {
    margin-right: 0;
  }
}

@media (min-width: 975px) {
  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/12));
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins__container.thirds .cta-group--small {
    margin-top: 20px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action .a-btn {
    padding: 12px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container.thirds {
    width: calc((100% - 180px) * (1 / 3));
    margin: 0 0 0 30px;
  }

  .m-block--image-grid-margins__container.thirds:first-of-type {
    margin: 0 0 0 60px;
  }

  .m-block--image-grid-margins__container.thirds .cta-group--small .cta-group__action {
    width: calc(45% - 5px);
  }
}

.m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option {
  bottom: 20px;
  padding: 0 20px;
}

.m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 5px;
    padding: 0 5px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 15px;
    padding: 0 15px;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 20px;
    padding: 0 20px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container.thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid-margins__container.two-thirds {
  float: left;
  width: calc(100% - 40px);
  margin: 0 0 0 20px;
}

.m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action {
  width: calc((100% - 50px) * (1/2) * .9);
}

.m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:only-child {
  width: calc((100vw - 50px) * (1/2));
  margin-right: 0;
}

.m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action .a-btn {
  width: 100%;
  padding: 12px;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__container.two-thirds {
    width: calc((100% - 50px) * (2 / 3));
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small {
    margin-top: 10px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 40px) / 2);
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 6px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/6) * .75);
    margin-right: 0;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action .a-btn {
    padding: 8px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.two-thirds {
    width: calc((100% - 90px) * (2 / 3));
  }

  .m-block--image-grid-margins__container.two-thirds:first-of-type {
    margin: 0 0 0 40px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action {
    width: calc((33vw - 80px) / 2);
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:first-of-type {
    margin-right: 10px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:only-child {
    margin-right: 0;
  }
}

@media (min-width: 975px) {
  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action:only-child {
    width: calc((100vw - 50px) * (2/12));
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins__container.two-thirds .cta-group--small {
    margin-top: 20px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .cta-group__action .a-btn {
    padding: 12px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container.two-thirds {
    width: calc((100% - 135px) * (2 / 3));
    margin: 0 0 0 30px;
  }

  .m-block--image-grid-margins__container.two-thirds:first-of-type {
    margin: 0 0 0 60px;
  }

  .m-block--image-grid-margins__container.two-thirds .cta-group--small .a-btn {
    width: calc((100vw - 400px) * (2 / 12));
  }
}

.m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option {
  bottom: 20px;
  padding: 0 20px;
}

.m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option.middle-center {
  bottom: initial;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 5px;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 15px;
    padding: 0 15px;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 20px;
    padding: 0 20px;
  }
}

@media (min-width: 1440px) {
  .m-block--image-grid-margins__container.two-thirds .m-block--image-grid-margins__headline-cta-option {
    bottom: 30px;
    padding: 0 30px;
  }
}

.m-block--image-grid-margins__img-action {
  display: inline-block;
  height: 100%;
}

.m-block--image-grid-margins__text-option {
  margin: 20px 0 30px;
  position: relative;
  width: auto;
}

.m-block--image-grid-margins__text-option p {
  margin-bottom: 0;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__text-option {
    margin: 30px 0 40px;
  }
}

.m-block--image-grid-margins__text-option .label--bold,
.m-block--image-grid-margins__text-option .small {
  margin: 0 0 4px;
}

.m-block--image-grid-margins__text-option .x-small,
.m-block--image-grid-margins__text-option .x-small--grey {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.m-block--image-grid-margins__text-option.spacer {
  margin: 20px 20px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__text-option.spacer {
    margin: 30px 30px 0;
  }
}

@media (min-width: 1080px) {
  .m-block--image-grid-margins__text-option.spacer {
    margin: 30px 30px 0;
  }
}

.m-block--image-grid-margins__single {
  margin: 60px 0 0 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.m-block--image-grid-margins__single img.thirds {
  margin: 0 0 20px;
  width: 100% !important;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins__single {
    display: inline-block;
    margin: 20px 0 0 20px;
    width: calc(100% * (1 / 3) - 13px);
  }
}

@media (min-width: 768px) {
  .m-block--image-grid-margins__single {
    display: inline-block;
    margin: 40px 0 0 30px;
    width: calc(100% * (1 / 3) - 23px);
  }
}

.m-block--image-grid-margins__single .small {
  margin: 10px 0 0;
}

.m-block--image-grid-margins picture:first-of-type img.split {
  margin: 5px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins picture:first-of-type img.split {
    margin: 30px 0;
  }
}

.m-block--image-grid-margins picture:first-of-type img.thirds {
  margin: 5px 0;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins picture:first-of-type img.thirds {
    margin: 30px 0;
  }
}

.m-block--image-grid-margins img {
  display: block;
  width: 100%;
}

.m-block--image-grid-margins img.split {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins img.split {
    margin: 30px 0 30px 30px;
    width: calc(100% * (1 / 2) - 15px);
  }
}

.m-block--image-grid-margins img.thirds {
  float: left;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--image-grid-margins img.thirds {
    margin: 30px 0 30px 30px;
    width: calc(100% * (1 / 3) - 20px);
  }
}

.m-block--multi-content {
  margin: 32px 0 0;
}

.m-block--multi-content::before,
.m-block--multi-content::after {
  content: '';
  display: block;
  clear: both;
}

.m-block--multi-content * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.m-block--multi-content:first-of-type {
  margin: 0;
}

.m-block--multi-content:nth-of-type(3) {
  margin: 25px 0 0;
}

@media (min-width: 595px) {
  .m-block--multi-content {
    margin: 0 0 0 20px;
    vertical-align: top;
  }

  .m-block--multi-content:first-of-type {
    margin: 0;
  }

  .m-block--multi-content:nth-of-type(3) {
    margin: 32px 0 0;
  }
}

@media (min-width: 768px) {
  .m-block--multi-content:nth-of-type(3) {
    margin: 0 0 0 20px;
  }
}

@media (min-width: 1080px) {
  .m-block--multi-content {
    margin: 0 0 0 30px;
  }

  .m-block--multi-content:nth-of-type(3) {
    margin: 0 0 0 30px;
  }
}

@media (min-width: 595px) {
  .m-block--multi-content {
    display: inline-block;
    width: calc(100% * (6 / 12) - 20px);
  }
}

@media (min-width: 768px) {
  .m-block--multi-content {
    width: calc(100% * (8 / 12) - 10px);
  }
}

@media (min-width: 1080px) {
  .m-block--multi-content {
    width: calc(100% * (8 / 12) - 20px);
  }
}

@media (min-width: 595px) {
  .m-block--multi-content.single {
    display: inline-block;
    width: calc(100% * (6 / 12) - 20px);
  }
}

@media (min-width: 768px) {
  .m-block--multi-content.single {
    width: calc(100% * (4 / 12) - 17px);
  }
}

@media (min-width: 1080px) {
  .m-block--multi-content.single {
    width: calc(100% * (4 / 12) - 23px);
  }
}

@media (min-width: 595px) {
  .m-block--multi-content.split {
    display: inline-block;
    width: calc(100% * (6 / 12) - 20px);
  }
}

.m-block--multi-content--watermark {
  display: none;
  margin: 40px 0 0 20px;
}

.m-block--product-content {
  position: relative;
}

.m-block--product-content .product--meta__badge {
  left: 20px;
  position: absolute;
  top: -35px;
}

@media (min-width: 595px) {
  .m-block--product-content .product--meta__badge {
    top: -40px;
  }
}

.m-block--product-content__img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--product-content__img {
    position: relative;
  }
}

.m-block--product-content__meta {
  position: relative;
}

.m-block--product-content__meta h1 {
  margin: 9px 0 0;
}

@media (min-width: 595px) {
  .m-block--product-content__meta h1 {
    margin: 18px 0 0;
  }
}

.m-block--product-content__meta p {
  margin: 6px 0 0;
}

@media (min-width: 595px) {
  .m-block--product-content__meta p {
    margin: 10px 0 0;
  }
}

.m-block--product-content__meta .btn-container {
  display: block;
  margin: 10px 0 0;
  width: auto;
}

.m-block--product-content__meta .btn-container:first-of-type {
  margin-top: 6px;
}

@media (min-width: 595px) {
  .m-block--product-content__meta .btn-container {
    display: inline-block;
    float: left;
    margin: 14px 26px 0 0;
  }

  .m-block--product-content__meta .btn-container:first-of-type {
    margin-top: 14px;
  }
}

.m-block--media-content {
  position: relative;
}

.m-block--media-content::after {
  content: '';
  box-shadow: 0 2px 20px 0 #D3D0CD;
  height: 20px;
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: -25px;
  width: 80%;
}

@media (min-width: 595px) {
  .m-block--media-content::after {
    width: 75%;
  }
}

.m-block--media-content.single::after {
  content: '';
  box-shadow: 0 2px 20px 0 #D3D0CD;
  height: 20px;
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: -25px;
  width: 75%;
}

.m-block--media-content__img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--media-content__img {
    position: relative;
  }
}

.m-block--media-content__meta {
  background: #FFF;
  margin: 0 auto;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  margin-top: -82px;
  width: calc(100% - 40px);
  z-index: 300;
}

.m-block--media-content__meta h1 {
  margin: 9px 20px 0;
}

@media (min-width: 768px) {
  .m-block--media-content__meta h1 {
    margin: 9px 0 0;
  }
}

.m-block--media-content__meta p {
  margin: 17px 0 0;
}

@media (min-width: 768px) {
  .m-block--media-content__meta p {
    margin: 17px auto 0;
  }
}

.m-block--media-content__meta .btn-container {
  display: block;
  margin: 10px auto 0;
  width: auto;
}

@media (min-width: 595px) {
  .m-block--media-content__meta .btn-container {
    margin: 14px auto 0;
  }
}

.has-watermark .m-block--multi-content--watermark {
  display: none;
}

@media (min-width: 595px) {
  .has-watermark .m-block--multi-content--watermark {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .has-watermark .m-block--multi-content--watermark {
    display: none;
  }
}

.filters-container {
  display: block;
  background: #FFF;
  transition: all 0.6s ease-in-out;
  width: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 100;
}

.filters-container.active {
  z-index: 500;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.filters-container.active #secondary {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 60px 0 0;
  overflow: auto;
  z-index: 400;
  background: #FFF;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .filters-container.active #secondary {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .filters-container.active #secondary {
    padding: 0 0 0 40px;
  }
}

@media (min-width: 975px) {
  .filters-container.active #secondary {
    display: block;
    position: relative;
    left: initial;
    top: initial;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .filters-container {
    padding: 0 0 0 40px;
  }
}

@media (min-width: 975px) {
  .filters-container {
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 100;
    position: relative;
    margin: 30px 0 60px;
    left: initial;
    top: initial;
    width: calc(100% * (3/12));
  }
}

@media (min-width: 1080px) {
  .filters-container {
    padding: 0 0 0 60px;
  }
}

.filters-container .refinements-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #0363F7;
  text-align: center;
  color: #FFF;
  box-shadow: 0 -1px 3px 0 rgba(0, 40, 85, 0.38);
}

.filters-container .refinements-actions a {
  color: #FFF;
  line-height: 60px;
}

@media (min-width: 975px) {
  .filters-container .refinements-actions {
    display: none;
  }
}

.filters-container #secondary {
  display: none;
}

@media (min-width: 975px) {
  .filters-container #secondary {
    display: block;
  }
}

.filters-container .overflow {
  overflow-x: hidden;
  overflow-y: hidden;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
  position: relative;
}

.filters-container .overflow::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 80px;
  height: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #FFF);
}

@media (min-width: 595px) {
  .filters-container .overflow {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .filters-container .overflow {
    margin: 0 -40px;
  }
}

@media (min-width: 975px) {
  .filters-container .overflow {
    border: 0;
    margin: 0;
  }
}

.filters-container .medium {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 12px 20px 15px;
  text-transform: uppercase;
}

@media (min-width: 595px) {
  .filters-container .medium {
    margin: 12px 40px 15px;
  }
}

@media (min-width: 768px) {
  .filters-container .medium {
    margin: 12px 0 15px;
  }
}

@media (min-width: 975px) {
  .filters-container .medium {
    margin: 12px 0 0;
    text-transform: none;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
  }
}

.filters-container__category-list {
  /* Pick an arbitrary margin/padding that should be bigger
    * than the max width of all the scroll bars across
    * the devices you are targeting.
    * padding = -margin
    */
  margin-bottom: -100px;
  padding-bottom: 100px;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  padding-right: 80px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
}

@media (min-width: 595px) {
  .filters-container__category-list {
    margin: 0;
    padding: 0 40px;
    padding-right: 80px;
  }
}

@media (min-width: 975px) {
  .filters-container__category-list {
    margin: 16px 0 46px;
    width: auto;
    padding: 0;
  }
}

.filters-container__category-list .nav-item {
  display: inline-block;
  width: auto;
  margin-left: 20px;
  padding: 5px 0;
}

.filters-container__category-list .nav-item:first-of-type {
  margin-left: 0;
}

@media (min-width: 975px) {
  .filters-container__category-list .nav-item {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.filters-container__category-list .nav-item a {
  color: #0E0E0E;
  transition: color 0.6s ease-in-out;
}

.filters-container__category-list .nav-item a:hover {
  color: #0363F7;
  transition: color 0.6s ease-in-out;
}

.filters-container__category-list .nav-item.sale {
  padding: 5px 0 0;
}

.filters-container__category-list .nav-item.sale::after {
  display: none;
}

.filters-container__category-list .nav-item.sale a {
  color: #DF001A;
  transition: color 0.6s ease-in-out;
}

.filters-container__category-list .nav-item.sale a:hover {
  color: #0363F7;
  transition: color 0.6s ease-in-out;
}

.refinement-list.tiles {
  max-width: 280px;
}

.refinement-list.tiles::before,
.refinement-list.tiles::after {
  content: '';
  display: block;
  clear: both;
}

.refinement-list.tiles .size-filter__tile {
  width: auto;
  min-width: 70px;
  background-color: #FFF;
  border: solid 1px #D3D0CD;
  float: left;
  overflow: hidden;
  margin-left: -1px;
  margin-bottom: -1px;
  height: auto;
  min-height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.refinement-list.tiles .size-filter__tile.selected {
  background: #0363F7;
  color: #FFF;
  transition: color 0.6s ease-in-out;
}

.refinement-list.tiles .size-filter__tile.selected a {
  background: #0363F7;
  color: #FFF;
  transition: color 0.6s ease-in-out;
}

.refinement-list.tiles .size-filter__tile.selected a:hover,
.refinement-list.tiles .size-filter__tile.selected a:focus {
  color: #FFF;
}

.refinement-list.tiles .size-filter__tile a {
  display: block;
  text-align: center;
  width: 100%;
  background: #FFF;
  color: #0E0E0E;
  transition: color background 0.6s ease-in-out;
}

.refinement-list.tiles .size-filter__tile a:hover,
.refinement-list.tiles .size-filter__tile a:focus {
  color: #0363F7;
  transition: color background 0.6s ease-in-out;
}

.refinements-container {
  padding: 22px 0 0;
  padding-bottom: 210px;
}

@media (min-width: 975px) {
  .refinements-container {
    padding: 22px 0 0;
  }
}

.refinements-container .refinements {
  list-style-type: none;
  padding: 0;
}

.refinements-container .refinements--top {
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 10px;
  position: relative;
}

.refinements-container .refinements--top::before,
.refinements-container .refinements--top::after {
  content: '';
  display: block;
  clear: both;
}

.refinements-container .refinements--top .medium {
  float: left;
  margin: 0;
}

.refinements-container .refinements--top .selections-actions {
  position: relative;
  display: inline-block;
  right: initial;
  vertical-align: middle;
  margin-left: 17px;
}

@media (min-width: 975px) {
  .refinements-container .refinements--top .selections-actions {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate3d(0, -50%, 0);
  }
}

.refinements-container .refinements--top .close--mobile {
  display: block;
  position: absolute;
  top: calc(50% - 22px);
  right: 12px;
  cursor: pointer;
  padding: 10px;
}

@media (min-width: 975px) {
  .refinements-container .refinements--top .close--mobile {
    display: none;
  }
}

.refinements-container .refinements--top .close--mobile .icon {
  position: relative;
  display: block;
}

.refinements-container .refinement {
  list-style-type: none;
  margin-top: 25px;
  max-width: 280px;
}

.refinements-container .refinement .refinement-list {
  list-style-type: none;
  margin-top: 5px;
  padding: 0;
  margin-bottom: 5px;
}

.refinements-container .refinement .refinement-list li {
  text-transform: capitalize;
}

.refinements-container .refinement .refinement-list li.white .checkbox-label::before {
  background: #FFF;
  border: 1px solid #D3D0CD;
}

.refinements-container .refinement .refinement-list li.white input[type='checkbox']:checked + label::after {
  transform: scale(0.9);
}

.refinements-container .refinement .refinement-list li.white input[type='checkbox'] + label::after {
  background: #FFF;
}

.refinements-container .refinement .refinement-list li.white .icon__wrapper {
  top: 1px;
}

.refinements-container .refinement .refinement-list li.white .icon-checkmark {
  stroke: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.black .checkbox-label::before {
  background: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.black input[type='checkbox'] + label::after {
  background: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.gray .checkbox-label::before {
  background: #D3D0CD;
}

.refinements-container .refinement .refinement-list li.gray input[type='checkbox'] + label::after {
  background: #D3D0CD;
}

.refinements-container .refinement .refinement-list li.blue .checkbox-label::before {
  background: #0363F7;
}

.refinements-container .refinement .refinement-list li.blue input[type='checkbox'] + label::after {
  background: #0363F7;
}

.refinements-container .refinement .refinement-list li.red .checkbox-label::before {
  background: #DF001A;
}

.refinements-container .refinement .refinement-list li.red input[type='checkbox'] + label::after {
  background: #DF001A;
}

.refinements-container .refinement .refinement-list li.green .checkbox-label::before {
  background: #56C200;
}

.refinements-container .refinement .refinement-list li.green input[type='checkbox'] + label::after {
  background: #56C200;
}

.refinements-container .refinement .refinement-list li.orange .checkbox-label::before {
  background: #FA4616;
}

.refinements-container .refinement .refinement-list li.orange input[type='checkbox'] + label::after {
  background: #FA4616;
}

.refinements-container .refinement .refinement-list li.teal .checkbox-label::before {
  background: #44E6E0;
}

.refinements-container .refinement .refinement-list li.teal input[type='checkbox'] + label::after {
  background: #44E6E0;
}

.refinements-container .refinement .refinement-list li.pink .checkbox-label::before {
  background: #FC49B0;
}

.refinements-container .refinement .refinement-list li.pink input[type='checkbox'] + label::after {
  background: #FC49B0;
}

.refinements-container .refinement .refinement-list li.purple .checkbox-label::before {
  background: #8D31C0;
}

.refinements-container .refinement .refinement-list li.purple input[type='checkbox'] + label::after {
  background: #8D31C0;
}

.refinements-container .refinement .refinement-list li.yellow .checkbox-label::before {
  background: #F1F81C;
  border: 1px solid #D3D0CD;
}

.refinements-container .refinement .refinement-list li.yellow input[type='checkbox']:checked + label::after {
  transform: scale(0.9);
}

.refinements-container .refinement .refinement-list li.yellow input[type='checkbox'] + label::after {
  background: #F1F81C;
}

.refinements-container .refinement .refinement-list li.yellow .icon__wrapper {
  top: 1px;
}

.refinements-container .refinement .refinement-list li.yellow .icon-checkmark {
  stroke: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.brown .checkbox-label::before {
  background: #865C00;
}

.refinements-container .refinement .refinement-list li.brown input[type='checkbox'] + label::after {
  background: #865C00;
}

.refinements-container .refinement .refinement-list li.beige .checkbox-label::before {
  background: #F0DDB3;
  border: 1px solid #D3D0CD;
}

.refinements-container .refinement .refinement-list li.beige input[type='checkbox']:checked + label::after {
  transform: scale(0.9);
}

.refinements-container .refinement .refinement-list li.beige input[type='checkbox'] + label::after {
  background: #F0DDB3;
}

.refinements-container .refinement .refinement-list li.beige .icon__wrapper {
  top: 1px;
}

.refinements-container .refinement .refinement-list li.beige .icon-checkmark {
  stroke: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.silver .checkbox-label::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(160, 160, 160, 0.88));
  border: 1px solid #D3D0CD;
}

.refinements-container .refinement .refinement-list li.silver input[type='checkbox']:checked + label::after {
  transform: scale(0.9);
}

.refinements-container .refinement .refinement-list li.silver input[type='checkbox'] + label::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(160, 160, 160, 0.88));
}

.refinements-container .refinement .refinement-list li.silver .icon__wrapper {
  top: 1px;
}

.refinements-container .refinement .refinement-list li.silver .icon-checkmark {
  stroke: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.gold .checkbox-label::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(233, 203, 18, 0.88));
  border: 1px solid #D3D0CD;
}

.refinements-container .refinement .refinement-list li.gold input[type='checkbox']:checked + label::after {
  transform: scale(0.9);
}

.refinements-container .refinement .refinement-list li.gold input[type='checkbox'] + label::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(233, 203, 18, 0.88));
}

.refinements-container .refinement .refinement-list li.gold .icon__wrapper {
  top: 1px;
}

.refinements-container .refinement .refinement-list li.gold .icon-checkmark {
  stroke: #0E0E0E;
}

.refinements-container .refinement .refinement-list li.pattern .checkbox-label::before {
  background: linear-gradient(to right, #56C200, #1C6EE0 30%, #E8001A 66%, #F3F938);
}

.refinements-container .refinement .refinement-list li.pattern input[type='checkbox'] + label::after {
  background: linear-gradient(to right, #56C200, #1C6EE0 30%, #E8001A 66%, #F3F938);
}

.refinements-container .refinement .refinement-list.toggle__list {
  display: -ms-flexbox;
  display: flex;
}

.refinements-container .refinement .refinement-list.toggle__list::before,
.refinements-container .refinement .refinement-list.toggle__list::after {
  content: '';
  display: block;
  clear: both;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle {
  max-width: 140px;
  width: 100%;
  text-align: center;
  border-radius: 5px 0 0 5px;
  height: 40px;
  line-height: 40px;
  background: #FFF;
  color: #0E0E0E;
  border: 1px solid #D3D0CD;
  overflow: hidden;
  float: left;
  -ms-flex: 1;
      flex: 1;
  transform: color background 0.6s ease-in-out;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle:last-of-type {
  margin-left: -1px;
  border-radius: 0 5px 5px 0;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle:nth-of-type(2) {
  margin-left: -1px;
  border-radius: 0;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle:nth-of-type(2):last-of-type {
  border-radius: 0 5px 5px 0;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle.selected a {
  background: #0363F7;
  color: #FFF;
  transition: color 0.6s ease-in-out;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle.selected a:hover,
.refinements-container .refinement .refinement-list.toggle__list .toggle.selected a:focus {
  color: #FFF;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle a {
  display: block;
  color: #0E0E0E;
  background: #FFF;
  transition: color background 0.6s ease-in-out;
  line-height: 13px;
}

.refinements-container .refinement .refinement-list.toggle__list .toggle a:hover,
.refinements-container .refinement .refinement-list.toggle__list .toggle a:focus {
  color: #0363F7;
  transition: color background 0.6s ease-in-out;
}

.refinements-container .refinement .label {
  color: #0E0E0E;
}

.refinements-container .refinement .label::after {
  content: '';
}

.refinements-container .refinement li {
  border: 1px solid #D3D0CD;
  margin-bottom: -1px;
  padding: 12px;
}

.refinements-container .refinement li a {
  width: 100%;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.refinements-container .refinement .site-checkbox__wrapper {
  border: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.refinements-container .refinement .site-checkbox__wrapper span {
  transition: color 0.3s ease-in-out;
}

.refinements-container .refinement .site-checkbox__wrapper:hover span {
  color: #0363F7;
}

.refinements-container .refinement .site-checkbox__wrapper .x-small {
  vertical-align: text-top;
}

.refinements-container .refinement.colors::before,
.refinements-container .refinement.colors::after {
  content: '';
  display: block;
  clear: both;
}

.refinements-container .refinement.colors .refinement-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.refinements-container .refinement.colors li {
  max-width: 140px;
  float: left;
  border: 1px solid #D3D0CD;
  margin-left: -1px;
  margin-bottom: -1px;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
}

.refinements-container .refinement.colors li span {
  transition: color 0.3s ease-in-out;
}

.refinements-container .refinement.colors li:hover span {
  color: #0363F7;
}

.refinements-container .refinement.colors li .site-checkbox__wrapper {
  max-width: 100%;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: auto;
  line-height: initial;
}

.refinements-container .refinement.colors li .site-checkbox__wrapper input[type='checkbox'] + label .icon__wrapper .icon-checkmark {
  position: relative;
  top: -9px;
  background: none;
}

.refinements-container .refinement.colors li .site-checkbox__wrapper input[type='checkbox'] + label::after {
  border-radius: 50%;
}

.refinements-container .refinement.colors li .site-checkbox__wrapper a > label {
  pointer-events: none;
}

.refinement__selections {
  margin-top: 14px;
}

.refinement__selections .selections {
  list-style-type: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: start;
      justify-content: start;
}

.refinement__selections .selections .selection {
  cursor: pointer;
  display: inline-block;
  width: auto;
  border-radius: 14px;
  border: 1px solid #D3D0CD;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: border 0.6s ease-in-out, color 0.6s ease-in-out;
}

.refinement__selections .selections .selection:first-of-type {
  margin-left: 0;
}

.refinement__selections .selections .selection:hover {
  border: 1px solid #787673;
}

.refinement__selections .selections .selection:hover a {
  color: #0363F7;
}

.refinement__selections .selections .selection a {
  cursor: pointer;
  display: block;
  line-height: 16px;
  position: relative;
  padding: 5px 25px 5px 15px;
  color: #0E0E0E;
  transition: color 0.6s ease-in-out;
}

.refinement__selections .selections .selection a::after {
  content: '\2573';
  color: #0E0E0E;
  font-size: 9px;
  font-weight: bold;
  position: absolute;
  bottom: 50%;
  right: 8px;
  transform: translateY(50%);
  margin-bottom: -1px;
}

.refinement__selections .selections .selection.colors a {
  padding-left: 25px;
}

.refinement__selections .selections .selection.colors a::before {
  content: '';
  border-radius: 10px;
  height: 10px;
  width: 10px;
  font-size: 10px;
  position: absolute;
  bottom: 50%;
  left: 8px;
  transform: translateY(50%);
}

.refinement__selections .selections .selection.colors.white a::before {
  background: #FFF;
  border: 1px solid #D3D0CD;
}

.refinement__selections .selections .selection.colors.black a::before {
  background: #0E0E0E;
}

.refinement__selections .selections .selection.colors.gray a::before {
  background: #D3D0CD;
}

.refinement__selections .selections .selection.colors.blue a::before {
  background: #0363F7;
}

.refinement__selections .selections .selection.colors.red a::before {
  background: #DF001A;
}

.refinement__selections .selections .selection.colors.green a::before {
  background: #56C200;
}

.refinement__selections .selections .selection.colors.orange a::before {
  background: #FA4616;
}

.refinement__selections .selections .selection.colors.teal a::before {
  background: #44E6E0;
}

.refinement__selections .selections .selection.colors.pink a::before {
  background: #FC49B0;
}

.refinement__selections .selections .selection.colors.purple a::before {
  background: #8D31C0;
}

.refinement__selections .selections .selection.colors.yellow a::before {
  background: #F1F81C;
  border: 1px solid #D3D0CD;
}

.refinement__selections .selections .selection.colors.brown a::before {
  background: #865C00;
}

.refinement__selections .selections .selection.colors.beige a::before {
  background: #F0DDB3;
  border: 1px solid #D3D0CD;
}

.refinement__selections .selections .selection.colors.silver a::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(160, 160, 160, 0.88));
  border: 1px solid #D3D0CD;
}

.refinement__selections .selections .selection.colors.gold a::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.88), rgba(233, 203, 18, 0.88));
  border: 1px solid #D3D0CD;
}

.refinement__selections .selections .selection.colors.pattern a::before {
  background: linear-gradient(to right, #56C200, #1C6EE0 30%, #E8001A 66%, #F3F938);
}

.o-block--experience-filter {
  background: #002855;
  display: inline-block;
  padding: 0 0 30px;
  position: relative;
  left: 0;
  text-align: left;
  top: -6px;
  width: 100%;
}

@media (min-width: 975px) {
  .o-block--experience-filter {
    background: none;
    padding: 0;
    top: 0;
  }
}

.o-block--experience-filter__title {
  background: #002855;
  color: #FFF;
  height: 80px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 100;
}

@media (min-width: 975px) {
  .o-block--experience-filter__title {
    background: #F2F2F2;
    color: #0E0E0E;
    height: 122px;
  }
}

.o-block--experience-filter__title p {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media (min-width: 975px) {
  .o-block--experience-filter__title p {
    top: 45%;
  }
}

.o-block--experience-filter a {
  color: #FFF;
}

.o-block--experience-filter__container {
  padding: 0 20px;
}

.o-block--experience-filter__container.active {
  width: 100%;
  height: auto;
}

.o-block--experience-filter__container.active .m-footer__list-title::after {
  transform: rotate(316deg);
  transition: transform 0.3s ease;
}

@media (min-width: 595px) {
  .o-block--experience-filter__container {
    padding: 0 40px;
  }
}

@media (min-width: 1080px) {
  .o-block--experience-filter__container {
    padding: 0 60px;
  }
}

.o-block--experience-filter .m-footer__list-title {
  background: #002855;
  border: 1px solid rgba(211, 208, 205, 0.35);
  border-radius: 5px 5px 0 0;
  color: #FFF;
  cursor: pointer;
  line-height: 40px;
  margin: 0 0 1px;
  text-align: center;
}

@media (min-width: 975px) {
  .o-block--experience-filter .m-footer__list-title {
    display: none;
  }
}

.o-block--experience-filter .m-footer__list-title::after {
  right: 18px;
  width: 5.7px;
  height: 5.7px;
  top: calc(50% - 5.7px);
  border-color: #FFF;
  transform-origin: 50% 50%;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}

.o-block--experience-filter__container-options {
  background: #002855;
  border-left: 1px solid rgba(211, 208, 205, 0.35);
  border-right: 1px solid rgba(211, 208, 205, 0.35);
  background-clip: padding-box;
  color: #FFF;
  cursor: pointer;
  display: none;
  float: left;
  list-style-type: none;
  margin: -1px 0;
  padding: 17px 17px 16px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 200;
  transition: background 0.6s ease-in-out;
}

.o-block--experience-filter__container-options:first-of-type {
  border-top: 0;
}

.o-block--experience-filter__container-options:last-of-type {
  border-radius: 0 0 5px 5px;
}

@media (min-width: 975px) {
  .o-block--experience-filter__container-options {
    display: block;
    margin: -27px -2px 0;
    text-align: center;
    width: calc(20% + 3px);
  }

  .o-block--experience-filter__container-options:first-of-type {
    border-radius: 5px 0 0 5px;
  }

  .o-block--experience-filter__container-options:last-of-type {
    border-radius: 0 5px 5px 0;
  }
}

.o-block--experience-filter__container-options::before {
  content: '';
  opacity: 0;
}

.o-block--experience-filter__container-options::after {
  content: '';
  opacity: 0;
}

.o-block--experience-filter__container-options:hover {
  background: #021D3C;
  transition: background 0.6s ease-in-out;
}

.o-block--experience-filter__container-options:hover.cushion::after,
.o-block--experience-filter__container-options:hover.connect::after,
.o-block--experience-filter__container-options:hover.energize::after,
.o-block--experience-filter__container-options:hover.speed::after,
.o-block--experience-filter__container-options:hover.all::after {
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s ease-in-out;
}

.o-block--experience-filter__container-options.cushion::before,
.o-block--experience-filter__container-options.connect::before,
.o-block--experience-filter__container-options.energize::before,
.o-block--experience-filter__container-options.speed::before,
.o-block--experience-filter__container-options.all::before {
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  font-size: 0;
  height: 0;
  left: 45%;
  line-height: 0;
  position: absolute;
  bottom: -5px;
  transition: opacity 0.2s, bottom 0.2s;
  width: 0;
}

.o-block--experience-filter__container-options.cushion::after,
.o-block--experience-filter__container-options.connect::after,
.o-block--experience-filter__container-options.energize::after,
.o-block--experience-filter__container-options.speed::after,
.o-block--experience-filter__container-options.all::after {
  content: '';
  display: block;
  position: absolute;
  height: 4px;
  left: 0;
  opacity: 1;
  width: 100%;
  bottom: 0;
  transform: scale3d(1, 0, 1);
  transition: transform 0.3s ease-in-out;
}

.o-block--experience-filter__container-options.all::before {
  border-top: 10px solid #0363F7;
}

.o-block--experience-filter__container-options.all::after {
  background: #0363F7;
}

.o-block--experience-filter__container-options.cushion::before {
  border-top: 10px solid #00C8FF;
}

.o-block--experience-filter__container-options.cushion::after {
  background: #00C8FF;
}

.o-block--experience-filter__container-options.connect::before {
  border-top: 10px solid #FF8200;
}

.o-block--experience-filter__container-options.connect::after {
  background: #FF8200;
}

.o-block--experience-filter__container-options.energize::before {
  border-top: 10px solid #14F0D8;
}

.o-block--experience-filter__container-options.energize::after {
  background: #14F0D8;
}

.o-block--experience-filter__container-options.speed::before {
  border-top: 10px solid #FA4616;
}

.o-block--experience-filter__container-options.speed::after {
  background: #FA4616;
}

.o-block--experience-filter__container-options.active {
  background: #021D3C;
}

@media (min-width: 975px) {
  .o-block--experience-filter__container-options.active.cushion::before,
  .o-block--experience-filter__container-options.active.connect::before,
  .o-block--experience-filter__container-options.active.speed::before,
  .o-block--experience-filter__container-options.active.energize::before,
  .o-block--experience-filter__container-options.active.all::before {
    opacity: 1;
    bottom: -10px;
    transition: opacity 0.2s, bottom 0.2s;
  }
}

.o-block--experience-filter__container-options.active.cushion::after,
.o-block--experience-filter__container-options.active.connect::after,
.o-block--experience-filter__container-options.active.speed::after,
.o-block--experience-filter__container-options.active.energize::after,
.o-block--experience-filter__container-options.active.all::after {
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s ease-in-out;
}

.o-block--experience-filter__container-options.active.all::after {
  border-radius: 0 0 0 5px;
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  height: 4px;
  background: #0363F7;
  left: 0;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}

.o-block--experience-filter__container-options p {
  margin: 0 0 5px;
  max-width: 100%;
}

.o-block--experience-filter__container-options p.cushion {
  color: #00C8FF;
}

.o-block--experience-filter__container-options p.connect {
  color: #FF8200;
}

.o-block--experience-filter__container-options p.energize {
  color: #14F0D8;
}

.o-block--experience-filter__container-options p.speed {
  color: #FA4616;
}

@media (min-width: 975px) {
  .o-block--experience-filter__container-options p {
    margin: 0 0 2px;
  }
}

.collection__hero--toggle {
  padding-top: 20px;
}

@media (min-width: 1080px) {
  .collection__hero--toggle {
    padding-top: 30px;
  }
}

.collection__hero--toggle.toggleActive .image__default {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.collection__hero--toggle.toggleActive .image__reveal.isLoading.loaded {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.collection__hero--toggle .m-block--hero-image.ratio-container::after {
  padding-bottom: 127.14%;
}

@media (min-width: 595px) {
  .collection__hero--toggle .m-block--hero-image.ratio-container::after {
    padding-bottom: 49.166%;
  }
}

.collection__hero--toggle .image__reveal.isLoading.loaded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.collection__hero--toggle .toggle__wrap {
  position: relative;
  float: none;
  margin: 0 auto;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .collection__hero--toggle .toggle__wrap {
    margin-top: -20px;
  }
}

.collection__hero--toggle .toggle__wrap .toggle__list {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 595px) {
  .collection__hero--toggle .toggle__wrap .toggle__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
}

.collection__hero--toggle .toggle__list::before,
.collection__hero--toggle .toggle__list::after {
  content: '';
  display: block;
  clear: both;
}

.collection__hero--toggle .toggle__list .toggle {
  text-align: center;
  border-radius: 5px 0 0 5px;
  height: 40px;
  line-height: 36px;
  background: transparent;
  color: #FFF;
  border: 1px solid #D3D0CD;
  overflow: hidden;
  float: left;
  width: 50%;
  max-width: 380px;
  transition: color background 0.6s ease-in-out;
}

@media (min-width: 595px) {
  .collection__hero--toggle .toggle__list .toggle {
    max-width: 140px;
  }
}

.collection__hero--toggle .toggle__list .toggle.active {
  background: #FFF;
  color: #0363F7;
}

.collection__hero--toggle .toggle__list .toggle.active a {
  color: #0363F7;
}

.collection__hero--toggle .toggle__list .toggle:nth-of-type(2) {
  margin-left: -1px;
  border-radius: 0 5px 5px 0;
}

.collection__hero--toggle .toggle__list .toggle a {
  display: inline-block;
  line-height: 40px;
  color: #FFF;
}

.collection__hero--toggle .a-text-btn {
  margin-top: 20px;
  vertical-align: text-bottom;
}

.collection__hero--toggle .a-text-btn:first-of-type {
  margin-right: 20px;
}

.collection__hero--toggle .a-text-btn--primary {
  top: 1px;
}

.collection__hero--gallery {
  overflow: hidden;
  padding-bottom: 0 !important;
}

.collection__hero--gallery .background--half-height__module {
  position: relative;
}

.collection__hero--gallery .background--half-height__module .background {
  position: absolute;
  bottom: 0;
  left: -60px;
  width: calc(100% + 120px);
  height: 72%;
  z-index: 100;
}

@media (min-width: 768px) {
  .collection__hero--gallery .background--half-height__module .background {
    height: 50%;
  }
}

.collection__hero--gallery .image__gallery {
  z-index: 200;
  margin: 0;
}

@media (min-width: 768px) {
  .collection__hero--gallery .image__gallery {
    margin: 60px -60px 0;
  }
}

.collection__hero--gallery .image__gallery .slick-dots li.slick-active button::before {
  color: #0363F7;
}

.collection__hero--gallery .image__gallery .slick-dots li button::before {
  opacity: 1;
  color: #D3D0CD;
}

.collection__hero--gallery .image__gallery .icon-arrow-circle {
  fill: transparent;
  stroke: #FFF;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.collection__hero--gallery .image__gallery .prev,
.collection__hero--gallery .image__gallery .next {
  position: absolute;
  top: calc(50% - 40px);
  display: block;
  z-index: 10000;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .prev {
  left: 25px;
}

.collection__hero--gallery .image__gallery .next {
  right: 25px;
}

.collection__hero--gallery .image__gallery .next .icon {
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}

.collection__hero--gallery .image__gallery .slick-list {
  overflow: initial;
}

.collection__hero--gallery .image__gallery .slide {
  width: auto;
  padding: 0 10px;
  position: relative;
}

@media (min-width: 768px) {
  .collection__hero--gallery .image__gallery .slide {
    padding: 0 30px;
    width: 700px;
  }
}

@media (min-width: 1080px) {
  .collection__hero--gallery .image__gallery .slide {
    width: auto;
    max-width: 900px;
  }
}

.collection__hero--gallery .image__gallery .slide:not(.slick-center) .img__wrap {
  position: relative;
  cursor: pointer;
}

.collection__hero--gallery .image__gallery .slide:not(.slick-center) .img__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0E0E0E;
  opacity: .5;
  transition: opacity 0.6s ease-in-out;
}

.collection__hero--gallery .image__gallery .slide.slick-active .img__wrap {
  position: relative;
  cursor: pointer;
}

.collection__hero--gallery .image__gallery .slide.slick-active .img__wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0E0E0E;
  transition: opacity 0.6s ease-in-out;
}

.collection__hero--gallery .image__gallery .slide.slick-active.slick-current .image__caption,
.collection__hero--gallery .image__gallery .slide.slick-active.slick-current .image__credit,
.collection__hero--gallery .image__gallery .slide.slick-active.slick-current .a-text-btn,
.collection__hero--gallery .image__gallery .slide.slick-active.slick-current .icon-long-arrow {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .slide.slick-active.slick-current .img__wrap::before {
  display: none;
}

.collection__hero--gallery .image__gallery .slide.slick-current .prev,
.collection__hero--gallery .image__gallery .slide.slick-current .next {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .slide .gallery__image {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .collection__hero--gallery .image__gallery .slide .gallery__image {
    margin: initial;
    max-height: 542px;
    height: auto;
  }
}

.collection__hero--gallery .image__gallery .slide .img__wrap {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .slide.slick-center {
  transform: scale(1.08);
  transition: transform 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .image__credit {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .image__caption {
  color: #0E0E0E;
  margin-top: 30px;
  margin-bottom: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .image__gallery .a-text-btn,
.collection__hero--gallery .image__gallery .icon-long-arrow,
.collection__hero--gallery .image__gallery .a-text-btn,
.collection__hero--gallery .image__gallery + .icon-long-arrow {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.collection__hero--gallery .m-block--hero-image {
  margin-bottom: 60px;
}

@media (min-width: 595px) {
  .collection__hero--gallery .m-block--hero-image {
    margin-bottom: 80px;
  }
}

@media (min-width: 1080px) {
  .collection__hero--gallery .m-block--hero-image {
    margin-bottom: 120px;
  }
}

.collection__hero--gallery .a-text-btn {
  margin-top: 20px;
  vertical-align: text-bottom;
}

.collection__hero--gallery .a-text-btn:first-of-type {
  margin-right: 20px;
}

.collection__hero--gallery .a-text-btn--primary {
  top: 1px;
}

.collection__hero--gallery.white .label--underline::after {
  background-color: #FFF;
}

#gallery-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0E0E0E;
  z-index: 200;
}

#gallery-overlay .overlay--top {
  max-width: 90vw;
  margin: 20px auto;
  position: relative;
}

#gallery-overlay .overlay--top .x-small {
  display: inline-block;
  color: #FFF;
  font-style: italic;
}

#gallery-overlay .overlay--top .close {
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
}

#gallery-overlay .image__gallery {
  max-width: 90vw;
  margin: 0 auto;
}

#gallery-overlay .image__gallery .image__caption,
#gallery-overlay .image__gallery .image__credit {
  color: #FFF;
}

#gallery-overlay .image__gallery .image__caption {
  margin: 20px 0;
}

#gallery-overlay .image__gallery .slick-dots li.slick-active button::before {
  color: #0363F7;
}

#gallery-overlay .image__gallery .slick-dots li button::before {
  opacity: 1;
  color: #D3D0CD;
}

#gallery-overlay.active {
  display: block;
}

@media (min-width: 768px) {
  #gallery-overlay.active {
    display: none;
  }
}

.m-block--hero * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.m-block--hero--promo {
  height: auto;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.m-block--hero--promo::after {
  display: block;
  content: '';
  box-shadow: 0 2px 20px 0 #D3D0CD;
  height: 20px;
  margin: 0 auto;
  opacity: 1;
  position: relative;
  top: -25px;
  width: 75%;
}

@media (min-width: 595px) {
  .m-block--hero--promo {
    height: 90vh;
    min-height: 721px;
    padding: 0 40px;
    position: relative;
    width: 100%;
  }

  .m-block--hero--promo::after {
    display: none;
    margin: 0;
  }
}

.m-block--hero--promo.hero--recommended-products {
  height: auto;
  min-height: 300px;
  /* removes the dropshadow that appears on the standard .m-block--hero--promo */
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__img {
  height: 283px;
  max-height: 283px;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .m-block--hero--promo__img {
    max-height: initial;
    height: 244px;
  }
}

.m-block--hero--promo.hero--recommended-products::after {
  display: none;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta {
  max-width: none;
  width: 100%;
  transform: none;
  top: 0;
  left: initial;
  padding: 0;
  position: relative;
  background: transparent;
  /* overrides the margin-top:-61px that positions the standard .m-block--hero--promo__meta */
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta.center {
  margin-top: 0;
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta {
    margin-bottom: 45px;
  }
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn {
  margin-top: 15px;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light {
  color: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light .icon,
.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.light + .icon {
  fill: #FFF;
  stroke: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.black {
  color: #0E0E0E;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.black .icon,
.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn.black + .icon {
  fill: #0E0E0E;
  stroke: #0E0E0E;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta .a-text-btn:first-of-type {
  margin-left: 0;
  margin-right: 15px;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta.label--underline {
  color: #FFF;
}

.m-block--hero--promo.hero--recommended-products .m-block--hero--promo__meta.light {
  color: #FFF;
}

.m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
  position: absolute;
  margin-bottom: 0;
  height: 235px;
  /* 283px - 48px (position top) */
  top: 48px;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
    height: 134px;
    /* 244px - 35px (position top) - 30px (margin-bottom) - 45px (margin-top of products) */
    position: relative;
    top: 35px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta {
    height: 139px;
    /* 244px - 35px (position top) - 70px (margin-bottom) */
    position: relative;
    margin-bottom: 70px;
    top: 35px;
  }
}

.m-block--hero--promo.hero--recommended-products picture ~ .m-block--hero--promo__meta .m-block--hero--promo__superheader {
  margin-top: 15px;
}

.m-block--hero--promo.hero--recommended-products picture ~ .grid__items {
  margin-top: -70px;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .grid__items {
    margin-top: 45px;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products picture ~ .grid__items {
    margin-top: 0;
  }
}

.m-block--hero--promo.hero--recommended-products .grid__items {
  position: relative;
  display: block;
  z-index: 400;
}

.m-block--hero--promo.hero--recommended-products .grid__items::before,
.m-block--hero--promo.hero--recommended-products .grid__items::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 595px) {
  .m-block--hero--promo.hero--recommended-products .grid__items {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo.hero--recommended-products .grid__items {
    margin-top: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (min-width: 1080px) {
  .m-block--hero--promo {
    padding: 0 60px;
  }
}

.m-block--hero--promo__img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 595px) {
  .m-block--hero--promo__img {
    position: absolute;
  }
}

.m-block--hero--promo__meta {
  background: #FFF;
  margin: 0 auto;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  width: calc(100% - 40px);
  z-index: 300;
  margin-top: -61px;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta {
    background: none;
    left: initial;
    margin: 0;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
    width: calc(100% * (5 / 12));
  }
}

@media (max-width: 767px) {
  .m-block--hero--promo__meta {
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .m-block--hero--promo__meta {
    width: calc(100% * (5 / 12));
  }
}

.m-block--hero--promo__meta .product--meta__badge {
  top: 0;
  margin-bottom: 15px;
}

.m-block--hero--promo__meta h1 {
  margin: 14px 0 10px;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta h1 {
    margin: 9px 0 0;
  }
}

.m-block--hero--promo__meta .o-block--text-module__copy {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 23px;
}

@media (min-width: 768px) {
  .m-block--hero--promo__meta .o-block--text-module__copy {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  .m-block--hero--promo__meta .o-block--text-module__copy {
    font-size: 20px;
    line-height: 27px;
  }
}

.m-block--hero--promo__meta p {
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta p {
    margin: 15px 0 0;
  }
}

.m-block--hero--promo__meta a .a-btn {
  display: block;
  margin: 10px auto;
  max-width: 309px;
  vertical-align: top;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta a .a-btn {
    margin: 25px 0 0;
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo__meta a .a-btn {
    display: inline-block;
    margin: 25px 0 0 15px;
    width: calc(50% - 15px);
  }
}

.m-block--hero--promo__meta a:first-of-type .a-btn {
  margin: 16px auto 0;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta a:first-of-type .a-btn {
    margin: 25px 0 0;
  }
}

.m-block--hero--promo__meta .a-btn--primary--background {
  background: #0363F7;
  border: 2px solid #0363F7;
  color: #FFF;
}

.m-block--hero--promo__meta .a-btn--primary--background:hover,
.m-block--hero--promo__meta .a-btn--primary--background:focus {
  background: #002855;
  border: 2px solid #002855;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta .a-btn--primary--background {
    background: #FFF;
    border: 2px solid #FFF;
    color: #0363F7;
    cursor: pointer;
  }

  .m-block--hero--promo__meta .a-btn--primary--background:hover,
  .m-block--hero--promo__meta .a-btn--primary--background:focus {
    border: 2px solid #002855;
    color: #FFF;
  }
}

.m-block--hero--promo__meta .a-btn--secondary--background {
  background: transparent;
  border: 2px solid #0363F7;
  color: #0363F7;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta .a-btn--secondary--background {
    border: 2px solid #FFF;
    color: #FFF;
  }
}

.m-block--hero--promo__meta .a-btn--secondary--background:hover {
  background: #002855;
  border: 2px solid #002855;
}

.m-block--hero--promo__meta.light {
  color: #0E0E0E;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.light {
    color: #FFF;
  }
}

.m-block--hero--promo__meta.light .label--underline {
  display: inline-block;
  width: auto;
}

.m-block--hero--promo__meta.light .label--underline::after {
  background: #FFF;
  left: 50%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.light .label--underline::after {
    left: 15px;
  }
}

.m-block--hero--promo__meta.black {
  color: #0E0E0E;
}

.m-block--hero--promo__meta.black .label--bold {
  color: #0E0E0E;
}

.m-block--hero--promo__meta.black h1 {
  color: #0E0E0E;
}

.m-block--hero--promo__meta.black .label--underline {
  display: inline-block;
  width: auto;
}

.m-block--hero--promo__meta.black .label--underline::after {
  background: #0E0E0E;
}

.m-block--hero--promo__meta.center .label--underline::after {
  left: 50%;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center p {
    margin: 15px auto 0;
  }
}

.m-block--hero--promo__meta.center p.m-block--hero--promo__superheader {
  margin-top: 0;
}

.m-block--hero--promo__meta.center .product--meta__badge {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center {
    background: none;
    display: inline-block;
    left: 50%;
    margin: 0 auto;
    max-width: 540px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% * (4 / 6));
  }
}

@media (min-width: 768px) {
  .m-block--hero--promo__meta.center {
    width: calc(100% * (6 / 12));
  }
}

.m-block--hero--promo__meta.center .a-btn:first-of-type {
  margin: 16px auto 0;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center .a-btn:first-of-type {
    margin: 25px 0 0;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.center .a-btn {
    display: inline-block;
    margin: 25px 0 0 15px;
    width: calc(50% - 15px);
  }
}

.m-block--hero--promo__meta.left {
  float: none;
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.left .label--underline::after {
    left: 0;
    transform: none;
  }
}

.m-block--hero--promo__meta.left .product--meta__badge {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.left .product--meta__badge {
    left: initial;
    transform: none;
  }
}

.m-block--hero--promo__meta.right .product--meta__badge {
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.right .product--meta__badge {
    left: initial;
    transform: none;
  }
}

@media (min-width: 768px) {
  .m-block--hero--promo__meta.right .label--underline::after {
    left: 0;
    transform: none;
  }
}

@media (min-width: 595px) {
  .m-block--hero--promo__meta.right {
    background: none;
    left: initial;
    position: absolute;
    right: 40px;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
    width: calc(100% * (5 / 12));
  }
}

@media (min-width: 768px) {
  .m-block--hero--promo__meta.right {
    width: calc(100% * (5 / 12));
  }
}

@media (min-width: 975px) {
  .m-block--hero--promo__meta.right {
    right: 60px;
  }
}

.m-block--hero--promo .m-block--hero--promo__overlay {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
}

@media (min-width: 595px) {
  .m-block--hero--promo .m-block--hero--promo__overlay {
    display: block;
  }
}

.m-block--hero--promo .m-block--hero--promo__overlay--left + picture .m-block--hero--promo__img {
  object-position: left;
}

.m-block--hero--promo .m-block--hero--promo__overlay--center + picture .m-block--hero--promo__img {
  object-position: center;
}

.m-block--hero--promo .m-block--hero--promo__overlay--right + picture .m-block--hero--promo__img {
  object-position: right;
}

.m-block--hero--promo .gradient--left {
  /* this is still tied to focal point I need to change this to something else*/
  background-image: linear-gradient(to left, rgba(0, 14, 30, 0), rgba(0, 14, 30, 0.6));
}

.m-block--hero--promo .gradient--center {
  background: rgba(0, 14, 30, 0.6);
}

.m-block--hero--promo .gradient--right {
  background-image: linear-gradient(to right, rgba(0, 14, 30, 0), rgba(0, 14, 30, 0.6));
}

.image-reveal__module .product__meta {
  text-align: center;
  float: none;
  position: relative;
  margin: 23px auto 0;
}

.image-reveal__module .product__meta .product__name,
.image-reveal__module .product__meta .price {
  display: inline-block;
}

.image-reveal__module .product__meta .price {
  margin-left: 4px;
}

.image-reveal__module .product__meta .experience {
  font-style: italic;
  position: relative;
  margin-top: 25px;
}

.image-reveal__module .product__meta .experience::before {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  width: 100%;
  max-width: 195px;
  margin: 0 auto;
  left: 0;
  right: 0;
  height: 2px;
  background: #787673;
}

.image__slider-reveal {
  float: none;
  position: relative;
  margin: 0 auto;
}

.image__slider-reveal .image--reveal {
  max-width: none;
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
}

.cd-handle {
  position: absolute;
  top: -8px;
  bottom: 0;
  height: calc(100% + 15px);
  width: 1px;
  background: #FFF;
  left: 50%;
}

.cd-handle .icon-circle-drag {
  width: 45px;
  height: 45px;
  position: absolute;
  top: calc(50% - 22.5px);
  margin-left: -22.5px;
  cursor: ew-resize;
}

/*------------------------------------*
    #TABLES
\*------------------------------------*/

.m-table,
.m-table--striped {
  margin-bottom: 1.25rem;
  border-collapse: collapse;
  border: #D8D8D8 solid 1.2px;
  box-shadow: 0 0 3px #F2F2F2;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: .9375rem;
}

.m-table--striped {
  width: 100%;
  min-width: 17.5rem;
  max-width: 28.4375rem;
}

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

.m-table__heading,
.m-table__heading--spanned,
.m-table__heading--striped {
  column-span: all;
  border: #D3D0CD solid 1.2px;
  padding: .9375rem;
  background-color: #D8D8D8;
  text-transform: uppercase;
}

.m-table__heading--spanned {
  background-color: #FFF;
  vertical-align: middle;
  text-align: center;
  border-right: #D8D8D8 solid 1.2px;
}

.m-table__heading--striped {
  border: 0;
}

.m-table_body--striped:nth-child(even) {
  background: #F2F2F2;
}

.m-table__info,
.m-table__info--striped {
  border-top: #D8D8D8 solid 1.2px;
  padding: .9375rem;
  word-wrap: break-word;
  vertical-align: top;
}

.m-table__info:first-child,
.m-table__info--striped:first-child {
  text-align: left;
}

.m-table__info:last-child,
.m-table__info--striped:last-child {
  text-align: right;
}

.m-table__info--striped:last-child {
  text-align: left;
}

.consent-form-item {
  padding: 20px 0;
}

.consent-form-item__title,
.consent-form-item__text {
  margin-bottom: 20px;
}

.consent-form-item .site-checkbox__wrapper {
  float: none;
}

.product-line-item {
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #D3D0CD;
  padding: 20px 0;
  width: 100%;
}

.product-line-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-line-item:last-child {
  padding-bottom: 0;
}

.product-line-item__image {
  margin-right: 10px;
  width: 105px;
}

.product-line-item__details {
  display: block;
  position: relative;
  min-width: 135px;
  width: calc(100% - 115px);
}

@media (min-width: 595px) {
  .product-line-item__details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}

.product-line-item__attributes {
  margin: 0;
  word-break: break-word;
  width: 100%;
  -ms-flex: 2;
      flex: 2;
}

.product-line-item__attributes dt {
  float: left;
  clear: left;
  margin-right: 5px;
  font-weight: normal;
}

.product-line-item__header {
  text-transform: uppercase;
  color: #787673;
}

.product-line-item__quantity {
  width: 115px;
  padding-bottom: 10px;
}

.product-line-item__quantity.quantity-form {
  margin-bottom: 0;
}

.product-line-item__quantity .m-dropdown-links .a-text-plain {
  margin-bottom: 0;
}

.product-line-item__quantity .m-dropdown-links .m-formfield {
  padding-top: 0;
}

.product-line-item__remove {
  margin-top: 4px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.product-line-item__message {
  margin-top: 5px;
}

.product-line-item .pricing {
  text-align: right;
  max-width: none;
  -ms-flex: 1 1 1px;
      flex: 1 1 1px;
  float: right;
}

.product-line-item .pricing__sale,
.product-line-item .pricing__base {
  display: block;
}

.product-line-item--editable .product-line-item__details {
  -ms-flex-pack: justify;
      justify-content: space-between;
  display: block;
}

@media (min-width: 975px) {
  .product-line-item--editable .product-line-item__details {
    display: -ms-flexbox;
    display: flex;
  }
}

.product-line-item--editable .product-line-item__attributes {
  width: auto;
  margin-bottom: 10px;
}

.product-line-item--editable .pricing {
  text-align: right;
  clear: both;
  float: none;
}

@media (min-width: 1080px) {
  .product-line-item--editable .pricing {
    clear: none;
  }
}

.itemized-pricing__body {
  width: 100%;
  border-collapse: collapse;
}

.itemized-pricing__title {
  margin-bottom: 20px;
}

.itemized-pricing__itemization {
  height: 30px;
}

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

.itemized-pricing__itemization--discount {
  color: #DF001A;
}

.itemized-pricing__itemization--total {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

.itemized-pricing__itemization--total > * {
  border-top: 1px solid #D3D0CD;
  padding-top: 5px;
}

.itemized-pricing__itemization .question-mark {
  margin-left: 2px;
}

.promo-message {
  background-color: #F2F2F2;
  padding-bottom: 20px;
  text-align: center;
}

.promo-message__image {
  width: 100%;
  display: block;
}

.promo-message__title,
.promo-message__text {
  margin-left: 20px;
  margin-right: 20px;
  max-width: 100%;
}

.promo-message__title {
  padding-top: 20px;
}

.promo-message__text {
  padding-top: 20px;
}

.promo-message__title ~ .promo-message__text {
  padding-top: 0;
}

@media (min-width: 768px) {
  .cta-group {
    display: -ms-flexbox;
    display: flex;
  }

  .cta-group.cta-group--reverse-desktop {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .cta-group.cta-group--reverse-desktop .cta-group__action {
    margin-right: 15px;
  }

  .cta-group.cta-group--reverse-desktop .cta-group__action:first-child {
    margin-right: 0;
  }

  .cta-group.cta-group--reverse-desktop .cta-group__action:last-child {
    margin-right: 15px;
  }
}

.cta-group.cta-group--small {
  display: -ms-flexbox;
  display: flex;
}

.cta-group.cta-group--small .a-btn {
  width: calc((100vw - 70px) * (1/2) * .9);
  height: auto;
  min-height: 44px;
  padding: 12px;
  font-size: 14px;
}

@media (min-width: 595px) {
  .cta-group.cta-group--small .a-btn {
    width: calc((100vw - 180px) * (2/6));
  }
}

@media (min-width: 768px) {
  .cta-group.cta-group--small .a-btn {
    width: calc((100vw - 180px) * (2/12) * 1.3);
    padding: 14px;
    font-size: 15px;
  }
}

.cta-group.cta-group--small .cta-group__action {
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin: 0;
}

.cta-group.cta-group--small .cta-group__action:first-of-type {
  margin-right: 10px;
}

.cta-group__action {
  display: block;
  margin: 10px auto;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-group__action {
    margin: 0 15px 0 0;
  }

  .cta-group__action:last-child {
    margin-right: 0;
  }
}

.cta-group__action:last-child {
  margin-bottom: 0;
}

/*------------------------------------*
    #CARD
\*------------------------------------*/

.m-card {
  display: block;
  position: relative;
  background-color: #FFF;
  box-shadow: 0 0 3px 0 #D3D0CD;
}

.m-card__header {
  padding: 15px 20px;
  border-bottom: 1px solid #D3D0CD;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 2;
      flex-shrink: 2;
}

@media (min-width: 1080px) {
  .m-card__header {
    padding: 20px 30px;
  }
}

.m-card__header__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}

.m-card__header__title--complete::before {
  -ms-flex: none;
      flex: none;
  content: '';
  background: url("images/icons/checkout-complete.svg") no-repeat;
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
  display: block;
  float: left;
  margin-top: 3px;
  margin-right: 13px;
}

@media (min-width: 768px) {
  .m-card__header__title--complete::before {
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
  }
}

@media (min-width: 1080px) {
  .m-card__header__title--complete::before {
    background-size: 29px 29px;
    height: 29px;
    width: 29px;
  }
}

.m-card__header__link {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: 20px;
  -ms-flex: none;
      flex: none;
  text-align: right;
}

@media (min-width: 975px) {
  .m-card__header__link {
    -ms-flex: 1;
        flex: 1;
  }
}

.m-card__body p {
  max-width: none;
}

.m-card__body__section {
  padding: 20px;
  border-top: 1px solid #D3D0CD;
}

@media (min-width: 1080px) {
  .m-card__body__section {
    padding: 20px 30px;
  }
}

.m-card__body__section:first-of-type {
  border-top: 0;
}

.m-card--collapsed {
  background-color: rgba(255, 255, 255, 0.7);
}

.m-card--collapsed .m-card__header {
  color: #787673;
}

.m-card--collapsed .m-card__body {
  display: none;
}

.m-needhelp {
  text-align: center;
  width: 100%;
}

.m-needhelp__title,
.m-needhelp__content,
.m-needhelp__callout {
  margin-bottom: 20px;
}

.m-needhelp__callout__priority {
  color: #DF001A;
  margin-bottom: 20px;
}

.m-needhelp__subheader {
  margin-bottom: 10px;
}

.m-needhelp p {
  max-width: none;
}

.m-needhelp hr.dark {
  width: 32px;
  height: 2px;
  margin: 20px auto;
}

.m-ccard-number .visa,
.m-ccard-number .Visa,
.m-payment-option .visa,
.m-payment-option .Visa {
  background: url("images/icons/visa.svg") no-repeat;
}

.m-ccard-number .mastercard,
.m-ccard-number .Master,
.m-payment-option .mastercard,
.m-payment-option .Master {
  background: url("images/icons/mastercard.svg") no-repeat;
}

.m-ccard-number .discover,
.m-ccard-number .Discover,
.m-payment-option .discover,
.m-payment-option .Discover {
  background: url("images/icons/discover.svg") no-repeat;
}

.m-ccard-number .amex,
.m-ccard-number .Amex,
.m-payment-option .amex,
.m-payment-option .Amex {
  background: url("images/icons/amex.svg") no-repeat;
}

.m-stored-payments__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.m-stored-payments .m-payment-option {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-bottom: 20px;
  border-top: 1px solid #D3D0CD;
}

@media (min-width: 975px) {
  .m-stored-payments .m-payment-option {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    border: 0;
  }
}

.m-stored-payments .m-payment-option .site-radio__wrapper {
  margin-top: 20px;
}

@media (min-width: 975px) {
  .m-stored-payments .m-payment-option .site-radio__wrapper {
    border: 0;
  }
}

.m-payment-option .e-input__radio {
  margin-top: 0;
}

.m-payment-option .visa,
.m-payment-option .Visa,
.m-payment-option .mastercard,
.m-payment-option .Master,
.m-payment-option .discover,
.m-payment-option .Discover,
.m-payment-option .amex,
.m-payment-option .Amex {
  background-size: 63px 40px;
}

.m-payment-option__content {
  margin-left: 75px;
}

.m-payment-option__content__detail {
  display: block;
}

.m-payment-option__content__cvv {
  margin-left: 100px;
}

.m-payment-option__content__cvv .m-formfield {
  float: left;
  width: 143px;
}

.m-payment-option__content__cvv .question-mark {
  float: left;
  margin-top: 50px;
  margin-left: 8px;
}

.m-ccard-number .visa,
.m-ccard-number .Visa,
.m-ccard-number .mastercard,
.m-ccard-number .Master,
.m-ccard-number .discover,
.m-ccard-number .Discover,
.m-ccard-number .amex,
.m-ccard-number .Amex {
  background-size: 53px 34px;
  background-position: right 3px center;
  padding-right: 75px;
}

.m-ccard__expiration-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.m-ccard__expiration-date__month {
  margin-right: 10px;
}

.m-ccard__cvv {
  clear: both;
}

.m-ccard__cvv .m-formfield {
  float: left;
  width: 143px;
}

.m-ccard__cvv__tooltip {
  float: left;
  margin-top: 50px;
  margin-left: 8px;
}

.m-ccard__link {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #D3D0CD;
}

.m-checkout-cta {
  display: block;
}

@media (min-width: 595px) {
  .m-checkout-cta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.m-checkout-cta .a-btn:first-child {
  width: 100%;
}

.m-checkout-cta .a-btn:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.m-checkout-cta.m-sticky-mobile-button .a-btn {
  max-width: none;
}

.m-checkout-cta__payments {
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  width: 100%;
}

.m-checkout-cta__payments .a-btn {
  margin-right: 10px;
}

.m-checkout-cta__payments .a-btn:last-child {
  margin-right: 0;
}

.m-checkout-header__top {
  width: 100%;
  padding: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media (min-width: 1080px) {
  .m-checkout-header__top {
    padding: 30px 0;
  }
}

@media (min-width: 1080px) {
  .m-checkout-header .m-card__body__section {
    padding: 20px 0;
  }
}

.m-checkout-header--extended .m-checkout-header__body__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.m-checkout-header__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid #D3D0CD;
}

.m-checkout-header__body__text {
  margin-top: 0;
}

.m-checkout-header__body .alert {
  border: 0;
  background: none;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.m-checkout-header__promo {
  margin-top: 20px;
}

.m-checkout-header__promo .alert {
  padding-top: 20px;
  margin-bottom: 0;
}

.m-guestcheckout-card {
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .m-guestcheckout-card {
    margin-bottom: 30px;
  }
}

.m-shipping-method-list .m-form__subtitle {
  margin-bottom: 20px;
}

.m-shipping-method-list .m-shipping-method-option {
  border-top: 1px solid #D3D0CD;
}

.m-shipping-method-list .m-shipping-method-option .e-input__radio {
  margin-top: 28px;
}

.m-shipping-method-list .m-shipping-method-option .radio-label {
  padding: 20px 0;
}

.m-shipping-method-summary {
  position: relative;
}

.m-shipping-method-summary .pricing {
  position: absolute;
  right: 0;
}

.m-checkout-details {
  display: block;
}

@media (min-width: 768px) {
  .m-checkout-details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    max-height: 450px;
  }
}

@media (min-width: 975px) {
  .m-checkout-details--short {
    -ms-flex-direction: row;
        flex-direction: row;
    max-height: none;
  }
}

.m-checkout-details__item {
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .m-checkout-details__item {
    width: 50%;
    max-width: 350px;
  }
}

.m-checkout-details__title {
  margin-bottom: 10px;
}

/*------------------------------------*
  #GIFT WITH PURCHASE/BONUS ITEMS
\*------------------------------------*/

.select-bonus {
  font-weight: bold;
  color: #0363F7;
}

.bonus-discount-container .select-bonus-btn {
  margin: 10px 0;
  font-weight: bold;
}

.bonus-product-list .bonus-option-number {
  display: block;
  text-align: center;
  font-weight: bold;
  margin: 25px 0 0;
  clear: both;
}

.bonus-product-list .add-to-cart-bonus {
  display: none;
}

.bonus-product-list .variant-dropdown {
  width: 100%;
}

.bonus-product-list .product-add-to-cart button {
  float: left;
  margin-top: 10px;
  font-weight: bold;
}

.bonus-product-list .bonus-items-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bonus-product-list .bonus-items-container .bonus-product-item {
  width: 450px;
  margin: 0 auto;
}

.no-bonus-btn {
  display: block;
  width: 250px;
  margin: 10px auto;
  cursor: pointer;
  color: #0363F7;
  text-align: center;
}

.bonus-header {
  display: block;
  text-align: center;
}

.bonus-header .medium {
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  font-size: 22px;
  line-height: 25px;
}

@media (min-width: 768px) {
  .bonus-header .medium {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (min-width: 1080px) {
  .bonus-header .medium {
    font-size: 30px;
    line-height: 35px;
  }
}

.bonus-header p {
  max-width: none;
}

.bonus-header .medium {
  display: block;
  margin-bottom: 15px;
}

.bonus-item-details .promo-name {
  font-weight: bold;
}

.mobile .ui-widget-overlay {
  height: auto;
}

.mobile .quickview #bonus-product-list {
  margin-top: 15px;
}

.mobile .quickview .ui-dialog-titlebar {
  position: fixed;
  z-index: 999;
  width: calc(100% - 2px);
  max-width: 750px;
  height: 35px;
  margin-top: -1px;
  background-color: #FFF;
  padding: 0;
}

.mobile .quickview .ui-dialog-titlebar .ui-dialog-titlebar-close {
  right: 15px;
}

@media (min-width: 320px) and (max-width: 595px) {
  .mobile .quickview .bonus-content {
    padding: 150px 0;
  }
}

.mobile .quickview .bonus-content {
  height: 500px;
}

.mobile .bonus-product-item {
  width: 100%;
  float: none;
}

/*------------------------------------*
  #ADDITIONS FOR SFRA GWP
\*------------------------------------*/

.ui-dialog-content.choose-bonus-product-dialog {
  padding: 0;
  margin: 0;
  overflow: visible;
  height: 100%;
}

.gwp-dialog {
  height: 100%;
  position: fixed;
  z-index: 9999;
}

@media (min-width: 768px) {
  .gwp-dialog {
    height: 80%;
  }
}

.gwp-close-icon {
  position: absolute;
  top: -18px;
  right: 36px;
  cursor: pointer;
}

.gwp-modal-header {
  padding: 0 30px;
  border-bottom: 1px solid #D3D0CD;
}

.gwp-modal-content {
  padding: 0 30px;
}

.gwp-modal-content .gwp-selected {
  border: solid 1px #D3D0CD;
  padding: 15px;
  margin-bottom: 20px;
}

.gwp-modal-content .gwp-selected a {
  color: #0363F7;
}

.gwp-modal-content .gwp-selected .gwp-selected-icon {
  float: left;
  display: block;
  margin-right: 10px;
}

.gwp-modal-content .gwp-selected-text {
  float: left;
  display: block;
  margin-top: 2px;
}

.gwp-modal-footer {
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
  padding: 15px 0;
  background: #FFF;
  box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2);
}

.gwp-modal {
  margin-top: 25px;
  padding-bottom: 106px;
  height: 65%;
  overflow-y: scroll;
}

.gwp-modal .gwp-modal-header p {
  padding: 0 0 10px;
}

.gwp-modal .a-btn {
  padding: 0;
  font-family: "Proxima Extra Bold", "Helvetica", "Arial", sans-serif;
  background: #0363F7;
  color: #FFF;
}

.gwp-modal .a-btn.disabled {
  background: #787673;
  cursor: default;
}

.gwp-modal .a-btn.gwp-select {
  border: solid 2px #0363F7;
  color: #0363F7;
  background: #FFF;
}

.gwp-modal .a-btn.gwp-select.disabled {
  background: #FFF;
  border: solid 2px #787673;
  color: #787673;
}

.gwp-modal .attributes .row {
  margin-top: 20px;
}

.gwp-modal .attributes .row:last-of-type {
  margin-bottom: 20px;
}

.gwp-modal section.select-button {
  clear: both;
  padding-top: 20px;
}

.gwp-modal .gwp-product-swatch {
  width: 60px;
  margin-right: 10px;
  padding: 1px;
  cursor: pointer;
}

.gwp-modal .gwp-product-swatch.selected {
  padding: 0;
  border: solid 1px #0E0E0E;
}

.gwp-modal .carousel-item:not(.active) {
  display: none;
}

.gwp-modal .gwp-inner-left {
  padding-right: 15px;
}

.gwp-modal .gwp-inner-right {
  padding-left: 15px;
}

.gwp-modal .gwp-item {
  padding: 25px 0 35px;
}

.gwp-modal .gwp-item:not(:last-of-type) {
  border-bottom: 1px solid #D3D0CD;
}

.gwp-modal .cf {
  clear: both;
}

.gwp-modal .gwp-mobile {
  display: none;
}

.gwp-modal .custom-select {
  width: 213px;
}

@media (min-width: 768px) {
  .gwp-modal {
    width: 688px;
  }
}

@media (min-width: 1440px) {
  .gwp-modal {
    width: 930px;
  }
}

@media (max-width: 767px) {
  .gwp-modal .gwp-carousel,
  .gwp-modal .gwp-selection,
  .gwp-modal .quantity-selector,
  .gwp-modal .a-btn {
    max-width: 100%;
  }

  .gwp-modal .custom-select {
    width: 100%;
  }

  .gwp-modal .gwp-inner-right,
  .gwp-modal .gwp-inner-left {
    padding: 0;
  }

  .gwp-modal .gwp-modal-footer {
    width: calc(100% - 60px);
    padding: 15px 30px;
  }

  .gwp-modal .gwp-mobile.product-info {
    display: block;
    margin-bottom: 20px;
  }

  .gwp-modal .gwp-selection section.product-info {
    display: none;
  }
}

/*------------------------------------*
    #PRODUCT SUMMARY
\*------------------------------------*/

.m-product-summary {
  background-color: #FFF;
  border-top: 1px solid #D3D0CD;
  border-bottom: 1px solid #D3D0CD;
}

.m-product-summary__header {
  padding: 20px 15px;
  border-bottom: 1px solid #D3D0CD;
}

@media (min-width: 1080px) {
  .m-product-summary__header {
    padding: 20px 30px;
  }
}

.m-product-summary__header__total {
  float: right;
}

.m-product-summary__body {
  padding: 20px 15px;
}

@media (min-width: 1080px) {
  .m-product-summary__body {
    padding: 20px 30px;
  }
}

.m-product-summary__message {
  padding: 20px 0;
  max-width: none;
}

.m-product-summary__message:first-child {
  padding-top: 0;
}

.m-product-summary__message:last-child {
  border-top: 1px solid #D3D0CD;
  padding-bottom: 0;
}

.m-product-summary__message__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}

.m-product-summary__message__content::before {
  background: url("images/icons/success.svg") no-repeat;
}

.m-product-summary__message__content::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 23px;
  width: 23px;
  display: block;
  margin-right: 7px;
  position: relative;
  top: -3px;
}

.m-product-summary__message__content p {
  max-width: none;
}

.m-product-summary__message__content p {
  max-width: none;
}

.m-product-summary__message__link {
  display: block;
  margin-top: 3px;
}

.m-product-summary__message__details {
  margin-left: 5px;
}

.m-payment-message {
  border: 1px solid #D3D0CD;
  padding: 20px;
}

.m-payment-message--success:last-child {
  margin-bottom: 20px;
}

.m-payment-message--success .m-payment-message__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}

.m-payment-message--success .m-payment-message__title::before {
  background: url("images/icons/success.svg") no-repeat;
}

.m-payment-message--success .m-payment-message__title::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 23px;
  width: 23px;
  display: block;
  margin-right: 7px;
  position: relative;
  top: -3px;
}

.m-payment-message--success .m-payment-message__title p {
  max-width: none;
}

.m-payment-message--error .m-payment-message__title {
  color: #DF001A;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}

.m-payment-message--error .m-payment-message__title::before {
  background: url("images/icons/error.svg") no-repeat;
}

.m-payment-message--error .m-payment-message__title::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 23px;
  width: 23px;
  display: block;
  margin-right: 7px;
  position: relative;
  top: -3px;
}

.m-payment-message--error .m-payment-message__title p {
  max-width: none;
}

.m-payment-message__text,
.m-payment-message__remove {
  margin-top: 20px;
}

.m-payment-message-list {
  margin: 20px 0;
}

.m-payment-message-list__item {
  cursor: default;
  color: initial;
  margin-bottom: 20px;
}

.m-payment-message-list__item:first-child {
  margin-top: 0;
}

.m-payment-message-list__item:last-child {
  margin-bottom: 0;
}

.m-payment-message-list__item::before {
  content: normal;
}

.m-payment-message-list .m-payment-message {
  background-color: #FFF;
}

.m-gc-form__submit {
  margin-top: 20px;
}

.m-gc-form__submit .a-btn {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 595px) {
  .m-gc-form__submit .a-btn {
    width: auto;
  }
}

.m-gc-form .m-form__subtitle {
  margin-bottom: 0;
}

.m-promo-form {
  border-top: 1px solid #D3D0CD;
}

.m-promo-form label {
  display: block;
}

.m-promo-form .m-formfield .e-text__input {
  float: left;
}

.m-promo-form .a-btn {
  float: left;
}

.m-promo-form .m-textfield-inline {
  width: 100%;
  margin-bottom: 0;
}

.m-promo-form .m-textfield-inline .m-formfield {
  -ms-flex: 2 2 45em;
      flex: 2 2 45em;
}

.m-promo-form .m-textfield-inline .a-btn {
  padding: 0 10px;
}

.m-payment-method-list__item {
  border-top: 1px solid #D3D0CD;
  padding: 20px;
}

.m-payment-method-list__item:last-child {
  border-bottom: 1px solid #D3D0CD;
}

.m-payment-method-list__image {
  margin-right: 20px;
  vertical-align: middle;
  height: 30px;
}

.m-payment-method-list .a-details__summary {
  color: #0363F7;
}

.m-payment-method-list .m-ccard {
  margin-top: -20px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.m-payment-method-summary__title,
.m-payment-method-summary .pricing {
  display: inline-block;
}

.m-payment-method-summary .pricing {
  margin-left: 10px;
}

.m-billing-form__payment {
  padding: 0 0 20px;
  border-top: 0;
}

@media (min-width: 1080px) {
  .m-billing-form__payment .m-payment-method-list__item {
    padding: 20px 30px;
  }
}

.m-billing-form__payment .m-payment-method-list__item .site-checkbox__wrapper {
  margin-top: 20px;
}

.m-billing-form__button {
  padding: 20px 20px 0;
}

@media (min-width: 1080px) {
  .m-billing-form__button {
    padding: 30px 30px 0;
  }
}

.m-ca-form__submit {
  margin-top: 20px;
}

@media (min-width: 975px) {
  .m-ca-form__submit {
    margin-top: 30px;
  }
}

.m-confirmation-banner {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 768px) {
  .m-confirmation-banner {
    text-align: left;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}

.m-confirmation-banner__image,
.m-confirmation-banner__title,
.m-confirmation-banner__text,
.m-confirmation-banner__contact {
  margin-bottom: 20px;
}

@media (min-width: 975px) {
  .m-confirmation-banner__image,
  .m-confirmation-banner__title,
  .m-confirmation-banner__text,
  .m-confirmation-banner__contact {
    margin-bottom: 30px;
  }
}

@media (min-width: 975px) {
  .m-confirmation-banner__image {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .m-confirmation-banner__content {
    margin-left: 100px;
  }
}

.m-confirmation-banner__text,
.m-confirmation-banner__contact,
.m-confirmation-banner__contact-details {
  max-width: none;
}

.m-sticky-mobile-button {
  background-color: #FFF;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px;
  box-shadow: 0 0 16px rgba(50, 50, 50, 0.1);
}

@media (min-width: 595px) {
  .m-sticky-mobile-button {
    position: relative;
    box-shadow: none;
    padding: 0;
    background: none;
  }
}

.m-sticky-mobile-button .a-btn {
  max-width: none;
}

@media (min-width: 595px) {
  .m-sticky-mobile-button .a-btn {
    max-width: 309px;
  }
}

.emailsms {
  margin: 0 20px 60px;
  padding-bottom: 20px;
  box-shadow: 0 0 3px 0 #D3D0CD;
}

.emailsms [aria-hidden='true'] {
  display: none !important;
}

@media (min-width: 595px) {
  .emailsms {
    margin: 0 40px 80px;
  }
}

@media (min-width: 768px) {
  .emailsms {
    max-width: calc((100vw - 120px) * (6 / 12));
    margin: 0 auto 120px;
    padding-bottom: 40px;
  }
}

.emailsms__envelope-icon {
  display: block;
  width: 46px;
  height: 31px;
  margin: 20px auto 0;
  transform: translateY(-50%);
  box-shadow: 0 0 3px 0 #D3D0CD;
}

.emailsms__image-container img {
  display: block;
}

.emailsms__text {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .emailsms__text {
    padding: 0 40px;
  }
}

.emailsms__text--body-copy {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 23px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .emailsms__text--body-copy {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  .emailsms__text--body-copy {
    font-size: 20px;
    line-height: 27px;
  }
}

.emailsms__text h2.medium {
  margin: 20px 0 10px;
}

.emailsms__text h2.medium.no-top-margin {
  margin-top: 0;
}

.emailsms__form-container {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .emailsms__form-container {
    padding: 0 40px;
  }
}

@media (min-width: 1280px) {
  .emailsms__form-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .emailsms__form {
    width: calc(50% - 20px);
  }

  .emailsms__form:only-child {
    width: calc((100vw - 120px) * (4.5 / 12));
  }
}

.emailsms__form .m-formfield {
  font-size: 0;
}

@media (min-width: 595px) {
  .emailsms__form .m-formfield {
    width: calc((100vw - 80px) * (4.5 / 6));
  }
}

@media (min-width: 768px) {
  .emailsms__form .m-formfield {
    width: calc((100vw - 120px) * (4.5 / 12));
  }
}

@media (min-width: 1280px) {
  .emailsms__form .m-formfield {
    width: 100%;
  }
}

.emailsms__form .e-text__input {
  width: calc(100% - 40px);
}

.emailsms__form .e-text__input--error {
  border-color: #DF001A;
}

.emailsms__form .e-text__input--success {
  border-right: 0;
}

.emailsms__form .a-btn--form {
  width: 40px;
  padding: 0;
  font-size: 11px;
  line-height: normal;
  vertical-align: bottom;
}

.emailsms__form .a-btn--success {
  background: #FFF;
  border: 1px solid #D3D0CD;
  border-left: 0;
  color: #0E0E0E;
}

.emailsms__form .icon-checkmark-nocircle {
  width: 24px;
  height: 24px;
}

.emailsms__form .alert--verbose.alert--error {
  margin: 0;
}

.emailsms__form .alert--verbose.alert--error::before {
  display: none;
}

.emailsms__form .alert--verbose.alert--error .alert__title {
  padding: 0;
}

.emailsms__form .alert--verbose.alert--error .alert__text {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.33;
  margin-top: 4px;
}

.emailsms .site-checkbox__wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  margin: 10px 0;
}

.emailsms .site-checkbox__wrapper .small {
  padding-top: 2px;
  color: #787673;
  font-size: 12px;
  line-height: 1.33;
}

.emailsms .site-checkbox__wrapper .consent-error {
  display: block;
  color: #DF001A;
}

.emailsms .site-checkbox__wrapper .icon-checkmark--error {
  border: 1px solid #DF001A;
}

/*------------------------------------*
    #Login Form
\*------------------------------------*/

.m-login-form {
  box-shadow: none;
}

.m-login-form__body .a-btn {
  margin-top: 10px;
}

.m-login-form__body--section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-bottom: 10px;
}

.m-login-form__body--section > * {
  padding-top: 10px;
}

.m-locale-summary {
  display: -ms-flexbox;
  display: flex;
}

.m-locale-summary__flag,
.m-locale-summary__title {
  margin-right: 10px;
}

.m-locale-summary__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 975px) {
  .m-locale-summary__content {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}

.m-locale-summary__flag {
  height: 10px;
  width: 15px;
  margin-top: 4px;
}

.m-locale-summary__title {
  max-width: none;
}

/*------------------------------------*
    $ORGANISMS
\*------------------------------------*/

.m-label-heading .label {
  text-align: center;
  margin-bottom: 5px;
}

.m-average__review {
  text-align: center;
  margin-top: 40px;
}

.m-average__review .average__review--top {
  margin: 25px 0 15px;
}

.m-average__review .average__review--top__sub-title {
  margin: 10px auto 30px;
  padding: 0 20px;
}

.tabbed__navigation {
  display: block;
  margin-top: 5rem;
}

.tabbed__navigation .tabbed__navigation-list {
  list-style-type: none;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.tabbed__navigation .tabbed__navigation-list .tabbed__navigation-item {
  padding: 12px 0;
  background: #F2F2F2;
  position: relative;
  display: block;
  margin: 0;
  -ms-flex: 1;
      flex: 1;
  text-align: center;
  border-radius: 5px 5px 0 0;
  border: 1px solid #D3D0CD;
}

@media (min-width: 768px) {
  .tabbed__navigation .tabbed__navigation-list .tabbed__navigation-item {
    padding: 17px 0;
  }
}

.tabbed__navigation .tabbed__navigation-list .tabbed__navigation-item.current {
  background: #FFF;
  border: 1px solid #D3D0CD;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
}

.o-review {
  padding: 40px 20px 88px;
  background: #FFF;
  border-bottom: 1px solid #F2F2F2;
  position: relative;
}

.o-review::before,
.o-review::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 768px) {
  .o-review {
    padding: 40px 40px 33px;
  }
}

.o-questions {
  background: #FFF;
  float: none;
  margin: 0 auto;
}

.o-questions::before,
.o-questions::after {
  content: '';
  display: block;
  clear: both;
}

.o-questions--card {
  border-bottom: 1px solid #F2F2F2;
  width: 100%;
}

.o-questions--card__question {
  padding: 40px 20px 25px;
  width: 100%;
}

@media (min-width: 595px) {
  .o-questions--card__question {
    padding: 40px 40px 25px;
  }
}

.o-modal {
  display: none;
  width: 100%;
}

@media (min-width: 768px) {
  .o-modal {
    width: 660px;
  }
}

.o-modal__flex {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
}

.o-modal__btn-container {
  text-align: center;
}

.o-modal h3 {
  margin: 0 0 20px;
}

.o-modal .page-content__content-block,
.o-modal .section {
  margin: 20px 0;
}

.o-modal .page-content__content-block img,
.o-modal .section img {
  display: block;
  margin: 20px 0;
}

@media (min-width: 1080px) {
  .o-modal .page-content__content-block,
  .o-modal .section {
    margin: 20px 0;
  }
}

#modal-bg {
  position: fixed;
  z-index: 1090;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-backdrop {
  position: fixed;
  z-index: 1089;
  background: #0E0E0E;
  opacity: .25;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 595px) {
  .modal-backdrop {
    background: #FFF;
    opacity: 1;
  }
}

.control-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.control-wrapper__label,
.control-wrapper__control {
  display: block;
  padding: 20px;
}

.control-wrapper__label {
  padding-right: 0;
}

.control-wrapper__control {
  cursor: pointer;
}

.close-btn {
  cursor: pointer;
  display: block;
  float: right;
}

.product__collection {
  position: relative;
  display: block;
}

.product__collection .o-block--related-product__product-card:nth-child(2n) {
  margin: 0 20px 0 0;
}

.product__collection .o-block--related-product__product-card {
  position: relative;
}

.product__collection .o-block--related-product__product-card.card--wide {
  min-width: calc(100% * (6 / 12) - 15px);
}

.product__collection .o-block--related-product__product-card.card--wide .product__card--wrapper {
  padding-top: 0;
}

.product__collection .o-block--related-product__product-card.card--wide .product__card--wrapper a {
  position: relative;
  max-height: 360px;
  overflow: hidden;
}

.o-block--product-hero {
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.o-block--product-hero.overlay .m-block--module-heading {
  color: #FFF;
  top: 40px;
}

.o-block--product-hero .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 99%);
  height: 300px;
  position: absolute;
  top: 0;
  width: 100%;
}

.o-block--product-hero .m-block--module-heading {
  margin: 0;
}

.o-block--product-hero.mobile {
  display: block;
}

@media (min-width: 595px) {
  .o-block--product-hero.mobile {
    display: none;
  }
}

.o-block--product-hero.desktop {
  display: none;
}

@media (min-width: 595px) {
  .o-block--product-hero.desktop {
    display: block;
  }
}

.o-block--product-hero__image {
  left: 50%;
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  box-sizing: content-box !important;
}

@media (min-width: 595px) {
  .o-block--product-hero__image {
    top: 65%;
  }
}

@media (min-width: 975px) {
  .o-block--product-hero__image {
    top: 60%;
  }
}

.o-block--product-hero__countdown--spacer {
  display: inline-block;
  float: left;
  margin: 15px 0 0;
  width: calc(100% * (1 / 2));
}

@media (min-width: 595px) {
  .o-block--product-hero__countdown--spacer {
    margin: 0;
    width: calc(100% * (1 / 4));
  }
}

.o-block--product-hero__countdown__time {
  margin: 10px 0 0;
}

@media (min-width: 975px) {
  .o-block--product-hero__countdown__time {
    margin: 0;
  }

  .o-block--product-hero__countdown__time .label--bold {
    margin: 0;
  }
}

.o-block--product-hero--teaser {
  padding: 43px 0 0;
}

@media (min-width: 975px) {
  .o-block--product-hero--teaser {
    padding: 55px 0 0;
  }
}

.o-block--product-hero--teaser__countdown {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 975px) {
  .o-block--product-hero--teaser__countdown {
    top: 40%;
  }
}

.o-block--product-hero--teaser + .m-block-teaser-signup {
  margin: -220px auto 40px;
}

@media (min-width: 975px) {
  .o-block--product-hero--teaser + .m-block-teaser-signup {
    margin: -300px auto 100px;
  }
}

.o-block--product-hero--teaser + .m-block-teaser-signup .m-footer__form {
  max-width: 420px;
}

.o-block--product-hero--teaser .label--bold {
  margin: 9px 0 0;
}

.o-data-media__list {
  background: #F2F2F2;
  display: inline-block;
  padding-top: 58px;
  padding-bottom: 60px;
  width: 100%;
}

.o-data-media__list::before,
.o-data-media__list::after {
  content: '';
  display: block;
  clear: both;
}

.o-data-media__list .m-list__icon-block {
  padding: 0 21px;
}

.o-data-media__list .list__block {
  float: left;
  margin-top: 50px;
}

.o-data-media__list .media__block {
  float: right;
  position: relative;
  text-align: right;
  padding-top: 50px;
}

.o-data-media__list .media__block--left {
  float: left;
  position: relative;
  text-align: left;
  padding-top: 50px;
}

.o-data-media__list p {
  max-width: none;
}

.o-data-media__list .cta-list {
  list-style: none;
}

.o-data-media__list .cta-list li {
  float: left;
}

@media (min-width: 975px) {
  .o-data-media__list .cta-list li {
    float: none;
  }
}

.o-data-media__list .m-block--module-heading {
  margin: 0;
}

.o-data-media__list--video .media__block {
  right: auto;
}

@media (min-width: 975px) {
  .o-data-media__list--video .media__block {
    right: -40px;
  }
}

@media (min-width: 1080px) {
  .o-data-media__list--video .media__block {
    right: -60px;
  }
}

.o-data-media__list--image .media__block {
  right: -60px;
}

@media (min-width: 975px) {
  .o-data-media__list--image .media__block {
    right: -80px;
  }
}

.social__block::before,
.social__block::after {
  content: '';
  display: block;
  clear: both;
}

.social__block.three-up .social__img {
  width: 100%;
}

@media (min-width: 975px) {
  .social__block.three-up .social__img {
    width: calc(33.333% - 30px);
  }
}

.social__block.four-up .social__img {
  width: 100%;
}

@media (min-width: 975px) {
  .social__block.four-up .social__img {
    width: calc(25% - 30px);
  }
}

.social__block.four-up .social__img:nth-of-type(2) {
  margin-top: 0;
}

.social__block.four-up .social__img:nth-of-type(odd) {
  margin-top: 0;
}

@media (min-width: 975px) {
  .social__block.four-up .social__img:nth-of-type(odd) {
    margin-top: -60px;
  }
}

.social__block.four-up .social__img .hover__info .a-btn {
  max-width: 228px;
}

.social__block .social__img {
  float: left;
  display: block;
  margin: 0 15px;
  position: relative;
  cursor: pointer;
}

.social__block .social__img:nth-of-type(2) {
  margin-top: 0;
}

@media (min-width: 975px) {
  .social__block .social__img:nth-of-type(2) {
    margin-top: -60px;
  }
}

.social__block .social__img img {
  display: block;
  height: auto;
}

.social__block .social__img:hover .hover__info {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.social__block .social__img .hover__info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.social__block .social__img .hover__info .a-btn {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.social__block .social__img .additional__info {
  margin-top: 4px;
}

.social__block .social__img .additional__info .x-small {
  display: inline-block;
}

.social__block .social__img .additional__info .small {
  float: right;
  color: #0363F7;
  margin-top: 4px;
}

.page-content {
  margin-bottom: 60px;
}

@media (min-width: 595px) {
  .page-content {
    margin-bottom: 80px;
  }
}

@media (min-width: 1080px) {
  .page-content {
    margin-bottom: 120px;
  }
}

.page-content .breadcrumbs {
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-content img {
  margin: 20px 0;
  display: block;
}

.page-content p {
  max-width: 100%;
  margin: 20px 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5 {
  margin: 30px 0 0;
}

@media (min-width: 595px) {
  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5 {
    margin: 40px 0 0;
  }
}

@media (min-width: 1080px) {
  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5 {
    margin: 60px 0 0;
  }
}

.page-content h1.small,
.page-content h2.small,
.page-content h3.small {
  margin: 30px 0 0;
}

.page-content__content-block {
  margin: 30px 0;
  max-width: 560px;
}

.mini-cart__quantity {
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
  font-size: 12px;
  line-height: 12px;
  color: #0363F7;
  position: absolute;
  top: 12px;
  right: 37px;
}

@media (min-width: 975px) {
  .mini-cart__quantity {
    top: -7px;
    right: -11px;
  }
}

.mini-cart__body {
  display: none;
}

.mini-cart__body.active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #FFF;
  height: 85vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .mini-cart__body.active {
    max-height: 580px;
    height: auto;
    width: 533px;
    position: absolute;
    left: auto;
    top: 64px;
    right: 0;
  }
}

@media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  .mini-cart__body.active {
    /* IE10+ CSS, does not support Flexbox, overflow and max-height*/
    height: 540px;
  }
}

@media (min-width: 975px) {
  .mini-cart__body.active {
    top: 44px;
  }
}

.mini-cart__contents,
.mini-cart__footer {
  padding: 20px;
}

.mini-cart__contents {
  -ms-flex-positive: 1;
      flex-grow: 1;
  overflow-y: auto;
  min-height: 1px;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .mini-cart__contents .product-line-item .pricing {
    position: static;
  }
}

.mini-cart__contents .product-line-item .pricing__sale,
.mini-cart__contents .product-line-item .pricing__base {
  position: static;
}

.mini-cart__footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #FFF;
  border-top: 1px solid #D3D0CD;
}

@media (max-width: 767px) {
  .mini-cart__footer .cta-group .a-btn {
    max-width: none;
  }
}

.mini-cart .control-wrapper {
  background-color: #002855;
  color: #FFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mini-cart .control-wrapper__control {
  padding: 20px !important;
  /* Because of header overrides */
}

.mini-cart .icon-close {
  stroke: #FFF;
}

.mini-cart .itemized-pricing {
  margin-bottom: 20px;
}

.mini-cart .itemized-pricing__itemization {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

.mini-cart .product-line-item {
  padding: 20px 0;
}

.mini-cart .product-line-item__attributes {
  white-space: normal;
}

.mini-cart .product-line-item:first-child {
  padding-top: 0;
}

.consent-form {
  margin-bottom: 20px;
}

.consent-form__text,
.consent-form__button,
.consent-form__edit {
  margin-top: 20px;
}

.changeregion-form {
  margin-bottom: 20px;
  margin: auto;
  text-align: center;
  max-width: 440px;
}

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

.changeregion-form__copyblock .a-text-plain {
  color: #0363F7;
}

.changeregion-form__text {
  margin-top: 10px;
}

.changeregion-form__select {
  display: block;
}

.changeregion-form__label {
  display: block;
  margin-top: 20px;
  margin-bottom: 12px;
}

.changeregion-form__button {
  margin-top: 30px;
  margin-bottom: 20px;
}

.tooltip__content-title {
  margin-bottom: 10px;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

.tooltip__content p {
  max-width: none;
}

.question-mark {
  border-radius: 50%;
  background: #0363F7;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 11px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
  padding-top: 1px;
  padding-right: 1px;
}

.o-block--interactive-collection {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0 6%;
}

@media (min-width: 595px) {
  .o-block--interactive-collection {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}

.o-block--interactive-collection .o-block--interactive-image-container {
  max-width: 54.375rem;
}

@media (min-width: 595px) {
  .o-block--interactive-collection .o-block--interactive-image-container {
    width: 47%;
  }
}

@media (min-width: 975px) {
  .o-block--interactive-collection .o-block--interactive-image-container {
    width: 65%;
  }
}

.o-block--interactive-collection .o-block--interactive-image {
  position: relative;
}

.o-block--interactive-collection button.btn-n {
  padding: 0;
}

.o-block--interactive-collection .btn-n {
  cursor: pointer;
  font-weight: bold;
  color: #0363F7;
  background-color: #FFF;
  border-radius: 1.09rem;
  border: solid 0.125rem #0363F7;
  width: 1.625rem;
  height: 1.625rem;
  position: absolute;
}

.o-block--interactive-collection .btn-n:hover {
  background: #0363F7;
  color: #FFF;
}

.o-block--interactive-collection .btn-n--active {
  background: #0363F7;
  color: #FFF;
}

.o-block--interactive-collection .btn-n--pulse {
  animation: pulse 1.25s infinite;
}

@media (min-width: 975px) {
  .o-block--interactive-collection .btn-n {
    width: 2.125rem;
    height: 2.125rem;
  }
}

@media (min-width: 595px) {
  .o-block--interactive-collection .text__slider {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 1rem 0 0 2rem;
    width: 53%;
  }

  .o-block--interactive-collection .text__slider > .slick-dots {
    text-align: left;
    padding: 0;
  }
}

@media (min-width: 975px) {
  .o-block--interactive-collection .text__slider {
    padding: 3rem 0 0 2rem;
    width: 35%;
  }
}

.o-block--interactive-collection .text-left {
  text-align: left;
}

.o-block--interactive-collection .mb-5 {
  margin-bottom: 1.25rem;
}

.o-block--interactive-collection .bullet {
  font-size: .75rem;
  margin: 0 .35rem;
  vertical-align: middle;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/*------------------------------------*
    $LAYOUT
\*------------------------------------*/

.page {
  overflow-x: hidden;
}

/*------------------------------------*
    $TEMPLATES
\*------------------------------------*/

.pdp {
  color: #0E0E0E;
}

.pdp * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pdp a {
  color: #0E0E0E;
}

.pdp .a-text-btn {
  color: #0363F7;
}

.pdp .logo {
  width: auto;
  height: auto;
  margin: 0;
}

.pdp section {
  margin: 0;
}

.pdp button {
  text-transform: none;
}

.pdp h4 {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .pdp div,
  .pdp img {
    max-width: none;
  }
}

.pdp .breadcrumbs li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
}

.pt_product-details #main {
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  .product--meta__thumbnails .thumb img {
    max-width: 100%;
  }
}

.product {
  position: relative;
}

.product--page {
  display: inline-block;
  width: 100%;
}

@media (min-width: 1440px) {
  .product--page {
    margin: 0 0 100px;
  }
}

.product .product-container__image-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  width: auto;
}

@media (min-width: 768px) {
  .product .product-container__image-badge {
    width: 92px;
  }
}

@media (min-width: 975px) {
  .product .product-container__image-badge {
    right: 40px;
    top: 40px;
    width: auto;
    max-width: 100%;
  }
}

.product .zoom__close {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: 20px;
  stroke: #0E0E0E;
  top: 20px;
  width: 20px;
  z-index: 200;
}

@media (min-width: 768px) {
  .product .zoom__close {
    right: 40px;
    top: 40px;
  }
}

.product .zoom__close__icon {
  height: 20px;
  width: 20px;
}

.product--images {
  position: relative;
}

.product--images.zoom {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.product--images.zoom .product-container__image-badge {
  display: none;
}

.product--images.zoom .zoom__close {
  display: block;
}

.product--images.zoom iframe {
  top: 0 !important;
}

.product--images.zoom .product-container__badge {
  display: none;
}

.product--images.zoom .product-container {
  background: #F2F2F2;
  height: 100vh;
  top: 60px;
  width: 100%;
}

@media (min-width: 595px) {
  .product--images.zoom .product-container {
    top: 0;
  }
}

.product--images.zoom .intrinsic .product-container__image {
  margin: 0 auto;
  width: 100%;
}

.product--images.zoom .intrinsic .product-container__image.video {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.product--images.zoom .intrinsic .product-container__image.image {
  position: relative;
  width: 90%;
}

@media (min-width: 975px) {
  .product--images.zoom .intrinsic .product-container__image.image {
    top: 0;
    width: 60%;
    z-index: 3000;
  }
}

.product--images.zoom .slick-dots {
  position: relative;
}

.product--images.zoom .product-container__thumbnails {
  left: 50%;
  top: 65%;
  position: absolute;
  margin: 25px auto 0;
  max-width: calc(100% * (10 / 12));
  transform: translate(-50%, -90%);
}

.product--images.zoom .product-container__thumbnails .product-container__image.image {
  margin: 0 7px;
}

.product--images .promo-message {
  margin: 15px 20px;
}

@media (min-width: 975px) {
  .product--images .promo-message {
    display: none;
  }
}

.product--images .breadcrumbs {
  margin: 10px 0;
  padding: 0 20px;
}

.product--images .breadcrumbs .breadcrumb__link a::after {
  bottom: 2px;
  color: #D3D0CD;
  content: '.';
  font-size: 22px;
  margin: 0 2px;
  position: relative;
}

.product--images .breadcrumbs .breadcrumb__link:last-of-type a {
  cursor: default;
  pointer-events: none;
}

.product--images .breadcrumbs .breadcrumb__link:last-of-type a span {
  border: 0;
}

.product--images .breadcrumbs .breadcrumb__link:last-of-type a span:hover {
  border: 0;
}

.product--images .breadcrumbs .breadcrumb__link:last-of-type a::after {
  display: none;
}

@media (min-width: 975px) {
  .product--images .breadcrumbs {
    display: none;
  }
}

.product--images .product-container {
  display: inline-block;
  width: 100%;
}

@media (min-width: 975px) {
  .product--images .product-container {
    float: left;
  }
}

.product--images .product-container iframe {
  pointer-events: none;
}

.product--images .product-container .slick-slide {
  position: relative;
}

.product--images .product-container .slick-dots {
  z-index: 100;
}

.product--images .product-container__badge {
  cursor: pointer;
  fill: #FFF;
  height: 31px;
  left: 20px;
  position: absolute;
  stroke: #0E0E0E;
  top: 20px;
  width: 31px;
  z-index: 100;
}

@media (min-width: 768px) {
  .product--images .product-container__badge {
    height: 44px;
    left: 40px;
    top: 40px;
    width: 44px;
  }
}

.product--images .product-container__badge--zoom {
  z-index: 1;
}

.product--images .product-container__thumbnails {
  display: none;
  left: 50%;
  margin: 25px auto 0;
  max-width: calc(100% * (10 / 12));
  opacity: 1;
  position: relative;
  transform: translateX(-50%);
}

@media (min-width: 975px) {
  .product--images .product-container__thumbnails {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.product--images .product-container__thumbnails img {
  border: 1px solid transparent;
  cursor: pointer;
  margin: 0 7px;
  max-height: 38px;
  max-width: 56px;
  width: 100%;
  transition: border 0.6s ease-out;
}

.product--images .product-container__thumbnails img:hover {
  border: 1px solid #0E0E0E;
  transition: border 0.6s ease-in;
}

.product--images .product-container__thumbnails img.selected {
  border: 1px solid #0E0E0E;
  transition: border 0.6s ease-in;
}

@media (min-width: 595px) {
  .product--images .product-container__thumbnails img {
    max-height: 42px;
    max-width: 62px;
  }
}

.product--images .product-container__thumbnails .slick-list {
  overflow: visible;
}

.product--images .product-container__thumbnails .slick-track {
  max-width: 100%;
  width: 100% !important;
}

.product--images .product-container__image {
  width: 100%;
}

.product--images .product-container__video {
  background: #F2F2F2;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.product--images .product-container__video-youtube {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
}

.product--meta {
  position: relative;
}

@media (min-width: 975px) {
  .product--meta {
    display: inline-block;
    float: right;
  }
}

.product--meta .breadcrumbs {
  display: none;
}

@media (min-width: 975px) {
  .product--meta .breadcrumbs {
    display: block;
    margin: 10px 0 0;
    padding: 0;
  }
}

.product--meta .breadcrumbs .breadcrumb__link a::after {
  margin: 0 2px;
}

.product--meta .experience__wrap {
  display: inline-block;
}

.product--meta .promo-message {
  display: none;
}

@media (min-width: 975px) {
  .product--meta .promo-message {
    display: block;
    margin: 18px 0 23px;
  }
}

.product--meta__badge {
  background: #0363F7;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FFF;
  display: table;
  font-family: "NeoSans Black Italic", "Trebuchet MS", "Arial", sans-serif;
  font-size: 12px;
  letter-spacing: .5px;
  margin: 9px 0 2px;
  padding: 4px 7px 2px;
  position: relative;
  text-transform: uppercase;
  top: 30px;
}

@media (min-width: 975px) {
  .product--meta__badge {
    margin: 9px 0 -14px;
    top: 0;
  }
}

.product--meta__badge.sale {
  background: #DF001A;
}

.product--meta__core {
  border-bottom: 1px solid #F2F2F2;
}

.product--meta__title {
  display: inline-block;
  margin: 40px 0 0;
}

@media (min-width: 595px) {
  .product--meta__title {
    margin: 43px 0 0;
    max-width: 70%;
  }
}

@media (min-width: 975px) {
  .product--meta__title {
    margin: 17px 0 0;
  }
}

.product--meta__sub-title {
  color: #787673;
  font-weight: 400;
  margin: 0 0 2px;
}

@media (min-width: 975px) {
  .product--meta__sub-title {
    margin: 0 0 10px;
  }
}

.product--meta__price {
  display: inline-block;
  float: right;
  margin: 43px 0 0;
  width: auto;
}

@media (min-width: 595px) {
  .product--meta__price {
    margin: 46px 0 0;
    max-width: 30%;
    text-align: right;
  }
}

@media (min-width: 975px) {
  .product--meta__price {
    margin: 30px 0 0;
  }
}

.product--meta__reviews {
  display: inline-block;
  float: right;
  margin: 0 0 13px;
}

.product--meta__reviews .icon-star:last-of-type {
  margin: 0 8px 0 0;
}

.product--meta__reviews u {
  bottom: 3px;
  position: relative;
}

.product--meta__reviews__count {
  border-bottom: 1px solid #D3D0CD;
  bottom: 1px;
  cursor: pointer;
  position: relative;
}

.product--meta__reviews__count:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}

.product--meta__description {
  border-bottom: 1px solid #F2F2F2;
  border-top: 1px solid #F2F2F2;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  padding: 15px 0 13px;
  width: 100%;
}

.product--meta__thumbnails {
  margin: 19px 0 0;
}

@media (min-width: 975px) {
  .product--meta__thumbnails {
    margin: 19px 0 0;
  }
}

.product--meta__thumbnails .thumb {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  margin: 0 3px 8px 0;
  max-height: 38px;
  max-width: 56px;
  transition: border 0.6s ease-out;
}

.product--meta__thumbnails .thumb:hover {
  border: 1px solid #0E0E0E;
  transition: border 0.6s ease-in;
}

.product--meta__thumbnails .thumb.unselectable {
  opacity: .4;
  pointer-events: none;
}

.product--meta__thumbnails .thumb.selected {
  border: 1px solid #0E0E0E;
  transition: border 0.6s ease-in;
}

@media (max-width: 320px) {
  .product--meta__thumbnails .thumb:nth-child(4n) {
    margin: 0;
  }
}

@media (min-width: 595px) {
  .product--meta__thumbnails .thumb {
    max-height: 42px;
    max-width: 62px;
  }
}

.product--meta__thumbnails-color {
  color: #787673;
  margin: -6px 0 0;
  text-transform: capitalize;
}

.product--meta__thumbnails .sale-thumbnails__title {
  margin-bottom: 0;
}

.product--meta__selects {
  display: inline-block;
  margin: 14px 0 0;
  position: relative;
  width: 100%;
}

@media (min-width: 975px) {
  .product--meta__selects {
    margin: 13px 0 5px;
  }
}

.product--meta__selects .cs-active .cs-options {
  position: relative;
}

@media (min-width: 595px) {
  .product--meta__selects .cs-active .cs-options {
    position: absolute;
  }
}

.product--meta__selects-item {
  display: inline-block;
  position: relative;
  margin: 0 0 25px;
  width: 100%;
  z-index: 1;
}

.product--meta__selects-item:last-of-type {
  margin: 0 0 25px;
}

@media (min-width: 595px) {
  .product--meta__selects-item:last-of-type {
    margin: 0 0 8px;
  }
}

.product--meta__selects-item .select__label--link {
  border-bottom: 1px solid #D3D0CD;
  cursor: pointer;
  display: inline-block;
  float: right;
  height: 18px;
  margin: 4px 0 0;
}

.product--meta__selects-item .select__label--link:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (min-width: 595px) {
  .product--meta__selects-item .select__label--link {
    margin: 0 10px 0 0;
  }
}

.product--meta__selects-item .cs-placeholder {
  border: 1px solid #D3D0CD;
  font-size: 15px;
  letter-spacing: 0;
}

.product--meta__selects-item .cs-placeholder::before {
  top: calc(50% - 5px);
}

.product--meta__selects-item .cs-placeholder:hover {
  color: #0E0E0E;
}

.product--meta__selects-item .select__label {
  display: inline-block;
  text-transform: uppercase;
  width: auto;
}

@media (min-width: 595px) {
  .product--meta__selects-item {
    float: left;
    width: calc(100% * (1 / 2) - 5px);
    margin: 0;
  }

  .product--meta__selects-item:last-of-type {
    margin: 0;
  }
}

@media (min-width: 975px) {
  .product--meta__selects-item {
    margin: 0;
  }

  .product--meta__selects-item:first-of-type {
    margin: 0 2px 0 0;
  }
}

.product--meta__selects-item__tip {
  background: #F2F2F2;
  border-radius: 5px;
  color: #0E0E0E;
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 15px 2px;
  position: relative;
  text-align: center;
  top: -5px;
  transition: top 0.2s ease-in-out;
  width: 100%;
}

.product--meta__selects-item__tip::before {
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #F2F2F2;
  font-size: 0;
  height: 0;
  left: 45%;
  line-height: 0;
  position: absolute;
  top: -7px;
}

@media (min-width: 975px) {
  .product--meta__selects-item__tip {
    margin: 0 0 20px;
    top: 15px;
  }
}

.product--meta__selects label {
  display: inline-block;
  margin: 0 0 8px;
}

.product--meta__selects .cs-select--product-size {
  margin: 0 0 18px;
  max-width: 100%;
}

@media (min-width: 595px) {
  .product--meta__selects .cs-select--product-size {
    float: left;
    margin: 0 19px 0 0;
    width: calc(100% * (2 / 2) - 10px);
  }
}

.product--meta__selects .cs-select--product-size:hover + .product--meta__selects-item__tip {
  animation-name: hvr-hang-sink, hvr-hang;
  animation-duration: 0.3s, 0.9s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

@keyframes hvr-hang {
  0% {
    transform: translateY(4px);
  }

  40% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(4px);
  }
}

@keyframes hvr-hang-sink {
  100% {
    transform: translateY(4px);
  }
}

.product--meta__selects .cs-select--product-size .cs-options {
  border: 1px solid #D3D0CD;
  border-top: 0;
  max-width: 100%;
}

@media (min-width: 595px) {
  .product--meta__selects .cs-select--product-size .cs-options {
    width: 100%;
  }
}

.product--meta__selects .cs-select--product-width {
  margin: 0 0 18px;
  max-width: 100%;
}

@media (min-width: 595px) {
  .product--meta__selects .cs-select--product-width {
    float: left;
    width: calc(100% * (2 / 2) - 10px);
  }
}

.product--meta__selects .cs-select--product-width .cs-options {
  border: 1px solid #D3D0CD;
  border-top: 0;
  max-width: 100%;
}

@media (min-width: 595px) {
  .product--meta__selects .cs-select--product-width .cs-options {
    width: 100%;
  }
}

.product--meta .a-btn--primary {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.product--meta__quantity-alert {
  color: #DF001A;
  display: block;
  margin: 0;
  position: relative;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 975px) {
  .product--meta__quantity-alert {
    margin: 0 0 5px;
  }
}

.product--meta__preorder-text {
  display: inline-block;
  margin: 15px 0 0;
  text-align: center;
  width: 100%;
}

.product--meta__preorder-text::before,
.product--meta__preorder-text::after {
  content: '';
  display: block;
  clear: both;
}

.product--meta__store-finder {
  display: inline-block;
  margin: 21px auto 0;
  text-align: center;
  width: 100%;
  color: #0363F7;
}

.product--meta__store-finder::before,
.product--meta__store-finder::after {
  content: '';
  display: block;
  clear: both;
}

.product--meta__store-finder:hover {
  color: #0363F7;
}

@media (min-width: 595px) {
  .product--meta__store-finder {
    margin: 16px auto 0;
  }
}

.product--meta__internal-link {
  display: inline-block;
  margin: 15px auto 0;
  text-align: center;
  width: 100%;
}

.product--meta__internal-link span {
  border-bottom: 1px solid #D3D0CD;
  cursor: pointer;
}

.product--meta__internal-link span:hover {
  border-bottom: 1px solid #0363F7;
  color: #0363F7;
  transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
}

.product--meta__internal-link:hover {
  color: #0E0E0E;
}

.product--meta .a-btn--secondary {
  display: block;
  margin: 0 auto 23px;
  max-width: 100%;
}

.product--meta .a-btn {
  margin: 13px auto 0;
}

@media (min-width: 975px) {
  .product--meta .a-btn {
    display: inline-block;
    float: right;
    margin: 13px auto 0;
    width: calc(70% - 20px);
  }
}

.product--meta__policies {
  border-top: 1px solid #F2F2F2;
  display: inline-block;
  margin: 18px 0 0;
  padding: 25px 0 61px;
  text-align: center;
}

@media (min-width: 595px) {
  .product--meta__policies {
    padding: 24px 0 43px;
  }
}

.product--meta__policies h4 {
  margin: 0 0 7px;
  text-transform: uppercase;
}

@media (min-width: 595px) {
  .product--meta__policies h4 {
    margin: 0 0 9px;
  }
}

@media (min-width: 595px) {
  .product--meta__policies p {
    margin: 0 auto;
    max-width: calc(100% * (4 / 6));
  }
}

@media (min-width: 975px) {
  .product--meta__policies p {
    margin: 0 auto;
    max-width: 100%;
  }

  .product--meta__policies .small {
    line-height: 22px;
  }
}

/*------------------------------------*
    #PCP OVERWRITES
\*------------------------------------*/

.category * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#search-results-container *,
.pt_product-search-result * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#search-results-container .pagination-links .load-more,
.pt_product-search-result .pagination-links .load-more {
  position: relative;
  display: block;
  clear: both;
}

.category {
  margin: 60px 0 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .category .o-block--related-product__product-card div,
  .category .o-block--related-product__product-card img {
    max-width: none;
  }
}

@media (min-width: 975px) {
  .category {
    margin: 0;
  }
}

.category__hero {
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 975px) {
  .category__hero {
    height: auto;
    max-height: 400px;
  }
}

.category__hero__image {
  display: block;
  position: relative;
  z-index: 100;
}

.category__hero__image::before {
  border: solid 40px;
  border-color: transparent;
  border-radius: 70% / 75px 80px 0 0;
  box-shadow: -20px -40px 0 #0363F7;
  content: ' ';
  display: block;
  height: 0;
  left: -57px;
  position: absolute;
  top: 0;
  width: calc(100% - -50px);
  z-index: 1000;
}

@media (min-width: 975px) {
  .category__hero__image::before {
    display: none;
  }
}

@media (min-width: 975px) {
  .category__hero__image {
    z-index: 1;
  }

  .category__hero__image::before {
    display: none;
  }
}

.category__hero__image img {
  min-height: 200px;
  object-fit: cover;
  object-position: 80%;
}

@media (min-width: 975px) {
  .category__hero__image img {
    height: 100%;
    min-height: 400px;
    width: 100%;
  }
}

.category__featured-container__meta {
  background: url("images/mesh-background.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.category__featured-container__meta.shoe h3 {
  margin: 0 auto 6px;
  padding: 36px 0 0;
}

@media (min-width: 975px) {
  .category__featured-container__meta.shoe h3 {
    margin: 0 auto 9px;
    padding: 40px 0 0;
  }
}

.category__featured-container__meta.shoe p {
  margin: 0 auto;
  max-width: 390px;
}

.category__featured-container__meta.apparel {
  background: url("images/featured-background.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 975px) {
  .category__featured-container__meta.apparel {
    min-height: 300px;
    text-align: left;
  }
}

.category__featured-container__meta.apparel h3 {
  margin: 0 auto 6px;
  padding: 36px 0 0;
}

@media (min-width: 975px) {
  .category__featured-container__meta.apparel h3 {
    margin: 0 auto 9px;
    padding: 86px 0 0;
  }
}

.category__featured-container__meta.apparel p {
  margin: 0 auto;
  max-width: 390px;
  padding: 0 0 192px;
}

@media (min-width: 975px) {
  .category__featured-container__meta.apparel p {
    margin: 0;
    padding: 0 0 95px;
  }
}

.category__featured-container__product {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 100%;
}

.category__featured-container__product img {
  margin: 0 0 13px;
  width: 100%;
}

@media (min-width: 975px) {
  .category__featured-container__product img {
    width: calc(100% * (4 / 6));
  }
}

.category__featured-container__product h3 {
  margin: 0 0 3px;
}

.category__featured-container__product p {
  margin: 0 auto 11px;
}

.category__featured-container__product .experience-copy {
  margin: 0 0 11px;
}

.category__featured-container__product.apparel img {
  margin: 25px 0;
}

@media (min-width: 975px) {
  .category__featured-container__product.apparel img {
    float: right;
    margin: 35px 60px 0 0;
  }
}

.category__featured-container__product.apparel h3 {
  display: inline-block;
  margin: 0 12px 0 0;
  width: 100%;
}

@media (min-width: 975px) {
  .category__featured-container__product.apparel h3 {
    width: auto;
  }
}

.category__featured-container__product.apparel p {
  display: inline-block;
  width: auto;
}

.category__featured-container__product.apparel .experience {
  width: 100%;
}

@media (min-width: 975px) {
  .category__featured-container__product.apparel .category__featured-container__product-meta {
    bottom: 0;
    left: 60px;
    position: absolute;
    text-align: left;
  }
}

.category__featured-container__product.apparel .category__featured-container__product-meta h3 {
  display: inline-block;
}

.category__featured-container__product.apparel .category__featured-container__product-meta p {
  display: inline-block;
}

.category__grid {
  display: inline-block;
  margin: 32px 0 80px;
  position: relative;
}

@media (min-width: 975px) {
  .category__grid {
    float: right;
    margin: 30px 0 120px;
  }
}

.category__grid .o-block--related-product__product-card {
  float: left;
  margin: 0 10px 40px;
  width: calc(100% * (1 / 2) - 20px);
}

@media (min-width: 975px) {
  .category__grid .o-block--related-product__product-card {
    margin: 0 15px 60px;
    width: calc(100% * (4 / 12) - 30px);
  }
}

.category__grid .o-block--related-product__product-card.featured--twoUp {
  margin: 0 10px 40px;
  width: calc(100% * (2 / 2) - 20px);
}

@media (min-width: 975px) {
  .category__grid .o-block--related-product__product-card.featured--twoUp {
    margin: 0 15px 60px;
    width: calc(100% * (8/12) - 30px);
  }
}

.category__grid .o-block--related-product__product-card.featured--twoUp .product__card--wrapper {
  padding-top: calc(116.88% / 2 - 18px);
  position: relative;
  overflow: hidden;
}

.category__grid .o-block--related-product__product-card.featured--twoUp .product__card--wrapper .card__slider {
  top: 0;
}

.category__grid .o-block--related-product__product-card.has-promo {
  margin: 0 10px 80px;
}

@media (min-width: 975px) {
  .category__grid .o-block--related-product__product-card.has-promo {
    margin: 0 15px 80px;
  }
}

.category__grid .a-btn {
  display: block;
  margin: 0 auto;
}

.category__grid-items {
  display: inline-block;
  width: 100%;
}

.category__grid-items .o-block--related-product__shoe-finder {
  margin: 0 0 40px;
}

@media (min-width: 975px) {
  .category__grid-items .o-block--related-product__shoe-finder {
    margin: 0 auto 60px;
    float: none;
    clear: both;
    display: block;
  }
}

@media (max-width: 767px) {
  .category__grid-items .slick-list {
    padding-top: 6px !important;
  }
}

@media (min-width: 975px) {
  .category__grid-items .grid__items {
    margin: 0 -15px;
  }
}

.category__grid-items.list-view .grid__items {
  margin: 0;
}

.category__grid-items.list-view .o-block--related-product__product-card {
  margin: 0 0 40px;
  width: calc(100% * (2 / 2));
}

@media (min-width: 975px) {
  .category__grid-items.list-view .o-block--related-product__product-card {
    margin: 0 0 30px;
    width: calc(100% * (12 / 12));
  }

  .category__grid-items.list-view .o-block--related-product__product-card:last-of-type {
    margin: 0 0 60px;
  }
}

.category__grid-items.list-view .o-block--related-product__shoe-finder {
  margin: 27px 0 40px;
}

@media (min-width: 975px) {
  .category__grid-items.list-view .o-block--related-product__shoe-finder {
    margin: 50px 0 60px;
  }
}

.category__grid-items.list-view .o-block--related-product__shoe-finder {
  margin: 0 auto 30px;
}

.category__grid-items.compare .o-block--related-product__product-card .product--meta__badge {
  position: absolute;
  top: 45px;
  z-index: 400;
}

.category__grid-items.compare .o-block--related-product__product-card .product__box {
  top: 40px;
  transition: top 0.3s ease-in;
}

.category__grid-items .o-block--related-product__product-card.card--wide {
  width: calc(100% * (2 / 2) - 10px);
}

@media (min-width: 975px) {
  .category__grid-items .o-block--related-product__product-card.card--wide {
    width: calc(100% * (4 / 12) - 20px);
  }
}

.category__grid-items .o-block--related-product__product-card.card--wide .product__card--wrapper {
  padding-top: 0;
}

.category__grid-items .o-block--related-product__product-card.card--wide .product__card--wrapper a {
  position: relative;
  max-height: 360px;
  overflow: hidden;
}

.category__controls {
  display: inline-block;
  position: relative;
  margin: 0 0 20px;
  width: 100%;
}

.category__controls .cs-select .cs-options li span {
  padding: 10px 14px;
}

@media (min-width: 975px) {
  .category__controls__filter .select__label {
    display: none;
  }
}

.category__controls__meta {
  display: inline-block;
  width: 65%;
  position: relative;
}

@media (min-width: 975px) {
  .category__controls__meta {
    float: left;
    width: calc(100% * (6 / 9) - 30px);
    position: absolute;
    top: 40%;
  }
}

.category__controls__meta p {
  display: inline-block;
  float: left;
  margin: 0;
}

@media (min-width: 975px) {
  .category__controls__meta span {
    float: right;
  }
}

.category__controls__meta .compare-tool {
  display: none;
}

@media (min-width: 975px) {
  .category__controls__meta .compare-tool {
    display: block;
  }
}

.category__controls__toggle {
  display: inline-block;
  float: right;
  width: auto;
}

@media (min-width: 975px) {
  .category__controls__toggle {
    margin: 28px 15px 0 0;
    max-width: 91px;
    width: calc(100% * (1.3 / 9));
  }
}

.category__controls .filter-btn {
  display: block;
  float: left;
  margin: 0 10px 20px 0;
  max-width: 100%;
  width: 100%;
}

.category__controls .filter-btn p {
  top: 0;
}

.category__controls .filter-btn span {
  top: 0;
}

@media (min-width: 975px) {
  .category__controls .filter-btn {
    display: none;
  }
}

.category__controls__select {
  display: inline-block;
  float: right;
  margin-bottom: 20px;
}

.category__controls__select .m-formfield {
  padding-top: 0;
  width: 100%;
}

.category__controls__select .cs-select {
  max-width: none;
  width: 100%;
}

@media (min-width: 975px) {
  .category__controls__select .cs-select {
    float: right;
    width: 100%;
  }
}

.category__controls__select .cs-select::before {
  display: none;
}

.category__controls__select .cs-select .cs-placeholder {
  border: 1px solid #D3D0CD;
  padding: 11px 14px;
}

.category__controls__select .cs-select .cs-placeholder::before {
  top: calc(50% - 9px);
}

.category__controls__select .cs-select .cs-options {
  right: 0;
  min-width: 100%;
}

@media (min-width: 975px) {
  .category__controls__select .cs-select .select__label {
    display: block;
  }
}

.collection__hero {
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .collection__hero {
    padding-bottom: 80px;
  }
}

@media (min-width: 1080px) {
  .collection__hero {
    padding-bottom: 120px;
  }
}

.collection__hero.white .m-block--module-heading,
.collection__hero.white .m-block--text-module {
  color: #FFF;
}

.collection .x-large {
  margin: 51px 0 0 -3px;
}

@media (min-width: 975px) {
  .collection .x-large {
    margin: 80px 0 0 -5px;
  }
}

.collection__grid {
  margin-top: 21px;
}

.collection__grid::before,
.collection__grid::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 975px) {
  .collection__grid {
    margin-top: 41px;
  }
}

.collection__grid .category__grid {
  margin-top: 30px;
}

@media (min-width: 975px) {
  .collection__grid .category__grid {
    margin-top: 0;
  }
}

.collection__grid .m-block--text-module--collection {
  padding: 0;
  margin-bottom: 30px;
}

.collection__grid .m-block--text-module--collection .o-block--text-module__copy {
  margin: 5px 0;
}

.collection__grid .m-block--text-module--collection .a-text-btn--primary:first-of-type {
  margin-right: 15px;
}

.collection__grid .m-block--text-module--collection .a-text-btn--secondary {
  line-height: inherit;
  padding-bottom: 1px;
}

.collection__grid .m-block--text-module--collection .a-text-btn--secondary .icon-long-arrow,
.collection__grid .m-block--text-module--collection .a-text-btn--secondary + .icon-long-arrow {
  padding-bottom: 3px;
  margin-right: 15px;
}

@media (min-width: 975px) {
  .collection__grid .m-block--text-module--collection {
    padding: 0 30px 0 0;
  }
}

.collection .category__grid {
  margin-bottom: 0;
}

/*------------------------------------*
    Account Login Template
\*------------------------------------*/

.account {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 110px;
  /*------------------------------------*
        Account Overview Template
    \*------------------------------------*/
  /*------------------------------------*
        Create Account Template
    \*------------------------------------*/
  /*------------------------------------*
        Order Lookup Account Template
    \*------------------------------------*/
  /*------------------------------------*
        Account Order History Template
    \*------------------------------------*/
  /*------------------------------------*
        Order Details Account Template
    \*------------------------------------*/
  /*------------------------------------*
        Order Address Confirmation EMEA Account Template
    \*------------------------------------*/
  /*------------------------------------*
        Address Book
    \*------------------------------------*/
  /*------------------------------------*
        Payment Methods
    \*------------------------------------*/
  /*------------------------------------*
        Tech-debt from SFRA account
    \*------------------------------------*/
}

.account h1 {
  margin: 0 0 30px;
}

.account .btn-container {
  margin: 0 0 30px;
}

.account .btn-container p {
  margin-top: 20px;
}

@media (min-width: 595px) {
  .account .btn-container {
    margin: 0 0 60px;
  }
}

@media (min-width: 595px) {
  .account .btn-container p {
    margin: 20px 0 0;
  }
}

.account .btn-container .x-small {
  vertical-align: bottom;
}

.account .login-forgot-password {
  margin: 10px 0 30px;
}

@media (min-width: 595px) {
  .account .login-forgot-password {
    margin: 10px 0 60px;
  }
}

.account .login-forgot-password p {
  margin-top: 1rem !important;
}

.account .link-overflow {
  max-width: 550px;
}

.account ul li {
  cursor: text;
}

.account .error {
  display: block;
}

.account .a-text-btn.a-text-btn--primary a {
  color: #0363F7;
}

.account .inline {
  display: block;
  padding: 0;
  margin: 0;
}

.account .inline.small {
  padding: 0 0 20px;
}

.account .inline.small--bold {
  display: inline-block;
}

@media (min-width: 768px) {
  .account .inline {
    display: inline-block;
  }

  .account .inline.small {
    padding: 0 0 30px 10px;
  }
}

.account .account-main-content {
  margin: 0 0 60px;
}

@media (min-width: 768px) {
  .account .account-main-content {
    margin: 0 0 120px;
  }
}

.account .account-main-content #personal-data p,
.account .account-main-content #payment-method p,
.account .account-main-content #my-recommendations p,
.account .account-main-content #address-book p,
.account .account-main-content #order-history p {
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .account .account-main-content #personal-data p,
  .account .account-main-content #payment-method p,
  .account .account-main-content #my-recommendations p,
  .account .account-main-content #address-book p,
  .account .account-main-content #order-history p {
    margin: 0 0 30px;
  }
}

.account .account-main-content p {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.account .account-main-content p.label--bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
}

.account .account-main-content h3 {
  margin: 0;
}

@media (min-width: 595px) {
  .account .right {
    float: right;
  }
}

@media (min-width: 1080px) {
  .account .right .html-slot-container {
    padding-right: 120px;
  }
}

.account .html-slot-container p {
  font-size: 15px;
  line-height: 22px;
}

.account .html-slot-container p.title {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
}

.account .html-slot-container ul {
  padding: 0 0 30px 15px;
}

.account .html-slot-container li {
  padding-bottom: 10px;
}

.account .e-text__input {
  max-width: 89%;
  padding: 0 15px;
}

@media (min-width: 595px) {
  .account .e-text__input {
    max-width: 80%;
  }
}

@media (min-width: 768px) {
  .account .e-text__input {
    max-width: 80%;
  }
}

@media (min-width: 1080px) {
  .account .e-text__input {
    max-width: 400px;
  }
}

.account .label-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  text-align: left;
  padding-bottom: 50px;
}

@media (min-width: 595px) {
  .account .label-inline {
    padding-bottom: 85px;
  }
}

@media (min-width: 1080px) {
  .account .label-inline {
    padding-bottom: 50px;
  }
}

.account .label-inline .label {
  padding: 8px 0 20px 5px;
}

.account .required {
  margin-bottom: 10px;
}

.account .login-box-content {
  max-width: 450px;
}

.account .order-history-header {
  color: #0E0E0E;
  background: #F2F2F2;
  background-color: #F2F2F2;
  box-sizing: border-box;
  height: 72px;
}

.account .order-history-header .label-bold {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
  color: #0E0E0E;
}

.account .order-history-items {
  color: #0E0E0E;
  line-height: 22px;
  font-size: 15px;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.account .order-history-items strong.title {
  display: block;
  padding-top: 10px;
}

.account .order-history-items .total-price {
  padding-bottom: 10px;
}

.account .order-history-items li {
  color: #0E0E0E;
}

.account .order-history-items span {
  font-size: 15px;
  line-height: 22px;
}

.account table {
  border: #F2F2F2 3px solid;
  border-collapse: separate;
  background-color: #FFF;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  text-align: left;
  font-size: 15px;
  line-height: 22px;
}

.account table th {
  display: block;
  background-color: #F2F2F2;
  vertical-align: top;
  max-width: 100%;
  border: 0;
  padding: 15px 10px 0;
}

@media (min-width: 768px) {
  .account table th {
    display: inline-block;
    max-width: 37%;
  }
}

.account table .value {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
}

.account li.order-block {
  padding-bottom: 20px;
  vertical-align: top;
  margin: 0;
}

@media (min-width: 975px) {
  .account li.order-block {
    margin: 0 30px 0 0;
  }
}

.account .left {
  float: left;
}

.account .search-result-items .left {
  float: none;
}

@media (min-width: 975px) {
  .account .search-result-items .left {
    float: left;
  }
}

.account .order-history-select-time {
  margin-bottom: 20px;
}

@media (min-width: 975px) {
  .account .order-history-select-time {
    margin-bottom: 30px;
  }
}

.account address,
.account .payment,
.account table {
  margin-top: 10px;
  font-size: 15px;
  line-height: 20px;
  font-style: normal;
  text-align: left;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.account address abbr[title],
.account .payment abbr[title],
.account table abbr[title] {
  border: 0;
  text-decoration: none;
}

.account .order-shipment-details {
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

.account .order-shipment-details ul,
.account .order-shipment-details li {
  list-style-type: none;
  color: #0E0E0E;
  cursor: initial;
}

.account .order-shipment-details .col-md-1 {
  padding-top: 20px;
  padding-right: 5%;
}

.account .order-shipment-details .col-md-1.left {
  float: none;
}

@media (min-width: 768px) {
  .account .order-shipment-details .col-md-1.left {
    float: left;
    padding-top: 0;
    padding-right: 5%;
  }
}

.account .order-details {
  padding-bottom: 20px;
}

.account .order-details p {
  margin: 0;
  padding: 0;
}

.account .order-details .small a {
  margin-left: 5px;
}

@media (min-width: 768px) {
  .account .order-details {
    padding-bottom: 60px;
  }
}

.account .shipping-details,
.account .order-info-status,
.account .return-items {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .account .shipping-details,
  .account .order-info-status,
  .account .return-items {
    padding-bottom: 60px;
  }
}

.account .order-totals-table {
  border: 0;
  padding: 0;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  background-color: #FFF;
  font-size: 15px;
  font-style: normal;
}

.account .order-totals-table td {
  border: 0;
  padding: 0;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
  background-color: #FFF;
  font-size: 15px;
  font-style: normal;
}

.account .order-totals-table td th {
  display: none;
}

.account .return-tile {
  margin-top: 30px;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  line-height: 20px;
}

.account .return-tile .name a {
  color: #0E0E0E;
  pointer-events: none;
}

.account .return-tile .product-list-item,
.account .return-tile .quantity,
.account .return-tile .price {
  margin: 0 0 0 10px;
  font-family: "Proxima", "Helvetica", "Arial", sans-serif;
}

@media (min-width: 768px) {
  .account .return-tile .product-list-item,
  .account .return-tile .quantity,
  .account .return-tile .price {
    margin: 0 0 0 10px;
  }
}

.account .return-tile .product-list-item .label,
.account .return-tile .quantity .label,
.account .return-tile .price .label {
  font-size: 15px;
}

.account .return-tile img {
  min-width: 150px;
}

.account .quantity,
.account .price {
  text-transform: uppercase;
}

.account .order-total {
  font-weight: bold;
  padding-top: 10px;
}

.account .return-items .left {
  float: left;
  margin: 0;
}

.account .discount {
  color: #DF001A;
}

.account .track-your-order {
  display: block;
}

@media (min-width: 768px) {
  .account .track-your-order {
    padding-right: 30px;
    display: inline-block;
  }
}

.account .whole-item {
  padding-bottom: 1.5em;
}

.account .whole-item .product-list-item .name a {
  pointer-events: none;
  color: #0E0E0E;
}

.account #order-return {
  padding-bottom: 1.5em;
}

.account .return-actions div.left {
  display: block;
  float: none;
  padding-bottom: 1em;
}

@media (min-width: 768px) {
  .account .return-actions div.left {
    padding-right: 1.5em;
    display: inline-block;
    float: left;
    padding-bottom: 0;
  }
}

.account .order-history-table ul {
  list-style-type: none;
}

.account .order-history-table .left {
  float: none;
  padding-top: 1em;
}

@media (min-width: 768px) {
  .account .order-history-table .left {
    float: left;
    padding-right: 5%;
  }
}

.account .order-history-table .label {
  text-transform: lowercase;
}

.account .order-history-table .return-label-generate-form {
  padding-top: 1.5em;
}

.account table.order-history-table {
  width: 100%;
  border-collapse: collapse;
}

.account table.order-history-table td {
  padding: 10px;
}

.account table.order-totals-table {
  width: 100%;
}

.account ul.address-list {
  list-style: none;
}

.account ul.address-list li {
  display: inline-block;
  margin-right: 1em;
  vertical-align: top;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .account ul.address-list li {
    margin-bottom: 40px;
    margin-right: 2em;
  }
}

@media (min-width: 1080px) {
  .account ul.address-list li {
    margin-bottom: 60px;
    margin-right: 1em;
  }
}

.account ul.address-list li.col-lg-2,
.account ul.address-list li.col-md-2,
.account ul.address-list li.col-sm-2 {
  float: none;
}

.account ul.address-list a.address-make-default {
  color: #0E0E0E;
}

.account ul.address-list a.address-edit {
  margin-right: 2em;
  margin-bottom: 1.5em;
}

.account ul.address-list a.address-delete {
  margin-bottom: 1.5em;
}

.account ul.address-list address {
  color: #0E0E0E;
  line-height: 22px;
  margin-bottom: 10px;
}

.account h4.default-address {
  color: #787673;
  margin-top: 45px;
}

@media (min-width: 768px) {
  .account h4.default-address {
    margin-top: 0;
  }
}

.account a.address-create {
  top: 100px;
  left: 0;
  position: absolute;
}

@media (min-width: 768px) {
  .account a.address-create {
    vertical-align: top;
    margin-left: 1em;
    position: relative;
    top: 0;
  }
}

.account form#creditcards_1 fieldset button {
  color: #0363F7;
}

.account ul.payment-list {
  margin-top: 30px;
}

.account ul.payment-list li {
  list-style: none;
  color: #0E0E0E;
}

.account #payments .section-header a {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .account #payments .section-header a {
    margin-top: 0;
  }
}

.account section#ProductQuestions {
  padding-top: 20px;
}

.account .m-form * {
  box-sizing: border-box !important;
}

.account .m-form .required {
  padding-bottom: 0;
}

.account .m-form .e-text__input {
  padding: 9px 15px;
}

/*------------------------------------*
RMA - Start a Return - outside my account template
\*------------------------------------*/

.account-content-area .return-item label,
.account-content-area .return-item .form-label-text {
  color: #0E0E0E;
}

.account-content-area .order-shipment-details .payment ul {
  list-style: none;
  color: #0E0E0E;
}

.account-content-area .order-shipment-details .payment ul li {
  cursor: text;
}

/*------------------------------------*
    Payment Methods - not within account template - pop up module
\*------------------------------------*/

@media (min-width: 768px) {
  form#CreditCardForm {
    min-width: 500px;
  }
}

form#CreditCardForm .form-row {
  padding-top: 20px;
}

form#CreditCardForm .form-row-button button {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  color: #FFF;
  cursor: pointer;
  background: #0363F7;
  border-radius: 100px;
  width: 265px;
  height: 60px;
  transition: background 0.3s;
  border: 0;
  text-transform: none;
}

form#CreditCardForm .form-row-button button:hover {
  background: #002855;
  outline: 0;
  transition: background 0.3s;
}

/*------------------------------------*
    Address Book Popup - not within account template - pop up module
\*------------------------------------*/

h2.medium.add-address {
  margin-left: 15px;
}

@media (min-width: 768px) {
  h2.medium.add-address {
    margin-left: 15px;
  }
}

@media (min-width: 1080px) {
  h2.medium.add-address {
    margin-left: 40px;
  }
}

form#edit-address-form {
  margin: 0 10px 15px 15px;
}

@media (min-width: 768px) {
  form#edit-address-form {
    width: 690px;
    margin: 0 15px 40px;
  }
}

@media (min-width: 1080px) {
  form#edit-address-form {
    width: 948px;
    margin: 0 10px 40px 40px;
  }
}

.inner-address {
  columns: 300px, 2;
  column-gap: 40px;
}

.inner-address .form-row {
  max-width: 300px;
  padding-top: 20px;
}

@media (min-width: 595px) {
  .inner-address .form-row {
    max-width: 275px;
  }
}

@media (min-width: 1080px) {
  .inner-address .form-row {
    max-width: 430px;
  }
}

@media (min-width: 768px) {
  .inner-address .form-row input.e-text__input {
    max-width: 300px;
  }
}

@media (min-width: 1080px) {
  .inner-address .form-row input.e-text__input {
    max-width: 400px;
  }
}

.inner-address .form-row legend {
  padding: 0;
}

.inner-address .form-row legend span {
  padding: 0;
  right: 5px;
}

.inner-address .form-row-button button {
  font-family: "Proxima Bold", "Helvetica", "Arial", sans-serif;
  color: #FFF;
  cursor: pointer;
  background: #0363F7;
  border-radius: 100px;
  width: 265px;
  height: 60px;
  transition: background 0.3s;
  border: 0;
  text-transform: none;
  position: relative;
}

.inner-address .form-row-button button:hover {
  background: #002855;
  outline: 0;
  transition: background 0.3s;
}

.inner-address .form-row.form-row-button {
  margin: 0;
  padding-top: 30px;
}

.inner-address div.form-row:nth-child(2) {
  padding: 0;
}

.inner-address div.form-row:nth-child(7) {
  margin-top: 0;
}

@media (min-width: 595px) {
  .inner-address div.form-row:nth-child(7) {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .inner-address div.form-row:nth-child(7) {
    margin-top: 20px;
  }
}

.inner-address .form-field-tooltip {
  float: left;
  display: none;
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .inner-address .form-field-tooltip {
    display: block;
    min-width: 120px;
  }
}

.inner-address .form-field-tooltip .tooltip {
  position: unset;
  color: #0E0E0E;
  font-size: 0.75rem;
}

.inner-address .form-field-tooltip .tooltip .tooltip-content {
  background-color: #FFF;
  opacity: 1;
  color: #0E0E0E;
  visibility: visible;
  z-index: 1;
  height: auto;
  border: 2px solid #808080;
  border-radius: 0;
  left: 50%;
  top: 50%;
}

/*------------------------------------*
  Checkout - Order Confirmation Page
\*------------------------------------*/

.t-order-confirmation {
  background-color: #F2F2F2;
}

.t-order-confirmation__header,
.t-order-confirmation__body {
  padding: 0 20px;
}

.t-order-confirmation__header > .grid,
.t-order-confirmation__body > .grid {
  -ms-flex-pack: center;
      justify-content: center;
}

.t-order-confirmation__header {
  background-color: #0363F7;
}

.t-order-confirmation__header .m-confirmation-banner {
  margin: 30px 0 60px;
}

@media (min-width: 768px) {
  .t-order-confirmation__header .m-confirmation-banner {
    margin: 40px 0 70px;
  }
}

@media (min-width: 975px) {
  .t-order-confirmation__header .m-confirmation-banner {
    margin: 60px 0 90px;
  }
}

.t-order-confirmation__header .m-confirmation-banner .a-phone-link {
  color: #FFF;
}

.t-order-confirmation__body {
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  top: -30px;
  padding-bottom: 60px;
}

@media (min-width: 595px) {
  .t-order-confirmation__body {
    padding-bottom: 80px;
  }
}

@media (min-width: 1080px) {
  .t-order-confirmation__body {
    padding-bottom: 120px;
  }
}

.t-order-confirmation__body--columns {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media (min-width: 768px) {
  .t-order-confirmation__body--columns {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.t-order-confirmation__ca-form,
.t-order-confirmation__order-summary,
.t-order-confirmation .m-product-summary,
.t-order-confirmation .itemized-pricing {
  margin-bottom: 20px;
}

@media (min-width: 975px) {
  .t-order-confirmation__ca-form,
  .t-order-confirmation__order-summary,
  .t-order-confirmation .m-product-summary,
  .t-order-confirmation .itemized-pricing {
    margin-bottom: 30px;
  }
}

.t-order-confirmation .m-product-summary {
  border-top: 0;
}

/*------------------------------------*
    Checkout Template
\*------------------------------------*/

.t-checkout {
  background-color: #F2F2F2;
}

.t-checkout__body {
  padding: 0 20px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 60px;
}

@media (min-width: 595px) {
  .t-checkout__body {
    padding: 0 40px 80px;
  }
}

@media (min-width: 1080px) {
  .t-checkout__body {
    padding: 0 60px 120px;
  }
}

.t-checkout__body .product-line-item__details {
  display: block;
}

.t-checkout__column {
  margin-bottom: 10px;
}

.t-checkout__column > * {
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .t-checkout__column > * {
    margin-bottom: 30px;
  }
}

.t-checkout .m-checkout-header {
  margin: 0 20px;
}

@media (min-width: 595px) {
  .t-checkout .m-checkout-header {
    margin: 0 40px;
  }
}

@media (min-width: 1080px) {
  .t-checkout .m-checkout-header {
    margin: 0 60px;
  }
}

.t-checkout .a-btn--primary {
  max-width: none;
}

@media (min-width: 595px) {
  .t-checkout .a-btn--primary {
    max-width: 309px;
  }
}

.arbitary__wrapper {
  background: #FFF;
  margin: 40px auto 0;
}

@media (min-width: 595px) {
  .arbitary__wrapper {
    margin: 120px auto 0;
  }
}

.m-block--launch__wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-block--launch__wrapper .m-launch__wrapper--top {
  position: relative;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 35px;
  margin: 0 20px;
}

@media (min-width: 595px) {
  .m-block--launch__wrapper .m-launch__wrapper--top {
    max-width: calc((100% - 80px) * (3/6));
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .m-block--launch__wrapper .m-launch__wrapper--top {
    margin: 0 auto;
    max-width: 47%;
  }
}

.m-block--launch__wrapper .m-launch__wrapper--top .label {
  text-align: center;
}

.m-block--launch__wrapper .m-launch__scroll-block {
  text-align: center;
  max-width: none;
  margin: 0 20px;
  position: relative;
  padding-bottom: 35px;
}

@media (min-width: 595px) {
  .m-block--launch__wrapper .m-launch__scroll-block {
    max-width: calc((100% - 80px) * (4/6));
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .m-block--launch__wrapper .m-launch__scroll-block {
    position: relative;
    transform: none;
    top: initial;
    max-width: 60%;
    margin: 0 auto;
  }
}

.m-block--launch__wrapper .m-launch__scroll-block img {
  position: relative;
  display: block;
  margin: 0 auto;
}

.m-block--launch__wrapper .m-launch__product-detail {
  margin: 0 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  left: 0;
}

.m-block--launch__wrapper .m-launch__product-detail img {
  max-width: 100px;
}

.m-block--launch__wrapper .m-launch__product-detail p {
  max-width: 420px;
  margin: 0 auto;
}

.pt_content .content-asset {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .pt_content .content-asset {
    margin-bottom: 80px;
  }
}

@media (min-width: 1080px) {
  .pt_content .content-asset {
    margin-bottom: 120px;
  }
}

.pt_content .content-asset div#fraud-protection h1 {
  margin-bottom: 30px;
}

.pt_content .content-asset div#fraud-protection h2,
.pt_content .content-asset div#fraud-protection hr,
.pt_content .content-asset div#fraud-protection .type {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .pt_content .content-asset div#fraud-protection h2,
  .pt_content .content-asset div#fraud-protection hr,
  .pt_content .content-asset div#fraud-protection .type {
    margin-top: 60px;
  }
}

.pt_content .content-asset div#fraud-protection ol {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .pt_content .content-asset div#fraud-protection ol {
    margin-top: 30px;
  }
}

#homepage-hero div,
#homepage-hero img {
  max-width: none;
}

#homepage-hero .left,
#homepage-hero .right {
  float: none;
}

#home-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------*
Account - Order Return Confirmation Page
\*------------------------------------*/

.confirmation-page.account-main-content {
  margin: 20px 0 0;
}

.confirmation-page .order-shipment-details {
  display: block;
}

@media (min-width: 768px) {
  .confirmation-page .order-shipment-details {
    display: -ms-flexbox;
    display: flex;
  }
}

.confirmation-page .order-shipment-details .info-block {
  padding-top: 0;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .confirmation-page .order-shipment-details .info-block {
    padding-top: 20px;
  }
}

.confirmation-page section.item-return-list {
  padding-top: 20px;
}

@media (min-width: 768px) {
  .confirmation-page section.item-return-list {
    padding-top: 80px;
  }
}

.confirmation-page .return-tile {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .confirmation-page .return-tile {
    margin-bottom: 120px;
  }
}

.confirmation-page .order-totals-table {
  margin-bottom: 30px;
}

.confirmation-page .long-text-msg {
  padding-top: 20px;
}

@media (min-width: 768px) {
  .confirmation-page .long-text-msg {
    padding-top: 30px;
  }
}

#main.account .confirmation-page p.small.confirmation-number {
  padding-bottom: 0;
  margin-bottom: 0;
}

/*------------------------------------*
Account/returns - Create Return Page
\*------------------------------------*/

.create-return-page .account-main-content {
  margin: 20px 0 0;
}

@media (min-width: 975px) {
  .create-return-page .account-main-content .col-lg-8 {
    float: left;
  }
}

.create-return-page .order-total {
  margin-bottom: 5px;
}

.create-return-page .order-totals-table {
  margin-bottom: 30px;
}

.create-return-page .product-list-item span.label,
.create-return-page .product-list-item span.value,
.create-return-page .product-list-item span.total {
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .create-return-page .product-list-item {
    padding-left: 10px;
  }
}

.create-return-page .return-item {
  display: inline-block;
  border-bottom: 0;
  list-style: none;
}

.create-return-page .return-item .return-info {
  display: block;
}

@media (min-width: 768px) {
  .create-return-page .return-item .return-info {
    display: -ms-flexbox;
    display: flex;
  }
}

.create-return-page .return-item select {
  width: inherit;
  max-width: 275px;
}

@media (min-width: 768px) {
  .create-return-page .return-item select {
    max-width: 290px;
  }
}

.create-return-page .return-item textarea {
  font-size: 12px;
  text-align: left;
  line-height: 1.67;
  letter-spacing: normal;
  width: 300px;
  min-height: 80px;
}

.create-return-page .return-item .additional-info .quantity {
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .create-return-page .return-item .additional-info .quantity {
    padding-bottom: 20px;
  }
}

.create-return-page .return-item .additional-info .comments {
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .create-return-page .return-item .additional-info .comments {
    padding-bottom: 60px;
  }
}

.create-return-page .return-item .additional-info .reason {
  padding-bottom: 30px;
}

.create-return-page .return-item .additional-info .total {
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
}

.create-return-page .return-item .additional-info .price {
  display: none;
}

@media (min-width: 768px) {
  .create-return-page .return-item .additional-info .price {
    display: block;
  }
}

.create-return-page .return-item .site-checkbox__wrapper label.checkbox-label {
  margin: 0 10px 0 0;
}

.create-return-page .return-item .site-checkbox__wrapper.no-border {
  float: none;
}

.create-return-page .return-item .site-checkbox__wrapper.no-border .icon-checkmark {
  position: absolute;
  left: 0;
}

@media (min-width: 768px) {
  .create-return-page .return-item .site-checkbox__wrapper.no-border {
    float: left;
  }
}

.create-return-page .summary-box {
  float: none;
  padding-top: 40px;
}

@media (min-width: 1080px) {
  .create-return-page .summary-box {
    float: right;
    padding-top: 0;
  }
}

.create-return-page .promo {
  color: #DF001A;
}

.special-focus:focus {
  border: solid 1px #0363F7;
  box-shadow: 1px 1px 3px 0 #0363F7, inset 1px 1px 4px 1px #0363F7;
}

/*------------------------------------*
Account/returns - Create Return Error Page
\*------------------------------------*/

.create-return-error-block .telephone-num {
  padding-top: 20px;
}

/*------------------------------------*
Track Return - tracklabel.isml
\*------------------------------------*/

#inmarTrack div.trackLabel,
#inmarTrack div.trackValue {
  display: block;
}

@media (min-width: 768px) {
  #inmarTrack div.trackLabel,
  #inmarTrack div.trackValue {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

#inmarTrack .break-apart th.banner {
  max-width: 100%;
  display: table-cell;
}

/*------------------------------------*
    Contact Customer Service
\*------------------------------------*/

.cs-nav .content-asset {
  margin-bottom: 0;
}

.t-cart {
  background: #F2F2F2;
}

.t-cart__wrapper {
  padding: 0 20px 60px;
}

@media (min-width: 595px) {
  .t-cart__wrapper {
    padding: 0 40px 80px;
  }
}

@media (min-width: 1080px) {
  .t-cart__wrapper {
    padding: 0 60px 120px;
  }
}

.t-cart .m-checkout-header__promo {
  margin: 0;
}

.t-cart .m-checkout-header__promo .a-text-btn--secondary {
  margin-top: 20px;
}

.t-cart__error .alert {
  border: 0;
  background: none;
  padding: 20px 0;
}

.t-cart__body {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.t-cart__body__shipping-method {
  border-top: 1px solid #D3D0CD;
}

@media (min-width: 595px) {
  .t-cart__body__shipping-method {
    border-top: 0;
  }
}

.t-cart__body__shipping-method .m-formfield {
  padding-top: 10px;
}

@media (min-width: 595px) {
  .t-cart__body__shipping-method .m-formfield {
    margin-top: -5px;
    padding-top: 0;
  }
}

.t-cart__body .m-promo-form {
  border-top: 0;
}

@media (min-width: 595px) {
  .t-cart__body .m-promo-form {
    border-top: 1px solid #D3D0CD;
  }
}

.t-cart__body .itemized-pricing {
  margin: 20px 0;
  position: relative;
}

.t-cart__body .m-needhelp {
  margin-top: 30px;
}

@media (min-width: 595px) {
  .t-cart__body .m-needhelp {
    margin-top: 60px;
  }
}

.t-cart .hero {
  background: #FFF;
  margin: 0;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .t-cart .hero {
    padding: 80px 0;
  }
}

@media (min-width: 768px) {
  .t-cart .hero {
    padding: 120px 0;
  }
}

/*------------------------------------*
  Checkout - Interstitial Page
\*------------------------------------*/

.t-interstitial {
  background: #F2F2F2;
}

.t-interstitial__wrapper {
  width: 1320px;
  max-width: 100%;
  padding: 0 20px 60px;
  overflow: hidden;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .t-interstitial__wrapper {
    padding: 0 40px 80px;
  }
}

@media (min-width: 1080px) {
  .t-interstitial__wrapper {
    padding: 0 80px 80px 75px;
  }
}

.t-interstitial__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 768px) {
  .t-interstitial__body {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }

  .t-interstitial__body--section:nth-child(1) {
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .t-interstitial__body--section:nth-child(2) {
    padding-right: 20px;
  }
}

.t-interstitial__body--section {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (min-width: 768px) {
  .t-interstitial__body--section {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.t-interstitial__body--section .m-needhelp {
  padding: 20px 30px;
}

@media (min-width: 768px) {
  .t-interstitial__body--section .m-needhelp {
    margin-top: 0;
  }
}

.t-interstitial .m-card {
  margin-bottom: 30px;
}

.t-interstitial .m-card__body__section {
  border-top: 0;
}

.t-interstitial .m-card__body__section .a-btn {
  max-width: none;
}

@media (min-width: 1080px) {
  .t-interstitial .m-card__body__section .a-btn {
    max-width: 309px;
  }
}

.t-interstitial .m-card__text {
  margin-bottom: 20px;
}

.t-interstitial .m-card__text--no-margin {
  margin: 0;
}

.t-interstitial .m-login-form {
  margin-bottom: 0;
}

/*------------------------------------*
    $PATTERN LIBRARY SPECIFIC STYLING -- This is styling that is added only for the aesthetic feel of the pattern library
\*------------------------------------*/

.patternLink {
  color: #444;
}

.logo--black,
.logo--blue {
  display: inline-block;
  margin-right: 50px;
}

.sg-pattern-example .a-btn {
  margin-bottom: 30px;
}

.bg-gray-50 {
  background-color: #808080;
}

.black {
  color: #0E0E0E;
}