themes-wordpress/varia/style-rtl.css

4904 lines
111 KiB
CSS
Raw Normal View History

@charset "UTF-8";
/*
Theme Name: Varia
Theme URI: https://github.com/Automattic/themes/tree/master/varia
Author: Automattic
Author URI: https://automattic.com/
Description: A variable-based design system for WordPress sites built with Gutenberg.
Requires at least: WordPress 4.9.6
2019-10-03 16:53:39 +00:00
Version: 1.2.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: varia
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/**
* Abstracts
* - Mixins, variables and functions
*/
/**
* Abstracts
* - Mixins, variables and functions
*/
/* Sass Functions go here */
/**
* Map deep get
* @author Hugo Giraudel
* @access public
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
* @return {*} - Desired value
*
* Example:
* $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
*/
/**
* Deep set function to set a value in nested maps
* @author Hugo Giraudel
* @access public
* @param {Map} $map - Map
* @param {List} $keys - Key chaine
* @param {*} $value - Value to assign
* @return {Map}
*
* Example:
* $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
*/
/**
* jQuery-style extend function
* - Child themes can use this function to `reset` the values in
* config maps without editing the `master` Sass files.
* - src: https://www.sitepoint.com/extra-map-functions-sass/
* - About `map-merge()`:
* - - only takes 2 arguments
* - - is not recursive
* @param {Map} $map - first map
* @param {ArgList} $maps - other maps
* @param {Bool} $deep - recursive mode
* @return {Map}
*
* Examples:
$grid-configuration-default: (
'columns': 12,
'layouts': (
'small': 800px,
'medium': 1000px,
'large': 1200px,
),
);
$grid-configuration-custom: (
'layouts': (
'large': 1300px,
'huge': 1500px
),
);
$grid-configuration-user: (
'direction': 'ltr',
'columns': 16,
'layouts': (
'large': 1300px,
'huge': 1500px
),
);
// $deep: false
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
// --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
// $deep: true
$grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
// --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
*/
/**
* Button
*/
/**
* Cover
*/
/**
* Heading
*/
/**
* List
*/
/**
* Pullquote
*/
/**
* Quote
*/
/**
* Separator
*/
/**
* Responsive breakpoints
* - breakpoints values are defined in _config-global.scss
*/
/**
* Align wide widths
* - Sets .alignwide widths
*/
/**
* Crop Text Boundry
* - Sets a fixed-width on content within alignwide and alignfull blocks
*/
/**
* Base
* - Reset the browser
*/
/**
* Base
* - Reset the browser
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15;
/* 1 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
overflow: scroll;
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}
/**
* Reset specific elements to make them easier to style in other contexts.
*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
/**
* Apply generic border-box to all elements.
* See:
* https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
/**
* Apply border-box across the entire page.
*/
html {
box-sizing: border-box;
}
/**
* Relax the definition a bit, to allow components to override it manually.
*/
*, *::before, *::after {
box-sizing: inherit;
}
/**
* HTML resets
*/
html {
font-size: 15px;
font-family: serif;
line-height: 1.78;
}
@media only screen and (min-width: 560px) {
html {
font-size: 18px;
}
}
body {
font-size: 1rem;
font-weight: normal;
color: #444444;
text-align: right;
background-color: white;
}
/**
* Links styles
*/
a {
color: blue;
}
a:hover {
color: indigo;
}
button,
a {
cursor: pointer;
}
/* Text meant only for screen readers. */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
background-color: white;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
clip-path: none;
color: #444444;
display: block;
font-size: 1.2rem;
font-weight: bold;
height: auto;
right: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
/* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
outline: 0;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
}
/**
* Measure
* - The width of a line of text, in characters, is known as its measure.
*/
header *,
main *,
footer * {
2019-07-25 21:10:22 +00:00
max-width: unset;
}
html,
body,
div,
header,
nav,
article,
figure,
hr,
main,
section,
footer {
max-width: none;
}
::selection {
background-color: lightblue;
}
::-moz-selection {
background-color: lightblue;
}
/**
* Layout
* - Structral and responsive styles
*/
/**
* Layout
* - Structral and responsive styles
*/
/**
* Site Structure
*
* - Set vertical margins and responsive widths on
* top-level wrappers and content wrappers
* - `--global--width-content` is a responsive veriable
* - See: globals/_global-width-responsive.scss
*/
/**
* Top Level Wrappers (header, main, footer)
* - Set vertical padding and horizontal margins
*/
.site-header,
.site-main,
.site-footer {
padding: 16px 16px;
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 560px) {
.site-header,
.site-main,
.site-footer {
padding-top: 32px;
padding-left: 0;
padding-bottom: 32px;
padding-right: 0;
}
}
/**
* Site-main children wrappers
* - Add double vertical margins here for clearer heirarchy
*/
.site-main > * {
margin-top: calc(3 * 32px);
margin-bottom: calc(3 * 32px);
}
.site-main > *:first-child {
margin-top: 0;
}
.site-main > *:last-child {
margin-bottom: 0;
}
/**
* Major content sections (article, author-bio, pagination, comments, etc.)
* - Set a maximum responsive content-width
*
* .responsive-max-width is a group selector replacing the following:
* .site-header,
* .site-main,
* .site-footer
* .entry-header,
* .post-thumbnail,
* .entry-content,
* .entry-footer,
* .author-bio,
* .widget-area
*/
/*
* Block & non-gutenberg content wrappers
* - Set margins
*/
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer,
.author-bio,
.widget-area {
margin-top: 32px;
margin-left: auto;
margin-bottom: 32px;
margin-right: auto;
}
/*
* Block & non-gutenberg content wrapper children
* - Sets spacing-vertical margin logic
*/
.site-footer > *,
.site-main > article > *,
2019-08-23 20:41:52 +00:00
.site-main > .not-found > *,
.entry-content > *,
[class*="inner-container"] > *,
.widget-area > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.site-footer > *,
.site-main > article > *,
2019-08-23 20:41:52 +00:00
.site-main > .not-found > *,
.entry-content > *,
[class*="inner-container"] > *,
.widget-area > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.site-footer > *:first-child,
.site-main > article > *:first-child,
2019-08-23 20:41:52 +00:00
.site-main > .not-found > *:first-child,
.entry-content > *:first-child,
[class*="inner-container"] > *:first-child,
.widget-area > *:first-child {
margin-top: 0;
}
.site-footer > *:last-child,
.site-main > article > *:last-child,
2019-08-23 20:41:52 +00:00
.site-main > .not-found > *:last-child,
.entry-content > *:last-child,
[class*="inner-container"] > *:last-child,
.widget-area > *:last-child {
margin-bottom: 0;
}
/*
* Block & non-gutenberg content wrapper children
* - Sets spacing-unit margins
*/
.site-header > *,
.entry-header > *,
.post-thumbnail > *,
2019-08-23 20:41:52 +00:00
.page-content > *,
.comment-content > *,
.author-bio > * {
margin-top: 16px;
margin-bottom: 16px;
}
.site-header > *:first-child,
.entry-header > *:first-child,
.post-thumbnail > *:first-child,
2019-08-23 20:41:52 +00:00
.page-content > *:first-child,
.comment-content > *:first-child,
.author-bio > *:first-child {
margin-top: 0;
}
.site-header > *:last-child,
.entry-header > *:last-child,
.post-thumbnail > *:last-child,
2019-08-23 20:41:52 +00:00
.page-content > *:last-child,
.comment-content > *:last-child,
.author-bio > *:last-child {
margin-bottom: 0;
}
/*
* .entry-content children specific controls
* - Adds special margin overrides for alignment utility classes
*/
.entry-content > * {
/* Reset alignleft and alignright margins after alignfull */
}
.entry-content > *.alignleft, .entry-content > *.alignright,
.entry-content > *.alignleft:first-child + *,
.entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
margin-top: 0;
}
.entry-content > *:last-child, .entry-content > *.alignfull {
margin-bottom: 0;
}
.entry-content > *.alignfull + .alignleft,
.entry-content > *.alignfull + .alignright {
margin-top: 32px;
}
/**
* Elements
* - Styles for basic HTML elemants
*/
/**
* Elements
* - Styles for basic HTML elemants
*/
blockquote {
padding-right: 16px;
}
blockquote p {
font-size: 1.728rem;
letter-spacing: normal;
line-height: 1.125;
}
blockquote cite,
blockquote footer {
font-size: 0.83333rem;
letter-spacing: normal;
}
blockquote > * {
margin-top: 16px;
margin-bottom: 16px;
}
blockquote > *:first-child {
margin-top: 0;
}
blockquote > *:last-child {
margin-bottom: 0;
}
blockquote.alignleft, blockquote.alignright {
padding-right: inherit;
}
blockquote.alignleft p, blockquote.alignright p {
font-size: 1.44rem;
max-width: inherit;
width: inherit;
}
blockquote.alignleft cite,
blockquote.alignleft footer, blockquote.alignright cite,
blockquote.alignright footer {
font-size: 0.69444rem;
letter-spacing: normal;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
color: #444444;
border: 1px solid #DDDDDD;
border-radius: 3px;
2019-07-18 12:29:56 +00:00
padding: 16px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
color: #444444;
border-color: indigo;
}
select {
border: 1px solid #DDDDDD;
}
textarea {
width: 100%;
}
input[type=checkbox] + label {
display: inline;
margin-right: 0.5em;
margin-left: 2em;
line-height: 1em;
}
figcaption {
color: #767676;
font-size: 0.69444rem;
margin-top: calc(0.5 * 16px);
margin-bottom: 16px;
text-align: center;
}
.alignleft figcaption,
.alignright figcaption {
margin-bottom: 0;
}
/* WP Smiley */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
max-width: 100%;
}
/**
* Blocks
* - These styles replace key Gutenberg Block styles for fonts, colors, and
* spacing with CSS-variables overrides
* - In the future the Block styles may get compiled to individual .css
* files and conditionally loaded
*/
/**
* Blocks
* - These styles replace key Gutenberg Block styles with font, color, and
* spacing with CSS-variables overrides
* - In the future the Block styles may get compiled to individual .css
* files and conditionally loaded
*/
.wp-block-audio {
min-width: inherit;
}
.wp-block-audio.alignleft, .wp-block-audio.alignright {
min-width: 300px;
}
/**
* Placeholder button style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept, body[class*="woocommerce"] #page #respond input#submit,
body[class*="woocommerce"] #page #respond input#submit.alt,
body[class*="woocommerce"] #page a.button,
body[class*="woocommerce"] #page a.button.alt,
body[class*="woocommerce"] #page button.button,
body[class*="woocommerce"] #page button.button.alt,
body[class*="woocommerce"] #page input.button,
body[class*="woocommerce"] #page input.button.alt,
body[class*="woocommerce"] #page .cart .button,
body[class*="woocommerce"] #page .cart input.button,
body[class*="woocommerce"] #page a.added_to_cart,
body[class*="woocommerce"] #page .woocommerce #respond input#submit,
body[class*="woocommerce"] #page .woocommerce a.button,
body[class*="woocommerce"] #page .woocommerce button.button,
body[class*="woocommerce"] #page .woocommerce input.button,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: sans-serif;
font-size: 1.2rem;
background-color: blue;
border-radius: 9px;
border-width: 0;
padding: 16px 16px;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, body[class*="woocommerce"] #page #respond input#submit:before,
body[class*="woocommerce"] #page #respond input#submit.alt:before,
body[class*="woocommerce"] #page a.button:before,
body[class*="woocommerce"] #page a.button.alt:before,
body[class*="woocommerce"] #page button.button:before,
body[class*="woocommerce"] #page button.button.alt:before,
body[class*="woocommerce"] #page input.button:before,
body[class*="woocommerce"] #page input.button.alt:before,
body[class*="woocommerce"] #page .cart .button:before,
body[class*="woocommerce"] #page a.added_to_cart:before,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:before,
body[class*="woocommerce"] #page .woocommerce a.button:before,
body[class*="woocommerce"] #page .woocommerce button.button:before,
body[class*="woocommerce"] #page .woocommerce input.button:before,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:before,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:before, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after, body[class*="woocommerce"] #page #respond input#submit:after,
body[class*="woocommerce"] #page #respond input#submit.alt:after,
body[class*="woocommerce"] #page a.button:after,
body[class*="woocommerce"] #page a.button.alt:after,
body[class*="woocommerce"] #page button.button:after,
body[class*="woocommerce"] #page button.button.alt:after,
body[class*="woocommerce"] #page input.button:after,
body[class*="woocommerce"] #page input.button.alt:after,
body[class*="woocommerce"] #page .cart .button:after,
body[class*="woocommerce"] #page a.added_to_cart:after,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:after,
body[class*="woocommerce"] #page .woocommerce a.button:after,
body[class*="woocommerce"] #page .woocommerce button.button:after,
body[class*="woocommerce"] #page .woocommerce input.button:after,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:after,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:after {
content: '';
display: block;
height: 0;
width: 0;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, body[class*="woocommerce"] #page #respond input#submit:before,
body[class*="woocommerce"] #page #respond input#submit.alt:before,
body[class*="woocommerce"] #page a.button:before,
body[class*="woocommerce"] #page a.button.alt:before,
body[class*="woocommerce"] #page button.button:before,
body[class*="woocommerce"] #page button.button.alt:before,
body[class*="woocommerce"] #page input.button:before,
body[class*="woocommerce"] #page input.button.alt:before,
body[class*="woocommerce"] #page .cart .button:before,
body[class*="woocommerce"] #page a.added_to_cart:before,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:before,
body[class*="woocommerce"] #page .woocommerce a.button:before,
body[class*="woocommerce"] #page .woocommerce button.button:before,
body[class*="woocommerce"] #page .woocommerce input.button:before,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:before,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:before {
margin-bottom: -0.12em;
}
button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after, body[class*="woocommerce"] #page #respond input#submit:after,
body[class*="woocommerce"] #page #respond input#submit.alt:after,
body[class*="woocommerce"] #page a.button:after,
body[class*="woocommerce"] #page a.button.alt:after,
body[class*="woocommerce"] #page button.button:after,
body[class*="woocommerce"] #page button.button.alt:after,
body[class*="woocommerce"] #page input.button:after,
body[class*="woocommerce"] #page input.button.alt:after,
body[class*="woocommerce"] #page .cart .button:after,
body[class*="woocommerce"] #page a.added_to_cart:after,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:after,
body[class*="woocommerce"] #page .woocommerce a.button:after,
body[class*="woocommerce"] #page .woocommerce button.button:after,
body[class*="woocommerce"] #page .woocommerce input.button:after,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:after,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:after {
margin-top: -0.11em;
}
button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, body[class*="woocommerce"] #page #respond input#submit:hover,
body[class*="woocommerce"] #page a.button:hover,
body[class*="woocommerce"] #page button.button:hover,
body[class*="woocommerce"] #page input.button:hover,
body[class*="woocommerce"] #page .cart .button:hover,
body[class*="woocommerce"] #page a.added_to_cart:hover,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:hover,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, body[class*="woocommerce"] #page #respond input#submit:focus,
body[class*="woocommerce"] #page a.button:focus,
body[class*="woocommerce"] #page button.button:focus,
body[class*="woocommerce"] #page input.button:focus,
body[class*="woocommerce"] #page .cart .button:focus,
body[class*="woocommerce"] #page a.added_to_cart:focus,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a:focus,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept, body[class*="woocommerce"] #page #respond input.has-focus#submit,
body[class*="woocommerce"] #page a.has-focus.button,
body[class*="woocommerce"] #page button.has-focus.button,
body[class*="woocommerce"] #page input.has-focus.button,
body[class*="woocommerce"] #page .cart .has-focus.button,
body[class*="woocommerce"] #page a.has-focus.added_to_cart,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a.has-focus,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a.has-focus {
color: white;
background-color: indigo;
}
/**
* Block Options
*/
.wp-block-button.is-style-outline .wp-block-button__link {
color: blue;
background: transparent;
border: 2px solid currentcolor;
padding: 14px 16px;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
color: indigo;
}
.wp-block-button.is-style-squared .wp-block-button__link {
border-radius: 0;
}
.wp-block-code {
color: #444444;
font-size: 0.83333rem;
padding: 16px;
border-color: #DDDDDD;
}
.wp-block-code pre {
color: #444444;
}
.wp-block-columns {
/**
* Block Options
*/
}
.wp-block-columns .wp-block-column > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-columns .wp-block-column > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-columns .wp-block-column > *:first-child {
margin-top: 0;
}
.wp-block-columns .wp-block-column > *:last-child {
margin-bottom: 0;
}
.wp-block-columns .wp-block-column:last-child {
margin-bottom: 0;
}
.wp-block-columns .wp-block-column:not(:last-child) {
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-columns .wp-block-column:not(:last-child) {
margin-bottom: 32px;
}
}
@media only screen and (min-width: 782px) {
.wp-block-columns .wp-block-column:not(:last-child) {
/* Resetting margins to match _block-container.scss */
margin-bottom: 0;
}
}
.wp-block-columns.alignfull {
padding-right: 16px;
padding-left: 16px;
}
.wp-block-columns.alignfull:not(:first-child) {
margin-top: 32px;
}
.wp-block-columns.alignfull:not(:last-child) {
margin-bottom: 32px;
}
.wp-block-cover,
.wp-block-cover-image {
background-color: black;
min-height: 480px;
margin: inherit;
/* default & custom background-color */
/* Treating H2 separately to account for legacy /core styles */
/**
* Block Options
*/
}
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text {
color: currentColor;
margin-top: 32px;
margin-bottom: 32px;
}
.wp-block-cover .wp-block-cover__inner-container a,
.wp-block-cover .wp-block-cover-image-text a,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover-image .wp-block-cover__inner-container a,
.wp-block-cover-image .wp-block-cover-image-text a,
.wp-block-cover-image .wp-block-cover-text a {
color: currentColor;
}
.wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
.wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
.wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
.wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text {
color: white;
}
.wp-block-cover h2,
.wp-block-cover-image h2 {
font-size: 2.48832rem;
letter-spacing: normal;
line-height: 1.125;
max-width: inherit;
text-align: inherit;
padding: 0;
}
.wp-block-cover h2.has-text-align-left,
.wp-block-cover-image h2.has-text-align-left {
text-align: right;
}
.wp-block-cover h2.has-text-align-center,
.wp-block-cover-image h2.has-text-align-center {
text-align: center;
}
.wp-block-cover h2.has-text-align-right,
.wp-block-cover-image h2.has-text-align-right {
text-align: left;
}
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
width: calc(100% - 64px);
}
.wp-block-cover .wp-block-cover__inner-container > *,
.wp-block-cover-image .wp-block-cover__inner-container > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-cover .wp-block-cover__inner-container > *,
.wp-block-cover-image .wp-block-cover__inner-container > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-cover .wp-block-cover__inner-container > *:first-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
margin-top: 0;
}
.wp-block-cover .wp-block-cover__inner-container > *:last-child,
.wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
margin-bottom: 0;
}
.wp-block-cover.alignleft, .wp-block-cover.alignright,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright {
margin-top: 0;
}
.wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
.wp-block-cover-image.alignleft > *,
.wp-block-cover-image.alignright > * {
margin-top: calc(2 * 32px);
margin-bottom: calc(2 * 32px);
padding-right: 16px;
padding-left: 16px;
width: 100%;
}
.wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
.wp-block-cover-image.has-left-content,
.wp-block-cover-image.has-right-content {
justify-content: center;
}
.wp-block-file .wp-block-file__button {
background-color: blue;
color: white;
font-size: 0.83333rem;
margin-right: 16px;
margin-left: 16px;
}
.wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
display: inherit;
}
.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited {
color: white;
opacity: .85;
}
.wp-block-gallery {
margin: 0;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
margin: 0;
color: white;
font-size: 0.69444rem;
}
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
width: calc( (100% - 16px) / 2);
}
2019-07-24 20:59:18 +00:00
.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
max-width: 50%;
}
.wp-block-group .wp-block-group__inner-container {
margin-right: auto;
margin-left: auto;
}
.wp-block-group .wp-block-group__inner-container > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-group .wp-block-group__inner-container > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-group .wp-block-group__inner-container > *:first-child {
margin-top: 0;
}
.wp-block-group .wp-block-group__inner-container > *:last-child {
margin-bottom: 0;
}
.wp-block-group.has-background {
padding: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-group.has-background {
padding: 32px;
}
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
font-family: sans-serif;
font-weight: bold;
clear: both;
}
h1, .h1 {
font-size: 2.98598rem;
letter-spacing: normal;
line-height: 1.125;
}
h2, .h2 {
font-size: 2.48832rem;
letter-spacing: normal;
line-height: 1.125;
}
h3, .h3 {
font-size: 2.0736rem;
letter-spacing: normal;
line-height: 1.125;
}
h4, .h4 {
font-size: 1.728rem;
letter-spacing: normal;
line-height: 1.125;
}
h5, .h5 {
font-size: 1.44rem;
letter-spacing: normal;
line-height: 1.125;
}
h6, .h6 {
font-size: 1.2rem;
letter-spacing: normal;
line-height: 1.125;
}
.wp-block-image {
text-align: center;
}
.wp-block-image figcaption {
color: #767676;
font-size: 0.69444rem;
margin-top: calc(0.5 * 16px);
margin-bottom: 16px;
text-align: center;
}
.entry-content > *[class="wp-block-image"],
.entry-content [class*="inner-container"] > *[class="wp-block-image"] {
margin-top: 0;
margin-bottom: 0;
}
.entry-content > *[class="wp-block-image"] + *,
.entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
margin-top: 0;
}
img {
height: auto;
max-width: 100%;
2019-07-22 16:13:20 +00:00
vertical-align: middle;
}
.wp-block-latest-comments {
padding-right: 0;
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
font-size: 0.83333rem;
line-height: 1.78;
/* Vertical margins logic */
margin-top: 32px;
margin-bottom: 32px;
}
.wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
margin-top: 0;
}
.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
margin-bottom: 0;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
font-family: sans-serif;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-date {
color: #767676;
font-size: 0.83333rem;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
font-size: 0.83333rem;
line-height: 1.78;
margin: 0;
}
.wp-block-latest-posts {
padding-right: 0;
}
.wp-block-latest-posts > li {
/* Vertical margins logic */
margin-top: 32px;
margin-bottom: 32px;
}
.wp-block-latest-posts > li:first-child {
margin-top: 0;
}
.wp-block-latest-posts > li:last-child {
margin-bottom: 0;
}
.wp-block-latest-posts > li > a {
font-family: sans-serif;
font-size: 1.728rem;
font-weight: bold;
line-height: 1.125;
}
.wp-block-latest-posts .wp-block-latest-posts__post-date {
color: #767676;
font-size: 0.69444rem;
line-height: 1.78;
}
.entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
.entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
color: currentColor;
}
.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-full-content {
font-size: 0.83333rem;
line-height: 1.78;
margin: 0;
}
.wp-block-latest-posts.alignfull {
padding-right: 16px;
padding-left: 16px;
}
.entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
.entry-content .has-background .wp-block-latest-posts.alignfull {
padding-right: 0;
padding-left: 0;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
}
.gallery-item a {
display: block;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
ul,
ol {
font-family: serif;
margin: 0;
2019-09-30 16:57:35 +00:00
padding-right: 32px;
}
ul {
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
dt {
font-family: sans-serif;
font-weight: bold;
}
dd {
margin: 0;
padding-right: 32px;
}
.wp-block-media-text {
/**
* Block Options
*/
}
.wp-block-media-text .wp-block-media-text__content {
padding: 16px;
}
@media only screen and (min-width: 640px) {
.wp-block-media-text .wp-block-media-text__content {
padding: 32px;
}
}
.wp-block-media-text .wp-block-media-text__content > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-media-text .wp-block-media-text__content > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-media-text .wp-block-media-text__content > *:first-child {
margin-top: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:last-child {
margin-bottom: 0;
}
.wp-block-media-text[class*="background-color"]:not(.has-background-background-color) .wp-block-media-text__content a, .wp-block-media-text[style*="background-color"] .wp-block-media-text__content a {
color: currentColor;
}
@media only screen and (min-width: 560px) {
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
padding-top: 32px;
padding-bottom: 32px;
}
}
p.has-background {
padding: 16px 16px;
}
.a8c-posts-list__listing {
list-style: none;
margin: 0;
padding: 0;
}
.a8c-posts-list__listing:not(:last-child) {
margin-bottom: calc(3 * 32px);
}
.a8c-posts-list-item__featured span {
color: white;
background-color: blue;
font-family: sans-serif;
font-weight: bold;
font-size: 0.83333rem;
line-height: 1;
padding: calc(0.5 * 16px) calc(0.66 * 16px);
}
.a8c-posts-list__item {
display: block;
/* Vertical margins logic between posts */
margin-top: calc(3 * 32px);
margin-bottom: calc(3 * 32px);
}
.a8c-posts-list__item:first-child {
margin-top: 0;
}
.a8c-posts-list__item:last-child {
margin-bottom: 0;
}
.a8c-posts-list__item .entry > * {
/* Vertical margins logic between post details */
margin-top: 16px;
margin-bottom: 16px;
}
.a8c-posts-list__item .entry > *:first-child {
margin-top: 0;
}
.a8c-posts-list__item .entry > *:last-child {
margin-bottom: 0;
}
.a8c-posts-list__item .a8c-posts-list-item__meta {
color: #767676;
font-size: 0.83333rem;
}
.a8c-posts-list__item .a8c-posts-list-item__meta a {
color: currentColor;
}
.a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
color: indigo;
}
.a8c-posts-list__item .a8c-posts-list-item__edit-link {
margin-right: 16px;
}
.a8c-posts-list__view-all {
display: inline-block;
}
.wp-block-pullquote {
padding: calc( 3 * 16px) 0;
margin-right: 0;
margin-left: 0;
text-align: center;
border-top-color: #DDDDDD;
border-top-width: 4px;
border-bottom-color: #DDDDDD;
border-bottom-width: 4px;
color: #444444;
/**
* Block Options
*/
}
.wp-block-pullquote p {
font-family: sans-serif;
font-size: 1.728rem;
letter-spacing: normal;
line-height: 1.125;
}
.wp-block-pullquote a {
color: currentColor;
}
.wp-block-pullquote .wp-block-pullquote__citation,
.wp-block-pullquote cite,
.wp-block-pullquote footer {
color: #767676;
font-size: 0.83333rem;
letter-spacing: normal;
display: block;
}
.wp-block-pullquote:not(.is-style-solid-color) {
background: none;
}
.wp-block-pullquote:not(.is-style-solid-color) blockquote {
padding-right: 0;
}
.wp-block-pullquote.is-style-default.alignleft blockquote > *, .wp-block-pullquote.is-style-default.aligncenter blockquote > *, .wp-block-pullquote.is-style-default.alignright blockquote > * {
text-align: center;
}
.wp-block-pullquote.is-style-solid-color {
background-color: blue;
color: white;
}
.wp-block-pullquote.is-style-solid-color blockquote {
padding-right: 16px;
padding-left: 16px;
max-width: inherit;
}
.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color cite,
.wp-block-pullquote.is-style-solid-color footer {
color: currentColor;
}
.wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote {
margin-right: auto;
margin-left: auto;
}
.wp-block-quote {
border-right-color: blue;
margin: 32px 0;
padding-right: 16px;
/**
* Block Options
*/
}
.wp-block-quote > * {
margin-top: 16px;
margin-bottom: 16px;
}
.wp-block-quote > *:first-child {
margin-top: 0;
}
.wp-block-quote > *:last-child {
margin-bottom: 0;
}
.wp-block-quote p {
font-family: sans-serif;
font-size: 1.728rem;
letter-spacing: normal;
line-height: 1.125;
}
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
color: #767676;
font-size: 0.83333rem;
letter-spacing: normal;
}
.has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
[style*="background-color"] .wp-block-quote .wp-block-quote__citation,
.wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
.wp-block-quote cite,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote cite,
[style*="background-color"]
.wp-block-quote cite,
.wp-block-cover[style*="background-image"]
.wp-block-quote cite, .has-background:not(.has-background-background-color)
.wp-block-quote footer,
[class*="background-color"]:not(.has-background-background-color)
.wp-block-quote footer,
[style*="background-color"]
.wp-block-quote footer,
.wp-block-cover[style*="background-image"]
.wp-block-quote footer {
color: currentColor;
}
.wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
border-left-color: blue;
}
.wp-block-quote.is-style-large, .wp-block-quote.is-large {
/* Resetting margins to match _block-container.scss */
margin-top: 32px;
margin-bottom: 32px;
padding: 0;
}
.wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
font-size: 2.0736rem;
letter-spacing: normal;
line-height: 1.125;
}
.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer {
color: #767676;
font-size: 0.83333rem;
letter-spacing: normal;
}
.has-background:not(.has-background-background-color) .wp-block-quote,
[class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
[style*="background-color"] .wp-block-quote,
.wp-block-cover[style*="background-image"] .wp-block-quote {
border-color: currentColor;
}
hr {
border-bottom: 2px solid #DDDDDD;
clear: both;
margin-right: auto;
margin-left: auto;
}
hr.wp-block-separator {
border-bottom: 2px solid #DDDDDD;
/**
* Block Options
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #DDDDDD;
font-size: 1.728rem;
letter-spacing: 0.83333rem;
padding-right: 0.83333rem;
}
2019-09-26 15:17:39 +00:00
.has-background:not(.has-background-background-color) hr.wp-block-separator,
[class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
[style*="background-color"] hr.wp-block-separator,
.wp-block-cover[style*="background-image"] hr.wp-block-separator {
border-color: currentColor;
}
.wp-block-jetpack-slideshow ul {
margin-right: 0;
margin-left: 0;
}
.wp-block-spacer {
display: block;
margin-bottom: 0 !important;
margin-top: 0 !important;
}
@media only screen and (max-width: 559px) {
.wp-block-spacer[style] {
2019-07-25 14:12:29 +00:00
height: 16px !important;
}
}
.jetpack_subscription_widget input[type="text"] {
padding: 16px !important;
width: 100% !important;
}
table,
.wp-block-table {
width: 100%;
min-width: 240px;
border-collapse: collapse;
}
table th,
.wp-block-table th {
font-family: sans-serif;
}
table td,
table th,
.wp-block-table td,
.wp-block-table th {
padding: calc( 0.5 * 16px);
border: 1px solid;
word-break: break-all;
}
.wp-block-video figcaption {
color: #767676;
font-size: 0.69444rem;
margin-top: calc(0.5 * 16px);
margin-bottom: 16px;
text-align: center;
}
* > figure > video {
max-width: unset;
width: 100%;
vertical-align: middle;
}
/* Block Alignments */
/**
* .alignleft
*/
.alignleft {
text-align: left;
float: left;
margin-top: 0;
margin-right: 16px;
margin-bottom: 32px;
}
/**
* .aligncenter
*/
.aligncenter {
clear: both;
float: none;
text-align: center;
}
/**
* .alignright
*/
.alignright {
float: right;
margin-top: 0;
margin-bottom: 32px;
margin-left: 16px;
}
.entry-content * > .alignleft + *,
.entry-content * > .alignright + * {
margin-top: 0;
}
/**
* .aligndefault
*/
/**
* .alignwide
*/
.alignwide {
clear: both;
}
/**
* .alignfull
*/
.alignfull {
clear: both;
}
.has-left-content {
justify-content: flex-start;
}
.has-right-content {
justify-content: flex-end;
}
.has-parallax {
background-attachment: fixed;
}
.has-primary-color[class] {
color: blue !important;
}
.has-secondary-color[class] {
color: red !important;
}
.has-foreground-color[class] {
color: #444444 !important;
}
.has-foreground-light-color[class] {
color: #767676 !important;
}
.has-foreground-dark-color[class] {
color: #111111 !important;
}
.has-background-light-color[class] {
color: #FAFAFA !important;
}
.has-background-dark-color[class] {
color: #DDDDDD !important;
}
.has-background-color[class] {
color: white !important;
}
.has-background:not(.has-background-background-color) a,
.has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
color: currentColor;
}
.has-primary-background-color[class] {
background-color: blue !important;
color: white;
}
.has-secondary-background-color[class] {
background-color: red !important;
color: white;
}
.has-foreground-background-color[class] {
background-color: #444444 !important;
color: white;
}
.has-foreground-light-background-color[class] {
background-color: #767676 !important;
color: white;
}
.has-foreground-dark-background-color[class] {
background-color: #111111 !important;
color: white;
}
.has-background-light-background-color[class] {
background-color: #FAFAFA !important;
color: #444444;
}
.has-background-dark-background-color[class] {
background-color: #DDDDDD !important;
color: #444444;
}
.has-background-background-color[class] {
background-color: white !important;
color: #444444;
}
.is-small-text,
.has-small-font-size {
font-size: 0.83333rem;
}
.is-regular-text,
.has-regular-font-size,
.has-normal-font-size,
.has-medium-font-size {
font-size: 1rem;
}
.is-large-text,
.has-large-font-size {
font-size: 1.44rem;
line-height: 1.125;
}
.is-larger-text,
.has-larger-font-size,
.has-huge-font-size {
font-size: 1.728rem;
line-height: 1.125;
}
.has-drop-cap:not(:focus)::first-letter {
font-family: sans-serif;
font-size: calc(2 * 2.98598rem);
font-weight: bold;
line-height: 0.66;
text-transform: uppercase;
font-style: normal;
float: right;
margin: 0.1em 0 0 0.1em;
}
.has-drop-cap:not(:focus)::after {
content: "";
display: table;
clear: both;
padding-top: 14px;
}
.desktop-only {
display: none;
}
@media only screen and (min-width: 560px) {
.desktop-only {
display: block;
}
}
/**
* Spacing Overrides
*/
/*
* Margins
*/
.margin-top-none {
margin-top: 0 !important;
}
.margin-top-half {
margin-top: 16px !important;
}
.margin-top-default {
margin-top: 32px !important;
}
.margin-right-none {
margin-right: 0 !important;
}
.margin-right-half {
margin-right: 16px !important;
}
.margin-right-default {
margin-right: 32px !important;
}
.margin-bottom-none {
margin-bottom: 0 !important;
}
.margin-bottom-half {
margin-bottom: 16px !important;
}
.margin-bottom-default {
margin-bottom: 32px !important;
}
.margin-left-none {
margin-left: 0 !important;
}
.margin-left-half {
margin-left: 16px !important;
}
.margin-left-default {
margin-left: 32px !important;
}
/*
* Padding
*/
.padding-top-none {
padding-top: 0 !important;
}
.padding-top-half {
padding-top: 16px !important;
}
.padding-top-default {
padding-top: 32px !important;
}
.padding-right-none {
padding-right: 0 !important;
}
.padding-right-half {
padding-right: 16px !important;
}
.padding-right-default {
padding-right: 32px !important;
}
.padding-bottom-none {
padding-bottom: 0 !important;
}
.padding-bottom-half {
padding-bottom: 16px !important;
}
.padding-bottom-default {
padding-bottom: 32px !important;
}
.padding-left-none {
padding-left: 0 !important;
}
.padding-left-half {
padding-left: 16px !important;
}
.padding-left-default {
padding-left: 32px !important;
}
/**
* Components
* - Similar to Blocks but exist outside of the "current" editor context
*/
/*
* Components
* - Similar to Blocks but exist outside of the "current" editor context
*/
.site-branding {
color: #444444;
}
.site-title {
color: blue;
font-family: sans-serif;
font-size: 1.2rem;
letter-spacing: normal;
line-height: 1;
}
.site-title a {
color: currentColor;
font-weight: bold;
}
.site-title a:link, .site-title a:visited {
color: currentColor;
}
.site-title a:hover {
color: indigo;
}
.site-description {
color: currentColor;
font-family: serif;
font-size: 0.83333rem;
}
.main-navigation {
color: #444444;
}
.main-navigation > div {
display: none;
}
.main-navigation #toggle-menu {
display: inline-block;
margin: 0;
}
.main-navigation #toggle:checked ~ div {
display: block;
}
.main-navigation #toggle:focus + #toggle-menu {
background-color: indigo;
outline: inherit;
text-decoration: underline;
}
.main-navigation .dropdown-icon.close {
display: none;
}
.main-navigation #toggle:checked + #toggle-menu .open {
display: none;
}
.main-navigation #toggle:checked + #toggle-menu .close {
display: inline;
}
@media only screen and (min-width: 560px) {
.main-navigation > div {
display: block;
}
.main-navigation #toggle-menu {
display: none;
}
.main-navigation > div > ul > li > ul {
display: none;
}
}
.main-navigation > div > ul {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
max-width: none;
padding-right: 0;
position: relative;
/* Sub-menus Flyout */
}
.main-navigation > div > ul ul {
padding-right: 0;
}
.main-navigation > div > ul li {
display: block;
position: relative;
width: 100%;
z-index: 1;
}
.main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
cursor: pointer;
z-index: 99999;
}
@media only screen and (min-width: 560px) {
.main-navigation > div > ul li {
display: inherit;
width: inherit;
/* Submenu display */
}
.main-navigation > div > ul li:hover > ul,
.main-navigation > div > ul li:focus-within > ul,
.main-navigation > div > ul li ul:hover,
.main-navigation > div > ul li ul:focus {
visibility: visible;
opacity: 1;
display: block;
}
}
@media only screen and (min-width: 560px) {
.main-navigation > div > ul > li > a {
line-height: 1;
}
.main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
content: '';
display: block;
height: 0;
width: 0;
}
.main-navigation > div > ul > li > a:before {
margin-bottom: -0.12em;
}
.main-navigation > div > ul > li > a:after {
margin-top: -0.11em;
}
.main-navigation > div > ul > li:first-of-type > a {
padding-right: 0;
}
.main-navigation > div > ul > li:last-of-type > a {
padding-left: 0;
}
}
.main-navigation > div > ul > li > .sub-menu {
margin: 0;
position: relative;
}
@media only screen and (min-width: 560px) {
.main-navigation > div > ul > li > .sub-menu {
background: white;
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
right: 0;
top: 100%;
min-width: max-content;
opacity: 0;
position: absolute;
transition: all 0.5s ease;
visibility: hidden;
}
}
.main-navigation > div > ul > li > .sub-menu .sub-menu {
width: 100%;
}
.main-navigation a {
color: blue;
display: block;
font-family: sans-serif;
font-size: 1.2rem;
font-weight: bold;
padding: 8px 0;
}
@media only screen and (min-width: 560px) {
.main-navigation a {
padding: 16px;
}
}
.main-navigation a:link, .main-navigation a:visited {
color: blue;
}
.main-navigation a:hover {
color: indigo;
}
.main-navigation .sub-menu {
list-style: none;
margin-right: 0;
/* Reset the counter for each UL */
counter-reset: nested-list;
}
.main-navigation .sub-menu .menu-item a {
padding-top: 8px;
padding-bottom: 8px;
}
.main-navigation .sub-menu .menu-item a::before {
/* Increment the dashes */
counter-increment: nested-list;
/* Insert dashes with spaces in between */
content: " " counters(nested-list, " ", none);
}
@media only screen and (min-width: 560px) {
.main-navigation > div > ul > .menu-item-has-children > a::after {
content: "\00a0\25BC";
display: inline-block;
font-size: 0.69444rem;
height: inherit;
width: inherit;
}
}
.main-navigation .hide-visually {
position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
padding: 0 !important;
border: 0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden;
}
.social-navigation > div > ul {
align-content: center;
display: flex;
list-style: none;
margin: 0;
padding-right: 0;
}
.social-navigation > div > ul > li:first-of-type > a {
padding-right: 0;
}
.social-navigation > div > ul > li:last-of-type > a {
padding-left: 0;
}
.social-navigation a {
color: blue;
display: inline-block;
padding: 0 calc( 0.5 * calc(0.66 * 16px ));
}
.social-navigation a:hover {
color: indigo;
}
.social-navigation svg {
fill: currentColor;
vertical-align: middle;
}
.site-footer {
overflow: hidden;
}
2019-07-23 22:10:52 +00:00
@media only screen and (min-width: 640px) {
.site-footer {
align-items: flex-end;
2019-07-23 22:10:52 +00:00
display: flex;
flex-wrap: wrap;
2019-07-23 22:10:52 +00:00
justify-content: space-between;
}
}
.site-info {
color: #767676;
font-family: sans-serif;
font-size: 0.83333rem;
}
2019-07-23 22:10:52 +00:00
@media only screen and (min-width: 640px) {
.site-info {
order: 1;
flex: 1 0 50%;
margin-top: 0;
margin-bottom: 0;
2019-07-23 22:10:52 +00:00
}
}
.site-info .site-name {
font-weight: bold;
}
.site-info a {
color: currentColor;
}
.site-info a:link, .site-info a:visited {
color: currentColor;
}
.site-info a:hover {
color: indigo;
}
.footer-navigation, .fse-enabled .site-footer .main-navigation {
display: inline;
}
2019-07-23 22:10:52 +00:00
@media only screen and (min-width: 640px) {
.footer-navigation, .fse-enabled .site-footer .main-navigation {
2019-07-23 22:10:52 +00:00
flex: 1 0 50%;
order: 2;
margin-top: 0;
margin-bottom: 0;
2019-07-23 22:10:52 +00:00
text-align: left;
}
}
.footer-navigation > div, .fse-enabled .site-footer .main-navigation > div {
display: inline;
}
.footer-navigation .footer-menu, .fse-enabled .site-footer .main-navigation .footer-menu {
2019-07-23 22:10:52 +00:00
color: #767676;
margin: 0;
padding-right: 0;
2019-07-23 22:10:52 +00:00
}
@media only screen and (min-width: 640px) {
.footer-navigation .footer-menu, .fse-enabled .site-footer .main-navigation .footer-menu {
2019-07-23 22:10:52 +00:00
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
}
}
.footer-navigation .footer-menu > li, .fse-enabled .site-footer .main-navigation .footer-menu > li {
display: inline;
2019-07-23 22:10:52 +00:00
}
.footer-navigation .footer-menu > li:first-of-type > a, .fse-enabled .site-footer .main-navigation .footer-menu > li:first-of-type > a {
padding-right: 0;
}
.footer-navigation .footer-menu > li:last-of-type, .fse-enabled .site-footer .main-navigation .footer-menu > li:last-of-type {
padding-left: 0;
}
.footer-navigation .footer-menu a, .fse-enabled .site-footer .main-navigation .footer-menu a {
2019-07-23 22:10:52 +00:00
font-family: sans-serif;
font-size: 0.83333rem;
font-weight: bold;
padding: 16px;
color: currentColor;
}
.footer-navigation .footer-menu a:link, .fse-enabled .site-footer .main-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited, .fse-enabled .site-footer .main-navigation .footer-menu a:visited {
2019-07-23 22:10:52 +00:00
color: currentColor;
}
.footer-navigation .footer-menu a:hover, .fse-enabled .site-footer .main-navigation .footer-menu a:hover {
2019-07-23 22:10:52 +00:00
color: indigo;
}
.entry-title {
font-size: 2.48832rem;
letter-spacing: normal;
line-height: 1.125;
}
.entry-meta,
.entry-footer {
color: #767676;
clear: both;
float: none;
font-size: 0.83333rem;
display: block;
}
.entry-meta > span,
.entry-footer > span {
display: inline-block;
margin-left: 16px;
}
.entry-meta > span > *,
.entry-footer > span > * {
display: inline-block;
vertical-align: middle;
}
.entry-meta > span:last-child,
.entry-footer > span:last-child {
margin-left: 0;
}
.entry-meta > span .published + .updated,
.entry-footer > span .published + .updated {
display: none;
}
.entry-meta a,
.entry-footer a {
color: currentColor;
}
.entry-meta a:hover, .entry-meta a:active,
.entry-footer a:hover,
.entry-footer a:active {
color: indigo;
}
.entry-meta .svg-icon,
.entry-footer .svg-icon {
fill: currentColor;
position: relative;
display: inline-block;
vertical-align: middle;
margin-left: calc(0.25 * 16px);
}
/**
* Entry Content
*/
.entry-content p {
word-wrap: break-word;
}
.entry-content .more-link {
2019-09-24 14:23:32 +00:00
display: block;
color: inherit;
}
.entry-content .more-link:after {
content: "\02192";
display: inline-block;
margin-right: 0.5em;
}
.entry-content .more-link:hover {
text-decoration: none;
}
.entry-content > iframe[style] {
margin: 32px 0 !important;
max-width: 100% !important;
}
@media only screen and (min-width: 560px) {
.entry-content > iframe[style] {
max-width: 32px !important;
}
}
.entry-attachment {
text-align: center;
}
/**
* Post Thumbnails
*/
.post-thumbnail {
text-align: center;
}
.post-thumbnail .post-thumbnail-inner {
display: block;
}
/**
* Author
*/
/* Author description */
.site-main > article > .author-bio {
margin-top: calc(2 * 32px);
}
.author-bio .author-title {
font-size: 2.0736rem;
}
/* Next/Previous navigation */
.post-navigation .meta-nav {
font-size: 0.83333rem;
}
.post-navigation .post-title {
font-family: sans-serif;
font-size: 1.44rem;
font-weight: 600;
}
.post-navigation .nav-next,
.post-navigation .nav-previous {
margin-top: 32px;
margin-bottom: 32px;
}
.post-navigation .nav-next:first-child,
.post-navigation .nav-previous:first-child {
margin-top: 0;
}
.post-navigation .nav-next:last-child,
.post-navigation .nav-previous:last-child {
margin-bottom: 0;
}
.pagination .nav-links {
justify-content: start;
margin: 0 calc(-0.66 * 16px);
}
.pagination .nav-links > * {
font-family: sans-serif;
font-size: 1.2rem;
font-weight: 600;
padding-right: calc(0.66 * 16px);
padding-left: calc(0.66 * 16px);
}
.pagination .nav-links .svg-icon {
display: inline-block;
vertical-align: middle;
}
@media only screen and (min-width: 560px) {
.nav-links {
display: flex;
justify-content: space-between;
}
.nav-links .nav-next,
.nav-links .nav-previous {
flex: 0 1 auto;
margin-bottom: inherit;
margin-top: inherit;
max-width: calc(50% - (0.5 * 16px));
}
.nav-links .nav-next {
text-align: left;
}
}
/**
* Comments Wrapper
*/
.comments-area > * {
margin-top: 32px;
margin-bottom: 32px;
}
.comments-area > *:first-child {
margin-top: 0;
}
.comments-area > *:last-child {
margin-bottom: 0;
}
/**
* Comment Title
*/
.comments-title {
font-size: 2.0736rem;
letter-spacing: normal;
}
.comment-reply-title {
font-size: 1.728rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.comment-reply-title small {
font-size: 1rem;
font-family: serif;
letter-spacing: normal;
line-height: 1.125;
}
/**
* Comment Lists
*/
.comment-list {
border-bottom: 1px solid #DDDDDD;
padding-right: 0;
list-style: none;
}
.comment-list > li {
border-top: 1px solid #DDDDDD;
margin-top: 32px;
margin-bottom: 32px;
}
2019-10-09 18:55:13 +00:00
.comment-list .children {
list-style: none;
padding-right: 16px;
}
2019-10-09 18:55:13 +00:00
.comment-list .children > li {
border-top: 1px solid #DDDDDD;
margin-top: 32px;
margin-bottom: 32px;
}
@media only screen and (min-width: 560px) {
2019-10-09 18:55:13 +00:00
.comment-list .children {
padding-right: 32px;
}
}
/**
* Comment Meta
*/
.comment-meta {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
}
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
}
.comment-meta .comment-metadata a {
color: currentColor;
}
.comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
color: indigo;
}
@media only screen and (min-width: 560px) {
.comment-meta {
align-items: center;
display: flex;
justify-content: space-between;
}
}
.comment-metadata,
.reply {
font-size: 0.69444rem;
line-height: 1.125;
}
.reply {
text-align: left;
}
@media only screen and (min-width: 560px) {
.reply {
text-align: right;
}
}
.bypostauthor {
display: block;
}
.says {
display: none;
}
.comment-author .fn,
.pingback .url,
.trackback .url {
font-family: sans-serif;
}
/**
* Comment body
*/
.comment-body {
position: relative;
}
.comment-body > * {
margin-top: 32px;
margin-bottom: 32px;
}
.comment-content a {
word-wrap: break-word;
}
/**
* Pingbacks & Trackbacks
*/
.pingback .comment-body,
.trackback .comment-body {
margin-top: 32px;
margin-bottom: 32px;
}
/**
* Comment Form
*/
.comment-respond {
margin-top: calc(2 * 32px);
}
.comment-respond > * {
margin-top: 16px;
margin-bottom: 16px;
}
.comment-respond > *:first-child {
margin-top: 0;
}
.comment-respond > *:last-child {
margin-bottom: 0;
}
.comment-form > p {
margin-top: 16px;
margin-bottom: 16px;
}
.comment-form > p:first-of-type {
margin-top: 0;
}
.comment-form > p:last-of-type {
margin-bottom: 0;
}
.comment-form > p label,
.comment-form > p input[type="email"],
.comment-form > p input[type="text"],
.comment-form > p input[type="url"],
.comment-form > p textarea {
width: 100%;
}
.comment-form > p.comment-form-cookies-consent > label {
width: auto;
}
@media only screen and (min-width: 560px) {
.comment-form > p {
display: flex;
}
.comment-form > p label {
width: 25%;
}
.comment-form > p.comment-form-cookies-consent {
margin-right: 25%;
}
.comment-form > p.comment-form-cookies-consent > label {
width: auto;
display: inline-block;
}
.comment-form > p input[type="email"],
.comment-form > p input[type="text"],
.comment-form > p input[type="url"],
.comment-form > p textarea {
width: 75%;
}
.comment-form > p.comment-notes, .comment-form > p.logged-in-as {
display: block;
}
}
/**
* Comment Nav
*/
.comment-navigation a {
font-family: sans-serif;
font-size: 1.2rem;
font-weight: 600;
}
.widget-area {
flex: 0 0 100%;
}
2019-07-29 16:03:24 +00:00
/* Utilities */
img#wpstats {
position: absolute !important;
clip: rect(0, 0, 0, 0);
padding: 0 !important;
border: 0 !important;
height: 0 !important;
width: 0 !important;
overflow: hidden;
}
/**
* Site Pages
* - Page specific styles
*/
/**
* Site Pages
* - Page specific styles
*/
.sticky-post {
color: white;
background-color: blue;
font-family: sans-serif;
font-weight: bold;
font-size: 0.83333rem;
line-height: 1;
padding: calc(0.5 * 16px) calc(0.66 * 16px);
}
.page-title {
font-size: 1.728rem;
}
/**
* Responsive Logic
* - Loading this last to respect cascaing rules
*/
/**
* Page Layout Styles & Repsonsive Styles
*/
/* Responsive width-content overrides */
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: 100%;
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 560px) {
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: calc( 560px - 32px);
}
}
@media only screen and (min-width: 640px) {
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: calc( 640px - 32px);
}
}
@media only screen and (min-width: 782px) {
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: calc( 782px - 32px);
}
}
@media only screen and (min-width: 1024px) {
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: calc( 782px - 32px);
}
}
@media only screen and (min-width: 1280px) {
.responsive-max-width, .wp-block-pullquote.is-style-solid-color:not(.alignleft):not(.alignright) blockquote, .wp-block-pullquote.alignwide > p,
.wp-block-pullquote.alignfull > p,
.wp-block-pullquote.alignwide blockquote,
.wp-block-pullquote.alignfull blockquote, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.entry-attachment),
.entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
max-width: calc( 782px - 32px);
}
}
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
margin-right: auto;
margin-left: auto;
max-width: 100%;
/* Matches normal width until desktop breakpoint */
}
@media only screen and (min-width: 560px) {
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
max-width: calc( 560px - 32px);
}
}
@media only screen and (min-width: 640px) {
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
max-width: calc( 640px - 32px);
}
}
@media only screen and (min-width: 782px) {
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
max-width: calc( 782px - 32px);
}
}
@media only screen and (min-width: 1024px) {
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
width: calc(calc( 782px - 32px) + 256px);
max-width: calc(100% - 32px);
}
}
@media only screen and (min-width: 1280px) {
.entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
width: calc(calc( 782px - 32px) + 256px);
max-width: calc(100% - 32px);
}
}
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(100% + 256px);
max-width: 100%;
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 560px) {
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(calc( 560px - 32px) + 256px);
max-width: 100%;
}
}
@media only screen and (min-width: 640px) {
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(calc( 640px - 32px) + 256px);
max-width: 100%;
}
}
@media only screen and (min-width: 782px) {
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(calc( 782px - 32px) + 256px);
max-width: 100%;
}
}
@media only screen and (min-width: 1024px) {
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(calc( 782px - 32px) + 256px);
max-width: 100%;
}
}
@media only screen and (min-width: 1280px) {
.entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
width: calc(calc( 782px - 32px) + 256px);
max-width: 100%;
}
}
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
margin-right: -16px;
margin-left: -16px;
width: calc(100% + 32px);
max-width: calc(100% + 32px);
/* Letting the box-model do most of the work here. */
}
@media only screen and (min-width: 560px) {
.entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
margin-right: inherit;
margin-left: inherit;
width: inherit;
max-width: inherit;
}
}
.entry-content > .alignright {
margin-right: 16px;
}
@media only screen and (min-width: 560px) {
.entry-content > .alignright {
margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
}
}
@media only screen and (min-width: 640px) {
.entry-content > .alignright {
margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
}
}
@media only screen and (min-width: 782px) {
.entry-content > .alignright {
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
@media only screen and (min-width: 1024px) {
.entry-content > .alignright {
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
@media only screen and (min-width: 1280px) {
.entry-content > .alignright {
margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
.entry-content > .alignleft {
margin-left: 16px;
}
@media only screen and (min-width: 560px) {
.entry-content > .alignleft {
margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
}
}
@media only screen and (min-width: 640px) {
.entry-content > .alignleft {
margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
}
}
@media only screen and (min-width: 782px) {
.entry-content > .alignleft {
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
@media only screen and (min-width: 1024px) {
.entry-content > .alignleft {
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
@media only screen and (min-width: 1280px) {
.entry-content > .alignleft {
margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
}
}
/**
* Vendors
* - Styles for 3rd party plugins and WP extensions
*/
/**
* Vendors
* - 3rd-party compatibility styles
*/
/**
* Subscription Form
*/
.wp-block-jetpack-subscriptions form > * {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-jetpack-subscriptions form > * {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-jetpack-subscriptions form > *:first-child {
margin-top: 0;
}
.wp-block-jetpack-subscriptions form > *:last-child {
margin-bottom: 0;
}
/**
* Cookies & Consents Banner
*/
body .widget_eu_cookie_law_widget {
background: transparent;
bottom: 0;
right: 0;
padding: 8px;
left: 0;
}
body .widget_eu_cookie_law_widget.widget.top {
bottom: auto;
top: 0;
}
body .widget_eu_cookie_law_widget #eu-cookie-law {
background: white;
border: 1px solid #DDDDDD;
color: #444444;
font-size: 0.83333rem;
line-height: inherit;
padding: 16px;
}
@media (max-width: 600px) {
body .widget_eu_cookie_law_widget #eu-cookie-law {
padding-bottom: 80px;
}
}
body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
background: #444444;
border-color: #111111;
color: white;
}
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
background: white;
color: #444444;
}
body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
background: #DDDDDD;
}
body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
margin: 0;
margin-right: 32px;
}
@media (max-width: 600px) {
body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
bottom: 16px;
right: 16px;
margin: 0;
}
}
body.admin-bar .widget_eu_cookie_law_widget.widget.top {
top: 32px;
}
@media (max-width: 782px) {
body.admin-bar .widget_eu_cookie_law_widget.widget.top {
top: 46px;
}
}
/**
* Mailchimp Subscription Form
*/
.wp-block-jetpack-mailchimp p {
margin-top: 21.312px;
margin-bottom: 21.312px;
}
@media only screen and (min-width: 560px) {
.wp-block-jetpack-mailchimp p {
margin-top: 32px;
margin-bottom: 32px;
}
}
.wp-block-jetpack-mailchimp p:first-child {
margin-top: 0;
}
.wp-block-jetpack-mailchimp p:last-child {
margin-bottom: 0;
}
.wp-block-jetpack-mailchimp input[type=email] {
width: 100%;
}
#wp-block-jetpack-mailchimp_consent-text {
font-size: 0.83333rem;
}
/**
* Main WooCommerce styles
*/
.woocommerce a.remove {
2019-10-09 18:55:13 +00:00
font-size: 1.44rem;
height: 1.44rem;
width: 1.44rem;
color: red !important;
}
.woocommerce a.remove:hover {
2019-10-09 18:55:13 +00:00
color: white !important;
background: red;
}
.woocommerce small.note {
color: #767676;
font-size: 0.83333rem;
margin-top: 16px;
}
.woocommerce .woocommerce-breadcrumb {
margin-bottom: 32px;
font-size: 1rem;
color: #767676;
}
.woocommerce .woocommerce-breadcrumb a {
color: currentColor;
}
/**
* Button
*/
body[class*="woocommerce"] #page .woocommerce #respond input#submit.disabled,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:disabled,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:disabled[disabled],
body[class*="woocommerce"] #page .woocommerce a.button.disabled,
body[class*="woocommerce"] #page .woocommerce a.button:disabled,
body[class*="woocommerce"] #page .woocommerce a.button:disabled[disabled],
body[class*="woocommerce"] #page .woocommerce button.button.disabled,
body[class*="woocommerce"] #page .woocommerce button.button:disabled,
body[class*="woocommerce"] #page .woocommerce button.button:disabled[disabled],
body[class*="woocommerce"] #page .woocommerce input.button.disabled,
body[class*="woocommerce"] #page .woocommerce input.button:disabled,
body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled] {
2019-10-09 18:55:13 +00:00
cursor: not-allowed;
}
body[class*="woocommerce"] #page .woocommerce #respond input#submit.disabled:hover,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:disabled:hover,
body[class*="woocommerce"] #page .woocommerce #respond input#submit:disabled[disabled]:hover,
body[class*="woocommerce"] #page .woocommerce a.button.disabled:hover,
body[class*="woocommerce"] #page .woocommerce a.button:disabled:hover,
body[class*="woocommerce"] #page .woocommerce a.button:disabled[disabled]:hover,
body[class*="woocommerce"] #page .woocommerce button.button.disabled:hover,
body[class*="woocommerce"] #page .woocommerce button.button:disabled:hover,
body[class*="woocommerce"] #page .woocommerce button.button:disabled[disabled]:hover,
body[class*="woocommerce"] #page .woocommerce input.button.disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:hover {
2019-10-09 18:55:13 +00:00
background-color: blue;
}
/**
* Reviews
*/
.woocommerce #page {
2019-10-09 18:55:13 +00:00
/**
* Cart sidebar
*/
}
.woocommerce #page ul.cart_list li img,
.woocommerce #page ul.product_list_widget li img {
2019-10-09 18:55:13 +00:00
margin-right: 4px;
width: 32px;
}
.woocommerce #page ul.cart_list li dl,
.woocommerce #page ul.product_list_widget li dl {
2019-10-09 18:55:13 +00:00
border-right-color: #DDDDDD;
}
.woocommerce #page ul.cart_list li dl dt,
.woocommerce #page ul.cart_list li dl dd,
.woocommerce #page ul.product_list_widget li dl dt,
.woocommerce #page ul.product_list_widget li dl dd {
2019-10-09 18:55:13 +00:00
margin-bottom: 32px;
}
.woocommerce #page .widget_shopping_cart .total {
border-top: 1px solid #DDDDDD;
padding-top: 16px;
2019-10-09 18:55:13 +00:00
}
.woocommerce #page .widget_shopping_cart .cart_list li {
border-top: 1px solid #DDDDDD;
padding: 16px 32px 16px 0;
}
.woocommerce #page .widget_shopping_cart .cart_list li a.remove {
top: 16px;
2019-10-09 18:55:13 +00:00
}
/**
* Cart Collaterals
*/
.woocommerce-cart .cart-collaterals .shipping-calculator-button,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button,
#add_payment_method .cart-collaterals .shipping-calculator-button {
margin-top: 16px;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-form,
.woocommerce-checkout .cart-collaterals .shipping-calculator-form,
#add_payment_method .cart-collaterals .shipping-calculator-form {
margin-top: 16px;
}
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small,
#add_payment_method .cart-collaterals .cart_totals p small {
color: #767676;
font-size: 0.83333rem;
}
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table,
#add_payment_method .cart-collaterals .cart_totals table {
margin: 0 0 8px;
}
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th,
#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th {
line-height: 1.78;
}
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small,
#add_payment_method .cart-collaterals .cart_totals table small {
color: #767676;
}
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td,
#add_payment_method .cart-collaterals .cart_totals .discount td {
color: gold;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th,
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th {
border-top-color: #DDDDDD;
}
.woocommerce .cart-collaterals .cross-sells > h2,
.woocommerce-page .cart-collaterals .cross-sells > h2,
.woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2 {
font-size: 1.44rem;
}
/**
* Notices
*/
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
padding: 16px 64px 16px 32px;
margin-bottom: 32px;
background-color: #FAFAFA;
color: #111111;
border-top-color: blue;
}
.woocommerce .woocommerce-message {
border-top-color: yellowgreen;
}
.woocommerce .woocommerce-message:before {
color: yellowgreen;
}
.woocommerce .woocommerce-error {
border-top-color: salmon;
}
.woocommerce .woocommerce-error:before {
color: salmon;
}
.woocommerce .woocommerce-info {
border-top-color: blue;
}
.woocommerce .woocommerce-info:before {
color: blue;
}
/**
* Star ratings
*/
.woocommerce #content span.onsale {
border-radius: 100%;
background-color: gold;
color: #111111;
font-size: 0.83333rem;
font-weight: 700;
font-family: sans-serif;
min-height: 3.236rem;
min-width: 3.236rem;
padding: 0.202rem;
position: absolute;
text-align: center;
line-height: 3.236;
top: -0.5em;
left: -0.5em;
right: auto;
margin: 0;
z-index: 9;
}
/**
* Password strength meter
*/
.woocommerce-password-strength {
text-align: center;
font-weight: 600;
padding: 4px;
font-size: 0.83333rem;
}
.woocommerce-password-strength.strong {
background-color: yellowgreen;
border-color: none;
}
.woocommerce-password-strength.good {
background-color: gold;
border-color: none;
}
.woocommerce-password-strength.short {
background-color: salmon;
border-color: none;
}
.woocommerce-password-strength.bad {
background-color: salmon;
border-color: none;
}
woocommerce-password-hint {
font-size: 0.69444rem;
}
/**
* Product loops
*/
#content .woocommerce .products ul,
#content .woocommerce ul.products {
margin: 0;
padding: 0;
}
#content .woocommerce ul.products li.product .star-rating {
margin: inherit;
}
#content .woocommerce ul.products li.product h3,
#content .woocommerce ul.products li.product .woocommerce-loop-product__title,
#content .woocommerce ul.products li.product .woocommerce-loop-category__title {
padding: inherit;
margin: inherit;
font-size: 1rem;
}
#content .woocommerce ul.products li.product a img {
margin: inherit;
}
#content .woocommerce ul.products li.product .woocommerce-placeholder {
border-color: #DDDDDD;
}
#content .woocommerce ul.products li.product .star-rating {
font-size: 0.83333rem;
}
#content .woocommerce ul.products li.product .button {
margin-top: inherit;
}
#content .woocommerce ul.products li.product .price {
color: #111111;
margin-bottom: inherit;
font-size: 1.2rem;
}
#content .woocommerce ul.products li.product .price del {
color: inherit;
opacity: 0.5;
display: inline-block;
}
#content .woocommerce ul.products li.product .price ins {
background: none;
font-weight: 700;
display: inline-block;
}
#content .woocommerce ul.products li.product .price .from {
font-size: 0.69444rem;
color: gold;
}
#content .woocommerce ul.products li.product.sale a > .price ins {
color: yellowgreen;
}
#content .woocommerce .woocommerce-result-count {
margin-bottom: 16px;
}
#content .woocommerce .woocommerce-ordering {
margin-bottom: 16px;
}
#content .woocommerce .woocommerce-ordering select {
vertical-align: top;
}
#content .woocommerce nav.woocommerce-pagination {
text-align: center;
}
#content .woocommerce nav.woocommerce-pagination ul {
display: inline-block;
white-space: nowrap;
padding: 0;
clear: both;
border-color: #DDDDDD;
border-left: 0;
margin: 1px;
}
#content .woocommerce nav.woocommerce-pagination ul li {
border-color: #DDDDDD;
padding: 0;
margin: 0;
float: right;
display: inline;
overflow: hidden;
}
#content .woocommerce nav.woocommerce-pagination ul li a,
#content .woocommerce nav.woocommerce-pagination ul li span {
margin: 0;
text-decoration: none;
padding: 0;
line-height: 1;
font-size: 1em;
font-weight: normal;
padding: 0.5em;
min-width: 1em;
display: block;
}
#content .woocommerce nav.woocommerce-pagination ul li span.current,
#content .woocommerce nav.woocommerce-pagination ul li a:hover,
#content .woocommerce nav.woocommerce-pagination ul li a:focus {
background: #DDDDDD;
color: #767676;
}
/**
* Reviews
*/
.woocommerce #content {
/**
* Reviews
*/
}
.woocommerce #content #reviews h2 small {
color: #767676;
font-size: 0.83333rem;
margin: inherit;
}
.woocommerce #content #reviews h2 small a {
color: currentColor;
}
.woocommerce #content #reviews #comments ol.commentlist li {
margin-bottom: 16px;
}
.woocommerce #content #reviews #comments ol.commentlist li .meta {
color: #767676;
font-size: 0.83333rem;
}
.woocommerce #content #reviews #comments ol.commentlist li img.avatar {
float: right;
position: absolute;
top: 0;
right: 0;
padding: 3px;
width: 32px;
height: auto;
background: red;
border-color: #DDDDDD;
margin: 0;
box-shadow: none;
}
.woocommerce #content #reviews #comments ol.commentlist li .comment-text {
margin: 0 50px 0 0;
border: 1px solid #f00000;
border-radius: 4px;
padding: 1em 1em 0;
}
.woocommerce #content #reviews #comments ol.commentlist li .comment-text p {
margin: 0 0 1em;
}
.woocommerce #content #reviews #comments ol.commentlist li .comment-text p.meta {
font-size: 0.83em;
}
.woocommerce #content #reviews #comments ol.commentlist ul.children {
list-style: none outside;
margin: 20px 50px 0 0;
}
.woocommerce #content #reviews #comments ol.commentlist ul.children .star-rating {
display: none;
}
.woocommerce #content #reviews #comments ol.commentlist #respond {
border: 1px solid #f00000;
border-radius: 4px;
padding: 1em 1em 0;
margin: 20px 50px 0 0;
}
.woocommerce #content #reviews #comments .commentlist > li::before {
content: "";
}
/**
* Star ratings
*/
.woocommerce #content .star-rating::before {
color: red;
}
.woocommerce #content .star-rating span {
color: red;
}
/**
* Tables
*/
.woocommerce table.shop_table {
border-collapse: collapse;
border: 1px solid #DDDDDD;
margin-bottom: 32px;
}
.woocommerce table.shop_table td {
border-top: none;
}
.woocommerce table.shop_table tr {
border-bottom: 1px solid #DDDDDD;
}
.woocommerce table.shop_attributes {
2019-10-09 18:55:13 +00:00
border-top-color: #DDDDDD;
border-top-style: solid;
margin-bottom: 32px;
}
.woocommerce table.shop_attributes th {
padding: 8px;
2019-10-09 18:55:13 +00:00
border-bottom-color: #DDDDDD;
border-bottom-style: solid;
line-height: 1.78;
}
.woocommerce table.shop_attributes td {
font-style: inherit;
2019-10-09 18:55:13 +00:00
border-bottom-color: #DDDDDD;
border-bottom-style: solid;
line-height: 1.78;
}
.woocommerce table.shop_attributes td p {
margin: 0;
padding: 8px 0;
}
.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
background: rgba(0, 0, 0, 0.025);
}
2019-10-09 18:55:13 +00:00
.woocommerce table td,
.woocommerce table th {
border: inherit;
}
/**
* Structure
*/
/**
* Vertical Space - 32px
*/
.woocommerce #content div.summary > *:not(:first-child),
.woocommerce #content div.product .woocommerce-tabs .panel > *:not(:first-child),
.woocommerce #content .products.related > *:not(:first-child),
.woocommerce .woocommerce-MyAccount-content > *:not(:first-child),
.woocommerce .woocommerce-EditAccountForm > *:not(:first-child),
.woocommerce .woocommerce-billing-fields > *:not(:first-child),
.woocommerce .woocommerce-shipping-fields > *:not(:first-child),
.woocommerce .woocommerce-checkout > *:not(:first-child),
2019-10-09 18:55:13 +00:00
.woocommerce .up-sells > *:not(:first-child) {
margin-top: 32px;
}
.woocommerce #content div.summary > *:not(:last-child),
.woocommerce #content div.product .woocommerce-tabs .panel > *:not(:last-child),
.woocommerce #content .products.related > *:not(:last-child),
.woocommerce .woocommerce-MyAccount-content > *:not(:last-child),
.woocommerce .woocommerce-EditAccountForm > *:not(:last-child),
.woocommerce .woocommerce-billing-fields > *:not(:last-child),
.woocommerce .woocommerce-shipping-fields > *:not(:last-child),
.woocommerce .woocommerce-checkout > *:not(:last-child),
2019-10-09 18:55:13 +00:00
.woocommerce .up-sells > *:not(:last-child) {
margin-bottom: 32px;
}
.woocommerce #content div.summary > *:empty + *,
.woocommerce #content div.summary > .form-row-last,
.woocommerce #content div.product .woocommerce-tabs .panel > *:empty + *,
.woocommerce #content div.product .woocommerce-tabs .panel > .form-row-last,
.woocommerce #content .products.related > *:empty + *,
.woocommerce #content .products.related > .form-row-last,
.woocommerce .woocommerce-MyAccount-content > *:empty + *,
.woocommerce .woocommerce-MyAccount-content > .form-row-last,
.woocommerce .woocommerce-EditAccountForm > *:empty + *,
.woocommerce .woocommerce-EditAccountForm > .form-row-last,
.woocommerce .woocommerce-billing-fields > *:empty + *,
.woocommerce .woocommerce-billing-fields > .form-row-last,
.woocommerce .woocommerce-shipping-fields > *:empty + *,
.woocommerce .woocommerce-shipping-fields > .form-row-last,
.woocommerce .woocommerce-checkout > *:empty + *,
.woocommerce .woocommerce-checkout > .form-row-last,
2019-10-09 18:55:13 +00:00
.woocommerce .up-sells > *:empty + *,
.woocommerce .up-sells > .form-row-last {
margin-top: 0;
}
.woocommerce #content div.summary > *:empty,
.woocommerce #content div.product .woocommerce-tabs .panel > *:empty,
.woocommerce #content .products.related > *:empty,
.woocommerce .woocommerce-MyAccount-content > *:empty,
.woocommerce .woocommerce-EditAccountForm > *:empty,
.woocommerce .woocommerce-billing-fields > *:empty,
.woocommerce .woocommerce-shipping-fields > *:empty,
.woocommerce .woocommerce-checkout > *:empty,
2019-10-09 18:55:13 +00:00
.woocommerce .up-sells > *:empty {
margin: 0;
}
/**
* Vertical Space - 16px
*/
#content .woocommerce ul.products li.product a > *:not(:first-child),
#content .woocommerce ul.products li.product-category a > *:not(:first-child),
.woocommerce .cart-collaterals .cross-sells > *:not(:first-child),
.woocommerce-page .cart-collaterals .cross-sells > *:not(:first-child),
.woocommerce .cart-collaterals .cart_totals > *:not(:first-child),
.woocommerce-page .cart-collaterals .cart_totals > *:not(:first-child),
.woocommerce .widget_shopping_cart > *:not(:first-child),
.woocommerce .widget_shopping_cart_content > *:not(:first-child) {
2019-10-09 18:55:13 +00:00
margin-top: 16px;
}
#content .woocommerce ul.products li.product a > *:not(:last-child),
#content .woocommerce ul.products li.product a > .price,
#content .woocommerce ul.products li.product-category a > *:not(:last-child),
#content .woocommerce ul.products li.product-category a > .price,
.woocommerce .cart-collaterals .cross-sells > *:not(:last-child),
.woocommerce .cart-collaterals .cross-sells > .price,
.woocommerce-page .cart-collaterals .cross-sells > *:not(:last-child),
.woocommerce-page .cart-collaterals .cross-sells > .price,
.woocommerce .cart-collaterals .cart_totals > *:not(:last-child),
.woocommerce .cart-collaterals .cart_totals > .price,
.woocommerce-page .cart-collaterals .cart_totals > *:not(:last-child),
.woocommerce-page .cart-collaterals .cart_totals > .price,
.woocommerce .widget_shopping_cart > *:not(:last-child),
.woocommerce .widget_shopping_cart > .price,
.woocommerce .widget_shopping_cart_content > *:not(:last-child),
.woocommerce .widget_shopping_cart_content > .price {
2019-10-09 18:55:13 +00:00
margin-bottom: 16px;
}
#content .woocommerce ul.products li.product a > *:not(img):empty + *,
#content .woocommerce ul.products li.product-category a > *:not(img):empty + *,
.woocommerce .cart-collaterals .cross-sells > *:not(img):empty + *,
.woocommerce-page .cart-collaterals .cross-sells > *:not(img):empty + *,
.woocommerce .cart-collaterals .cart_totals > *:not(img):empty + *,
.woocommerce-page .cart-collaterals .cart_totals > *:not(img):empty + *,
.woocommerce .widget_shopping_cart > *:not(img):empty + *,
.woocommerce .widget_shopping_cart_content > *:not(img):empty + * {
2019-10-09 18:55:13 +00:00
margin-top: 0;
}
#content .woocommerce ul.products li.product a > *:empty,
#content .woocommerce ul.products li.product-category a > *:empty,
.woocommerce .cart-collaterals .cross-sells > *:empty,
.woocommerce-page .cart-collaterals .cross-sells > *:empty,
.woocommerce .cart-collaterals .cart_totals > *:empty,
.woocommerce-page .cart-collaterals .cart_totals > *:empty,
.woocommerce .widget_shopping_cart > *:empty,
.woocommerce .widget_shopping_cart_content > *:empty {
2019-10-09 18:55:13 +00:00
margin: 0;
}
/**
* Account page
*/
.woocommerce-account #content .woocommerce-MyAccount-content .woocommerce-notices-wrapper:empty {
display: none;
}
.woocommerce-account #content .woocommerce-MyAccount-content fieldset {
border: 1px solid #DDDDDD;
padding: 16px;
border-radius: 3px;
}
.woocommerce-account #content .addresses .title h3 {
font-size: 1rem;
}
/**
* Cart
*/
/**
* Cart/checkout page
*/
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail,
#add_payment_method table.cart .product-thumbnail {
min-width: 16px;
}
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img,
#add_payment_method table.cart img {
width: 64px;
2019-10-09 18:55:13 +00:00
}
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
#add_payment_method table.cart td.actions .coupon .input-text {
border-color: #DDDDDD;
2019-10-09 18:55:13 +00:00
padding: 8px;
margin: 0 0 0 8px;
}
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout,
#add_payment_method .wc-proceed-to-checkout {
padding: 32px 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button,
#add_payment_method .wc-proceed-to-checkout a.checkout-button {
margin-bottom: 32px;
font-size: 1.2rem;
padding: 16px;
}
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small,
#add_payment_method .checkout .create-account small {
font-size: 0.69444rem;
color: #767676;
}
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment {
background: #FAFAFA;
2019-10-09 18:55:13 +00:00
border-radius: 3px;
}
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment ul.payment_methods {
padding: 8px;
border-bottom-color: #DDDDDD;
}
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li,
#add_payment_method #payment ul.payment_methods li {
line-height: 1.78;
}
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input,
#add_payment_method #payment ul.payment_methods li input {
margin-left: 1.78;
}
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
#add_payment_method #payment div.form-row {
padding: 8px;
}
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
#add_payment_method #payment div.payment_box {
padding: 8px;
margin-bottom: 8px;
margin-top: 8px;
font-size: 0.83333rem;
border-radius: 3px;
line-height: 1.78;
background-color: #DDDDDD;
color: #444444;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea,
#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea {
border-color: #DDDDDD;
2019-10-09 18:55:13 +00:00
border-top-color: #DDDDDD;
}
.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder,
#add_payment_method #payment div.payment_box ::-webkit-input-placeholder {
color: #767676;
}
.woocommerce-cart #payment div.payment_box :-moz-placeholder,
.woocommerce-checkout #payment div.payment_box :-moz-placeholder,
#add_payment_method #payment div.payment_box :-moz-placeholder {
color: #767676;
}
.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder,
#add_payment_method #payment div.payment_box :-ms-input-placeholder {
color: #767676;
}
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
margin-left: 16px;
}
.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form,
#add_payment_method #payment div.payment_box .wc-credit-card-form {
margin-top: 16px;
}
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc {
font-size: 1.44rem;
padding: 8px;
}
.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help,
#add_payment_method #payment div.payment_box span.help {
font-size: 0.83333rem;
color: #767676;
}
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row,
#add_payment_method #payment div.payment_box .form-row {
margin: 0 0 32px;
}
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child,
#add_payment_method #payment div.payment_box p:last-child {
margin-bottom: 0;
}
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before,
#add_payment_method #payment div.payment_box::before {
border-bottom-color: #DDDDDD;
2019-10-09 18:55:13 +00:00
/* arrow size / color */
}
.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal,
#add_payment_method #payment .payment_method_paypal .about_paypal {
float: left;
line-height: 52px;
font-size: 0.83333rem;
}
.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img,
#add_payment_method #payment .payment_method_paypal img {
max-height: 52px;
vertical-align: middle;
}
.woocommerce-terms-and-conditions {
border-color: #DDDDDD;
}
.woocommerce-invalid #terms {
outline-color: salmon;
}
.woocommerce-cart #content table.shop_table {
border-color: #DDDDDD;
border-radius: 3px;
}
.woocommerce-cart #content table.shop_table th {
padding: 8px 16px;
line-height: 1.78;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content table.shop_table td {
padding: 8px 16px;
line-height: 1.78;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content table.shop_table tfoot td,
.woocommerce-cart #content table.shop_table tfoot th,
.woocommerce-cart #content table.shop_table tbody th {
border-top-color: #DDDDDD;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content table.my_account_orders {
font-size: 0.83333rem;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content table.my_account_orders th,
.woocommerce-cart #content table.my_account_orders td {
padding: 4px 8px;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content td.product-name dl.variation dt,
.woocommerce-cart #content td.product-name dl.variation .wc-item-meta-label,
.woocommerce-cart #content td.product-name .wc-item-meta dt,
.woocommerce-cart #content td.product-name .wc-item-meta .wc-item-meta-label {
margin-left: 8px;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content td.product-name p.backorder_notification {
font-size: 0.83333rem;
}
2019-10-09 18:55:13 +00:00
.woocommerce-cart #content td.product-quantity {
min-width: 80px;
}
2019-10-09 18:55:13 +00:00
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page #content .woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text {
width: inherit;
float: inherit;
padding: 16px;
}
2019-10-09 18:55:13 +00:00
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
border-top-color: #DDDDDD;
}
/**
* Product Page
*/
.woocommerce #content div.product span.price,
.woocommerce #content div.product p.price {
color: blue;
font-size: 1.728rem;
}
.woocommerce #content div.product p.stock {
font-size: 1rem;
}
.woocommerce #content div.product .stock {
color: blue;
}
.woocommerce #content div.product .out-of-stock {
color: red;
}
.woocommerce #content div.product .woocommerce-product-rating {
margin-bottom: 32px;
}
.woocommerce #content div.product div.images {
margin-bottom: 32px;
}
.woocommerce #content div.product div.images div.thumbnails {
padding-top: 16px;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
background-color: white;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__image--placeholder {
border-color: #FAFAFA;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__trigger {
font-size: 1.2rem;
background: white;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__trigger::before {
border-color: #AAAAAA;
}
.woocommerce #content div.product div.images .woocommerce-product-gallery__trigger::after {
background-color: #AAAAAA;
}
.woocommerce #content div.product div.summary {
margin-bottom: 32px;
}
.woocommerce #content div.product div.social {
margin-bottom: 32px;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs {
padding-right: 16px;
margin-bottom: 32px;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li {
border-color: #DDDDDD;
background-color: red;
border-radius: 9px 9px 0 0;
padding-right: 16px;
padding-left: 16px;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li a {
padding-top: 8px;
padding-bottom: 8px;
color: red;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li a:hover {
color: #ff3333;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active {
background-color: white;
border-bottom-color: white;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a {
color: inherit;
text-shadow: inherit;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active::before {
box-shadow: -2px 2px 0 white;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active::after {
box-shadow: 2px 2px 0 white;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li::before, .woocommerce #content div.product .woocommerce-tabs ul.tabs li::after {
border-color: #DDDDDD;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li::before {
box-shadow: -2px 2px 0 red;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li::after {
box-shadow: 2px 2px 0 red;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs::before {
border-bottom-color: #DDDDDD;
}
.woocommerce #content div.product .woocommerce-tabs .panel {
margin-bottom: 32px;
}
.woocommerce #content div.product p.cart {
margin-bottom: 32px;
}
.woocommerce #content div.product form.cart .variations {
margin-bottom: 16px;
}
.woocommerce #content div.product form.cart .variations td,
.woocommerce #content div.product form.cart .variations th {
line-height: 1.78;
}
.woocommerce #content div.product form.cart .variations select {
margin-left: 16px;
}
.woocommerce #content div.product form.cart .variations td.label {
padding-left: 16px;
}
.woocommerce #content div.product form.cart .woocommerce-variation-description p {
margin-bottom: 16px;
}
.woocommerce #content div.product form.cart .reset_variations {
font-size: 0.83333rem;
}
.woocommerce #content div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
padding-left: 16px;
padding-right: 16px;
}
.woocommerce #content div.product form.cart .group_table td {
padding-bottom: 16px;
}
.woocommerce #content div.product form.cart div.quantity,
.woocommerce #content div.product form.cart button {
float: inherit;
display: inline-block;
vertical-align: middle;
}
2019-10-09 18:55:13 +00:00
/**
* Single Product Page
*/
.woocommerce-page #content {
/**
* Remove the bright yellow background on mark elements.
*/
}
.woocommerce-page #content mark {
background: transparent;
}
.woocommerce-page #content div.product span.price,
.woocommerce-page #content div.product p.price {
color: blue;
font-size: 1.728rem;
}
.woocommerce-page #content div.product p.stock {
font-size: 1rem;
}
.woocommerce-page #content div.product .stock {
color: blue;
}
.woocommerce-page #content div.product .out-of-stock {
color: red;
}
.woocommerce-page #content div.product .woocommerce-product-rating {
margin-bottom: 32px;
}
.woocommerce-page #content div.product div.images {
margin-bottom: 32px;
}
.woocommerce-page #content div.product div.images div.thumbnails {
padding-top: 16px;
}
.woocommerce-page #content div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
background-color: white;
}
.woocommerce-page #content div.product div.images .woocommerce-product-gallery__image--placeholder {
border-color: #FAFAFA;
}
.woocommerce-page #content div.product div.images .woocommerce-product-gallery__trigger {
font-size: 1.2rem;
background: white;
}
.woocommerce-page #content div.product div.images .woocommerce-product-gallery__trigger::before {
border-color: #AAAAAA;
}
.woocommerce-page #content div.product div.images .woocommerce-product-gallery__trigger::after {
background-color: #AAAAAA;
}
.woocommerce-page #content div.product div.summary {
margin-bottom: 32px;
}
.woocommerce-page #content div.product div.social {
margin-bottom: 32px;
}
.woocommerce-page #content div.product .product_meta > * {
display: block;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs {
padding-right: 16px;
margin-bottom: 32px;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li {
border-color: #DDDDDD;
background-color: white;
border-radius: 9px 9px 0 0;
padding-right: 16px;
padding-left: 16px;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a {
padding-top: 8px;
padding-bottom: 8px;
color: #444444;
2019-10-09 18:55:13 +00:00
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a:hover {
color: blue;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active {
background-color: white;
border-bottom-color: white;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active a {
color: inherit;
text-shadow: inherit;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active::before {
box-shadow: -2px 2px 0 white;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active::after {
box-shadow: 2px 2px 0 white;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li::before, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li::after {
border-color: #DDDDDD;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li::before {
box-shadow: -2px 2px 0 #DDDDDD;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li::after {
box-shadow: 2px 2px 0 #DDDDDD;
}
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before {
border-bottom-color: #DDDDDD;
}
.woocommerce-page #content div.product .woocommerce-tabs .panel {
margin-bottom: 32px;
}
.woocommerce-page #content div.product .woocommerce-tabs .panel > h2 {
font-size: 1.44rem;
}
.woocommerce-page #content div.product .up-sells > h2 {
font-size: 1.44rem;
}
.woocommerce-page #content div.product p.cart {
margin-bottom: 32px;
}
.woocommerce-page #content div.product form.cart .variations {
margin-bottom: 16px;
}
.woocommerce-page #content div.product form.cart .variations td,
.woocommerce-page #content div.product form.cart .variations th {
line-height: 1.78;
}
.woocommerce-page #content div.product form.cart .variations select {
margin-left: 16px;
}
.woocommerce-page #content div.product form.cart .variations td.label {
padding-left: 16px;
}
.woocommerce-page #content div.product form.cart .woocommerce-variation-description p {
margin-bottom: 16px;
}
.woocommerce-page #content div.product form.cart .reset_variations {
font-size: 0.83333rem;
}
2019-10-09 18:55:13 +00:00
.woocommerce-page #content div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
padding-left: 16px;
padding-right: 16px;
}
.woocommerce-page #content div.product form.cart .group_table td {
padding-bottom: 16px;
}
.woocommerce-page #content div.product form.cart div.quantity,
.woocommerce-page #content div.product form.cart button {
float: inherit;
display: inline-block;
vertical-align: middle;
}
/**
* Full Site Editing
* - Full Site Editing overrides
*/
.fse-enabled .site-footer {
display: block;
}
.fse-enabled .site-footer .main-navigation {
display: block;
}
.fse-enabled .site-footer .main-navigation .hide-visually,
.fse-enabled .site-footer .main-navigation #toggle-menu {
display: none;
}
@media only screen and (max-width: 559px) {
.fse-enabled .site-footer .main-navigation > div {
display: block;
}
.fse-enabled .site-footer .main-navigation li {
width: auto;
}
.fse-enabled .site-footer .main-navigation li .sub-menu {
display: none;
}
}
.fse-enabled .site-footer .site-info {
text-align: center;
}