Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*============================================================================
  2.   Debut | Built with Shopify Slate
  3.  
  4.   Some things to know about this file:
  5.     - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
  6.     - The output CSS is compressed and comments are removed
  7.     - You cannot use native CSS/Sass @imports in this file without a build script
  8. ==============================================================================*/
  9.  
  10. /*================ SASS HELPERS ================*/
  11. /*============================================================================
  12.   Convert pixels to ems
  13.   eg. for a relational value of 12px write em(12) when the parent is 16px
  14.   if the parent is another value say 24px write em(12, 24)
  15.   Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
  16. ==============================================================================*/
  17. @function em($pxval, $base: $font-size-base) {
  18.   @if not unitless($pxval) {
  19.     $pxval: strip-units($pxval);
  20.   }
  21.   @if not unitless($base) {
  22.     $base: strip-units($base);
  23.   }
  24.   @return ($pxval / $base) * 1em;
  25. }
  26.  
  27. /*============================================================================
  28.   Strips the unit from a number.
  29.   @param {Number (With Unit)} $value
  30.   @example scss - Usage
  31.     $dimension: strip-units(10em);
  32.   @example css - CSS Output
  33.     $dimension: 10;
  34.   @return {Number (Unitless)}
  35.   based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
  36. ==============================================================================*/
  37. @function strip-units($value) {
  38.   @return ($value / ($value * 0 + 1));
  39. }
  40.  
  41. /*============================================================================
  42.   Return a color based on the brightness of an existing color.
  43.   Need to pass in brightness because it is calculated with Liquid.
  44.   @param {Number} $brightness
  45.   @param {String} $color
  46.   @example scss - Usage
  47.     $focusColor: adaptiveColor(#000, 0);
  48.   @example css - CSS Output
  49.     $focusColor: #404040;
  50.   @return {String}
  51. ==============================================================================*/
  52.  
  53. @function adaptiveColor($color, $brightness) {
  54.   @if $brightness <= 26 {
  55.     @return lighten($color, 25%)
  56.   }
  57.   @if $brightness <= 64 {
  58.     @return lighten($color, 15%)
  59.   } @else {
  60.     @return darken($color, 10%)
  61.   }
  62. }
  63.  
  64. /*================ #Mixins ================*/
  65. @mixin clearfix() {
  66.   &::after {
  67.     content: '';
  68.     display: table;
  69.     clear: both;
  70.   }
  71.  
  72.   // sass-lint:disable no-misspelled-properties
  73.   *zoom: 1;
  74. }
  75.  
  76. /*============================================================================
  77.   Prefix mixin for generating vendor prefixes.
  78.   Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
  79.  
  80.   Usage:
  81.     // Input:
  82.     .element {
  83.       @include prefix(transform, scale(1), ms webkit spec);
  84.     }
  85.  
  86.     // Output:
  87.     .element {
  88.       -ms-transform: scale(1);
  89.       -webkit-transform: scale(1);
  90.       transform: scale(1);
  91.     }
  92. ==============================================================================*/
  93. @mixin prefix($property, $value, $prefixes) {
  94.   @each $prefix in $prefixes {
  95.     @if $prefix == webkit {
  96.       -webkit-#{$property}: $value;
  97.     } @else if $prefix == moz {
  98.       -moz-#{$property}: $value;
  99.     } @else if $prefix == ms {
  100.       -ms-#{$property}: $value;
  101.     } @else if $prefix == o {
  102.       -o-#{$property}: $value;
  103.     } @else if $prefix == spec {
  104.       #{$property}: $value;
  105.     } @else  {
  106.       @warn 'Unrecognized prefix: #{$prefix}';
  107.     }
  108.   }
  109. }
  110.  
  111. @mixin user-select($value: none) {
  112.   @include prefix('user-select', #{$value}, moz ms webkit spec);
  113. }
  114.  
  115. /*================ Media Query Mixin ================*/
  116. @mixin media-query($media-query) {
  117.   $breakpoint-found: false;
  118.  
  119.   @each $breakpoint in $grid-breakpoints {
  120.     $name: nth($breakpoint, 1);
  121.     $declaration: nth($breakpoint, 2);
  122.  
  123.     @if $media-query == $name and $declaration {
  124.       $breakpoint-found: true;
  125.  
  126.       @media only screen and #{$declaration} {
  127.         @content;
  128.       }
  129.     }
  130.   }
  131.  
  132.   @if $breakpoint-found == false {
  133.     @warn 'Breakpoint "#{$media-query}" does not exist';
  134.   }
  135. }
  136.  
  137. /*================ Responsive Show/Hide Helper ================*/
  138. @mixin responsive-display-helper($grid-breakpoint-type: '') {
  139.   // sass-lint:disable no-important
  140.   .#{$grid-breakpoint-type}show {
  141.     display: block !important;
  142.   }
  143.  
  144.   .#{$grid-breakpoint-type}hide {
  145.     display: none !important;
  146.   }
  147. }
  148.  
  149.  
  150. /*================ Responsive Text Alignment Helper ================*/
  151. @mixin responsive-text-align-helper($grid-breakpoint-type: '') {
  152.   // sass-lint:disable no-important
  153.   .#{$grid-breakpoint-type}text-left {
  154.     text-align: left !important;
  155.   }
  156.  
  157.   .#{$grid-breakpoint-type}text-right {
  158.     text-align: right !important;
  159.   }
  160.  
  161.   .#{$grid-breakpoint-type}text-center {
  162.     text-align: center !important;
  163.   }
  164. }
  165.  
  166. @mixin placeholder-text($color: $color-text-field-text, $opacity: 0.6) {
  167.   color: $color;
  168.   opacity: $opacity;
  169. }
  170.  
  171. @mixin error-placeholder-text($color: $color-error-input-text, $opacity: 0.5) {
  172.   color: $color;
  173.   opacity: $opacity;
  174. }
  175.  
  176. @mixin transform($transform) {
  177.   @include prefix(transform, $transform, ms webkit spec);
  178. }
  179.  
  180. @mixin transition($transition) {
  181.   @include prefix(transition, $transition, ms webkit spec);
  182. }
  183.  
  184. @mixin gradient($side, $from, $to) {
  185.   background: -ms-linear-gradient($side, $from 0%, $to 100%);
  186.   background: linear-gradient(to $side, $from 0%, $to 100%);
  187. }
  188.  
  189. @mixin spinner($size: 20px, $color: $color-btn-primary-text) {
  190.   content: '';
  191.   display: block;
  192.   width: $size;
  193.   height: $size;
  194.   position: absolute;
  195.   margin-left: - $size / 2;
  196.   margin-top: - $size / 2;
  197.   border-radius: 50%;
  198.   border: 3px solid $color;
  199.   border-top-color: transparent;
  200. }
  201.  
  202. @mixin visually-hidden() {
  203.   // sass-lint:disable no-important
  204.   position: absolute !important;
  205.   overflow: hidden;
  206.   clip: rect(0 0 0 0);
  207.   height: 1px;
  208.   width: 1px;
  209.   margin: -1px;
  210.   padding: 0;
  211.   border: 0;
  212. }
  213.  
  214. @mixin visually-shown() {
  215.   // sass-lint:disable no-important
  216.   position: inherit !important;
  217.   overflow: auto;
  218.   clip: auto;
  219.   width: auto;
  220.   height: auto;
  221.   margin: 0;
  222. }
  223.  
  224. @mixin overlay($z-index: null) {
  225.   &::before {
  226.     content: '';
  227.     position: absolute;
  228.     top: 0;
  229.     right: 0;
  230.     bottom: 0;
  231.     left: 0;
  232.     background-color: $color-image-overlay;
  233.     opacity: $opacity-image-overlay;
  234.  
  235.     @if ($z-index) {
  236.       z-index: $z-index;
  237.     }
  238.   }
  239. }
  240.  
  241. @mixin default-focus-ring() {
  242.   outline: 1px dotted #212121;
  243.   outline: 5px auto -webkit-focus-ring-color;
  244. }
  245.  
  246. /*============================================================================
  247.   Flexbox prefix mixins from Bourbon
  248.     https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
  249. ==============================================================================*/
  250. @mixin display-flexbox() {
  251.   display: -webkit-flex;
  252.   display: -ms-flexbox;
  253.   display: flex;
  254.   width: 100%; // necessary for ie10
  255. }
  256.  
  257. @mixin flex-wrap($value: nowrap) {
  258.   @include prefix(flex-wrap, $value, webkit moz ms spec);
  259. }
  260.  
  261. @mixin flex-direction($value) {
  262.   @include prefix(flex-direction, $value, webkit moz ms spec);
  263. }
  264.  
  265. @mixin align-items($value: stretch) {
  266.   $alt-value: $value;
  267.  
  268.   @if $value == 'flex-start' {
  269.     $alt-value: start;
  270.   } @else if $value == 'flex-end' {
  271.     $alt-value: end;
  272.   }
  273.  
  274.   // sass-lint:disable no-misspelled-properties
  275.   -ms-flex-align: $alt-value;
  276.   @include prefix(align-items, $value, webkit moz ms o spec);
  277. }
  278.  
  279. @mixin flex($value: 0 1 auto) {
  280.   @include prefix(flex, $value, webkit moz ms spec);
  281. }
  282.  
  283. @mixin flex-basis($width: auto) {
  284.   // sass-lint:disable no-misspelled-properties
  285.   -ms-flex-preferred-size: $width;
  286.   @include prefix(flex-basis, $width, webkit moz spec);
  287. }
  288.  
  289. @mixin align-self($align: auto) {
  290.   // sass-lint:disable no-misspelled-properties
  291.   -ms-flex-item-align: $align;
  292.   @include prefix(align-self, $align, webkit spec);
  293. }
  294.  
  295. @mixin align-content($align: center) {
  296.   @include prefix(align-content, $align, webkit ms spec);
  297. }
  298.  
  299. @mixin justify-content($justify: flex-start) {
  300.   @include prefix(justify-content, $justify, webkit ms spec);
  301. }
  302.  
  303.  
  304. /*================ VARIABLES ================*/
  305. /*============================================================================
  306.   Grid Breakpoints and Class Names
  307.     - Do not change the variable names
  308.     - $grid-narrowscreen is based on a Shopify breakpoint for checkout buttons
  309. ==============================================================================*/
  310. $grid-narrowscreen: 500px;
  311. $grid-medium: 750px;
  312. $grid-large: 990px;
  313. $grid-widescreen: 1400px;
  314. $grid-gutter: 30px;
  315. $grid-gutter-mobile: 22px;
  316.  
  317. $narrowscreen: 'narrowscreen';
  318. $small: 'small';
  319. $medium: 'medium';
  320. $medium-down: 'medium-down';
  321. $medium-up: 'medium-up';
  322. $large: 'large';
  323. $large-down: 'large-down';
  324. $large-up: 'large-up';
  325. $widescreen: 'widescreen';
  326.  
  327. /*============================================================================
  328.   Generate breakpoint-specific column widths and push classes
  329.     - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
  330.     - Default is no push classes
  331. ==============================================================================*/
  332. $grid-breakpoint-has-widths: ($small, $medium-up);
  333. $grid-breakpoint-has-push: ($small, $medium-up);
  334.  
  335. /*================ Color Variables ================*/
  336.  
  337. // Text colors
  338. $color-text: {{ settings.color_text }};
  339. $color-text-shadow: rgba(0,0,0,0.4);
  340. $color-body-text: {{ settings.color_body_text }};
  341. $color-sale-text: {{ settings.color_sale_text }};
  342. $color-small-button-text-border: {{ settings.color_small_button_text_border }};
  343. $color-text-field: {{ settings.color_text_field }};
  344. $color-text-field-text: {{ settings.color_text_field_text }};
  345. $color-navigation-text: {{ settings.color_text }};
  346.  
  347. // Button colors
  348. $color-btn-primary: {{ settings.color_button }};
  349. $color-btn-primary-text: {{ settings.color_button_text }};
  350.  
  351. // Hover and focus states
  352. $color-text-focus: adaptiveColor({{ settings.color_text }}, {{ settings.color_text | color_brightness }});
  353. $color-overlay-text-focus: adaptiveColor({{ settings.color_image_overlay_text }}, {{ settings.color_image_overlay_text | color_brightness }});
  354. $color-btn-primary-focus: adaptiveColor({{ settings.color_button }}, {{ settings.color_button | color_brightness }});
  355. $color-btn-social-focus: adaptiveColor({{ settings.color_borders }}, {{ settings.color_borders | color_brightness }});
  356. $color-small-button-text-border-focus: adaptiveColor({{ settings.color_small_button_text_border }}, {{ settings.color_small_button_text_border | color_brightness }});
  357.  
  358. // Link buttons and secondary cta
  359. $color-link: $color-body-text;
  360. $opacity-link-hover: 0.6;
  361. $transition-link-hover: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  362.  
  363. // Backgrounds
  364. $color-body: {{ settings.color_body_bg }};
  365. $color-bg: {{ settings.color_body_bg }};
  366. $color-drawer-background: rgba(0, 0, 0, 0.6);
  367. $color-bg-alt: {{ settings.color_body_text | color_modify: 'alpha', 0.05 }};
  368.  
  369. // Overlays
  370. $color-overlay-title-text: {{ settings.color_image_overlay_text }};
  371. $color-image-overlay: {{ settings.color_image_overlay }};
  372. $opacity-image-overlay: {{ settings.image_overlay_opacity | divided_by: 100.00 }};
  373.  
  374. {%- comment -%}
  375.   Based on the image overlay opacity, either lighten or darken the image on hover
  376. {%- endcomment -%}
  377. {% assign image_overlay_opacity = settings.image_overlay_opacity | divided_by: 100.00 %};
  378.  
  379. {% if image_overlay_opacity > 0.85 %}
  380.   {% assign image_overlay_opacity_hover = image_overlay_opacity | minus: 0.3 %};
  381. {% else %}
  382.   {% assign image_overlay_opacity_hover = image_overlay_opacity | plus: 0.4 %};
  383. {% endif %}
  384. $hover-overlay-opacity: {{ image_overlay_opacity_hover | at_most: 1 }};
  385.  
  386. // Border colors
  387. $color-border: {{ settings.color_borders }};
  388. $color-border-form: transparentize($color-text, 0.15);
  389.  
  390. // Helper colors for form error states
  391. $color-disabled: #f4f4f4;
  392. $color-disabled-border: #f4f4f4;
  393. $color-error: #d20000;
  394. $color-error-bg: #fff8f8;
  395. $color-success: #1F873D;
  396. $color-success-bg: #f8fff9;
  397.  
  398. // Forms
  399. $color-form-text: #333;
  400. $color-error-input-text: $color-error;
  401. $input-padding-top-bottom: 10px;
  402. $input-padding-left-right: 18px;
  403. $input-padding-top-bottom-small: 8px;
  404. $input-padding-left-right-small: 15px;
  405. $input-group-height: 46px;
  406. $input-group-height-small: 42px;
  407.  
  408. // Social icons
  409. $color-facebook: #3b5998;
  410. $color-twitter: #00aced;
  411. $color-pinterest: #cb2027;
  412.  
  413. /*================ Sizing Variables ================*/
  414. $width-site: 1200px;
  415. $gutter-site: 55px;
  416. $gutter-site-mobile: 22px;
  417. $section-spacing: 55px;
  418. $section-spacing-small: 35px;
  419. $border-radius: 2px;
  420.  
  421. /*================ Z-Index ================*/
  422. $z-index-dropdown : 7;
  423. $z-index-sub-nav: 8;
  424. $z-index-drawer: 9;
  425. $z-index-announcement-bar: 10;
  426. $z-index-skip-to-content: 10000; // really high to be safe of app markup
  427.  
  428. /*================ SVG ================*/
  429. $svg-select-icon: #{'{{ "ico-select.svg" | asset_url }}'};
  430.  
  431. /*================ Drawers ================*/
  432. $transition-drawer: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  433.  
  434. /*================ Hero Slider ================*/
  435. $color-slideshow-arrows: #000;
  436. $color-slideshow-dots: #fff;
  437.  
  438. $transition-text-slideshow: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  439. $transition-image-slideshow: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  440.  
  441. /*================ Typography ================*/
  442.  
  443. {% assign header_font = settings.type_header_font %}
  444. {% assign base_font = settings.type_base_font %}
  445.  
  446. {{ header_font | font_face }}
  447. {{ base_font | font_face }}
  448.  
  449. {% if settings.type_bold_product_titles %}
  450.   {%- assign header_font_bold = header_font | font_modify: 'weight', 'bolder' -%}
  451. {% endif %}
  452.  
  453. {%- assign base_font_bold = base_font | font_modify: 'weight', 'bolder' -%}
  454. {%- assign base_font_italic = base_font | font_modify: 'style', 'italic' -%}
  455. {%- assign base_font_bold_italic = base_font_bold | font_modify: 'style', 'italic' -%}
  456.  
  457. {{ header_font_bold | font_face }}
  458. {{ base_font_bold | font_face }}
  459. {{ base_font_italic | font_face }}
  460. {{ base_font_bold_italic | font_face }}
  461.  
  462. $font-weight-body--bold: {{ base_font_bold.weight | default: 700 }};
  463. $font-weight-header--bold: {{ header_font_bold.weight | default: 700 }};
  464.  
  465. /*$font-stack-header: {{ header_font.family }}, {{ header_font.fallback_families }};*/
  466. $font-stack-header: 'neuropol', {{ base.font_family }}
  467. $font-style-header: {{ header_font.style }};
  468. $font-weight-header: {{ header_font.weight }};
  469.  
  470. /*$font-stack-body: {{ base_font.family }}, {{ base_font.fallback_families }};*/
  471. $font-stack-body: 'neuropol', {{ base.font_family }}
  472. $font-style-body: {{ base_font.style }};
  473. $font-weight-body: {{ base_font.weight }};
  474.  
  475. $font-size-header: {{ settings.type_header_base_size }}px;
  476. $font-bold-titles: {{ settings.type_bold_product_titles }};
  477.  
  478. $font-size-base: {{ settings.type_base_size }}px; // Henceforth known as 1em
  479.  
  480. $font-stack-cart-notification: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  481.  
  482. $font-size-mobile-input: 16px; // min 16px to prevent zooming
  483.  
  484. /*================ Gift Cards ================*/
  485. $color-giftcard-tooltip-fallback: #333;
  486. $color-giftcard-light: #fff;
  487. $color-giftcard-tooltip: rgba(0, 0, 0, 0.9);
  488. $color-giftcard-disabled: #999;
  489. $color-giftcard-small-text: #b3b3b3;
  490. $color-giftcard-shadow: rgba(0, 0, 0, 0.1);
  491. $color-giftcard-print-bg: #fff;
  492. $color-giftcard-print: #000;
  493. $color-giftcard-bg: #e95e61;
  494.  
  495. /*================ Z-index ================*/
  496. $z-index-giftcard-image: 2;
  497. $z-index-giftcard-corners: 3;
  498. $z-index-giftcard-tooltip: 4;
  499. $z-index-giftcard-code: 5;
  500.  
  501.  
  502. /*================ VENDOR ================*/
  503. /*============================================================================
  504.   Slick Slider 1.6.0
  505.  
  506.   - If upgrading Slick's styles, use the following variables/functions
  507.     instead of the slick defaults (from slick-theme.scss)
  508.   - This file includes default slick.scss styles (at Slick Slider SCSS)
  509.     and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  510.   - Remove `outline: none` from `.slick-dots li button`
  511. ==============================================================================*/
  512. $slick-font-family: "slick-icons, sans-serif";
  513. $slick-arrow-color: $color-slideshow-arrows;
  514. $slick-dot-color: $color-slideshow-dots;
  515. $slick-dot-color-active: $slick-dot-color !default;
  516. $slick-prev-character: '\2190';
  517. $slick-next-character: '\2192';
  518. $slick-dot-character: '\2022';
  519. $slick-dot-size: 6px;
  520. $slick-opacity-default: 0.75;
  521. $slick-opacity-on-hover: 1;
  522. $slick-opacity-not-active: 0.25;
  523.  
  524. // Only called once so make sure proper file is grabbed
  525. @function slick-image-url($url) {
  526.   @return url({{ "ajax-loader.gif" | asset_url }});
  527. }
  528.  
  529. // Unused intentionally
  530. @function slick-font-url($url) {}
  531.  
  532. /*================ Slick Slider SCSS ================*/
  533. .slick-slider {
  534.   position: relative;
  535.   display: block;
  536.   box-sizing: border-box;
  537.   -webkit-touch-callout: none;
  538.   -webkit-user-select: none;
  539.   -khtml-user-select: none;
  540.   -moz-user-select: none;
  541.   -ms-user-select: none;
  542.   user-select: none;
  543.   -ms-touch-action: pan-y;
  544.   touch-action: pan-y;
  545.   -webkit-tap-highlight-color: transparent;
  546. }
  547. .slick-list {
  548.   position: relative;
  549.   overflow: hidden;
  550.   display: block;
  551.   margin: 0;
  552.   padding: 0;
  553.  
  554.   &:focus {
  555.     outline: none;
  556.   }
  557.  
  558.   &.dragging {
  559.     cursor: pointer;
  560.     cursor: hand;
  561.   }
  562. }
  563. .slick-slider .slick-track,
  564. .slick-slider .slick-list {
  565.   -webkit-transform: translate3d(0, 0, 0);
  566.   -moz-transform: translate3d(0, 0, 0);
  567.   -ms-transform: translate3d(0, 0, 0);
  568.   -o-transform: translate3d(0, 0, 0);
  569.   transform: translate3d(0, 0, 0);
  570. }
  571.  
  572. .slick-track {
  573.   position: relative;
  574.   left: 0;
  575.   top: 0;
  576.   display: block;
  577.  
  578.   &:before,
  579.   &:after {
  580.     content: "";
  581.     display: table;
  582.   }
  583.  
  584.   &:after {
  585.     clear: both;
  586.   }
  587.  
  588.   .slick-loading & {
  589.     visibility: hidden;
  590.   }
  591. }
  592. .slick-slide {
  593.   float: left;
  594.   height: 100%;
  595.   min-height: 1px;
  596.   [dir="rtl"] & {
  597.     float: right;
  598.   }
  599.   img {
  600.     display: block;
  601.   }
  602.   &.slick-loading img {
  603.     display: none;
  604.   }
  605.  
  606.   display: none;
  607.  
  608.   &.dragging img {
  609.     pointer-events: none;
  610.   }
  611.  
  612.   .slick-initialized & {
  613.     display: block;
  614.   }
  615.  
  616.   .slick-loading & {
  617.     visibility: hidden;
  618.   }
  619.  
  620.   .slick-vertical & {
  621.     display: block;
  622.     height: auto;
  623.     border: 1px solid transparent;
  624.   }
  625. }
  626. .slick-arrow.slick-hidden {
  627.   display: none;
  628. }
  629.  
  630. /*================ Slick Slider Theme ================*/
  631. .slick-list {
  632.   .slick-loading & {
  633.     background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
  634.   }
  635. }
  636.  
  637. /* Icons */
  638. @if $slick-font-family == "slick" {
  639.   @font-face {
  640.     font-family: "slick";
  641.     src: slick-font-url("slick.eot");
  642.     src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
  643.     font-weight: normal;
  644.     font-style: normal;
  645.   }
  646. }
  647.  
  648. /* Arrows */
  649.  
  650. .slick-prev,
  651. .slick-next {
  652.   position: absolute;
  653.   display: block;
  654.   height: 20px;
  655.   width: 20px;
  656.   line-height: 0px;
  657.   font-size: 0px;
  658.   cursor: pointer;
  659.   background: transparent;
  660.   color: transparent;
  661.   top: 50%;
  662.   -webkit-transform: translate(0, -50%);
  663.   -ms-transform: translate(0, -50%);
  664.   transform: translate(0, -50%);
  665.   padding: 0;
  666.   border: none;
  667.   &:hover, &:focus {
  668.     background: transparent;
  669.     color: transparent;
  670.     &:before {
  671.       opacity: $slick-opacity-on-hover;
  672.     }
  673.   }
  674.   &.slick-disabled:before {
  675.     opacity: $slick-opacity-not-active;
  676.   }
  677.   &:before {
  678.     font-family: $slick-font-family;
  679.     font-size: 20px;
  680.     line-height: 1;
  681.     color: $slick-arrow-color;
  682.     opacity: $slick-opacity-default;
  683.     -webkit-font-smoothing: antialiased;
  684.     -moz-osx-font-smoothing: grayscale;
  685.   }
  686. }
  687.  
  688. .slick-prev {
  689.   left: -25px;
  690.   [dir="rtl"] & {
  691.     left: auto;
  692.     right: -25px;
  693.   }
  694.   &:before {
  695.     content: $slick-prev-character;
  696.     [dir="rtl"] & {
  697.       content: $slick-next-character;
  698.     }
  699.   }
  700. }
  701.  
  702. .slick-next {
  703.   right: -25px;
  704.   [dir="rtl"] & {
  705.     left: -25px;
  706.     right: auto;
  707.   }
  708.   &:before {
  709.     content: $slick-next-character;
  710.     [dir="rtl"] & {
  711.       content: $slick-prev-character;
  712.     }
  713.   }
  714. }
  715.  
  716. /* Dots */
  717.  
  718. .slick-dotted.slick-slider {
  719.   margin-bottom: 30px;
  720. }
  721.  
  722. .slick-dots {
  723.   position: absolute;
  724.   bottom: -25px;
  725.   list-style: none;
  726.   display: block;
  727.   text-align: center;
  728.   padding: 0;
  729.   margin: 0;
  730.   width: 100%;
  731.   li {
  732.     position: relative;
  733.     display: inline-block;
  734.     height: 20px;
  735.     width: 20px;
  736.     margin: 0 5px;
  737.     padding: 0;
  738.     cursor: pointer;
  739.     button {
  740.       border: 0;
  741.       background: transparent;
  742.       display: block;
  743.       height: 20px;
  744.       width: 20px;
  745.       line-height: 0px;
  746.       font-size: 0px;
  747.       color: transparent;
  748.       padding: 5px;
  749.       cursor: pointer;
  750.       &:hover, &:focus {
  751.         &:before {
  752.           opacity: $slick-opacity-on-hover;
  753.         }
  754.       }
  755.       &:before {
  756.         position: absolute;
  757.         top: 0;
  758.         left: 0;
  759.         content: $slick-dot-character;
  760.         width: 20px;
  761.         height: 20px;
  762.         font-family: $slick-font-family;
  763.         font-size: $slick-dot-size;
  764.         line-height: 20px;
  765.         text-align: center;
  766.         color: $slick-dot-color;
  767.         opacity: $slick-opacity-not-active;
  768.         -webkit-font-smoothing: antialiased;
  769.         -moz-osx-font-smoothing: grayscale;
  770.       }
  771.     }
  772.     &.slick-active button:before {
  773.       color: $slick-dot-color-active;
  774.       opacity: $slick-opacity-default;
  775.     }
  776.   }
  777. }
  778.  
  779.  
  780. /*================ GLOBAL ================*/
  781. /*============================================================================
  782.   #Normalize
  783.   Based on normalize.css v3.0.2 | MIT License | git.io/normalize
  784. ==============================================================================*/
  785. *,
  786. *::before,
  787. *::after {
  788.   box-sizing: border-box;
  789. }
  790.  
  791. body {
  792.   margin: 0;
  793. }
  794.  
  795. article,
  796. aside,
  797. details,
  798. figcaption,
  799. figure,
  800. footer,
  801. header,
  802. hgroup,
  803. main,
  804. menu,
  805. nav,
  806. section,
  807. summary {
  808.   display: block;
  809. }
  810.  
  811. body,
  812. input,
  813. textarea,
  814. button,
  815. select {
  816.   -webkit-font-smoothing: antialiased;
  817.   -webkit-text-size-adjust: 100%;
  818. }
  819.  
  820. a {
  821.   background-color: transparent;
  822. }
  823.  
  824. b,
  825. strong {
  826.   font-weight: $font-weight-body--bold;
  827. }
  828.  
  829. em {
  830.   font-style: italic;
  831. }
  832.  
  833.  
  834. small {
  835.   font-size: 80%;
  836. }
  837.  
  838. sub,
  839. sup {
  840.   font-size: 75%;
  841.   line-height: 0;
  842.   position: relative;
  843.   vertical-align: baseline;
  844. }
  845.  
  846. sup {
  847.   top: -0.5em;
  848. }
  849.  
  850. sub {
  851.   bottom: -0.25em;
  852. }
  853.  
  854. img {
  855.   max-width: 100%;
  856.   border: 0;
  857. }
  858.  
  859. button,
  860. input,
  861. optgroup,
  862. select,
  863. textarea {
  864.   color: inherit;
  865.   font: inherit;
  866.   margin: 0;
  867. }
  868.  
  869. button,
  870. html input {
  871.   &[disabled] {
  872.     cursor: default;
  873.   }
  874. }
  875.  
  876. button::-moz-focus-inner,
  877. [type="button"]::-moz-focus-inner,
  878. [type="reset"]::-moz-focus-inner,
  879. [type="submit"]::-moz-focus-inner {
  880.   border-style: none;
  881.   padding: 0;
  882. }
  883.  
  884. button:-moz-focusring,
  885. [type="button"]:-moz-focusring,
  886. [type="reset"]:-moz-focusring,
  887. [type="submit"]:-moz-focusring {
  888.   outline: 1px dotted ButtonText;
  889. }
  890.  
  891. input {
  892.   &[type="search"],
  893.   &[type="number"],
  894.   &[type="email"],
  895.   &[type="password"] {
  896.     -webkit-appearance: none;
  897.     -moz-appearance: none;
  898.   }
  899. }
  900.  
  901. table {
  902.   width: 100%;
  903.   border-collapse: collapse;
  904.   border-spacing: 0;
  905. }
  906.  
  907. td,
  908. th {
  909.   padding: 0;
  910. }
  911.  
  912. textarea {
  913.   overflow: auto;
  914.   -webkit-appearance: none;
  915.   -moz-appearance: none;
  916. }
  917.  
  918. /*============================================================================
  919.   Fast Tap
  920.   enables no-delay taps (FastClick-esque) on supporting browsers
  921. ==============================================================================*/
  922. a,
  923. button,
  924. [role="button"],
  925. input,
  926. label,
  927. select,
  928. textarea {
  929.   touch-action: manipulation;
  930. }
  931.  
  932. /*============================================================================
  933.   #Grid
  934. ==============================================================================*/
  935.  
  936. // The `$grid-breakpoints` list is used to build our media queries.
  937. // You can use these in the media-query mixin.
  938. $grid-breakpoints: (
  939.   $narrowscreen '(max-width: #{$grid-narrowscreen})',
  940.   $small '(max-width: #{$grid-medium - 1})',
  941.   $medium '(min-width: #{$grid-medium}) and (max-width: #{$grid-large - 1})',
  942.   $medium-down '(max-width: #{$grid-large - 1})',
  943.   $medium-up '(min-width: #{$grid-medium})',
  944.   $large '(min-width: #{$grid-large}) and (max-width: #{$grid-widescreen - 1})',
  945.   $large-down '(max-width: #{$grid-widescreen - 1})',
  946.   $large-up '(min-width: #{$grid-large})',
  947.   $widescreen '(min-width: #{$grid-widescreen})'
  948. );
  949.  
  950. /*============================================================================
  951.   Grid Setup
  952.     1. Allow the grid system to be used on lists.
  953.     2. Remove any margins and paddings that might affect the grid system.
  954.     3. Apply a negative `margin-left` to negate the columns' gutters.
  955. ==============================================================================*/
  956. .grid {
  957.   @include clearfix();
  958.   list-style: none;
  959.   margin: 0;
  960.   padding: 0;
  961.   margin-left: -$grid-gutter;
  962.  
  963.   @include media-query($small) {
  964.     margin-left: -$grid-gutter-mobile;
  965.   }
  966. }
  967.  
  968. .grid__item {
  969.   float: left;
  970.   padding-left: $grid-gutter;
  971.   width: 100%;
  972.  
  973.   @include media-query($small) {
  974.     padding-left: $grid-gutter-mobile;
  975.   }
  976.  
  977.   &[class*="--push"] {
  978.     position: relative;
  979.   }
  980. }
  981.  
  982. /*============================================================================
  983.   Reversed grids allow you to structure your source in the opposite
  984.   order to how your rendered layout will appear.
  985. ==============================================================================*/
  986. .grid--rev {
  987.   direction: rtl;
  988.   text-align: left;
  989.  
  990.   > .grid__item {
  991.     direction: ltr;
  992.     text-align: left;
  993.     float: right;
  994.   }
  995. }
  996.  
  997. /*============================================================================
  998.   Grid Columns
  999.     - Create width classes, prepended by the breakpoint name.
  1000. ==============================================================================*/
  1001. // sass-lint:disable brace-style empty-line-between-blocks
  1002. @mixin grid-column-generator($grid-breakpoint-type: '') {
  1003.   /* Whole */
  1004.   .#{$grid-breakpoint-type}one-whole { width: 100%; }
  1005.  
  1006.   /* Halves */
  1007.   .#{$grid-breakpoint-type}one-half { width: percentage(1 / 2); }
  1008.  
  1009.   /* Thirds */
  1010.   .#{$grid-breakpoint-type}one-third { width: percentage(1 / 3); }
  1011.   .#{$grid-breakpoint-type}two-thirds { width: percentage(2 / 3); }
  1012.  
  1013.   /* Quarters */
  1014.   .#{$grid-breakpoint-type}one-quarter { width: percentage(1 / 4); }
  1015.   .#{$grid-breakpoint-type}two-quarters { width: percentage(2 / 4); }
  1016.   .#{$grid-breakpoint-type}three-quarters { width: percentage(3 / 4); }
  1017.  
  1018.   /* Fifths */
  1019.   .#{$grid-breakpoint-type}one-fifth { width: percentage(1 / 5); }
  1020.   .#{$grid-breakpoint-type}two-fifths { width: percentage(2 / 5); }
  1021.   .#{$grid-breakpoint-type}three-fifths { width: percentage(3 / 5); }
  1022.   .#{$grid-breakpoint-type}four-fifths { width: percentage(4 / 5); }
  1023.  
  1024.   /* Sixths */
  1025.   .#{$grid-breakpoint-type}one-sixth { width: percentage(1 / 6); }
  1026.   .#{$grid-breakpoint-type}two-sixths { width: percentage(2 / 6); }
  1027.   .#{$grid-breakpoint-type}three-sixths { width: percentage(3 / 6); }
  1028.   .#{$grid-breakpoint-type}four-sixths { width: percentage(4 / 6); }
  1029.   .#{$grid-breakpoint-type}five-sixths { width: percentage(5 / 6); }
  1030.  
  1031.   /* Eighths */
  1032.   .#{$grid-breakpoint-type}one-eighth { width: percentage(1 / 8); }
  1033.   .#{$grid-breakpoint-type}two-eighths { width: percentage(2 / 8); }
  1034.   .#{$grid-breakpoint-type}three-eighths { width: percentage(3 / 8); }
  1035.   .#{$grid-breakpoint-type}four-eighths { width: percentage(4 / 8); }
  1036.   .#{$grid-breakpoint-type}five-eighths { width: percentage(5 / 8); }
  1037.   .#{$grid-breakpoint-type}six-eighths { width: percentage(6 / 8); }
  1038.   .#{$grid-breakpoint-type}seven-eighths { width: percentage(7 / 8); }
  1039.  
  1040.   /* Tenths */
  1041.   .#{$grid-breakpoint-type}one-tenth { width: percentage(1 / 10); }
  1042.   .#{$grid-breakpoint-type}two-tenths { width: percentage(2 / 10); }
  1043.   .#{$grid-breakpoint-type}three-tenths { width: percentage(3 / 10); }
  1044.   .#{$grid-breakpoint-type}four-tenths { width: percentage(4 / 10); }
  1045.   .#{$grid-breakpoint-type}five-tenths { width: percentage(5 / 10); }
  1046.   .#{$grid-breakpoint-type}six-tenths { width: percentage(6 / 10); }
  1047.   .#{$grid-breakpoint-type}seven-tenths { width: percentage(7 / 10); }
  1048.   .#{$grid-breakpoint-type}eight-tenths { width: percentage(8 / 10); }
  1049.   .#{$grid-breakpoint-type}nine-tenths { width: percentage(9 / 10); }
  1050.  
  1051.   /* Twelfths */
  1052.   .#{$grid-breakpoint-type}one-twelfth { width: percentage(1 / 12); }
  1053.   .#{$grid-breakpoint-type}two-twelfths { width: percentage(2 / 12); }
  1054.   .#{$grid-breakpoint-type}three-twelfths { width: percentage(3 / 12); }
  1055.   .#{$grid-breakpoint-type}four-twelfths { width: percentage(4 / 12); }
  1056.   .#{$grid-breakpoint-type}five-twelfths { width: percentage(5 / 12); }
  1057.   .#{$grid-breakpoint-type}six-twelfths { width: percentage(6 / 12); }
  1058.   .#{$grid-breakpoint-type}seven-twelfths { width: percentage(7 / 12); }
  1059.   .#{$grid-breakpoint-type}eight-twelfths { width: percentage(8 / 12); }
  1060.   .#{$grid-breakpoint-type}nine-twelfths { width: percentage(9 / 12); }
  1061.   .#{$grid-breakpoint-type}ten-twelfths { width: percentage(10 / 12); }
  1062.   .#{$grid-breakpoint-type}eleven-twelfths { width: percentage(11 / 12); }
  1063. }
  1064.  
  1065. /*================ Grid push classes ================*/
  1066. @mixin grid-push-generator($grid-breakpoint-type: '') {
  1067.   /* Halves */
  1068.   .#{$grid-breakpoint-type}push-one-half { left: percentage(1 / 2); }
  1069.  
  1070.   /* Thirds */
  1071.   .#{$grid-breakpoint-type}push-one-third { left: percentage(1 / 3); }
  1072.   .#{$grid-breakpoint-type}push-two-thirds { left: percentage(2 / 3); }
  1073.  
  1074.   /* Quarters */
  1075.   .#{$grid-breakpoint-type}push-one-quarter { left: percentage(1 / 4); }
  1076.   .#{$grid-breakpoint-type}push-two-quarters { left: percentage(2 / 4); }
  1077.   .#{$grid-breakpoint-type}push-three-quarters { left: percentage(3 / 4); }
  1078.  
  1079.   /* Fifths */
  1080.   .#{$grid-breakpoint-type}push-one-fifth { left: percentage(1 / 5); }
  1081.   .#{$grid-breakpoint-type}push-two-fifths { left: percentage(2 / 5); }
  1082.   .#{$grid-breakpoint-type}push-three-fifths { left: percentage(3 / 5); }
  1083.   .#{$grid-breakpoint-type}push-four-fifths { left: percentage(4 / 5); }
  1084.  
  1085.   /* Sixths */
  1086.   .#{$grid-breakpoint-type}push-one-sixth { left: percentage(1 / 6); }
  1087.   .#{$grid-breakpoint-type}push-two-sixths { left: percentage(2 / 6); }
  1088.   .#{$grid-breakpoint-type}push-three-sixths { left: percentage(3 / 6); }
  1089.   .#{$grid-breakpoint-type}push-four-sixths { left: percentage(4 / 6); }
  1090.   .#{$grid-breakpoint-type}push-five-sixths { left: percentage(5 / 6); }
  1091.  
  1092.   /* Eighths */
  1093.   .#{$grid-breakpoint-type}push-one-eighth { left: percentage(1 / 8); }
  1094.   .#{$grid-breakpoint-type}push-two-eighths { left: percentage(2 / 8); }
  1095.   .#{$grid-breakpoint-type}push-three-eighths { left: percentage(3 / 8); }
  1096.   .#{$grid-breakpoint-type}push-four-eighths { left: percentage(4 / 8); }
  1097.   .#{$grid-breakpoint-type}push-five-eighths { left: percentage(5 / 8); }
  1098.   .#{$grid-breakpoint-type}push-six-eighths { left: percentage(6 / 8); }
  1099.   .#{$grid-breakpoint-type}push-seven-eighths { left: percentage(7 / 8); }
  1100.  
  1101.   /* Tenths */
  1102.   .#{$grid-breakpoint-type}push-one-tenth { left: percentage(1 / 10); }
  1103.   .#{$grid-breakpoint-type}push-two-tenths { left: percentage(2 / 10); }
  1104.   .#{$grid-breakpoint-type}push-three-tenths { left: percentage(3 / 10); }
  1105.   .#{$grid-breakpoint-type}push-four-tenths { left: percentage(4 / 10); }
  1106.   .#{$grid-breakpoint-type}push-five-tenths { left: percentage(5 / 10); }
  1107.   .#{$grid-breakpoint-type}push-six-tenths { left: percentage(6 / 10); }
  1108.   .#{$grid-breakpoint-type}push-seven-tenths { left: percentage(7 / 10); }
  1109.   .#{$grid-breakpoint-type}push-eight-tenths { left: percentage(8 / 10); }
  1110.   .#{$grid-breakpoint-type}push-nine-tenths { left: percentage(9 / 10); }
  1111.  
  1112.   /* Twelfths */
  1113.   .#{$grid-breakpoint-type}push-one-twelfth { left: percentage(1 / 12); }
  1114.   .#{$grid-breakpoint-type}push-two-twelfths { left: percentage(2 / 12); }
  1115.   .#{$grid-breakpoint-type}push-three-twelfths { left: percentage(3 / 12); }
  1116.   .#{$grid-breakpoint-type}push-four-twelfths { left: percentage(4 / 12); }
  1117.   .#{$grid-breakpoint-type}push-five-twelfths { left: percentage(5 / 12); }
  1118.   .#{$grid-breakpoint-type}push-six-twelfths { left: percentage(6 / 12); }
  1119.   .#{$grid-breakpoint-type}push-seven-twelfths { left: percentage(7 / 12); }
  1120.   .#{$grid-breakpoint-type}push-eight-twelfths { left: percentage(8 / 12); }
  1121.   .#{$grid-breakpoint-type}push-nine-twelfths { left: percentage(9 / 12); }
  1122.   .#{$grid-breakpoint-type}push-ten-twelfths { left: percentage(10 / 12); }
  1123.   .#{$grid-breakpoint-type}push-eleven-twelfths { left: percentage(11 / 12); }
  1124. }
  1125.  
  1126. /*================ Clearfix helper on uniform grids ================*/
  1127. @mixin grid-uniform-clearfix($grid-breakpoint-type: '') {
  1128.   .grid--uniform {
  1129.     .#{$grid-breakpoint-type}one-half:nth-child(2n+1),
  1130.     .#{$grid-breakpoint-type}one-third:nth-child(3n+1),
  1131.     .#{$grid-breakpoint-type}one-quarter:nth-child(4n+1),
  1132.     .#{$grid-breakpoint-type}one-fifth:nth-child(5n+1),
  1133.     .#{$grid-breakpoint-type}one-sixth:nth-child(6n+1),
  1134.     .#{$grid-breakpoint-type}two-sixths:nth-child(3n+1),
  1135.     .#{$grid-breakpoint-type}three-sixths:nth-child(2n+1),
  1136.     .#{$grid-breakpoint-type}one-eighth:nth-child(8n+1),
  1137.     .#{$grid-breakpoint-type}two-eighths:nth-child(4n+1),
  1138.     .#{$grid-breakpoint-type}four-eighths:nth-child(2n+1),
  1139.     .#{$grid-breakpoint-type}five-tenths:nth-child(2n+1),
  1140.     .#{$grid-breakpoint-type}one-twelfth:nth-child(12n+1),
  1141.     .#{$grid-breakpoint-type}two-twelfths:nth-child(6n+1),
  1142.     .#{$grid-breakpoint-type}three-twelfths:nth-child(4n+1),
  1143.     .#{$grid-breakpoint-type}four-twelfths:nth-child(3n+1),
  1144.     .#{$grid-breakpoint-type}six-twelfths:nth-child(2n+1) { clear: both; }
  1145.   }
  1146. }
  1147.  
  1148. // sass-lint:enable brace-style empty-line-between-blocks
  1149.  
  1150. /*================ Build Base Grid Classes ================*/
  1151. @include grid-column-generator();
  1152. @include responsive-display-helper();
  1153. @include responsive-text-align-helper();
  1154.  
  1155. /*================ Build Responsive Grid Classes ================*/
  1156. @each $breakpoint in $grid-breakpoint-has-widths {
  1157.   @include media-query($breakpoint) {
  1158.     @include grid-column-generator('#{$breakpoint}--');
  1159.     @include grid-uniform-clearfix('#{$breakpoint}--');
  1160.     @include responsive-display-helper('#{$breakpoint}--');
  1161.     @include responsive-text-align-helper('#{$breakpoint}--');
  1162.   }
  1163. }
  1164.  
  1165. /*================ Build Grid Push Classes ================*/
  1166. @each $breakpoint in $grid-breakpoint-has-push {
  1167.   @include media-query($breakpoint) {
  1168.     @include grid-push-generator('#{$breakpoint}--');
  1169.   }
  1170. }
  1171.  
  1172. /*================ #Helper Classes ================*/
  1173. .clearfix {
  1174.   @include clearfix();
  1175. }
  1176.  
  1177. .visually-hidden {
  1178.   @include visually-hidden();
  1179. }
  1180.  
  1181. .visibility-hidden {
  1182.   visibility: hidden;
  1183. }
  1184.  
  1185. .visually-hidden--inline {
  1186.   margin: 0;
  1187.   height: 1em;
  1188. }
  1189.  
  1190. .visually-hidden--static {
  1191.   position: static !important;
  1192. }
  1193.  
  1194. .js-focus-hidden:focus {
  1195.   outline: none;
  1196. }
  1197.  
  1198. // Only show when JS is not supported
  1199. .no-js:not(html) {
  1200.   display: none;
  1201.  
  1202.   .no-js & {
  1203.     display: block;
  1204.   }
  1205. }
  1206.  
  1207. // Only show when JS is supported
  1208. .js {
  1209.   .no-js & {
  1210.     display: none;
  1211.   }
  1212. }
  1213.  
  1214. .hide {
  1215.   display: none !important;
  1216. }
  1217.  
  1218. /*============================================================================
  1219.   Skip to content button
  1220.     - Overrides .visually-hidden when focused
  1221. ==============================================================================*/
  1222. .skip-link:focus {
  1223.   clip: auto;
  1224.   width: auto;
  1225.   height: auto;
  1226.   margin: 0;
  1227.   color: $color-text;
  1228.   background-color: $color-bg;
  1229.   padding: 10px;
  1230.   opacity: 1;
  1231.   z-index: $z-index-skip-to-content;
  1232.   transition: none;
  1233. }
  1234.  
  1235. /*=============== Lazy loading ===================*/
  1236.  
  1237. .box {
  1238.     background: no-repeat;
  1239.     background-color: #f7f7f7;
  1240.     background-size: contain;
  1241. }
  1242. .ratio-container {
  1243.     position: relative;
  1244. }
  1245. .ratio-container:after {
  1246.     content:'';
  1247.     display: block;
  1248.     height: 0;
  1249.     width: 100%;
  1250.     /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  1251.     padding-bottom: 50%;
  1252.     content:"";
  1253. }
  1254. .ratio-container > * {
  1255.     position: absolute;
  1256.     top: 0;
  1257.     left: 0;
  1258.     width: 100%;
  1259.     height: 100%;
  1260. }
  1261.  
  1262. /*================ #Basic Styles ================*/
  1263. body,
  1264. html {
  1265.   background-color: $color-body;
  1266. }
  1267.  
  1268. .page-width {
  1269.   @include clearfix();
  1270.   max-width: $width-site;
  1271.   margin: 0 auto;
  1272. }
  1273.  
  1274. .main-content {
  1275.   display: block;
  1276.   padding-top: $section-spacing-small;
  1277.  
  1278.   @include media-query($medium-up) {
  1279.     padding-top: $section-spacing;
  1280.   }
  1281. }
  1282.  
  1283. .section-header {
  1284.   margin-bottom: $section-spacing-small;
  1285.  
  1286.   @include media-query($medium-up) {
  1287.     margin-bottom: $section-spacing;
  1288.   }
  1289. }
  1290.  
  1291. /*================ Typography ================*/
  1292. blockquote {
  1293.   font-size: em(18px);
  1294.   font-style: normal;
  1295.   text-align: center;
  1296.   padding: 0 30px;
  1297.   margin: 0;
  1298.  
  1299.   .rte & {
  1300.     border-color: $color-border;
  1301.     border-width: 1px 0;
  1302.     border-style: solid;
  1303.     padding: 30px 0;
  1304.     margin-bottom: $gutter-site / 2;
  1305.   }
  1306.  
  1307.   p + cite {
  1308.     margin-top: $gutter-site / 2;
  1309.   }
  1310.  
  1311.   cite {
  1312.     display: block;
  1313.     font-size: 0.85em;
  1314.     font-weight: $font-weight-body;
  1315.  
  1316.     &::before {
  1317.       content: '\2014 \0020';
  1318.     }
  1319.   }
  1320. }
  1321.  
  1322. code,
  1323. pre {
  1324.   font-family: Consolas, monospace;
  1325.   font-size: 1em;
  1326. }
  1327.  
  1328. pre {
  1329.   overflow: auto;
  1330. }
  1331.  
  1332. body,
  1333. input,
  1334. textarea,
  1335. button,
  1336. select {
  1337.   font-size: $font-size-base;
  1338.   font-family: $font-stack-body;
  1339.   font-style: $font-style-body;
  1340.   font-weight: $font-weight-body;
  1341.   color: $color-text;
  1342.   line-height: 1.5;
  1343. }
  1344.  
  1345. // Prevent zoom on touch devices in active inputs
  1346. @include media-query($medium-down) {
  1347.   input,
  1348.   textarea,
  1349.   select,
  1350.   button {
  1351.     font-size: $font-size-mobile-input;
  1352.   }
  1353. }
  1354.  
  1355. /*================ Headings ================*/
  1356. h1,
  1357. h2,
  1358. h3,
  1359. h4,
  1360. h5,
  1361. h6 {
  1362.   margin: 0 0 ($section-spacing-small / 2);
  1363.   font-family: $font-stack-header;
  1364.   font-style: $font-style-header;
  1365.   font-weight: $font-weight-header;
  1366.   line-height: 1.2;
  1367.   overflow-wrap: break-word;
  1368.   word-wrap: break-word;
  1369.  
  1370.   a {
  1371.     color: inherit;
  1372.     text-decoration: none;
  1373.     font-weight: inherit;
  1374.   }
  1375. }
  1376.  
  1377. h1 {
  1378.   font-size: em(floor($font-size-header * 1.35));
  1379.   text-transform: none;
  1380.   letter-spacing: 0;
  1381.  
  1382.   @include media-query($small) {
  1383.     font-size: em(floor($font-size-header * 1.25));
  1384.   }
  1385. }
  1386.  
  1387. h2 {
  1388.   font-size: em(floor($font-size-header * 0.78));
  1389.   text-transform: uppercase;
  1390.   letter-spacing: 0.1em;
  1391.  
  1392.   @include media-query($small) {
  1393.     font-size: em(floor(($font-size-header * 0.78) * 0.9));
  1394.   }
  1395. }
  1396.  
  1397. h3 {
  1398.   font-size: em($font-size-header);
  1399.   text-transform: none;
  1400.   letter-spacing: 0;
  1401.  
  1402.   @include media-query($small) {
  1403.     font-size: em(floor($font-size-header * 0.78));
  1404.   }
  1405. }
  1406.  
  1407. h4 {
  1408.   font-size: em(floor($font-size-header * 0.68));
  1409.  
  1410.   @include media-query($small) {
  1411.     font-size: em(floor(($font-size-header * 0.68) * 0.9));
  1412.   }
  1413. }
  1414.  
  1415. h5 {
  1416.   font-size: em(floor($font-size-header * 0.58));
  1417.  
  1418.   @include media-query($small) {
  1419.     font-size: em(floor(($font-size-header * 0.58) * 0.9));
  1420.   }
  1421. }
  1422.  
  1423. h6 {
  1424.   font-size: em(floor($font-size-header * 0.54));
  1425.  
  1426.   @include media-query($small) {
  1427.     font-size: em(floor(($font-size-header * 0.54) * 0.9));
  1428.   }
  1429. }
  1430.  
  1431. .h1 {
  1432.   @extend h1;
  1433. }
  1434.  
  1435. .h2 {
  1436.   @extend h2;
  1437. }
  1438.  
  1439. .h3 {
  1440.   @extend h3;
  1441. }
  1442.  
  1443. .h4 {
  1444.   @extend h4;
  1445. }
  1446.  
  1447. .h5 {
  1448.   @extend h5;
  1449. }
  1450.  
  1451. .h6 {
  1452.   @extend h6;
  1453. }
  1454.  
  1455. /*================ RTE headings ================*/
  1456. .rte {
  1457.   color: $color-body-text;
  1458.   margin-bottom: $section-spacing-small;
  1459.  
  1460.   // If an .rte div is the last element in its parent,
  1461.   // make it flush with the bottom of the container
  1462.   &:last-child {
  1463.     margin-bottom: 0;
  1464.   }
  1465.  
  1466.   h1,
  1467.   h2,
  1468.   h3,
  1469.   h4,
  1470.   h5,
  1471.   h6 {
  1472.     margin-top: $gutter-site;
  1473.     margin-bottom: $gutter-site / 2;
  1474.  
  1475.     &:first-child {
  1476.       margin-top: 0;
  1477.     }
  1478.   }
  1479.  
  1480.   li {
  1481.     margin-bottom: 4px;
  1482.     list-style: inherit;
  1483.  
  1484.     &:last-child {
  1485.       margin-bottom: 0;
  1486.     }
  1487.   }
  1488. }
  1489.  
  1490. // rte setting type to act like a <p> tag
  1491. .rte-setting {
  1492.   margin-bottom: $section-spacing-small / 1.8; // same as p
  1493.  
  1494.   &:last-child {
  1495.     margin-bottom: 0;
  1496.   }
  1497. }
  1498.  
  1499. /*================ Paragraph styles ================*/
  1500. p {
  1501.   color: $color-body-text;
  1502.   margin: 0 0 ($section-spacing-small / 1.8);
  1503.  
  1504.   @include media-query($small) {
  1505.     font-size: em($font-size-base - 1);
  1506.   }
  1507.  
  1508.   &:last-child {
  1509.     margin-bottom: 0;
  1510.   }
  1511. }
  1512.  
  1513. /*================ Lists ================*/
  1514. li {
  1515.   list-style: none;
  1516. }
  1517.  
  1518. /*================ Misc styles ================*/
  1519. .fine-print {
  1520.   font-size: em(14);
  1521.   font-style: italic;
  1522. }
  1523.  
  1524. .txt--minor {
  1525.   font-size: 80%; // match <small>
  1526. }
  1527.  
  1528. .txt--emphasis {
  1529.   font-style: italic;
  1530. }
  1531.  
  1532. .address {
  1533.   margin-bottom: $gutter-site;
  1534. }
  1535.  
  1536. /*================ Hero and slideshow headers ================*/
  1537. .mega-title,
  1538. .mega-subtitle {
  1539.   color: $color-overlay-title-text;
  1540.   text-shadow: 0 0 4px $color-text-shadow;
  1541. }
  1542.  
  1543. .mega-title {
  1544.   margin-bottom: 8px;
  1545. }
  1546.  
  1547. .mega-title--large {
  1548.   font-size: em($font-size-header + 8);
  1549.  
  1550.   @include media-query($medium-up) {
  1551.     font-size: em(floor($font-size-header * 2.5));
  1552.   }
  1553. }
  1554.  
  1555. .mega-subtitle {
  1556.   @include media-query($medium-up) {
  1557.     font-size: em($font-size-base + 4);
  1558.     margin: 0 auto;
  1559.     max-width: 75%;
  1560.   }
  1561.  
  1562.   p {
  1563.     color: $color-overlay-title-text;
  1564.   }
  1565.  
  1566.   a {
  1567.     color: $color-overlay-title-text;
  1568.     border-bottom: 1px solid currentColor;
  1569.  
  1570.     &:hover,
  1571.     &:focus {
  1572.       color: $color-overlay-text-focus;
  1573.     }
  1574.   }
  1575. }
  1576.  
  1577. .mega-subtitle--large {
  1578.   font-size: em($font-size-base + 2);
  1579.   font-weight: $font-weight-header;
  1580.  
  1581.   @include media-query($medium-up) {
  1582.     font-size: em($font-size-base + 8);
  1583.   }
  1584. }
  1585.  
  1586. /*================ #Icons ================*/
  1587. .icon {
  1588.   display: inline-block;
  1589.   width: 20px;
  1590.   height: 20px;
  1591.   vertical-align: middle;
  1592.   fill: currentColor;
  1593.  
  1594.   .no-svg & {
  1595.     display: none;
  1596.   }
  1597. }
  1598.  
  1599. svg,
  1600. symbol {
  1601.   &.icon:not(.icon--full-color) {
  1602.     circle,
  1603.     ellipse,
  1604.     g,
  1605.     line,
  1606.     path,
  1607.     polygon,
  1608.     polyline,
  1609.     rect {
  1610.       fill: inherit;
  1611.       stroke: inherit;
  1612.     }
  1613.   }
  1614. }
  1615.  
  1616. /*============================================================================
  1617.   A generic way to visually hide content while
  1618.   remaining accessible to screen readers (h5bp.com)
  1619. ==============================================================================*/
  1620. .icon__fallback-text {
  1621.   @extend .visually-hidden;
  1622.  
  1623.   .no-svg & {
  1624.     // sass-lint:disable no-important
  1625.     position: static !important;
  1626.     overflow: inherit;
  1627.     clip: none;
  1628.     height: auto;
  1629.     width: auto;
  1630.     margin: 0;
  1631.   }
  1632. }
  1633.  
  1634. /*================ Payment Icons ================*/
  1635. .payment-icons {
  1636.   @include user-select();
  1637.   cursor: default;
  1638.  
  1639.   @include media-query($small) {
  1640.     line-height: 40px;
  1641.   }
  1642.  
  1643.   .icon {
  1644.     width: 38px;
  1645.     height: 24px;
  1646.   }
  1647. }
  1648.  
  1649. /*================ Social Icons ================*/
  1650. .social-icons .icon {
  1651.   width: 23px;
  1652.   height: 23px;
  1653.  
  1654.   @include media-query($medium-up) {
  1655.     width: 25px;
  1656.     height: 25px;
  1657.   }
  1658.  
  1659.   &.icon--wide {
  1660.     width: 40px;
  1661.   }
  1662. }
  1663.  
  1664. /*================ #Lists ================*/
  1665. ul,
  1666. ol {
  1667.   margin: 0;
  1668.   padding: 0;
  1669. }
  1670.  
  1671. ol {
  1672.   list-style: decimal;
  1673. }
  1674.  
  1675. .list--inline {
  1676.   padding: 0;
  1677.   margin: 0;
  1678.  
  1679.   & > li {
  1680.     display: inline-block;
  1681.     margin-bottom: 0;
  1682.     vertical-align: middle;
  1683.   }
  1684. }
  1685.  
  1686. /*================ #Rich Text Editor ================*/
  1687. .rte {
  1688.   img {
  1689.     height: auto;
  1690.   }
  1691.  
  1692.   table {
  1693.     table-layout: fixed;
  1694.   }
  1695.  
  1696.   ul,
  1697.   ol {
  1698.     margin: 0 0 ($section-spacing-small / 2) $section-spacing-small;
  1699.  
  1700.     &.list--inline {
  1701.       margin-left: 0;
  1702.     }
  1703.   }
  1704.  
  1705.   ul {
  1706.     list-style: disc outside;
  1707.  
  1708.     ul {
  1709.       list-style: circle outside;
  1710.  
  1711.       ul {
  1712.         list-style: square outside;
  1713.       }
  1714.     }
  1715.   }
  1716.  
  1717.   a:not(.btn) {
  1718.     border-bottom: 1px solid currentColor;
  1719.     padding-bottom: 1px;
  1720.   }
  1721. }
  1722.  
  1723. .text-center.rte,
  1724. .text-center .rte {
  1725.   ul,
  1726.   ol {
  1727.     margin-left: 0;
  1728.     list-style-position: inside;
  1729.   }
  1730. }
  1731.  
  1732. // allows tables to scroll when needed since we don't know
  1733. // how many columns they will contain. Class added by JS.
  1734. .scrollable-wrapper {
  1735.   // sass-lint:disable no-misspelled-properties
  1736.   max-width: 100%;
  1737.   overflow: auto;
  1738.   -webkit-overflow-scrolling: touch;
  1739. }
  1740.  
  1741. /*================ #Links and Buttons ================*/
  1742. a {
  1743.   color: $color-text;
  1744.   text-decoration: none;
  1745.  
  1746.   &:not([disabled]):hover,
  1747.   &:focus {
  1748.     color: $color-text-focus;
  1749.   }
  1750.  
  1751.   &.classic-link {
  1752.     text-decoration: underline;
  1753.   }
  1754. }
  1755.  
  1756. a[href^="tel"] {
  1757.   color: inherit;
  1758. }
  1759.  
  1760. /*================ Buttons ================*/
  1761. .btn {
  1762.   @include user-select();
  1763.   @include prefix(appearance, none, webkit moz spec);
  1764.   display: inline-block;
  1765.   width: auto;
  1766.   text-decoration: none;
  1767.   text-align: center;
  1768.   vertical-align: middle;
  1769.   cursor: pointer;
  1770.   border: 1px solid transparent;
  1771.   border-radius: $border-radius;
  1772.   padding: $input-padding-top-bottom-small $input-padding-left-right-small;
  1773.   background-color: $color-btn-primary;
  1774.   color: $color-btn-primary-text;
  1775.   font-family: $font-stack-header;
  1776.   font-style: $font-style-header;
  1777.   font-weight: $font-weight-header;
  1778.   text-transform: uppercase;
  1779.   letter-spacing: 0.08em;
  1780.   white-space: normal;
  1781.   font-size: $font-size-base - 2;
  1782.  
  1783.   @include media-query($medium-up) {
  1784.     padding: $input-padding-top-bottom $input-padding-left-right;
  1785.   }
  1786.  
  1787.   &:not([disabled]):hover,
  1788.   &:focus {
  1789.     color: $color-btn-primary-text;
  1790.     background-color: $color-btn-primary-focus;
  1791.   }
  1792.  
  1793.   .icon-arrow-right,
  1794.   .icon-arrow-left {
  1795.     height: 9px;
  1796.   }
  1797.  
  1798.   &[disabled] {
  1799.     cursor: default;
  1800.     opacity: 0.5;
  1801.   }
  1802. }
  1803.  
  1804. .btn--secondary {
  1805.   background-color: transparent;
  1806.   color: $color-btn-primary;
  1807.   border-color: $color-btn-primary;
  1808.  
  1809.   &:not([disabled]):hover,
  1810.   &:focus {
  1811.     background-color: transparent;
  1812.     color: $color-btn-primary-focus;
  1813.     border-color: $color-btn-primary-focus;
  1814.   }
  1815. }
  1816.  
  1817. .btn--secondary-accent {
  1818.   background-color: $color-body;
  1819.   color: $color-btn-primary;
  1820.   border-color: $color-btn-primary;
  1821.  
  1822.   &:not([disabled]):hover,
  1823.   &:focus {
  1824.     background-color:$color-body;
  1825.     color: $color-btn-primary-focus;
  1826.     border-color: $color-btn-primary-focus;
  1827.   }
  1828. }
  1829.  
  1830. .btn--small {
  1831.   padding: 8px 10px;
  1832.   font-size: em(12);
  1833.   line-height: 1;
  1834. }
  1835.  
  1836. .btn--tertiary {
  1837.   background-color: transparent;
  1838.   color: $color-small-button-text-border;
  1839.   border-color: $color-small-button-text-border;
  1840.  
  1841.   &:not([disabled]):hover,
  1842.   &:focus {
  1843.     background-color: transparent;
  1844.     color: $color-small-button-text-border-focus;
  1845.     border-color: $color-small-button-text-border-focus;
  1846.   }
  1847. }
  1848.  
  1849. /*================ Button variations ================*/
  1850. @include media-query($small) {
  1851.   .btn--small-wide {
  1852.     padding-left: 50px;
  1853.     padding-right: 50px;
  1854.   }
  1855. }
  1856.  
  1857. .btn--link {
  1858.   background-color: transparent;
  1859.   border: 0;
  1860.   margin: 0;
  1861.   color: $color-text;
  1862.   text-align: left;
  1863.  
  1864.   &:not([disabled]):hover,
  1865.   &:focus {
  1866.     color: $color-text-focus;
  1867.     background-color: transparent;
  1868.   }
  1869.  
  1870.   .icon {
  1871.     vertical-align: middle;
  1872.   }
  1873. }
  1874.  
  1875. .btn--narrow {
  1876.   padding-left: 15px;
  1877.   padding-right: 15px;
  1878. }
  1879.  
  1880. .btn--has-icon-after {
  1881.   .icon {
  1882.     margin-left: 10px;
  1883.   }
  1884. }
  1885.  
  1886. .btn--has-icon-before {
  1887.   .icon {
  1888.     margin-right: 10px;
  1889.   }
  1890. }
  1891.  
  1892. /*================ Force an input/button to look like a text link ================*/
  1893. .text-link {
  1894.   display: inline;
  1895.   border: 0 none;
  1896.   background: none;
  1897.   padding: 0;
  1898.   margin: 0;
  1899. }
  1900.  
  1901. /*================ Return to collection/blog links ================*/
  1902. .return-link-wrapper {
  1903.   margin-top: ($section-spacing * 1.5);
  1904.   margin-bottom: 0;
  1905.  
  1906.   @include media-query($small) {
  1907.     margin-top: $section-spacing;
  1908.   }
  1909. }
  1910.  
  1911. .full-width-link {
  1912.   position: absolute;
  1913.   top: 0;
  1914.   right: 0;
  1915.   bottom: 0;
  1916.   left: 0;
  1917.   z-index: 2;
  1918. }
  1919.  
  1920. /*================ #Tables ================*/
  1921. table {
  1922.   margin-bottom: $gutter-site / 2;
  1923. }
  1924.  
  1925. th {
  1926.   font-family: $font-stack-header;
  1927.   font-style: $font-style-header;
  1928.   font-weight: $font-weight-body--bold;
  1929. }
  1930.  
  1931. th,
  1932. td {
  1933.   text-align: left;
  1934.   border: 1px solid $color-border;
  1935.   padding: 10px 14px;
  1936. }
  1937.  
  1938. /*============================================================================
  1939.   Responsive tables, defined with .responsive-table on table element.
  1940. ==============================================================================*/
  1941. @include media-query($small) {
  1942.   .responsive-table {
  1943.     thead {
  1944.       display: none;
  1945.     }
  1946.  
  1947.     tr {
  1948.       display: block;
  1949.     }
  1950.  
  1951.     // IE9 table layout fixes
  1952.     tr,
  1953.     td {
  1954.       float: left;
  1955.       clear: both;
  1956.       width: 100%;
  1957.     }
  1958.  
  1959.     th,
  1960.     td {
  1961.       display: block;
  1962.       text-align: right;
  1963.       padding: $gutter-site / 2;
  1964.       border: 0;
  1965.       margin: 0;
  1966.     }
  1967.  
  1968.     td::before {
  1969.       content: attr(data-label);
  1970.       float: left;
  1971.       text-align: center;
  1972.       font-size: 12px;
  1973.       padding-right: 10px;
  1974.     }
  1975.   }
  1976.  
  1977.   .responsive-table__row + .responsive-table__row,
  1978.   tfoot > .responsive-table__row:first-child {
  1979.     position: relative;
  1980.     margin-top: 10px;
  1981.     padding-top: $gutter-site;
  1982.  
  1983.     &::after {
  1984.       content: '';
  1985.       display: block;
  1986.       position: absolute;
  1987.       top: 0;
  1988.       left: $gutter-site / 2;
  1989.       right: $gutter-site / 2;
  1990.       border-bottom: 1px solid $color-border;
  1991.     }
  1992.   }
  1993. }
  1994.  
  1995. /*================ #Images and Iframes ================*/
  1996. svg:not(:root) {
  1997.   overflow: hidden;
  1998. }
  1999.  
  2000. .video-wrapper {
  2001.   position: relative;
  2002.   overflow: hidden;
  2003.   max-width: 100%;
  2004.   padding-bottom: 56.25%;
  2005.   height: 0;
  2006.   height: auto;
  2007.  
  2008.   iframe {
  2009.     position: absolute;
  2010.     top: 0;
  2011.     left: 0;
  2012.     width: 100%;
  2013.     height: 100%;
  2014.   }
  2015. }
  2016.  
  2017. /*================ Forms ================*/
  2018. form {
  2019.   margin: 0;
  2020. }
  2021.  
  2022. fieldset {
  2023.   border: 1px solid $color-border-form;
  2024.   margin: 0 0 $gutter-site;
  2025.   padding: $gutter-site / 2;
  2026. }
  2027.  
  2028. legend {
  2029.   border: 0;
  2030.   padding: 0;
  2031. }
  2032.  
  2033. button {
  2034.   cursor: pointer;
  2035. }
  2036.  
  2037. input {
  2038.   &[type="submit"] {
  2039.     cursor: pointer;
  2040.   }
  2041. }
  2042.  
  2043. label {
  2044.   display: block;
  2045.   margin-bottom: 5px;
  2046.  
  2047.   @include media-query($small) {
  2048.     font-size: em($font-size-base - 2px);
  2049.   }
  2050.  
  2051.   [type="radio"] + &,
  2052.   [type="checkbox"] + & {
  2053.     display: inline-block;
  2054.     margin-bottom: 0;
  2055.   }
  2056.  
  2057.   &[for] {
  2058.     cursor: pointer;
  2059.   }
  2060. }
  2061.  
  2062. input,
  2063. textarea,
  2064. select {
  2065.   border: 1px solid $color-border-form;
  2066.   background-color: $color-text-field;
  2067.   color: $color-text-field-text;
  2068.   max-width: 100%;
  2069.   line-height: 1.2;
  2070.   border-radius: $border-radius;
  2071.  
  2072.   &:focus {
  2073.     border-color: darken($color-border-form, 10%);
  2074.   }
  2075.  
  2076.   &[disabled] {
  2077.     cursor: default;
  2078.     background-color: $color-disabled;
  2079.     border-color: $color-disabled-border;
  2080.   }
  2081.  
  2082.   &.input--error {
  2083.     &::-webkit-input-placeholder {
  2084.       @include error-placeholder-text();
  2085.     }
  2086.  
  2087.     &::-moz-placeholder {
  2088.       @include error-placeholder-text();
  2089.     }
  2090.  
  2091.     &:-ms-input-placeholder {
  2092.       @include error-placeholder-text();
  2093.     }
  2094.  
  2095.     &::-ms-input-placeholder {
  2096.       @include error-placeholder-text($opacity: 1);
  2097.     }
  2098.   }
  2099.  
  2100.   &.hidden-placeholder {
  2101.     &::-webkit-input-placeholder {
  2102.       color: transparent;
  2103.     }
  2104.  
  2105.     &::-moz-placeholder {
  2106.       color: transparent;
  2107.     }
  2108.  
  2109.     &:-ms-input-placeholder {
  2110.       color: transparent;
  2111.     }
  2112.  
  2113.     &::-ms-input-placeholder {
  2114.       opacity: 1;
  2115.     }
  2116.   }
  2117.  
  2118.   .product-form & {
  2119.     min-height: 44px;
  2120.   }
  2121. }
  2122.  
  2123. textarea {
  2124.   min-height: 100px;
  2125. }
  2126.  
  2127. /*================ Error styles ================*/
  2128. input,
  2129. select,
  2130. textarea {
  2131.   &.input--error {
  2132.     border-color: $color-error;
  2133.     background-color: $color-error-bg;
  2134.     color: $color-error;
  2135.     margin-bottom: ($section-spacing-small / 3);
  2136.  
  2137.     & + .input-error-message {
  2138.       display: block;
  2139.     }
  2140.   }
  2141. }
  2142.  
  2143. .input-error-message {
  2144.   display: none;
  2145.   color: $color-error;
  2146.   font-size: em($font-size-base - 2px);
  2147.   margin-bottom: ($section-spacing-small / 3);
  2148.  
  2149.   @include media-query($small) {
  2150.     margin-bottom: ($section-spacing-small / 1.8);
  2151.   }
  2152.  
  2153.   .icon {
  2154.     width: 1em;
  2155.     height: 1em;
  2156.     margin-top: -0.3em;
  2157.   }
  2158. }
  2159.  
  2160. select {
  2161.   @include prefix(appearance, none, webkit moz spec);
  2162.   background-position: right center;
  2163.   background: {
  2164.     image: url($svg-select-icon);
  2165.     repeat: no-repeat;
  2166.     position: right 10px center;
  2167.   }
  2168.   line-height: 1.2;
  2169.   padding-right: 28px;
  2170.   text-indent: 0.01px;
  2171.   text-overflow: '';
  2172.   cursor: pointer;
  2173.   padding-top: $input-padding-top-bottom-small;
  2174.   padding-left: $input-padding-left-right-small;
  2175.   padding-bottom: $input-padding-top-bottom-small;
  2176.  
  2177.   @include media-query($medium-up) {
  2178.     padding-top: $input-padding-top-bottom;
  2179.     padding-left: $input-padding-left-right;
  2180.     padding-bottom: $input-padding-top-bottom;
  2181.   }
  2182.  
  2183.   /*================ Hide the svg arrow in IE9 and below ================*/
  2184.   .ie9 & {
  2185.     padding-right: 10px;
  2186.     background-image: none;
  2187.   }
  2188. }
  2189.  
  2190. .select-group {
  2191.   @include display-flexbox();
  2192.   @include align-items(center);
  2193.   @include justify-content(center);
  2194.  
  2195.   label {
  2196.     margin: 0 1rem 0 0;
  2197.     font-size: em(12);
  2198.     text-transform: uppercase;
  2199.   }
  2200.  
  2201.   select {
  2202.     background-image: none;
  2203.     background-color: transparent;
  2204.   }
  2205.  
  2206.   .icon-chevron-down {
  2207.     fill: $color-text-field-text;
  2208.     width: calc(10em / 16);
  2209.     height: calc(10em / 16);
  2210.     margin-left: -1.5rem;
  2211.   }
  2212. }
  2213.  
  2214. optgroup {
  2215.   font-weight: $font-weight-body--bold;
  2216. }
  2217.  
  2218. // Force option color (affects IE only)
  2219. option {
  2220.   color: $color-text;
  2221.   background-color: $color-body;
  2222. }
  2223.  
  2224. select::-ms-expand {
  2225.   display: none;
  2226. }
  2227.  
  2228. /*================ Form labels ================*/
  2229. .label--hidden {
  2230.   position: absolute;
  2231.   height: 0;
  2232.   width: 0;
  2233.   margin-bottom: 0;
  2234.   overflow: hidden;
  2235.   clip: rect(1px, 1px, 1px, 1px);
  2236.  
  2237.   // No placeholders, so force show labels
  2238.   .ie9 & {
  2239.     position: static;
  2240.     height: auto;
  2241.     width: auto;
  2242.     margin-bottom: 2px;
  2243.     overflow: visible;
  2244.     clip: initial;
  2245.   }
  2246. }
  2247.  
  2248. ::-webkit-input-placeholder {
  2249.   @include placeholder-text();
  2250. }
  2251.  
  2252. ::-moz-placeholder {
  2253.   @include placeholder-text();
  2254. }
  2255.  
  2256. :-ms-input-placeholder {
  2257.   @include placeholder-text();
  2258. }
  2259.  
  2260. ::-ms-input-placeholder {
  2261.   @include placeholder-text($opacity: 1);
  2262. }
  2263.  
  2264. /*================ Labels ================*/
  2265. .label--error {
  2266.   color: $color-error;
  2267. }
  2268.  
  2269. input,
  2270. textarea {
  2271.   padding: $input-padding-top-bottom-small $input-padding-left-right-small;
  2272.  
  2273.   @include media-query($medium-up) {
  2274.     padding: $input-padding-top-bottom $input-padding-left-right;
  2275.   }
  2276. }
  2277.  
  2278. /*================ Vertical forms ================*/
  2279. .form-vertical {
  2280.   input,
  2281.   select,
  2282.   textarea {
  2283.     display: block;
  2284.     width: 100%;
  2285.     margin-bottom: ($section-spacing-small / 1.8); // same as <p>
  2286.  
  2287.     &.input--error {
  2288.       margin-bottom: 5px;
  2289.     }
  2290.   }
  2291.  
  2292.   [type="radio"],
  2293.   [type="checkbox"] {
  2294.     display: inline-block;
  2295.     width: auto;
  2296.     margin-right: 5px;
  2297.   }
  2298.  
  2299.   [type="submit"],
  2300.   .btn {
  2301.     display: inline-block;
  2302.     width: auto;
  2303.   }
  2304. }
  2305.  
  2306. /*================ Form feedback messages ================*/
  2307. .note,
  2308. .form-message {
  2309.   padding: $input-padding-top-bottom-small;
  2310.   margin: 0 0 ($gutter-site / 2);
  2311.  
  2312.   @include media-query($medium-up) {
  2313.     padding: $input-padding-top-bottom;
  2314.   }
  2315. }
  2316.  
  2317. .note {
  2318.   border: 1px solid $color-border-form;
  2319. }
  2320.  
  2321. .form-message--success {
  2322.   border: 1px solid $color-success;
  2323.   background-color: $color-success-bg;
  2324.   color: $color-success;
  2325. }
  2326.  
  2327. .form-message--error {
  2328.   border: 1px solid $color-error;
  2329.   background-color: $color-error-bg;
  2330.   padding: 1rem 1.3rem;
  2331.   text-align: left;
  2332.   width: 100%;
  2333.  
  2334.   li {
  2335.     list-style-type: disc;
  2336.     list-style-position: inside;
  2337.   }
  2338.  
  2339.   a {
  2340.     display: inline-block;
  2341.     text-decoration: underline;
  2342.     text-decoration-skip-ink: auto;
  2343.  
  2344.     &:hover {
  2345.       text-decoration: none;
  2346.     }
  2347.   }
  2348. }
  2349.  
  2350. /*================ Input Groups ================*/
  2351.  
  2352. .input-group {
  2353.   @include display-flexbox;
  2354.   @include flex-wrap(wrap);
  2355.   @include justify-content(center);
  2356.  
  2357.   .form-vertical & {
  2358.     margin-bottom: $gutter-site;
  2359.   }
  2360.  
  2361.   &.input-group--error {
  2362.     .input-error-message {
  2363.       display: block;
  2364.       width: 100%;
  2365.     }
  2366.   }
  2367. }
  2368.  
  2369. .input-group__field,
  2370. .input-group__field input,
  2371. .input-group__btn .btn {
  2372.   min-height: $input-group-height-small;
  2373.  
  2374.   @include media-query($medium-up) {
  2375.     min-height: $input-group-height;
  2376.   }
  2377. }
  2378.  
  2379. .input-group__field {
  2380.   @include flex-basis(15rem);
  2381.   flex-grow: 9999;
  2382.   margin-bottom: 1rem;
  2383.   border-radius: $border-radius 0 0 $border-radius;
  2384.   text-align: left;
  2385.  
  2386.   input {
  2387.     width: 100%;
  2388.   }
  2389.  
  2390.   .form-vertical & {
  2391.     margin: 0;
  2392.   }
  2393. }
  2394.  
  2395. .input-group__btn {
  2396.   flex-grow: 1;
  2397.  
  2398.   .btn {
  2399.     width: 100%;
  2400.     border-radius: 0 $border-radius $border-radius 0;
  2401.   }
  2402. }
  2403.  
  2404. /*================ #Site Nav and Dropdowns ================*/
  2405. .site-header__logo {
  2406.   img {
  2407.     display: block;
  2408.   }
  2409. }
  2410.  
  2411. .site-nav {
  2412.   position: relative;
  2413.   padding: 0;
  2414.   text-align: center;
  2415.   margin: 25px 0;
  2416.  
  2417.   a {
  2418.     padding: 3px 10px;
  2419.   }
  2420. }
  2421.  
  2422. .site-nav--centered {
  2423.   padding-bottom: $gutter-site-mobile;
  2424. }
  2425.  
  2426. /*================ Site Nav Links ================*/
  2427. .site-nav__link {
  2428.   display: block;
  2429.   white-space: nowrap;
  2430.  
  2431.   .site-nav--centered & {
  2432.     padding-top: 0;
  2433.   }
  2434.  
  2435.   .icon-chevron-down {
  2436.     width: calc(8em / 16);
  2437.     height: calc(8em / 16);
  2438.     margin-left: calc(2em / 16);
  2439.   }
  2440.  
  2441.   &.site-nav--active-dropdown {
  2442.     border: 1px solid $color-border;
  2443.     border-bottom: 1px solid transparent;
  2444.     z-index: 2;
  2445.   }
  2446. }
  2447.  
  2448. .site-nav__link--button {
  2449.   border: none;
  2450.   background-color: transparent;
  2451.   padding: 3px 10px;
  2452.  
  2453.   @include media-query($medium-down) {
  2454.     font-size: $font-size-base;
  2455.   }
  2456.  
  2457.   &:focus,
  2458.   &:hover {
  2459.     color: $color-text-focus;
  2460.   }
  2461. }
  2462.  
  2463. /*================ Dropdowns ================*/
  2464. .site-nav--has-dropdown {
  2465.   position: relative;
  2466. }
  2467.  
  2468. .site-nav--has-centered-dropdown {
  2469.   position: static;
  2470. }
  2471.  
  2472. .site-nav__dropdown {
  2473.   display: none;
  2474.   position: absolute;
  2475.   left: 0;
  2476.   padding: 11px 30px 11px 0;
  2477.   margin: 0;
  2478.   z-index: $z-index-dropdown;
  2479.   text-align: left;
  2480.   border: 1px solid $color-border;
  2481.   background: $color-bg;
  2482.   left: -1px;
  2483.   top: 41px;
  2484.  
  2485.   .site-nav__link {
  2486.     padding: 4px 15px;
  2487.   }
  2488.  
  2489.   .site-nav--active-dropdown & {
  2490.     display: block;
  2491.   }
  2492.  
  2493.   li {
  2494.     display: block;
  2495.   }
  2496. }
  2497.  
  2498. // Centered dropdown
  2499. .site-nav__dropdown--centered {
  2500.   width: 100%;
  2501.   border: 0;
  2502.   background: none;
  2503.   padding: 0;
  2504.   text-align: center;
  2505. }
  2506.  
  2507. /*================ Child list ================*/
  2508. .site-nav__childlist {
  2509.   display: inline-block;
  2510.   border: 1px solid $color-border;
  2511.   background: $color-bg;
  2512.   padding: 11px 17px;
  2513.   text-align: left;
  2514. }
  2515.  
  2516. .site-nav__childlist-grid {
  2517.   @include display-flexbox();
  2518.   @include flex-wrap(wrap);
  2519.   width: auto;
  2520.   margin-bottom: -15px;
  2521. }
  2522.  
  2523. .site-nav__childlist-item {
  2524.   @include flex(0 1 auto);
  2525.   margin-bottom: 15px;
  2526. }
  2527.  
  2528. .site-nav__child-link--parent {
  2529.   font-weight: $font-weight-body--bold;
  2530.   margin: 4px 0;
  2531. }
  2532.  
  2533. .page-width {
  2534.   padding-left: $gutter-site;
  2535.   padding-right: $gutter-site;
  2536.  
  2537.   @include media-query($small) {
  2538.     padding-left: $gutter-site-mobile;
  2539.     padding-right: $gutter-site-mobile;
  2540.   }
  2541. }
  2542.  
  2543. .page-container {
  2544.   transition: $transition-drawer;
  2545.   position: relative;
  2546.   overflow: hidden;
  2547.  
  2548.   @include media-query($medium-up) {
  2549.     // Prevent mobile menu inline styles from overriding desktop styles
  2550.     // sass-lint:disable no-important
  2551.     @include transform(translate3d(0, 0, 0));
  2552.   }
  2553. }
  2554.  
  2555. hr {
  2556.   margin: $gutter-site 0;
  2557.   border: 0;
  2558.   border-bottom: 1px solid $color-border;
  2559. }
  2560.  
  2561. .hr--small {
  2562.   padding: 10px 0;
  2563.   margin: 0;
  2564. }
  2565.  
  2566. .hr--invisible {
  2567.   border-bottom: 0;
  2568. }
  2569.  
  2570. .border-bottom {
  2571.   border-bottom: 1px solid $color-border;
  2572. }
  2573.  
  2574. .border-top {
  2575.   border-top: 1px solid $color-border;
  2576. }
  2577.  
  2578. .empty-page-content {
  2579.   padding: 125px $gutter-site;
  2580.  
  2581.   @include media-query($small) {
  2582.     padding-left: $gutter-site-mobile;
  2583.     padding-right: $gutter-site-mobile;
  2584.   }
  2585. }
  2586.  
  2587. .grid--table {
  2588.   display: table;
  2589.   table-layout: fixed;
  2590.   width: 100%;
  2591.  
  2592.   > .grid__item {
  2593.     float: none;
  2594.     display: table-cell;
  2595.     vertical-align: middle;
  2596.   }
  2597. }
  2598.  
  2599. .grid--no-gutters {
  2600.   margin-left: 0;
  2601.  
  2602.   .grid__item {
  2603.     padding-left: 0;
  2604.   }
  2605. }
  2606.  
  2607. .grid--half-gutters {
  2608.   margin-left: -($grid-gutter / 2);
  2609.  
  2610.   > .grid__item {
  2611.     padding-left: $grid-gutter / 2;
  2612.   }
  2613. }
  2614.  
  2615. .grid--double-gutters {
  2616.   margin-left: -($grid-gutter * 2);
  2617.  
  2618.   > .grid__item {
  2619.     padding-left: $grid-gutter * 2;
  2620.   }
  2621. }
  2622.  
  2623. .grid--flush-bottom {
  2624.   margin-bottom: -$section-spacing;
  2625.   overflow: auto;
  2626.  
  2627.   > .grid__item {
  2628.     margin-bottom: $section-spacing;
  2629.   }
  2630. }
  2631.  
  2632. /*============================================================================
  2633.   Animation Classes and Keyframes
  2634. ==============================================================================*/
  2635. .is-transitioning {
  2636.   // sass-lint:disable no-important
  2637.   display: block !important;
  2638.   visibility: visible !important;
  2639. }
  2640.  
  2641. @mixin animation($animation) {
  2642.   @include prefix(animation, #{$animation}, moz o webkit spec);
  2643. }
  2644.  
  2645. @mixin keyframes($name) {
  2646.   @-webkit-keyframes #{$name} {
  2647.     @content;
  2648.   }
  2649.   @-moz-keyframes #{$name} {
  2650.     @content;
  2651.   }
  2652.   @-ms-keyframes #{$name} {
  2653.     @content;
  2654.   }
  2655.   @keyframes #{$name} {
  2656.     @content;
  2657.   }
  2658. }
  2659.  
  2660. @include keyframes(spin) {
  2661.   0% {
  2662.     @include transform(rotate(0deg));
  2663.   }
  2664.  
  2665.   100% {
  2666.     @include transform(rotate(360deg));
  2667.   }
  2668. }
  2669.  
  2670. .drawer {
  2671.   // sass-lint:disable no-misspelled-properties
  2672.   display: none;
  2673.   position: absolute;
  2674.   overflow: hidden;
  2675.   -webkit-overflow-scrolling: touch;
  2676.   z-index: $z-index-drawer;
  2677.   background-color: $color-bg;
  2678.   transition: $transition-drawer;
  2679.  
  2680.   input[type="text"],
  2681.   textarea {
  2682.     background-color: $color-bg;
  2683.     color: $color-text;
  2684.   }
  2685. }
  2686.  
  2687. .js-drawer-open {
  2688.   overflow: hidden;
  2689. }
  2690.  
  2691. .drawer--top {
  2692.   width: 100%;
  2693.  
  2694.   .js-drawer-open-top & {
  2695.     @include transform(translateY(100%));
  2696.     display: block;
  2697.   }
  2698. }
  2699.  
  2700. .drawer-page-content::after {
  2701.   visibility: hidden;
  2702.   opacity: 0;
  2703.   content: '';
  2704.   display: block;
  2705.   position: fixed;
  2706.   top: 0;
  2707.   left: 0;
  2708.   width: 100%;
  2709.   height: 100%;
  2710.   background-color: $color-drawer-background;
  2711.   z-index: $z-index-drawer - 1;
  2712.   transition: $transition-drawer;
  2713.  
  2714.   .js-drawer-open & {
  2715.     visibility: visible;
  2716.     opacity: 1;
  2717.   }
  2718. }
  2719.  
  2720. .drawer__title,
  2721. .drawer__close {
  2722.   display: table-cell;
  2723.   vertical-align: middle;
  2724. }
  2725.  
  2726. .drawer__close-button {
  2727.   background: none;
  2728.   border: 0 none;
  2729.   position: relative;
  2730.   right: -15px;
  2731.   height: 100%;
  2732.   width: 60px;
  2733.   padding: 0 20px;
  2734.   color: inherit;
  2735.   font-size: em(18);
  2736.  
  2737.   &:active,
  2738.   &:focus {
  2739.     background-color: darken($color-drawer-background, 5%);
  2740.   }
  2741. }
  2742.  
  2743. .grid--view-items {
  2744.   overflow: auto;
  2745.   margin-bottom: -$section-spacing-small;
  2746. }
  2747.  
  2748. .grid-view-item {
  2749.   margin: 0 auto $section-spacing-small;
  2750.   .custom__item & {
  2751.     margin-bottom: 0;
  2752.   }
  2753. }
  2754.  
  2755. .grid-view-item__title {
  2756.   margin-bottom: 0;
  2757.   color: $color-text;
  2758.   @if $font-bold-titles {
  2759.     font-weight: $font-weight-header--bold;
  2760.   }
  2761. }
  2762.  
  2763. .grid-view-item__meta {
  2764.   margin-top: 8px;
  2765. }
  2766.  
  2767. @include media-query($small) {
  2768.   .grid-view-item__title,
  2769.   .grid-view-item__meta {
  2770.     font-size: em($font-size-base - 1px);
  2771.   }
  2772. }
  2773.  
  2774.  
  2775. .grid-view-item__link {
  2776.   display: block;
  2777. }
  2778.  
  2779. .grid-view-item__vendor {
  2780.   margin-top: 4px;
  2781.   color: $color-body-text;
  2782.   font-size: em($font-size-base - 2px);
  2783.   text-transform: uppercase;
  2784.   @include media-query($small) {
  2785.     font-size: em($font-size-base - 3px);
  2786.   }
  2787. }
  2788.  
  2789. .grid-view-item__image-wrapper {
  2790.   margin: 0 auto $grid-gutter / 2;
  2791.   position: relative;
  2792.   width: 100%;
  2793. }
  2794.  
  2795. .grid-view-item__image {
  2796.   display: block;
  2797.   margin: 0 auto;
  2798.   width: 100%;
  2799.   .grid-view-item__image-wrapper & {
  2800.     position: absolute;
  2801.     top: 0;
  2802.   }
  2803.   .grid-view-item--sold-out & {
  2804.     opacity: 0.5;
  2805.   }
  2806.   &.lazyload {
  2807.     opacity: 0;
  2808.   }
  2809.   .ie9 & {
  2810.     opacity: 1;
  2811.   }
  2812. }
  2813.  
  2814. .list-view-item {
  2815.   margin-bottom: $gutter-site-mobile;
  2816.  
  2817.   &:last-child {
  2818.     margin-bottom: 0;
  2819.   }
  2820.  
  2821.   @include media-query($medium-up) {
  2822.     border-bottom: 1px solid $color-border;
  2823.     padding-bottom: $gutter-site-mobile;
  2824.  
  2825.     &:last-child {
  2826.       padding-bottom: 0;
  2827.       border-bottom: 0;
  2828.     }
  2829.   }
  2830. }
  2831.  
  2832. .list-view-item__link {
  2833.   display: table;
  2834.   table-layout: fixed;
  2835.   width: 100%;
  2836. }
  2837.  
  2838. .list-view-item__image {
  2839.   max-height: 95px;
  2840. }
  2841.  
  2842. .list-view-item__image-column {
  2843.   display: table-cell;
  2844.   vertical-align: middle;
  2845.   width: 130px;
  2846.  
  2847.   @include media-query($small) {
  2848.     width: 85px;
  2849.   }
  2850. }
  2851.  
  2852. .list-view-item__image-wrapper {
  2853.   position: relative;
  2854.   margin-right: $section-spacing-small;
  2855.  
  2856.   @include media-query($small) {
  2857.     margin-right: $section-spacing-small / 2;
  2858.   }
  2859. }
  2860.  
  2861. .list-view-item__title-column {
  2862.   display: table-cell;
  2863.   vertical-align: middle;
  2864. }
  2865.  
  2866. .list-view-item__title {
  2867.   color: $color-text;
  2868.   font-size: em($font-size-base + 2px);
  2869.   min-width: 100px;
  2870.  
  2871.   @if $font-bold-titles {
  2872.     font-weight: $font-weight-header--bold;
  2873.   }
  2874.  
  2875.   @include media-query($small) {
  2876.     font-size: em($font-size-base - 1px);
  2877.   }
  2878. }
  2879.  
  2880. .list-view-item__sold-out {
  2881.   font-size: em($font-size-base - 1px);
  2882. }
  2883.  
  2884. .list-view-item__on-sale {
  2885.   color: $color-sale-text;
  2886.   font-size: em($font-size-base - 1px);
  2887.  
  2888.   @include media-query($small) {
  2889.     display: none;
  2890.   }
  2891. }
  2892.  
  2893. .list-view-item__vendor-column {
  2894.   display: table-cell;
  2895.   text-align: center;
  2896.   vertical-align: middle;
  2897.   width: 20%;
  2898. }
  2899.  
  2900. .list-view-item__vendor {
  2901.   font-size: em($font-size-base - 1px);
  2902.   font-style: italic;
  2903.  
  2904.   @include media-query($small) {
  2905.     font-size: em($font-size-base - 2px);
  2906.   }
  2907. }
  2908.  
  2909. .list-view-item__price-column {
  2910.   display: table-cell;
  2911.   text-align: right;
  2912.   vertical-align: middle;
  2913.   width: 20%;
  2914.   font-size: em($font-size-base + 1px);
  2915.  
  2916.   @include media-query($small) {
  2917.     font-size: em($font-size-base - 1px);
  2918.   }
  2919.  
  2920.   .price__vendor,
  2921.   .price-item__label {
  2922.     display: none;
  2923.   }
  2924.  
  2925.   .price__regular,
  2926.   .price__sale {
  2927.     flex-basis: 100%;
  2928.   }
  2929. }
  2930.  
  2931. .list-view-item__price {
  2932.   white-space: nowrap;
  2933.   overflow: hidden;
  2934.   text-overflow: ellipsis;
  2935. }
  2936.  
  2937. .list-view-item__price--reg {
  2938.   color: $color-sale-text;
  2939.  
  2940.   @include media-query($small) {
  2941.     display: block;
  2942.   }
  2943. }
  2944.  
  2945. .list-view-item__price--sale {
  2946.   @include media-query($small) {
  2947.     display: block;
  2948.   }
  2949. }
  2950.  
  2951. /*============================================================================
  2952.   Slick slider overrides
  2953. ==============================================================================*/
  2954. $slick-dot-size: 12px;
  2955. $slick-dot-size-small: 10px;
  2956.  
  2957. .slick-dotted.slick-slider {
  2958.   margin-bottom: 0;
  2959. }
  2960.  
  2961. /*================ Slick dots and prev/next pagination ================*/
  2962. .slick-slider .slick-dots {
  2963.   margin: 0;
  2964.   width: auto;
  2965.  
  2966.   li {
  2967.     // sass-lint:disable SelectorDepth
  2968.     margin: 0;
  2969.     vertical-align: middle;
  2970.     width: $slick-dot-size-small;
  2971.     height: $slick-dot-size-small;
  2972.     margin-left: 6px;
  2973.  
  2974.     &:first-of-type {
  2975.       margin-left: 0;
  2976.     }
  2977.  
  2978.     @include media-query($medium-up) {
  2979.       width: $slick-dot-size;
  2980.       height: $slick-dot-size;
  2981.       margin-left: 8px;
  2982.     }
  2983.  
  2984.     button {
  2985.       position: relative;
  2986.       padding: 0;
  2987.       width: $slick-dot-size-small;
  2988.       height: $slick-dot-size-small;
  2989.  
  2990.       @include media-query($medium-up) {
  2991.         width: $slick-dot-size;
  2992.         height: $slick-dot-size;
  2993.       }
  2994.     }
  2995.  
  2996.     button::before {
  2997.       text-indent: -9999px;
  2998.       background-color: transparent;
  2999.       border-radius: 100%;
  3000.       background-color: currentColor;
  3001.       width: $slick-dot-size-small;
  3002.       height: $slick-dot-size-small;
  3003.       opacity: 0.4;
  3004.       transition: all 0.2s;
  3005.  
  3006.       @include media-query($medium-up) {
  3007.         width: $slick-dot-size;
  3008.         height: $slick-dot-size;
  3009.       }
  3010.     }
  3011.  
  3012.     &.slick-active button::before {
  3013.       opacity: 1;
  3014.     }
  3015.  
  3016.     button:active::before {
  3017.       opacity: 0.7;
  3018.     }
  3019.   }
  3020. }
  3021.  
  3022. /*================ Index sections ================*/
  3023. .index-section {
  3024.   padding-top: $section-spacing-small;
  3025.   padding-bottom: $section-spacing-small;
  3026.  
  3027.   @include media-query($medium-up) {
  3028.     padding-top: $section-spacing;
  3029.     padding-bottom: $section-spacing;
  3030.   }
  3031.  
  3032.   &:first-child {
  3033.     padding-top: 0;
  3034.     border-top: 0;
  3035.   }
  3036.  
  3037.   &:last-child {
  3038.     padding-bottom: 0;
  3039.   }
  3040. }
  3041.  
  3042. .index-section--flush + .index-section--flush {
  3043.   margin-top: -($section-spacing-small * 2);
  3044. }
  3045.  
  3046. [class*="index-section--flush"] + [class*="index-section--flush"] {
  3047.   @include media-query($medium-up) {
  3048.     margin-top: -($section-spacing * 2);
  3049.   }
  3050. }
  3051.  
  3052. // Flush sections should be tight to the nav if they are the first on the page
  3053. .index-section--flush:first-child {
  3054.   margin-top: -$section-spacing-small;
  3055. }
  3056.  
  3057. [class*="index-section--flush"]:first-child {
  3058.   @include media-query($medium-up) {
  3059.     margin-top: -$section-spacing;
  3060.   }
  3061. }
  3062.  
  3063. // Flush sections should be tight to the footer if they are last on the page
  3064. .index-section--flush:last-child {
  3065.   margin-bottom: -$section-spacing-small;
  3066. }
  3067.  
  3068. [class*="index-section--flush"]:last-child {
  3069.   @include media-query($medium-up) {
  3070.     margin-bottom: -$section-spacing;
  3071.   }
  3072. }
  3073.  
  3074. // Visually align featured product section (if first on homepage on mobile)
  3075. .index-section--featured-product:first-child {
  3076.   @include media-query($small) {
  3077.     margin-top: -12px;
  3078.   }
  3079. }
  3080.  
  3081. $color-blankstate: rgba($color-body-text, 0.35);
  3082. $color-blankstate-border: rgba($color-body-text, 0.2);
  3083. $color-blankstate-background: rgba($color-body-text, 0.1);
  3084.  
  3085. .placeholder-svg {
  3086.   display: block;
  3087.   fill: $color-blankstate;
  3088.   background-color: $color-blankstate-background;
  3089.   width: 100%;
  3090.   height: 100%;
  3091.   max-width: 100%;
  3092.   max-height: 100%;
  3093.   border: 1px solid $color-blankstate-border;
  3094. }
  3095.  
  3096. .placeholder-noblocks {
  3097.   padding: 40px;
  3098.   text-align: center;
  3099. }
  3100.  
  3101. // Mimic a background image by wrapping the placeholder svg with this class
  3102. .placeholder-background {
  3103.   position: absolute;
  3104.   top: 0;
  3105.   right: 0;
  3106.   bottom: 0;
  3107.   left: 0;
  3108.  
  3109.   .icon {
  3110.     border: 0;
  3111.   }
  3112. }
  3113.  
  3114. // Custom styles for some blank state images
  3115. .image-bar__content .placeholder-svg {
  3116.   position: absolute;
  3117.   top: 0;
  3118.   left: 0;
  3119. }
  3120.  
  3121.  
  3122. /*================ TEMPLATES ================*/
  3123. /*============= Templates | Password =============*/
  3124.  
  3125. .password-page {
  3126.   display: table;
  3127.   height: 100%;
  3128.   width: 100%;
  3129.   color: $color-body-text;
  3130.   background-color: $color-body;
  3131.   background-size: cover;
  3132.  
  3133.   .ie9 & {
  3134.     height: auto;
  3135.   }
  3136. }
  3137.  
  3138. .password-form-message {
  3139.   max-width: 500px;
  3140.   margin-left: auto;
  3141.   margin-right: auto;
  3142. }
  3143.  
  3144. .password-header {
  3145.   height: 85px;
  3146.   display: table-row;
  3147. }
  3148.  
  3149. .password-header__inner {
  3150.   display: table-cell;
  3151.   vertical-align: middle;
  3152. }
  3153.  
  3154. .password-login {
  3155.   padding: 0 30px;
  3156.   text-align: right;
  3157. }
  3158.  
  3159. .password-logo {
  3160.   .logo {
  3161.     color: $color-navigation-text;
  3162.     font-weight: $font-weight-header--bold;
  3163.     max-width: 100%;
  3164.   }
  3165. }
  3166.  
  3167. .password-main {
  3168.   display: table-row;
  3169.   width: 100%;
  3170.   height: 100%;
  3171.   margin: 0 auto;
  3172. }
  3173.  
  3174. .password-main__inner {
  3175.   display: table-cell;
  3176.   vertical-align: middle;
  3177.   padding: ($gutter-site / 2) $gutter-site;
  3178. }
  3179.  
  3180. .password-message {
  3181.   max-width: 500px;
  3182.   margin: ($gutter-site * 1.5) auto ($gutter-site / 2);
  3183. }
  3184.  
  3185. .password__input-group {
  3186.   margin: 0 auto $gutter-site;
  3187.   max-width: 35rem;
  3188. }
  3189.  
  3190. .password__title {
  3191.   display: block;
  3192.   margin-bottom: $gutter-site * 1.5;
  3193. }
  3194.  
  3195. .password__form-heading {
  3196.   margin-bottom: $gutter-site;
  3197. }
  3198.  
  3199. .password-powered-by {
  3200.   margin-top: $gutter-site * 1.5;
  3201. }
  3202.  
  3203. .password-social-sharing {
  3204.   margin-top: $gutter-site * 1.5;
  3205. }
  3206.  
  3207. .product-single {
  3208.   // prevent scroll anchoring within element
  3209.   overflow-anchor: none;
  3210. }
  3211.  
  3212. .product-single__title {
  3213.   margin-bottom: 0.5rem;
  3214.   font-size: 1.5em
  3215. }
  3216.  
  3217. .product__price,
  3218. .featured-product__price {
  3219.   font-size: 1.25em;
  3220. }
  3221.  
  3222. .product__policies {
  3223.   margin: 0.4rem 0 1rem 0;
  3224.   font-size: em($font-size-base - 1);
  3225. }
  3226.  
  3227. /*================ Add to cart form ================*/
  3228.  
  3229. .product-form {
  3230.   @include display-flexbox();
  3231.   @include flex-wrap(wrap);
  3232.   @include align-items(flex-end);
  3233.   width: auto;
  3234.   padding-top: 2rem;
  3235. }
  3236.  
  3237. .product-form--payment-button-no-variants {
  3238.   max-width: 400px;
  3239. }
  3240.  
  3241. .product-form__item {
  3242.   @include flex(1 1 200px);
  3243.   margin-bottom: 10px;
  3244.   padding: 0 5px;
  3245.  
  3246.   label {
  3247.     display: block;
  3248.  
  3249.     .product-form--hide-variant-labels & {
  3250.       // sass-lint:disable no-important
  3251.       position: absolute !important;
  3252.       overflow: hidden;
  3253.       clip: rect(0 0 0 0);
  3254.       height: 1px;
  3255.       width: 1px;
  3256.       margin: -1px;
  3257.       padding: 0;
  3258.       border: 0;
  3259.     }
  3260.   }
  3261. }
  3262.  
  3263. .product-form__item--submit {
  3264.   @include flex(1 1 300px);
  3265. }
  3266.  
  3267. .product-form__item--no-variants {
  3268.   max-width: 400px;
  3269. }
  3270.  
  3271. .product-form__item--payment-button {
  3272.   @include flex-basis(100%);
  3273.  
  3274.   .product-single--small-image &,
  3275.   .product-single--full-image & {
  3276.     @include media-query($large-up) {
  3277.       display: inline-flex;
  3278.       @include flex-direction(row);
  3279.       @include align-items(flex-start);
  3280.     }
  3281.   }
  3282.   &.product-form__item--no-variants {
  3283.     @include flex-direction(column);
  3284.     @include align-items(stretch);
  3285.   }
  3286. }
  3287.  
  3288. .product-form__variants {
  3289.   display: none;
  3290.  
  3291.   .no-js & {
  3292.     display: block;
  3293.   }
  3294. }
  3295.  
  3296. .product-form__item--quantity {
  3297.   @include flex(0 0 100px);
  3298. }
  3299.  
  3300. .product-form__input {
  3301.   display: block;
  3302.   width: 100%;
  3303. }
  3304.  
  3305. .product-form__cart-submit {
  3306.   display: block;
  3307.   width: 100%;
  3308.   line-height: 1.4;
  3309.   padding-left: 5px;
  3310.   padding-right: 5px;
  3311.   white-space: normal;
  3312.   margin-top: 0;
  3313.   min-height: 44px;
  3314.  
  3315.   .product-single--small-image &,
  3316.   .product-single--full-image & {
  3317.     @include flex(50%);
  3318.     margin-right: 10px;
  3319.   }
  3320.  
  3321.   .product-form__item--payment-button & {
  3322.     margin-top: 10px;
  3323.   }
  3324. }
  3325.  
  3326. .shopify-payment-button {
  3327.   .product-single--small-image &,
  3328.   .product-single--full-image & {
  3329.     @include flex(50%);
  3330.   }
  3331.  
  3332.   .shopify-payment-button__button {
  3333.     margin-top: 10px;
  3334.  
  3335.     .product-single--small-image &,
  3336.     .product-single--full-image & {
  3337.       margin-top: 10px;
  3338.     }
  3339.     @include media-query($medium-up) {
  3340.       margin-top: 20px;
  3341.     }
  3342.   }
  3343.   .shopify-payment-button__button--unbranded {
  3344.     @extend .btn;
  3345.     @extend .product-form__cart-submit;
  3346.     margin-bottom: 10px;
  3347.  
  3348.     &:hover {
  3349.       background-color: $color-btn-primary-focus !important;
  3350.     }
  3351.   }
  3352.   .shopify-payment-button__button--branded {
  3353.     border-radius: $border-radius;
  3354.     overflow: hidden;
  3355.   }
  3356.   .shopify-payment-button__more-options {
  3357.     margin: 16px 0 10px;
  3358.     font-size: em($font-size-base - 2px);
  3359.     text-decoration: underline;
  3360.  
  3361.     &:hover,
  3362.     &:focus {
  3363.       opacity: $opacity-link-hover;
  3364.     }
  3365.   }
  3366. }
  3367.  
  3368. @include media-query($medium-up) {
  3369.   .product-form__cart-submit--small {
  3370.     max-width: 300px;
  3371.   }
  3372. }
  3373.  
  3374. .product-single__description {
  3375.   margin-top: $grid-gutter;
  3376. }
  3377.  
  3378. .product__quantity-error {
  3379.   .icon {
  3380.     margin-right: 1rem;
  3381.   }
  3382. }
  3383.  
  3384. /*================ Product Images ================*/
  3385.  
  3386. .product-single__thumbnail {
  3387.   display: block;
  3388.   margin: -2px 0 8px;
  3389.   min-height: 44px;
  3390.   position: relative;
  3391.  
  3392.   &:not([disabled]):not(.active-thumb):hover {
  3393.     opacity: 0.8;
  3394.   }
  3395. }
  3396.  
  3397. .product-single__thumbnail-image {
  3398.   max-width: 100%;
  3399.   display: block;
  3400.   border: 2px solid transparent;
  3401.   padding: 2px;
  3402.  
  3403.   .active-thumb & {
  3404.     border-color: $color-text;
  3405.   }
  3406. }
  3407.  
  3408. .product-featured-img {
  3409.   display: block;
  3410.   margin: 0 auto;
  3411.   position: absolute;
  3412.   top: 4px;
  3413.   left: 4px;
  3414.   width: calc(100% - 8px);
  3415.  
  3416.   .no-js & {
  3417.     position: relative;
  3418.   }
  3419. }
  3420.  
  3421. // sass-lint:disable class-name-format
  3422. .zoomImg {
  3423.   background-color: $color-body;
  3424. }
  3425.  
  3426. // sass-lint:enable class-name-format
  3427. @include media-query ($medium-up) {
  3428.   .product-single__thumbnails {
  3429.     margin-top: $grid-gutter;
  3430.   }
  3431. }
  3432.  
  3433. @include media-query ($small) {
  3434.   .product-single__photos {
  3435.     margin-bottom: $grid-gutter;
  3436.   }
  3437.   .product-single__photo--has-thumbnails {
  3438.     margin-bottom: $grid-gutter;
  3439.   }
  3440. }
  3441.  
  3442. .product-single__photos--full {
  3443.   margin-bottom: $grid-gutter;
  3444. }
  3445.  
  3446. .product-single__photo-wrapper {
  3447.   margin: 0 auto;
  3448.   width: 100%;
  3449. }
  3450.  
  3451. // Prevent reflow when image loads
  3452. .product-single__photo {
  3453.   margin: 0 auto;
  3454.   min-height: 1px;
  3455.   width: 100%;
  3456.   height: 100%;
  3457.   position: relative;
  3458.   padding-bottom: 4px;
  3459. }
  3460.  
  3461. @include media-query($small) {
  3462.   .template-product .main-content {
  3463.     padding-top: $grid-gutter-mobile;
  3464.   }
  3465.   .thumbnails-slider--active {
  3466.     .product-single__thumbnails {
  3467.       display: none;
  3468.       &.slick-initialized,
  3469.       .ie9 & {
  3470.         display: block;
  3471.         margin: 0 auto;
  3472.         max-width: 75%;
  3473.       }
  3474.     }
  3475.   }
  3476.   .product-single__photos {
  3477.     position: relative;
  3478.   }
  3479.   .thumbnails-wrapper {
  3480.     position: relative;
  3481.     top: 30px;
  3482.     text-align: center;
  3483.     margin: 0 2px 30px 2px;
  3484.   }
  3485.   .thumbnails-slider__btn {
  3486.     position: absolute;
  3487.     top: 50%;
  3488.     transform: translateY(-50%);
  3489.   }
  3490.   .thumbnails-slider__prev {
  3491.     left: -20px;
  3492.   }
  3493.   .thumbnails-slider__next {
  3494.     right: -20px;
  3495.   }
  3496.   .product-single__thumbnails-item {
  3497.     display: inline-block;
  3498.     padding-bottom: 10px;
  3499.     width: 72px;
  3500.     float: none;
  3501.     vertical-align: middle;
  3502.  
  3503.     .slick-slider & {
  3504.       float: left;
  3505.     }
  3506.     .thumbnails-slider--active & {
  3507.       padding: 5px 0;
  3508.     }
  3509.   }
  3510.   .product-single__thumbnail {
  3511.     margin: 0 auto;
  3512.     width: 50px;
  3513.   }
  3514. }
  3515.  
  3516. /*================ Template | Collections ================*/
  3517.  
  3518. // Collection Hero
  3519. //----------------------------------------
  3520. .collection-hero {
  3521.   position: relative;
  3522.   overflow: hidden;
  3523.   margin-top: -$gutter-site;
  3524.   margin-bottom: $gutter-site-mobile;
  3525.  
  3526.   @include media-query($medium-up) {
  3527.     margin-bottom: $section-spacing-small;
  3528.   }
  3529. }
  3530.  
  3531. .collection-description {
  3532.   margin-bottom: $gutter-site-mobile;
  3533.   margin-top: $gutter-site-mobile;
  3534.  
  3535.   @include media-query($medium-up) {
  3536.     margin-bottom: $section-spacing-small;
  3537.     margin-top: $section-spacing-small;
  3538.   }
  3539. }
  3540.  
  3541. .collection-hero__image {
  3542.   background-position: 50% 50%;
  3543.   background-repeat: no-repeat;
  3544.   background-size: cover;
  3545.   height: 300px;
  3546.   opacity: 1;
  3547.  
  3548.   @include media-query($small) {
  3549.     height: 180px;
  3550.   }
  3551. }
  3552.  
  3553. .collection-hero__title-wrapper::before {
  3554.   content: '';
  3555.   position: absolute;
  3556.   top: 0;
  3557.   right: 0;
  3558.   bottom: 0;
  3559.   left: 0;
  3560.   background-color: $color-image-overlay;
  3561.   opacity: $opacity-image-overlay;
  3562. }
  3563.  
  3564. .collection-hero__title {
  3565.   position: absolute;
  3566.   color: $color-overlay-title-text;
  3567.   width: 100%;
  3568.   text-align: center;
  3569.   left: 0;
  3570.   right: 0;
  3571.   top: 50%;
  3572.   @include transform(translateY(-50%));
  3573.  
  3574.   @include media-query($medium-up) {
  3575.     font-size: em($font-size-header + 6);
  3576.   }
  3577. }
  3578.  
  3579. .template-blog .social-sharing {
  3580.   margin-bottom: $section-spacing-small / 2;
  3581. }
  3582.  
  3583. .blog-list-view .pagination {
  3584.   padding-top: 0;
  3585. }
  3586.  
  3587. /*================ Cart page ================*/
  3588. .cart {
  3589.   th,
  3590.   td {
  3591.     border: 0;
  3592.   }
  3593.  
  3594.   td {
  3595.     padding: $gutter-site-mobile 0;
  3596.   }
  3597.  
  3598.   th {
  3599.     font-weight: $font-weight-body;
  3600.     padding: ($gutter-site / 2) 0;
  3601.   }
  3602.  
  3603.   .cart__meta {
  3604.     padding-right: 15px;
  3605.   }
  3606. }
  3607.  
  3608. .cart__meta-text {
  3609.   padding: 5px 0;
  3610.   font-size: em($font-size-base - 2);
  3611.   font-style: italic;
  3612. }
  3613.  
  3614. .cart__qty-label {
  3615.   @include visually-hidden();
  3616. }
  3617.  
  3618. .cart__qty-input {
  3619.   text-align: center;
  3620.   width: 60px;
  3621.   padding-left: 5px;
  3622.   padding-right: 5px;
  3623.  
  3624.   @include media-query($small) {
  3625.     padding-top: 2px;
  3626.     padding-bottom: 2px;
  3627.   }
  3628. }
  3629.  
  3630. .cart__edit {
  3631.   margin-top: 10px;
  3632. }
  3633.  
  3634. .cart__edit-text--cancel {
  3635.   .cart__edit--active & {
  3636.     display: none;
  3637.   }
  3638. }
  3639.  
  3640. .cart__edit-text--edit {
  3641.   display: none;
  3642.  
  3643.   .cart__edit--active & {
  3644.     display: block;
  3645.   }
  3646. }
  3647.  
  3648. .cart__edit-text--cancel,
  3649. .cart__edit-text--edit {
  3650.   pointer-events: none;
  3651. }
  3652.  
  3653. .cart__row {
  3654.   p {
  3655.     margin-bottom: 0;
  3656.  
  3657.     + p {
  3658.       margin-top: 10px;
  3659.     }
  3660.   }
  3661.  
  3662.   &.cart__update--show {
  3663.     border-bottom: 0;
  3664.   }
  3665. }
  3666.  
  3667. .cart__subtotal-title {
  3668.   font-size: em($font-size-base + 2px);
  3669. }
  3670.  
  3671. .cart__subtotal {
  3672.   padding-left: $gutter-site / 2;
  3673.  
  3674.   @include media-query($medium-up) {
  3675.     padding-left: $gutter-site;
  3676.     min-width: 150px;
  3677.     display: inline-block;
  3678.   }
  3679. }
  3680.  
  3681. .cart__savings {
  3682.   padding-top: 18px;
  3683. }
  3684.  
  3685. .cart__savings-amount {
  3686.   padding-left: $gutter-site / 2;
  3687.  
  3688.   @include media-query($medium-up) {
  3689.     padding-left: $gutter-site;
  3690.     min-width: 150px;
  3691.     display: inline-block;
  3692.   }
  3693. }
  3694.  
  3695. .cart__footer {
  3696.   padding-top: $section-spacing-small / 2;
  3697. }
  3698.  
  3699. .cart__submit-controls {
  3700.   @include display-flexbox();
  3701.   @include flex-wrap(wrap);
  3702.   @include align-items(flex-start);
  3703.   @include justify-content(flex-end);
  3704.  
  3705.   & > .cart__submit-control {
  3706.     margin-left: 10px;
  3707.     margin-bottom: 10px;
  3708.   }
  3709.  
  3710.   & .cart__submit-control:first-child {
  3711.     margin-left: 0;
  3712.   }
  3713.  
  3714.   @include media-query ($small) {
  3715.     @include justify-content(center);
  3716.   }
  3717. }
  3718.  
  3719. .cart__submit {
  3720.   @include media-query($small) {
  3721.     line-height: 1.4;
  3722.     min-height: 44px;
  3723.     margin-left: 0;
  3724.     margin-bottom: 0;
  3725.   }
  3726.  
  3727.   @include media-query ($narrowscreen) {
  3728.     width: 100%;
  3729.   }
  3730. }
  3731.  
  3732. .cart__continue {
  3733.   line-height: 1.2;
  3734. }
  3735.  
  3736. .cart__shipping {
  3737.   font-size: em($font-size-base - 2);
  3738.   padding: 10px 0 20px;
  3739.   margin-bottom: 25px;
  3740. }
  3741.  
  3742. .cart-note__label,
  3743. .cart-note__input {
  3744.   display: block;
  3745.  
  3746.   @include media-query($small) {
  3747.     margin: 0 auto;
  3748.   }
  3749. }
  3750.  
  3751. .cart-note__label {
  3752.   margin-bottom: 15px;
  3753. }
  3754.  
  3755. .cart-note__input {
  3756.   min-height: 50px;
  3757.   width: 100%;
  3758.  
  3759.   @include media-query($small) {
  3760.     margin-bottom: 40px;
  3761.   }
  3762. }
  3763.  
  3764. .cart__image {
  3765.   max-height: 95px;
  3766. }
  3767.  
  3768. .cart__image-wrapper div {
  3769.   display: block;
  3770.   padding-right: $section-spacing-small / 2;
  3771.  
  3772.   @include media-query($medium-up) {
  3773.     padding-right: $section-spacing-small;
  3774.   }
  3775. }
  3776.  
  3777. @include media-query($medium-up) {
  3778.   .cart__image-wrapper {
  3779.     width: 130px;
  3780.   }
  3781.  
  3782.   .cart__meta {
  3783.     max-width: 300px;
  3784.   }
  3785.  
  3786.   .cart__remove {
  3787.     margin-top: 4px;
  3788.   }
  3789.  
  3790.   .cart__qty {
  3791.     text-align: center;
  3792.   }
  3793. }
  3794.  
  3795. @include media-query($small) {
  3796.  
  3797.   .cart__update-wrapper {
  3798.     display: none;
  3799.     padding-top: 0;
  3800.     padding-bottom: $gutter-site-mobile;
  3801.     border-bottom: 1px solid $color-border;
  3802.   }
  3803.  
  3804.   .cart__update--show {
  3805.     td {
  3806.       padding-bottom: 10px;
  3807.     }
  3808.  
  3809.     & + tr {
  3810.       display: table-row;
  3811.     }
  3812.   }
  3813.  
  3814.   .cart__row-price {
  3815.     text-align: right;
  3816.   }
  3817.  
  3818.   .cart__update-controls {
  3819.     @include display-flexbox();
  3820.     @include flex-wrap(wrap);
  3821.     @include align-items(center);
  3822.     @include justify-content(space-between);
  3823.  
  3824.     & > .cart__update-control {
  3825.       margin-bottom: 10px;
  3826.     }
  3827.   }
  3828.  
  3829.   .cart-flex {
  3830.     @include display-flexbox();
  3831.     @include flex-wrap(wrap);
  3832.     @include align-items(center);
  3833.   }
  3834.  
  3835.   .cart-flex-item {
  3836.     display: block;
  3837.     min-width: 0;
  3838.     @include flex(1 1 100%);
  3839.   }
  3840.  
  3841.   .cart__image-wrapper {
  3842.     max-width: 85px;
  3843.   }
  3844.  
  3845.   .cart__price-wrapper {
  3846.     width: 24%;
  3847.     text-align: right;
  3848.   }
  3849.  
  3850.   .cart-message {
  3851.     padding-top: 20px;
  3852.   }
  3853.  
  3854.   .cart__qty {
  3855.     padding: 0 10px;
  3856.   }
  3857.  
  3858.   .cart__qty-label {
  3859.     @include visually-shown();
  3860.     display: inline-block;
  3861.     vertical-align: middle;
  3862.     font-size: em(13);
  3863.     margin-right: 5px;
  3864.   }
  3865. }
  3866.  
  3867. .cart__continue-btn {
  3868.   .cart--no-cookies & {
  3869.     display: none;
  3870.   }
  3871. }
  3872.  
  3873. .cart--empty-message {
  3874.   .cart--no-cookies & {
  3875.     display: none;
  3876.   }
  3877. }
  3878.  
  3879. .cookie-message {
  3880.   display: none;
  3881.   padding-bottom: 25px;
  3882.  
  3883.   .cart--no-cookies & {
  3884.     display: block;
  3885.   }
  3886. }
  3887.  
  3888. .additional-checkout-buttons {
  3889.   margin-top: $gutter-site-mobile;
  3890.  
  3891.   // reset for paypal button
  3892.   input[type="image"] {
  3893.     padding: 0;
  3894.     border: 0;
  3895.     background: transparent;
  3896.   }
  3897.  
  3898.   @include media-query ($narrowscreen) {
  3899.     margin-top: 10px;
  3900.   }
  3901. }
  3902.  
  3903.  
  3904. /*================ MODULES ================*/
  3905. .site-header {
  3906.   background-color: $color-body;
  3907.   position: relative;
  3908.   padding: 0 $gutter-site;
  3909.  
  3910.   @include media-query($small) {
  3911.     border-bottom: 1px solid $color-border;
  3912.     padding: 0;
  3913.   }
  3914.  
  3915.   @include media-query($medium-up) {
  3916.     &.logo--center {
  3917.       padding-top: $grid-gutter;
  3918.     }
  3919.   }
  3920. }
  3921.  
  3922. .announcement-bar {
  3923.   text-align: center;
  3924.   position: relative;
  3925.   z-index: $z-index-announcement-bar;
  3926. }
  3927.  
  3928. .announcement-bar--link {
  3929.   display: block;
  3930. }
  3931.  
  3932. .announcement-bar__message {
  3933.   display: block;
  3934.   font-size: em(16);
  3935.   font-weight: $font-weight-header;
  3936.   padding: 10px $gutter-site-mobile;
  3937.  
  3938.   @include media-query($medium-up) {
  3939.     padding: 10px $gutter-site;
  3940.   }
  3941. }
  3942.  
  3943. .site-header__logo {
  3944.   margin: 15px 0;
  3945.  
  3946.   .logo-align--center & {
  3947.     text-align: center;
  3948.     margin: 0 auto;
  3949.  
  3950.     @include media-query($small) {
  3951.       text-align: left;
  3952.       margin: 15px 0;
  3953.     }
  3954.   }
  3955. }
  3956.  
  3957. .site-header__logo-link {
  3958.   display: inline-block;
  3959.   word-break: break-word;
  3960. }
  3961.  
  3962. .site-header__logo-image {
  3963.   display: block;
  3964.  
  3965.   @include media-query($medium-up) {
  3966.     margin: 0 auto;
  3967.   }
  3968. }
  3969.  
  3970. .site-header__logo-image img {
  3971.   width: 100%;
  3972. }
  3973.  
  3974. .site-header__logo-image--centered img {
  3975.   margin: 0 auto;
  3976. }
  3977.  
  3978. @include media-query($medium-up) {
  3979.   .logo-align--center .site-header__logo-link {
  3980.     margin: 0 auto;
  3981.   }
  3982. }
  3983.  
  3984. @include media-query($small) {
  3985.   .site-header__icons {
  3986.     .btn--link,
  3987.     .site-header__cart {
  3988.       font-size: em($font-size-base);
  3989.     }
  3990.   }
  3991. }
  3992.  
  3993. .site-header__icons {
  3994.   position: relative;
  3995.   white-space: nowrap;
  3996.  
  3997.   @include media-query($small) {
  3998.     width: auto;
  3999.   }
  4000. }
  4001.  
  4002. .site-header__icons-wrapper {
  4003.   position: relative;
  4004.   margin-right: -10px;
  4005.  
  4006.   @include media-query($small) {
  4007.     @include display-flexbox();
  4008.   }
  4009. }
  4010.  
  4011. .site-header__cart,
  4012. .site-header__search,
  4013. .site-header__account {
  4014.   position: relative;
  4015. }
  4016.  
  4017. .site-header__search {
  4018.   padding-right: 45px;
  4019.  
  4020.   .site-header__icons--plus & {
  4021.     padding-right: 86px;
  4022.   }
  4023. }
  4024.  
  4025. @include media-query($medium-up) {
  4026.   .site-header__cart,
  4027.   .site-header__account {
  4028.     position: absolute;
  4029.     top: 50%;
  4030.     right: 0;
  4031.     padding: 10px 11px;
  4032.     margin-left: 5px;
  4033.     @include transform(translateY(-50%));
  4034.   }
  4035.  
  4036.   .site-header__account {
  4037.     right: 45px;
  4038.   }
  4039. }
  4040.  
  4041. .site-header__cart-title,
  4042. .site-header__search-title {
  4043.   display: block;
  4044.   vertical-align: middle;
  4045.  
  4046.   @include visually-hidden();
  4047. }
  4048.  
  4049. .site-header__cart-title {
  4050.   margin-right: 3px;
  4051. }
  4052.  
  4053. .site-header__cart-count {
  4054.   display: flex;
  4055.   align-items: center;
  4056.   justify-content: center;
  4057.   position: absolute;
  4058.   right: 0.4rem;
  4059.   top: 0.2rem;
  4060.   font-weight: bold;
  4061.   background-color: $color-btn-primary;
  4062.   color: $color-btn-primary-text;
  4063.   border-radius: 50%;
  4064.   min-width: 1em;
  4065.   height: 1em;
  4066.  
  4067.   span {
  4068.     font-family: $font-stack-cart-notification;
  4069.     font-size: calc(11em / 16);
  4070.     line-height: 1;
  4071.   }
  4072. }
  4073.  
  4074. @include media-query($small) {
  4075.   .site-header__cart-count {
  4076.     top: calc(7em / 16);
  4077.     right: 0;
  4078.     border-radius: 50%;
  4079.     min-width: calc(19em / 16);
  4080.     height: calc(19em / 16);
  4081.  
  4082.     span {
  4083.       padding: 0.25em calc(6em / 16);
  4084.       font-size: 12px;
  4085.     }
  4086.   }
  4087. }
  4088.  
  4089. .site-header__menu {
  4090.   display: none;
  4091. }
  4092.  
  4093. .site-header__icon svg {
  4094.   height: 23px;
  4095.   width: 22px;
  4096.  
  4097.   @include media-query($medium-up) {
  4098.     margin-right: 3px;
  4099.   }
  4100. }
  4101.  
  4102. @include media-query($small) {
  4103.   .site-header__logo {
  4104.     padding-left: $gutter-site-mobile;
  4105.   }
  4106.  
  4107.   .site-header__icons {
  4108.     padding-right: $gutter-site-mobile;
  4109.   }
  4110.  
  4111.   .site-header__icon {
  4112.     display: inline-block;
  4113.     vertical-align: middle;
  4114.     padding: 10px 11px;
  4115.     margin: 0;
  4116.   }
  4117.  
  4118.   .site-header__logo {
  4119.     text-align: left;
  4120.  
  4121.     img {
  4122.       margin: 0;
  4123.     }
  4124.   }
  4125. }
  4126.  
  4127. .article-listing {
  4128.   padding-top: $gutter-site;
  4129.   margin-bottom: $gutter-site;
  4130. }
  4131.  
  4132. .article__title {
  4133.   margin-bottom: $gutter-site-mobile / 2;
  4134. }
  4135.  
  4136. .article__title--has-image {
  4137.   @include media-query($small) {
  4138.     padding-left: $gutter-site-mobile;
  4139.   }
  4140. }
  4141.  
  4142. .article__author {
  4143.   margin-right: 10px;
  4144. }
  4145.  
  4146. .article__author,
  4147. .article__date {
  4148.   display: inline-block;
  4149.   margin-bottom: $gutter-site-mobile;
  4150.  
  4151.   .template-article & {
  4152.     margin-bottom: 0;
  4153.   }
  4154. }
  4155.  
  4156. .article__tags {
  4157.   margin-bottom: $section-spacing / 2;
  4158. }
  4159.  
  4160. .article__tags--list {
  4161.   font-style: italic;
  4162. }
  4163.  
  4164. .article__link {
  4165.   display: block;
  4166.  
  4167.   @include media-query($small) {
  4168.     @include display-flexbox;
  4169.     @include flex-direction(column);
  4170.   }
  4171.  
  4172.   &:not([disabled]):hover,
  4173.   &:focus {
  4174.     .article__grid-image-wrapper {
  4175.       @include overlay(1);
  4176.     }
  4177.   }
  4178. }
  4179.  
  4180. .article__meta-buttons {
  4181.   li + li {
  4182.     margin-left: 1.5rem;
  4183.   }
  4184. }
  4185.  
  4186. .article__comment-count {
  4187.   border-color: transparent;
  4188.   border-bottom-color: currentColor;
  4189.   padding: 0 0 3px 0;
  4190.  
  4191.   &:not([disabled]):hover,
  4192.   &:focus {
  4193.     border-color: transparent;
  4194.     border-bottom-color: currentColor;
  4195.   }
  4196. }
  4197.  
  4198. /*============================================================================
  4199.   Blog article grid
  4200. ==============================================================================*/
  4201. .grid--blog {
  4202.   margin-bottom: -$section-spacing;
  4203.   overflow: auto;
  4204. }
  4205.  
  4206. .article__grid-tag {
  4207.   margin-right: 10px;
  4208. }
  4209.  
  4210. .article__grid-meta {
  4211.   margin-bottom: $section-spacing;
  4212. }
  4213.  
  4214. @include media-query($small) {
  4215.   .article__grid-meta--has-image {
  4216.     float: left;
  4217.     padding-left: $gutter-site-mobile;
  4218.   }
  4219. }
  4220.  
  4221. .article__grid-excerpt {
  4222.   margin-bottom: $section-spacing-small / 2;
  4223. }
  4224.  
  4225. .article__grid-image-wrapper {
  4226.   margin: 0 auto;
  4227.   position: relative;
  4228.   width: 100%;
  4229. }
  4230.  
  4231. .article__grid-image-container {
  4232.   display: block;
  4233.   clear: both;
  4234.   position: relative;
  4235.  
  4236.   margin: 0 auto $section-spacing / 2 0;
  4237.   min-height: 1px;
  4238.   width: 100%;
  4239.   height: 100%;
  4240.  
  4241.   @include media-query($small) {
  4242.     float: left;
  4243.     margin: 0 0 $section-spacing 0;
  4244.   }
  4245.  
  4246.   img {
  4247.     display: block;
  4248.   }
  4249. }
  4250.  
  4251. .article__grid-image {
  4252.   margin: 0 auto;
  4253.   width: 100%;
  4254.  
  4255.   .js & {
  4256.     position: absolute;
  4257.     top: 0;
  4258.   }
  4259. }
  4260.  
  4261. .article__list-image-container {
  4262.   display: block;
  4263.   clear: both;
  4264.   position: relative;
  4265.  
  4266.   min-height: 1px;
  4267.   width: 100%;
  4268.   height: 100%;
  4269. }
  4270.  
  4271. .article__list-image-wrapper{
  4272.   width: 100%;
  4273.   margin-bottom: 20px;
  4274. }
  4275.  
  4276. .article__list-image-container {
  4277.   display: block;
  4278.   clear: both;
  4279.   position: relative;
  4280.  
  4281.   min-height: 1px;
  4282.   width: 100%;
  4283.   height: 100%;
  4284. }
  4285.  
  4286. .article__list-image-wrapper{
  4287.   width: 100%;
  4288.   margin-bottom: 20px;
  4289. }
  4290.  
  4291. .article__list-image {
  4292.   margin: 0 auto;
  4293.   width: 100%;
  4294.   position: absolute;
  4295.   top: 0;
  4296. }
  4297.  
  4298. .sidebar {
  4299.   margin-top: 40px;
  4300. }
  4301.  
  4302. .sidebar__list {
  4303.   list-style: none;
  4304.   margin-bottom: $gutter-site;
  4305.  
  4306.   li {
  4307.     margin-bottom: 10px;
  4308.   }
  4309. }
  4310.  
  4311. .pagination {
  4312.   text-align: center;
  4313.   list-style: none;
  4314.   font-size: em(15);
  4315.   padding-top: $section-spacing;
  4316.  
  4317.   li {
  4318.     display: inline-block;
  4319.   }
  4320.  
  4321.   .icon {
  4322.     display: block;
  4323.     height: 20px;
  4324.     vertical-align: middle;
  4325.   }
  4326. }
  4327.  
  4328. .pagination__text {
  4329.   padding: 0 ($gutter-site / 2);
  4330. }
  4331.  
  4332. .comment {
  4333.   margin-bottom: $grid-gutter;
  4334.  
  4335.   &:last-child {
  4336.     margin-bottom: 0;
  4337.   }
  4338. }
  4339.  
  4340. .comment__content {
  4341.   margin-bottom: 5px;
  4342. }
  4343.  
  4344. .comment__meta-item {
  4345.   margin-right: 10px;
  4346.   font-size: em(14);
  4347.  
  4348.   &:first-child::before {
  4349.     content: '\2014 \0020';
  4350.   }
  4351. }
  4352.  
  4353. .social-sharing {
  4354.   display: flex;
  4355.   .template-password & {
  4356.     justify-content: center;
  4357.   }
  4358. }
  4359.  
  4360. .btn--share {
  4361.   background-color: transparent;
  4362.   border-color: $color-border;
  4363.   color: $color-text;
  4364.   margin-right: 5px;
  4365.   margin-bottom: 10px;
  4366.  
  4367.   &:not([disabled]):hover,
  4368.   &:focus {
  4369.     background-color: transparent;
  4370.     border-color: $color-btn-social-focus;
  4371.     color: $color-text;
  4372.   }
  4373.  
  4374.   .icon {
  4375.     vertical-align: middle;
  4376.     width: 16px;
  4377.     height: 16px;
  4378.     margin-right: 4px;
  4379.   }
  4380.  
  4381.   .icon-facebook {
  4382.     fill: $color-facebook;
  4383.   }
  4384.  
  4385.   .icon-twitter {
  4386.     fill: $color-twitter;
  4387.   }
  4388.  
  4389.   .icon-pinterest {
  4390.     fill: $color-pinterest;
  4391.   }
  4392. }
  4393.  
  4394. .share-title {
  4395.   display: inline-block;
  4396.   vertical-align: middle;
  4397. }
  4398.  
  4399.  
  4400. .search-bar__form {
  4401.   display: table;
  4402.   width: 100%;
  4403.   position: relative;
  4404.   height: calc(46em / 16);
  4405.   border: 1px solid transparent;
  4406. }
  4407.  
  4408. @include media-query($small) {
  4409.   .search-bar__form {
  4410.     width: 100%;
  4411.   }
  4412. }
  4413.  
  4414. .search-bar__submit .icon {
  4415.   position: relative;
  4416.   top: -1px;
  4417.   width: 1.2rem;
  4418.   height: auto;
  4419. }
  4420.  
  4421. .search-bar__submit,
  4422. .search-header__submit {
  4423.   display: inline-block;
  4424.   vertical-align: middle;
  4425.   position: absolute;
  4426.   right: 0;
  4427.   top: 0;
  4428.   padding: 0 12px;
  4429.   height: 100%;
  4430.   z-index: 1;
  4431. }
  4432.  
  4433. .search-header__input,
  4434. .search-bar__input {
  4435.   background-color: transparent;
  4436.   border-radius: $border-radius;
  4437.   color: $color-text;
  4438.   border-color: transparent;
  4439.   padding-right: calc(35em / 16);
  4440.   width: 100%;
  4441.   min-height: 44px;
  4442.  
  4443.   &::-webkit-input-placeholder {
  4444.     @include placeholder-text($color-text);
  4445.   }
  4446.  
  4447.   &::-moz-placeholder {
  4448.     @include placeholder-text($color-text);
  4449.   }
  4450.  
  4451.   &:-ms-input-placeholder {
  4452.     @include placeholder-text($color-text, 0);
  4453.   }
  4454.  
  4455.   &::-ms-input-placeholder {
  4456.     @include placeholder-text($color-text, 1);
  4457.   }
  4458. }
  4459.  
  4460. .search-bar__input {
  4461.   border: 1px solid transparent;
  4462.  
  4463.   &:focus {
  4464.     border-color: transparent;
  4465.   }
  4466. }
  4467.  
  4468. .search-bar__close {
  4469.   padding: calc(10em / 16) .75em;
  4470.  
  4471.   .icon {
  4472.     vertical-align: top;
  4473.     width: 1.2rem;
  4474.     height: auto;
  4475.   }
  4476. }
  4477.  
  4478. /*============================================================================
  4479.   The search submit button has pointer-events: none which also
  4480.   effects the :hover style. This forces the style to be applied.
  4481. ==============================================================================*/
  4482. .search-header__input:hover + .btn--link {
  4483.   color: $color-text-focus;
  4484. }
  4485.  
  4486. /*================ Mobile Search Bar ================*/
  4487.  
  4488. .search-bar {
  4489.   border-bottom: 1px solid $color-border;
  4490.   padding: 0 ($gutter-site / 2);
  4491.   z-index: 1000;
  4492. }
  4493.  
  4494. .search-bar__table {
  4495.   display: table;
  4496.   table-layout: fixed;
  4497.   width: 100%;
  4498.   height: 100%;
  4499. }
  4500.  
  4501. .search-bar__table-cell {
  4502.   display: table-cell;
  4503.   vertical-align: middle;
  4504. }
  4505.  
  4506. .search-bar__form-wrapper {
  4507.   width: 90%;
  4508. }
  4509.  
  4510. /*================ Header Search ================*/
  4511. .search-header {
  4512.   display: inline-block;
  4513.   position: relative;
  4514.   width: 100%;
  4515.   max-width: calc(30em / 16);
  4516.   vertical-align: middle;
  4517.  
  4518.   &.search--focus {
  4519.     max-width: 250px;
  4520.   }
  4521. }
  4522.  
  4523. .search-header__input {
  4524.   cursor: pointer;
  4525. }
  4526.  
  4527. .search--focus {
  4528.   .search-header__input {
  4529.     outline: none;
  4530.     border-color: $color-border-form;
  4531.     cursor: auto;
  4532.   }
  4533.  
  4534.   .search-header__submit {
  4535.     pointer-events: auto;
  4536.   }
  4537. }
  4538.  
  4539. .search-header__submit {
  4540.   pointer-events: none;
  4541. }
  4542.  
  4543. .search-header,
  4544. .search-header__submit {
  4545.   transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
  4546. }
  4547.  
  4548. .no-svg {
  4549.   .site-header__search {
  4550.     display: inline-block;
  4551.   }
  4552.  
  4553.   .search-header {
  4554.     max-width: none;
  4555.   }
  4556.  
  4557.   .search__input {
  4558.     width: auto;
  4559.     padding-left: 60px;
  4560.   }
  4561. }
  4562.  
  4563. $return-button-width: 55px;
  4564. $nav-button-padding: 15px;
  4565.  
  4566. /*================ Mobile Site Nav ================*/
  4567. .mobile-nav {
  4568.   display: block;
  4569.   @include transform(translate3d(0, 0, 0));
  4570.   transition: $transition-drawer;
  4571.  
  4572.   .sub-nav--is-open & {
  4573.     @include transform(translate3d(-100%, 0, 0));
  4574.   }
  4575.  
  4576.   .third-nav--is-open & {
  4577.     @include transform(translate3d(-200%, 0, 0));
  4578.   }
  4579. }
  4580.  
  4581. .mobile-nav__link,
  4582. .mobile-nav__sublist-link {
  4583.   display: block;
  4584.   width: 100%;
  4585.   padding: $nav-button-padding ($nav-button-padding * 2);
  4586.   font-size: $font-size-mobile-input;
  4587. }
  4588.  
  4589. .mobile-nav__link {
  4590.   position: relative;
  4591. }
  4592.  
  4593. .mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  4594.   padding-left: $return-button-width + $nav-button-padding;
  4595.   padding-right: ($nav-button-padding * 2);
  4596. }
  4597.  
  4598. .mobile-nav__item {
  4599.   display: block;
  4600.   width: 100%;
  4601.  
  4602.   .icon {
  4603.     position: absolute;
  4604.     top: 50%;
  4605.     left: 50%;
  4606.     height: 12px;
  4607.     width: 10px;
  4608.     margin: -6px 0 0 -5px;
  4609.   }
  4610. }
  4611.  
  4612. .mobile-nav__return {
  4613.   border-right: 1px solid $color-border;
  4614. }
  4615.  
  4616. .mobile-nav__return-btn {
  4617.   position: relative;
  4618.   padding: 24px 0;
  4619.   width: $return-button-width;
  4620. }
  4621.  
  4622. .mobile-nav__icon {
  4623.   position: absolute;
  4624.   right: 0;
  4625.   top: 0;
  4626.   bottom: 0;
  4627.   padding-left: $gutter-site-mobile;
  4628.   padding-right: $gutter-site-mobile;
  4629.   pointer-events: none;
  4630.   overflow: hidden;
  4631. }
  4632.  
  4633. .mobile-nav__table {
  4634.   display: table;
  4635.   width: 100%;
  4636. }
  4637.  
  4638. .mobile-nav__table-cell {
  4639.   display: table-cell;
  4640.   vertical-align: middle;
  4641.   width: 1%;
  4642.   text-align: left;
  4643.   white-space: normal;
  4644. }
  4645.  
  4646. .mobile-nav__toggle-button {
  4647.   padding: 20px 15px;
  4648. }
  4649.  
  4650. .mobile-nav__dropdown {
  4651.   position: absolute;
  4652.   background-color: $color-body;
  4653.   z-index: $z-index-sub-nav;
  4654.   width: 100%;
  4655.   top: 0;
  4656.   right: -100%;
  4657.   display: none;
  4658.  
  4659.   .is-active + & {
  4660.     display: block;
  4661.     opacity: 1;
  4662.   }
  4663.  
  4664.   // Need the transition so `prepareTransition` removes class
  4665.   &.is-closing {
  4666.     transition: $transition-drawer;
  4667.     opacity: 0.99;
  4668.   }
  4669.  
  4670.   .mobile-nav__sublist-header {
  4671.     font-family: $font-stack-header;
  4672.     font-style: $font-style-header;
  4673.     font-weight: $font-weight-header;
  4674.     display: table-cell;
  4675.     vertical-align: middle;
  4676.     padding-left: $nav-button-padding;
  4677.   }
  4678.  
  4679.   .mobile-nav__sublist-header--main-nav-parent {
  4680.     color: $color-body-text;
  4681.   }
  4682. }
  4683.  
  4684. /*================ Mobile nav wrapper ================*/
  4685. .mobile-nav-wrapper {
  4686.   @include transform(translateY(-100%));
  4687.   position: absolute;
  4688.   top: 0;
  4689.   left: 0;
  4690.   background-color: $color-body;
  4691.   transition: $transition-drawer;
  4692.   display: none;
  4693.   overflow: hidden;
  4694.   width: 100%;
  4695.  
  4696.   &::after {
  4697.     content: '';
  4698.     position: absolute;
  4699.     bottom: 0;
  4700.     left: 0;
  4701.     right: 0;
  4702.     border-bottom: 1px solid $color-border;
  4703.   }
  4704.  
  4705.   &.js-menu--is-open {
  4706.     display: block;
  4707.   }
  4708. }
  4709.  
  4710. .mobile-nav--open {
  4711.   .icon-close {
  4712.     display: none;
  4713.   }
  4714. }
  4715.  
  4716. .mobile-nav--close {
  4717.   .icon-hamburger {
  4718.     display: none;
  4719.   }
  4720. }
  4721.  
  4722. .site-header__mobile-nav {
  4723.   z-index: 999;
  4724.   position: relative;
  4725.   background-color: $color-body;
  4726.  
  4727.   @include media-query($small) {
  4728.     @include display-flexbox();
  4729.     @include align-items(center);
  4730.   }
  4731. }
  4732.  
  4733. /*================ Modals ================*/
  4734. .modal {
  4735.   @include transform(translateY(-20px));
  4736.   background-color: $color-bg;
  4737.   bottom: 0;
  4738.   color: $color-text;
  4739.   display: none;
  4740.   left: 0;
  4741.   opacity: 0;
  4742.   overflow: hidden;
  4743.   position: fixed;
  4744.   right: 0;
  4745.   top: 0;
  4746. }
  4747.  
  4748. .modal--is-active {
  4749.   @include transform(translateY(0));
  4750.   display: block;
  4751.   opacity: 1;
  4752.   overflow: hidden;
  4753. }
  4754.  
  4755. .modal__inner {
  4756.   @include prefix(transform-style, preserve-3d, moz webkit spec);
  4757.   height: 100%;
  4758. }
  4759.  
  4760. .modal__centered {
  4761.   @include transform(translateY(-50%));
  4762.   position: relative;
  4763.   top: 50%;
  4764.  
  4765.   .no-csstransforms & {
  4766.     top: 20%;
  4767.   }
  4768. }
  4769.  
  4770. .modal__close {
  4771.   border: 0;
  4772.   padding: $gutter-site;
  4773.   position: fixed;
  4774.   top: 0;
  4775.   right: 0;
  4776.   z-index: 2;
  4777.  
  4778.   .icon {
  4779.     font-size: em(20);
  4780.   }
  4781. }
  4782.  
  4783. /*============================================================================
  4784.   Hero slider
  4785.  
  4786.   Extends default slick slider styles.
  4787.   Extra specificity in selectors is used to override defaults.
  4788. ==============================================================================*/
  4789. $slideshow-height-small: 475px;
  4790. $slideshow-height-medium: 650px;
  4791. $slideshow-height-large: 775px;
  4792. $slideshow-loader: #fff;
  4793. $z-index-slideshow-image: 1;
  4794. $z-index-slideshow-video: 2;
  4795. $z-index-slideshow-text: 3;
  4796. $z-index-slideshow-controls: 4;
  4797. $color-slideshow-close-bg: #fff;
  4798. $color-slideshow-close-text: #000;
  4799.  
  4800. .slideshow-wrapper {
  4801.   position: relative;
  4802. }
  4803.  
  4804. .slideshow {
  4805.   overflow: hidden;
  4806.   height: $slideshow-height-small - 150;
  4807.   margin-bottom: 0;
  4808.  
  4809.   &.slideshow--medium {
  4810.     height: $slideshow-height-medium - 150;
  4811.   }
  4812.  
  4813.   &.slideshow--large {
  4814.     height: $slideshow-height-large - 200;
  4815.   }
  4816.  
  4817.   @include media-query($medium-up) {
  4818.     height: $slideshow-height-small;
  4819.  
  4820.     &.slideshow--medium {
  4821.       height: $slideshow-height-medium;
  4822.     }
  4823.  
  4824.     &.slideshow--large {
  4825.       height: $slideshow-height-large;
  4826.     }
  4827.   }
  4828.  
  4829.   // Make sure slides fill full height
  4830.   .slideshow__slide,
  4831.   .slick-list,
  4832.   .slick-track {
  4833.     height: 100%;
  4834.   }
  4835.  
  4836.   .slick-prev,
  4837.   .slick-next {
  4838.     top: 0;
  4839.     height: 100%;
  4840.     margin-top: 0;
  4841.     width: 40px;
  4842.   }
  4843.  
  4844.   .slick-prev {
  4845.     left: 0;
  4846.   }
  4847.  
  4848.   .slick-next {
  4849.     right: 0;
  4850.   }
  4851.  
  4852.   .slick-dots {
  4853.     bottom: $gutter-site-mobile;
  4854.     text-align: center;
  4855.     left: 50%;
  4856.     transform: translateX(-50%);
  4857.  
  4858.     // sass-lint:disable SelectorDepth
  4859.     li button::before {
  4860.       color: $color-slideshow-dots;
  4861.     }
  4862.   }
  4863. }
  4864.  
  4865. .video-is-playing .slick-dots {
  4866.   // sass-lint:disable no-important
  4867.   display: none !important;
  4868. }
  4869.  
  4870. // Pause button (focusable by keyboard only)
  4871. .slideshow__pause:focus {
  4872.   clip: auto;
  4873.   width: auto;
  4874.   height: auto;
  4875.   margin: 0;
  4876.   color: $color-btn-primary-text;
  4877.   background-color: $color-btn-primary;
  4878.   padding: $gutter-site / 2;
  4879.   z-index: $z-index-skip-to-content;
  4880.   transition: none;
  4881.  
  4882.   .video-is-playing & {
  4883.     display: none;
  4884.   }
  4885. }
  4886.  
  4887. .slideshow__pause-stop {
  4888.   display: block;
  4889.  
  4890.   .is-paused & {
  4891.     display: none;
  4892.   }
  4893. }
  4894.  
  4895. .slideshow__pause-play {
  4896.   display: none;
  4897.  
  4898.   .is-paused & {
  4899.     display: block;
  4900.   }
  4901. }
  4902.  
  4903. /*================ General slide styles ================*/
  4904. .slideshow__slide {
  4905.   position: relative;
  4906.   overflow: hidden;
  4907. }
  4908.  
  4909. .slideshow__link {
  4910.   display: block;
  4911.   position: absolute;
  4912.   top: 0;
  4913.   left: 0;
  4914.   right: 0;
  4915.   bottom: 0;
  4916.  
  4917.   &:active,
  4918.   &:focus {
  4919.     opacity: 1;
  4920.   }
  4921. }
  4922.  
  4923. .slideshow__overlay {
  4924.   @include overlay($z-index-slideshow-text);
  4925. }
  4926.  
  4927. /*================ Slide images ================*/
  4928. .slideshow__image {
  4929.   transition: $transition-image-slideshow;
  4930.   position: absolute;
  4931.   top: 0;
  4932.   left: 0;
  4933.   opacity: 0;
  4934.   height: 100%;
  4935.   width: 100%;
  4936.   background-repeat: no-repeat;
  4937.   background-size: cover;
  4938.   background-position: top center;
  4939.   z-index: $z-index-slideshow-image;
  4940.  
  4941.   .slick-initialized &,
  4942.   .no-js & {
  4943.     opacity: 1;
  4944.   }
  4945.  
  4946.   .slideshow__slide--background-video & {
  4947.     opacity: 0;
  4948.   }
  4949.  
  4950.   .no-autoplay & {
  4951.     opacity: 1;
  4952.   }
  4953. }
  4954.  
  4955. // z-index stacking issues in oldIE
  4956. .ie9 {
  4957.   .slideshow__slide {
  4958.     // sass-lint:disable no-important
  4959.     z-index: 1 !important;
  4960.   }
  4961.  
  4962.   .slick-dots {
  4963.     z-index: 2;
  4964.   }
  4965. }
  4966.  
  4967. /*================ Slide text ================*/
  4968. .slideshow__text-wrap {
  4969.   height: 100%;
  4970.  
  4971.   .slideshow__link & {
  4972.     cursor: inherit;
  4973.   }
  4974.  
  4975.   .slideshow__slide--has-background-video & {
  4976.     padding-top: $gutter-site * 3;
  4977.   }
  4978.  
  4979.   .video-is-playing & {
  4980.     display: none;
  4981.   }
  4982.  
  4983.   .slideshow__slide.video-is-paused & {
  4984.     display: none;
  4985.   }
  4986. }
  4987.  
  4988. .slideshow__text-content {
  4989.   text-align: center;
  4990.   position: absolute;
  4991.   width: 100%;
  4992.   top: 50%;
  4993.   @include transform(translateY(-40%));
  4994.   opacity: 0;
  4995.   transition: $transition-text-slideshow;
  4996.   transition-delay: 0.3s;
  4997.   z-index: $z-index-slideshow-text;
  4998.  
  4999.   .slick-active &,
  5000.   .no-js & {
  5001.     @include transform(translateY(-50%));
  5002.     opacity: 1;
  5003.   }
  5004.  
  5005.   &::after {
  5006.     content: '';
  5007.     @include spinner(40px, $slideshow-loader);
  5008.     @include animation(spin 0.65s infinite linear);
  5009.     opacity: 1;
  5010.     transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
  5011.     bottom: -$gutter-site;
  5012.     left: 50%;
  5013.   }
  5014.  
  5015.   .slick-initialized &,
  5016.   .no-js & {
  5017.     &::after {
  5018.       opacity: 0;
  5019.       visibility: hidden;
  5020.       content: none;
  5021.     }
  5022.   }
  5023. }
  5024.  
  5025. .slideshow__title {
  5026.   color: $color-overlay-title-text;
  5027. }
  5028.  
  5029. .slideshow__subtitle {
  5030.   display: block;
  5031.   color: $color-overlay-title-text;
  5032. }
  5033.  
  5034. /*================ Video styles ================*/
  5035. .slideshow__slide--has-background-video::after {
  5036.   content: '';
  5037.   position: absolute;
  5038.   top: 0;
  5039.   left: 0;
  5040.   right: 0;
  5041.   bottom: 0;
  5042.   z-index: $z-index-slideshow-video;
  5043. }
  5044.  
  5045. .slideshow__video {
  5046.   display: none;
  5047.   position: absolute;
  5048.   left: 0;
  5049.   top: 0;
  5050.   z-index: $z-index-slideshow-video;
  5051. }
  5052.  
  5053. // Background video
  5054. .slideshow__video--background {
  5055.   position: relative;
  5056.   visibility: hidden;
  5057.   opacity: 0;
  5058.   transition: all 0.2s ease-in;
  5059.  
  5060.   .autoplay &.video-is-loaded {
  5061.     display: block;
  5062.     visibility: visible;
  5063.     opacity: 1;
  5064.   }
  5065. }
  5066.  
  5067. // Place invisible element over video to prevent clicks
  5068. .slideshow__slide--background-video::after {
  5069.   content: '';
  5070.   display: block;
  5071.   position: absolute;
  5072.   top: 0;
  5073.   left: 0;
  5074.   right: 0;
  5075.   bottom: 0;
  5076.   z-index: $z-index-slideshow-video;
  5077. }
  5078.  
  5079. .slideshow__video--chrome {
  5080.   display: none;
  5081.   opacity: 0;
  5082.   visibility: none;
  5083.   width: 100%;
  5084.   height: 100%;
  5085.   transition: all 0.2s ease-in;
  5086.  
  5087.   // YouTube video will not load if iframe is display: none
  5088.   .ie9 & {
  5089.     display: block;
  5090.   }
  5091.  
  5092.   .slideshow__slide.video-is-playing &,
  5093.   .slideshow__slide.video-is-paused & {
  5094.     display: block;
  5095.     visibility: visible;
  5096.     opacity: 1;
  5097.   }
  5098. }
  5099.  
  5100. /*================ Video control buttons ================*/
  5101. .slideshow__video-control {
  5102.   display: none;
  5103.   visibility: hidden;
  5104.   opacity: 0;
  5105.   position: absolute;
  5106.   padding: 5px;
  5107.   z-index: $z-index-slideshow-controls;
  5108.   transition: all 0.1s ease-out;
  5109.  
  5110.   &:hover,
  5111.   &:focus {
  5112.     opacity: 0.7;
  5113.   }
  5114. }
  5115.  
  5116. // Video loader shown when initializing
  5117. .video-loader {
  5118.   @include spinner(40px, $slideshow-loader);
  5119.   @include animation(spin 0.65s infinite linear);
  5120.   transition: all 0.1s ease-out 0.5s;
  5121.   z-index: $z-index-slideshow-controls;
  5122.   top: 50%;
  5123.   left: 50%;
  5124.  
  5125.   .ie9 &,
  5126.   .video-is-loaded &,
  5127.   .video-is-playing &,
  5128.   .video-is-paused &,
  5129.   .autoplay &,
  5130.   .no-autoplay & {
  5131.     content: none;
  5132.     display: none;
  5133.   }
  5134.  
  5135.   .video-is-loading &,
  5136.   .autoplay .video-is-loading &,
  5137.   .no-autoplay .video-is-loading & {
  5138.     display: block;
  5139.     visibility: visible;
  5140.     opacity: 1;
  5141.   }
  5142. }
  5143.  
  5144. .slideshow__video-control--play-wrapper {
  5145.   height: 30px;
  5146.  
  5147.   @include media-query($medium-up) {
  5148.     height: 45px;
  5149.   }
  5150. }
  5151.  
  5152. @include media-query($medium-up) {
  5153.   .slideshow__video-control--play-wrapper--push {
  5154.     margin-top: $grid-gutter;
  5155.   }
  5156. }
  5157.  
  5158. .slideshow__video-control--play {
  5159.   opacity: 0;
  5160.   color: $color-overlay-title-text;
  5161.   position: relative;
  5162.   margin: 0 auto;
  5163.  
  5164.   .slideshow__video--background {
  5165.     top: 50%;
  5166.     @include transform(translateY(-50%));
  5167.   }
  5168.  
  5169.   .video-is-loaded & {
  5170.     display: block;
  5171.     visibility: visible;
  5172.     opacity: 1;
  5173.   }
  5174.  
  5175.   .video-is-loading &,
  5176.   .video-is-playing &,
  5177.   .slideshow__slide.video-is-paused & {
  5178.     display: none;
  5179.     visibility: hidden;
  5180.     opacity: 0;
  5181.   }
  5182.  
  5183.   .icon {
  5184.     width: 42px;
  5185.     height: 100%;
  5186.  
  5187.     @include media-query($medium-up) {
  5188.       width: 65px;
  5189.     }
  5190.   }
  5191. }
  5192.  
  5193. .slideshow__video-control--close {
  5194.   top: 10px;
  5195.   right: 10px;
  5196.   background-color: $color-slideshow-close-bg;
  5197.   color: $color-slideshow-close-text;
  5198.  
  5199.   .video-is-playing &,
  5200.   .slideshow__slide.video-is-paused & {
  5201.     display: block;
  5202.     visibility: visible;
  5203.     opacity: 1;
  5204.   }
  5205.  
  5206.   .icon {
  5207.     display: block;
  5208.     width: 20px;
  5209.     height: 20px;
  5210.   }
  5211. }
  5212.  
  5213. .price {
  5214.   @include display-flexbox;
  5215.   @include flex-wrap(wrap);
  5216.   margin-top: 0;
  5217.   margin-bottom: 0;
  5218.  
  5219.   @include media-query($small) {
  5220.     font-size: em($font-size-base - 1);
  5221.   }
  5222.  
  5223.   dl {
  5224.     margin-top: 0;
  5225.   }
  5226.   dd {
  5227.     margin: 0 0.5em 0 0;
  5228.   }
  5229. }
  5230.  
  5231. .price--unavailable {
  5232.   visibility: hidden;
  5233. }
  5234.  
  5235. .price__regular {
  5236.   color: $color-body-text;
  5237. }
  5238.  
  5239. .price__sale {
  5240.   color: $color-sale-text;
  5241.   display: none;
  5242.  
  5243.   .price--on-sale & {
  5244.     display: block;
  5245.   }
  5246. }
  5247.  
  5248. .price__vendor {
  5249.   color: $color-body-text;
  5250.   font-size: 0.9em;
  5251.   font-weight: $font-weight-body;
  5252.   text-transform: uppercase;
  5253.   letter-spacing: 1px;
  5254.   margin: 5px 0 10px;
  5255.   width: 100%;
  5256.   @include flex-basis(100%);
  5257. }
  5258.  
  5259. .price-item {
  5260.   font-weight: $font-weight-header;
  5261. }
  5262.  
  5263. .price-item--regular {
  5264.   .price--on-sale & {
  5265.     text-decoration: line-through;
  5266.   }
  5267. }
  5268.  
  5269. .price-item__label {
  5270.   display: inline-block;
  5271.   white-space: nowrap;
  5272.   font-weight: $font-weight-header;
  5273. }
  5274.  
  5275. /*================ Module | Filters and Sort toolbar and selection ================*/
  5276. $toolbar-height: 55px;
  5277. $toolbar-height-small: 46px;
  5278.  
  5279. .filters-toolbar-wrapper {
  5280.   border-bottom: 1px solid $color-border;
  5281.   border-top: 1px solid $color-border;
  5282.   margin-bottom: $gutter-site-mobile;
  5283.  
  5284.   @include media-query($medium-up) {
  5285.     margin-bottom: $section-spacing;
  5286.   }
  5287. }
  5288.  
  5289. .filters-toolbar {
  5290.   @include display-flexbox();
  5291.   @include align-items(center);
  5292.   @include flex-wrap(wrap);
  5293.  
  5294.   .icon-chevron-down {
  5295.     fill: $color-text-field-text;
  5296.     width: calc(10em / 16);
  5297.     height: calc(10em / 16);
  5298.     position: absolute;
  5299.     right: 8px;
  5300.     margin-top: calc(calc(-10em / 16) / 2);
  5301.     top: 50%;
  5302.     z-index: -1;
  5303.   }
  5304. }
  5305.  
  5306. .filters-toolbar--has-filter {
  5307.   position: relative;
  5308.  
  5309.   @include media-query($small) {
  5310.     border-bottom: none;
  5311.  
  5312.     .filters-toolbar__item-child {
  5313.       flex-basis: 50%;
  5314.     }
  5315.  
  5316.     .filters-toolbar__item-wrapper {
  5317.       @include flex-basis(100%);
  5318.     }
  5319.  
  5320.     .filters-toolbar__item--count {
  5321.       @include flex-basis(100%);
  5322.       text-align: left;
  5323.  
  5324.       &:before {
  5325.         background-color: $color-border;
  5326.         content: "";
  5327.         height: 1px;
  5328.         left: 0;
  5329.         position: absolute;
  5330.         top: auto;
  5331.         width: 100%;
  5332.       }
  5333.     }
  5334.   }
  5335. }
  5336.  
  5337. .filters-toolbar__item {
  5338.   min-width: 33%;
  5339.   @include flex(1 1 33%);
  5340.  
  5341.   .no-flexbox & {
  5342.     // sass-lint:disable no-important
  5343.     text-align: left !important;
  5344.   }
  5345.  
  5346.   &:first-child {
  5347.     .filters-toolbar__input {
  5348.       @include media-query($small) {
  5349.         padding-left: 0;
  5350.       }
  5351.     }
  5352.   }
  5353. }
  5354.  
  5355. .filters-toolbar__item-child {
  5356.   @include media-query($small) {
  5357.     flex-grow: 0;
  5358.   }
  5359.  
  5360.   &:first-child {
  5361.     @include media-query($small) {
  5362.       margin-right: 2.5rem;
  5363.     }
  5364.  
  5365.     @include media-query($medium-up) {
  5366.       margin-right: 3rem;
  5367.     }
  5368.   }
  5369.  
  5370.   .filters-toolbar__input {
  5371.     @include media-query($small) {
  5372.       padding-left: 0;
  5373.       padding-right: 25px;
  5374.       width: 100%;
  5375.     }
  5376.   }
  5377. }
  5378.  
  5379. .filters-toolbar__item-wrapper {
  5380.   @include display-flexbox();
  5381.   @include flex(1 1 33%);
  5382.  
  5383.   @include media-query($small) {
  5384.     @include justify-content(space-between);
  5385.   }
  5386. }
  5387.  
  5388. .filters-toolbar__item--count {
  5389.   min-width: 0;
  5390.   @include flex(0 1 auto);
  5391.   text-align: center;
  5392.  
  5393.   @include media-query($small) {
  5394.     @include flex(0 1 50%);
  5395.     text-align: right;
  5396.   }
  5397. }
  5398.  
  5399. .no-flexbox .filters-toolbar select {
  5400.   // sass-lint:disable no-important
  5401.   width: 100% !important; // override inline styles
  5402. }
  5403.  
  5404. .filters-toolbar__label {
  5405.   display: inline-block;
  5406.   font-size: em(12);
  5407.   text-transform: uppercase;
  5408.  
  5409.   @include media-query($small) {
  5410.     display: block;
  5411.     margin-bottom: 0;
  5412.     margin-top: 8px;
  5413.   }
  5414. }
  5415.  
  5416. .filters-toolbar__input-wrapper {
  5417.   display: inline-block;
  5418.   position: relative;
  5419.   z-index: 2;
  5420. }
  5421.  
  5422. .filters-toolbar__input {
  5423.   background-color: transparent;
  5424.   background-image: none;
  5425.   border: 0 solid transparent;
  5426.   overflow: hidden;
  5427.   text-overflow: ellipsis;
  5428.   white-space: nowrap;
  5429.   max-width: 100%;
  5430.   height: $toolbar-height;
  5431.   opacity: 1;
  5432.   position: relative;
  5433.  
  5434.   .filters-toolbar__item:first-child & {
  5435.     padding-left: 0;
  5436.   }
  5437.  
  5438.   .no-flexbox & {
  5439.     margin: 0;
  5440.   }
  5441.  
  5442.   @include media-query($small) {
  5443.     height: $toolbar-height-small;
  5444.   }
  5445.  
  5446.   &.hidden {
  5447.     opacity: 0;
  5448.   }
  5449.  
  5450.   option {
  5451.     text-overflow: ellipsis;
  5452.     overflow: hidden;
  5453.   }
  5454. }
  5455.  
  5456. .filters-toolbar__product-count {
  5457.   font-size: em($font-size-base - 1px);
  5458.   font-style: italic;
  5459.   line-height: $toolbar-height;
  5460.   margin-bottom: 0;
  5461.   overflow: hidden;
  5462.   text-overflow: ellipsis;
  5463.   white-space: nowrap;
  5464.  
  5465.   @include media-query($small) {
  5466.     font-size: em($font-size-base - 2px);
  5467.     line-height: $toolbar-height-small;
  5468.   }
  5469. }
  5470.  
  5471. .site-footer {
  5472.   margin: $section-spacing 0;
  5473.  
  5474.   @include media-query($small) {
  5475.     text-align: center;
  5476.   }
  5477. }
  5478.  
  5479. @include media-query($medium-up) {
  5480.   .site-footer__linklist--center {
  5481.     margin-top: $section-spacing-small;
  5482.     padding-right: 0;
  5483.   }
  5484. }
  5485.  
  5486. .site-footer__linklist,
  5487. .site-footer__newsletter {
  5488.   margin-top: $section-spacing-small;
  5489.  
  5490.   @include media-query($medium-up) {
  5491.     margin-top: $section-spacing;
  5492.   }
  5493. }
  5494.  
  5495. .site-footer__linklist-item {
  5496.   display: inline-block;
  5497.   padding: 5px 10px;
  5498.  
  5499.   @include media-query($medium-up) {
  5500.     display: block;
  5501.     padding: 0 20px 6px 0;
  5502.  
  5503.     .site-footer__linklist--center & {
  5504.       display: inline-block;
  5505.       padding: 3px 10px;
  5506.     }
  5507.   }
  5508. }
  5509.  
  5510. .site-footer__newsletter {
  5511.   margin: $section-spacing-small auto 0;
  5512.   max-width: 320px;
  5513.  
  5514.   @include media-query($medium-up) {
  5515.     margin: $section-spacing 0 0;
  5516.     max-width: none;
  5517.   }
  5518.  
  5519.   & .rte {
  5520.     font-size: em($font-size-base - 2);
  5521.     margin-bottom: 25px;
  5522.   }
  5523. }
  5524.  
  5525. .social-icons__link {
  5526.   display: block;
  5527.   padding: 0 3px;
  5528.  
  5529.   &:first-child {
  5530.     margin-left: 0;
  5531.   }
  5532. }
  5533.  
  5534. .site-footer__subwrapper {
  5535.   margin-top: $section-spacing-small;
  5536. }
  5537.  
  5538. .site-footer__secondary-wrapper {
  5539.   .grid__item:nth-child(even) {
  5540.     @include media-query($medium-up) {
  5541.       text-align: right;
  5542.     }
  5543.   }
  5544. }
  5545.  
  5546. .site-footer__secondary-wrapper--social-disabled {
  5547.   &.site-footer__secondary-wrapper .site-footer__copyright {
  5548.     @include media-query($medium-up) {
  5549.       text-align: left;
  5550.     }
  5551.   }
  5552.  
  5553.   .site-footer__payment-icons {
  5554.     @include media-query($medium-up) {
  5555.       float: right;
  5556.     }
  5557.   }
  5558. }
  5559.  
  5560. .site-footer__copyright-content {
  5561.   font-size: em($font-size-base - 3);
  5562.  
  5563.   &:first-child {
  5564.     padding-right: 20px;
  5565.   }
  5566. }
  5567.  
  5568. .site-footer__copyright-content--powered-by {
  5569.   padding-right: 0;
  5570. }
  5571.  
  5572. .site-footer__payment-icons {
  5573.   @include media-query($medium-up) {
  5574.     text-align: right;
  5575.   }
  5576.  
  5577.   .payment-icon {
  5578.     margin-bottom: 5px;
  5579.     margin-left: 5px;
  5580.  
  5581.     &:first-child {
  5582.       margin-left: 0;
  5583.     }
  5584.   }
  5585. }
  5586.  
  5587. .feature-row {
  5588.   @include display-flexbox();
  5589.   @include justify-content(space-between);
  5590.   @include align-items(center);
  5591.  
  5592.   @include media-query($small) {
  5593.     @include flex-direction(column);
  5594.   }
  5595. }
  5596.  
  5597. .feature-row__item {
  5598.   @include flex(0 1 50%);
  5599.  
  5600.   @include media-query($small) {
  5601.     @include flex(1 1 auto);
  5602.     width: 100%;
  5603.     max-width: 100%;
  5604.   }
  5605. }
  5606.  
  5607. .feature-row__image-wrapper {
  5608.   margin: 0 auto $section-spacing-small / 1.8;
  5609.   position: relative;
  5610.   width: 100%;
  5611. }
  5612.  
  5613. .feature-row__image {
  5614.   display: block;
  5615.   margin: 0 auto;
  5616.  
  5617.   .feature-row__image-wrapper & {
  5618.     width: 100%;
  5619.     position: absolute;
  5620.     top: 0;
  5621.   }
  5622.  
  5623.   @include media-query($small) {
  5624.     order: 1;
  5625.   }
  5626. }
  5627.  
  5628. .feature-row__text {
  5629.   padding-top: $section-spacing-small;
  5630.   padding-bottom: $section-spacing-small;
  5631.  
  5632.   @include media-query($small) {
  5633.     order: 2;
  5634.     padding-bottom: 0; // always last element on mobile
  5635.   }
  5636. }
  5637.  
  5638. @include media-query($medium-up) {
  5639.   .feature-row__text--left {
  5640.     padding-left: $section-spacing-small;
  5641.   }
  5642.  
  5643.   .feature-row__text--right {
  5644.     padding-right: $section-spacing-small;
  5645.   }
  5646. }
  5647.  
  5648. @include media-query($medium-up) {
  5649.   .featured-row__subtext {
  5650.     font-size: em($font-size-base + 2);
  5651.   }
  5652. }
  5653.  
  5654. .hero {
  5655.   position: relative;
  5656.   height: 475px;
  5657.   display: table;
  5658.   width: 100%;
  5659.   background: {
  5660.     size: cover;
  5661.     repeat: no-repeat;
  5662.     position: 50% 50%;
  5663.   }
  5664. }
  5665.  
  5666. .hero--x-small {
  5667.   height: 94px;
  5668. }
  5669.  
  5670. .hero--small {
  5671.   height: 225px;
  5672. }
  5673.  
  5674. .hero--medium {
  5675.   height: 357px;
  5676. }
  5677.  
  5678. .hero--large {
  5679.   height: 488px;
  5680. }
  5681.  
  5682. .hero--x-large {
  5683.   height: 582px;
  5684. }
  5685.  
  5686. @include media-query($medium-up) {
  5687.   .hero--x-small {
  5688.     height: 125px;
  5689.   }
  5690.  
  5691.   .hero--small {
  5692.     height: 300px;
  5693.   }
  5694.  
  5695.   .hero--medium {
  5696.     height: 475px;
  5697.   }
  5698.  
  5699.   .hero--large {
  5700.     height: 650px;
  5701.   }
  5702.  
  5703.   .hero--x-large {
  5704.     height: 775px;
  5705.   }
  5706. }
  5707.  
  5708. .hero__overlay {
  5709.   @include overlay(1);
  5710. }
  5711.  
  5712. .hero__inner {
  5713.   position: relative;
  5714.   display: table-cell;
  5715.   vertical-align: middle;
  5716.   padding: $section-spacing 0;
  5717.   z-index: 2;
  5718. }
  5719.  
  5720. .hero__btn {
  5721.   margin-top: $section-spacing / 2;
  5722. }
  5723.  
  5724. /*================ Quote slider ================*/
  5725. .quote-icon {
  5726.   display: block;
  5727.   margin: 0 auto 20px;
  5728. }
  5729.  
  5730. // Text styles
  5731. .quotes-slider__text {
  5732.   font-size: em($font-size-base + 1.75);
  5733.   font-weight: $font-weight-body;
  5734.   font-style: $font-style-body;
  5735.   padding: 0 ($grid-gutter / 2);
  5736.  
  5737.   cite {
  5738.     font-size: em($font-size-base, $font-size-base + 4);
  5739.     font-style: normal;
  5740.   }
  5741.  
  5742.   p {
  5743.     margin-bottom: $grid-gutter;
  5744.  
  5745.     + cite {
  5746.       margin-top: 0;
  5747.     }
  5748.   }
  5749. }
  5750.  
  5751. // Slick overrides
  5752. .slick-dotted.quotes-slider.slick-initialized {
  5753.   cursor: grab;
  5754.   cursor: -moz-grab;
  5755.   cursor: -webkit-grab;
  5756. }
  5757.  
  5758. // Slick dot positioning and color
  5759. .quotes-wrapper .slick-dots {
  5760.   position: relative;
  5761.   bottom: 0;
  5762.   margin-top: $section-spacing;
  5763.  
  5764.   // sass-lint:disable SelectorDepth
  5765.   li button::before {
  5766.     color: $color-text;
  5767.     opacity: 0.2;
  5768.   }
  5769. }
  5770.  
  5771. // Slick selected outline overrides
  5772. .quotes-wrapper .slick-slide[tabindex="0"] {
  5773.   outline: none;
  5774. }
  5775.  
  5776. .logo-bar {
  5777.   list-style: none;
  5778.   text-align: center;
  5779.   margin-bottom: -$section-spacing-small;
  5780. }
  5781.  
  5782. @include media-query($medium-up) {
  5783.   .logo-bar--large {
  5784.     margin-bottom: -$section-spacing;
  5785.   }
  5786. }
  5787.  
  5788. .logo-bar__item {
  5789.   display: inline-block;
  5790.   vertical-align: middle;
  5791.   max-width: 160px;
  5792.   margin: 0 ($section-spacing / 2) $section-spacing-small;
  5793. }
  5794.  
  5795. @include media-query($medium-up) {
  5796.   .logo-bar__item--large {
  5797.     margin-bottom: $section-spacing;
  5798.   }
  5799. }
  5800.  
  5801. .logo-bar__image {
  5802.   display: block;
  5803.   margin: 0 auto;
  5804. }
  5805.  
  5806. .logo-bar__link {
  5807.   display: block;
  5808. }
  5809.  
  5810. .map-section {
  5811.   position: relative;
  5812.   width: 100%;
  5813.   overflow: hidden;
  5814.   @include display-flexbox();
  5815.   @include align-items(center);
  5816.   @include flex-wrap(wrap);
  5817.   @include flex-direction(row);
  5818.  
  5819.   @include media-query($medium-up) {
  5820.     min-height: 500px;
  5821.   }
  5822. }
  5823.  
  5824. .map-section--load-error {
  5825.   height: auto;
  5826. }
  5827.  
  5828. .map-section__wrapper {
  5829.   height: 100%;
  5830.   flex-shrink: 0;
  5831.   flex-grow: 1;
  5832.   @include flex-basis(100%);
  5833.  
  5834.   @include display-flexbox();
  5835.   @include flex-wrap(wrap);
  5836.   @include flex-direction(row);
  5837. }
  5838.  
  5839. .map-section__overlay {
  5840.   position: absolute;
  5841.   top: 0;
  5842.   right: 0;
  5843.   bottom: 0;
  5844.   left: 0;
  5845.   opacity: 0;
  5846.   z-index: 2;
  5847. }
  5848.  
  5849. .map-section__error {
  5850.   position: relative;
  5851.   z-index: 3;
  5852.  
  5853.   @include media-query($medium-up) {
  5854.     position: absolute;
  5855.     margin: 0 2rem;
  5856.     top: 50%;
  5857.     @include transform(translateY(-50%));
  5858.   }
  5859. }
  5860.  
  5861. .map-section__content-wrapper {
  5862.   position: relative;
  5863.   text-align: center;
  5864.   height: 100%;
  5865.   @include display-flexbox();
  5866.   @include flex-basis(100%);
  5867.   flex-grow: 0;
  5868.  
  5869.   @include media-query($medium) {
  5870.     @include flex-basis(50%);
  5871.   }
  5872.  
  5873.   @include media-query($large-up) {
  5874.     @include flex-basis(33%);
  5875.   }
  5876. }
  5877.  
  5878. .map-section__content {
  5879.   position: relative;
  5880.   display: inline-block;
  5881.   background-color: $color-bg-alt;
  5882.   padding: $section-spacing-small;
  5883.   width: 100%;
  5884.   text-align: center;
  5885.   z-index: 3;
  5886.   @include display-flexbox();
  5887.   @include align-items(center);
  5888.   @include flex-wrap(wrap);
  5889.   @include align-content(center);
  5890.  
  5891.   // Make sure every children is on one line
  5892.   & > * {
  5893.     width: 100%;
  5894.   }
  5895.  
  5896.   @include media-query($medium-up) {
  5897.     background-color: $color-bg;
  5898.     margin: $gutter-site 0;
  5899.     min-height: 300px;
  5900.  
  5901.     .ie9 & {
  5902.       top: 10%;
  5903.     }
  5904.   }
  5905.  
  5906.   .map-section--load-error & {
  5907.     position: static;
  5908.     transform: translateY(0);
  5909.   }
  5910. }
  5911.  
  5912. .map-section__link {
  5913.   display: block;
  5914.   position: absolute;
  5915.   top: 0;
  5916.   left: 50%;
  5917.   max-width: none;
  5918.   width: 100%;
  5919.   height: 100%;
  5920.   z-index: 2;
  5921.   @include transform(translateX(-50%));
  5922. }
  5923.  
  5924. // Optically center map in visible area with
  5925. // extended height/widths and negative margins
  5926. .map-section__container {
  5927.   max-width: none;
  5928.   width: 100%;
  5929.   height: 55vh;
  5930.   left: 0;
  5931.  
  5932.   @include media-query($medium-up) {
  5933.     position: absolute;
  5934.     height: 100%;
  5935.     top: 0;
  5936.     // map is centered on resize, larger widths allow pin to be off-center
  5937.     width: 130%;
  5938.   }
  5939. }
  5940.  
  5941. .map_section__directions-btn {
  5942.   [class^="icon"] {
  5943.     height: 1em;
  5944.   }
  5945.  
  5946.   * {
  5947.     vertical-align: middle;
  5948.   }
  5949. }
  5950.  
  5951. .map-section__background-wrapper {
  5952.   overflow: hidden;
  5953.   position: relative;
  5954.   @include flex-basis(100%);
  5955.  
  5956.   @include media-query($medium-up) {
  5957.     position: absolute;
  5958.     left: 0;
  5959.     top: 0;
  5960.     width: 100%;
  5961.     height: 100%;
  5962.   }
  5963.  
  5964.   .ie9 & {
  5965.     width: 100%;
  5966.     height: 500px;
  5967.   }
  5968.  
  5969.   .map-section--onboarding & {
  5970.     min-height: 55vh;
  5971.   }
  5972. }
  5973.  
  5974. .map-section__image {
  5975.   height: 100%;
  5976.   position:relative;
  5977.   top: 0;
  5978.   left: 0;
  5979.   width: 100%;
  5980.   background-size: cover;
  5981.   background-position: center;
  5982.  
  5983.   @include media-query($medium-up) {
  5984.     position: absolute;
  5985.   }
  5986.  
  5987.   // Only show the background image if map fails to load
  5988.   .map-section--display-map & {
  5989.     display: none !important;
  5990.   }
  5991.  
  5992.  .map-section--load-error & {
  5993.     display: block !important;
  5994.   }
  5995. }
  5996.  
  5997. // Hide Google maps UI
  5998. .gm-style-cc,
  5999. .gm-style-cc + div {
  6000.   visibility: hidden;
  6001. }
  6002.  
  6003. .image-bar {
  6004.   overflow: hidden;
  6005.  
  6006.   @include media-query($small) {
  6007.     max-width: 400px;
  6008.     margin: 0 auto;
  6009.   }
  6010. }
  6011.  
  6012. .image-bar__item {
  6013.   display: block;
  6014.   color: $color-overlay-title-text;
  6015.   background: {
  6016.     repeat: no-repeat;
  6017.     position: 50% 50%;
  6018.     size: cover;
  6019.   }
  6020. }
  6021.  
  6022. .image-bar__link {
  6023.   &:hover,
  6024.   &:focus {
  6025.     .image-bar__overlay::before {
  6026.       opacity: $hover-overlay-opacity;
  6027.     }
  6028.   }
  6029.  
  6030.   &:focus {
  6031.     position: relative;
  6032.     z-index: 2;
  6033.  
  6034.     .image-bar__content {
  6035.       @include default-focus-ring();
  6036.     }
  6037.   }
  6038. }
  6039.  
  6040. .image-bar__content, .image-bar__item {
  6041.   position: relative;
  6042.   width: 100%;
  6043.  
  6044.   .image-bar--x-small & {
  6045.     height: 94px;
  6046.   }
  6047.  
  6048.   .image-bar--small & {
  6049.     height: 225px;
  6050.   }
  6051.  
  6052.   .image-bar--medium & {
  6053.     height: 357px;
  6054.   }
  6055.  
  6056.   .image-bar--large & {
  6057.     height: 488px;
  6058.   }
  6059.  
  6060.   .image-bar--x-large & {
  6061.     height: 582px;
  6062.   }
  6063.  
  6064.   @include media-query($medium-up) {
  6065.     .image-bar--x-small & {
  6066.       height: 125px;
  6067.     }
  6068.  
  6069.     .image-bar--small & {
  6070.       height: 300px;
  6071.     }
  6072.  
  6073.     .image-bar--medium & {
  6074.       height: 475px;
  6075.     }
  6076.  
  6077.     .image-bar--large & {
  6078.       height: 650px;
  6079.     }
  6080.  
  6081.     .image-bar--x-large & {
  6082.       height: 775px;
  6083.     }
  6084.   }
  6085. }
  6086.  
  6087. .image-bar__overlay {
  6088.   @include overlay;
  6089. }
  6090.  
  6091. .image-bar__caption {
  6092.   position: absolute;
  6093.   top: 50%;
  6094.   @include transform(translateY(-50%));
  6095.   transition: $transition-link-hover;
  6096.   width: 100%;
  6097.   text-align: center;
  6098.   text-shadow: 0 0 4px $color-text-shadow;
  6099. }
  6100.  
  6101. .collection-grid {
  6102.   margin-bottom: -$gutter-site-mobile;
  6103.   overflow: auto;
  6104. }
  6105.  
  6106. .collection-grid-item {
  6107.   position: relative;
  6108.   width: 100%;
  6109.   padding-bottom: 100%;
  6110.   margin-bottom: $gutter-site-mobile;
  6111.  
  6112.   @include media-query($medium-up) {
  6113.     margin-bottom: $grid-gutter;
  6114.   }
  6115. }
  6116.  
  6117. .collection-grid-item__title {
  6118.   color: $color-overlay-title-text;
  6119.   position: absolute;
  6120.   text-align: center;
  6121.   width: 100%;
  6122.   top: 50%;
  6123.   padding: 0 5px;
  6124.   @include transform(translateY(-50%));
  6125.   transition: $transition-link-hover;
  6126.   text-shadow: 0 0 4px $color-text-shadow;
  6127.   hyphens: auto;
  6128.  
  6129.   @if $font-bold-titles {
  6130.     font-weight: $font-weight-header--bold;
  6131.   }
  6132.  
  6133.   @include media-query($medium-up) {
  6134.     padding: 0 15px;
  6135.   }
  6136. }
  6137.  
  6138. .collection-grid-item__link {
  6139.   position: absolute;
  6140.   top: 0;
  6141.   left: 0;
  6142.   bottom: 0;
  6143.   right: 0;
  6144.  
  6145.   &:hover,
  6146.   &:focus {
  6147.     .collection-grid-item__title-wrapper::before {
  6148.       opacity: $hover-overlay-opacity;
  6149.     }
  6150.   }
  6151.  
  6152.   &:focus {
  6153.     opacity: 1;
  6154.   }
  6155. }
  6156.  
  6157. .collection-grid-item__overlay {
  6158.   position: relative;
  6159.   display: block;
  6160.   height: 100%;
  6161.   width: 100%;
  6162.   background-size: cover;
  6163.   background-repeat: no-repeat;
  6164.   background-position: center top;
  6165.  
  6166. }
  6167.  
  6168. .collection-grid-item__title-wrapper::before {
  6169.   content: '';
  6170.   position: absolute;
  6171.   top: 0;
  6172.   right: 0;
  6173.   bottom: 0;
  6174.   left: 0;
  6175.   background-color: $color-image-overlay;
  6176.   opacity: $opacity-image-overlay;
  6177. }
  6178.  
  6179. .custom-content {
  6180.   @include display-flexbox;
  6181.   @include align-items(stretch);
  6182.   @include flex-wrap(wrap);
  6183.   width: auto;
  6184.   margin-bottom: -$grid-gutter;
  6185.   margin-left: -$grid-gutter;
  6186.  
  6187.   @include media-query($small) {
  6188.     margin-bottom: -$grid-gutter-mobile;
  6189.     margin-left: -$grid-gutter-mobile;
  6190.   }
  6191. }
  6192.  
  6193. .custom__item {
  6194.   @include flex(0 0 auto);
  6195.   margin-bottom: $grid-gutter;
  6196.   padding-left: $grid-gutter;
  6197.   max-width: 100%;
  6198.  
  6199.   @include media-query($small) {
  6200.     @include flex(0 0 auto);
  6201.     padding-left: $grid-gutter-mobile;
  6202.     margin-bottom: $grid-gutter-mobile;
  6203.  
  6204.     &.small--one-half {
  6205.       @include flex(1 0 50%);
  6206.       max-width: 400px;
  6207.       margin-left: auto;
  6208.       margin-right: auto;
  6209.     }
  6210.   }
  6211.  
  6212.   .collection-grid-item {
  6213.     margin-bottom: 0;
  6214.   }
  6215. }
  6216.  
  6217. .custom__item--image {
  6218.   margin: 0 auto;
  6219.   padding-left: 0;
  6220. }
  6221.  
  6222. .custom__item-inner {
  6223.   position: relative;
  6224.   display: block;
  6225.   text-align: left;
  6226.   max-width: 100%;
  6227. }
  6228.  
  6229. .custom__item-inner--video,
  6230. .custom__item-inner--collection,
  6231. .custom__item-inner--html {
  6232.   display: block;
  6233. }
  6234.  
  6235. .custom__item-inner--image {
  6236.   position: relative;
  6237.   margin: 0 auto;
  6238. }
  6239.  
  6240. .custom__image {
  6241.   width: 100%;
  6242.   display: block;
  6243.   position: absolute;
  6244.   top: 0;
  6245. }
  6246.  
  6247. /*================ Flex item alignment ================*/
  6248. .align--top-middle {
  6249.   text-align: center;
  6250. }
  6251.  
  6252. .align--top-right {
  6253.   text-align: right;
  6254. }
  6255.  
  6256. .align--middle-left {
  6257.   @include align-self(center);
  6258. }
  6259.  
  6260. .align--center {
  6261.   @include align-self(center);
  6262.   text-align: center;
  6263. }
  6264.  
  6265. .align--middle-right {
  6266.   @include align-self(center);
  6267.   text-align: right;
  6268. }
  6269.  
  6270. .align--bottom-left {
  6271.   @include align-self(flex-end);
  6272. }
  6273.  
  6274. .align--bottom-middle {
  6275.   @include align-self(flex-end);
  6276.   text-align: center;
  6277. }
  6278.  
  6279. .align--bottom-right {
  6280.   @include align-self(flex-end);
  6281.   text-align: right;
  6282. }
  6283.  
  6284. .newsletter-section {
  6285.   padding-top: $section-spacing;
  6286. }
  6287.  
  6288. .index-section--newsletter-background {
  6289.   background-color: $color-bg-alt;
  6290. }
  6291.  
  6292. .rich-text__heading--large {
  6293.   font-size: 1.4em; //24px default
  6294. }
  6295. .rich-text__heading--small {
  6296.   font-size: 0.88em; //16px default
  6297. }
  6298.  
  6299. .rich-text__text--large {
  6300.   font-size: em(floor($font-size-base * 1.15));
  6301. }
  6302. .rich-text__text--small {
  6303.   font-size: em(floor($font-size-base * 0.88));
  6304. }
  6305.  
  6306. .product-card {
  6307.   position: relative;
  6308.  
  6309.   &:hover,
  6310.   &:focus-within {
  6311.     .product-card__image-wrapper {
  6312.       opacity: 0.8;
  6313.     }
  6314.  
  6315.     .product-card__title {
  6316.       border-bottom-color: $color-text;
  6317.     }
  6318.   }
  6319. }
  6320.  
  6321. .product-card__title {
  6322.   border-bottom: 1px solid transparent;
  6323.   display: inline;
  6324. }
  6325.  
  6326.  
  6327. @font-face {
  6328.   font-family: "neuropol";
  6329.   src: url('{{'neuropol_x_rg-webfont.woff2' | asset_url}}') format("woff2"),
  6330.        url('{{'neuropol_x_rg-webfont.woff' | asset_url}}') format("woff");
  6331. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement