/*-------------------------------------------------------------- >>> TABLE OF CONTENTS: ---------------------------------------------------------------- # Normalize # Typography # Elements # Navigation ## Links ## Menus # Forms # Accessibility # Alignments # Widgets # Content ## Posts and pages ## Comments # Infinite scroll # Media ## Captions ## Galleries --------------------------------------------------------------*/ /*-------------------------------------------------------------- # Normalize --------------------------------------------------------------*/ /* 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; -webkit-text-size-adjust: 100%; font-size: calc(var(--theme--font-scale) * 62.5%); scroll-behavior: smooth; } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1, .h1 { margin: 0 0 2rem; font-size: var(--theme--heading-size1); } h2, .h2 { margin: 0 0 1.8rem; font-size: var(--theme--heading-size2); } h3, .h3 { margin: 0 0 1.6rem; font-size: var(--theme--heading-size3); } h4, .h4 { margin: 0 0 1.4rem; font-size: var(--theme--heading-size4); } h5, .h5 { margin: 0 0 1.2rem; font-size: var(--theme--heading-size5); } h6, .h6 { margin: 0 0 1.2rem; font-size: var(--theme--heading-size6); } @media screen and (max-width: 992px) { h1, .h1 { font-size: var(--theme--heading-tablet-size1); } h2, .h2 { font-size: var(--theme--heading-tablet-size2); } h3, .h3 { font-size: var(--theme--heading-tablet-size3); } h4, .h4 { font-size: var(--theme--heading-tablet-size4); } h5, .h5 { font-size: var(--theme--heading-tablet-size5); } h6, .h6 { font-size: var(--theme--heading-tablet-size6); } } @media screen and (max-width: 767px) { /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1, .h1 { font-size: var(--theme--heading-mobile-size1); } h2, .h2 { font-size: var(--theme--heading-mobile-size2); } h3, .h3 { font-size: var(--theme--heading-mobile-size3); } h4, .h4 { font-size: var(--theme--heading-mobile-size4); } h5, .h5 { font-size: var(--theme--heading-mobile-size5); } h6, .h6 { font-size: var(--theme--heading-mobile-size6); } } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; overflow: visible; height: 0; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-size: 1em; font-family: monospace, monospace; } /* 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; } /* 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; } /*-------------------------------------------------------------- # Typography --------------------------------------------------------------*/ body { font-family: var(--theme--base-font-family); font-size: var(--theme--base-font-size); font-weight: var(--theme--base-font-weight); font-style: var(--theme--base-font-style); line-height: var(--theme--base-line-height); letter-spacing: var(--theme--base-letter-spacing); text-transform: var(--theme--base-text-transform); color: var(--theme--base-color); overflow-x: hidden; margin: 0px; } h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { color: var(--theme--heading-color); font-family: var(--theme--heading-font-family); font-weight: var(--theme--heading-font-weight); font-style: var(--theme--heading-font-style); line-height: var(--theme--heading-line-height); letter-spacing: var(--theme--heading-letter-spacing); text-transform: var(--theme--heading-text-transform); clear: both; } body, button, input, optgroup, select, textarea { color: var(--theme--base-color); } p { margin-bottom: 16px; } i, em, dfn, cite { font-style: italic; } blockquote { margin: 1.5em; border-left-color: #000000; } address { margin: 0 0 15px; } pre { background: #eee; font-family: "Courier 10 Pitch", Courier, monospace; font-size: 14px; line-height: 1.6; margin-bottom: 1.6em; max-width: 100%; overflow: auto; padding: 1.6em; } code, kbd, tt, var { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; background: #f3f4f5; border-radius: 2px; color: #23282d; font-family: Menlo, Consolas, monaco, monospace; font-size: 14px; padding: 2px; } abbr, acronym { border-bottom: 1px dotted #666; cursor: help; } ins { text-decoration: underline; } mark { background: #fff9c0; text-decoration: none; } big { font-size: 125%; } /*-------------------------------------------------------------- # Elements --------------------------------------------------------------*/ html { box-sizing: border-box; } *, *:after, *:before { box-sizing: inherit; } body { background: var(--theme--base-background); /* Fallback for when there is no custom background color defined. */ } hr { background-color: #ccc; border: 0; height: 1px; margin-bottom: 1.5em; } ol, ul { margin: 0 0 1.5em 15px; padding-left: 30px; } ul { list-style: disc; } ol { list-style: decimal; } li > ol, li > ul { margin-bottom: 0; margin-left: 15px; padding-left: 15px; } dt { font-weight: bold; } dd { margin: 0 1.5em 1.5em; } img { height: auto; /* Make sure images are scaled correctly. */ max-width: 100%; } figure { margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */ } table { width: 100%; margin: 0 0 1.5em; border-collapse: collapse; } /*-------------------------------------------------------------- # Navigation --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Links --------------------------------------------------------------*/ a { color: var(--theme--link-color); } a:visited { color: var(--theme--link-color); } a:hover, a:focus, a:active { color: var(--theme--link-color-hover); } a:focus { outline: thin dotted; } a:hover, a:active { outline: 0; } /*-------------------------------------------------------------- ## Menus --------------------------------------------------------------*/ .main-navigation { display: block; float: none; width: 100%; } .main-navigation .item-toggle { top: 47%; right: -4px; font-size: 24px; position: absolute; transform: translate(0, -50%); -webkit-transform: translate(0, -50%); } .main-navigation ul ul .item-toggle { right: 8px; position: absolute; } .main-navigation ul { display: none; list-style: none; margin: 0; padding-left: 0; } @media screen and (min-width: 992px) { .main-navigation ul { text-align: center; } } .main-navigation ul .menu-item-has-children { position: relative; } .main-navigation ul ul { top: 100%; float: left; left: -999em; z-index: 99999; min-width: 225px; padding-top: 16px; text-align: left; position: absolute; background: #fff; } .main-navigation ul ul ul { top: 0; left: -999em; min-width: 225px; padding-top: 0; } .main-navigation ul ul li { display: block; position: relative; } @media screen and (min-width: 769px) { .main-navigation ul ul li { border-bottom: 1px solid #e9e9e9; } .main-navigation ul li.focus > ul, .main-navigation ul li:hover > ul { left: auto; } } .main-navigation ul ul li.focus > ul, .main-navigation ul ul li:hover > ul { left: 100%; } .main-navigation ul ul a { display: block; width: 100%; } .main-navigation .navigation--mobile a { width: 100%; color: #000; display: block; padding: 15px; line-height: 1; font-size: 14px; font-weight: 500; text-decoration: none; text-transform: uppercase; } .main-navigation .navigation--mobile a:hover { color: #222; } .main-navigation .navigation--mobile .current-menu-item { color: #222; } .main-navigation .navigation--mobile .current-menu-item a { color: inherit; } .main-navigation li { float: none; position: relative; display: inline-block; } .main-navigation a { display: block; text-decoration: none; width: 100%; } /* Small menu. */ .main-navigation.toggled .navigation--mobile { top: 0; left: 0; height: 100vh; position: fixed; background: #fff; width: calc(100% - 75px); width: -webkit-calc(100% - 75px); text-align: left; overflow-y: auto; padding: 60px 0 20px; max-width: 320px; z-index: 1001; } .admin-bar .main-navigation.toggled .navigation--mobile { position: fixed; top: 45px; height: 100vh; background: #fff; width: -webkit-calc(100% - 75px); width: calc(100% - 75px); text-align: left; overflow-y: auto; padding: 60px 0 20px; max-width: 320px; left: 0; z-index: 1001; } @media screen and (max-width: 768px) { .main-navigation .navigation--mobile { left: -350px; transition: left 0.5s ease; } .main-navigation .item-toggle { right: 0; height: 100%; top: 50%; width: 44px; text-align: center; line-height: 2; cursor: pointer; } .main-navigation.toggled li { display: block; text-align: left; clear: both; } .main-navigation .navigation--mobile a { border-bottom: 1px solid #e9e9e9; } .main-navigation ul.sub-menu { display: none; } .main-navigation ul.active { display: block !important; left: 0 !important; top: 100%; position: relative; } .main-navigation .sub-menu .item-toggle { right: 0px; } } .main-navigation.toggled .menu-toggle { position: fixed; top: 15px; left: 15px; padding: 5px 0; } .admin-bar .main-navigation.toggled .menu-toggle { position: fixed; top: 70px; padding: 5px 0; left: 15px; } .main-navigation.toggled .menu-toggle .icon-bar.middle { display: none; } .main-navigation.toggled .menu-toggle .icon-bar { -webkit-transition: all 0.5s ease; transition: all 0.5s ease; } .main-navigation.toggled .menu-toggle .icon-bar:first-child { -webkit-transform: rotate(45deg); transform: rotate(45deg); position: relative; top: 1px; } .main-navigation.toggled .menu-toggle .icon-bar:nth-child(3) { -webkit-transform: rotate(-45deg); transform: rotate(-45deg); top: -7px; position: relative; } .main-navigation.toggled ul { display: block; width: 100%; padding-top: 0; } .menu-toggle { width: 30px; font-size: 20px; background: transparent; border: 0; color: #000; overflow: hidden; display: inline-block; height: 24px; text-align: center; padding: 0; outline: none; z-index: 10002; position: relative; } .menu-toggle .icon-bar { width: 24px; height: 2px; margin-bottom: 6px; background: #000; display: block; } .menu-toggle .icon-bar:first-child { margin-top: 4px; } .menu-toggle .icon-bar:last-child { margin-bottom: 0; } @media screen and (min-width: 769px) { .menu-toggle { display: none; } .main-navigation ul { display: block; } } .site-main .comment-navigation, .site-main .post-navigation, .site-main .posts-navigation { margin: 0 0 1.5em; overflow: hidden; } .comment-navigation .nav-previous, .post-navigation .nav-previous, .posts-navigation .nav-previous { float: left; width: 50%; } .comment-navigation .nav-next, .post-navigation .nav-next, .posts-navigation .nav-next { float: right; text-align: right; width: 50%; } /* 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, .button, [type="reset"], [type="button"], [type="submit"] { line-height: 1; cursor: pointer; font-weight: 600; width: fit-content; border: 1px solid; display: inline-flex; text-decoration: none; justify-content: center; color: var(--theme--button-color); border-color: var(--theme--button-border-color); font-size: var(--theme--button-desktop-font-size); background: var(--theme--button-background-color); border-radius: var(--theme--button-border-radius); text-transform: var(--theme--button-text-transform); letter-spacing: var(--theme--button-letter-spacing); padding: var(--theme--button-desktop-top-bottom-padding) 24px; -webkit-appearance: button; appearance: button; } button:hover, .button:hover, input[type="reset"]:hover, input[type="button"]:hover, input[type="submit"]:hover { color: var(--theme--button-color); border-color: var(--theme--button-color-hover); background: var(--theme--button-background-color-hover); } button:focus, button:active, .button:focus, .button:active, input[type="button"]:focus, input[type="button"]:active, input[type="reset"]:focus, input[type="reset"]:active, input[type="submit"]:focus, input[type="submit"]:active { color: var(--theme--button-color); border-color: var(--theme--button-border-color-hover); background: var(--theme--button-background-color-hover); } /** * 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 { padding: 0; border-style: none; } /** * 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 { padding: 0; display: table; color: inherit; max-width: 100%; box-sizing: border-box; white-space: normal; } /** * 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"] { appearance: textfield; -webkit-appearance: textfield; outline-offset: -2px; } /** * 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 */ } 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: #666; border: 1px solid #ccc; border-radius: 3px; padding: 10px; } 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: #111; } select { padding: 10px; border: 1px solid var(--theme--border-color); } textarea { width: 100%; padding: 10px; } label { font-weight: 300; } input[type="search"] { width: 100%; } .woocommerce-Reviews label { text-transform: uppercase; font-size: 12px; font-weight: 500; margin-top: 15px; } /*-------------------------------------------------------------- # Accessibility --------------------------------------------------------------*/ /* 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: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; clip-path: none; color: #21759b; display: block; font-size: 8.75px; font-size: 0.875rem; font-weight: bold; height: auto; left: 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; } /*-------------------------------------------------------------- # Alignments --------------------------------------------------------------*/ .alignleft { display: inline; float: left; margin-right: 1.5em; } .alignright { display: inline; float: right; margin-left: 1.5em; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; } /*-------------------------------------------------------------- # Grid --------------------------------------------------------------*/ /* Container ------------------------------------------------------------ */ .container { width: 100%; margin: 0 auto; padding-left: 16px; padding-right: 16px; max-width: var(--theme--site-width); } .container-fluid { margin: 0 auto; padding-left: 16px; padding-right: 16px; width: calc(100% - 48px); } .container-medium { margin: 0 auto; max-width: 1024px; } .container-narrow { margin: 0 auto; max-width: 992px; } .wrapper{ margin: 0 auto; padding-left: 16px; padding-right: 16px; } /*============================================================================ Grid Setup 1. Allow the grid system to be used on lists. 2. Remove any margins and paddings that might affect the grid system. 3. Apply a negative `margin-left` to negate the columns' gutters. ==============================================================================*/ .grid, .grid--rev, .grid-uniform { display: flex; flex-direction: row; flex-wrap: wrap; margin-left: -16px; margin-right: -16px; } .grid__item { min-height: 1px; vertical-align: top; box-sizing: border-box; padding-left: 16px; padding-right: 16px; } /*============================================================================ Reversed grids allow you to structure your source in the opposite order to how your rendered layout will appear. ==============================================================================*/ .grid--rev { direction: rtl; text-align: left; flex-direction: row-reverse; } .grid--rev > .grid__item { direction: ltr; text-align: left; } /*============================================================================ WIDTHS - Create width classes, prefixed by the specified namespace. ==============================================================================*/ /*================ Helper show/hide classes around our breakpoints ================*/ /*================ Our regular, non-responsive width and helper classes ================*/ /** Whole */ .one-whole { flex: 0 0 100%; } /* Halves */ .one-half { flex: 0 1 50%; } /* Thirds */ .one-third { flex: 0 1 33.333%; } .two-thirds { flex: 0 1 66.666%; } /* Quarters */ .one-quarter { flex: 0 1 25%; } .two-quarters { flex: 0 1 50%; } .three-quarters { flex: 0 1 75%; } /* Fifths */ .one-fifth { flex: 0 1 20%; } .two-fifths { flex: 0 1 40%; } .three-fifths { flex: 0 1 60%; } .four-fifths { flex: 0 1 80%; } /* Sixths */ .one-sixth { flex: 0 1 16.666%; } .two-sixths { flex: 0 1 33.333%; } .three-sixths { flex: 0 1 50%; } .four-sixths { flex: 0 1 66.666%; } .five-sixths { flex: 0 1 83.333%; } /* Eighths */ .one-eighth { flex: 0 1 12.5%; } .two-eighths { flex: 0 1 25%; } .three-eighths { flex: 0 1 37.5%; } .four-eighths { flex: 0 1 50%; } .five-eighths { flex: 0 1 62.5%; } .six-eighths { flex: 0 1 75%; } .seven-eighths { flex: 0 1 87.5%; } /* Tenths */ .one-tenth { flex: 0 1 10%; } .two-tenths { flex: 0 1 20%; } .three-tenths { flex: 0 1 30%; } .four-tenths { flex: 0 1 40%; } .five-tenths { flex: 0 1 50%; } .six-tenths { flex: 0 1 60%; } .seven-tenths { flex: 0 1 70%; } .eight-tenths { flex: 0 1 80%; } .nine-tenths { flex: 0 1 90%; } /* Twelfths */ .one-twelfth { flex: 0 1 8.333%; } .two-twelfths { flex: 0 1 16.666%; } .three-twelfths { flex: 0 1 25%; } .four-twelfths { flex: 0 1 33.333%; } .five-twelfths { flex: 0 1 41.666%; } .six-twelfths { flex: 0 1 50%; } .seven-twelfths { flex: 0 1 58.333%; } .eight-twelfths { flex: 0 1 66.666%; } .nine-twelfths { flex: 0 1 75%; } .ten-twelfths { flex: 0 1 83.333%; } .eleven-twelfths { flex: 0 1 91.666%; } .show { display: block !important; } .hide { display: none !important; } .left { float: left !important; } .right { float: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .flex-start { justify-content: flex-start !important; } .flex-space-between { justify-content: space-between !important; } .flex-center { justify-content: center !important; } .flex-space-evenly { justify-content: space-evenly !important; } .flex-end { justify-content: flex-end !important; } .flex-align-start { align-items: flex-start !important; } .flex-align-center { align-items: center !important; } .flex-align-end { align-items: flex-end !important; } /*================ Our responsive classes, if we have enabled them ================*/ @media only screen and (max-width: 768px) { /* Whole */ .small--one-whole { flex: 0 0 100%; } /* Halves */ .small--one-half { flex: 0 1 50%; } /* Thirds */ .small--one-third { flex: 0 1 33.333%; } .small--two-thirds { flex: 0 1 66.666%; } /* Quarters */ .small--one-quarter { flex: 0 1 25%; } .small--two-quarters { flex: 0 1 50%; } .small--three-quarters { flex: 0 1 75%; } /* Fifths */ .small--one-fifth { flex: 0 1 20%; } .small--two-fifths { flex: 0 1 40%; } .small--three-fifths { flex: 0 1 60%; } .small--four-fifths { flex: 0 1 80%; } /* Sixths */ .small--one-sixth { flex: 0 1 16.666%; } .small--two-sixths { flex: 0 1 33.333%; } .small--three-sixths { flex: 0 1 50%; } .small--four-sixths { flex: 0 1 66.666%; } .small--five-sixths { flex: 0 1 83.333%; } /* Eighths */ .small--one-eighth { flex: 0 1 12.5%; } .small--two-eighths { flex: 0 1 25%; width: 25%; } .small--three-eighths { flex: 0 1 37.5%; } .small--four-eighths { flex: 0 1 50%; } .small--five-eighths { flex: 0 1 62.5%; } .small--six-eighths { flex: 0 1 75%; } .small--seven-eighths { flex: 0 1 87.5%; } /* Tenths */ .small--one-tenth { flex: 0 1 10%; } .small--two-tenths { flex: 0 1 20%; } .small--three-tenths { flex: 0 1 30%; } .small--four-tenths { flex: 0 1 40%; } .small--five-tenths { flex: 0 1 50%; } .small--six-tenths { flex: 0 1 60%; } .small--seven-tenths { flex: 0 1 70%; } .small--eight-tenths { flex: 0 1 80%; } .small--nine-tenths { flex: 0 1 90%; } /* Twelfths */ .small--one-twelfth { flex: 0 1 8.333%; } .small--two-twelfths { flex: 0 1 16.666%; } .small--three-twelfths { flex: 0 1 25%; } .small--four-twelfths { flex: 0 1 33.333%; } .small--five-twelfths { flex: 0 1 41.666%; } .small--six-twelfths { flex: 0 1 50%; } .small--seven-twelfths { flex: 0 1 58.333%; } .small--eight-twelfths { flex: 0 1 66.666%; } .small--nine-twelfths { flex: 0 1 75%; } .small--ten-twelfths { flex: 0 1 83.333%; } .small--eleven-twelfths { flex: 0 1 91.666%; } .small--show { display: block !important; } .small--hide { display: none !important; } .small--text-left { text-align: left !important; } .small--text-right { text-align: right !important; } .small--text-center { text-align: center !important; } .small--left { float: left !important; } .small--right { float: right !important; } .small--align-flex-start { align-items: flex-start !important; } .small--align-flex-center { align-items: center !important; } .small--align-flex-end { align-items: flex-end !important; } .small--flex-start { justify-content: flex-start !important; } .small--flex-space { justify-content: space-between !important; } .small--flex-center { justify-content: center !important; } .small--flex-even { justify-content: space-evenly !important; } .small--flex-end { justify-content: flex-end !important; } } @media only screen and (min-width: 769px) and (max-width: 991px) { /* Whole */ .medium--one-whole { flex: 0 0 100%; } /* Halves */ .medium--one-half { flex: 0 1 50%; } /* Thirds */ .medium--one-third { flex: 0 1 33.333%; } .medium--two-thirds { flex: 0 1 66.666%; } /* Quarters */ .medium--one-quarter { flex: 0 1 25%; } .medium--two-quarters { flex: 0 1 50%; } .medium--three-quarters { flex: 0 1 75%; } /* Fifths */ .medium--one-fifth { flex: 0 1 20%; } .medium--two-fifths { flex: 0 1 40%; } .medium--three-fifths { flex: 0 1 60%; } .medium--four-fifths { flex: 0 1 80%; } /* Sixths */ .medium--one-sixth { flex: 0 1 16.666%; } .medium--two-sixths { flex: 0 1 33.333%; } .medium--three-sixths { flex: 0 1 50%; } .medium--four-sixths { flex: 0 1 66.666%; } .medium--five-sixths { flex: 0 1 83.333%; } /* Eighths */ .medium--one-eighth { flex: 0 1 12.5%; } .medium--two-eighths { flex: 0 1 25%; } .medium--three-eighths { flex: 0 1 37.5%; } .medium--four-eighths { flex: 0 1 50%; } .medium--five-eighths { flex: 0 1 62.5%; } .medium--six-eighths { flex: 0 1 75%; } .medium--seven-eighths { flex: 0 1 87.5%; } /* Tenths */ .medium--one-tenth { flex: 0 1 10%; } .medium--two-tenths { flex: 0 1 20%; } .medium--three-tenths { flex: 0 1 30%; } .medium--four-tenths { flex: 0 1 40%; } .medium--five-tenths { flex: 0 1 50%; } .medium--six-tenths { flex: 0 1 60%; } .medium--seven-tenths { flex: 0 1 70%; } .medium--eight-tenths { flex: 0 1 80%; } .medium--nine-tenths { flex: 0 1 90%; } /* Twelfths */ .medium--one-twelfth { flex: 0 1 8.333%; } .medium--two-twelfths { flex: 0 1 16.666%; } .medium--three-twelfths { flex: 0 1 25%; } .medium--four-twelfths { flex: 0 1 33.333%; } .medium--five-twelfths { flex: 0 1 41.666%; } .medium--six-twelfths { flex: 0 1 50%; } .medium--seven-twelfths { flex: 0 1 58.333%; } .medium--eight-twelfths { flex: 0 1 66.666%; } .medium--nine-twelfths { flex: 0 1 75%; } .medium--ten-twelfths { flex: 0 1 83.333%; } .medium--eleven-twelfths { flex: 0 1 91.666%; } .medium--show { display: block !important; } .medium--hide { display: none !important; } .medium--text-left { text-align: left !important; } .medium--text-right { text-align: right !important; } .medium--text-center { text-align: center !important; } .medium--left { float: left !important; } .medium--right { float: right !important; } .medium--align-flex-start { align-items: flex-start !important; } .medium--align-flex-center { align-items: center !important; } .medium--align-flex-end { align-items: flex-end !important; } .medium--flex-start { justify-content: flex-start !important; } .medium--flex-space { justify-content: space-between !important; } .medium--flex-center { justify-content: center !important; } .medium--flex-even { justify-content: space-evenly !important; } .medium--flex-end { justify-content: flex-end !important; } } @media screen and (min-width: 992px) { /** Whole */ .large--one-whole { flex: 0 0 100%; } /* Halves */ .large--one-half { flex: 0 1 50%; } /* Thirds */ .large--one-third { flex: 0 1 33.333%; } .large--two-thirds { flex: 0 1 66.666%; } /* Quarters */ .large--one-quarter { flex: 0 1 25%; } .large--two-quarters { flex: 0 1 50%; } .large--three-quarters { flex: 0 1 75%; } /* Fifths */ .large--one-fifth { flex: 0 1 20%; } .large--two-fifths { flex: 0 1 40%; } .large--three-fifths { flex: 0 1 60%; } .large--four-fifths { flex: 0 1 80%; } /* Sixths */ .large--one-sixth { flex: 0 1 16.666%; } .large--two-sixths { flex: 0 1 33.333%; } .large--three-sixths { flex: 0 1 50%; } .large--four-sixths { flex: 0 1 66.666%; } .large--five-sixths { flex: 0 1 83.333%; } /* Eighths */ .large--one-eighth { flex: 0 1 12.5%; } .large--two-eighths { flex: 0 1 25%; } .large--three-eighths { flex: 0 1 37.5%; } .large--four-eighths { flex: 0 1 50%; } .large--five-eighths { flex: 0 1 62.5%; } .large--six-eighths { flex: 0 1 75%; } .large--seven-eighths { flex: 0 1 87.5%; } /* Tenths */ .large--one-tenth { flex: 0 1 10%; } .large--two-tenths { flex: 0 1 20%; } .large--three-tenths { flex: 0 1 30%; } .large--four-tenths { flex: 0 1 40%; } .large--five-tenths { flex: 0 1 50%; } .large--six-tenths { flex: 0 1 60%; } .large--seven-tenths { flex: 0 1 70%; } .large--eight-tenths { flex: 0 1 80%; } .large--nine-tenths { flex: 0 1 90%; } /* Twelfths */ .large--one-twelfth { flex: 0 1 8.333%; } .large--two-twelfths { flex: 0 1 16.666%; } .large--three-twelfths { flex: 0 1 25%; } .large--four-twelfths { flex: 0 1 33.333%; } .large--five-twelfths { flex: 0 1 41.666%; } .large--six-twelfths { flex: 0 1 50%; } .large--seven-twelfths { flex: 0 1 58.333%; } .large--eight-twelfths { flex: 0 1 66.666%; } .large--nine-twelfths { flex: 0 1 75%; } .large--ten-twelfths { flex: 0 1 83.333%; } .large--eleven-twelfths { flex: 0 1 91.666%; } .large--show { display: block !important; } .large--hide { display: none !important; } .large--text-left { text-align: left !important; } .large--text-right { text-align: right !important; } .large--text-center { text-align: center !important; } .large--left { float: left !important; } .large--right { float: right !important; } .large--align-flex-start { align-items: flex-start !important; } .large--align-flex-center { align-items: center !important; } .large--align-flex-end { align-items: flex-end !important; } .large--flex-start { justify-content: flex-start !important; } .large--flex-space { justify-content: space-between !important; } .large--flex-center { justify-content: center !important; } .large--flex-even { justify-content: space-evenly !important; } .large--flex-end { justify-content: flex-end !important; } } /*-------------------------------------------------------------- # Widgets --------------------------------------------------------------*/ .widget { padding: 32px; margin: 0 0 32px; border-radius: 8px; box-shadow: 0 4px 8px 0 rgba( 0,0,0,0.1); } .widget select { max-width: 100%; } .widget ul { margin: 0; padding: 0; list-style: none; } .widget ul li { margin-bottom: 7.5px; } .widget a { text-decoration: none; color: var(--theme--base-color); } .widget .widget-title { color: #000000; text-transform: capitalize; margin: 0; position: relative; font: 500 16px/24px "Rubik", sans-serif; letter-spacing: 0.8px; border-bottom: 1px solid #e9e9e9; margin-bottom: 20px; text-transform: uppercase; position: relative; } .widget .widget-title span { position: relative; padding-bottom: 7.5px; display: inline-block; } .widget .widget-title span:after { content: ""; width: 100%; height: 3px; background: #000; position: absolute; bottom: -2px; left: 0; } .widget .menu { list-style: none; margin: 0; padding: 0; font-size: 14px; } .widget .menu a { color: #000000; } .widget_product_search form, .widget_search form { position: relative; } .widget_product_search form input[type="text"], .widget_search form input[type="text"] { width: 100%; } .widget_product_search form button[type="submit"], .widget_search form button[type="submit"] { position: absolute; top: 0; right: 0; } /*-------------------------------------------------------------- # Content --------------------------------------------------------------*/ /*-------------------------------------------------------------- ## Posts and pages --------------------------------------------------------------*/ .section-default { padding: 30px 0; } .sticky { display: block; } .entry-header .entry-title { margin-top: 0; } .page, .post { margin: 0; position: relative; } .updated:not(.published) { display: none; } .entry-summary, .page-content { margin: 1.5em 0 0; } .page-links { clear: both; margin: 0 0 1.5em; font-size: 18px; padding-top: 15px; } .page-links .post-page-numbers { display: inline-block; background: #000; text-align: center; width: 40px; height: 40px; line-height: 40px; border-radius: 100%; color: #fff; margin-right: 7.5px; font-size: 14px; } .page-links .post-page-numbers.current { background: #757575; color: #fff; } .page-header { margin: 0; padding: 0; } .page-header .page-title { margin: 0 0 15px; } .entry-footer { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin-top: 30px; gap: 32px; } .entry-footer .edit-link { width: 75px; color: #fff; padding: 10px; font-size: 12px; background: #000; display: inline-block; text-align: center; text-decoration: none; position: relative; } .entry-footer .edit-link a { color: #fff; text-decoration: none; } .entry-footer .edit-link a:last-child { display: none; } .entry-footer .edit-link a:only-child { display: block; } .single article { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--theme--border-color); } .single article .post-thumbnail .wp-post-image{ position: relative; vertical-align: bottom; } .single article .entry-title { margin: 0; padding: 15px 0; } .single article .entry-meta a { text-decoration: none; color: var(--theme--link-color); } .single article .more-link { display: block; font-size: 14px; max-width: 150px; text-align: center; margin-top: 15px; overflow: hidden; position: relative; padding: 10px 15px; text-decoration: none; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; color: var(--theme--button-color); border-color: var(--theme--button-border-color); background: var(--theme--button-background-color); z-index: 0; } .single article .more-link:hover { color: #fff; } .single article .entry-footer { margin-top: 0; } .single article .entry-footer .cat-links, .single article .entry-footer .comments-link, .single article .entry-footer .tags-links { display: block; } .single article .entry-footer .cat-links a, .single article .entry-footer .comments-link a, .single article .entry-footer .tags-links a { color: #000000; text-decoration: none; } /*-------------------------------------------------------------- ## Archive Page --------------------------------------------------------------*/ article { margin-bottom: 30px; padding-bottom: 30px; } article.post{ border-bottom: 1px solid #e9e9e9; } article .entry-title { padding: 15px 0; margin: 0; } article .entry-title a { color: #000000; text-decoration: none; } article .entry-meta { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; } article .entry-meta .posted-on { display: flex; align-items: center; justify-content: flex-start; margin-right: 15px; line-height: 1; gap: 8px; } article .entry-meta .byline { display: flex; align-items: center; justify-content: flex-start; margin-right: 15px; line-height: 1; gap: 8px; } article .entry-meta a { color: #000000; text-decoration: none; } /* Article Meta */ .comments-link { display: flex; align-items: center; gap: 8px; } .comments-link a { text-decoration: none; } .block-category-links { display: flex; align-items: center; gap: 8px; } .block-category-links a { font-size: 100%; text-decoration: none; } /* More Link */ article .more-link { position: relative; display: block; max-width: 150px; text-align: center; margin-top: 15px; color: #fff; font-size: 14px; z-index: 0; overflow: hidden; padding: 10px 15px; background: #000; border-color: #000; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; text-decoration: none; } article .more-link:hover { color: #fff; } /*-------------------------------------------------------------- ## Comments --------------------------------------------------------------*/ .comments-area .comment-list { margin: 0; padding: 0; list-style: none; } .comments-area .comment-list .children, .comments-area .comment-list ol { list-style: none; margin-top: 30px; } .comments-area .comment-list .comment { margin-bottom: 30px; } .comments-area .comment-content a { word-wrap: break-word; } .comments-area .bypostauthor { display: block; } .comments-area .avatar { float: left; overflow: hidden; width: 95px; height: 95px; margin-right: 25px; border: 3px solid #fff; border-radius: 50%; } .comments-area .reply .comment-reply-link { background: #000; color: #fff; padding: 5px 15px; font-size: 12px; border-radius: 5px; } /*-------------------------------------------------------------- ## 404 Error --------------------------------------------------------------*/ .section--error-template .not-found { display: table; } .section--error-template .not-found .page-large-text { display: table-cell; vertical-align: middle; } .section--error-template .not-found .page-large-text .page-heading-large { font-size: 150px; } @media screen and (max-width: 572px) { .section--error-template .not-found .page-large-text .page-heading-large { font-size: 100px; } } .section--error-template .not-found .page-content { display: table-cell; vertical-align: middle; padding-left: 30px; } .section--error-template .not-found .page-content .page-title { font-size: 40px; text-transform: uppercase; margin-bottom: 0; } .section--error-template .not-found .page-content .content { margin-top: 7.5px; } .section--error-template .search-form { position: relative; } .section--error-template .search-form .search-submit { position: absolute; top: 0; right: 0; } /*-------------------------------------------------------------- # Infinite scroll --------------------------------------------------------------*/ /* Globally hidden elements when Infinite Scroll is supported and in use. */ .infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */ display: none; } /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */ .infinity-end.neverending .site-footer { display: block; } /*-------------------------------------------------------------- ## Media --------------------------------------------------------------*/ .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%; } /* Make sure logo link wraps around logo image. */ .custom-logo-link { display: inline-block; } /*-------------------------------------------------------------- ## Captions --------------------------------------------------------------*/ .wp-caption { margin-bottom: 1.5em; max-width: 100%; } .wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; } .wp-caption .wp-caption-text { margin: 0.8075em 0; } .wp-caption-text { text-align: center; } /*-------------------------------------------------------------- ## Galleries --------------------------------------------------------------*/ .gallery { margin-bottom: 1.5em; } .gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; } .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; } /* No Wocommerce Plugin */ .header-navigation-right .main-navigation ul { text-align: right; }