Advertisement
Guest User

Untitled

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