Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 88.15 KB | None | 0 0
  1. /*============================================================================
  2. Brooklyn by Shopify
  3. ==============================================================================*/
  4.  
  5. /*================ Variables, theme settings, and Sass mixins from Timber ================*/
  6. /*============================================================================
  7. #Sass Mixins
  8. ==============================================================================*/
  9.  
  10. .jdgm-widget.jdgm-carousel {
  11. width: calc(100% - 81px) !important;
  12. margin: 0 auto !important;
  13. }
  14.  
  15. .jdgm-carousel__left-arrow {
  16. float: left;
  17. margin-left: -20px !important;
  18. margin-top: -250px !important;
  19. }
  20.  
  21.  
  22. .jdgm-carousel__right-arrow {
  23. float: right;
  24. margin-right: -20px !important;
  25. margin-top: -250px !important;
  26. }
  27.  
  28. .jdgm-carousel__arrows {
  29. margin: 0 !important;
  30. }
  31.  
  32. .jdgm-carousel__right-arrow, .jdgm-carousel__left-arrow {
  33. border-color: #0E374D !important;
  34. }
  35.  
  36. .jdgm-carousel__right-arrow {
  37. float: right;
  38. margin-right: -20px !important;
  39. margin-top: -250px !important;
  40. }
  41.  
  42. .jdgm-carousel__arrows {
  43. margin: 0 !important;
  44. }
  45.  
  46. .jdgm-carousel__item-container {
  47. border-right:none !important;
  48. border-left:1px solid #e5e5e5 !important;
  49. border-top: 1px solid #e5e5e5 !important;
  50. border-bottom: 1px solid #e5e5e5 !important;
  51. }
  52.  
  53. .jdgm-carousel-item {
  54. padding: 10px !important;
  55. border-right: 1px solid #e5e5e5 !important;
  56. }
  57.  
  58. .jdgm-carousel__item-wrapper.jdgm-carousel__item-wrapper {
  59. font-size: 16px;
  60. line-height: 1.4;
  61. height: 250px;
  62. }
  63.  
  64. .jdgm-carousel-item__product-image {
  65. display: none !important;
  66. }
  67.  
  68. .jdgm-carousel__item-wrapper {
  69. height: 300px !important;
  70. }
  71.  
  72. .jdgm-carousel-item__review {
  73. height: calc(100% - 4em) !important;
  74. }
  75. .jdgm-carousel__item-wrapper {
  76. height: 280px;
  77. }
  78. .jdgm-carousel-wrapper .jdgm-star {
  79. color: #0E374D;
  80. }
  81. .jdgm-carousel-item__timestamp { display: none !important; }
  82. .clearfix {
  83. &:after {
  84. content: '';
  85. display: table;
  86. clear: both;
  87. }
  88. }
  89.  
  90. @mixin clearfix() {
  91. &:after {
  92. content: '';
  93. display: table;
  94. clear: both;
  95. }
  96. }
  97.  
  98. @mixin prefix($property, $value) {
  99. -webkit-#{$property}: #{$value};
  100. -moz-#{$property}: #{$value};
  101. -ms-#{$property}: #{$value};
  102. -o-#{$property}: #{$value};
  103. #{$property}: #{$value};
  104. }
  105.  
  106. /*============================================================================
  107. Prefix mixin for generating vendor prefixes.
  108. Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
  109. Usage:
  110. // Input:
  111. .element {
  112. @include prefix(transform, scale(1), ms webkit spec);
  113. }
  114. // Output:
  115. .element {
  116. -ms-transform: scale(1);
  117. -webkit-transform: scale(1);
  118. transform: scale(1);
  119. }
  120. ==============================================================================*/
  121. @mixin prefixFlex($property, $value, $prefixes) {
  122. @each $prefix in $prefixes {
  123. @if $prefix == webkit {
  124. -webkit-#{$property}: $value;
  125. } @else if $prefix == moz {
  126. -moz-#{$property}: $value;
  127. } @else if $prefix == ms {
  128. -ms-#{$property}: $value;
  129. } @else if $prefix == o {
  130. -o-#{$property}: $value;
  131. } @else if $prefix == spec {
  132. #{$property}: $value;
  133. } @else {
  134. @warn 'Unrecognized prefix: #{$prefix}';
  135. }
  136. }
  137. }
  138.  
  139. @mixin keyframes($name) {
  140. @-webkit-keyframes #{$name} {
  141. @content;
  142. }
  143. @-moz-keyframes #{$name} {
  144. @content;
  145. }
  146. @-ms-keyframes #{$name} {
  147. @content;
  148. }
  149. @keyframes #{$name} {
  150. @content;
  151. }
  152. }
  153.  
  154. @mixin transition($transition: 0.1s all) {
  155. @include prefix('transition', #{$transition});
  156. }
  157.  
  158. @mixin transform($transform: 0.1s all) {
  159. @include prefix('transform', #{$transform});
  160. }
  161.  
  162. @mixin animation($animation) {
  163. -webkit-animation: $animation;
  164. -moz-animation: $animation;
  165. -o-animation: $animation;
  166. animation: $animation;
  167. }
  168.  
  169. @mixin gradient($from, $to, $fallback) {
  170. background: $fallback;
  171. background: -moz-linear-gradient(top, $from 0%, $to 100%);
  172. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$from), color-stop(100%,$to));
  173. background: -webkit-linear-gradient(top, $from 0%, $to 100%);
  174. background: -o-linear-gradient(top, $from 0%, $to 100%);
  175. background: -ms-linear-gradient(top, $from 0%, $to 100%);
  176. background: linear-gradient(top bottom, $from 0%, $to 100%);
  177. }
  178.  
  179. @mixin backface($visibility: hidden) {
  180. @include prefix('backface-visibility', #{$visibility});
  181. }
  182.  
  183. @mixin box-sizing($box-sizing: border-box) {
  184. -webkit-box-sizing: #{$box-sizing};
  185. -moz-box-sizing: #{$box-sizing};
  186. box-sizing: #{$box-sizing};
  187. }
  188.  
  189. /*================ Functions ================*/
  190. @function em($target, $context: $baseFontSize) {
  191. @if $target == 0 {
  192. @return 0;
  193. }
  194. @return $target / $context + 0em;
  195. }
  196.  
  197. @function color-control($color) {
  198. @if (lightness( $color ) > 40) {
  199. @return #1c1d1d;
  200. }
  201. @else {
  202. @return #fff;
  203. }
  204. }
  205.  
  206. @function adaptive-color($color, $percentage) {
  207. @if (lightness( $color ) > 40) {
  208. @return darken($color, $percentage);
  209. }
  210. @else {
  211. @return lighten($color, $percentage);
  212. }
  213. }
  214.  
  215. @function strip-units($number) {
  216. @return $number / ($number * 0 + 1);
  217. }
  218.  
  219. //Font Stack Mixins
  220. @mixin headerFontStack {
  221. font-family: $headerFontStack;
  222. font-weight: $headerFontWeight;
  223. font-style: $headerFontStyle;
  224. }
  225.  
  226. @mixin accentFontStack {
  227. font-family: $accentFontStack;
  228. font-weight: $accentFontWeight;
  229. font-style: $accentFontStyle;
  230. {% if settings.type_accent_spacing %}
  231. letter-spacing: 0.1em;
  232. {% endif %}
  233. {% if settings.type_accent_transform %}
  234. text-transform: uppercase;
  235. {% endif %}
  236. }
  237.  
  238. @mixin bodyFontItalic {
  239. {% if settings.type_base_italize_titles %}
  240. font-style: italic;
  241. {% endif %}
  242. }
  243.  
  244. @mixin visuallyHidden {
  245. clip: rect(0 0 0 0);
  246. clip: rect(0, 0, 0, 0);
  247. overflow: hidden;
  248. position: absolute;
  249. height: 1px;
  250. width: 1px;
  251. }
  252.  
  253. /*================ Animations and keyframes ================*/
  254. @include keyframes(spin) {
  255. 0% {
  256. @include transform(rotate(0deg));
  257. }
  258.  
  259. 100% {
  260. @include transform(rotate(360deg));
  261. }
  262. }
  263.  
  264. @include keyframes(fadeIn) {
  265. 0%, 35% {
  266. opacity: 0;
  267. }
  268. 100% {
  269. opacity: 1;
  270. }
  271. }
  272.  
  273. @include keyframes(heroContentIn) {
  274. 0%, 35% {
  275. opacity: 0;
  276. @include transform('translateY(8px)');
  277. }
  278. 60% {
  279. opacity: 1;
  280. }
  281. 100% {
  282. @include transform('translateY(0)');
  283. }
  284. }
  285.  
  286. /*============================================================================
  287. Dependency-free breakpoint mixin
  288. - http://blog.grayghostvisuals.com/sass/sass-media-query-mixin/
  289. ==============================================================================*/
  290. $min: min-width;
  291. $max: max-width;
  292. @mixin at-query ($constraint, $viewport1, $viewport2:null) {
  293. @if $constraint == $min {
  294. @media screen and ($min: $viewport1) {
  295. @content;
  296. }
  297. } @else if $constraint == $max {
  298. @media screen and ($max: $viewport1) {
  299. @content;
  300. }
  301. } @else {
  302. @media screen and ($min: $viewport1) and ($max: $viewport2) {
  303. @content;
  304. }
  305. }
  306. }
  307.  
  308. /*============================================================================
  309. Flexbox prefix mixins from Bourbon
  310. https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
  311. ==============================================================================*/
  312. @mixin display-flexbox() {
  313. display: -webkit-flex;
  314. display: -ms-flexbox;
  315. display: flex;
  316. width: 100%; // necessary for ie10
  317. }
  318.  
  319. @mixin flex-wrap($value: nowrap) {
  320. @include prefixFlex(flex-wrap, $value, webkit moz ms spec);
  321. }
  322.  
  323. @mixin flex-direction($value) {
  324. @include prefixFlex(flex-direction, $value, webkit moz ms spec);
  325. }
  326.  
  327. @mixin align-items($value: stretch) {
  328. $alt-value: $value;
  329.  
  330. @if $value == 'flex-start' {
  331. $alt-value: start;
  332. } @else if $value == 'flex-end' {
  333. $alt-value: end;
  334. }
  335.  
  336. // sass-lint:disable no-misspelled-properties
  337. -ms-flex-align: $alt-value;
  338. @include prefixFlex(align-items, $value, webkit moz ms o spec);
  339. }
  340.  
  341. @mixin flex($value) {
  342. @include prefixFlex(flex, $value, webkit moz ms spec);
  343. }
  344.  
  345. @mixin flex-basis($width: auto) {
  346. // sass-lint:disable no-misspelled-properties
  347. -ms-flex-preferred-size: $width;
  348. @include prefixFlex(flex-basis, $width, webkit moz spec);
  349. }
  350.  
  351. @mixin align-self($align: auto) {
  352. // sass-lint:disable no-misspelled-properties
  353. -ms-flex-item-align: $align;
  354. @include prefixFlex(align-self, $align, webkit spec);
  355. }
  356.  
  357. @mixin justify-content($justify: flex-start) {
  358. @include prefixFlex(justify-content, $justify, webkit ms spec);
  359. }
  360.  
  361. $viewportIncrement: 1px;
  362. $siteWidth: 1050px;
  363. $small: 590px;
  364. $medium: 768px;
  365. $large: 769px;
  366. $xlarge: $siteWidth + $viewportIncrement;
  367.  
  368. $postSmall: $small + $viewportIncrement;
  369. $preMedium: $medium - $viewportIncrement;
  370. $preLarge: $large - $viewportIncrement;
  371.  
  372. /*================ The following are dependencies of csswizardry grid ================*/
  373. $breakpoints: (
  374. 'small' '(max-width: #{$small})',
  375. 'medium' '(min-width: #{$postSmall}) and (max-width: #{$medium})',
  376. 'medium-down' '(max-width: #{$medium})',
  377. 'large' '(min-width: #{$large})',
  378. 'xlarge' '(min-width: #{$xlarge})'
  379. );
  380. $breakpoint-has-widths: ('small', 'medium', 'medium-down', 'large', 'xlarge');
  381. $breakpoint-has-push: ('medium', 'medium-down', 'large');
  382. $breakpoint-has-pull: ('medium', 'medium-down', 'large');
  383.  
  384. /*================ Color variables ================*/
  385. $colorPrimary: {{ settings.color_primary }};
  386. $colorSecondary: {{ settings.color_secondary }};
  387.  
  388. // Button colors
  389. $colorBtnPrimary: $colorPrimary;
  390. $colorBtnPrimaryHover: lighten($colorBtnPrimary, 12%);
  391. $colorBtnPrimaryActive: adaptive-color($colorPrimary, 24%);
  392. $colorBtnPrimaryText: {{ settings.color_button_text }};
  393.  
  394. $colorBtnSecondary: $colorSecondary;
  395. $colorBtnSecondaryHover: lighten($colorBtnSecondary, 10%);
  396. $colorBtnSecondaryActive: adaptive-color($colorSecondary, 10%);
  397. $colorBtnSecondaryText: {{ settings.color_button_text }};
  398.  
  399. $colorBtnSecondaryAccent: $colorBtnPrimary;
  400. $colorBtnSecondaryAccentHover: lighten($colorBtnSecondaryAccent, 12%);
  401. $colorBtnSecondaryAccentActive: adaptive-color($colorBtnSecondaryAccent, 24%);
  402.  
  403. // Text link colors
  404. $colorLink: $colorSecondary;
  405. $colorLinkHover: $colorPrimary;
  406.  
  407. // Text colors
  408. $colorTextBody: {{ settings.color_body_text }};
  409.  
  410. // Heading colors
  411. $colorHeadings: {{ settings.color_headings }};
  412.  
  413. // Backgrounds
  414. $colorBody: {{ settings.color_body_bg }};
  415. $colorProductBackground: {{ settings.color_product_background }};
  416. $colorInputBg: {{ settings.color_input }};
  417. $colorNewsletter: {{ settings.color_newsletter }};
  418.  
  419. // Border colors
  420. $colorBorder: {{ settings.color_borders }};
  421.  
  422. // Border size
  423. $borderWidthHeader: {{ settings.type_header_border_thickness }};
  424.  
  425. // Sale tag color
  426. $colorSaleTag: {{ settings.color_sale_tag }};
  427.  
  428. // Nav and dropdown link background
  429. $colorNav: $colorBody;
  430. $colorNavText: $colorHeadings;
  431.  
  432. // Helper colors
  433. $disabledGrey: #f6f6f6;
  434. $disabledBorder: darken($disabledGrey, 25%);
  435. $errorRed: #d02e2e;
  436. $errorRedBg: #fff6f6;
  437. $successGreen: #56ad6a;
  438. $successGreenBg: #ecfef0;
  439.  
  440. // Drawer sizes and colors
  441. $drawerNavWidth: 300px;
  442. $drawerCartWidth: 300px;
  443. $drawerCartWidthLarge: 400px; // small-up width
  444. $drawerHeaderHeight: 80px;
  445. $drawerCartFooterHeight: 130px; // default, overwritten by JS
  446. $colorDrawers: {{ settings.color_drawer_background }};
  447. $colorDrawerBorder: {{ settings.color_drawer_border }};
  448. $colorDrawerText: {{ settings.color_drawer_text }};
  449. $colorDrawerButton: {{ settings.color_drawer_button }};
  450. $colorDrawerButtonText: {{ settings.color_drawer_button_text }};
  451. $drawerTransition: 'all 0.35s cubic-bezier(0.46, 0.01 , 0.32, 1)';
  452.  
  453. // Sizing variables
  454. $gutter: 30px;
  455. $gridGutterMobile: 22px;
  456. $section-spacing-small: 35px;
  457. $gridGutter: 30px; // can be a %, but nested grids will have smaller margins because of it
  458. $contentTopMargin: 80px;
  459. $contentTopMarginSmall: 35px;
  460. $radius: 0;
  461. $customSelectHeight: 46px;
  462.  
  463. // Z-index
  464. $zindexNavDropdowns: 5;
  465. $zindexDrawer: 10;
  466. $zindexHeroHeader: 2;
  467. $zindexDrawerOverlay: 20;
  468.  
  469. // Product Collage Grid
  470. $collageImageXLarge: 670px;
  471. $collageImageLarge: 520px;
  472. $collageImageMedium: 310px;
  473. $collageImageSmall: 230px;
  474.  
  475. {% if settings.product_vendor_enable %}
  476. $collageImageLarge: 544px;
  477. {% endif %}
  478.  
  479. // Collection Collage Grid
  480. // These heights are used to determine the row height for the
  481. // collection grid.
  482. $collectionCollageRowHeightFull: 450px;
  483. $collectionCollageRowHeightLarge: 310px;
  484. $collectionCollageRowHeightSmall: 280px;
  485.  
  486. // Password page
  487. $passwordPageUseBgImage: true;
  488.  
  489. // Section onboarding
  490. $color-blankstate: rgba($colorTextBody, 0.35);
  491. $color-blankstate-background: rgba($colorTextBody, 0.10);
  492.  
  493. /*================ Typography ================*/
  494. {%- assign accent_family = settings.type_accent_family -%}
  495. {%- assign base_family = settings.type_base_family -%}
  496. {%- assign header_family = settings.type_header_family -%}
  497.  
  498. {{ accent_family | font_face }}
  499. {{ base_family | font_face }}
  500. {{ header_family | font_face }}
  501.  
  502. {%- assign base_family_bold = base_family | font_modify: 'weight', 'bolder' -%}
  503. {%- assign base_family_italic = base_family | font_modify: 'style', 'italic' -%}
  504. {%- assign base_family_bold_italic = base_family_bold | font_modify: 'style', 'italic' -%}
  505. {%- assign accent_family_bold = accent_family | font_modify: 'weight', 'bolder' -%}
  506.  
  507. {{ base_family_bold | font_face }}
  508. {{ base_family_italic | font_face }}
  509. {{ base_family_bold_italic | font_face }}
  510. {{ accent_family_bold | font_face }}
  511.  
  512. // Header Font
  513. $headerFontStack: {{ header_family.family }}, {{ header_family.fallback_families }};
  514. $headerFontWeight: {{ header_family.weight }};
  515. $headerFontStyle: {{ header_family.style }};
  516. $headerBaseFontSize: {{ settings.type_header_base_size }};
  517.  
  518. // Body Font
  519. $bodyFontStack: {{ base_family.family }}, {{ base_family.fallback_families }};
  520. $bodyFontWeight: {{ base_family.weight }};
  521. $bodyFontWeightBold: {{ base_family_bold.weight | default: 700 }};
  522. $bodyFontStyle: {{ base_family.style }};
  523. $baseFontSize: {{ settings.type_base_size }}; // Henceforth known as 1em
  524.  
  525. // Accent Font
  526. $accentFontStack: {{ accent_family.family }}, {{ accent_family.fallback_families }};
  527. $accentFontWeight: {{ accent_family.weight }};
  528. $accentFontWeightBold: {{ accent_family_bold.weight | default: 700 }};
  529. $accentFontStyle: {{ accent_family.style }};
  530.  
  531. @font-face {
  532. font-family: 'icons';
  533. src: url('{{ "icons.eot" | asset_url }}');
  534. src: url('{{ "icons.eot" | asset_url }}#iefix') format("embedded-opentype"),
  535. url('{{ "icons.woff" | asset_url }}') format("woff"),
  536. url('{{ "icons.ttf" | asset_url }}') format("truetype"),
  537. url('{{ "icons.svg" | asset_url }}#timber-icons') format("svg");
  538. font-weight: normal;
  539. font-style: normal;
  540. };
  541.  
  542. $socialIconFontStack: 'icons';
  543.  
  544.  
  545. /*================ Vendor-specific styles ================*/
  546. /* Magnific Popup CSS */
  547. .mfp-bg {
  548. top: 0;
  549. left: 0;
  550. width: 100%;
  551. height: 100%;
  552. z-index: 1042;
  553. overflow: hidden;
  554. position: fixed;
  555. background: #0b0b0b;
  556. opacity: 0.8;
  557. filter: alpha(opacity=80); }
  558.  
  559. .mfp-wrap {
  560. top: 0;
  561. left: 0;
  562. width: 100%;
  563. height: 100%;
  564. z-index: 1043;
  565. position: fixed;
  566. outline: none !important;
  567. -webkit-backface-visibility: hidden; }
  568.  
  569. .mfp-container {
  570. text-align: center;
  571. position: absolute;
  572. width: 100%;
  573. height: 100%;
  574. left: 0;
  575. top: 0;
  576. padding: 0 8px;
  577. -webkit-box-sizing: border-box;
  578. -moz-box-sizing: border-box;
  579. box-sizing: border-box; }
  580.  
  581. .mfp-container:before {
  582. content: '';
  583. display: inline-block;
  584. height: 100%;
  585. vertical-align: middle; }
  586.  
  587. .mfp-align-top .mfp-container:before {
  588. display: none; }
  589.  
  590. .mfp-content {
  591. position: relative;
  592. display: inline-block;
  593. vertical-align: middle;
  594. margin: 0 auto;
  595. text-align: left;
  596. z-index: 1045; }
  597.  
  598. .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  599. width: 100%;
  600. cursor: auto; }
  601.  
  602. .mfp-ajax-cur {
  603. cursor: progress; }
  604.  
  605. .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  606. cursor: -moz-zoom-out;
  607. cursor: -webkit-zoom-out;
  608. cursor: zoom-out; }
  609.  
  610. .mfp-zoom {
  611. cursor: pointer;
  612. cursor: -webkit-zoom-in;
  613. cursor: -moz-zoom-in;
  614. cursor: zoom-in; }
  615.  
  616. .mfp-auto-cursor .mfp-content {
  617. cursor: auto; }
  618.  
  619. .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  620. -webkit-user-select: none;
  621. -moz-user-select: none;
  622. user-select: none; }
  623.  
  624. .mfp-loading.mfp-figure {
  625. display: none; }
  626.  
  627. .mfp-hide {
  628. display: none !important; }
  629.  
  630. .mfp-preloader {
  631. color: #CCC;
  632. position: absolute;
  633. top: 50%;
  634. width: auto;
  635. text-align: center;
  636. margin-top: -0.8em;
  637. left: 8px;
  638. right: 8px;
  639. z-index: 1044; }
  640. .mfp-preloader a {
  641. color: #CCC; }
  642. .mfp-preloader a:hover {
  643. color: #FFF; }
  644.  
  645. .mfp-s-ready .mfp-preloader {
  646. display: none; }
  647.  
  648. .mfp-s-error .mfp-content {
  649. display: none; }
  650.  
  651. button.mfp-close, button.mfp-arrow {
  652. overflow: visible;
  653. cursor: pointer;
  654. background: transparent;
  655. border: 0;
  656. -webkit-appearance: none;
  657. display: block;
  658. outline: none;
  659. padding: 0;
  660. z-index: 1046;
  661. -webkit-box-shadow: none;
  662. box-shadow: none; }
  663. button::-moz-focus-inner {
  664. padding: 0;
  665. border: 0; }
  666.  
  667. .mfp-close {
  668. width: 44px;
  669. height: 44px;
  670. line-height: 44px;
  671. position: absolute;
  672. right: 0;
  673. top: 0;
  674. text-decoration: none;
  675. text-align: center;
  676. opacity: 0.65;
  677. filter: alpha(opacity=65);
  678. padding: 0 0 18px 10px;
  679. color: #FFF;
  680. font-style: normal;
  681. font-size: 28px;
  682. font-family: Arial, Baskerville, monospace; }
  683. .mfp-close:hover, .mfp-close:focus {
  684. opacity: 1;
  685. filter: alpha(opacity=100); }
  686. .mfp-close:active {
  687. top: 1px; }
  688.  
  689. .mfp-close-btn-in .mfp-close {
  690. color: #333; }
  691.  
  692. .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  693. color: #FFF;
  694. right: -6px;
  695. text-align: right;
  696. padding-right: 6px;
  697. width: 100%; }
  698.  
  699. .mfp-counter {
  700. position: absolute;
  701. top: 0;
  702. right: 0;
  703. color: #CCC;
  704. font-size: 12px;
  705. line-height: 18px;
  706. white-space: nowrap; }
  707.  
  708. .mfp-arrow {
  709. position: absolute;
  710. opacity: 0.65;
  711. filter: alpha(opacity=65);
  712. margin: 0;
  713. top: 50%;
  714. margin-top: -55px;
  715. padding: 0;
  716. width: 90px;
  717. height: 110px;
  718. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  719. .mfp-arrow:active {
  720. margin-top: -54px; }
  721. .mfp-arrow:hover, .mfp-arrow:focus {
  722. opacity: 1;
  723. filter: alpha(opacity=100); }
  724. .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  725. content: '';
  726. display: block;
  727. width: 0;
  728. height: 0;
  729. position: absolute;
  730. left: 0;
  731. top: 0;
  732. margin-top: 35px;
  733. margin-left: 35px;
  734. border: medium inset transparent; }
  735. .mfp-arrow:after, .mfp-arrow .mfp-a {
  736. border-top-width: 13px;
  737. border-bottom-width: 13px;
  738. top: 8px; }
  739. .mfp-arrow:before, .mfp-arrow .mfp-b {
  740. border-top-width: 21px;
  741. border-bottom-width: 21px;
  742. opacity: 0.7; }
  743.  
  744. .mfp-arrow-left {
  745. left: 0; }
  746. .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  747. border-right: 17px solid #FFF;
  748. margin-left: 31px; }
  749. .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  750. margin-left: 25px;
  751. border-right: 27px solid #3F3F3F; }
  752.  
  753. .mfp-arrow-right {
  754. right: 0; }
  755. .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  756. border-left: 17px solid #FFF;
  757. margin-left: 39px; }
  758. .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  759. border-left: 27px solid #3F3F3F; }
  760.  
  761. .mfp-iframe-holder {
  762. padding-top: 40px;
  763. padding-bottom: 40px; }
  764. .mfp-iframe-holder .mfp-content {
  765. line-height: 0;
  766. width: 100%;
  767. max-width: 900px; }
  768. .mfp-iframe-holder .mfp-close {
  769. top: -40px; }
  770.  
  771. .mfp-iframe-scaler {
  772. width: 100%;
  773. height: 0;
  774. overflow: hidden;
  775. padding-top: 56.25%; }
  776. .mfp-iframe-scaler iframe {
  777. position: absolute;
  778. display: block;
  779. top: 0;
  780. left: 0;
  781. width: 100%;
  782. height: 100%;
  783. box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  784. background: #000; }
  785.  
  786. /* Main image in popup */
  787. img.mfp-img {
  788. width: auto;
  789. max-width: 100%;
  790. height: auto;
  791. display: block;
  792. line-height: 0;
  793. -webkit-box-sizing: border-box;
  794. -moz-box-sizing: border-box;
  795. box-sizing: border-box;
  796. padding: 40px 0 40px;
  797. margin: 0 auto; }
  798.  
  799. /* The shadow behind the image */
  800. .mfp-figure {
  801. line-height: 0; }
  802. .mfp-figure:after {
  803. content: '';
  804. position: absolute;
  805. left: 0;
  806. top: 40px;
  807. bottom: 40px;
  808. display: block;
  809. right: 0;
  810. width: auto;
  811. height: auto;
  812. z-index: -1;
  813. box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  814. background: #444; }
  815. .mfp-figure small {
  816. color: #BDBDBD;
  817. display: block;
  818. font-size: 12px;
  819. line-height: 14px; }
  820. .mfp-figure figure {
  821. margin: 0; }
  822.  
  823. .mfp-bottom-bar {
  824. margin-top: -36px;
  825. position: absolute;
  826. top: 100%;
  827. left: 0;
  828. width: 100%;
  829. cursor: auto; }
  830.  
  831. .mfp-title {
  832. text-align: left;
  833. line-height: 18px;
  834. color: #F3F3F3;
  835. word-wrap: break-word;
  836. padding-right: 36px; }
  837.  
  838. .mfp-image-holder .mfp-content {
  839. max-width: 100%; }
  840.  
  841. .mfp-gallery .mfp-image-holder .mfp-figure {
  842. cursor: pointer; }
  843.  
  844. @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  845. /**
  846. * Remove all paddings around the image on small screen
  847. */
  848. .mfp-img-mobile .mfp-image-holder {
  849. padding-left: 0;
  850. padding-right: 0; }
  851. .mfp-img-mobile img.mfp-img {
  852. padding: 0; }
  853. .mfp-img-mobile .mfp-figure:after {
  854. top: 0;
  855. bottom: 0; }
  856. .mfp-img-mobile .mfp-figure small {
  857. display: inline;
  858. margin-left: 5px; }
  859. .mfp-img-mobile .mfp-bottom-bar {
  860. background: rgba(0, 0, 0, 0.6);
  861. bottom: 0;
  862. margin: 0;
  863. top: auto;
  864. padding: 3px 5px;
  865. position: fixed;
  866. -webkit-box-sizing: border-box;
  867. -moz-box-sizing: border-box;
  868. box-sizing: border-box; }
  869. .mfp-img-mobile .mfp-bottom-bar:empty {
  870. padding: 0; }
  871. .mfp-img-mobile .mfp-counter {
  872. right: 5px;
  873. top: 3px; }
  874. .mfp-img-mobile .mfp-close {
  875. top: 0;
  876. right: 0;
  877. width: 35px;
  878. height: 35px;
  879. line-height: 35px;
  880. background: rgba(0, 0, 0, 0.6);
  881. position: fixed;
  882. text-align: center;
  883. padding: 0; }
  884. }
  885.  
  886. @media all and (max-width: 900px) {
  887. .mfp-arrow {
  888. -webkit-transform: scale(0.75);
  889. transform: scale(0.75); }
  890.  
  891. .mfp-arrow-left {
  892. -webkit-transform-origin: 0;
  893. transform-origin: 0; }
  894.  
  895. .mfp-arrow-right {
  896. -webkit-transform-origin: 100%;
  897. transform-origin: 100%; }
  898.  
  899. .mfp-container {
  900. padding-left: 6px;
  901. padding-right: 6px; }
  902. }
  903.  
  904. .mfp-ie7 .mfp-img {
  905. padding: 0; }
  906. .mfp-ie7 .mfp-bottom-bar {
  907. width: 600px;
  908. left: 50%;
  909. margin-left: -300px;
  910. margin-top: 5px;
  911. padding-bottom: 5px; }
  912. .mfp-ie7 .mfp-container {
  913. padding: 0; }
  914. .mfp-ie7 .mfp-content {
  915. padding-top: 44px; }
  916. .mfp-ie7 .mfp-close {
  917. top: 0;
  918. right: 0;
  919. padding-top: 0; }
  920.  
  921.  
  922. /*================ Theme-specific partials ================*/
  923. /*================ Theme specific global styles ================*/
  924. hr {
  925. border-width: $borderWidthHeader 0 0 0;
  926. width: 50px;
  927. }
  928.  
  929. .hr--small {
  930. @extend hr;
  931. margin: 20px auto;
  932. }
  933.  
  934. .hr--medium {
  935. @extend hr;
  936. margin: 35px auto;
  937.  
  938. @include at-query($min, $large) {
  939. margin: 45px auto;
  940. }
  941. }
  942.  
  943. .hr--large {
  944. @extend hr;
  945. margin: ($gutter * 2) auto;
  946. }
  947.  
  948. .hr--left {
  949. margin-left: 0;
  950. margin-right: 0;
  951. }
  952.  
  953. /*================ Table styles ================*/
  954. table {
  955. position: relative;
  956. border: 0 none;
  957. background-color: $colorNewsletter;
  958. }
  959.  
  960. td,
  961. th {
  962. border: 0 none;
  963. }
  964.  
  965. td {
  966. padding: 10px 15px;
  967. }
  968.  
  969. tr:first-child th,
  970. tr:first-child td {
  971. position: relative;
  972.  
  973. &:after {
  974. content: '';
  975. display: block;
  976. position: absolute;
  977. bottom: 0;
  978. left: -15px;
  979. right: 15px;
  980. border-bottom: 1px solid $colorBorder;
  981. }
  982.  
  983. &:first-child:after {
  984. left: 15px;
  985. right: -15px;
  986. }
  987. }
  988.  
  989. /*============================================================================
  990. Responsive tables, defined with .table--responsive on table element.
  991. ==============================================================================*/
  992. .table--responsive {
  993. @include at-query($max, $small) {
  994. thead {
  995. display: none;
  996. }
  997.  
  998. tr {
  999. display: block;
  1000. }
  1001.  
  1002. th,
  1003. td {
  1004. display: block;
  1005. text-align: right;
  1006. padding: 15px;
  1007. }
  1008.  
  1009. td:before {
  1010. content: attr(data-label);
  1011. float: left;
  1012. @include accentFontStack;
  1013. font-size: 12px;
  1014. padding-right: 10px;
  1015. }
  1016. }
  1017. }
  1018.  
  1019. @include at-query($max, $small) {
  1020. .table--small-hide {
  1021. display: none !important;
  1022. }
  1023.  
  1024. .table__section + .table__section {
  1025. position: relative;
  1026. margin-top: 10px;
  1027. padding-top: 15px;
  1028.  
  1029. &:after {
  1030. content: '';
  1031. display: block;
  1032. position: absolute;
  1033. top: 0;
  1034. left: 15px;
  1035. right: 15px;
  1036. border-bottom: 1px solid $colorBorder;
  1037. }
  1038. }
  1039. }
  1040.  
  1041.  
  1042. /*================ Partials | Theme typography overrides ================*/
  1043. body,
  1044. input,
  1045. textarea,
  1046. button,
  1047. select {
  1048. line-height: 1.563; // 25px based on 16px font
  1049. }
  1050.  
  1051. h1 {
  1052. font-size: em($headerBaseFontSize);
  1053. }
  1054.  
  1055. h2 {
  1056. font-size: em(floor($headerBaseFontSize * 0.93));
  1057. }
  1058.  
  1059. h3 {
  1060. font-size: em(floor($headerBaseFontSize * 0.77));
  1061. }
  1062.  
  1063. h4 {
  1064. font-size: em(floor($headerBaseFontSize * 0.65));
  1065. }
  1066.  
  1067. h5 {
  1068. font-size: em(floor($headerBaseFontSize * 0.56));
  1069. }
  1070.  
  1071. h6 {
  1072. font-size: em(floor($headerBaseFontSize * 0.51));
  1073. }
  1074.  
  1075. {% if settings.type_accent_subheadings %}
  1076. h3, h4, h5, h6 {
  1077. @include accentFontStack;
  1078. }
  1079. {% endif %}
  1080.  
  1081. .h1 { @extend h1; }
  1082. .h2 { @extend h2; }
  1083. .h3 { @extend h3; }
  1084. .h4 { @extend h4; }
  1085. .h5 { @extend h5; }
  1086. .h6 { @extend h6; }
  1087.  
  1088. /*================ Tables ================*/
  1089. th,
  1090. .table__title {
  1091. @include accentFontStack;
  1092. font-size: em(13px);
  1093. letter-spacing: 0.15em;
  1094. }
  1095.  
  1096. /*================ Rich Text Editor Styles ================*/
  1097. .rte {
  1098. h1 {
  1099. text-align: center;
  1100. }
  1101.  
  1102. h2 {
  1103. text-align: center;
  1104. }
  1105.  
  1106. // emulate separator line (<hr>) under rte headings
  1107. h1::after, h2::after {
  1108. content: '';
  1109. display: block;
  1110. margin: 20px auto;
  1111. border-bottom: 1px {{ settings.color_borders }} solid;
  1112. max-width: 50px;
  1113. }
  1114.  
  1115. h3 {
  1116. {% if settings.type_accent_subheadings %}
  1117. @include accentFontStack;
  1118. {% endif %}
  1119. text-align: center;
  1120. }
  1121.  
  1122. h4, h5, h6 {
  1123. {% if settings.type_accent_subheadings %}
  1124. @include accentFontStack;
  1125. {% endif %}
  1126. }
  1127. }
  1128.  
  1129. blockquote {
  1130. @include bodyFontItalic;
  1131. font-size: em(23px);
  1132. line-height: 1.385;
  1133. text-align: center;
  1134.  
  1135. @include at-query($min, $postSmall) {
  1136. font-size: em(26px);
  1137. }
  1138. }
  1139.  
  1140. .section-header .rte {
  1141. @include bodyFontItalic;
  1142. font-size: em(18px);
  1143. }
  1144.  
  1145. /*================ Blog and Page Typography ================*/
  1146. .article .rte,
  1147. .page .rte {
  1148. h2,
  1149. h3 {
  1150. margin-bottom: 2em;
  1151. }
  1152. }
  1153.  
  1154. /*================ Blog Typography ================*/
  1155. .date {
  1156. @include bodyFontItalic;
  1157. display: inline-block;
  1158. line-height: 1.7;
  1159. margin-bottom: 5px;
  1160.  
  1161. @include at-query($min, $large) {
  1162. margin-bottom: 0;
  1163. }
  1164.  
  1165. .section-header &:last-child {
  1166. margin-bottom: 40px;
  1167. }
  1168. }
  1169.  
  1170. .comment-author {
  1171. @include bodyFontItalic;
  1172. margin-bottom: 0;
  1173. }
  1174.  
  1175. .comment-date {
  1176. @include accentFontStack;
  1177. font-size: em(12px);
  1178. }
  1179.  
  1180. /*================ Cart Typography ================*/
  1181. .ajaxcart__product-name,
  1182. .cart__product-name {
  1183. @include bodyFontItalic;
  1184. }
  1185.  
  1186. .ajaxcart__product-name {
  1187. font-size: em(17px);
  1188. line-height: 1.3;
  1189. }
  1190.  
  1191. .ajaxcart__price,
  1192. .cart__price,
  1193. .cart__subtotal {
  1194. @include accentFontStack;
  1195. }
  1196.  
  1197. .ajaxcart__price {
  1198. font-size: em(13px);
  1199. display: block;
  1200. }
  1201.  
  1202. .ajaxcart__discount {
  1203. display: block;
  1204. @include bodyFontItalic;
  1205. }
  1206.  
  1207. .ajaxcart__subtotal {
  1208. @include accentFontStack;
  1209. }
  1210.  
  1211. .ajaxcart__qty-num[type="text"] {
  1212. @include accentFontStack;
  1213. font-style: normal;
  1214. font-size: em(13px);
  1215. }
  1216.  
  1217. .ajaxcart__note {
  1218. @include bodyFontItalic;
  1219. font-weight: $bodyFontWeight;
  1220. opacity: 0.7;
  1221. }
  1222.  
  1223. .ajaxcart__policies {
  1224. font-weight: $bodyFontWeight;
  1225. opacity: 0.7;
  1226. }
  1227.  
  1228. .ajaxcart__policies a {
  1229. border-bottom: 1px solid $colorDrawerText;
  1230.  
  1231. &:hover {
  1232. border-bottom: none;
  1233. }
  1234. }
  1235.  
  1236. /*================ Misc typography ================*/
  1237. .drawer__title {
  1238. @include headerFontStack;
  1239. font-size: em(24px);
  1240. }
  1241.  
  1242. .collection-grid__item-title {
  1243. @include bodyFontItalic;
  1244. font-size: em(26px);
  1245. line-height: 1.1;
  1246.  
  1247. @include at-query($min, $postSmall) {
  1248. font-size: em(34px);
  1249. }
  1250. }
  1251.  
  1252. /*================ Partials | Theme Form Overrides ================*/
  1253. label {
  1254. @include bodyFontItalic;
  1255. font-weight: $bodyFontWeight;
  1256. }
  1257.  
  1258. ::-webkit-input-placeholder {
  1259. color: $colorTextBody;
  1260. opacity: 0.6;
  1261. }
  1262.  
  1263. :-moz-placeholder {
  1264. color: $colorTextBody;
  1265. opacity: 0.6;
  1266. }
  1267.  
  1268. :-ms-input-placeholder {
  1269. color: $colorTextBody;
  1270. opacity: 0.6;
  1271. }
  1272.  
  1273. ::-ms-input-placeholder {
  1274. color: $colorTextBody;
  1275. opacity: 1;
  1276. }
  1277.  
  1278. input,
  1279. textarea,
  1280. select {
  1281. @include bodyFontItalic;
  1282. font-size: em(18px);
  1283. border-color: transparent;
  1284. background-color: $colorInputBg;
  1285. color: color-control($colorInputBg);
  1286. @include transition(opacity 0.4s ease-out);
  1287.  
  1288. &[disabled],
  1289. &.disabled {
  1290. background-color: $disabledGrey;
  1291. border-color: transparent;
  1292. }
  1293.  
  1294. &:hover {
  1295. @include transition(opacity 0.15s ease-out);
  1296. opacity: 0.9;
  1297. }
  1298.  
  1299. &:active,
  1300. &:focus {
  1301. opacity: 1;
  1302. }
  1303. }
  1304.  
  1305. select:hover {
  1306. outline: 1px solid darken($colorInputBg, 10%);
  1307. }
  1308.  
  1309. input[type="number"] {
  1310. @include accentFontStack;
  1311. font-size: em(16px);
  1312. }
  1313.  
  1314. input[type="image"] {
  1315. background-color: transparent;
  1316. }
  1317.  
  1318. /*================ Ajax quantity selectors ================*/
  1319. .js-qty {
  1320. background-color: $colorInputBg;
  1321. color: color-control($colorInputBg);
  1322. }
  1323.  
  1324. .js-qty__adjust {
  1325. &:hover {
  1326. background-color: darken($colorInputBg, 5%);
  1327. color: color-control($colorInputBg);
  1328. }
  1329. }
  1330.  
  1331. .js-qty__adjust--minus,
  1332. .js-qty__adjust--plus {
  1333. border-color: darken($colorInputBg, 5%);
  1334. color: color-control($colorInputBg);
  1335. }
  1336.  
  1337. /*================ Newsletter area ================*/
  1338. .newsletter {
  1339. background-color: $colorNewsletter;
  1340. padding: $gutter 0;
  1341. margin-top: $gutter * 2;
  1342.  
  1343. .shopify-section:first-child & {
  1344. margin-top: -($gutter * 2);
  1345. @include at-query($min, $postSmall) {
  1346. margin-bottom: -($gutter * 2);
  1347. position: relative;
  1348. top: -($gutter * 5 / 3);
  1349. }
  1350. }
  1351.  
  1352. @include at-query($min, $postSmall) {
  1353. padding: ($gutter * 2) 0;
  1354. }
  1355.  
  1356. .section-header {
  1357. @include at-query($max, $small) {
  1358. margin-bottom: 20px;
  1359. }
  1360. }
  1361.  
  1362. .section-header + .section-subheading {
  1363. margin-bottom: 20px;
  1364.  
  1365. @include at-query($min, $postSmall) {
  1366. margin-top: -50px;
  1367. margin-bottom: 50px;
  1368. }
  1369. }
  1370.  
  1371. .rte p {
  1372. @include at-query($max, $small) {
  1373. margin-bottom: $gridGutterMobile;
  1374. }
  1375. }
  1376.  
  1377. form {
  1378. margin: 0 auto;
  1379. max-width: 520px;
  1380.  
  1381. .newsletter--form {
  1382. padding: $gutter / 3;
  1383. }
  1384. .note,
  1385. .errors {
  1386. margin-bottom: 0;
  1387. }
  1388. }
  1389.  
  1390. form .newsletter--form,
  1391. .newsletter__input {
  1392. background-color: $colorBody;
  1393. color: $colorTextBody;
  1394. }
  1395.  
  1396. .newsletter__input {
  1397. font-size: em(18px);
  1398. -moz-appearance: textfield;
  1399. -webkit-appearance: textfield;
  1400. appearance: textfield;
  1401.  
  1402. &::-webkit-input-placeholder {
  1403. /* WebKit browsers */
  1404. color: $colorTextBody;
  1405. opacity: 1;
  1406. }
  1407.  
  1408. &:-moz-placeholder {
  1409. /* Mozilla Firefox 4 to 18 */
  1410. color: $colorTextBody;
  1411. opacity: 1;
  1412. }
  1413.  
  1414. &::-moz-placeholder {
  1415. /* Mozilla Firefox 19+ */
  1416. color: $colorTextBody;
  1417. opacity: 1;
  1418. }
  1419.  
  1420. &:-ms-input-placeholder {
  1421. /* Internet Explorer 10+ */
  1422. color: $colorTextBody;
  1423. }
  1424.  
  1425. &::-ms-input-placeholder {
  1426. /* Microsoft Edge 12+ */
  1427. color: $colorTextBody;
  1428. opacity: 1;
  1429. }
  1430.  
  1431. @include at-query($min, $postSmall) {
  1432. font-size: em(21px);
  1433. }
  1434. }
  1435.  
  1436. .newsletter__submit-text--large {
  1437. white-space: nowrap;
  1438. }
  1439. }
  1440.  
  1441. @include at-query($max, $small) {
  1442. .newsletter__submit-text--large,
  1443. .password-page__login-form__submit-text--large {
  1444. display: none;
  1445. }
  1446.  
  1447. .newsletter__submit-text--small,
  1448. .password-page__login-form__submit-text--small {
  1449. display: block;
  1450. }
  1451. }
  1452.  
  1453. @include at-query($min, $postSmall) {
  1454. .newsletter__submit-text--large,
  1455. .password-page__login-form__submit-text--large {
  1456. display: block;
  1457. }
  1458.  
  1459. .newsletter__submit-text--small,
  1460. .password-page__login-form__submit-text--small {
  1461. display: none;
  1462. }
  1463. }
  1464.  
  1465. .newsletter__label {
  1466. padding-left: 10px;
  1467. }
  1468.  
  1469. /*================ Modules | Theme product collage grid ================*/
  1470. .grid__row-separator {
  1471. clear: both;
  1472. width: 100%;
  1473. }
  1474.  
  1475. .grid-collage {
  1476. margin-bottom: -13px; // matches bottom padding of .grid-product__meta
  1477. }
  1478.  
  1479. @include at-query($max, $small) {
  1480. .grid-collage {
  1481. .grid-product__image-link {
  1482. height: $collageImageMedium;
  1483. }
  1484. }
  1485. }
  1486.  
  1487. .grid-collage .grid-product__image-link {
  1488. vertical-align: middle;
  1489. display: table-cell;
  1490. }
  1491.  
  1492. @include at-query($min, $postSmall) {
  1493. .large--two-thirds.reverse {
  1494. float: right;
  1495. }
  1496.  
  1497. .grid-collage {
  1498. .large--two-thirds {
  1499. clear: both;
  1500.  
  1501. &.reverse {
  1502. clear: none;
  1503. }
  1504. }
  1505.  
  1506. // specificity necessary to override timber defaults
  1507. .grid__item.large--one-third {
  1508. clear: none;
  1509. }
  1510.  
  1511. .large--one-half {
  1512. float: left;
  1513. display: inline-block;
  1514. }
  1515. }
  1516.  
  1517. .grid-collage .large--one-third {
  1518. clear: inherit;
  1519. }
  1520.  
  1521. .grid-collage .grid-product__image-link {
  1522. height: $collageImageXLarge;
  1523. }
  1524.  
  1525. .grid-collage .large--one-half .grid-product__image-link {
  1526. height: $collageImageMedium;
  1527. }
  1528.  
  1529. .grid-collage .large--two-thirds .grid-product__image-link {
  1530. height: $collageImageLarge;
  1531. }
  1532.  
  1533. .grid-collage .large--one-third .grid-product__image-link {
  1534. height: $collageImageSmall;
  1535. }
  1536.  
  1537. }
  1538.  
  1539. /*================ Modules | Theme collection collage grid ================*/
  1540. .collection-grid {
  1541. margin-bottom: -($gutter / 2);
  1542.  
  1543. @include at-query($min, $postSmall) {
  1544. margin-bottom: -$gutter;
  1545. }
  1546. }
  1547.  
  1548. .collection-collage__item {
  1549. position: relative;
  1550. margin-bottom: $gutter / 2;
  1551. height: $collectionCollageRowHeightFull;
  1552.  
  1553. @include at-query($max, $small) {
  1554. // calculate height for single item rows for
  1555. // mobile breakpoint only
  1556. &.one-whole {
  1557. height: $collectionCollageRowHeightLarge - 120px;
  1558. }
  1559.  
  1560. // calculate height for single item rows
  1561. // mobile breakpoint only
  1562. &.one-half {
  1563. height: $collectionCollageRowHeightSmall - 150px;
  1564. }
  1565. }
  1566.  
  1567. @include at-query($min, $postSmall) {
  1568. margin-bottom: $gutter;
  1569. }
  1570. }
  1571.  
  1572. @include at-query($min, $postSmall) {
  1573. .collection-collage__item {
  1574. &.large--one-half {
  1575. height: $collectionCollageRowHeightLarge;
  1576. }
  1577.  
  1578. &.large--one-third {
  1579. height: $collectionCollageRowHeightSmall;
  1580. }
  1581. }
  1582. }
  1583.  
  1584. /*================ Partials | Theme button overrides ================*/
  1585. a {
  1586. color: $colorTextBody;
  1587. text-decoration: none;
  1588. background: transparent;
  1589.  
  1590. &:hover {
  1591. color: $colorTextBody;
  1592. }
  1593. }
  1594.  
  1595. .rte a,
  1596. .text-link {
  1597. color: $colorLink;
  1598.  
  1599. &:hover {
  1600. color: $colorLinkHover;
  1601. }
  1602. }
  1603.  
  1604. .return-link {
  1605. @include accentFontStack;
  1606. font-size: em(14px);
  1607. }
  1608.  
  1609. /*================ Buttons and Input Groups ================*/
  1610. .btn,
  1611. .btn--secondary {
  1612. @include accentFontStack;
  1613. padding: 12px 20px;
  1614. font-size: em(13px);
  1615. }
  1616.  
  1617. .input-group .btn,
  1618. .input-group .btn--secondary,
  1619. .input-group .input-group-field {
  1620. height: 45px;
  1621. }
  1622.  
  1623. /*================ Button loading indicator, when supported ================*/
  1624. .supports-csstransforms .btn--loading {
  1625. position: relative;
  1626.  
  1627. background-color: darken($colorBtnPrimary, 5%);
  1628. color: darken($colorBtnPrimary, 5%);
  1629.  
  1630. &:hover,
  1631. &:active {
  1632. background-color: darken($colorBtnPrimary, 5%);
  1633. color: darken($colorBtnPrimary, 5%);
  1634. }
  1635.  
  1636. &:after {
  1637. content: '';
  1638. display: block;
  1639. width: 24px;
  1640. height: 24px;
  1641. position: absolute;
  1642. left: 50%;
  1643. top: 50%;
  1644. margin-left: -12px;
  1645. margin-top: -12px;
  1646. border-radius: 50%;
  1647. border: 3px solid $colorBtnPrimaryText;
  1648. border-top-color: transparent;
  1649. @include animation(spin 1s infinite linear);
  1650. }
  1651. }
  1652.  
  1653. /*================ Partials | Theme drawer overrides ================*/
  1654.  
  1655. /*================ Override drawer scrolling to accommodate fixed header/footers ================*/
  1656. .drawer {
  1657. overflow: hidden;
  1658. }
  1659.  
  1660. .drawer__inner {
  1661. position: absolute;
  1662. top: $drawerHeaderHeight;
  1663. bottom: 0;
  1664. left: 0;
  1665. right: 0;
  1666. padding: ($gutter / 2) ($gutter / 2) 0;
  1667. overflow: auto;
  1668. -webkit-overflow-scrolling: touch;
  1669.  
  1670. @include at-query($min, $large) {
  1671. padding-left: $gutter;
  1672. padding-right: $gutter;
  1673. }
  1674.  
  1675. .drawer--has-fixed-footer & {
  1676. overflow: hidden;
  1677. }
  1678. }
  1679.  
  1680. .drawer-left__inner {
  1681. top: 0;
  1682. padding-top: 26px;
  1683. }
  1684.  
  1685. /*================ Drawer Fixed Headers ================*/
  1686. .drawer__fixed-header {
  1687. position: absolute;
  1688. top: 0;
  1689. left: $gutter / 2;
  1690. right: $gutter / 2;
  1691. height: $drawerHeaderHeight;
  1692. overflow: visible; // for close button hit area
  1693.  
  1694. @include at-query($min, $large) {
  1695. left: $gutter;
  1696. right: $gutter;
  1697. }
  1698. }
  1699.  
  1700. .drawer__header {
  1701. padding: ($gutter / 2) 0;
  1702. margin: 0;
  1703. }
  1704.  
  1705. @include at-query($max, $medium) {
  1706. .drawer__close-button {
  1707. .icon {
  1708. font-size: em(22px);
  1709. }
  1710. }
  1711. }
  1712.  
  1713. @include at-query($min, $postSmall) {
  1714. .drawer__close-button {
  1715. right: 0;
  1716. }
  1717. }
  1718.  
  1719. @include at-query($min, $xlarge) {
  1720. .drawer__close-button {
  1721. right: -20px;
  1722. }
  1723. }
  1724.  
  1725. /*================ Drawer Fixed Cart Footer ================*/
  1726. .ajaxcart__inner--has-fixed-footer {
  1727. position: absolute;
  1728. top: 0;
  1729. left: 0;
  1730. right: 0;
  1731. margin: 0;
  1732. padding: ($gutter / 2) ($gutter / 2) 0;
  1733. bottom: $drawerCartFooterHeight; // overwritten with JS
  1734. overflow: auto;
  1735. -webkit-overflow-scrolling: touch;
  1736.  
  1737. @include at-query($min, $large) {
  1738. padding: $gutter $gutter 0;
  1739. }
  1740. }
  1741.  
  1742. .ajaxcart__footer {
  1743. border-top: 1px solid $colorDrawerBorder;
  1744. padding-top: $gutter / 2;
  1745. }
  1746.  
  1747. .ajaxcart__footer--fixed {
  1748. position: absolute;
  1749. bottom: 0;
  1750. left: $gutter / 2;
  1751. right: $gutter / 2;
  1752. min-height: $drawerCartFooterHeight; // overwritten by JS
  1753. padding-bottom: $gutter;
  1754.  
  1755. @include at-query ($max, $small) {
  1756. padding-bottom: $gutter /2;
  1757. }
  1758.  
  1759. @include at-query($min, $large) {
  1760. left: $gutter;
  1761. right: $gutter;
  1762. }
  1763. }
  1764.  
  1765. .ajaxcart__discounts {
  1766. margin-bottom: $gutter / 2;
  1767. }
  1768.  
  1769. /*================ Drawer Quantity Selectors ================*/
  1770. .ajaxcart__qty {
  1771. max-width: 75px;
  1772.  
  1773. input[type='text'] {
  1774. padding: 0 20px;
  1775. }
  1776.  
  1777. .js-qty__adjust,
  1778. .ajaxcart__qty-adjust {
  1779. padding: 0 5px;
  1780. line-height: 1;
  1781. }
  1782. }
  1783.  
  1784. /*================ Cart item styles ================*/
  1785. .ajaxcart__product:last-child .ajaxcart__row {
  1786. border-bottom: 0 none;
  1787. padding-bottom: 0;
  1788. }
  1789.  
  1790. .btn--secondary {
  1791. @include transition(all 0.2s ease-out);
  1792.  
  1793. &:hover {
  1794. background-color: adaptive-color($colorDrawerButton, 10%);
  1795. }
  1796. }
  1797.  
  1798. /*============================================================================
  1799. Social Icon Buttons v1.0
  1800. Author:
  1801. Carson Shold | @cshold
  1802. http://www.carsonshold.com
  1803. MIT License
  1804. ==============================================================================*/
  1805.  
  1806. /*================ Social share buttons ================*/
  1807. $shareButtonHeight: 22px;
  1808. $shareButtonCleanHeight: 30px;
  1809. $shareCountBg: $colorBody;
  1810.  
  1811. .social-sharing {
  1812. font-family: $bodyFontStack;
  1813. font-weight: $bodyFontWeight;
  1814. font-style: $bodyFontStyle;
  1815.  
  1816. * {
  1817. -webkit-box-sizing:border-box;
  1818. -moz-box-sizing:border-box;
  1819. box-sizing:border-box;
  1820. }
  1821.  
  1822. a {
  1823. display: inline-block;
  1824. color: $colorTextBody;
  1825. border-radius: 2px;
  1826. margin: 5px 0;
  1827. height: $shareButtonHeight;
  1828. line-height: $shareButtonHeight;
  1829. text-decoration: none;
  1830. font-weight: $bodyFontWeight;
  1831. }
  1832.  
  1833. span {
  1834. display: inline-block;
  1835. vertical-align: top;
  1836. height: $shareButtonHeight;
  1837. line-height: $shareButtonHeight;
  1838. font-size: 12px;
  1839. }
  1840.  
  1841. .icon {
  1842. padding: 0 5px 0 10px;
  1843.  
  1844. &:before {
  1845. line-height: $shareButtonHeight;
  1846. }
  1847. }
  1848.  
  1849. /*================ Large Buttons ================*/
  1850. &.is-large a {
  1851. height: $shareButtonHeight*2;
  1852. line-height: $shareButtonHeight*2;
  1853.  
  1854. span {
  1855. height: $shareButtonHeight*2;
  1856. line-height: $shareButtonHeight*2;
  1857. font-size: 18px;
  1858. }
  1859.  
  1860. .icon {
  1861. padding: 0 10px 0 18px;
  1862.  
  1863. &:before {
  1864. line-height: $shareButtonHeight*2;
  1865. }
  1866. }
  1867. }
  1868. }
  1869.  
  1870. .share-title {
  1871. font-size: em(18px);
  1872. padding-right: 10px;
  1873.  
  1874. .is-large & {
  1875. padding-right: 16px;
  1876. }
  1877. }
  1878.  
  1879. /*================ Clean Buttons ================*/
  1880. .social-sharing.clean {
  1881. a {
  1882. background-color: $shareCountBg;
  1883. color: $colorTextBody;
  1884. height: $shareButtonCleanHeight;
  1885. line-height: $shareButtonCleanHeight;
  1886.  
  1887. span {
  1888. height: $shareButtonCleanHeight;
  1889. line-height: $shareButtonCleanHeight;
  1890. font-size: 13px;
  1891. }
  1892.  
  1893. &:hover {
  1894. opacity: 0.8;
  1895. }
  1896.  
  1897. &:hover .share-count {
  1898. opacity: 0.8;
  1899.  
  1900. &:after {
  1901. border-right-color: $shareCountBg;
  1902. }
  1903. }
  1904.  
  1905. .share-title {
  1906. font-weight: $bodyFontWeight;
  1907. }
  1908. }
  1909.  
  1910. .share-count {
  1911. top: -1px;
  1912. }
  1913. }
  1914.  
  1915. /*================ Partials | Theme search grid ================*/
  1916.  
  1917. .grid-search {
  1918. margin-bottom: $gutter;
  1919. }
  1920.  
  1921. .grid-search__product {
  1922. position: relative;
  1923. text-align: center;
  1924. }
  1925.  
  1926. // Force heights for consistency
  1927. .grid-search__page-link,
  1928. .grid-search__product-link {
  1929. @include at-query($min, $large) {
  1930. height: 280px;
  1931. }
  1932. }
  1933.  
  1934. .grid-search__page-link {
  1935. display: block;
  1936. background-color: $colorProductBackground;
  1937. padding: 20px;
  1938. color: $colorTextBody;
  1939. overflow: hidden;
  1940.  
  1941. &:hover,
  1942. &:focus {
  1943. background-color: adaptive-color($colorProductBackground, 3%);
  1944. }
  1945. }
  1946.  
  1947. .grid-search__page-content {
  1948. display: block;
  1949. height: 100%;
  1950. overflow: hidden;
  1951. }
  1952.  
  1953. .grid-search__image {
  1954. display: block;
  1955. padding: 20px;
  1956. margin: 0 auto;
  1957. max-height: 100%;
  1958. max-width: 100%;
  1959.  
  1960. @include at-query($min, $large) {
  1961. position: absolute;
  1962. top: 50%;
  1963. left: 50%;
  1964. @include prefix('transform', 'translate(-50%, -50%)');
  1965. }
  1966. }
  1967.  
  1968. /*================ Partials | Sections ================*/
  1969. .index-sections {
  1970. .shopify-section:first-child {
  1971. margin: 0;
  1972. }
  1973.  
  1974. .shopify-section {
  1975. margin-top: $gutter * 3;
  1976.  
  1977. @include at-query($max, $medium) {
  1978. margin-top: $gutter * 1.5;
  1979. }
  1980. }
  1981. }
  1982.  
  1983. /*================ Partials | Sections onboarding ================*/
  1984. .placeholder-svg {
  1985. fill: $color-blankstate;
  1986. background-color: $color-blankstate-background;
  1987. width: 100%;
  1988. height: 100%;
  1989. max-width: 100%;
  1990. max-height: 100%;
  1991. }
  1992.  
  1993. .placeholder-background {
  1994. background-color: $color-blankstate-background;
  1995. position: absolute;
  1996. top: 0;
  1997. right: 0;
  1998. bottom: 0;
  1999. left: 0;
  2000.  
  2001. .hero & {
  2002. background-color: transparent;
  2003. }
  2004.  
  2005. .placeholder-svg {
  2006. fill: $color-blankstate-background;
  2007. background-color: transparent;
  2008. }
  2009. }
  2010.  
  2011. .hero__slide {
  2012. &.slide--placeholder {
  2013. background-color: $color-blankstate-background !important;
  2014. }
  2015. }
  2016.  
  2017. /*================ Partials | Featured products section onboarding ================*/
  2018. .grid-product__image-link {
  2019. .helper-section &,
  2020. .helper & {
  2021. background-color: transparent;
  2022. }
  2023. }
  2024.  
  2025. .grid-product__image-wrapper {
  2026. .helper-section & {
  2027. height: 275px !important;
  2028. }
  2029. }
  2030.  
  2031. /*================ Partials | Featured row section ================*/
  2032. .feature-row {
  2033. @include display-flexbox();
  2034. @include justify-content(space-between);
  2035. @include align-items(center);
  2036.  
  2037. @include at-query($max, $medium) {
  2038. @include flex-wrap(wrap);
  2039. }
  2040. }
  2041.  
  2042. .feature-row__item {
  2043. @include flex(0 1 50%);
  2044.  
  2045. @include at-query($max, $medium) {
  2046. @include flex(1 1 100%);
  2047. max-width: 100%;
  2048. }
  2049. }
  2050.  
  2051. .feature-row__image-wrapper {
  2052. position: relative;
  2053.  
  2054. .no-js & {
  2055. @include visuallyHidden();
  2056. padding-top: 0 !important;
  2057. }
  2058. }
  2059.  
  2060. .feature-row__image-no-js {
  2061. display: block;
  2062. margin: 0 auto;
  2063.  
  2064. @include at-query($max, $medium) {
  2065. order: 1;
  2066. }
  2067. }
  2068.  
  2069. .feature-row__image {
  2070. display: block;
  2071. margin: 0 auto;
  2072. width: 100%;
  2073. position: absolute;
  2074. top: 0;
  2075. right: 0;
  2076. left: 0;
  2077.  
  2078. @include at-query($max, $medium) {
  2079. order: 1;
  2080. }
  2081. }
  2082.  
  2083. .feature-row__text {
  2084. padding-top: $section-spacing-small;
  2085. padding-bottom: $section-spacing-small;
  2086.  
  2087. @include at-query($max, $medium) {
  2088. order: 2;
  2089. padding-bottom: 0; // always last element on mobile
  2090. }
  2091. }
  2092.  
  2093. @include at-query($min, $large) {
  2094. .feature-row__text--left {
  2095. padding-left: $section-spacing-small;
  2096. }
  2097.  
  2098. .feature-row__text--right {
  2099. padding-right: $section-spacing-small;
  2100. }
  2101. }
  2102.  
  2103. @include at-query($min, $large) {
  2104. .featured-row__subtext {
  2105. }
  2106. }
  2107.  
  2108.  
  2109. /*================ Module-specific styles ================*/
  2110. /*============================================================================
  2111. To update Slick slider to a new version,
  2112. scroll down to #Slick Slider SCSS and follow the instructions
  2113.  
  2114. Default Slick classes all start with '.slick'
  2115. Custom classes all start with '.hero'
  2116.  
  2117. Extra specificity in selectors is used to override default
  2118. styles before including the default Slick CSS
  2119. ==============================================================================*/
  2120.  
  2121. /*================ Variables ================*/
  2122. $slideshow-control-size: 3.125rem;
  2123. $slideshow-indicator-size: 1.25rem;
  2124.  
  2125. /*================ Prev/next and pagination ================*/
  2126. .slick-slider .slick-dots {
  2127. margin: 0;
  2128. bottom: 10px;
  2129.  
  2130. li {
  2131. margin: 0;
  2132. vertical-align: middle;
  2133.  
  2134. button {
  2135. position: relative;
  2136. }
  2137.  
  2138. button:before,
  2139. a:before {
  2140. text-indent: -9999px;
  2141. border-radius: 100%;
  2142. // Colors are set in slideshow.liquid. This is just the default color.
  2143. background-color: #ffffff;
  2144. border: 2px solid transparent;
  2145. width: 10px;
  2146. height: 10px;
  2147. margin: 0.3rem 0 0 0.3rem;
  2148. opacity: 1;
  2149. @include transition(all 0.2s);
  2150. }
  2151.  
  2152. &.slick-active button:before {
  2153. // Colors are set in slideshow.liquid. This is just the default color.
  2154. background-color: transparent;
  2155. border-color: #ffffff;
  2156. opacity: 1;
  2157. width: 0.75rem;
  2158. height: 0.75rem;
  2159. margin: 0.25rem 0 0 0.25rem;
  2160. }
  2161.  
  2162. button:active:before {
  2163. opacity: 0.5;
  2164. }
  2165. }
  2166. }
  2167.  
  2168. .hero {
  2169. .slick-prev,
  2170. .slick-next {
  2171. height: $slideshow-control-size;
  2172. margin-top: 0;
  2173. width: $slideshow-control-size;
  2174. }
  2175.  
  2176. .slick-prev {
  2177. left: 1.1rem;
  2178. }
  2179.  
  2180. .slick-next {
  2181. right: 1.45rem;
  2182. @media only screen and ($max: $siteWidth) {
  2183. right: 1rem;
  2184. }
  2185. }
  2186. }
  2187.  
  2188. /*============================================================================
  2189. General slide styles
  2190. - Sizes based on height of image when 100% of container width
  2191. ==============================================================================*/
  2192. .hero__slide {
  2193. position: relative;
  2194. }
  2195.  
  2196. .hero__image {
  2197. position: relative;
  2198. opacity: 0;
  2199.  
  2200. .slick-initialized & {
  2201. opacity: 1;
  2202. @include animation(fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87));
  2203. }
  2204.  
  2205. img {
  2206. display: block;
  2207. width: 100%;
  2208. }
  2209. }
  2210.  
  2211. // The overlay color and opacity is set in slideshow.liquid
  2212. .slideshow__overlay:before {
  2213. content: '';
  2214. position: absolute;
  2215. top: 0;
  2216. right: 0;
  2217. bottom: 0;
  2218. left: 0;
  2219. z-index: 0;
  2220. }
  2221.  
  2222. .hero__slide--hidden {
  2223. visibility: hidden;
  2224. }
  2225.  
  2226. .supports-touch .hero__slide--hidden {
  2227. visibility: visible;
  2228. }
  2229.  
  2230.  
  2231. /*============================================================================
  2232. Full screen hero styles
  2233. - Uses css background image
  2234. ==============================================================================*/
  2235. .hero {
  2236. // Height is set by JS on slider init. vh is a nice default for modern browsers.
  2237. height: 100vh;
  2238. max-height: 100vh;
  2239. margin-bottom: 1.9rem;
  2240.  
  2241. @include at-query($max, $siteWidth) {
  2242. min-height: 50vw;
  2243. }
  2244.  
  2245. .slick-list,
  2246. .slick-track {
  2247. height: 100%;
  2248.  
  2249. @include at-query($max, $siteWidth) {
  2250. min-height: 50vw;
  2251. }
  2252. }
  2253.  
  2254. .hero__image {
  2255. height: 100%;
  2256. width: 100%;
  2257. object-fit: cover;
  2258. // Used for the IE lazysizes object-fit polyfill
  2259. font-family: "object-fit: cover";
  2260. }
  2261. }
  2262.  
  2263. .hero[data-adapt="false"],
  2264. .hero[data-adapt="false"] .slideshow__overlay:before {
  2265. height: 100vh;
  2266. }
  2267.  
  2268. .hero[data-adapt="true"] .slideshow__overlay:before {
  2269. @include at-query($max, $siteWidth) {
  2270. min-height: 50vw;
  2271. }
  2272. }
  2273.  
  2274. .hero[data-adapt="false"],
  2275. .hero[data-adapt="false"] .slideshow__overlay:before {
  2276. height: 100vh;
  2277. }
  2278.  
  2279. .hero[data-adapt="true"] .slideshow__overlay:before {
  2280. @include at-query($max, $siteWidth) {
  2281. min-height: 50vw;
  2282. }
  2283. }
  2284.  
  2285. .hero__image {
  2286. .no-js & {
  2287. @include visuallyHidden;
  2288. }
  2289. }
  2290.  
  2291. .hero__image-no-js {
  2292. background-repeat: no-repeat;
  2293. background-size: cover;
  2294. background-position: top center;
  2295. height: 100vh;
  2296. min-height: 550px;
  2297. opacity: 1;
  2298. }
  2299.  
  2300. /*================ Hero text/CTA ================*/
  2301. .hero__text-wrap {
  2302. position: absolute;
  2303. top: 0;
  2304. bottom: 0;
  2305. left: 0;
  2306. right: 0;
  2307. }
  2308.  
  2309. .hero__slide:not(:first-of-type) .hero__text-wrap {
  2310. display: none;
  2311.  
  2312. .slick-initialized & {
  2313. display: block;
  2314. }
  2315. }
  2316.  
  2317. .hero__text-align {
  2318. display: table;
  2319. width: 100%;
  2320. height: 100%;
  2321.  
  2322. .hero--adapt & {
  2323. @include at-query($max, $medium) {
  2324. display: none;
  2325. }
  2326. }
  2327. }
  2328.  
  2329. .hero__text-content {
  2330. position: relative;
  2331. opacity: 0;
  2332. display: table-cell;
  2333. vertical-align: middle;
  2334. padding: 0.94rem 0.6rem 0;
  2335. @include transition('color 0.2s ease');
  2336.  
  2337. @include at-query($max, $medium) {
  2338. padding: 0;
  2339. }
  2340.  
  2341. .slick-initialized & {
  2342. opacity: 1;
  2343. @include animation(heroContentIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87));
  2344. }
  2345. }
  2346.  
  2347. .hero__text-content .slick-dots {
  2348. position: static;
  2349. }
  2350.  
  2351. .hero__adapt-text-wrap {
  2352. @include at-query($min, $large) {
  2353. display: none !important;
  2354. }
  2355. margin-bottom: 1rem;
  2356.  
  2357. @include at-query($max, $medium) {
  2358. color: $colorHeadings;
  2359. }
  2360.  
  2361. .hero__text-content {
  2362. display: none;
  2363. }
  2364. }
  2365.  
  2366. .hero__text-content--adapt {
  2367. opacity: 1;
  2368. }
  2369.  
  2370. /*================ Extra specificity to override Timber defaults ================*/
  2371. .hero__slide,
  2372. .hero--adapt {
  2373. .hero__title {
  2374. margin-bottom: 1.25rem;
  2375. line-height: 1.25;
  2376. letter-spacing: 0;
  2377. }
  2378.  
  2379. .hero__subtitle {
  2380. {% if settings.type_accent_subheadings %}
  2381. @include accentFontStack;
  2382. {% else %}
  2383. @include headerFontStack;
  2384. {% endif %}
  2385. margin-bottom: 0.94rem;
  2386. }
  2387.  
  2388. a.hero__cta {
  2389. margin-bottom: 0;
  2390. }
  2391. }
  2392.  
  2393. /*================ Font sizes ================*/
  2394. .hero__slide,
  2395. .hero--adapt {
  2396. .hero__title {
  2397. font-size: em(50px);
  2398. }
  2399.  
  2400. .hero__subtitle {
  2401. font-size: em(15px);
  2402. }
  2403.  
  2404. @include at-query($min, $postSmall) {
  2405. .hero__title {
  2406. font-size: em(60px);
  2407. }
  2408.  
  2409. .hero__subtitle {
  2410. font-size: em(18px);
  2411. }
  2412. }
  2413.  
  2414. @include at-query($min, $large) {
  2415. .hero__title {
  2416. font-size: em(64px);
  2417. }
  2418. }
  2419. }
  2420.  
  2421. /*================ Hero header ================*/
  2422. .hero__header {
  2423. position: absolute;
  2424. top: 0;
  2425. left: 0;
  2426. right: 0;
  2427. opacity: 0;
  2428. z-index: $zindexHeroHeader;
  2429. }
  2430.  
  2431. .template-index .header-wrapper {
  2432. opacity: 0;
  2433. z-index: $zindexHeroHeader;
  2434. @include animation(fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87) forwards);
  2435.  
  2436. .supports-no-cssanimations & {
  2437. opacity: 1;
  2438. @include animation(fadeIn 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87));
  2439. }
  2440. }
  2441.  
  2442. .header-container {
  2443. position: relative;
  2444. z-index: $zindexHeroHeader;
  2445. }
  2446.  
  2447. /*============================================================================
  2448. #Slick Slider overrides
  2449. - If upgrading Slick's styles, use the following variables/functions
  2450. instead of the slick defaults
  2451. - Only overwrite slick's default styles starting at #Slick Slider SCSS
  2452. ==============================================================================*/
  2453. $slick-font-family: "slick-icons, sans-serif";
  2454. $slick-arrow-color: $colorPrimary;
  2455. $slick-dot-color: $colorPrimary;
  2456. $slick-dot-color-active: $slick-dot-color;
  2457. $slick-prev-character: '\2190';
  2458. $slick-next-character: '\2192';
  2459. $slick-dot-character: '\2022';
  2460.  
  2461. // Only called once so make sure proper file is grabbed
  2462. @function slick-image-url($url) {
  2463. @return url({{ "ajax-loader.gif" | asset_url }});
  2464. }
  2465.  
  2466. // Unused intentionally
  2467. @function slick-font-url($url) {}
  2468.  
  2469. /*============================================================================
  2470. #Slick Slider SCSS
  2471. - Everything below this line is unchanged from Slick's scss file
  2472. - When updating to a new version, don't include the variables/function
  2473. that were modified above
  2474. ==============================================================================*/
  2475. .slick-slider {
  2476. position: relative;
  2477. display: block;
  2478. box-sizing: border-box;
  2479. -moz-box-sizing: border-box;
  2480. -webkit-touch-callout: none;
  2481. -webkit-user-select: none;
  2482. -khtml-user-select: none;
  2483. -moz-user-select: none;
  2484. -ms-user-select: none;
  2485. user-select: none;
  2486. -ms-touch-action: pan-y;
  2487. touch-action: pan-y;
  2488. -webkit-tap-highlight-color: transparent;
  2489. margin-bottom: 1.875rem;
  2490. }
  2491.  
  2492. .slick-list {
  2493. position: relative;
  2494. overflow: hidden;
  2495. display: block;
  2496. margin: 0;
  2497. padding: 0;
  2498.  
  2499. .slick-loading & {
  2500. background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
  2501. }
  2502.  
  2503. &.dragging {
  2504. cursor: pointer;
  2505. cursor: hand;
  2506. }
  2507. }
  2508.  
  2509. .slick-slider .slick-track,
  2510. .slick-slider .slick-list {
  2511. -webkit-transform: translate3d(0, 0, 0);
  2512. -moz-transform: translate3d(0, 0, 0);
  2513. -ms-transform: translate3d(0, 0, 0);
  2514. -o-transform: translate3d(0, 0, 0);
  2515. transform: translate3d(0, 0, 0);
  2516. }
  2517.  
  2518. .slick-track {
  2519. max-height: 100vh;
  2520. position: relative;
  2521. left: 0;
  2522. top: 0;
  2523. display: block;
  2524.  
  2525. &:before,
  2526. &:after {
  2527. content: "";
  2528. display: table;
  2529. }
  2530.  
  2531. &:after {
  2532. clear: both;
  2533. }
  2534.  
  2535. .slick-loading & {
  2536. visibility: hidden;
  2537. }
  2538. }
  2539.  
  2540. .slick-slide {
  2541. float: left;
  2542. height: 100%;
  2543. min-height: 1px;
  2544. [dir="rtl"] & {
  2545. float: right;
  2546. }
  2547. img {
  2548. display: block;
  2549. }
  2550. &.slick-loading img {
  2551. display: none;
  2552. }
  2553.  
  2554. display: none;
  2555.  
  2556. &.dragging img {
  2557. pointer-events: none;
  2558. }
  2559.  
  2560. .slick-initialized & {
  2561. display: block;
  2562. }
  2563.  
  2564. .slick-loading & {
  2565. visibility: hidden;
  2566. }
  2567.  
  2568. .slick-vertical & {
  2569. display: block;
  2570. height: auto;
  2571. border: 1px solid transparent;
  2572. }
  2573. }
  2574.  
  2575. /* Icons */
  2576. @if $slick-font-family == "slick" {
  2577. @font-face {
  2578. font-family:"slick";
  2579. src: slick-font-url("slick.eot");
  2580. src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"),
  2581. slick-font-url("slick.woff") format("woff"),
  2582. slick-font-url("slick.ttf") format("truetype"),
  2583. slick-font-url("slick.svg#slick") format("svg");
  2584. font-weight: normal;
  2585. font-style: normal;
  2586. }
  2587. }
  2588.  
  2589. /* Arrows */
  2590.  
  2591. .slick-prev,
  2592. .slick-next {
  2593. position: absolute;
  2594. display: block;
  2595. width: 0.6rem;
  2596. line-height: 0;
  2597. cursor: pointer;
  2598.  
  2599. padding: 0;
  2600. border: none;
  2601.  
  2602. & .icon:before {
  2603. bottom: 0;
  2604. }
  2605. }
  2606.  
  2607. .slick-prev .icon:before,
  2608. .slick-next .icon:before {
  2609. position: relative;
  2610. transition: top 0.1s linear;
  2611. font-size: 0.6rem;
  2612. color: $slick-arrow-color;
  2613. -webkit-font-smoothing: antialiased;
  2614. -moz-osx-font-smoothing: grayscale;
  2615. }
  2616. .slick-prev:hover .icon:before,
  2617. .slick-next:hover .icon:before {
  2618. top: -0.125rem;
  2619. }
  2620.  
  2621. /* Dots */
  2622. .slick-dots {
  2623. position: absolute;
  2624. list-style: none;
  2625. display: block;
  2626. text-align: center;
  2627. padding: 0;
  2628. width: 100%;
  2629.  
  2630. li {
  2631. position: relative;
  2632. display: inline-block;
  2633. height: $slideshow-indicator-size;
  2634. width: $slideshow-indicator-size;
  2635. margin: 0 5px;
  2636. padding: 0;
  2637. cursor: pointer;
  2638.  
  2639. &.slick-active button:before {
  2640. color: $slick-dot-color-active;
  2641. }
  2642. }
  2643.  
  2644. button,
  2645. a {
  2646. border: 0;
  2647. background: transparent;
  2648. display: block;
  2649. height: $slideshow-indicator-size;
  2650. width: $slideshow-indicator-size;
  2651. line-height: 0;
  2652. font-size: 0;
  2653. color: transparent;
  2654. cursor: pointer;
  2655.  
  2656. &:before {
  2657. position: absolute;
  2658. top: 0;
  2659. left: 0;
  2660. content: $slick-dot-character;
  2661. width: $slideshow-indicator-size;
  2662. height: $slideshow-indicator-size;
  2663. font-family: $slick-font-family;
  2664. font-size: 0.375rem;
  2665. line-height: $slideshow-indicator-size;
  2666. text-align: center;
  2667. color: $slick-dot-color;
  2668. -webkit-font-smoothing: antialiased;
  2669. -moz-osx-font-smoothing: grayscale;
  2670. }
  2671. }
  2672. }
  2673.  
  2674. .hero .slick-dots {
  2675. margin: 0 auto;
  2676. bottom: 0.9rem;
  2677. width: 8rem;
  2678. left: 0;
  2679. right: 0;
  2680.  
  2681. a:hover {
  2682. &:before {
  2683. top: -0.125rem;
  2684. }
  2685. }
  2686. }
  2687.  
  2688. .hero__controls {
  2689. width: 100%;
  2690. height: $slideshow-control-size;
  2691. position: absolute;
  2692. left: 0;
  2693. right: 0;
  2694. bottom: 0;
  2695.  
  2696. li {
  2697. margin-bottom: 0;
  2698. list-style: none;
  2699. }
  2700. }
  2701.  
  2702. .hero__pause {
  2703. position: absolute;
  2704. right: 4.5rem;
  2705. transition: bottom 0.1s linear;
  2706. bottom: 0;
  2707. height: $slideshow-control-size;
  2708. width: $slideshow-control-size;
  2709. font-size: 0.6rem;
  2710. line-height: 0.6rem;
  2711.  
  2712. &:hover {
  2713. bottom: 0.125rem;
  2714. }
  2715.  
  2716. & .icon {
  2717. height: 0.4rem;
  2718. }
  2719. }
  2720.  
  2721. .icon-pause {
  2722. display: block;
  2723.  
  2724. .is-paused & {
  2725. display: none;
  2726. }
  2727. }
  2728.  
  2729. .icon-play {
  2730. display: none;
  2731.  
  2732. .is-paused & {
  2733. display: block;
  2734. }
  2735. }
  2736.  
  2737. /*================ Module | Collection images at top of templates ================*/
  2738. .collection-hero {
  2739. margin-top: -$contentTopMarginSmall;
  2740. margin-bottom: $contentTopMarginSmall;
  2741. overflow: hidden;
  2742.  
  2743. @include at-query($min, $large) {
  2744. margin-top: -$contentTopMargin + ($gutter / 2);
  2745. margin-bottom: $contentTopMargin;
  2746. }
  2747.  
  2748. @include at-query($max, $medium) {
  2749. margin-bottom: $gutter * 2;
  2750. }
  2751. }
  2752.  
  2753. .collection-hero__image-wrapper {
  2754. position: relative;
  2755.  
  2756. .no-js & {
  2757. @include visuallyHidden;
  2758. }
  2759. }
  2760.  
  2761. .collection-hero__image-wrapper:after {
  2762. padding-bottom: 70%;
  2763. content: '';
  2764. display: block;
  2765. height: 0;
  2766. width: 100%;
  2767.  
  2768. @include at-query($min, $large) {
  2769. padding-bottom: 45%;
  2770. }
  2771. }
  2772.  
  2773. .collection-hero__image {
  2774. position: absolute;
  2775. display: block;
  2776. width: 100%;
  2777. object-fit: cover;
  2778. object-position: 50% 50%;
  2779. // Used for the IE lazysizes object-fit polyfill
  2780. font-family: "object-fit: cover";
  2781. opacity: 0;
  2782.  
  2783. &.is-init {
  2784. opacity: 1;
  2785. @include animation(fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87));
  2786. }
  2787. }
  2788.  
  2789. .collection-hero__image-no-js {
  2790. padding-bottom: 70%;
  2791. background-size: cover;
  2792. background-position: 50% 50%;
  2793. background-repeat: no-repeat;
  2794. opacity: 1;
  2795.  
  2796. @include at-query($min, $large) {
  2797. padding-bottom: 45%;
  2798. }
  2799. }
  2800.  
  2801. .filter-dropdown__label {
  2802. margin-right: 0.3em;
  2803. }
  2804. /*================ Module | Theme Header and Navigation Overrides ================*/
  2805. @include at-query($max, $medium) {
  2806. .site-header {
  2807. padding: 0;
  2808.  
  2809. .grid--table {
  2810. height: $drawerHeaderHeight;
  2811. }
  2812. }
  2813. }
  2814.  
  2815. .site-header__logo .logo--inverted {
  2816. opacity: 0;
  2817. visibility: hidden;
  2818. overflow: hidden;
  2819. height: 0;
  2820.  
  2821. .is-light & {
  2822. opacity: 1;
  2823. visibility: visible;
  2824. height: auto;
  2825. }
  2826. }
  2827.  
  2828. /*================ Text Shop Name ================*/
  2829. .site-header__logo {
  2830. font-size: em(20px);
  2831.  
  2832. @include at-query($min, $large) {
  2833. text-align: left;
  2834. font-size: em(25px);
  2835. }
  2836.  
  2837. @include at-query($max, $medium) {
  2838. img {
  2839. max-height: $drawerHeaderHeight - ($gutter / 2); // account for border-box height
  2840. margin-top: $gutter / 3;
  2841. margin-bottom: $gutter / 3;
  2842. }
  2843. }
  2844. }
  2845.  
  2846. .site-header__logo a,
  2847. .header-logo a {
  2848. @include transition(color 0.2s);
  2849. @include accentFontStack;
  2850. }
  2851.  
  2852. /*================ Nav Links ================*/
  2853. .site-nav,
  2854. .site-nav--open {
  2855. white-space: nowrap;
  2856. opacity: 0;
  2857.  
  2858. .no-js &,
  2859. &.site-nav--init {
  2860. opacity: 1;
  2861. @include transition("color 0.2s, opacity 0.1s");
  2862. }
  2863. }
  2864.  
  2865. .burger-icon {
  2866. display: block;
  2867. height: 2px;
  2868. width: 18px;
  2869. left: 25px;
  2870. margin-left: -9px;
  2871. position: absolute;
  2872. transition: all 0.25s ease-out;
  2873. background: $colorNavText;
  2874.  
  2875. .js-drawer-open-left & {
  2876. width: 24px;
  2877. top: calc(50% - 1px);
  2878. left: calc(50% - 4px);
  2879. }
  2880.  
  2881. @include at-query($min, $large) {
  2882. width: 20px;
  2883. left: 27px;
  2884. margin-left: -12px;
  2885.  
  2886. .js-drawer-open-left & {
  2887. width: 25px;
  2888. top: calc(50% - 1px);
  2889. left: calc(50% - 2px);
  2890. }
  2891. }
  2892. }
  2893.  
  2894. .burger-icon--top {
  2895. top: 17px;
  2896.  
  2897. .js-drawer-open-left & {
  2898. top: 25px;
  2899. @include transform(rotate(45deg));
  2900. }
  2901. }
  2902.  
  2903. .burger-icon--mid {
  2904. top: 24px;
  2905.  
  2906. .js-drawer-open-left & {
  2907. opacity: 0;
  2908. }
  2909. }
  2910.  
  2911. .burger-icon--bottom {
  2912. top: 31px;
  2913.  
  2914. .js-drawer-open-left & {
  2915. top: 25px;
  2916. @include transform(rotate(-45deg));
  2917. }
  2918. }
  2919.  
  2920. .site-nav__link--burger {
  2921. width: 50px;
  2922. height: 50px;
  2923. padding: 0;
  2924. text-align: center;
  2925. line-height: 50px;
  2926. background-color: transparent;
  2927. border: 0;
  2928. position: relative;
  2929. top: 4px;
  2930. transition: transform 0.15s ease-out;
  2931.  
  2932. svg {
  2933. width: 20px;
  2934. height: 30px;
  2935. }
  2936.  
  2937. &::after {
  2938. border-color: #000;
  2939. }
  2940. }
  2941.  
  2942. .site-nav__item {
  2943. white-space: normal;
  2944. }
  2945.  
  2946. .site-nav__link {
  2947. @include accentFontStack;
  2948. @include transition(color 0.2s);
  2949. font-size: em(14px);
  2950. }
  2951.  
  2952. .site-nav--has-dropdown {
  2953. > a {
  2954. position: relative;
  2955. z-index: $zindexNavDropdowns + 1;
  2956. }
  2957.  
  2958. &:hover > a,
  2959. > a.nav-focus,
  2960. &.nav-hover > a {
  2961. color: $colorNavText;
  2962. background-color: $colorNav;
  2963. opacity: 1;
  2964. @include transition(none);
  2965.  
  2966. &:before {
  2967. content: "";
  2968. position: absolute;
  2969. left: $gutter / 2;
  2970. right: $gutter;
  2971. bottom: 0;
  2972. display: block;
  2973. background-color: $colorNavText;
  2974. height: 1px;
  2975. z-index: $zindexNavDropdowns + 1;
  2976. }
  2977. }
  2978.  
  2979. &.site-nav--has-dropdown-grandchild {
  2980. a:before {
  2981. display: none;
  2982. }
  2983. }
  2984. }
  2985.  
  2986. /*================ Dropdown Animation ================*/
  2987. .site-nav__dropdown {
  2988. background-color: $colorNav;
  2989. min-width: 100%;
  2990. padding: ($gutter / 3) 0;
  2991. box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.09);
  2992. @include transform(translate3d(0px, -12px, 0px));
  2993.  
  2994. .supports-no-touch .site-nav--has-dropdown:hover &,
  2995. .site-nav--has-dropdown.nav-hover &,
  2996. .nav-focus + & {
  2997. opacity: 1;
  2998. pointer-events: auto;
  2999. @include transform(translate3d(0px, 0px, 0px));
  3000. }
  3001.  
  3002. .supports-no-touch .site-nav--has-dropdown:hover &,
  3003. .site-nav--has-dropdown.nav-hover & {
  3004. @include transition("transform 300ms cubic-bezier(0.2, .06, .05, .95)");
  3005. }
  3006. }
  3007.  
  3008. .site-nav__dropdown-grandchild {
  3009. min-width: 100%;
  3010. box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.09);
  3011. @include transform(translate3d(-12px, 0px, 0px));
  3012.  
  3013. .nav-outside + & {
  3014. @include transform(translate3d(12px, 0px, 0px));
  3015. }
  3016.  
  3017. .supports-no-touch .site-nav--has-dropdown-grandchild:hover &,
  3018. .site-nav--has-dropdown-grandchild.nav-hover &,
  3019. .nav-focus + & {
  3020. opacity: 1;
  3021. pointer-events: initial;
  3022. @include transform(translate3d(0px, 0px, 0px));
  3023. }
  3024.  
  3025. .supports-no-touch .site-nav--has-dropdown-grandchild:hover &,
  3026. .site-nav--has-dropdown-grandchild.nav-hover & {
  3027. @include transition("transform 300ms cubic-bezier(0.2, .06, .05, .95)");
  3028. }
  3029. }
  3030.  
  3031. /*================ Submenu items ================*/
  3032. .site-nav__dropdown a,
  3033. .site-nav__grandchild-dropdown a {
  3034. background-color: transparent;
  3035. color: $colorTextBody;
  3036.  
  3037. &:hover,
  3038. &:active,
  3039. &:focus {
  3040. background-color: transparent;
  3041. color: $colorSecondary;
  3042. }
  3043. }
  3044.  
  3045. .site-nav__dropdown-link {
  3046. @include bodyFontItalic;
  3047. display: block;
  3048. white-space: nowrap;
  3049. padding: 5px 15px;
  3050. font-size: em(16px);
  3051. .site-nav--has-grandchildren & {
  3052. padding-right: $gutter * 1.5;
  3053. }
  3054. }
  3055.  
  3056. /*================ Compressed nav if too many links ================*/
  3057. .site-nav--compress {
  3058. .site-nav__item:not(.site-nav__item--compressed) {
  3059. display: none;
  3060. }
  3061. }
  3062.  
  3063. .site-nav--open {
  3064. @include at-query($min, $large) {
  3065. display: none;
  3066. }
  3067.  
  3068. &.site-nav--open__display {
  3069. display: inline-block;
  3070. }
  3071. }
  3072.  
  3073. /*================ Search bar ================*/
  3074. .site-nav--search__bar {
  3075. vertical-align: middle;
  3076. padding: 0 10px 7px 0;
  3077.  
  3078. input {
  3079. background-color: $colorInputBg;
  3080. }
  3081. }
  3082.  
  3083. /*================ Module | Theme Tags ================*/
  3084. .tags {
  3085. a {
  3086. padding: 4px ($gutter / 2);
  3087. @include accentFontStack;
  3088. font-size: em(13px);
  3089. letter-spacing: 0.15em;
  3090. }
  3091. }
  3092.  
  3093. .tags--collection {
  3094. max-width: 75%;
  3095. margin: 0 auto 25px;
  3096.  
  3097. @include at-query($min, $large) {
  3098. li {
  3099. display: inline-block;
  3100. }
  3101. }
  3102.  
  3103. @include at-query($max, $small) {
  3104. li {
  3105. display: block;
  3106. }
  3107. }
  3108.  
  3109. }
  3110.  
  3111. .tags--article {
  3112. a {
  3113. padding-right: $gutter / 2;
  3114. padding-left: 0;
  3115. }
  3116. }
  3117.  
  3118. .tags__title {
  3119. margin-right: $gutter / 2;
  3120. }
  3121.  
  3122. .tag--active {
  3123. a {
  3124. color: $colorSecondary;
  3125. }
  3126. }
  3127.  
  3128. .single-option-radio {
  3129. border: 0;
  3130. padding-top: 0;
  3131. position: relative;
  3132. background-color: $colorBody;
  3133.  
  3134. input {
  3135. @include visuallyHidden;
  3136. }
  3137.  
  3138. label {
  3139. @include accentFontStack;
  3140. position: relative;
  3141. display: inline-block;
  3142. line-height: 1;
  3143. padding: 9px 11px;
  3144. margin: 3px 4px 7px 3px;
  3145. font-size: em(13px);
  3146. font-style: normal;
  3147. background-color: $colorBody;
  3148. border: 1px solid $colorBody;
  3149. color: $colorHeadings;
  3150.  
  3151. &.disabled:before {
  3152. position: absolute;
  3153. content: "";
  3154. left: 50%;
  3155. top: 0;
  3156. bottom: 0;
  3157. border-left: 1px solid;
  3158. border-color: $colorTextBody;
  3159. @include transform(rotate(45deg));
  3160. }
  3161.  
  3162. &:active,
  3163. &:focus {
  3164. background-color: adaptive-color($colorBody, 5%);
  3165. border-color: adaptive-color($colorBody, 5%);
  3166. }
  3167. }
  3168.  
  3169. //style selected radio button's label
  3170. input[type='radio']:checked + label {
  3171. border-color: $colorHeadings;
  3172. }
  3173.  
  3174. //style label on input focus
  3175. input[type='radio']:focus + label {
  3176. background-color: adaptive-color($colorBody, 5%);
  3177. }
  3178. }
  3179.  
  3180. .radio-wrapper .single-option-radio__label {
  3181. display: block;
  3182. margin-bottom: 10px;
  3183. cursor: default;
  3184. font-style: normal;
  3185. }
  3186.  
  3187. .product-form__item{
  3188. margin-bottom: 13px;
  3189. }
  3190.  
  3191. /*================ Module | Product Lightbox ================*/
  3192.  
  3193. .mfp-bg {
  3194. background-color: $colorBody;
  3195.  
  3196. &.mfp-fade {
  3197. -webkit-backface-visibility: hidden;
  3198. opacity: 0;
  3199. @include transition(all 0.3s ease-out);
  3200.  
  3201. //background opacity after load
  3202. &.mfp-ready {
  3203. opacity: 1;
  3204. filter: alpha(opacity=100);
  3205. }
  3206.  
  3207.  
  3208. &.mfp-removing {
  3209. @include transition(all 0.3s ease-out);
  3210. opacity: 0;
  3211. filter: alpha(opacity=0);
  3212. }
  3213. }
  3214. }
  3215.  
  3216. .mfp-fade {
  3217. &.mfp-wrap {
  3218. .mfp-content {
  3219. opacity: 0;
  3220. @include transition(all 0.3s ease-out);
  3221. }
  3222.  
  3223. &.mfp-ready {
  3224. .mfp-content {
  3225. opacity: 1;
  3226. }
  3227. }
  3228.  
  3229. &.mfp-removing {
  3230. @include transition(all 0.3s ease-out);
  3231. .mfp-content {
  3232. opacity: 0;
  3233. }
  3234.  
  3235. button {
  3236. opacity: 0;
  3237. }
  3238. }
  3239. }
  3240.  
  3241. }
  3242.  
  3243. .mfp-counter {
  3244. display: none;
  3245. }
  3246.  
  3247. .mfp-figure {
  3248. .mfp-gallery .mfp-image-holder & {
  3249. cursor: zoom-out;
  3250. }
  3251.  
  3252. &:after {
  3253. box-shadow: none;
  3254. }
  3255. }
  3256.  
  3257. .mfp-img {
  3258. background-color: $colorProductBackground;
  3259. }
  3260.  
  3261. button.mfp-close {
  3262. margin: 30px;
  3263. font-size: em(40px);
  3264. font-weight: 300px;
  3265. opacity: 1;
  3266. filter: alpha(opacity=100);
  3267. color: $colorTextBody;
  3268. }
  3269.  
  3270. button.mfp-arrow {
  3271. top: 0;
  3272. height: 100%;
  3273. width: 20%;
  3274. margin: 0;
  3275. opacity: 1;
  3276. filter: alpha(opacity=100);
  3277. z-index: 1045;
  3278.  
  3279. &:after,
  3280. & .mfp-a {
  3281. display: none;
  3282. }
  3283.  
  3284. &:before,
  3285. & .mfp-b {
  3286. display: none;
  3287. }
  3288.  
  3289. &:active {
  3290. margin-top: 0;
  3291. }
  3292. }
  3293.  
  3294. .mfp-chevron {
  3295. position: absolute;
  3296. pointer-events: none;
  3297.  
  3298. &:before {
  3299. content: '';
  3300. display: inline-block;
  3301. position: relative;
  3302. vertical-align: top;
  3303. height: 25px;
  3304. width: 25px;
  3305. border-style: solid;
  3306. border-width: 4px 4px 0 0;
  3307. @include transform(rotate(-45deg));
  3308. }
  3309.  
  3310. &.mfp-chevron-right {
  3311. right: 55px;
  3312.  
  3313. &:before {
  3314. @include transform(rotate(45deg));
  3315. }
  3316. }
  3317.  
  3318. &.mfp-chevron-left {
  3319. left: 55px;
  3320.  
  3321. &:before {
  3322. @include transform(rotate(-135deg));
  3323. }
  3324. }
  3325. }
  3326.  
  3327.  
  3328. .grid-product__wrapper {
  3329. text-align: center;
  3330. margin-bottom: $gutter;
  3331.  
  3332. .grid-collage & {
  3333. margin-bottom: 0;
  3334. }
  3335. }
  3336.  
  3337. .grid-product__image-wrapper {
  3338. position: relative;
  3339. width: 100%;
  3340. display: table;
  3341. table-layout: fixed;
  3342. }
  3343.  
  3344. .grid-product__image-link {
  3345. position: relative;
  3346. display: block;
  3347. width: 100%;
  3348. background-color: $colorProductBackground;
  3349. @include transition(opacity 0.4s ease-out);
  3350.  
  3351. .grid-collage & {
  3352. padding: 0 20px;
  3353. }
  3354.  
  3355. &:hover,
  3356. &:focus {
  3357. opacity: 0.9;
  3358. @include transition(opacity 0.15s ease-in);
  3359. }
  3360.  
  3361. .grid-uniform & {
  3362. display: table-cell;
  3363. vertical-align: middle;
  3364. overflow: hidden;
  3365. }
  3366. }
  3367.  
  3368. .grid-product__image-link--loading {
  3369. background-color: $colorTextBody;
  3370. @include animation(placeholder-background-loading 1.5s infinite linear);
  3371. }
  3372.  
  3373. .grid-product__image {
  3374. display: block;
  3375. margin: 0 auto;
  3376. }
  3377.  
  3378. @include at-query($max, $small) {
  3379. .grid-uniform {
  3380. .grid-product__image-wrapper {
  3381. height: auto !important;
  3382. }
  3383. }
  3384. }
  3385.  
  3386. .grid-collage {
  3387. .grid-product__image {
  3388. position: absolute;
  3389. top: 50%;
  3390. left: 50%;
  3391. max-height: 100%;
  3392. max-width: 100%;
  3393. padding: 20px;
  3394. @include prefix('transform', 'translate(-50%, -50%)');
  3395. @include backface();
  3396. }
  3397. }
  3398.  
  3399. .product--wrapper {
  3400. margin: 0 auto;
  3401. position: relative;
  3402. width: 100%;
  3403.  
  3404. @include at-query($max, $small) {
  3405. margin: 20px auto;
  3406. }
  3407. }
  3408.  
  3409. .product--image {
  3410. width: 100%;
  3411. position: absolute;
  3412. top: 0;
  3413. left: 0;
  3414.  
  3415. &.lazyload {
  3416. opacity: 0;
  3417. }
  3418.  
  3419. .is-sold-out & {
  3420. opacity: 0.5;
  3421. }
  3422. }
  3423.  
  3424. .grid-product__meta {
  3425. position: relative;
  3426. display: block;
  3427. padding: 13px 0;
  3428. }
  3429.  
  3430. .grid-product__price-wrap {
  3431. white-space: nowrap;
  3432. }
  3433.  
  3434. .long-dash {
  3435. margin: 0 4px;
  3436. }
  3437.  
  3438. .grid-product__title {
  3439. @include bodyFontItalic;
  3440. font-size: em(floor($baseFontSize * 1.25)); //20px based on 16px base font size
  3441. }
  3442.  
  3443. .grid-product__vendor {
  3444. @include accentFontStack;
  3445. letter-spacing: 0.2em;
  3446. font-size: em(11px);
  3447. margin: 1px 0;
  3448. }
  3449.  
  3450. .grid-product__price {
  3451. @include accentFontStack;
  3452. font-size: em(14px);
  3453. }
  3454.  
  3455. .grid-product__price-min {
  3456. position: relative;
  3457. top: -1px;
  3458. font-size: em(10px);
  3459. margin-left: -4px;
  3460. }
  3461.  
  3462. .grid-product__sold-out,
  3463. .grid-product__on-sale {
  3464. @include accentFontStack;
  3465. font-size: em(11px);
  3466. line-height: 1.3;
  3467. position: absolute;
  3468. min-width: 50px;
  3469. border-radius: 25px;
  3470. top: -8px;
  3471. left: -8px;
  3472.  
  3473. p {
  3474. padding: 12px 8px 10px 9px;
  3475. margin: 0;
  3476. letter-spacing: 1px;
  3477. }
  3478.  
  3479. sup {
  3480. display: none;
  3481. }
  3482. }
  3483.  
  3484. .grid-product__sold-out {
  3485. color: $colorTextBody;
  3486. border: 1px solid $colorTextBody;
  3487.  
  3488. }
  3489.  
  3490. .grid-product__on-sale {
  3491. color: $colorSaleTag;
  3492. border: 1px solid $colorSaleTag;
  3493. }
  3494.  
  3495. @include keyframes(placeholder-background-loading) {
  3496. 0% {
  3497. opacity: 0.02;
  3498. }
  3499.  
  3500. 50% {
  3501. opacity: 0.05;
  3502. }
  3503.  
  3504. 100% {
  3505. opacity: 0.02;
  3506. }
  3507. }
  3508.  
  3509. /*================ Product Carousel ================*/
  3510.  
  3511. .product-single__photos {
  3512. @include at-query($max, $small) {
  3513. margin-top: -$contentTopMarginSmall;
  3514. margin-left: -($gutter / 2);
  3515. margin-right: -($gutter / 2);
  3516. padding-bottom: 55px;
  3517. }
  3518.  
  3519. .slick-dots {
  3520. background-color: $colorProductBackground;
  3521. bottom: 0;
  3522. padding: 15px;
  3523. }
  3524.  
  3525. .slick-dots li button {
  3526. &:before {
  3527. background-color: $colorTextBody;
  3528. opacity: 0.2;
  3529. width: 9px;
  3530. height: 9px;
  3531. }
  3532. }
  3533.  
  3534. .slick-dots li.slick-active button {
  3535. &:before {
  3536. background-color: $colorTextBody;
  3537. border-color: $colorTextBody;
  3538. opacity: 1;
  3539. width: 11px;
  3540. height: 11px;
  3541. }
  3542. }
  3543.  
  3544. }
  3545.  
  3546. .product-recommendations {
  3547. margin-top: $gutter * 3;
  3548.  
  3549. @include at-query($max, $medium) {
  3550. margin-top: $gutter * 1.5;
  3551. }
  3552. }
  3553.  
  3554. /*================ Rich text section ================*/
  3555. .rich-text {
  3556. .section-header {
  3557. margin-bottom: $gutter / 2.5;
  3558. }
  3559. }
  3560.  
  3561. .rich-text__heading--large {
  3562. font-size: em(floor($headerBaseFontSize * 1.2));
  3563. }
  3564. .rich-text__heading--small {
  3565. font-size: em(floor($headerBaseFontSize * 0.8));
  3566. }
  3567.  
  3568. .rich-text__text--large {
  3569. font-size: em(floor($baseFontSize * 1.2));
  3570. }
  3571. .rich-text__text--small {
  3572. font-size: em(floor($baseFontSize * 0.925));
  3573. }
  3574.  
  3575. /*================ Modules | Theme collection grid item ================*/
  3576. .collection-collage__item {
  3577. overflow: hidden;
  3578. }
  3579.  
  3580. .collection-collage__item-wrapper {
  3581. position: relative;
  3582. overflow: hidden;
  3583. height: 100%;
  3584. width: 100%;
  3585.  
  3586. .collection-grid__item-overlay {
  3587. position: relative;
  3588. @include transition(all 0.8s ease);
  3589.  
  3590. &:after {
  3591. content: '';
  3592. position: absolute;
  3593. top: 0;
  3594. right: 0;
  3595. bottom: 0;
  3596. left: 0;
  3597. opacity: 0.25;
  3598. background-color: #000;
  3599. @include transition(all 0.8s ease);
  3600. }
  3601.  
  3602. &:hover,
  3603. &:focus {
  3604. @include transform(scale(1.03));
  3605.  
  3606. &:after {
  3607. opacity: 0.5;
  3608. }
  3609. }
  3610. }
  3611. }
  3612.  
  3613. .collection-grid__item-link {
  3614. display: block;
  3615. width: 100%;
  3616. height: 100%;
  3617. }
  3618.  
  3619. .collection-grid__item-overlay {
  3620. display: block;
  3621. overflow: hidden;
  3622. height: 100%;
  3623. width: 100%;
  3624. background-size: cover;
  3625. background-repeat: no-repeat;
  3626. background-position: center;
  3627. }
  3628.  
  3629. .collection-grid__item-title--wrapper {
  3630. position: absolute;
  3631. top: 0;
  3632. height: 100%;
  3633. width: 100%;
  3634. pointer-events: none;
  3635. display: table;
  3636. table-layout: fixed;
  3637. color: #fff;
  3638. cursor: pointer;
  3639.  
  3640. .collection-grid__item-title {
  3641. display: table-cell;
  3642. vertical-align: middle;
  3643. margin: 0 auto;
  3644. }
  3645. }
  3646.  
  3647. .custom-content {
  3648. @include display-flexbox;
  3649. @include align-items(stretch);
  3650. @include flex-wrap(wrap);
  3651. width: auto;
  3652. margin-bottom: -$gridGutter;
  3653. margin-left: -$gridGutter;
  3654.  
  3655. @include at-query($max, $small) {
  3656. margin-bottom: -$gridGutterMobile;
  3657. margin-left: -$gridGutterMobile;
  3658. }
  3659. }
  3660.  
  3661. .custom__item {
  3662. @include flex(0 0 auto);
  3663. margin-bottom: $gridGutter;
  3664. padding-left: $gridGutter;
  3665. max-width: 100%;
  3666.  
  3667. @include at-query($max, $small) {
  3668. @include flex(0 0 auto);
  3669. padding-left: $gridGutterMobile;
  3670. margin-bottom: $gridGutterMobile;
  3671.  
  3672. &.small--one-half {
  3673. @include flex(1 0 50%);
  3674. max-width: 400px;
  3675. margin-left: auto;
  3676. margin-right: auto;
  3677. }
  3678. }
  3679. }
  3680.  
  3681. .custom__item-inner {
  3682. position: relative;
  3683. display: inline-block;
  3684. text-align: left;
  3685. max-width: 100%;
  3686. }
  3687.  
  3688. .custom__item-inner--video,
  3689. .custom__item-inner--html {
  3690. display: block;
  3691. }
  3692.  
  3693. /*================ Flex item alignment ================*/
  3694. .align--top-middle {
  3695. text-align: center;
  3696. }
  3697.  
  3698. .align--top-right {
  3699. text-align: right;
  3700. }
  3701.  
  3702. .align--middle-left {
  3703. @include align-self(center);
  3704. }
  3705.  
  3706. .align--center {
  3707. @include align-self(center);
  3708. text-align: center;
  3709. }
  3710.  
  3711. .align--middle-right {
  3712. @include align-self(center);
  3713. text-align: right;
  3714. }
  3715.  
  3716. .align--bottom-left {
  3717. @include align-self(flex-end);
  3718. }
  3719.  
  3720. .align--bottom-middle {
  3721. @include align-self(flex-end);
  3722. text-align: center;
  3723. }
  3724.  
  3725. .align--bottom-right {
  3726. @include align-self(flex-end);
  3727. text-align: right;
  3728. }
  3729.  
  3730. .featured-blog__post,
  3731. .featured-blog__meta,
  3732. .title--one-post {
  3733. margin-bottom: $gridGutter * 1.75;
  3734.  
  3735. @include at-query($max, $small) {
  3736. margin-bottom: $gridGutterMobile * 1.75;
  3737. }
  3738. }
  3739.  
  3740. .featured-blog__author {
  3741. display: inline-block;
  3742. font-style: italic;
  3743. line-height: 1.7;
  3744.  
  3745. &:after {
  3746. content: '\2022';
  3747. margin: 0 5px;
  3748. }
  3749. }
  3750.  
  3751. .featured-blog__date {
  3752. display: inline-block;
  3753. }
  3754.  
  3755. .article__heading-link {
  3756. color: $colorHeadings;
  3757. }
  3758.  
  3759. .map-section {
  3760. position: relative;
  3761. width: 100%;
  3762. overflow: hidden;
  3763. padding: $gutter * 3 0;
  3764. @include display-flexbox();
  3765. @include align-items(center);
  3766. @include flex-wrap(wrap);
  3767. @include flex-direction(row);
  3768.  
  3769. @include at-query($max, $medium) {
  3770. min-height: auto;
  3771. padding: 0 $gutter;
  3772. margin-top: $gutter * 1.5;
  3773. }
  3774.  
  3775. @include at-query($max, $small) {
  3776. padding: 0 $gutter * 0.5;
  3777. }
  3778.  
  3779. .shopify-section:first-child & {
  3780. margin-top: -110px;
  3781.  
  3782. @include at-query($max, $medium) {
  3783. margin-top: inherit;
  3784. }
  3785. }
  3786. }
  3787.  
  3788. .map-section__wrapper {
  3789. height: 100%;
  3790. flex-shrink: 0;
  3791. flex-grow: 1;
  3792. @include flex-basis(100%);
  3793. @include display-flexbox();
  3794. @include flex-wrap(wrap);
  3795. @include flex-direction(row);
  3796.  
  3797. @include at-query($max, $medium) {
  3798. padding: 0;
  3799. }
  3800. }
  3801.  
  3802. .map-section--load-error {
  3803. height: auto;
  3804. }
  3805.  
  3806. .map-section__overlay {
  3807. position: absolute;
  3808. top: 0;
  3809. right: 0;
  3810. bottom: 0;
  3811. left: 0;
  3812. opacity: 0;
  3813. z-index: 0;
  3814. }
  3815.  
  3816. .map-section__error {
  3817. position: relative;
  3818. z-index: 3;
  3819.  
  3820. @include at-query($max, $medium) {
  3821. position: absolute;
  3822. margin: 0 2rem;
  3823. top: 50%;
  3824. @include transform(translateY(-50%));
  3825. }
  3826. }
  3827.  
  3828. .map-section__content-wrapper {
  3829. position: relative;
  3830. text-align: center;
  3831. height: 100%;
  3832. @include display-flexbox();
  3833. flex-grow: 0;
  3834. }
  3835.  
  3836. .map-section__content {
  3837. position: relative;
  3838. display: inline-block;
  3839. background-color: $colorBody;
  3840. padding: $section-spacing-small;
  3841. width: 100%;
  3842. text-align: center;
  3843. z-index: 3;
  3844. @include display-flexbox();
  3845. @include align-items(center);
  3846. @include flex-wrap(wrap);
  3847. min-height: 350px;
  3848.  
  3849. // Make sure every children is on one line
  3850. & > * {
  3851. width: 100%;
  3852. }
  3853.  
  3854. @include at-query($max, $medium) {
  3855. background-color: $colorNewsletter;
  3856. min-height: auto;
  3857. display: block;
  3858. }
  3859.  
  3860. .map-section--load-error & {
  3861. position: static;
  3862. transform: translateY(0);
  3863. }
  3864. }
  3865.  
  3866. .map-section__link {
  3867. display: block;
  3868. position: absolute;
  3869. top: 0;
  3870. left: 50%;
  3871. max-width: none;
  3872. width: 100%;
  3873. height: 100%;
  3874. z-index: 2;
  3875. @include transform(translateX(-50%));
  3876. }
  3877.  
  3878. // Optically center map in visible area with
  3879. // extended height/widths and negative margins
  3880. .map-section__container {
  3881. position: absolute;
  3882. height: 100%;
  3883. min-height: auto;
  3884. left: 0;
  3885. top: 0;
  3886. // map is centered on resize, larger widths allow pin to be off-center
  3887. width: 130%;
  3888.  
  3889. @include at-query($max, $medium) {
  3890. position: relative;
  3891. max-width: $siteWidth;
  3892. width: 100%;
  3893. height: 55vh;
  3894. }
  3895.  
  3896. }
  3897.  
  3898. .map_section__directions-btn {
  3899. [class^="icon"] {
  3900. height: 1em;
  3901. }
  3902.  
  3903. * {
  3904. vertical-align: middle;
  3905. }
  3906. }
  3907.  
  3908. .map-section__background-wrapper {
  3909. @include flex-basis(100%);
  3910. flex-grow: 0;
  3911. position: absolute;
  3912. left: 0;
  3913. top: 0;
  3914. width: 100%;
  3915. height: 100%;
  3916.  
  3917. @include at-query($max, $medium) {
  3918. overflow: hidden;
  3919. position: relative;
  3920. @include flex-basis(100%);
  3921. }
  3922.  
  3923. .map-section--onboarding & {
  3924. min-height: 350px;
  3925. }
  3926.  
  3927. .placeholder-background {
  3928. height: 100%;
  3929. }
  3930.  
  3931. .js {
  3932. .no-js & {
  3933. @include visuallyHidden();
  3934. }
  3935. }
  3936. }
  3937.  
  3938. .map-section__image {
  3939. height: 100%;
  3940. background-size: cover;
  3941. background-position: center;
  3942. position: absolute;
  3943. top: 0;
  3944. left: 0;
  3945. width: 100%;
  3946.  
  3947. @include at-query($max, $medium) {
  3948. position: relative;
  3949. }
  3950.  
  3951. // Only show the background image if map fails to load
  3952. .map-section--display-map & {
  3953. display: none !important;
  3954. }
  3955.  
  3956. .map-section--load-error & {
  3957. display: block !important;
  3958. }
  3959. }
  3960.  
  3961. // Hide Google maps UI
  3962. .gm-style-cc,
  3963. .gm-style-cc + div {
  3964. visibility: hidden;
  3965. }
  3966.  
  3967. .flex--third {
  3968. @include flex-basis(33%);
  3969.  
  3970. @include at-query($max, $medium) {
  3971. @include flex-basis(100%);
  3972. }
  3973. }
  3974.  
  3975. // Section padding
  3976. .index-newsletter-section + .index-map-section{
  3977. margin-top: 0;
  3978. }
  3979.  
  3980. .index-map-section + .index-newsletter-section {
  3981. margin-top: -60px;
  3982.  
  3983. @include at-query($max, $medium) {
  3984. margin-top: $gutter;
  3985. }
  3986. }
  3987.  
  3988.  
  3989. /*================ View-specific styles ================*/
  3990. /*================ Templates | Theme Blog ================*/
  3991. .article {
  3992. margin-bottom: -($gutter / 2);
  3993. }
  3994.  
  3995. .article__featured-image-wrapper {
  3996. position: relative;
  3997.  
  3998. .no-js & {
  3999. @include visuallyHidden();
  4000. }
  4001. }
  4002.  
  4003. .article__featured-image {
  4004. display: block;
  4005. margin: 0 auto;
  4006. position: absolute;
  4007. width: 100%;
  4008. top: 0;
  4009. bottom: 0;
  4010. left: 0;
  4011. }
  4012.  
  4013. .article__featured-image-link {
  4014. display: block;
  4015. margin-bottom: $gutter;
  4016. }
  4017.  
  4018. /*================ RSS ================*/
  4019. .rss-link {
  4020. font-size: 0.6em;
  4021. }
  4022.  
  4023. /*================ Comments ================*/
  4024. .comment.last {
  4025. margin-bottom: -($gutter / 2);
  4026. }
  4027.  
  4028. /*============= Templates | Password page =============*/
  4029.  
  4030. .template-password {
  4031. height: 100vh;
  4032. text-align: center;
  4033. }
  4034.  
  4035. .password-page__wrapper {
  4036. display: table;
  4037. height: 100%;
  4038. width: 100%;
  4039.  
  4040. @if $passwordPageUseBgImage {
  4041. background-image: url({{ "password-page-background.jpg" | asset_url }});
  4042. background-size: cover;
  4043. background-repeat: no-repeat;
  4044. color: #ffffff;
  4045. } @else {
  4046. color: $colorTextBody;
  4047. }
  4048.  
  4049. h1,
  4050. h2,
  4051. h3,
  4052. h4,
  4053. h5,
  4054. h6 {
  4055. @if $passwordPageUseBgImage {
  4056. color: #ffffff;
  4057. } @else {
  4058. color: $colorTextBody;
  4059. }
  4060. }
  4061.  
  4062. a {
  4063. color: inherit;
  4064. }
  4065.  
  4066. hr {
  4067. @if $passwordPageUseBgImage {
  4068. border-color: inherit;
  4069. } @else {
  4070. border-color: $colorBorder;
  4071. }
  4072. }
  4073.  
  4074. .rte a:hover {
  4075. color: $colorSecondary;
  4076. border-bottom: 1px solid $colorSecondary;
  4077. }
  4078.  
  4079. .social-sharing.clean a {
  4080. color: inherit;
  4081. background: transparent;
  4082. }
  4083. }
  4084.  
  4085. .password-header-section {
  4086. display: table-row;
  4087. }
  4088.  
  4089. .password-page__header {
  4090. display: table-cell;
  4091. height: 1px;
  4092. }
  4093.  
  4094. .password-page__header__inner {
  4095. padding: ($gutter / 2) $gutter;
  4096. }
  4097.  
  4098. .password-page__logo {
  4099. margin-top: 3 * $gutter;
  4100.  
  4101. .logo {
  4102. max-width: 100%;
  4103. }
  4104. }
  4105.  
  4106. .password-page__main {
  4107. display: table-row;
  4108. width: 100%;
  4109. height: 100%;
  4110. margin: 0 auto;
  4111. }
  4112.  
  4113. .password-page__main__inner {
  4114. display: table-cell;
  4115. vertical-align: middle;
  4116. padding: ($gutter / 2) $gutter;
  4117. }
  4118.  
  4119. .password-page__hero {
  4120. font-family: $headerFontStack;
  4121. font-weight: $headerFontWeight;
  4122. font-style: $headerFontStyle;
  4123. font-size: em(42px);
  4124. line-height: 1.25;
  4125. text-transform: none;
  4126. letter-spacing: 0;
  4127. text-rendering: optimizeLegibility;
  4128.  
  4129. @include at-query($min, $postSmall) {
  4130. font-size: em(60px);
  4131. }
  4132.  
  4133. @include at-query($min, $large) {
  4134. font-size: em(64px);
  4135. }
  4136. }
  4137.  
  4138. .password-page__message {
  4139. font-style: italic;
  4140. font-size: 120%;
  4141.  
  4142. img {
  4143. max-width: 100%;
  4144. }
  4145. }
  4146.  
  4147. .password-page__hr {
  4148. margin: $gutter auto;
  4149. }
  4150.  
  4151. .password-page__message,
  4152. .password-page__login-form,
  4153. .password-page__signup-form {
  4154. max-width: 500px;
  4155. margin: 0 auto;
  4156. }
  4157.  
  4158. .password-page__login-form {
  4159. text-align: center;
  4160. padding: $gutter;
  4161. }
  4162.  
  4163. .password-page__login-form,
  4164. .password-page__signup-form {
  4165. @include at-query($min, $small) {
  4166. padding: 0 $gutter;
  4167. }
  4168.  
  4169. .input-group {
  4170. width: 100%;
  4171. }
  4172.  
  4173. .errors ul {
  4174. list-style-type: none;
  4175. margin-left: 0;
  4176. }
  4177. }
  4178.  
  4179. .password-page__signup-form__heading {
  4180. margin-bottom: 0.8em;
  4181. }
  4182.  
  4183. .password-page__social-sharing {
  4184. margin-top: $gutter;
  4185. }
  4186.  
  4187. .password-page__social-sharing__heading {
  4188. margin-bottom: 0;
  4189. }
  4190.  
  4191. .password-login,
  4192. .admin-login {
  4193. margin-top: $gutter / 2;
  4194. a:hover {
  4195. color: inherit;
  4196. }
  4197. }
  4198.  
  4199. .password-login {
  4200. @include accentFontStack;
  4201. font-size: em(0.8 * $baseFontSize);
  4202. line-height: 0.8 * $baseFontSize;
  4203. }
  4204.  
  4205. .lock-icon-svg {
  4206. width: 0.8 * $baseFontSize;
  4207. height: 0.8 * $baseFontSize;
  4208. display: inline-block;
  4209. vertical-align: baseline;
  4210.  
  4211. path {
  4212. fill: currentColor;
  4213. }
  4214. }
  4215.  
  4216. .admin-login {
  4217. font-size: 95%;
  4218. }
  4219.  
  4220. .password-page__footer {
  4221. display: table-row;
  4222. height: 1px;
  4223. }
  4224.  
  4225. .password-page__footer_inner {
  4226. display: table-cell;
  4227. vertical-align: bottom;
  4228. padding: $gutter;
  4229. line-height: 1.5 * $baseFontSize;
  4230. font-size: 95%;
  4231. }
  4232.  
  4233. .shopify-link {
  4234. color: inherit;
  4235.  
  4236. &:hover {
  4237. color: inherit;
  4238. }
  4239. }
  4240.  
  4241. .shopify-logo-svg {
  4242. width: 1.5 * $baseFontSize * 120 / 35;
  4243. height: 1.5 * $baseFontSize;
  4244. display: inline-block;
  4245. line-height: 0;
  4246. vertical-align: top;
  4247.  
  4248. path {
  4249. fill: currentColor;
  4250. }
  4251. }
  4252.  
  4253. /* =========
  4254. Hiding the word 'Shopify' but not from screen readers.
  4255. ========= */
  4256.  
  4257. .shopify-name {
  4258. @include visuallyHidden;
  4259. }
  4260.  
  4261. .order-table {
  4262.  
  4263. tbody tr + tr {
  4264. border-top: lightgray;
  4265. }
  4266.  
  4267. thead {
  4268. border-bottom: 1px solid $colorTextBody;
  4269. }
  4270.  
  4271. tfoot {
  4272. border-top: 1px solid $colorTextBody;
  4273.  
  4274. tr {
  4275. &:first-child th,
  4276. &:first-child td {
  4277. padding-top: 1.5em;
  4278. }
  4279.  
  4280. &:nth-last-child(2) th,
  4281. &:nth-last-child(2) td {
  4282. padding-bottom: 1.5em;
  4283. }
  4284.  
  4285. &:last-child th,
  4286. &:last-child td {
  4287. border-top: 1px solid $colorTextBody;
  4288. font-weight: normal;
  4289. padding-top: 1.5em;
  4290. padding-bottom: 1em;
  4291. font-size: em(13px);
  4292. letter-spacing: 0.15em;
  4293. @include accentFontStack;
  4294. }
  4295. }
  4296. }
  4297.  
  4298. // Reset theme default table styles
  4299. td,
  4300. th {
  4301. padding: 0.5em 1em;
  4302. }
  4303.  
  4304. tbody th,
  4305. tfoot th {
  4306. font-family: $bodyFontStack;
  4307. font-weight: normal;
  4308. text-transform: none;
  4309. font-size: $baseFontSize;
  4310. letter-spacing: 0;
  4311. }
  4312.  
  4313. tr {
  4314.  
  4315. th:first-child {
  4316. padding-left: 0;
  4317. }
  4318.  
  4319. th:last-child,
  4320. td:last-child {
  4321. padding-right: 0;
  4322. }
  4323. }
  4324.  
  4325. tr:first-child th,
  4326. tr:first-child td {
  4327. &::after {
  4328. display: none;
  4329. }
  4330. }
  4331.  
  4332. @include at-query($min, $postSmall) {
  4333.  
  4334. tbody {
  4335. tr {
  4336. &:first-child th,
  4337. &:first-child td {
  4338. padding-top: 1.25em;
  4339. }
  4340.  
  4341. &:last-child th,
  4342. &:last-child td {
  4343. padding-bottom: 1.25em;
  4344. }
  4345. }
  4346. }
  4347.  
  4348. tfoot {
  4349. tr {
  4350. td, th {
  4351. vertical-align: bottom;
  4352. }
  4353. }
  4354. }
  4355. }
  4356.  
  4357. @include at-query($max, $small) {
  4358. border: 0;
  4359.  
  4360. thead {
  4361. display: none;
  4362. }
  4363.  
  4364. th,
  4365. td {
  4366. float: left;
  4367. clear: left;
  4368. width: 100%;
  4369. text-align: right;
  4370. padding: 0.5rem 0;
  4371. border: 0;
  4372. margin: 0;
  4373. }
  4374.  
  4375. th::before,
  4376. td::before {
  4377. content: attr(data-label);
  4378. float: left;
  4379. text-align: left;
  4380. padding-right: 2em;
  4381. max-width: 80%;
  4382. }
  4383.  
  4384. tbody th::before,
  4385. tbody td::before {
  4386. font-size: em(13px);
  4387. letter-spacing: 0.15em;
  4388. @include accentFontStack;
  4389. }
  4390.  
  4391. tbody {
  4392. tr {
  4393. td:first-child {
  4394. padding-top: 1.5em;
  4395. }
  4396. td:last-child {
  4397. padding-bottom: 1.5em;
  4398. }
  4399. }
  4400. }
  4401. }
  4402. }
  4403.  
  4404. .order-table__product {
  4405. @include at-query($max, $small) {
  4406. display: flex;
  4407. justify-content: space-between;
  4408. }
  4409. }
  4410.  
  4411. .order-discount {
  4412. text-transform: uppercase;
  4413. color: $colorSaleTag;
  4414. display: block;
  4415. line-height: 1.2em;
  4416.  
  4417. .icon-saletag {
  4418. margin-right: 0.5em;
  4419. font-size: 0.75em;
  4420. }
  4421. }
  4422.  
  4423. .order-discount--title {
  4424. word-break: break-word;
  4425. padding-right: 1em;
  4426. }
  4427.  
  4428. .order-discount--list {
  4429. margin: 0.3em 0 0 1.3em;
  4430. list-style: none;
  4431. padding: 0;
  4432. }
  4433.  
  4434. .order-discount--cart {
  4435. text-align: right;
  4436. }
  4437.  
  4438. .order-discount--cart-list {
  4439. display: inline-block;
  4440. width: 80%;
  4441. margin-top: 1em;
  4442. }
  4443.  
  4444. .order-discount--ajax-cart {
  4445. color: inherit;
  4446. font-size: 0.9em;
  4447. }
  4448.  
  4449. .order-discount--ajax-cart-list {
  4450. width: 60%;
  4451. display: block;
  4452. margin-top: 0.8em;
  4453. margin-left: auto;
  4454. line-height: 1.1;
  4455. }
  4456.  
  4457. .order-discount__item {
  4458. text-indent: -1.3em;
  4459. margin-bottom: 0;
  4460.  
  4461. & + .order-discount__item {
  4462. margin-top: 0.6em;
  4463. }
  4464. }
  4465.  
  4466. .order-discount-wrapper {
  4467. @include at-query($max, $small) {
  4468. display: flex;
  4469. justify-content: space-between;
  4470. width: 100%;
  4471. }
  4472. }
  4473.  
  4474. .grid-product__on-sale {
  4475. display: none;
  4476. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement