Guest User

Untitled

a guest
Oct 21st, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 143.51 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. &.classic-link {
  1768. text-decoration: underline;
  1769. }
  1770. }
  1771.  
  1772. a[href^="tel"] {
  1773. color: inherit;
  1774. }
  1775.  
  1776. /*================ Buttons ================*/
  1777. .btn {
  1778. @include user-select();
  1779. @include prefix(appearance, none, webkit moz spec);
  1780. display: inline-block;
  1781. width: auto;
  1782. text-decoration: none;
  1783. text-align: center;
  1784. vertical-align: middle;
  1785. cursor: pointer;
  1786. border: 1px solid transparent;
  1787. border-radius: $border-radius;
  1788. padding: $input-padding-top-bottom-small $input-padding-left-right-small;
  1789. background-color: $color-btn-primary;
  1790. color: $color-btn-primary-text;
  1791. font-family: $font-stack-header;
  1792. font-style: $font-style-header;
  1793. font-weight: $font-weight-header;
  1794. text-transform: uppercase;
  1795. letter-spacing: 0.08em;
  1796. white-space: normal;
  1797. font-size: $font-size-base - 2;
  1798.  
  1799. @include media-query($medium-up) {
  1800. padding: $input-padding-top-bottom $input-padding-left-right;
  1801. }
  1802.  
  1803. &:not([disabled]):hover,
  1804. &:focus {
  1805. color: $color-btn-primary-text;
  1806. background-color: $color-btn-primary-focus;
  1807. }
  1808.  
  1809. .icon-arrow-right,
  1810. .icon-arrow-left {
  1811. height: 9px;
  1812. }
  1813.  
  1814. &[disabled] {
  1815. cursor: default;
  1816. opacity: 0.5;
  1817. }
  1818. }
  1819.  
  1820. .btn--secondary {
  1821. background-color: transparent;
  1822. color: $color-btn-primary;
  1823. border-color: $color-btn-primary;
  1824.  
  1825. &:not([disabled]):hover,
  1826. &:focus {
  1827. background-color: transparent;
  1828. color: $color-btn-primary-focus;
  1829. border-color: $color-btn-primary-focus;
  1830. }
  1831. }
  1832.  
  1833. .btn--secondary-accent {
  1834. background-color: $color-body;
  1835. color: $color-btn-primary;
  1836. border-color: $color-btn-primary;
  1837.  
  1838. &:not([disabled]):hover,
  1839. &:focus {
  1840. background-color:$color-body;
  1841. color: $color-btn-primary-focus;
  1842. border-color: $color-btn-primary-focus;
  1843. }
  1844. }
  1845.  
  1846. .btn--small {
  1847. padding: 8px 10px;
  1848. font-size: em(12);
  1849. line-height: 1;
  1850. }
  1851.  
  1852. .btn--tertiary {
  1853. background-color: transparent;
  1854. color: $color-small-button-text-border;
  1855. border-color: $color-small-button-text-border;
  1856.  
  1857. &:not([disabled]):hover,
  1858. &:focus {
  1859. background-color: transparent;
  1860. color: $color-small-button-text-border-focus;
  1861. border-color: $color-small-button-text-border-focus;
  1862. }
  1863. }
  1864.  
  1865. /*================ Button variations ================*/
  1866. @include media-query($small) {
  1867. .btn--small-wide {
  1868. padding-left: 50px;
  1869. padding-right: 50px;
  1870. }
  1871. }
  1872.  
  1873. .btn--link {
  1874. background-color: transparent;
  1875. border: 0;
  1876. margin: 0;
  1877. color: $color-text;
  1878. text-align: left;
  1879.  
  1880. &:not([disabled]):hover,
  1881. &:focus {
  1882. color: $color-text-focus;
  1883. background-color: transparent;
  1884. }
  1885.  
  1886. .icon {
  1887. vertical-align: middle;
  1888. }
  1889. }
  1890.  
  1891. .btn--narrow {
  1892. padding-left: 15px;
  1893. padding-right: 15px;
  1894. }
  1895.  
  1896. .btn--has-icon-after {
  1897. .icon {
  1898. margin-left: 10px;
  1899. }
  1900. }
  1901.  
  1902. .btn--has-icon-before {
  1903. .icon {
  1904. margin-right: 10px;
  1905. }
  1906. }
  1907.  
  1908. /*================ Force an input/button to look like a text link ================*/
  1909. .text-link {
  1910. display: inline;
  1911. border: 0 none;
  1912. background: none;
  1913. padding: 0;
  1914. margin: 0;
  1915. }
  1916.  
  1917. .text-link--accent {
  1918. color: $color-btn-primary;
  1919. border-bottom: 1px solid currentColor;
  1920. padding-bottom: 1px;
  1921.  
  1922. &:not([disabled]):hover,
  1923. &:focus {
  1924. color: $color-btn-primary-focus;
  1925. }
  1926. }
  1927.  
  1928. /*================ Return to collection/blog links ================*/
  1929. .return-link-wrapper {
  1930. margin-top: ($section-spacing * 1.5);
  1931. margin-bottom: 0;
  1932.  
  1933. @include media-query($small) {
  1934. margin-top: $section-spacing;
  1935. }
  1936. }
  1937.  
  1938. .full-width-link {
  1939. position: absolute;
  1940. top: 0;
  1941. right: 0;
  1942. bottom: 0;
  1943. left: 0;
  1944. z-index: 2;
  1945. }
  1946.  
  1947. /*================ #Tables ================*/
  1948. table {
  1949. margin-bottom: $gutter-site / 2;
  1950.  
  1951. a {
  1952. border-bottom: 1px solid currentColor;
  1953. }
  1954. }
  1955.  
  1956. th {
  1957. font-family: $font-stack-header;
  1958. font-style: $font-style-header;
  1959. font-weight: $font-weight-body--bold;
  1960. }
  1961.  
  1962. th,
  1963. td {
  1964. text-align: left;
  1965. border: 1px solid $color-border;
  1966. padding: 10px 14px;
  1967. }
  1968.  
  1969. tbody th,
  1970. tfoot th {
  1971. font-weight: normal;
  1972. }
  1973.  
  1974.  
  1975. /*============================================================================
  1976. Responsive tables, defined with .responsive-table on table element.
  1977. ==============================================================================*/
  1978. @include media-query($small) {
  1979. .responsive-table {
  1980. thead {
  1981. display: none;
  1982. }
  1983.  
  1984. th,
  1985. td {
  1986. float: left;
  1987. clear: left;
  1988. width: 100%;
  1989. text-align: right;
  1990. padding: $gutter-site / 2;
  1991. border: 0;
  1992. margin: 0;
  1993. }
  1994.  
  1995. th::before,
  1996. td::before {
  1997. content: attr(data-label);
  1998. float: left;
  1999. text-align: center;
  2000. font-size: 12px;
  2001. padding-right: 10px;
  2002. font-weight: normal;
  2003. }
  2004. }
  2005.  
  2006. .responsive-table__row + .responsive-table__row,
  2007. tfoot > .responsive-table__row:first-child {
  2008. position: relative;
  2009. margin-top: 10px;
  2010. padding-top: $gutter-site;
  2011.  
  2012. &::after {
  2013. content: '';
  2014. display: block;
  2015. position: absolute;
  2016. top: 0;
  2017. left: $gutter-site / 2;
  2018. right: $gutter-site / 2;
  2019. border-bottom: 1px solid $color-border;
  2020. }
  2021. }
  2022. }
  2023.  
  2024. /*================ #Images and Iframes ================*/
  2025. svg:not(:root) {
  2026. overflow: hidden;
  2027. }
  2028.  
  2029. .video-wrapper {
  2030. position: relative;
  2031. overflow: hidden;
  2032. max-width: 100%;
  2033. padding-bottom: 56.25%;
  2034. height: 0;
  2035. height: auto;
  2036.  
  2037. iframe {
  2038. position: absolute;
  2039. top: 0;
  2040. left: 0;
  2041. width: 100%;
  2042. height: 100%;
  2043. }
  2044. }
  2045.  
  2046. /*================ Forms ================*/
  2047. form {
  2048. margin: 0;
  2049. }
  2050.  
  2051. fieldset {
  2052. border: 1px solid $color-border-form;
  2053. margin: 0 0 $gutter-site;
  2054. padding: $gutter-site / 2;
  2055. }
  2056.  
  2057. legend {
  2058. border: 0;
  2059. padding: 0;
  2060. }
  2061.  
  2062. button {
  2063. cursor: pointer;
  2064. }
  2065.  
  2066. input {
  2067. &[type="submit"] {
  2068. cursor: pointer;
  2069. }
  2070. }
  2071.  
  2072. label {
  2073. display: block;
  2074. margin-bottom: 5px;
  2075.  
  2076. @include media-query($small) {
  2077. font-size: em($font-size-base - 2px);
  2078. }
  2079.  
  2080. [type="radio"] + &,
  2081. [type="checkbox"] + & {
  2082. display: inline-block;
  2083. margin-bottom: 0;
  2084. }
  2085.  
  2086. &[for] {
  2087. cursor: pointer;
  2088. }
  2089. }
  2090.  
  2091. input,
  2092. textarea,
  2093. select {
  2094. border: 1px solid $color-border-form;
  2095. background-color: $color-text-field;
  2096. color: $color-text-field-text;
  2097. max-width: 100%;
  2098. line-height: 1.2;
  2099. border-radius: $border-radius;
  2100.  
  2101. &:focus {
  2102. border-color: darken($color-border-form, 10%);
  2103. }
  2104.  
  2105. &[disabled] {
  2106. cursor: default;
  2107. background-color: $color-disabled;
  2108. border-color: $color-disabled-border;
  2109. }
  2110.  
  2111. &.input--error {
  2112. &::-webkit-input-placeholder {
  2113. @include error-placeholder-text();
  2114. }
  2115.  
  2116. &::-moz-placeholder {
  2117. @include error-placeholder-text();
  2118. }
  2119.  
  2120. &:-ms-input-placeholder {
  2121. @include error-placeholder-text();
  2122. }
  2123.  
  2124. &::-ms-input-placeholder {
  2125. @include error-placeholder-text($opacity: 1);
  2126. }
  2127. }
  2128.  
  2129. &.hidden-placeholder {
  2130. &::-webkit-input-placeholder {
  2131. color: transparent;
  2132. }
  2133.  
  2134. &::-moz-placeholder {
  2135. color: transparent;
  2136. }
  2137.  
  2138. &:-ms-input-placeholder {
  2139. color: transparent;
  2140. }
  2141.  
  2142. &::-ms-input-placeholder {
  2143. opacity: 1;
  2144. }
  2145. }
  2146.  
  2147. .product-form & {
  2148. min-height: 44px;
  2149. }
  2150. }
  2151.  
  2152. textarea {
  2153. min-height: 100px;
  2154. }
  2155.  
  2156. /*================ Error styles ================*/
  2157. input,
  2158. select,
  2159. textarea {
  2160. &.input--error {
  2161. border-color: $color-error;
  2162. background-color: $color-error-bg;
  2163. color: $color-error;
  2164. margin-bottom: ($section-spacing-small / 3);
  2165. }
  2166. }
  2167.  
  2168. .input-error-message {
  2169. display: block;
  2170. width: 100%;
  2171. color: $color-error;
  2172. font-size: em($font-size-base - 2px);
  2173. margin-bottom: ($section-spacing-small / 3);
  2174.  
  2175. @include media-query($small) {
  2176. margin-bottom: ($section-spacing-small / 1.8);
  2177. }
  2178.  
  2179. .icon {
  2180. width: 1em;
  2181. height: 1em;
  2182. margin-top: -0.3em;
  2183. }
  2184. }
  2185.  
  2186. select {
  2187. @include prefix(appearance, none, webkit moz spec);
  2188. background-position: right center;
  2189. background: {
  2190. image: url($svg-select-icon);
  2191. repeat: no-repeat;
  2192. position: right 10px center;
  2193. }
  2194. line-height: 1.2;
  2195. padding-right: 28px;
  2196. text-indent: 0.01px;
  2197. text-overflow: '';
  2198. cursor: pointer;
  2199. padding-top: $input-padding-top-bottom-small;
  2200. padding-left: $input-padding-left-right-small;
  2201. padding-bottom: $input-padding-top-bottom-small;
  2202.  
  2203. @include media-query($medium-up) {
  2204. padding-top: $input-padding-top-bottom;
  2205. padding-left: $input-padding-left-right;
  2206. padding-bottom: $input-padding-top-bottom;
  2207. }
  2208. }
  2209.  
  2210. .select-group {
  2211. position: relative;
  2212. z-index: 2;
  2213.  
  2214. select {
  2215. background-image: none;
  2216. background-color: transparent;
  2217. }
  2218.  
  2219. .icon {
  2220. height: calc(8em / 16);
  2221. position: absolute;
  2222. right: 0;
  2223. top: 50%;
  2224. transform: translateY(-50%);
  2225. width: calc(8em / 16);
  2226. z-index: -1;
  2227. }
  2228. }
  2229.  
  2230. .select-label {
  2231. font-size: em(12);
  2232. text-transform: uppercase;
  2233. }
  2234.  
  2235. optgroup {
  2236. font-weight: $font-weight-body--bold;
  2237. }
  2238.  
  2239. // Force option color (affects IE only)
  2240. option {
  2241. color: $color-text;
  2242. background-color: $color-body;
  2243. }
  2244.  
  2245. select::-ms-expand {
  2246. display: none;
  2247. }
  2248.  
  2249. /*================ Form labels ================*/
  2250. .label--hidden {
  2251. position: absolute;
  2252. height: 0;
  2253. width: 0;
  2254. margin-bottom: 0;
  2255. overflow: hidden;
  2256. clip: rect(1px, 1px, 1px, 1px);
  2257. }
  2258.  
  2259. ::-webkit-input-placeholder {
  2260. @include placeholder-text();
  2261. }
  2262.  
  2263. ::-moz-placeholder {
  2264. @include placeholder-text();
  2265. }
  2266.  
  2267. :-ms-input-placeholder {
  2268. @include placeholder-text();
  2269. }
  2270.  
  2271. ::-ms-input-placeholder {
  2272. @include placeholder-text($opacity: 1);
  2273. }
  2274.  
  2275. /*================ Labels ================*/
  2276. .label--error {
  2277. color: $color-error;
  2278. }
  2279.  
  2280. input,
  2281. textarea {
  2282. padding: $input-padding-top-bottom-small $input-padding-left-right-small;
  2283.  
  2284. @include media-query($medium-up) {
  2285. padding: $input-padding-top-bottom $input-padding-left-right;
  2286. }
  2287. }
  2288.  
  2289. /*================ Vertical forms ================*/
  2290. .form-vertical {
  2291. input,
  2292. select,
  2293. textarea {
  2294. display: block;
  2295. width: 100%;
  2296. margin-bottom: ($section-spacing-small / 1.8); // same as <p>
  2297.  
  2298. &.input--error {
  2299. margin-bottom: ($section-spacing-small / 3);
  2300. }
  2301. }
  2302.  
  2303. [type="radio"],
  2304. [type="checkbox"] {
  2305. display: inline-block;
  2306. width: auto;
  2307. margin-right: 5px;
  2308. }
  2309.  
  2310. [type="submit"],
  2311. .btn {
  2312. display: inline-block;
  2313. width: auto;
  2314. }
  2315. }
  2316.  
  2317.  
  2318. /*================ Single field forms ================*/
  2319. .form-single-field {
  2320. margin: 0 auto $gutter-site;
  2321. max-width: 35rem;
  2322.  
  2323. .input--error {
  2324. margin-bottom: 0;
  2325. }
  2326. }
  2327.  
  2328. /*================ Form feedback messages ================*/
  2329. .note,
  2330. .form-message {
  2331. padding: $input-padding-top-bottom-small;
  2332. margin: 0 0 ($gutter-site / 2);
  2333.  
  2334. @include media-query($medium-up) {
  2335. padding: $input-padding-top-bottom;
  2336. }
  2337. }
  2338.  
  2339. .note {
  2340. border: 1px solid $color-border-form;
  2341. }
  2342.  
  2343. .form-message--success {
  2344. border: 1px solid $color-success;
  2345. background-color: $color-success-bg;
  2346. color: $color-success;
  2347. display: block;
  2348. width: 100%;
  2349. }
  2350.  
  2351. .form-message--error {
  2352. border: 1px solid $color-error;
  2353. background-color: $color-error-bg;
  2354. padding: 1rem 1.3rem;
  2355. text-align: left;
  2356. width: 100%;
  2357.  
  2358. li {
  2359. list-style-type: disc;
  2360. list-style-position: inside;
  2361. }
  2362.  
  2363. .form-message__title {
  2364. font-size: 1.2em;
  2365. }
  2366.  
  2367. .form-message__link {
  2368. display: inline-block;
  2369. text-decoration: underline;
  2370. text-decoration-skip-ink: auto;
  2371. color: $color-text;
  2372.  
  2373. &:hover {
  2374. text-decoration: none;
  2375. color: $color-text;
  2376. }
  2377. }
  2378. }
  2379.  
  2380. /*================ Input Groups ================*/
  2381.  
  2382. .input-group {
  2383. @include display-flexbox;
  2384. @include flex-wrap(wrap);
  2385. @include justify-content(center);
  2386.  
  2387. .form-vertical & {
  2388. margin-bottom: $gutter-site;
  2389. }
  2390. }
  2391.  
  2392. .input-error-message {
  2393. display: block;
  2394. width: 100%;
  2395. }
  2396.  
  2397. .input-group--error {
  2398. margin-bottom: ($section-spacing-small / 3);
  2399. }
  2400.  
  2401. .input-group__field,
  2402. .input-group__field input,
  2403. .input-group__btn .btn {
  2404. min-height: $input-group-height-small;
  2405.  
  2406. @include media-query($medium-up) {
  2407. min-height: $input-group-height;
  2408. }
  2409. }
  2410.  
  2411. .input-group__field {
  2412. @include flex-basis(15rem);
  2413. flex-grow: 9999;
  2414. margin-bottom: 1rem;
  2415. border-radius: $border-radius 0 0 $border-radius;
  2416. text-align: left;
  2417.  
  2418. input {
  2419. width: 100%;
  2420. }
  2421.  
  2422. .form-vertical & {
  2423. margin: 0;
  2424. }
  2425. }
  2426.  
  2427. .input-group__btn {
  2428. flex-grow: 1;
  2429.  
  2430. .btn {
  2431. width: 100%;
  2432. border-radius: 0 $border-radius $border-radius 0;
  2433. }
  2434. }
  2435.  
  2436. /*================ #Site Nav and Dropdowns ================*/
  2437. .site-header__logo {
  2438. img {
  2439. display: block;
  2440. }
  2441. }
  2442.  
  2443. .site-nav {
  2444. position: relative;
  2445. padding: 0;
  2446. text-align: center;
  2447. margin: 25px 0;
  2448.  
  2449. a {
  2450. padding: 3px 10px;
  2451. }
  2452. }
  2453.  
  2454. .site-nav--centered {
  2455. padding-bottom: $gutter-site-mobile;
  2456. }
  2457.  
  2458. /*================ Site Nav Links ================*/
  2459. .site-nav__link {
  2460. display: block;
  2461. white-space: nowrap;
  2462.  
  2463. .site-nav--centered & {
  2464. padding-top: 0;
  2465. }
  2466.  
  2467. .icon-chevron-down {
  2468. width: calc(8em / 16);
  2469. height: calc(8em / 16);
  2470. margin-left: 0.5rem;
  2471. }
  2472.  
  2473. &.site-nav--active-dropdown {
  2474. border: 1px solid $color-border;
  2475. border-bottom: 1px solid transparent;
  2476. z-index: 2;
  2477. }
  2478.  
  2479. &:focus,
  2480. &:not([disabled]):hover {
  2481. .site-nav__label {
  2482. border-bottom-color: $color-text;
  2483. }
  2484. }
  2485. }
  2486.  
  2487. .site-nav__label {
  2488. border-bottom: 1px solid transparent;
  2489.  
  2490. .site-nav__link--active & {
  2491. border-bottom-color: $color-text;
  2492. }
  2493. }
  2494.  
  2495. .site-nav__link--button {
  2496. border: none;
  2497. background-color: transparent;
  2498. padding: 3px 10px;
  2499.  
  2500. @include media-query($medium-down) {
  2501. font-size: $font-size-base;
  2502. }
  2503.  
  2504. &:focus,
  2505. &:hover {
  2506. color: $color-text-focus;
  2507. }
  2508. }
  2509.  
  2510. /*================ Dropdowns ================*/
  2511. .site-nav--has-dropdown {
  2512. position: relative;
  2513. }
  2514.  
  2515. .site-nav--has-centered-dropdown {
  2516. position: static;
  2517. }
  2518.  
  2519. .site-nav__dropdown {
  2520. display: none;
  2521. position: absolute;
  2522. padding: 11px 30px 11px 0;
  2523. margin: 0;
  2524. z-index: $z-index-dropdown;
  2525. text-align: left;
  2526. border: 1px solid $color-border;
  2527. background: $color-bg;
  2528. left: -1px;
  2529. top: 41px;
  2530.  
  2531. .site-nav__link {
  2532. padding: 4px 15px 5px;
  2533. }
  2534.  
  2535. .site-nav--active-dropdown & {
  2536. display: block;
  2537. }
  2538.  
  2539. li {
  2540. display: block;
  2541. }
  2542. }
  2543.  
  2544. .site-nav__dropdown--right:not(.site-nav__dropdown--centered) {
  2545. right: 0;
  2546. left: unset;
  2547. }
  2548.  
  2549. .site-nav__dropdown--left:not(.site-nav__dropdown--centered) {
  2550. left: 0;
  2551. }
  2552.  
  2553. // Centered dropdown
  2554. .site-nav__dropdown--centered {
  2555. width: 100%;
  2556. padding: 0;
  2557. text-align: center;
  2558. }
  2559.  
  2560. /*================ Child list ================*/
  2561. .site-nav__childlist {
  2562. display: inline-block;
  2563. background: $color-bg;
  2564. padding: 11px 17px;
  2565. text-align: left;
  2566. }
  2567.  
  2568. .site-nav__childlist-grid {
  2569. @include display-flexbox();
  2570. @include flex-wrap(wrap);
  2571. width: auto;
  2572. margin-bottom: -15px;
  2573. }
  2574.  
  2575. .site-nav__childlist-item {
  2576. @include flex(0 1 auto);
  2577. margin-bottom: 15px;
  2578. }
  2579.  
  2580. .site-nav__child-link--parent {
  2581. font-weight: $font-weight-body--bold;
  2582. margin: 4px 0;
  2583. }
  2584.  
  2585.  
  2586. .page-width {
  2587. padding-left: $gutter-site;
  2588. padding-right: $gutter-site;
  2589.  
  2590. @include media-query($small) {
  2591. padding-left: $gutter-site-mobile;
  2592. padding-right: $gutter-site-mobile;
  2593. }
  2594. }
  2595.  
  2596. .page-container {
  2597. transition: $transition-drawer;
  2598. position: relative;
  2599. overflow: hidden;
  2600.  
  2601. @include media-query($medium-up) {
  2602. // Prevent mobile menu inline styles from overriding desktop styles
  2603. // sass-lint:disable no-important
  2604. @include transform(translate3d(0, 0, 0));
  2605. }
  2606. }
  2607.  
  2608. hr {
  2609. margin: $gutter-site 0;
  2610. border: 0;
  2611. border-bottom: 1px solid $color-border;
  2612. }
  2613.  
  2614. .hr--small {
  2615. padding: 10px 0;
  2616. margin: 0;
  2617. }
  2618.  
  2619. .hr--invisible {
  2620. border-bottom: 0;
  2621. }
  2622.  
  2623. .border-bottom {
  2624. border-bottom: 1px solid #000;
  2625. }
  2626.  
  2627. .border-top {
  2628. border-top: 1px solid $color-border;
  2629. }
  2630.  
  2631. .empty-page-content {
  2632. padding: 125px $gutter-site;
  2633.  
  2634. @include media-query($small) {
  2635. padding-left: $gutter-site-mobile;
  2636. padding-right: $gutter-site-mobile;
  2637. }
  2638. }
  2639.  
  2640. .grid--table {
  2641. display: table;
  2642. table-layout: fixed;
  2643. width: 100%;
  2644.  
  2645. > .grid__item {
  2646. float: none;
  2647. display: table-cell;
  2648. vertical-align: middle;
  2649. }
  2650. }
  2651.  
  2652. .grid--no-gutters {
  2653. margin-left: 0;
  2654.  
  2655. .grid__item {
  2656. padding-left: 0;
  2657. }
  2658. }
  2659.  
  2660. .grid--half-gutters {
  2661. margin-left: -($grid-gutter / 2);
  2662.  
  2663. > .grid__item {
  2664. padding-left: $grid-gutter / 2;
  2665. }
  2666. }
  2667.  
  2668. .grid--double-gutters {
  2669. margin-left: -($grid-gutter * 2);
  2670.  
  2671. > .grid__item {
  2672. padding-left: $grid-gutter * 2;
  2673. }
  2674. }
  2675.  
  2676. .grid--flush-bottom {
  2677. margin-bottom: -$section-spacing;
  2678. overflow: auto;
  2679.  
  2680. > .grid__item {
  2681. margin-bottom: $section-spacing;
  2682. }
  2683. }
  2684.  
  2685. /*============================================================================
  2686. Animation Classes and Keyframes
  2687. ==============================================================================*/
  2688. .is-transitioning {
  2689. // sass-lint:disable no-important
  2690. display: block !important;
  2691. visibility: visible !important;
  2692. }
  2693.  
  2694. @mixin animation($animation) {
  2695. @include prefix(animation, #{$animation}, moz o webkit spec);
  2696. }
  2697.  
  2698. @mixin keyframes($name) {
  2699. @-webkit-keyframes #{$name} {
  2700. @content;
  2701. }
  2702. @-moz-keyframes #{$name} {
  2703. @content;
  2704. }
  2705. @-ms-keyframes #{$name} {
  2706. @content;
  2707. }
  2708. @keyframes #{$name} {
  2709. @content;
  2710. }
  2711. }
  2712.  
  2713. @include keyframes(spin) {
  2714. 0% {
  2715. @include transform(rotate(0deg));
  2716. }
  2717.  
  2718. 100% {
  2719. @include transform(rotate(360deg));
  2720. }
  2721. }
  2722.  
  2723. .drawer {
  2724. // sass-lint:disable no-misspelled-properties
  2725. display: none;
  2726. position: absolute;
  2727. overflow: hidden;
  2728. -webkit-overflow-scrolling: touch;
  2729. z-index: $z-index-drawer;
  2730. background-color: $color-bg;
  2731. transition: $transition-drawer;
  2732.  
  2733. input[type="text"],
  2734. textarea {
  2735. background-color: $color-bg;
  2736. color: $color-text;
  2737. }
  2738. }
  2739.  
  2740. .js-drawer-open {
  2741. overflow: hidden;
  2742. }
  2743.  
  2744. .drawer--top {
  2745. width: 100%;
  2746.  
  2747. .js-drawer-open-top & {
  2748. @include transform(translateY(100%));
  2749. display: block;
  2750. }
  2751. }
  2752.  
  2753. .drawer-page-content::after {
  2754. visibility: hidden;
  2755. opacity: 0;
  2756. content: '';
  2757. display: block;
  2758. position: fixed;
  2759. top: 0;
  2760. left: 0;
  2761. width: 100%;
  2762. height: 100%;
  2763. background-color: $color-drawer-background;
  2764. z-index: $z-index-drawer - 1;
  2765. transition: $transition-drawer;
  2766.  
  2767. .js-drawer-open & {
  2768. visibility: visible;
  2769. opacity: 1;
  2770. }
  2771. }
  2772.  
  2773. .drawer__title,
  2774. .drawer__close {
  2775. display: table-cell;
  2776. vertical-align: middle;
  2777. }
  2778.  
  2779. .drawer__close-button {
  2780. background: none;
  2781. border: 0 none;
  2782. position: relative;
  2783. right: -15px;
  2784. height: 100%;
  2785. width: 60px;
  2786. padding: 0 20px;
  2787. color: inherit;
  2788. font-size: em(18);
  2789.  
  2790. &:active,
  2791. &:focus {
  2792. background-color: darken($color-drawer-background, 5%);
  2793. }
  2794. }
  2795.  
  2796. .grid--view-items {
  2797. overflow: auto;
  2798. margin-bottom: -$section-spacing-small;
  2799. }
  2800.  
  2801. .grid-view-item {
  2802. margin: 0 auto $section-spacing-small;
  2803. .custom__item & {
  2804. margin-bottom: 0;
  2805. }
  2806. }
  2807.  
  2808. .grid-view-item__title {
  2809. margin-bottom: 0;
  2810. color: $color-text;
  2811. @if $font-bold-titles {
  2812. font-weight: $font-weight-header--bold;
  2813. }
  2814. }
  2815.  
  2816. .grid-view-item__meta {
  2817. margin-top: 8px;
  2818. }
  2819.  
  2820. @include media-query($small) {
  2821. .grid-view-item__title,
  2822. .grid-view-item__meta {
  2823. font-size: em($font-size-base - 1px);
  2824. }
  2825. }
  2826.  
  2827.  
  2828. .grid-view-item__link {
  2829. display: block;
  2830. }
  2831.  
  2832. .grid-view-item__vendor {
  2833. margin-top: 4px;
  2834. color: $color-body-text;
  2835. font-size: em($font-size-base - 2px);
  2836. text-transform: uppercase;
  2837. @include media-query($small) {
  2838. font-size: em($font-size-base - 3px);
  2839. }
  2840. }
  2841.  
  2842. .grid-view-item__image-wrapper {
  2843. margin: 0 auto $grid-gutter / 2;
  2844. position: relative;
  2845. width: 100%;
  2846. }
  2847.  
  2848. .grid-view-item__image {
  2849. display: block;
  2850. margin: 0 auto;
  2851. width: 100%;
  2852. .grid-view-item__image-wrapper & {
  2853. position: absolute;
  2854. top: 0;
  2855. }
  2856. .grid-view-item--sold-out & {
  2857. opacity: 0.5;
  2858. }
  2859. &.lazyload {
  2860. opacity: 0;
  2861. }
  2862. }
  2863.  
  2864. .list-view-item {
  2865. margin-bottom: $gutter-site-mobile;
  2866.  
  2867. &:last-child {
  2868. margin-bottom: 0;
  2869. }
  2870.  
  2871. @include media-query($medium-up) {
  2872. border-bottom: 1px solid $color-border;
  2873. padding-bottom: $gutter-site-mobile;
  2874.  
  2875. &:last-child {
  2876. padding-bottom: 0;
  2877. border-bottom: 0;
  2878. }
  2879. }
  2880. }
  2881.  
  2882. .list-view-item__link {
  2883. display: table;
  2884. table-layout: fixed;
  2885. width: 100%;
  2886. }
  2887.  
  2888. .list-view-item__image {
  2889. max-height: 95px;
  2890. }
  2891.  
  2892. .list-view-item__image-column {
  2893. display: table-cell;
  2894. vertical-align: middle;
  2895. width: 130px;
  2896.  
  2897. @include media-query($small) {
  2898. width: 85px;
  2899. }
  2900. }
  2901.  
  2902. .list-view-item__image-wrapper {
  2903. position: relative;
  2904. margin-right: $section-spacing-small;
  2905.  
  2906. @include media-query($small) {
  2907. margin-right: $section-spacing-small / 2;
  2908. }
  2909. }
  2910.  
  2911. .list-view-item__title-column {
  2912. display: table-cell;
  2913. vertical-align: middle;
  2914. }
  2915.  
  2916. .list-view-item__title {
  2917. color: $color-text;
  2918. font-size: em($font-size-base + 2px);
  2919. min-width: 100px;
  2920.  
  2921. @if $font-bold-titles {
  2922. font-weight: $font-weight-header--bold;
  2923. }
  2924.  
  2925. @include media-query($small) {
  2926. font-size: em($font-size-base - 1px);
  2927. }
  2928. }
  2929.  
  2930. .list-view-item__sold-out {
  2931. font-size: em($font-size-base - 1px);
  2932. }
  2933.  
  2934. .list-view-item__on-sale {
  2935. color: $color-sale-text;
  2936. font-size: em($font-size-base - 1px);
  2937.  
  2938. @include media-query($small) {
  2939. display: none;
  2940. }
  2941. }
  2942.  
  2943. .list-view-item__vendor-column {
  2944. display: table-cell;
  2945. text-align: center;
  2946. vertical-align: middle;
  2947. width: 20%;
  2948. }
  2949.  
  2950. .list-view-item__vendor {
  2951. font-size: em($font-size-base - 1px);
  2952. font-style: italic;
  2953.  
  2954. @include media-query($small) {
  2955. font-size: em($font-size-base - 2px);
  2956. }
  2957. }
  2958.  
  2959. .list-view-item__price-column {
  2960. display: table-cell;
  2961. text-align: right;
  2962. vertical-align: middle;
  2963. width: 20%;
  2964. font-size: em($font-size-base + 1px);
  2965.  
  2966. @include media-query($small) {
  2967. font-size: em($font-size-base - 1px);
  2968. }
  2969.  
  2970. .price__vendor,
  2971. .price-item__label {
  2972. display: none;
  2973. }
  2974.  
  2975. .price__regular,
  2976. .price__sale {
  2977. flex-basis: 100%;
  2978. }
  2979. }
  2980.  
  2981. .list-view-item__price {
  2982. white-space: nowrap;
  2983. overflow: hidden;
  2984. text-overflow: ellipsis;
  2985. }
  2986.  
  2987. .list-view-item__price--reg {
  2988. color: $color-sale-text;
  2989.  
  2990. @include media-query($small) {
  2991. display: block;
  2992. }
  2993. }
  2994.  
  2995. .list-view-item__price--sale {
  2996. @include media-query($small) {
  2997. display: block;
  2998. }
  2999. }
  3000.  
  3001. /*============================================================================
  3002. Slick slider overrides
  3003. ==============================================================================*/
  3004. $slick-dot-size: 12px;
  3005. $slick-dot-size-small: 10px;
  3006.  
  3007. .slick-dotted.slick-slider {
  3008. margin-bottom: 0;
  3009. }
  3010.  
  3011. /*================ Slick dots and prev/next pagination ================*/
  3012. .slideshow__arrows .slick-dots {
  3013. margin: 0 0.75rem;
  3014.  
  3015. li {
  3016. // sass-lint:disable SelectorDepth
  3017. margin: 0;
  3018. vertical-align: middle;
  3019. width: $slick-dot-size-small;
  3020. height: $slick-dot-size-small;
  3021. margin-left: 6px;
  3022.  
  3023. &:first-of-type {
  3024. margin-left: 0;
  3025. }
  3026.  
  3027. @include media-query($medium-up) {
  3028. width: $slick-dot-size;
  3029. height: $slick-dot-size;
  3030. margin-left: 8px;
  3031. }
  3032.  
  3033. button, a {
  3034. position: relative;
  3035. padding: 0;
  3036. width: $slick-dot-size-small;
  3037. height: $slick-dot-size-small;
  3038.  
  3039. @include media-query($medium-up) {
  3040. width: $slick-dot-size;
  3041. height: $slick-dot-size;
  3042. }
  3043. }
  3044.  
  3045. button::before,
  3046. a::before {
  3047. text-indent: -9999px;
  3048. background-color: transparent;
  3049. border-radius: 100%;
  3050. background-color: currentColor;
  3051. width: $slick-dot-size-small;
  3052. height: $slick-dot-size-small;
  3053. opacity: 0.4;
  3054. transition: all 0.2s;
  3055.  
  3056. @include media-query($medium-up) {
  3057. width: $slick-dot-size;
  3058. height: $slick-dot-size;
  3059. }
  3060. }
  3061.  
  3062. &.slick-active button::before,
  3063. &.slick-active a::before,
  3064. &.slick-active-mobile button::before,
  3065. &.slick-active-mobile a::before {
  3066. opacity: 1;
  3067. }
  3068.  
  3069. button:active::before,
  3070. & .slick-active a::before,
  3071. & .slick-active-mobile a::before {
  3072. opacity: 0.7;
  3073. }
  3074. }
  3075. }
  3076.  
  3077. /*================ Index sections ================*/
  3078. .index-section {
  3079. padding-top: $section-spacing-small;
  3080. padding-bottom: $section-spacing-small;
  3081.  
  3082. @include media-query($medium-up) {
  3083. padding-top: $section-spacing;
  3084. padding-bottom: $section-spacing;
  3085. }
  3086.  
  3087. &:first-child {
  3088. padding-top: 0;
  3089. border-top: 0;
  3090. }
  3091.  
  3092. &:last-child {
  3093. padding-bottom: 0;
  3094. }
  3095. }
  3096.  
  3097. .index-section--flush + .index-section--flush {
  3098. margin-top: -($section-spacing-small * 2);
  3099. }
  3100.  
  3101. [class*="index-section--flush"] + [class*="index-section--flush"] {
  3102. @include media-query($medium-up) {
  3103. margin-top: -($section-spacing * 2);
  3104. }
  3105. }
  3106.  
  3107. // Flush sections should be tight to the nav if they are the first on the page
  3108. .index-section--flush:first-child {
  3109. margin-top: -$section-spacing-small;
  3110. }
  3111.  
  3112. [class*="index-section--flush"]:first-child {
  3113. @include media-query($medium-up) {
  3114. margin-top: -$section-spacing;
  3115. }
  3116. }
  3117.  
  3118. // Flush sections should be tight to the footer if they are last on the page
  3119. .index-section--flush:last-child {
  3120. margin-bottom: -$section-spacing-small;
  3121. }
  3122.  
  3123. [class*="index-section--flush"]:last-child {
  3124. @include media-query($medium-up) {
  3125. margin-bottom: -$section-spacing;
  3126. }
  3127. }
  3128.  
  3129. // Visually align featured product section (if first on homepage on mobile)
  3130. .index-section--featured-product:first-child {
  3131. @include media-query($small) {
  3132. margin-top: -12px;
  3133. }
  3134. }
  3135.  
  3136. // Override for slideshow on mobile
  3137. .index-section--slideshow + .index-section--flush {
  3138. @include media-query($small) {
  3139. margin-top: 0.4rem;
  3140. }
  3141. }
  3142.  
  3143. $color-blankstate: rgba($color-body-text, 0.35);
  3144. $color-blankstate-border: rgba($color-body-text, 0.2);
  3145. $color-blankstate-background: rgba($color-body-text, 0.1);
  3146.  
  3147. .placeholder-svg {
  3148. display: block;
  3149. fill: $color-blankstate;
  3150. background-color: $color-blankstate-background;
  3151. width: 100%;
  3152. height: 100%;
  3153. max-width: 100%;
  3154. max-height: 100%;
  3155. border: 1px solid $color-blankstate-border;
  3156. }
  3157.  
  3158. .placeholder-noblocks {
  3159. padding: 40px;
  3160. text-align: center;
  3161. }
  3162.  
  3163. // Mimic a background image by wrapping the placeholder svg with this class
  3164. .placeholder-background {
  3165. position: absolute;
  3166. top: 0;
  3167. right: 0;
  3168. bottom: 0;
  3169. left: 0;
  3170.  
  3171. .icon {
  3172. border: 0;
  3173. }
  3174. }
  3175.  
  3176. // Custom styles for some blank state images
  3177. .image-bar__content .placeholder-svg {
  3178. position: absolute;
  3179. top: 0;
  3180. left: 0;
  3181. }
  3182.  
  3183.  
  3184. /*================ TEMPLATES ================*/
  3185. /*============= Templates | Password =============*/
  3186.  
  3187. .password-page {
  3188. display: table;
  3189. height: 100%;
  3190. width: 100%;
  3191. color: $color-body-text;
  3192. background-color: $color-body;
  3193. background-size: cover;
  3194. }
  3195.  
  3196. .password-form-message {
  3197. max-width: 500px;
  3198. margin-left: auto;
  3199. margin-right: auto;
  3200. }
  3201.  
  3202. .password-header {
  3203. height: 85px;
  3204. display: table-row;
  3205. }
  3206.  
  3207. .password-header__inner {
  3208. display: table-cell;
  3209. vertical-align: middle;
  3210. }
  3211.  
  3212. .password-login {
  3213. padding: 0 30px;
  3214. text-align: right;
  3215. }
  3216.  
  3217. .password-logo {
  3218. .logo {
  3219. color: $color-navigation-text;
  3220. font-weight: $font-weight-header--bold;
  3221. max-width: 100%;
  3222. }
  3223. }
  3224.  
  3225. .password-content {
  3226. text-align: center;
  3227. }
  3228.  
  3229. .password-content--rte {
  3230. margin-bottom: $section-spacing-small;
  3231. }
  3232.  
  3233. .password-content__title {
  3234. display: block;
  3235. margin-bottom: $gutter-site * 1.5;
  3236. }
  3237.  
  3238. .password-main {
  3239. display: table-row;
  3240. width: 100%;
  3241. height: 100%;
  3242. margin: 0 auto;
  3243. }
  3244.  
  3245. .password-main__inner {
  3246. display: table-cell;
  3247. vertical-align: middle;
  3248. padding: ($gutter-site / 2) $gutter-site;
  3249. }
  3250.  
  3251. .password-message {
  3252. max-width: 500px;
  3253. margin: ($gutter-site * 1.5) auto ($gutter-site / 2);
  3254. }
  3255.  
  3256. .password__form-heading {
  3257. margin-bottom: $gutter-site;
  3258. }
  3259.  
  3260. .password-powered-by {
  3261. margin-top: $gutter-site * 1.5;
  3262. }
  3263.  
  3264. .password-social-sharing {
  3265. margin-top: $gutter-site * 1.5;
  3266. }
  3267.  
  3268. .product-single {
  3269. // prevent scroll anchoring within element
  3270. overflow-anchor: none;
  3271. }
  3272.  
  3273. .product-single__title {
  3274. margin-bottom: 0.5rem;
  3275. }
  3276.  
  3277. .product__price,
  3278. .featured-product__price {
  3279. font-size: 1.25em;
  3280. }
  3281.  
  3282. .product__policies {
  3283. margin: 0.4rem 0 1rem 0;
  3284. font-size: em($font-size-base - 1);
  3285. }
  3286.  
  3287. /*================ Add to cart form ================*/
  3288.  
  3289. .product-form {
  3290. @include display-flexbox();
  3291. @include flex-wrap(wrap);
  3292. @include align-items(flex-end);
  3293. width: auto;
  3294. padding-top: 2rem;
  3295. }
  3296.  
  3297. .product-form--payment-button-no-variants {
  3298. max-width: 400px;
  3299. }
  3300.  
  3301. .product-form__item {
  3302. @include flex(1 1 200px);
  3303. margin-bottom: 10px;
  3304. padding: 0 5px;
  3305.  
  3306. label {
  3307. display: block;
  3308.  
  3309. .product-form--hide-variant-labels & {
  3310. // sass-lint:disable no-important
  3311. position: absolute !important;
  3312. overflow: hidden;
  3313. clip: rect(0 0 0 0);
  3314. height: 1px;
  3315. width: 1px;
  3316. margin: -1px;
  3317. padding: 0;
  3318. border: 0;
  3319. }
  3320. }
  3321. }
  3322.  
  3323. .product-form__item--submit {
  3324. @include flex(1 1 300px);
  3325. }
  3326.  
  3327. .product-form__item--no-variants {
  3328. max-width: 400px;
  3329. }
  3330.  
  3331. .product-form__item--payment-button {
  3332. @include flex-basis(100%);
  3333.  
  3334. .product-single--small-image &,
  3335. .product-single--full-image & {
  3336. @include media-query($large-up) {
  3337. display: inline-flex;
  3338. @include flex-direction(row);
  3339. @include align-items(flex-start);
  3340. }
  3341. }
  3342. &.product-form__item--no-variants {
  3343. @include flex-direction(column);
  3344. @include align-items(stretch);
  3345. }
  3346. }
  3347.  
  3348. .product-form__variants {
  3349. display: none;
  3350.  
  3351. .no-js & {
  3352. display: block;
  3353. }
  3354. }
  3355.  
  3356. .product-form__item--quantity {
  3357. @include flex(0 0 100px);
  3358. }
  3359.  
  3360. .product-form__input {
  3361. display: block;
  3362. width: 100%;
  3363. }
  3364.  
  3365. .product-form__cart-submit {
  3366. display: block;
  3367. width: 100%;
  3368. line-height: 1.4;
  3369. padding-left: 5px;
  3370. padding-right: 5px;
  3371. white-space: normal;
  3372. margin-top: 0;
  3373. min-height: 44px;
  3374.  
  3375. .product-single--small-image &,
  3376. .product-single--full-image & {
  3377. @include flex(50%);
  3378. margin-right: 10px;
  3379. }
  3380.  
  3381. .product-form__item--payment-button & {
  3382. margin-top: 10px;
  3383. }
  3384. }
  3385.  
  3386. .shopify-payment-button {
  3387. .product-single--small-image &,
  3388. .product-single--full-image & {
  3389. @include flex(50%);
  3390. }
  3391.  
  3392. .shopify-payment-button__button {
  3393. margin-top: 10px;
  3394.  
  3395. .product-single--small-image &,
  3396. .product-single--full-image & {
  3397. margin-top: 10px;
  3398. }
  3399. @include media-query($medium-up) {
  3400. margin-top: 20px;
  3401. }
  3402. }
  3403. .shopify-payment-button__button--unbranded {
  3404. @extend .btn;
  3405. @extend .product-form__cart-submit;
  3406. margin-bottom: 10px;
  3407.  
  3408. &:hover {
  3409. background-color: $color-btn-primary-focus !important;
  3410. }
  3411. }
  3412. .shopify-payment-button__button--branded {
  3413. border-radius: $border-radius;
  3414. overflow: hidden;
  3415. }
  3416. .shopify-payment-button__more-options {
  3417. margin: 16px 0 10px;
  3418. font-size: em($font-size-base - 2px);
  3419. text-decoration: underline;
  3420.  
  3421. &:hover,
  3422. &:focus {
  3423. opacity: $opacity-link-hover;
  3424. }
  3425. }
  3426. }
  3427.  
  3428. @include media-query($medium-up) {
  3429. .product-form__cart-submit--small {
  3430. max-width: 300px;
  3431. }
  3432. }
  3433.  
  3434. .product-single__description {
  3435. margin-top: $grid-gutter;
  3436. }
  3437.  
  3438. .product__quantity-error {
  3439. .icon {
  3440. margin-right: 1rem;
  3441. }
  3442. }
  3443.  
  3444. /*================ Product Images ================*/
  3445.  
  3446. .product-single__thumbnail {
  3447. display: block;
  3448. margin: -2px 0 8px;
  3449. min-height: 44px;
  3450. position: relative;
  3451.  
  3452. &:not([disabled]):not(.active-thumb):hover {
  3453. opacity: 0.8;
  3454. }
  3455. }
  3456.  
  3457. .product-single__thumbnail-image {
  3458. max-width: 100%;
  3459. display: block;
  3460. border: 2px solid transparent;
  3461. padding: 2px;
  3462.  
  3463. .active-thumb & {
  3464. border-color: $color-text;
  3465. }
  3466. }
  3467.  
  3468. .product-featured-img {
  3469. display: block;
  3470. margin: 0 auto;
  3471. position: absolute;
  3472. top: 4px;
  3473. left: 4px;
  3474. width: calc(100% - 8px);
  3475.  
  3476. .no-js & {
  3477. position: relative;
  3478. }
  3479. }
  3480.  
  3481. // sass-lint:disable class-name-format
  3482. .zoomImg {
  3483. background-color: $color-body;
  3484. }
  3485.  
  3486. // sass-lint:enable class-name-format
  3487. @include media-query ($medium-up) {
  3488. .product-single__thumbnails {
  3489. margin-top: $grid-gutter;
  3490. }
  3491. }
  3492.  
  3493. @include media-query ($small) {
  3494. .product-single__photos {
  3495. margin-bottom: $grid-gutter;
  3496. }
  3497. .product-single__photo--has-thumbnails {
  3498. margin-bottom: $grid-gutter;
  3499. }
  3500. }
  3501.  
  3502. .product-single__photos--full {
  3503. margin-bottom: $grid-gutter;
  3504. }
  3505.  
  3506. .product-single__photo-wrapper {
  3507. margin: 0 auto;
  3508. width: 100%;
  3509. }
  3510.  
  3511. // Prevent reflow when image loads
  3512. .product-single__photo {
  3513. margin: 0 auto;
  3514. min-height: 1px;
  3515. width: 100%;
  3516. height: 100%;
  3517. position: relative;
  3518. padding-bottom: 4px;
  3519. }
  3520.  
  3521. @include media-query($small) {
  3522. .template-product .main-content {
  3523. padding-top: $grid-gutter-mobile;
  3524. }
  3525. .thumbnails-slider--active {
  3526. .product-single__thumbnails {
  3527. display: none;
  3528. &.slick-initialized {
  3529. display: block;
  3530. margin: 0 auto;
  3531. max-width: 75%;
  3532. }
  3533. }
  3534. }
  3535. .product-single__photos {
  3536. position: relative;
  3537. }
  3538. .thumbnails-wrapper {
  3539. position: relative;
  3540. top: 30px;
  3541. text-align: center;
  3542. margin: 0 2px 30px 2px;
  3543. }
  3544. .thumbnails-slider__btn {
  3545. position: absolute;
  3546. top: 50%;
  3547. transform: translateY(-50%);
  3548. }
  3549. .thumbnails-slider__prev {
  3550. left: -20px;
  3551. }
  3552. .thumbnails-slider__next {
  3553. right: -20px;
  3554. }
  3555. .product-single__thumbnails-item {
  3556. display: inline-block;
  3557. padding-bottom: 10px;
  3558. width: 72px;
  3559. float: none;
  3560. vertical-align: middle;
  3561.  
  3562. .slick-slider & {
  3563. float: left;
  3564. }
  3565. .thumbnails-slider--active & {
  3566. padding: 5px 0;
  3567. }
  3568. }
  3569. .product-single__thumbnail {
  3570. margin: 0 auto;
  3571. width: 50px;
  3572. }
  3573. }
  3574.  
  3575. /*================ Template | Collections ================*/
  3576.  
  3577. // Collection Hero
  3578. //----------------------------------------
  3579. .collection-hero {
  3580. position: relative;
  3581. overflow: hidden;
  3582. margin-top: -$gutter-site;
  3583. margin-bottom: $gutter-site-mobile;
  3584.  
  3585. @include media-query($medium-up) {
  3586. margin-bottom: $section-spacing-small;
  3587. }
  3588. }
  3589.  
  3590. .collection-description {
  3591. margin-bottom: $gutter-site-mobile;
  3592. margin-top: $gutter-site-mobile;
  3593.  
  3594. @include media-query($medium-up) {
  3595. margin-bottom: $section-spacing-small;
  3596. margin-top: $section-spacing-small;
  3597. }
  3598. }
  3599.  
  3600. .collection-hero__image {
  3601. background-position: 50% 50%;
  3602. background-repeat: no-repeat;
  3603. background-size: cover;
  3604. height: 300px;
  3605. opacity: 1;
  3606.  
  3607. @include media-query($small) {
  3608. height: 180px;
  3609. }
  3610. }
  3611.  
  3612. .collection-hero__title-wrapper::before {
  3613. content: '';
  3614. position: absolute;
  3615. top: 0;
  3616. right: 0;
  3617. bottom: 0;
  3618. left: 0;
  3619. background-color: $color-image-overlay;
  3620. opacity: $opacity-image-overlay;
  3621. }
  3622.  
  3623. .collection-hero__title {
  3624. position: absolute;
  3625. color: $color-overlay-title-text;
  3626. width: 100%;
  3627. text-align: center;
  3628. left: 0;
  3629. right: 0;
  3630. top: 50%;
  3631. @include transform(translateY(-50%));
  3632.  
  3633. @include media-query($medium-up) {
  3634. font-size: em($font-size-header + 6);
  3635. }
  3636. }
  3637.  
  3638. .template-blog .social-sharing {
  3639. margin-bottom: $section-spacing-small / 2;
  3640. }
  3641.  
  3642. .blog-list-view .pagination {
  3643. padding-top: 0;
  3644. }
  3645.  
  3646. .blog-filter {
  3647. @include display-flexbox();
  3648. @include align-items(center);
  3649. @include justify-content(center);
  3650.  
  3651. .icon-chevron-down {
  3652. fill: $color-text-field-text;
  3653. width: calc(10em / 16);
  3654. height: calc(10em / 16);
  3655. right: 1rem;
  3656. }
  3657. }
  3658.  
  3659. .blog-filter__label {
  3660. margin: 0 1rem 0 0;
  3661. }
  3662.  
  3663. .cart-header {
  3664. margin-bottom: 0.7rem;
  3665. text-align: center;
  3666.  
  3667. @include media-query($medium-up) {
  3668. margin-bottom: 1.7rem;
  3669. }
  3670. }
  3671.  
  3672. .cart-header__title {
  3673. margin-bottom: 0.5rem;
  3674.  
  3675. @include media-query($medium-up) {
  3676. margin-bottom: 1rem;
  3677. }
  3678. }
  3679.  
  3680. /*================ Cart page ================*/
  3681. .cart {
  3682. th,
  3683. td {
  3684. border: 0;
  3685. }
  3686.  
  3687. td {
  3688. padding: $gutter-site-mobile 0;
  3689. }
  3690.  
  3691. th {
  3692. font-weight: $font-weight-body;
  3693. padding: ($gutter-site / 2) 0;
  3694. }
  3695.  
  3696. .cart__meta {
  3697. padding-right: 15px;
  3698. }
  3699. }
  3700.  
  3701. .cart__meta-text {
  3702. padding: 5px 0 0;
  3703. font-size: em($font-size-base - 2);
  3704. font-style: italic;
  3705. }
  3706.  
  3707. .cart__qty-label {
  3708. @include visually-hidden();
  3709. }
  3710.  
  3711. .cart__qty-input {
  3712. text-align: center;
  3713. width: 60px;
  3714. padding-left: 5px;
  3715. padding-right: 5px;
  3716.  
  3717. @include media-query($small) {
  3718. padding-top: 2px;
  3719. padding-bottom: 2px;
  3720. }
  3721. }
  3722.  
  3723. .cart__edit {
  3724. margin-top: 10px;
  3725. }
  3726.  
  3727. .cart__edit-text--cancel {
  3728. .cart__edit--active & {
  3729. display: none;
  3730. }
  3731. }
  3732.  
  3733. .cart__edit-text--edit {
  3734. display: none;
  3735.  
  3736. .cart__edit--active & {
  3737. display: block;
  3738. }
  3739. }
  3740.  
  3741. .cart__edit-text--cancel,
  3742. .cart__edit-text--edit {
  3743. pointer-events: none;
  3744. }
  3745.  
  3746. .cart__row {
  3747. p {
  3748. margin-bottom: 0;
  3749.  
  3750. + p {
  3751. margin-top: 10px;
  3752. }
  3753. }
  3754.  
  3755. &.cart__update--show {
  3756. border-bottom: 0;
  3757. }
  3758. }
  3759.  
  3760. .cart__subtotal-title {
  3761. font-size: em($font-size-base + 2px);
  3762. }
  3763.  
  3764. .cart__subtotal {
  3765. padding-left: $gutter-site / 2;
  3766.  
  3767. @include media-query($medium-up) {
  3768. padding-left: $gutter-site;
  3769. min-width: 150px;
  3770. display: inline-block;
  3771. }
  3772. }
  3773.  
  3774. .cart__savings {
  3775. padding-top: 18px;
  3776. }
  3777.  
  3778. .cart__savings-amount {
  3779. padding-left: $gutter-site / 2;
  3780.  
  3781. @include media-query($medium-up) {
  3782. padding-left: $gutter-site;
  3783. min-width: 150px;
  3784. display: inline-block;
  3785. }
  3786. }
  3787.  
  3788. .cart__footer {
  3789. padding-top: $section-spacing-small / 2;
  3790. }
  3791.  
  3792. .cart__submit-controls {
  3793. @include display-flexbox();
  3794. @include flex-wrap(wrap);
  3795. @include align-items(flex-start);
  3796. @include justify-content(flex-end);
  3797.  
  3798. & > .cart__submit-control {
  3799. margin-left: 10px;
  3800. margin-bottom: 10px;
  3801. }
  3802.  
  3803. @include media-query ($small) {
  3804. @include justify-content(center);
  3805.  
  3806. & .cart__submit {
  3807. margin-left: 0;
  3808. margin-bottom: 0;
  3809. }
  3810. }
  3811. }
  3812.  
  3813. .cart__submit {
  3814. @include media-query($small) {
  3815. line-height: 1.4;
  3816. min-height: 44px;
  3817. margin-left: 0;
  3818. margin-bottom: 0;
  3819. }
  3820.  
  3821. @include media-query ($narrowscreen) {
  3822. width: 100%;
  3823. }
  3824. }
  3825.  
  3826. .cart__shipping {
  3827. font-size: em($font-size-base - 2);
  3828. padding: 10px 0 20px;
  3829. margin-bottom: 25px;
  3830. }
  3831.  
  3832. .cart-note__label,
  3833. .cart-note__input {
  3834. display: block;
  3835.  
  3836. @include media-query($small) {
  3837. margin: 0 auto;
  3838. }
  3839. }
  3840.  
  3841. .cart-note__label {
  3842. margin-bottom: 15px;
  3843. }
  3844.  
  3845. .cart-note__input {
  3846. min-height: 50px;
  3847. width: 100%;
  3848.  
  3849. @include media-query($small) {
  3850. margin-bottom: 40px;
  3851. }
  3852. }
  3853.  
  3854. .cart__product-title {
  3855. border-bottom: none;
  3856.  
  3857. &:hover,
  3858. &:focus {
  3859. border-bottom: 1px solid currentColor;
  3860. }
  3861. }
  3862.  
  3863. .cart__image {
  3864. max-height: 95px;
  3865. }
  3866.  
  3867. .cart__image-wrapper div {
  3868. display: block;
  3869. padding-right: $section-spacing-small / 2;
  3870.  
  3871. @include media-query($medium-up) {
  3872. padding-right: $section-spacing-small;
  3873. }
  3874. }
  3875.  
  3876. @include media-query($medium-up) {
  3877. .cart__image-wrapper {
  3878. width: 130px;
  3879. }
  3880.  
  3881. .cart__meta {
  3882. max-width: 300px;
  3883. }
  3884.  
  3885. .cart__remove {
  3886. margin-top: 4px;
  3887. }
  3888.  
  3889. .cart__qty {
  3890. text-align: center;
  3891. }
  3892. }
  3893.  
  3894. @include media-query($small) {
  3895.  
  3896. .cart__update-wrapper {
  3897. display: none;
  3898. padding-top: 0;
  3899. padding-bottom: $gutter-site-mobile;
  3900. border-bottom: 1px solid $color-border;
  3901. }
  3902.  
  3903. .cart__update--show {
  3904. td {
  3905. padding-bottom: 10px;
  3906. }
  3907.  
  3908. & + tr {
  3909. display: table-row;
  3910. }
  3911. }
  3912.  
  3913. .cart__row-price {
  3914. text-align: right;
  3915. }
  3916.  
  3917. .cart__update-controls {
  3918. @include display-flexbox();
  3919. @include flex-wrap(wrap);
  3920. @include align-items(center);
  3921. @include justify-content(space-between);
  3922. }
  3923.  
  3924. .cart__update-control {
  3925. margin-bottom: 10px;
  3926. }
  3927.  
  3928. .cart__update-control--remove {
  3929. line-height: 1.2;
  3930. }
  3931.  
  3932. .cart-flex {
  3933. @include display-flexbox();
  3934. @include flex-wrap(wrap);
  3935. @include align-items(center);
  3936. }
  3937.  
  3938. .cart-flex-item {
  3939. display: block;
  3940. min-width: 0;
  3941. @include flex(1 1 100%);
  3942. }
  3943.  
  3944. .cart__image-wrapper {
  3945. max-width: 85px;
  3946. }
  3947.  
  3948. .cart__price-wrapper {
  3949. width: 24%;
  3950. text-align: right;
  3951. }
  3952.  
  3953. .cart-message {
  3954. padding-top: 20px;
  3955. }
  3956.  
  3957. .cart__qty {
  3958. padding: 0 10px;
  3959. }
  3960.  
  3961. .cart__qty-label {
  3962. @include visually-shown();
  3963. display: inline-block;
  3964. vertical-align: middle;
  3965. font-size: em(13);
  3966. margin-right: 5px;
  3967. }
  3968. }
  3969.  
  3970. .cart__continue-btn {
  3971. .cart--no-cookies & {
  3972. display: none;
  3973. }
  3974. }
  3975.  
  3976. .cart--empty-message {
  3977. .cart--no-cookies & {
  3978. display: none;
  3979. }
  3980. }
  3981.  
  3982. .cookie-message {
  3983. display: none;
  3984. padding-bottom: 25px;
  3985.  
  3986. .cart--no-cookies & {
  3987. display: block;
  3988. }
  3989. }
  3990.  
  3991. .additional-checkout-buttons {
  3992. margin-top: $gutter-site-mobile;
  3993.  
  3994. // reset for paypal button
  3995. input[type="image"] {
  3996. padding: 0;
  3997. border: 0;
  3998. background: transparent;
  3999. }
  4000.  
  4001. @include media-query ($narrowscreen) {
  4002. margin-top: 10px;
  4003. }
  4004. }
  4005.  
  4006. .myaccount {
  4007. display: flex;
  4008. flex-wrap: wrap;
  4009. }
  4010.  
  4011. .myaccount__order-history {
  4012. @include media-query($medium-up) {
  4013. @include flex(1 0 percentage(2/3));
  4014. }
  4015. }
  4016.  
  4017. .myaccount__account-details {
  4018. @include media-query($medium-up) {
  4019. @include flex(1 0 percentage(1/3));
  4020. }
  4021. }
  4022.  
  4023.  
  4024. /*================ MODULES ================*/
  4025. .site-header {
  4026. background-color: $color-body;
  4027. position: relative;
  4028. padding: 0 $gutter-site;
  4029.  
  4030. @include media-query($small) {
  4031. border-bottom: 1px solid $color-border;
  4032. padding: 0;
  4033. }
  4034.  
  4035. @include media-query($medium-up) {
  4036. &.logo--center {
  4037. padding-top: $grid-gutter;
  4038. }
  4039. }
  4040. }
  4041.  
  4042. .announcement-bar {
  4043. text-align: center;
  4044. position: relative;
  4045. z-index: $z-index-announcement-bar;
  4046. }
  4047.  
  4048. .announcement-bar--link {
  4049. display: block;
  4050. }
  4051.  
  4052. .announcement-bar__message {
  4053. display: block;
  4054. font-size: em(16);
  4055. font-weight: $font-weight-header;
  4056. padding: 10px $gutter-site-mobile;
  4057.  
  4058. @include media-query($medium-up) {
  4059. padding: 10px $gutter-site;
  4060. }
  4061. }
  4062.  
  4063. .site-header__logo {
  4064. margin: 15px 0;
  4065.  
  4066. .logo-align--center & {
  4067. text-align: center;
  4068. margin: 0 auto;
  4069.  
  4070. @include media-query($small) {
  4071. text-align: left;
  4072. margin: 15px 0;
  4073. }
  4074. }
  4075. }
  4076.  
  4077. .site-header__logo-link {
  4078. display: inline-block;
  4079. word-break: break-word;
  4080. }
  4081.  
  4082. .site-header__logo-image {
  4083. display: block;
  4084.  
  4085. @include media-query($medium-up) {
  4086. margin: 0 auto;
  4087. }
  4088. }
  4089.  
  4090. .site-header__logo-image img {
  4091. width: 100%;
  4092. }
  4093.  
  4094. .site-header__logo-image--centered img {
  4095. margin: 0 auto;
  4096. }
  4097.  
  4098. @include media-query($medium-up) {
  4099. .logo-align--center .site-header__logo-link {
  4100. margin: 0 auto;
  4101. }
  4102. }
  4103.  
  4104. @include media-query($small) {
  4105. .site-header__icons {
  4106. .btn--link,
  4107. .site-header__cart {
  4108. font-size: em($font-size-base);
  4109. }
  4110. }
  4111. }
  4112.  
  4113. .site-header__icons {
  4114. position: relative;
  4115. white-space: nowrap;
  4116.  
  4117. @include media-query($small) {
  4118. width: auto;
  4119. }
  4120. }
  4121.  
  4122. .site-header__icons-wrapper {
  4123. position: relative;
  4124. @include display-flexbox();
  4125. @include align-items(center);
  4126. @include justify-content(flex-end);
  4127.  
  4128. @include media-query($small) {
  4129. @include display-flexbox();
  4130. }
  4131. }
  4132.  
  4133. .site-header__cart,
  4134. .site-header__search,
  4135. .site-header__account {
  4136. position: relative;
  4137. }
  4138.  
  4139. .site-header__search {
  4140. &.site-header__icon {
  4141. display: none;
  4142.  
  4143. @include media-query($widescreen) {
  4144. display: block;
  4145. }
  4146. }
  4147. }
  4148.  
  4149. .site-header__search-toggle {
  4150. display: block;
  4151.  
  4152. @include media-query($widescreen) {
  4153. display: none;
  4154. }
  4155. }
  4156.  
  4157. @include media-query($medium-up) {
  4158. .site-header__account,
  4159. .site-header__cart {
  4160. padding: 10px 11px;
  4161. }
  4162. }
  4163.  
  4164. .site-header__cart-title,
  4165. .site-header__search-title {
  4166. display: block;
  4167. vertical-align: middle;
  4168.  
  4169. @include visually-hidden();
  4170. }
  4171.  
  4172. .site-header__cart-title {
  4173. margin-right: 3px;
  4174. }
  4175.  
  4176. .site-header__cart-count {
  4177. display: flex;
  4178. align-items: center;
  4179. justify-content: center;
  4180. position: absolute;
  4181. right: 0.4rem;
  4182. top: 0.2rem;
  4183. font-weight: bold;
  4184. background-color: $color-btn-primary-text;
  4185. color: $color-btn-primary;
  4186. border-radius: 50%;
  4187. min-width: 1em;
  4188. height: 1em;
  4189.  
  4190. span {
  4191. font-family: $font-stack-cart-notification;
  4192. font-size: calc(11em / 16);
  4193. line-height: 1;
  4194. }
  4195. }
  4196.  
  4197. @include media-query($small) {
  4198. .site-header__cart-count {
  4199. top: calc(7em / 16);
  4200. right: 0;
  4201. border-radius: 50%;
  4202. min-width: calc(19em / 16);
  4203. height: calc(19em / 16);
  4204.  
  4205. span {
  4206. padding: 0.25em calc(6em / 16);
  4207. font-size: 12px;
  4208. }
  4209. }
  4210. }
  4211.  
  4212. .site-header__menu {
  4213. display: none;
  4214. }
  4215.  
  4216. .site-header__icon svg {
  4217. height: 23px;
  4218. width: 22px;
  4219.  
  4220. @include media-query($medium-up) {
  4221. margin-right: 3px;
  4222. }
  4223. }
  4224.  
  4225. @include media-query($small) {
  4226. .site-header__logo {
  4227. padding-left: $gutter-site-mobile;
  4228. }
  4229.  
  4230. .site-header__icons {
  4231. padding-right: 13px;
  4232. }
  4233.  
  4234. .site-header__icon {
  4235. display: inline-block;
  4236. vertical-align: middle;
  4237. padding: 10px 11px;
  4238. margin: 0;
  4239. }
  4240.  
  4241. .site-header__logo {
  4242. text-align: left;
  4243.  
  4244. img {
  4245. margin: 0;
  4246. }
  4247. }
  4248. }
  4249.  
  4250. .article-listing {
  4251. padding-top: $gutter-site;
  4252. margin-bottom: $gutter-site;
  4253. }
  4254.  
  4255. .article__title {
  4256. margin-bottom: $gutter-site-mobile / 2;
  4257. }
  4258.  
  4259. .article__title--has-image {
  4260. @include media-query($small) {
  4261. padding-left: $gutter-site-mobile;
  4262. }
  4263. }
  4264.  
  4265. .article__author {
  4266. margin-right: 10px;
  4267. }
  4268.  
  4269. .article__author,
  4270. .article__date {
  4271. display: inline-block;
  4272. margin-bottom: $gutter-site-mobile;
  4273.  
  4274. .template-article & {
  4275. margin-bottom: 0;
  4276. }
  4277. }
  4278.  
  4279. .article__tags {
  4280. margin-bottom: $section-spacing / 2;
  4281. }
  4282.  
  4283. .article__tags--list {
  4284. font-style: italic;
  4285. }
  4286.  
  4287. .article__link {
  4288. display: block;
  4289.  
  4290. @include media-query($small) {
  4291. @include display-flexbox;
  4292. @include flex-direction(column);
  4293. }
  4294.  
  4295. &:not([disabled]):hover,
  4296. &:focus {
  4297. .article__grid-image-wrapper {
  4298. @include overlay(1);
  4299. }
  4300. }
  4301. }
  4302.  
  4303. .article__meta-buttons {
  4304. li + li {
  4305. margin-left: 1.5rem;
  4306. }
  4307. }
  4308.  
  4309. .article__comment-count {
  4310. border-color: transparent;
  4311. border-bottom-color: currentColor;
  4312. padding: 0 0 3px 0;
  4313.  
  4314. &:not([disabled]):hover,
  4315. &:focus {
  4316. border-color: transparent;
  4317. border-bottom-color: currentColor;
  4318. }
  4319. }
  4320.  
  4321. /*============================================================================
  4322. Blog article grid
  4323. ==============================================================================*/
  4324. .grid--blog {
  4325. margin-bottom: -$section-spacing;
  4326. overflow: auto;
  4327. }
  4328.  
  4329. .article__grid-tag {
  4330. margin-right: 10px;
  4331. }
  4332.  
  4333. .article__grid-meta {
  4334. margin-bottom: $section-spacing;
  4335. }
  4336.  
  4337. @include media-query($small) {
  4338. .article__grid-meta--has-image {
  4339. float: left;
  4340. padding-left: $gutter-site-mobile;
  4341. }
  4342. }
  4343.  
  4344. .article__grid-excerpt {
  4345. margin-bottom: $section-spacing-small / 2;
  4346. }
  4347.  
  4348. .article__grid-image-wrapper {
  4349. margin: 0 auto;
  4350. position: relative;
  4351. width: 100%;
  4352. }
  4353.  
  4354. .article__grid-image-container {
  4355. display: block;
  4356. clear: both;
  4357. position: relative;
  4358.  
  4359. margin: 0 auto $section-spacing / 2 0;
  4360. min-height: 1px;
  4361. width: 100%;
  4362. height: 100%;
  4363.  
  4364. @include media-query($small) {
  4365. float: left;
  4366. margin: 0 0 $section-spacing 0;
  4367. }
  4368.  
  4369. img {
  4370. display: block;
  4371. }
  4372. }
  4373.  
  4374. .article__grid-image {
  4375. margin: 0 auto;
  4376. width: 100%;
  4377.  
  4378. .js & {
  4379. position: absolute;
  4380. top: 0;
  4381. }
  4382. }
  4383.  
  4384. .article__list-image-container {
  4385. display: block;
  4386. clear: both;
  4387. position: relative;
  4388.  
  4389. min-height: 1px;
  4390. width: 100%;
  4391. height: 100%;
  4392. }
  4393.  
  4394. .article__list-image-wrapper{
  4395. width: 100%;
  4396. margin-bottom: 20px;
  4397. }
  4398.  
  4399. .article__list-image-container {
  4400. display: block;
  4401. clear: both;
  4402. position: relative;
  4403.  
  4404. min-height: 1px;
  4405. width: 100%;
  4406. height: 100%;
  4407. }
  4408.  
  4409. .article__list-image-wrapper{
  4410. width: 100%;
  4411. margin-bottom: 20px;
  4412. }
  4413.  
  4414. .article__list-image {
  4415. margin: 0 auto;
  4416. width: 100%;
  4417. position: absolute;
  4418. top: 0;
  4419. }
  4420.  
  4421. .sidebar {
  4422. margin-top: 40px;
  4423. }
  4424.  
  4425. .sidebar__list {
  4426. list-style: none;
  4427. margin-bottom: $gutter-site;
  4428.  
  4429. li {
  4430. margin-bottom: 10px;
  4431. }
  4432. }
  4433.  
  4434. .pagination {
  4435. text-align: center;
  4436. list-style: none;
  4437. font-size: em(15);
  4438. padding-top: $section-spacing;
  4439.  
  4440. li {
  4441. display: inline-block;
  4442. }
  4443.  
  4444. .icon {
  4445. display: block;
  4446. height: 20px;
  4447. vertical-align: middle;
  4448. }
  4449. }
  4450.  
  4451. .pagination__text {
  4452. padding: 0 ($gutter-site / 2);
  4453. }
  4454.  
  4455. .comment {
  4456. margin-bottom: $grid-gutter;
  4457.  
  4458. &:last-child {
  4459. margin-bottom: 0;
  4460. }
  4461. }
  4462.  
  4463. .comment__content {
  4464. margin-bottom: 5px;
  4465. }
  4466.  
  4467. .comment__meta-item {
  4468. margin-right: 10px;
  4469. font-size: em(14);
  4470.  
  4471. &:first-child::before {
  4472. content: '\2014 \0020';
  4473. }
  4474. }
  4475.  
  4476. .social-sharing {
  4477. display: flex;
  4478. .template-password & {
  4479. justify-content: center;
  4480. }
  4481. }
  4482.  
  4483. .btn--share {
  4484. background-color: transparent;
  4485. border-color: $color-border;
  4486. color: $color-text;
  4487. margin-right: 5px;
  4488. margin-bottom: 10px;
  4489.  
  4490. &:not([disabled]):hover,
  4491. &:focus {
  4492. background-color: transparent;
  4493. border-color: $color-btn-social-focus;
  4494. color: $color-text;
  4495. }
  4496.  
  4497. .icon {
  4498. vertical-align: middle;
  4499. width: 16px;
  4500. height: 16px;
  4501. margin-right: 4px;
  4502. }
  4503.  
  4504. .icon-facebook {
  4505. fill: $color-facebook;
  4506. }
  4507.  
  4508. .icon-twitter {
  4509. fill: $color-twitter;
  4510. }
  4511.  
  4512. .icon-pinterest {
  4513. fill: $color-pinterest;
  4514. }
  4515. }
  4516.  
  4517. .share-title {
  4518. display: inline-block;
  4519. vertical-align: middle;
  4520. }
  4521.  
  4522.  
  4523. .search-bar__form {
  4524. display: table;
  4525. width: 100%;
  4526. position: relative;
  4527. height: calc(46em / 16);
  4528. border: 1px solid transparent;
  4529. }
  4530.  
  4531. @include media-query($small) {
  4532. .search-bar__form {
  4533. width: 100%;
  4534. }
  4535. }
  4536.  
  4537. .search-bar__submit .icon {
  4538. position: relative;
  4539. top: -1px;
  4540. width: 1.2rem;
  4541. height: auto;
  4542. }
  4543.  
  4544. .search-bar__submit,
  4545. .search-header__submit {
  4546. display: inline-block;
  4547. vertical-align: middle;
  4548. position: absolute;
  4549. right: 0;
  4550. top: 0;
  4551. padding: 0 12px;
  4552. height: 100%;
  4553. z-index: 1;
  4554. }
  4555.  
  4556. .search-header__input,
  4557. .search-bar__input {
  4558. background-color: transparent;
  4559. border-radius: $border-radius;
  4560. color: $color-text;
  4561. border-color: transparent;
  4562. padding-right: calc(35em / 16);
  4563. width: 100%;
  4564. min-height: 44px;
  4565.  
  4566. &::-webkit-input-placeholder {
  4567. @include placeholder-text($color-text);
  4568. }
  4569.  
  4570. &::-moz-placeholder {
  4571. @include placeholder-text($color-text);
  4572. }
  4573.  
  4574. &:-ms-input-placeholder {
  4575. @include placeholder-text($color-text, 0);
  4576. }
  4577.  
  4578. &::-ms-input-placeholder {
  4579. @include placeholder-text($color-text, 1);
  4580. }
  4581. }
  4582.  
  4583. .search-bar__input {
  4584. border: 1px solid transparent;
  4585.  
  4586. &:focus {
  4587. border-color: transparent;
  4588. }
  4589. }
  4590.  
  4591. .search-bar__close {
  4592. padding: calc(10em / 16) .75em;
  4593.  
  4594. .icon {
  4595. vertical-align: top;
  4596. width: 1.2rem;
  4597. height: auto;
  4598. }
  4599. }
  4600.  
  4601. /*============================================================================
  4602. The search submit button has pointer-events: none which also
  4603. effects the :hover style. This forces the style to be applied.
  4604. ==============================================================================*/
  4605. .search-header__input:hover + .btn--link {
  4606. color: $color-text-focus;
  4607. }
  4608.  
  4609. /*================ Mobile Search Bar ================*/
  4610.  
  4611. .search-bar {
  4612. border-bottom: 1px solid $color-border;
  4613. padding: 0 ($gutter-site / 2);
  4614. z-index: 1000;
  4615. }
  4616.  
  4617. .search-bar__table {
  4618. display: table;
  4619. table-layout: fixed;
  4620. width: 100%;
  4621. height: 100%;
  4622. }
  4623.  
  4624. .search-bar__table-cell {
  4625. display: table-cell;
  4626. vertical-align: middle;
  4627. }
  4628.  
  4629. .search-bar__form-wrapper {
  4630. width: 90%;
  4631. }
  4632.  
  4633. /*================ Header Search ================*/
  4634. .search-header {
  4635. display: inline-block;
  4636. position: relative;
  4637. width: 100%;
  4638. max-width: calc(30em / 16);
  4639. vertical-align: middle;
  4640.  
  4641. &.search--focus {
  4642. max-width: 250px;
  4643. }
  4644. }
  4645.  
  4646. .search-header__input {
  4647. cursor: pointer;
  4648. }
  4649.  
  4650. .search--focus {
  4651. .search-header__input {
  4652. outline: none;
  4653. border-color: $color-border-form;
  4654. cursor: auto;
  4655. }
  4656.  
  4657. .search-header__submit {
  4658. pointer-events: auto;
  4659. }
  4660. }
  4661.  
  4662. .search-header__submit {
  4663. pointer-events: none;
  4664. }
  4665.  
  4666. .search-header,
  4667. .search-header__submit {
  4668. transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
  4669. }
  4670.  
  4671. .no-svg {
  4672. .site-header__search {
  4673. display: inline-block;
  4674. }
  4675.  
  4676. .search-header {
  4677. max-width: none;
  4678. }
  4679.  
  4680. .search__input {
  4681. width: auto;
  4682. padding-left: 60px;
  4683. }
  4684. }
  4685.  
  4686. $return-button-width: 55px;
  4687. $nav-button-padding: 15px;
  4688.  
  4689. /*================ Mobile Site Nav ================*/
  4690. .mobile-nav {
  4691. display: block;
  4692. @include transform(translate3d(0, 0, 0));
  4693. transition: $transition-drawer;
  4694.  
  4695. .sub-nav--is-open & {
  4696. @include transform(translate3d(-100%, 0, 0));
  4697. }
  4698.  
  4699. .third-nav--is-open & {
  4700. @include transform(translate3d(-200%, 0, 0));
  4701. }
  4702. }
  4703.  
  4704. .mobile-nav__link,
  4705. .mobile-nav__sublist-link {
  4706. display: block;
  4707. width: 100%;
  4708. padding: $nav-button-padding ($nav-button-padding * 2);
  4709. font-size: $font-size-mobile-input;
  4710. }
  4711.  
  4712. .mobile-nav__link {
  4713. position: relative;
  4714. }
  4715.  
  4716. .mobile-nav__label {
  4717. border-bottom: 1px solid transparent;
  4718.  
  4719. .mobile-nav__link--active & {
  4720. border-bottom-color: $color-text;
  4721. }
  4722. }
  4723.  
  4724. .mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  4725. padding-left: $return-button-width + $nav-button-padding;
  4726. padding-right: ($nav-button-padding * 2);
  4727. }
  4728.  
  4729. .mobile-nav__item {
  4730. display: block;
  4731. width: 100%;
  4732.  
  4733. .icon {
  4734. position: absolute;
  4735. top: 50%;
  4736. left: 50%;
  4737. height: 12px;
  4738. width: 10px;
  4739. margin: -6px 0 0 -5px;
  4740. }
  4741. }
  4742.  
  4743. .mobile-nav__return {
  4744. border-right: 1px solid $color-border;
  4745. }
  4746.  
  4747. .mobile-nav__return-btn {
  4748. position: relative;
  4749. padding: 24px 0;
  4750. width: $return-button-width;
  4751. }
  4752.  
  4753. .mobile-nav__icon {
  4754. position: absolute;
  4755. right: 0;
  4756. top: 0;
  4757. bottom: 0;
  4758. padding-left: $gutter-site-mobile;
  4759. padding-right: $gutter-site-mobile;
  4760. pointer-events: none;
  4761. overflow: hidden;
  4762. }
  4763.  
  4764. .mobile-nav__table {
  4765. display: table;
  4766. width: 100%;
  4767. }
  4768.  
  4769. .mobile-nav__table-cell {
  4770. display: table-cell;
  4771. vertical-align: middle;
  4772. width: 1%;
  4773. text-align: left;
  4774. white-space: normal;
  4775. }
  4776.  
  4777. .mobile-nav__toggle-button {
  4778. padding: 20px 15px;
  4779. }
  4780.  
  4781. .mobile-nav__dropdown {
  4782. position: absolute;
  4783. background-color: $color-body;
  4784. z-index: $z-index-sub-nav;
  4785. width: 100%;
  4786. top: 0;
  4787. right: -100%;
  4788. display: none;
  4789.  
  4790. .is-active + & {
  4791. display: block;
  4792. opacity: 1;
  4793. }
  4794.  
  4795. // Need the transition so `prepareTransition` removes class
  4796. &.is-closing {
  4797. transition: $transition-drawer;
  4798. opacity: 0.99;
  4799. }
  4800.  
  4801. .mobile-nav__sublist-header {
  4802. font-family: $font-stack-header;
  4803. font-style: $font-style-header;
  4804. font-weight: $font-weight-header;
  4805. display: table-cell;
  4806. vertical-align: middle;
  4807. padding-left: $nav-button-padding;
  4808. }
  4809.  
  4810. .mobile-nav__sublist-header--main-nav-parent {
  4811. color: $color-body-text;
  4812. }
  4813. }
  4814.  
  4815. /*================ Mobile nav wrapper ================*/
  4816. .mobile-nav-wrapper {
  4817. @include transform(translateY(-100%));
  4818. position: absolute;
  4819. top: 0;
  4820. left: 0;
  4821. background-color: $color-body;
  4822. transition: $transition-drawer;
  4823. display: none;
  4824. overflow: hidden;
  4825. width: 100%;
  4826.  
  4827. &::after {
  4828. content: '';
  4829. position: absolute;
  4830. bottom: 0;
  4831. left: 0;
  4832. right: 0;
  4833. border-bottom: 1px solid $color-border;
  4834. }
  4835.  
  4836. &.js-menu--is-open {
  4837. display: block;
  4838. }
  4839. }
  4840.  
  4841. .mobile-nav--open {
  4842. .icon-close {
  4843. display: none;
  4844. }
  4845. }
  4846.  
  4847. .mobile-nav--close {
  4848. .icon-hamburger {
  4849. display: none;
  4850. }
  4851. }
  4852.  
  4853. .site-header__mobile-nav {
  4854. z-index: 999;
  4855. position: relative;
  4856. background-color: $color-body;
  4857.  
  4858. @include media-query($small) {
  4859. @include display-flexbox();
  4860. @include align-items(center);
  4861. }
  4862. }
  4863.  
  4864. /*================ Modals ================*/
  4865. .modal {
  4866. @include transform(translateY(-20px));
  4867. background-color: $color-bg;
  4868. bottom: 0;
  4869. color: $color-text;
  4870. display: none;
  4871. left: 0;
  4872. opacity: 0;
  4873. overflow: hidden;
  4874. position: fixed;
  4875. right: 0;
  4876. top: 0;
  4877. }
  4878.  
  4879. .modal--is-active {
  4880. @include transform(translateY(0));
  4881. display: block;
  4882. opacity: 1;
  4883. overflow: hidden;
  4884. }
  4885.  
  4886. .modal__inner {
  4887. @include prefix(transform-style, preserve-3d, moz webkit spec);
  4888. height: 100%;
  4889. }
  4890.  
  4891. .modal__centered {
  4892. @include transform(translateY(-50%));
  4893. position: relative;
  4894. top: 50%;
  4895.  
  4896. .no-csstransforms & {
  4897. top: 20%;
  4898. }
  4899. }
  4900.  
  4901. .modal__close {
  4902. border: 0;
  4903. padding: $gutter-site;
  4904. position: fixed;
  4905. top: 0;
  4906. right: 0;
  4907. z-index: 2;
  4908.  
  4909. .icon {
  4910. font-size: em(20);
  4911. }
  4912. }
  4913.  
  4914. /*============================================================================
  4915. Hero slider
  4916.  
  4917. Extends default slick slider styles.
  4918. Extra specificity in selectors is used to override defaults.
  4919. ==============================================================================*/
  4920. $slideshow-height-small: 475px;
  4921. $slideshow-height-medium: 650px;
  4922. $slideshow-height-large: 775px;
  4923. $slideshow-control-size: 44px;
  4924. $slideshow-dot-size: 9px;
  4925. $slideshow-loader: #fff;
  4926. $z-index-slideshow-image: 1;
  4927. $z-index-slideshow-text: 2;
  4928. $z-index-slideshow-controls: 3;
  4929. $color-slideshow-controls: #fff;
  4930. $color-slideshow-controls-background: #000;
  4931. $color-slideshow-close-bg: #fff;
  4932. $color-slideshow-close-text: #000;
  4933.  
  4934. $ease-transition: cubic-bezier(0.44, 0.13, 0.48, 0.87);
  4935. $transition-text-slideshow: 0.6s $ease-transition;
  4936. $transition-image-slideshow: opacity 0.8s $ease-transition;
  4937. $transition-controls-slideshow: color 0.2s $ease-transition, background-color 0.2s $ease-transition;
  4938.  
  4939. .slideshow-wrapper {
  4940. position: relative;
  4941. }
  4942.  
  4943. .slideshow {
  4944. position: unset;
  4945. overflow: hidden;
  4946. margin-bottom: 0;
  4947. max-height: 80vh;
  4948. transition: height 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  4949.  
  4950. @include media-query($medium-up) {
  4951. position: relative;
  4952. max-height: 100vh;
  4953. }
  4954.  
  4955. // Make sure slides fill full height
  4956. .slideshow__slide,
  4957. .slick-list,
  4958. .slick-track {
  4959. height: 100%;
  4960. }
  4961.  
  4962. .slick-prev,
  4963. .slick-next {
  4964. top: 0;
  4965. height: 100%;
  4966. margin-top: 0;
  4967. width: 40px;
  4968. }
  4969.  
  4970. .slick-prev {
  4971. left: 0;
  4972. }
  4973.  
  4974. .slick-next {
  4975. right: 0;
  4976. }
  4977. }
  4978.  
  4979. .slideshow--display-controls .slick-dots {
  4980. @include media-query($medium-up) {
  4981. left: calc(50% - 22px);
  4982. }
  4983. }
  4984.  
  4985. .slideshow--small {
  4986. height: $slideshow-height-small - 300;
  4987.  
  4988. @include media-query($medium-up) {
  4989. height: $slideshow-height-small;
  4990. }
  4991. }
  4992.  
  4993. .slideshow--medium {
  4994. height: $slideshow-height-medium - 380;
  4995.  
  4996. @include media-query($medium-up) {
  4997. height: $slideshow-height-medium;
  4998. }
  4999. }
  5000.  
  5001. .slideshow--large {
  5002. height: $slideshow-height-large - 400;
  5003.  
  5004. @include media-query($medium-up) {
  5005. height: $slideshow-height-large;
  5006. }
  5007. }
  5008.  
  5009. /*================ General slide styles ================*/
  5010. .slideshow__slide {
  5011. position: relative;
  5012. overflow: hidden;
  5013. }
  5014.  
  5015. .slideshow__link {
  5016. display: block;
  5017. position: absolute;
  5018. top: 0;
  5019. left: 0;
  5020. right: 0;
  5021. bottom: 0;
  5022.  
  5023. &:active,
  5024. &:focus {
  5025. opacity: 1;
  5026. }
  5027. }
  5028.  
  5029. .slideshow__overlay {
  5030. @include media-query($medium-up) {
  5031. @include overlay($z-index-slideshow-text);
  5032. }
  5033. }
  5034.  
  5035. /*================ Slide images ================*/
  5036. .slideshow__image {
  5037. transition: $transition-image-slideshow;
  5038. position: absolute;
  5039. top: 0;
  5040. left: 0;
  5041. opacity: 0;
  5042. height: 100%;
  5043. width: 100%;
  5044. background-repeat: no-repeat;
  5045. background-size: cover;
  5046. background-position: center center;
  5047. background-color: transparent;
  5048. z-index: $z-index-slideshow-image;
  5049.  
  5050. .slick-initialized &,
  5051. .no-js & {
  5052. opacity: 1;
  5053. }
  5054. }
  5055.  
  5056. /*================ Slide text ================*/
  5057. .slideshow__text-wrap {
  5058. height: 100%;
  5059. position: relative;
  5060.  
  5061. .slideshow__link & {
  5062. cursor: inherit;
  5063. }
  5064. }
  5065.  
  5066. .slideshow__text-wrap--mobile {
  5067. display: none;
  5068.  
  5069. @include media-query($small) {
  5070. display: block;
  5071. position: relative;
  5072. top: -1.1rem;
  5073. background-color: $color-bg;
  5074. width: 85%;
  5075. margin: 0 0 -1.1rem 7.5%;
  5076. }
  5077. }
  5078.  
  5079. .slideshow__text-content {
  5080. @include media-query($medium-up) {
  5081. transition: $transition-text-slideshow;
  5082. transition-delay: 0.3s;
  5083. }
  5084.  
  5085. .slideshow__text-wrap--desktop & {
  5086. position: absolute;
  5087. width: 100%;
  5088. top: 50%;
  5089. opacity: 0;
  5090. z-index: $z-index-slideshow-text;
  5091. }
  5092.  
  5093. @include media-query($medium-up) {
  5094. &.slideshow__text-content--vertical-top {
  5095. top: 120px;
  5096. }
  5097. &.slideshow__text-content--vertical-bottom {
  5098. top: auto;
  5099. bottom: 40px;
  5100. }
  5101. }
  5102.  
  5103. .slick-initialized .slick-active &,
  5104. .no-js & {
  5105. @include transform(translateY(-40px));
  5106. opacity: 1;
  5107. }
  5108.  
  5109. .slick-initialized .slick-active &.slideshow__text-content--vertical-center,
  5110. .no-js &.slideshow__text-content--vertical-center {
  5111. @include transform(translateY(-50%));
  5112. }
  5113.  
  5114. &::after {
  5115. content: '';
  5116. @include spinner(40px, $slideshow-loader);
  5117. @include animation(spin 0.65s infinite linear);
  5118. opacity: 1;
  5119. transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
  5120. bottom: -$gutter-site;
  5121. left: 50%;
  5122.  
  5123. @include media-query($small) {
  5124. content: none;
  5125. }
  5126. }
  5127.  
  5128. .slick-initialized &,
  5129. .no-js & {
  5130. &::after {
  5131. opacity: 0;
  5132. visibility: hidden;
  5133. content: none;
  5134. }
  5135. }
  5136. }
  5137.  
  5138. .slideshow__text-content--mobile {
  5139. display: none;
  5140. padding-top: 2.6rem;
  5141.  
  5142. .slideshow__arrows--mobile ~ & {
  5143. padding-top: 1.7rem;
  5144. @include media-query($medium-up) {
  5145. padding-top: 0;
  5146. }
  5147. }
  5148.  
  5149. @include media-query($medium-up) {
  5150. padding-top: 0;
  5151.  
  5152. &::after {
  5153. display: none;
  5154. }
  5155. }
  5156. }
  5157.  
  5158. .slideshow__title,
  5159. .slideshow__subtitle {
  5160. color: $color-overlay-title-text;
  5161.  
  5162. @include media-query($small) {
  5163. display: none;
  5164. }
  5165. }
  5166.  
  5167. .slideshow__title--mobile {
  5168. margin-bottom: 0;
  5169.  
  5170. & ~ .slideshow__subtitle--mobile {
  5171. margin-top: 0.5rem;
  5172. }
  5173. }
  5174.  
  5175. .slideshow__subtitle--mobile,
  5176. .slideshow__title--mobile {
  5177. display: none;
  5178. color: $color-text;
  5179.  
  5180. @include media-query($small) {
  5181. display: block;
  5182. }
  5183. }
  5184.  
  5185. .slideshow__btn-wrapper {
  5186. border: none;
  5187. background-color: transparent;
  5188. }
  5189.  
  5190. .slideshow__btn-wrapper--push {
  5191. @include media-query($medium-up) {
  5192. margin-top: $grid-gutter;
  5193. }
  5194. }
  5195.  
  5196. .slideshow__btn {
  5197. max-width: 100%;
  5198. display: inline-block;
  5199. word-wrap: break-word;
  5200. background-color: $color-btn-primary;
  5201. color: $color-btn-primary-text;
  5202. min-height: 3.125rem;
  5203. line-height: 2.2;
  5204.  
  5205. @include media-query($small) {
  5206. display: none;
  5207. }
  5208. }
  5209.  
  5210. .slideshow__btn--mobile {
  5211. display: none;
  5212. margin: 1.3rem auto 0;
  5213.  
  5214. @include media-query($small) {
  5215. display: inline-block;
  5216. margin: 2rem auto 0.3rem;
  5217. }
  5218. }
  5219.  
  5220. /*================ Slideshow control styles ================*/
  5221.  
  5222. .slideshow__controls {
  5223. display: none;
  5224. justify-content: center;
  5225. position: absolute;
  5226. top: 0px;
  5227. right: 0px;
  5228. margin-bottom: 5px;
  5229.  
  5230. @include media-query($medium-up) {
  5231. top: auto;
  5232. bottom: 0;
  5233. left: 0;
  5234. }
  5235.  
  5236. .slick-initialized + & {
  5237. display: flex;
  5238. }
  5239. }
  5240.  
  5241. .slideshow__arrows {
  5242. height: $slideshow-control-size;
  5243. padding: 5px;
  5244. background-clip: content-box;
  5245. background-color: rgba($color-slideshow-controls-background, 0.4);
  5246. color: rgba($color-slideshow-controls, 0.5);
  5247. transition: $transition-controls-slideshow;
  5248. display: none;
  5249.  
  5250. @include media-query($medium-up) {
  5251. display: flex;
  5252. }
  5253.  
  5254. .slideshow__controls:hover &,
  5255. .slideshow__controls:focus &,
  5256. .slideshow__controls--hover & {
  5257. @include media-query($medium-up) {
  5258. background-color: rgba($color-slideshow-controls-background, 0.75);
  5259. }
  5260. }
  5261.  
  5262. .slideshow__arrow {
  5263. height: $slideshow-control-size;
  5264. width: $slideshow-control-size;
  5265. position: relative;
  5266. top: -5px;
  5267. padding: 0 0.9rem;
  5268. cursor: pointer;
  5269. transition: $transition-controls-slideshow;
  5270. background-color: transparent;
  5271. color: rgba($color-slideshow-controls, 0.5);
  5272. border: none;
  5273.  
  5274. .icon {
  5275. width: 0.7rem;
  5276. height: 0.7rem;
  5277. transition: $transition-controls-slideshow;
  5278.  
  5279. &:hover {
  5280. color: $color-slideshow-controls;
  5281. }
  5282. }
  5283. }
  5284. .slideshow__arrow-left {
  5285. float: left;
  5286. @include media-query($medium-up) {
  5287. order: -1;
  5288. }
  5289. }
  5290. .slideshow__arrow-right {
  5291. float: right;
  5292. @include media-query($medium-up) {
  5293. order: 1;
  5294. }
  5295. }
  5296.  
  5297. .slick-dots {
  5298. line-height: $slideshow-control-size - 10;
  5299.  
  5300. li {
  5301. width: $slideshow-dot-size;
  5302. height: $slideshow-dot-size;
  5303. margin-left: $slideshow-dot-size;
  5304. }
  5305. // sass-lint:disable SelectorDepth
  5306. li button::before,
  5307. li a::before {
  5308. width: $slideshow-dot-size - 1;
  5309. height: $slideshow-dot-size - 1;
  5310. color: rgba($color-slideshow-controls-background, 0.5);
  5311. border: none;
  5312. opacity: 1;
  5313.  
  5314. @include media-query($medium-up) {
  5315. width: $slideshow-dot-size;
  5316. height: $slideshow-dot-size;
  5317. color: rgba($color-slideshow-controls, 0.5);
  5318. }
  5319. }
  5320. li.slick-active-mobile button::before,
  5321. li.slick-active-mobile a::before {
  5322. color: $color-slideshow-controls-background;
  5323. }
  5324. li.slick-active button::before,
  5325. li.slick-active a::before {
  5326. color: $color-slideshow-controls;
  5327. }
  5328. }
  5329. }
  5330.  
  5331. .slideshow__arrows--mobile {
  5332. display: block;
  5333. width: 100%;
  5334. height: $slideshow-control-size;
  5335. background-color: transparent;
  5336. .icon {
  5337. fill: rgba($color-slideshow-controls-background, 0.5);
  5338. }
  5339. .slideshow__arrow:focus .icon {
  5340. fill: $color-slideshow-controls-background;
  5341. }
  5342.  
  5343. @include media-query($medium-up) {
  5344. display: none;
  5345. }
  5346. }
  5347.  
  5348. .slideshow__pause {
  5349. clip: auto;
  5350. width: $slideshow-control-size;
  5351. height: $slideshow-control-size;
  5352. margin-left: 1px;
  5353. padding: 5px;
  5354. background-clip: content-box;
  5355. z-index: $z-index-skip-to-content;
  5356. border: none;
  5357. background-color: rgba($color-slideshow-controls-background, 0.4);
  5358. transition: $transition-controls-slideshow;
  5359.  
  5360. .slideshow__controls:hover &,
  5361. .slideshow__controls:focus &,
  5362. .slideshow__controls--hover &{
  5363. @include media-query($medium-up) {
  5364. background-color: rgba($color-slideshow-controls-background, 0.75);
  5365. }
  5366. }
  5367.  
  5368. .icon {
  5369. color: rgba($color-slideshow-controls, 0.5);
  5370. transition: $transition-controls-slideshow;
  5371.  
  5372. &:hover {
  5373. color: $color-slideshow-controls;
  5374. }
  5375. }
  5376.  
  5377. .icon {
  5378. width: 0.65rem;
  5379. height: 0.65rem;
  5380. }
  5381. }
  5382.  
  5383. .slideshow__pause-stop {
  5384. display: block;
  5385.  
  5386. .is-paused & {
  5387. display: none;
  5388. }
  5389. }
  5390.  
  5391. .slideshow__pause-rotate {
  5392. display: none;
  5393.  
  5394. .is-paused & {
  5395. display: block;
  5396. }
  5397. }
  5398.  
  5399. .price {
  5400. @include display-flexbox;
  5401. @include flex-wrap(wrap);
  5402. margin-top: 0;
  5403. margin-bottom: 0;
  5404.  
  5405. @include media-query($small) {
  5406. font-size: em($font-size-base - 1);
  5407. }
  5408.  
  5409. dl {
  5410. margin-top: 0;
  5411. }
  5412. dd {
  5413. margin: 0 0.5em 0 0;
  5414. }
  5415. }
  5416.  
  5417. .price--unavailable {
  5418. visibility: hidden;
  5419. }
  5420.  
  5421. .price__regular {
  5422. color: $color-body-text;
  5423. }
  5424.  
  5425. .price__sale {
  5426. color: $color-sale-text;
  5427. display: none;
  5428.  
  5429. .price--on-sale & {
  5430. display: block;
  5431. }
  5432. }
  5433.  
  5434. .price__vendor {
  5435. color: $color-body-text;
  5436. font-size: 0.9em;
  5437. font-weight: $font-weight-body;
  5438. text-transform: uppercase;
  5439. letter-spacing: 1px;
  5440. margin: 5px 0 10px;
  5441. width: 100%;
  5442. @include flex-basis(100%);
  5443. }
  5444.  
  5445. .price-item {
  5446. font-weight: $font-weight-header;
  5447. }
  5448.  
  5449. .price-item--regular {
  5450. .price--on-sale & {
  5451. text-decoration: line-through;
  5452. }
  5453. }
  5454.  
  5455. .price-item__label {
  5456. display: inline-block;
  5457. white-space: nowrap;
  5458. font-weight: $font-weight-header;
  5459. }
  5460.  
  5461. /*================ Module | Filters and Sort toolbar and selection ================*/
  5462. $toolbar-height: 55px;
  5463. $toolbar-height-small: 46px;
  5464.  
  5465. .filters-toolbar-wrapper {
  5466. border-bottom: 1px solid $color-border;
  5467. border-top: 1px solid $color-border;
  5468. margin-bottom: $gutter-site-mobile;
  5469.  
  5470. @include media-query($medium-up) {
  5471. margin-bottom: $section-spacing;
  5472. }
  5473. }
  5474.  
  5475. .filters-toolbar {
  5476. @include display-flexbox();
  5477. @include align-items(center);
  5478. @include flex-wrap(wrap);
  5479.  
  5480. .icon-chevron-down {
  5481. fill: $color-text-field-text;
  5482. width: calc(10em / 16);
  5483. height: calc(10em / 16);
  5484. right: 8px;
  5485. }
  5486. }
  5487.  
  5488. .filters-toolbar--has-filter {
  5489. position: relative;
  5490.  
  5491. @include media-query($small) {
  5492. border-bottom: none;
  5493.  
  5494. .filters-toolbar__item-child {
  5495. flex-basis: 50%;
  5496. }
  5497.  
  5498. .filters-toolbar__item-wrapper {
  5499. @include flex-basis(100%);
  5500. }
  5501.  
  5502. .filters-toolbar__item--count {
  5503. @include flex-basis(100%);
  5504. text-align: left;
  5505.  
  5506. &:before {
  5507. background-color: $color-border;
  5508. content: "";
  5509. height: 1px;
  5510. left: 0;
  5511. position: absolute;
  5512. top: auto;
  5513. width: 100%;
  5514. }
  5515. }
  5516. }
  5517. }
  5518.  
  5519. .filters-toolbar__item {
  5520. min-width: 33%;
  5521. @include flex(1 1 33%);
  5522.  
  5523. .no-flexbox & {
  5524. // sass-lint:disable no-important
  5525. text-align: left !important;
  5526. }
  5527.  
  5528. &:first-child {
  5529. .filters-toolbar__input {
  5530. @include media-query($small) {
  5531. padding-left: 0;
  5532. }
  5533. }
  5534. }
  5535. }
  5536.  
  5537. .filters-toolbar__item-child {
  5538. @include media-query($small) {
  5539. flex-grow: 0;
  5540. }
  5541.  
  5542. &:first-child {
  5543. @include media-query($small) {
  5544. margin-right: 2.5rem;
  5545. }
  5546.  
  5547. @include media-query($medium-up) {
  5548. margin-right: 3rem;
  5549. }
  5550. }
  5551.  
  5552. .filters-toolbar__input {
  5553. @include media-query($small) {
  5554. padding-left: 0;
  5555. padding-right: 25px;
  5556. width: 100%;
  5557. }
  5558. }
  5559. }
  5560.  
  5561. .filters-toolbar__item-wrapper {
  5562. @include display-flexbox();
  5563. @include flex(1 1 33%);
  5564.  
  5565. @include media-query($small) {
  5566. @include justify-content(space-between);
  5567. }
  5568. }
  5569.  
  5570. .filters-toolbar__item--count {
  5571. min-width: 0;
  5572. @include flex(0 1 auto);
  5573. text-align: center;
  5574.  
  5575. @include media-query($small) {
  5576. @include flex(0 1 50%);
  5577. text-align: right;
  5578. }
  5579. }
  5580.  
  5581. .no-flexbox .filters-toolbar select {
  5582. // sass-lint:disable no-important
  5583. width: 100% !important; // override inline styles
  5584. }
  5585.  
  5586. .filters-toolbar__label {
  5587. display: inline-block;
  5588.  
  5589. @include media-query($small) {
  5590. display: block;
  5591. margin-bottom: 0;
  5592. margin-top: 8px;
  5593. }
  5594. }
  5595.  
  5596. .filters-toolbar__input-wrapper {
  5597. display: inline-block;
  5598. }
  5599.  
  5600. .filters-toolbar__input {
  5601. border: 0 solid transparent;
  5602. overflow: hidden;
  5603. text-overflow: ellipsis;
  5604. white-space: nowrap;
  5605. max-width: 100%;
  5606. height: $toolbar-height;
  5607. opacity: 1;
  5608. position: relative;
  5609.  
  5610. .filters-toolbar__item:first-child & {
  5611. padding-left: 0;
  5612. }
  5613.  
  5614. .no-flexbox & {
  5615. margin: 0;
  5616. }
  5617.  
  5618. @include media-query($small) {
  5619. height: $toolbar-height-small;
  5620. }
  5621.  
  5622. &.hidden {
  5623. opacity: 0;
  5624. }
  5625.  
  5626. option {
  5627. text-overflow: ellipsis;
  5628. overflow: hidden;
  5629. }
  5630. }
  5631.  
  5632. .filters-toolbar__product-count {
  5633. font-size: em($font-size-base - 1px);
  5634. font-style: italic;
  5635. line-height: $toolbar-height;
  5636. margin-bottom: 0;
  5637. overflow: hidden;
  5638. text-overflow: ellipsis;
  5639. white-space: nowrap;
  5640.  
  5641. @include media-query($small) {
  5642. font-size: em($font-size-base - 2px);
  5643. line-height: $toolbar-height-small;
  5644. }
  5645. }
  5646.  
  5647. .site-footer {
  5648. margin-top: $section-spacing;
  5649. padding: $footer-spacing-large 0 $section-spacing 0;
  5650.  
  5651. @include media-query($medium-up) {
  5652. padding-bottom: $section-spacing-small;
  5653. }
  5654.  
  5655. h4 {
  5656. margin-bottom: $footer-spacing-medium / 2;
  5657. @include media-query($medium-up) {
  5658. min-height: em(ceil($font-size-header * 0.7));
  5659. margin-bottom: $footer-spacing-medium;
  5660. }
  5661. }
  5662. }
  5663.  
  5664. .site-footer__content {
  5665. @include display-flexbox;
  5666. @include align-items(flex-start);
  5667. @include flex-wrap(wrap);
  5668.  
  5669. @include media-query($small) {
  5670. padding: 0 $footer-wrapper-spacing;
  5671. }
  5672.  
  5673. @include media-query($medium-up) {
  5674. @include flex-wrap(nowrap);
  5675. }
  5676. }
  5677.  
  5678. .site-footer__item {
  5679. @include display-flexbox;
  5680. @include flex(1 1 100%);
  5681. margin-bottom: $section-spacing;
  5682.  
  5683. @include media-query($medium-up) {
  5684. padding: 0 $footer-spacing-small 0 $footer-spacing-small;
  5685. margin-bottom: $footer-spacing-large;
  5686. }
  5687.  
  5688. &:first-of-type {
  5689. padding-left: 0;
  5690. }
  5691.  
  5692. &:last-of-type {
  5693. padding-right: 0;
  5694. @include media-query($small) {
  5695. margin-bottom: 0;
  5696. }
  5697. }
  5698. }
  5699.  
  5700. @include media-query($medium-up) {
  5701. .site-footer__item--full-width {
  5702. @include flex(1 1 100%);
  5703. }
  5704.  
  5705. .site-footer__item--one-half {
  5706. @include flex(1 1 50%);
  5707. }
  5708.  
  5709. .site-footer__item--one-third {
  5710. @include flex(1 1 33%);
  5711. }
  5712.  
  5713. .site-footer__item--one-quarter {
  5714. @include flex(1 1 25%);
  5715. }
  5716.  
  5717. .site-footer__item--one-fifth {
  5718. @include flex(1 1 20%);
  5719. }
  5720.  
  5721. .site-footer-newsletter__one-half {
  5722. @include flex(1 1 50%);
  5723. }
  5724. }
  5725.  
  5726. .site-footer__item--center {
  5727. @include media-query($medium-up) {
  5728. @include justify-content(center);
  5729. & > * {
  5730. text-align: center;
  5731. }
  5732. }
  5733. }
  5734.  
  5735. .site-footer__item-inner--newsletter {
  5736. width: 100%;
  5737.  
  5738. .newsletter__submit {
  5739. margin-top: $footer-spacing-extra-small;
  5740. }
  5741.  
  5742. .newsletter__input {
  5743. margin: $footer-spacing-extra-small 0 0 0;
  5744. width: 100%;
  5745. }
  5746.  
  5747. .site-footer__item--full-width & {
  5748. @include media-query($medium-up) {
  5749. max-width: 50%;
  5750. }
  5751. }
  5752. }
  5753.  
  5754. .site-footer__centered--single-block {
  5755. @include media-query($medium-up) {
  5756. width: 75%;
  5757. margin: 0 auto;
  5758. }
  5759. }
  5760.  
  5761. .site-footer__hr {
  5762. margin: $section-spacing 0 $grid-gutter 0;
  5763. @include media-query($medium-up) {
  5764. margin: $footer-spacing-large 0 $footer-hr-bottom-spacing 0;
  5765.  
  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: 0.8;
  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. /*================ Request Button Fix ================*/
  7066.  
  7067. #infiniteoptions-container{
  7068. width: 100%;
  7069. margin: 0px 5px;
  7070. }
  7071.  
  7072. #infiniteoptions-container div,
  7073. #infiniteoptions-container input[type="text"],
  7074. #infiniteoptions-container input[type="number"],
  7075. #infiniteoptions-container select,
  7076. #infiniteoptions-container textarea{
  7077. display: block;
  7078. width: 100%;
  7079. padding-bottom: 10px;
  7080. }
  7081.  
  7082. #infiniteoptions-container input[type="checkbox"],
  7083. #infiniteoptions-container input[type="radio"] {
  7084. margin-right: 5px;
  7085. }
  7086.  
  7087. #infiniteoptions-container fieldset {
  7088. padding: 0;
  7089. border: 0;
  7090. margin: 0 !important;
  7091. }
  7092.  
  7093. #infiniteoptions-container label {
  7094. display: block;
  7095. }
  7096.  
  7097. /*================ Footer/Header Changes ================*/
  7098.  
  7099. #shopify-section-footer.shopify-section .site-footer {
  7100. background-color: #000000;
  7101. }
  7102.  
  7103. header.site-header.border-bottom.logo--left{
  7104. background-color: #000000;
  7105. }
  7106.  
  7107. .site-header__mobile-nav {
  7108. background-color: #000000 !important;
  7109. }
  7110.  
  7111.  
  7112. #shopify-section-footer.shopify-section .site-footer {color: #fff;}
  7113.  
  7114.  
  7115. #shopify-section-footer.shopify-section .site-footer a {color: #fff;}
  7116.  
  7117.  
  7118. #shopify-section-footer.shopify-section .site-footer .input-group__btn .btn {background-color: #fff;}
  7119.  
  7120. /* Added by Alexander L (Theme Support) on April 5, 2019
  7121. hr.site-footer__hr {
  7122. display: none;
  7123. }
  7124. .site-footer {
  7125. padding: 0px 50x;
  7126. @include media-query($medium-up) {
  7127. padding-top: 40px;
  7128. padding-bottom: 0px;
  7129. }
  7130. }
  7131.  
  7132. */
  7133.  
  7134. .site-header__icons .btn--link,
  7135. a.site-header__icon.site-header__account,
  7136. a.site-header__icon.site-header__cart,
  7137. .site-nav a
  7138. {
  7139. color: #fff;
  7140. background-color: #000;
  7141.  
  7142. }
  7143.  
  7144. button.btn--link.site-header__icon.site-header__search-toggle.js-drawer-open-top {
  7145. display: none;
  7146. }
  7147.  
  7148. .main-content {
  7149. min-height: calc(90vh - 96px);
  7150. }
  7151.  
  7152. /* Added by Simon H | Theme Support on April 15 2019 */
  7153. a.site-header__icon:hover {
  7154. color: #404040;
  7155. }
  7156.  
  7157. /* Added by Simon H | Theme Support on April 22 2019 */
  7158. .site-header__icon .custom-icon {
  7159. height: 23px;
  7160. width: 22px;
  7161. position: relative;
  7162. top: 5px;
  7163. max-width: unset;
  7164. }
  7165.  
  7166. .site-header__icon .custom-icon:hover {
  7167. filter: opacity(.4);
  7168. }
  7169.  
  7170. // Added by Anna P @shopify on May 17, 2019
  7171. footer.site-footer {
  7172. padding: 17px 100px 17px 100px;
  7173. @include media-query($small) {
  7174. padding: 57px 20px 17px 20px;
  7175. }
  7176. }
  7177. footer.site-footer > .page-width {
  7178. padding-left: 0;
  7179. padding-right: 0;
  7180. }
  7181. .grid__item.one-whole.footer-custom {
  7182. display: flex;
  7183. justify-content: space-between;
  7184. font-weight: 400;
  7185. align-items: center;
  7186.  
  7187. @include media-query($small) {
  7188. margin-bottom: 32px;
  7189. }
  7190. }
  7191. //End
Add Comment
Please, Sign In to add comment