@charset "UTF-8";
 .x-slide-container-viewport {
overflow: hidden;
width: 100%;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
tap-highlight-color: transparent;
}
.x-slide-container-viewport * {
touch-action: manipulation;
}
.x-slide-container-viewport.can-drag {
cursor: grab;
}
.x-slide-container-viewport.can-drag * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.x-slide-container-viewport.can-drag.is-drag {
cursor: grabbing;
}
.x-slide-container-viewport.show-outlines:before {
content: "";
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
right: 0;
bottom: 0;
outline: 8px solid #00adff;
outline-offset: -8px;
}
.x-slide-container-viewport.show-outlines .x-slide-container-content:before {
content: "";
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
right: 0;
bottom: 0;
outline: 8px solid #f31773;
outline-offset: -8px;
}
.x-slide-container-content {
position: relative;
margin-left: auto;
margin-right: auto;
}
.x-slide-container-content.has-adaptive-height {
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-property: height;
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
.x-slide-container-content.has-adaptive-height .x-slide-container {
height: 100%;
}
.x-slide-container-content,
.x-slide-container-content .x-slide-container {
height: 100% !important;
}
.x-slide-container {
display: block;
position: relative;
width: 100%;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
will-change: transform;
}
.x-slide-container.is-inline {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
gap: var(--x-slide-container-gap, 1rem);
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-property: transform;
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
.x-slide-container.is-stacked {
display: grid;
grid-gap: 0;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
.x-slide {
display: block;
position: relative;
width: auto;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
.x-slide-container .x-slide {
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
.x-slide-container-viewport:not(.is-ready) .x-slide {
opacity: 0 !important;
}
.x-slide-container.is-inline.is-paged .x-slide {
flex-grow: 1;
flex-shrink: 0;
flex-basis: calc((100% / var(--x-slides-per-page, 1)) - (var(--x-slide-container-gap, 1rem) * (1 - (1 / var(--x-slides-per-page, 1)))));
}
.x-slide-container.is-inline.is-auto .x-slide {
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
}
.x-slide-container.is-stacked .x-slide {
grid-column: 1/-1;
grid-row: 1/-1;
}
.x-slide-container.is-stacked .x-slide:not([class*=x-effect-e]),
.x-slide-container.is-stacked .x-slide.x-effect-opacity {
opacity: 0 !important;
}
.x-slide-container.is-stacked .x-slide.is-current-slide:not([class*=x-effect-e]),
.x-slide-container.is-stacked .x-slide.is-current-slide.x-effect-opacity {
opacity: 1 !important;
}
.x-slide img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.x-slide-pagination {
display: flex;
flex-wrap: nowrap;
align-content: center;
align-items: center;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
line-height: 1;
list-style: none;
}
.x-slide-pagination.is-row {
flex-direction: row;
}
.x-slide-pagination.is-column {
flex-direction: column;
}
.x-slide-pagination li {
display: block;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
position: relative;
margin: 0;
border: 0;
padding: 0;
background-color: var(--x-slide-pagination-item-bgc, black);
list-style: none;
user-select: none;
cursor: default;
}
.x-slide-pagination li.is-active {
background-color: var(--x-slide-pagination-item-bgc-alt, rgba(0, 0, 0, 0.25));
}
@media (hover: hover) {
.x-slide-pagination li:hover {
background-color: var(--x-slide-pagination-item-bgc-alt, rgba(0, 0, 0, 0.25));
}
}
.x-slide {
display: block !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) {
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) a[data-x-slide-next],
:where(#cs-header, #cs-content, #cs-footer, .x-layout) a[data-x-slide-prev] {
text-decoration: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-scale: 1.25;
--x-0: 1;
--x-1: calc(1 * var(--x-scale));
--x-2: calc(var(--x-1) * var(--x-scale));
--x-3: calc(var(--x-2) * var(--x-scale));
--x-4: calc(var(--x-3) * var(--x-scale));
--x-5: calc(var(--x-4) * var(--x-scale));
--x-6: calc(var(--x-5) * var(--x-scale));
--x-7: calc(var(--x-6) * var(--x-scale));
--x-8: calc(var(--x-7) * var(--x-scale));
--x-9: calc(var(--x-8) * var(--x-scale));
--x-10: calc(var(--x-9) * var(--x-scale));
--x-11: calc(var(--x-10) * var(--x-scale));
--x-12: calc(var(--x-11) * var(--x-scale));
--x-13: calc(var(--x-12) * var(--x-scale));
--x-14: calc(var(--x-13) * var(--x-scale));
--x-15: calc(var(--x-14) * var(--x-scale));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-root-font-variant: normal;
--x-body-overflow-x: hidden;
--x-body-overflow-y: auto;
--x-h-color: currentColor;
--x-h-font-family: inherit;
--x-h-font-style: inherit;
--x-h-font-variant: inherit;
--x-h-font-weight: inherit;
--x-h-letter-spacing: inherit;
--x-h-text-decoration: inherit;
--x-h-text-underline-offset: inherit;
--x-h-text-indent: inherit;
--x-h-text-shadow: inherit;
--x-h-text-transform: inherit;
--x-h1-font-size: calc(1em * var(--x-6));
--x-h1-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-11)));
--x-h2-font-size: calc(1em * var(--x-5));
--x-h2-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-10)));
--x-h3-font-size: calc(1em * var(--x-4));
--x-h3-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-9)));
--x-h4-font-size: calc(1em * var(--x-3));
--x-h4-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-8)));
--x-h5-font-size: calc(1em * var(--x-2));
--x-h5-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-7)));
--x-h6-font-size: calc(1em * var(--x-1));
--x-h6-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-6)));
--x-code-kbd-border-width: 0px;
--x-code-kbd-border-style: solid;
--x-code-kbd-border-color: #000000;
--x-code-kbd-border-radius: 3px;
--x-code-kbd-padding: calc(1em / var(--x-7)) calc(1em / var(--x-4));
--x-code-kbd-color: #ffffff;
--x-code-kbd-font-family: monospace;
--x-code-kbd-font-size: 0.85em;
--x-code-kbd-font-style: normal;
--x-code-kbd-font-variant: normal;
--x-code-kbd-font-weight: normal;
--x-code-kbd-letter-spacing: 0px;
--x-code-kbd-text-shadow: none;
--x-code-kbd-background-color: #000000;
--x-code-kbd-box-shadow: none;
--x-pre-max-height: 24em;
--x-pre-border-width: 0px;
--x-pre-border-style: solid;
--x-pre-border-color: #000000;
--x-pre-border-radius: 3px;
--x-pre-padding: calc(1em * var(--x-1)) calc(1em * var(--x-2));
--x-pre-color: #ffffff;
--x-pre-font-family: monospace;
--x-pre-font-size: 1rem;
--x-pre-font-style: normal;
--x-pre-font-variant: normal;
--x-pre-font-weight: normal;
--x-pre-letter-spacing: 0px;
--x-pre-line-height: var(--x-root-line-height);
--x-pre-text-shadow: none;
--x-pre-background-color: #000000;
--x-pre-box-shadow: none;
--x-a-text-shadow: inherit;
--x-a-int-text-shadow: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-table-container-max-height: 500px;
--x-table-container-table-min-width: 700px;
--x-table-overflow: hidden;
--x-table-table-layout: auto;
--x-table-border-width: 1px;
--x-table-border-style: solid;
--x-table-border-color: currentColor;
--x-table-border-radius: 2px;
--x-table-border-collapse: separate;
--x-table-border-spacing: 0px;
--x-table-font-size: 1em;
--x-table-background-color: var(--x-root-background-color);
--x-table-box-shadow: 0em 0.25em 0.65em 0em rgba(0, 0, 0, 0.03);
--x-table-cell-padding-x: 1rem;
--x-table-cell-padding-x-end-multiplier: calc(1 * var(--x-1));
--x-table-cell-padding-y: 1rem;
--x-table-cell-padding-y-end-multiplier: 1;
--x-thead-table-cell-border-y-width: 1px;
--x-thead-table-cell-border-y-style: solid;
--x-thead-table-cell-border-y-color: rgba(128, 128, 128, 0.27);
--x-thead-table-cell-border-x-width: 0px;
--x-thead-table-cell-border-x-style: solid;
--x-thead-table-cell-border-x-color: rgba(128, 128, 128, 0.27);
--x-thead-table-cell-color: currentColor;
--x-thead-table-cell-text-shadow: inherit;
--x-thead-table-cell-vertical-align: bottom;
--x-thead-table-cell-background-color: rgba(128, 128, 128, 0.11);
--x-tbody-table-cell-border-y-width: 1px;
--x-tbody-table-cell-border-y-style: solid;
--x-tbody-table-cell-border-y-color: rgba(128, 128, 128, 0.27);
--x-tbody-table-cell-border-x-width: 0px;
--x-tbody-table-cell-border-x-style: solid;
--x-tbody-table-cell-border-x-color: rgba(128, 128, 128, 0.27);
--x-tbody-table-cell-color: currentColor;
--x-tbody-table-cell-text-shadow: inherit;
--x-tbody-table-cell-vertical-align: top;
--x-tbody-table-cell-background-color: transparent;
--x-tfoot-table-cell-border-y-width: 1px;
--x-tfoot-table-cell-border-y-style: solid;
--x-tfoot-table-cell-border-y-color: rgba(128, 128, 128, 0.27);
--x-tfoot-table-cell-border-x-width: 0px;
--x-tfoot-table-cell-border-x-style: solid;
--x-tfoot-table-cell-border-x-color: rgba(128, 128, 128, 0.27);
--x-tfoot-table-cell-color: currentColor;
--x-tfoot-table-cell-text-shadow: inherit;
--x-tfoot-table-cell-vertical-align: top;
--x-tfoot-table-cell-background-color: transparent;
--x-th-overflow: visible;
--x-th-font-family: inherit;
--x-th-font-size: calc(1em / var(--x-2));
--x-th-font-style: inherit;
--x-th-font-variant: inherit;
--x-th-font-weight: bolder;
--x-th-letter-spacing: calc(1em / var(--x-10));
--x-th-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-6)));
--x-th-text-overflow: inherit;
--x-th-text-transform: uppercase;
--x-th-white-space: inherit;
--x-th-word-break: inherit;
--x-td-overflow: visible;
--x-td-font-family: inherit;
--x-td-font-size: 1em;
--x-td-font-style: inherit;
--x-td-font-variant: inherit;
--x-td-font-weight: inherit;
--x-td-letter-spacing: inherit;
--x-td-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-6)));
--x-td-text-overflow: inherit;
--x-td-text-transform: inherit;
--x-td-white-space: inherit;
--x-td-word-break: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-fieldset-spacing: calc(1em / var(--x-3));
--x-legend-display: block;
--x-legend-spacing: calc(1em / var(--x-10));
--x-legend-color: currentColor;
--x-legend-font-family: inherit;
--x-legend-font-size: calc(1em * var(--x-1));
--x-legend-font-style: inherit;
--x-legend-font-variant: inherit;
--x-legend-font-weight: bolder;
--x-legend-letter-spacing: inherit;
--x-legend-line-height: calc((var(--x-root-line-height) / var(--x-2)) + (1 / var(--x-6)));
--x-legend-text-decoration: inherit;
--x-legend-text-underline-offset: inherit;
--x-legend-text-indent: inherit;
--x-legend-text-shadow: inherit;
--x-legend-text-transform: inherit;
--x-label-display: inline-block;
--x-label-font-variant: inherit;
--x-label-text-decoration: inherit;
--x-label-text-underline-offset: inherit;
--x-label-text-indent: inherit;
--x-label-text-shadow: inherit;
--x-form-control-transition-duration: 0ms;
--x-form-control-transition-property:
color,
border-color,
background-color,
background-image,
box-shadow;
--x-form-control-transition-timing-function: cubic-bezier(0.400, 0.000, 0.200, 1.000);
--x-input-display: block;
--x-input-font-variant: inherit;
--x-textarea-min-height: calc((var(--x-input-padding-y-extra) * 2) + ((1em * var(--x-input-line-height)) * 5.5));
--x-textarea-max-height: 20em;
--x-rc-display: inline-block;
--x-rc-vertical-align: middle;
--x-radio-border-radius: 1000em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-content-ol-top-list-style: decimal;
--x-content-ol-sub-list-style: decimal;
--x-content-ul-top-list-style: disc;
--x-content-ul-sub-list-style: disc;
--x-content-li-marker-color: currentColor;
--x-content-li-marker-font-weight: bolder;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :root {
--x-grid-container-track: minmax(0px, var(--x-container-max-width));
--x-grid-container-gutter-track: clamp(var(--x-grid-container-gutter-track-min, 1rem), calc((100vw - var(--x-container-max-width)) / 2), 9999rem);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(*, *::before, *::after) {
box-sizing: border-box;
margin: 0;
border: 0;
padding: 0;
touch-action: manipulation;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html, body) {
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html) {
color: var(--x-root-color);
font-family: var(--x-root-font-family);
font-size: var(--x-root-font-size);
font-style: var(--x-root-font-style);
font-variant: var(--x-root-font-variant);
font-weight: var(--x-root-font-weight);
letter-spacing: var(--x-root-letter-spacing);
line-height: var(--x-root-line-height);
background-color: var(--x-root-background-color);
text-rendering: optimizeLegibility;
-ms-overflow-style: scrollbar;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html) {
scroll-behavior: smooth;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(body) {
overflow-x: var(--x-body-overflow-x);
overflow-y: var(--x-body-overflow-y);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(p, ol, ul, .x-copy) {
color: var(--x-copy-color);
font-family: var(--x-copy-font-family);
font-size: var(--x-copy-font-size);
font-style: var(--x-copy-font-style);
font-variant: var(--x-copy-font-variant);
font-weight: var(--x-copy-font-weight);
letter-spacing: var(--x-copy-letter-spacing);
line-height: var(--x-copy-line-height);
text-shadow: var(--x-copy-text-shadow);
text-transform: var(--x-copy-text-transform);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(ol, ul) {
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(b, strong) {
font-weight: bolder;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(i, em) {
font-style: italic;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h1, .x-h1) {
color: var(--x-h-color, var(--x-h1-color));
font-family: var(--x-h-font-family, var(--x-h1-font-family));
font-size: var(--x-h-font-size, var(--x-h1-font-size));
font-style: var(--x-h-font-style, var(--x-h1-font-style));
font-variant: var(--x-h-font-variant, var(--x-h1-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h1-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h1-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h1-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h1-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h1-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h1-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h1-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h1-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h2, .x-h2) {
color: var(--x-h-color, var(--x-h2-color));
font-family: var(--x-h-font-family, var(--x-h2-font-family));
font-size: var(--x-h-font-size, var(--x-h2-font-size));
font-style: var(--x-h-font-style, var(--x-h2-font-style));
font-variant: var(--x-h-font-variant, var(--x-h2-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h2-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h2-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h2-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h2-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h2-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h2-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h2-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h2-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h3, .x-h3) {
color: var(--x-h-color, var(--x-h3-color));
font-family: var(--x-h-font-family, var(--x-h3-font-family));
font-size: var(--x-h-font-size, var(--x-h3-font-size));
font-style: var(--x-h-font-style, var(--x-h3-font-style));
font-variant: var(--x-h-font-variant, var(--x-h3-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h3-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h3-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h3-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h3-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h3-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h3-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h3-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h3-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h4, .x-h4) {
color: var(--x-h-color, var(--x-h4-color));
font-family: var(--x-h-font-family, var(--x-h4-font-family));
font-size: var(--x-h-font-size, var(--x-h4-font-size));
font-style: var(--x-h-font-style, var(--x-h4-font-style));
font-variant: var(--x-h-font-variant, var(--x-h4-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h4-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h4-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h4-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h4-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h4-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h4-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h4-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h4-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h5, .x-h5) {
color: var(--x-h-color, var(--x-h5-color));
font-family: var(--x-h-font-family, var(--x-h5-font-family));
font-size: var(--x-h-font-size, var(--x-h5-font-size));
font-style: var(--x-h-font-style, var(--x-h5-font-style));
font-variant: var(--x-h-font-variant, var(--x-h5-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h5-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h5-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h5-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h5-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h5-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h5-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h5-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h5-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(h6, .x-h6) {
color: var(--x-h-color, var(--x-h6-color));
font-family: var(--x-h-font-family, var(--x-h6-font-family));
font-size: var(--x-h-font-size, var(--x-h6-font-size));
font-style: var(--x-h-font-style, var(--x-h6-font-style));
font-variant: var(--x-h-font-variant, var(--x-h6-font-variant));
font-weight: var(--x-h-font-weight, var(--x-h6-font-weight));
letter-spacing: var(--x-h-letter-spacing, var(--x-h6-letter-spacing));
line-height: var(--x-h-line-height, var(--x-h6-line-height));
text-decoration: var(--x-h-text-decoration, var(--x-h6-text-decoration));
text-underline-offset: var(--x-h-text-underline-offset, var(--x-h6-text-underline-offset));
text-indent: var(--x-h-text-indent, var(--x-h6-text-indent));
text-shadow: var(--x-h-text-shadow, var(--x-h6-text-shadow));
text-transform: var(--x-h-text-transform, var(--x-h6-text-transform));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(code, kbd, pre) {
direction: ltr;
unicode-bidi: bidi-override;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(code, kbd) {
border-width: var(--x-code-kbd-border-width);
border-style: var(--x-code-kbd-border-style);
border-color: var(--x-code-kbd-border-color);
border-radius: var(--x-code-kbd-border-radius);
padding: var(--x-code-kbd-padding);
color: var(--x-code-kbd-color);
font-family: var(--x-code-kbd-font-family);
font-size: var(--x-code-kbd-font-size);
font-style: var(--x-code-kbd-font-style);
font-variant: var(--x-code-kbd-font-variant);
font-weight: var(--x-code-kbd-font-weight);
letter-spacing: var(--x-code-kbd-letter-spacing);
text-shadow: var(--x-code-kbd-text-shadow);
background-color: var(--x-code-kbd-background-color);
box-shadow: var(--x-code-kbd-box-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(pre) {
overflow: auto;
max-height: var(--x-pre-max-height);
border-width: var(--x-pre-border-width);
border-style: var(--x-pre-border-style);
border-color: var(--x-pre-border-color);
border-radius: var(--x-pre-border-radius);
padding: var(--x-pre-padding);
color: var(--x-pre-color);
font-family: var(--x-pre-font-family);
font-size: var(--x-pre-font-size);
font-style: var(--x-pre-font-style);
font-variant: var(--x-pre-font-variant);
font-weight: var(--x-pre-font-weight);
letter-spacing: var(--x-pre-letter-spacing);
line-height: var(--x-pre-line-height);
text-shadow: var(--x-pre-text-shadow);
background-color: var(--x-pre-background-color);
box-shadow: var(--x-pre-box-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(pre) :where(code, kbd) {
border: none;
border-radius: 0;
padding: 0;
color: inherit;
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-variant: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
text-decoration: none;
text-shadow: inherit;
word-break: normal;
background-color: transparent;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(sub, sup) {
font-weight: bolder;
line-height: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(a) {
color: var(--x-a-color);
text-decoration: var(--x-a-text-decoration);
text-underline-offset: var(--x-a-text-underline-offset);
text-shadow: var(--x-a-text-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(a:not([href]):not([class])) {
text-decoration: none;
color: inherit;
}
@media (hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(a:hover) {
color: var(--x-a-int-color);
text-decoration-color: var(--x-a-int-text-decoration-color);
text-shadow: var(--x-a-int-text-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(a:not([href]):not([class]):hover) {
color: inherit;
text-decoration: none;
text-shadow: inherit;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(abbr[title]) {
text-decoration: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(::selection) {
text-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(audio, iframe, video) {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(img, picture, video, canvas, svg, audio) {
max-width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(img, picture, video) {
height: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(img, svg) {
vertical-align: middle;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(.wp-block-table, .x-table-container) {
width: 100%;
overflow: var(--x-table-overflow);
table-layout: var(--x-table-table-layout);
border-collapse: var(--x-table-border-collapse);
border-spacing: var(--x-table-border-spacing);
background-color: var(--x-table-background-color);
border-width: var(--x-table-border-width);
border-style: var(--x-table-border-style);
border-color: var(--x-table-border-color);
border-radius: var(--x-table-border-radius);
font-size: var(--x-table-font-size);
box-shadow: var(--x-table-box-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(th, td) {
padding-top: var(--x-table-cell-padding-y);
padding-left: var(--x-table-cell-padding-x);
padding-right: var(--x-table-cell-padding-x);
padding-bottom: var(--x-table-cell-padding-y);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(th) {
overflow: var(--x-table-cell-overflow, var(--x-th-overflow));
font-family: var(--x-table-cell-font-family, var(--x-th-font-family));
font-size: var(--x-table-cell-font-size, var(--x-th-font-size));
font-style: var(--x-table-cell-font-style, var(--x-th-font-style));
font-variant: var(--x-table-cell-font-variant, var(--x-th-font-variant));
font-weight: var(--x-table-cell-font-weight, var(--x-th-font-weight));
letter-spacing: var(--x-table-cell-letter-spacing, var(--x-th-letter-spacing));
line-height: var(--x-table-cell-line-height, var(--x-th-line-height));
text-overflow: var(--x-table-cell-text-overflow, var(--x-th-text-overflow));
text-transform: var(--x-table-cell-text-transform, var(--x-th-text-transform));
white-space: var(--x-table-cell-white-space, var(--x-th-white-space));
word-break: var(--x-table-cell-word-break, var(--x-th-word-break));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(td) {
overflow: var(--x-table-cell-overflow, var(--x-td-overflow));
font-family: var(--x-table-cell-font-family, var(--x-td-font-family));
font-size: var(--x-table-cell-font-size, var(--x-td-font-size));
font-style: var(--x-table-cell-font-style, var(--x-td-font-style));
font-variant: var(--x-table-cell-font-variant, var(--x-td-font-variant));
font-weight: var(--x-table-cell-font-weight, var(--x-td-font-weight));
letter-spacing: var(--x-table-cell-letter-spacing, var(--x-td-letter-spacing));
line-height: var(--x-table-cell-line-height, var(--x-td-line-height));
text-overflow: var(--x-table-cell-text-overflow, var(--x-td-text-overflow));
text-transform: var(--x-table-cell-text-transform, var(--x-td-text-transform));
white-space: var(--x-table-cell-white-space, var(--x-td-white-space));
word-break: var(--x-table-cell-word-break, var(--x-td-word-break));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(thead) :where(tr:last-child) :where(th, td) {
border-bottom-width: var(--x-thead-table-cell-border-y-width);
border-bottom-style: var(--x-thead-table-cell-border-y-style);
border-bottom-color: var(--x-thead-table-cell-border-y-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(thead) :where(th, td) + :where(th, td) {
border-left-width: var(--x-thead-table-cell-border-x-width);
border-left-style: var(--x-thead-table-cell-border-x-style);
border-left-color: var(--x-thead-table-cell-border-x-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(thead) :where(th, td) {
color: var(--x-thead-table-cell-color);
text-shadow: var(--x-thead-table-cell-text-shadow);
vertical-align: var(--x-thead-table-cell-vertical-align);
background-color: var(--x-thead-table-cell-background-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) :where(tr:not(:first-child)) :where(th, td),
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) + :where(tbody) :where(tr:first-child) :where(th, td) {
border-top-width: var(--x-tbody-table-cell-border-y-width);
border-top-style: var(--x-tbody-table-cell-border-y-style);
border-top-color: var(--x-tbody-table-cell-border-y-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) :where(th, td) + :where(th, td) {
border-left-width: var(--x-tbody-table-cell-border-x-width);
border-left-style: var(--x-tbody-table-cell-border-x-style);
border-left-color: var(--x-tbody-table-cell-border-x-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) :where(th, td) {
color: var(--x-tbody-table-cell-color);
text-shadow: var(--x-tbody-table-cell-text-shadow);
vertical-align: var(--x-tbody-table-cell-vertical-align);
background-color: var(--x-tbody-table-cell-background-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) :where(tr:nth-child(odd)) :where(th, td) {
background-color: var(--x-tbody-table-cell-background-color, var(--x-tbody-table-cell-background-color-odd));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) :where(tr:nth-child(even)) :where(th, td) {
background-color: var(--x-tbody-table-cell-background-color, var(--x-tbody-table-cell-background-color-even));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tfoot) :where(tr:not(:first-child)) :where(th, td),
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tbody) + :where(tfoot) :where(tr:first-child) :where(th, td) {
border-top-width: var(--x-tfoot-table-cell-border-y-width);
border-top-style: var(--x-tfoot-table-cell-border-y-style);
border-top-color: var(--x-tfoot-table-cell-border-y-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tfoot) :where(th, td) + :where(th, td) {
border-left-width: var(--x-tfoot-table-cell-border-x-width);
border-left-style: var(--x-tfoot-table-cell-border-x-style);
border-left-color: var(--x-tfoot-table-cell-border-x-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tfoot) :where(th, td) {
color: var(--x-tfoot-table-cell-color);
text-shadow: var(--x-tfoot-table-cell-text-shadow);
vertical-align: var(--x-tfoot-table-cell-vertical-align);
background-color: var(--x-tfoot-table-cell-background-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tfoot) :where(tr:nth-child(odd)) :where(th, td) {
background-color: var(--x-tfoot-table-cell-background-color, var(--x-tfoot-table-cell-background-color-odd));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(tfoot) :where(tr:nth-child(even)) :where(th, td) {
background-color: var(--x-tfoot-table-cell-background-color, var(--x-tfoot-table-cell-background-color-even));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(th, td):first-child {
padding-left: calc(var(--x-table-cell-padding-x) * var(--x-table-cell-padding-x-end-multiplier));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(th, td):last-child {
padding-right: calc(var(--x-table-cell-padding-x) * var(--x-table-cell-padding-x-end-multiplier));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(thead, tbody, tfoot):first-child :where(tr:first-child) :where(th, td) {
padding-top: calc(var(--x-table-cell-padding-y) * var(--x-table-cell-padding-y-end-multiplier));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(thead, tbody, tfoot):last-child :where(tr:last-child) :where(th, td) {
padding-bottom: calc(var(--x-table-cell-padding-y) * var(--x-table-cell-padding-y-end-multiplier));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html:not([dir=rtl])) :where(th, td):where(:not([align])) {
text-align: left;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html[dir=rtl]) :where(th, td):where(:not([align])) {
text-align: right;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(.wp-block-table, .x-table-container) {
overflow: auto;
max-height: var(--x-table-container-max-height);
border-width: var(--x-table-border-width);
border-style: var(--x-table-border-style);
border-color: var(--x-table-border-color);
border-radius: var(--x-table-border-radius);
font-size: var(--x-table-font-size);
box-shadow: var(--x-table-box-shadow);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(.wp-block-table, .x-table-container) :where(table) {
border: none;
border-radius: 0;
font-size: 1em;
box-shadow: none;
min-width: var(--x-table-container-table-min-width);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .woocommerce table.shop_table td {
border-top: none;
}
@media only screen and (max-width: 768px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.woocommerce, .woocommerce-page) table.shop_table_responsive tbody tr :is(th, td) + :is(th, td) {
border-left: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.woocommerce, .woocommerce-page) table.shop_table_responsive tbody tr:first-child :is(th:not(:first-child), td:not(:first-child)) {
border-top-width: var(--x-tbody-border-y-width);
border-top-style: var(--x-tbody-border-y-style);
border-top-color: var(--x-tbody-border-y-color);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(fieldset:not(:first-child)) {
margin-top: var(--x-fieldset-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(fieldset:not(:last-child)) {
margin-bottom: var(--x-fieldset-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(legend) {
display: var(--x-legend-display);
margin-bottom: var(--x-legend-spacing);
color: var(--x-legend-color);
font-family: var(--x-legend-font-family);
font-size: var(--x-legend-font-size);
font-style: var(--x-legend-font-style);
font-variant: var(--x-legend-font-variant);
font-weight: var(--x-legend-font-weight);
letter-spacing: var(--x-legend-letter-spacing);
line-height: var(--x-legend-line-height);
text-decoration: var(--x-legend-text-decoration);
text-underline-offset: var(--x-legend-text-underline-offset);
text-indent: var(--x-legend-text-indent);
text-shadow: var(--x-legend-text-shadow);
text-transform: var(--x-legend-text-transform);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(label) {
display: var(--x-label-display);
color: var(--x-label-color);
font-family: var(--x-label-font-family);
font-size: var(--x-label-font-size);
font-style: var(--x-label-font-style);
font-variant: var(--x-label-font-variant);
font-weight: var(--x-label-font-weight);
letter-spacing: var(--x-label-letter-spacing);
line-height: var(--x-label-line-height);
text-decoration: var(--x-label-text-decoration);
text-underline-offset: var(--x-label-text-underline-offset);
text-indent: var(--x-label-text-indent);
text-shadow: var(--x-label-text-shadow);
text-transform: var(--x-label-text-transform);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text]:not(.adminbar-input), [type=time], [type=url], [type=week], textarea, select, [multiple], [type=radio], [type=checkbox], [type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order) {
box-sizing: border-box;
transition-duration: var(--x-form-control-transition-duration);
transition-property: var(--x-form-control-transition-property);
transition-timing-function: var(--x-form-control-transition-timing-function);
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text]:not(.adminbar-input), [type=time], [type=url], [type=week], textarea, select, [multiple], [type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order) {
display: var(--x-input-display);
border-width: var(--x-input-border-width);
border-style: var(--x-input-border-style);
border-color: var(--x-input-border-color);
border-radius: var(--x-input-border-radius);
padding-top: var(--x-input-padding-top, calc((((var(--x-input-font-size) * var(--x-input-line-height)) - var(--x-input-font-size)) / 2) + var(--x-input-padding-y-extra)));
padding-bottom: var(--x-input-padding-bottom, calc((((var(--x-input-font-size) * var(--x-input-line-height)) - var(--x-input-font-size)) / 2) + var(--x-input-padding-y-extra)));
color: var(--x-input-color);
font-family: var(--x-input-font-family);
font-size: var(--x-input-font-size);
font-style: var(--x-input-font-style);
font-variant: var(--x-input-font-variant);
letter-spacing: var(--x-input-letter-spacing);
line-height: var(--x-input-line-height);
text-align: var(--x-input-text-align);
text-transform: var(--x-input-text-transform);
background-color: var(--x-input-background-color);
box-shadow: var(--x-input-box-shadow), 0 0 0 0 transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text]:not(.adminbar-input), [type=time], [type=url], [type=week], textarea, select, [multiple]) {
display: block;
width: 100%;
padding-left: var(--x-input-padding-left, var(--x-input-padding-x));
padding-right: var(--x-input-padding-right, calc(var(--x-input-padding-x) - var(--x-input-letter-spacing)));
font-weight: var(--x-input-font-weight);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text]:not(.adminbar-input), [type=time], [type=url], [type=week], textarea, select, [multiple]):focus-visible {
color: var(--x-input-int-color);
border-color: var(--x-input-int-border-color);
background-color: var(--x-input-int-background-color);
box-shadow: var(--x-input-int-box-shadow), 0 0 0 var(--x-input-outline-width) var(--x-input-outline-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(select:not([multiple])) {
text-overflow: ellipsis;
white-space: nowrap;
background-image: var(--x-select-indicator-image);
background-repeat: no-repeat;
background-size: var(--x-select-indicator-size);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html:not([dir=rtl])) :where(select:not([multiple])) {
padding-right: calc(var(--x-select-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-select-indicator-spacing-x) * 2));
background-position: calc(100% - var(--x-input-padding-x) - var(--x-select-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html[dir=rtl]) :where(select:not([multiple])) {
padding-left: calc(var(--x-select-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-select-indicator-spacing-x) * 2));
background-position: calc(0% + var(--x-input-padding-x) + var(--x-select-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(select:not([multiple])):focus-visible {
background-image: var(--x-select-indicator-focus-image);
}
@supports not (-moz-appearance: none) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-calendar-picker-indicator {
padding: 0px;
transition-duration: inherit;
transition-property: background-image;
transition-timing-function: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-search-cancel-button {
align-self: center;
margin: 0px;
padding: 0px;
-webkit-appearance: none;
transition-duration: inherit;
transition-property: background-image;
transition-timing-function: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=month], [type=week])::-webkit-calendar-picker-indicator {
width: var(--x-date-indicator-size);
height: var(--x-date-indicator-size);
margin-inline-start: calc(var(--x-input-padding-x) + var(--x-date-indicator-spacing-x));
margin-inline-end: var(--x-date-indicator-spacing-x);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=month], [type=week])::-webkit-calendar-picker-indicator {
background-image: var(--x-date-indicator-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=month], [type=week]):focus-visible::-webkit-calendar-picker-indicator {
background-image: var(--x-date-indicator-focus-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=time])::-webkit-calendar-picker-indicator {
width: var(--x-time-indicator-size);
height: var(--x-time-indicator-size);
margin-inline-start: calc(var(--x-input-padding-x) + var(--x-time-indicator-spacing-x));
margin-inline-end: var(--x-time-indicator-spacing-x);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=time])::-webkit-calendar-picker-indicator {
background-image: var(--x-time-indicator-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=time]):focus-visible::-webkit-calendar-picker-indicator {
background-image: var(--x-time-indicator-focus-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search])::-webkit-search-cancel-button {
width: var(--x-search-indicator-size);
height: var(--x-search-indicator-size);
margin-inline-start: calc(var(--x-input-padding-x) + var(--x-search-indicator-spacing-x));
margin-inline-end: var(--x-search-indicator-spacing-x);
background-repeat: no-repeat;
background-size: var(--x-search-indicator-size);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search])::-webkit-search-cancel-button {
background-image: var(--x-search-indicator-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search]):focus-visible::-webkit-search-cancel-button {
background-image: var(--x-search-indicator-focus-image);
}
}
@supports (selector(:nth-child(1 of x))) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit {
display: block;
padding: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-fields-wrapper {
display: flex;
align-items: baseline;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-year-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-month-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-day-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-hour-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-minute-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-second-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-millisecond-field,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-meridiem-field {
padding: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search])::-webkit-search-cancel-button {
width: var(--x-search-indicator-size);
height: var(--x-search-indicator-size);
margin-inline-start: calc(var(--x-input-padding-x) + var(--x-search-indicator-spacing-x));
margin-inline-end: var(--x-search-indicator-spacing-x);
background-repeat: no-repeat;
background-size: var(--x-search-indicator-size);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search])::-webkit-search-cancel-button {
background-image: var(--x-search-indicator-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=search]):focus-visible::-webkit-search-cancel-button {
background-image: var(--x-search-indicator-focus-image);
}
}
@supports (-moz-appearance: none) or (selector(:nth-child(1 of x))) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html:not([dir=rtl])) :where([type=date], [type=datetime-local], [type=month], [type=week]) {
padding-right: calc(var(--x-date-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-date-indicator-spacing-x) * 2));
background-position: calc(100% - var(--x-input-padding-x) - var(--x-date-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html[dir=rtl]) :where([type=date], [type=datetime-local], [type=month], [type=week]) {
padding-left: calc(var(--x-date-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-date-indicator-spacing-x) * 2));
background-position: calc(0% + var(--x-input-padding-x) + var(--x-date-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=month], [type=week]) {
background-image: var(--x-date-indicator-image);
background-repeat: no-repeat;
background-size: var(--x-date-indicator-size);
transition-duration: inherit;
transition-property: background-image;
transition-timing-function: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=month], [type=week]):focus-visible {
background-image: var(--x-date-indicator-focus-image);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html:not([dir=rtl])) :where([type=time]) {
padding-right: calc(var(--x-time-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-time-indicator-spacing-x) * 2));
background-position: calc(100% - var(--x-input-padding-x) - var(--x-time-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(html[dir=rtl]) :where([type=time]) {
padding-left: calc(var(--x-time-indicator-size) + (var(--x-input-padding-x) * 2) + (var(--x-time-indicator-spacing-x) * 2));
background-position: calc(0% + var(--x-input-padding-x) + var(--x-time-indicator-spacing-x)) 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=time]) {
background-image: var(--x-time-indicator-image);
background-repeat: no-repeat;
background-size: var(--x-time-indicator-size);
transition-duration: inherit;
transition-property: background-image;
transition-timing-function: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=time]):focus-visible {
background-image: var(--x-time-indicator-focus-image);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio], [type=checkbox]) {
position: relative;
flex-shrink: 0;
flex-grow: 0;
flex-basis: auto;
width: 1em;
min-width: 1em;
max-width: 1em;
height: 1em;
min-height: 1em;
max-height: 1em;
padding: 0px;
display: var(--x-rc-display);
border-width: var(--x-rc-border-width);
border-style: var(--x-rc-border-style);
border-color: var(--x-rc-border-color);
font-size: var(--x-rc-font-size);
vertical-align: var(--x-rc-vertical-align);
background-color: var(--x-rc-background-color);
box-shadow: var(--x-rc-box-shadow), 0 0 0 0 transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio], [type=checkbox]):focus-visible {
border-color: var(--x-rc-int-border-color);
background-color: var(--x-rc-int-background-color);
box-shadow: var(--x-rc-int-box-shadow), 0 0 0 var(--x-rc-outline-width) var(--x-rc-outline-color);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio], [type=checkbox]):checked {
border-color: var(--x-rc-checked-border-color);
background-color: var(--x-rc-checked-background-color);
box-shadow: var(--x-rc-checked-box-shadow), 0 0 0 0 transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio], [type=checkbox]):before {
display: block;
position: absolute;
top: 50%;
left: 50%;
font-size: 1em;
text-align: center;
line-height: 0;
opacity: 0;
transform: translate(-50%, -50%);
transition-duration: var(--x-form-control-transition-duration);
transition-property: opacity;
transition-timing-function: var(--x-form-control-transition-timing-function);
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio], [type=checkbox]):checked:before {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio]) {
border-radius: var(--x-radio-border-radius);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=radio]):before {
content: var(--x-radio-marker);
width: calc(100% - var(--x-radio-marker-inset));
height: calc(100% - var(--x-radio-marker-inset));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=checkbox]) {
border-radius: var(--x-checkbox-border-radius);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=checkbox]):before {
content: var(--x-checkbox-marker);
width: calc(100% - var(--x-checkbox-marker-inset));
height: calc(100% - var(--x-checkbox-marker-inset));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order) {
min-width: var(--x-submit-min-width);
border-radius: var(--x-submit-border-radius);
padding-left: var(--x-submit-padding-left, calc(var(--x-input-padding-x) + var(--x-submit-padding-x-extra)));
padding-right: var(--x-submit-padding-right, calc((var(--x-input-padding-x) - var(--x-input-letter-spacing)) + var(--x-submit-padding-x-extra)));
color: var(--x-submit-color);
font-weight: var(--x-submit-font-weight);
text-align: var(--x-submit-text-align);
border-color: var(--x-submit-border-color);
background-color: var(--x-submit-background-color);
box-shadow: var(--x-submit-box-shadow, var(--x-input-box-shadow)), 0 0 0 0 transparent;
max-width: 100%;
text-align: center;
}
@media (hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order):hover {
color: var(--x-submit-int-color);
border-color: var(--x-submit-int-border-color);
background-color: var(--x-submit-int-background-color);
box-shadow: var(--x-submit-int-box-shadow, var(--x-input-int-box-shadow)), 0 0 0 0 transparent;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order):focus-visible {
color: var(--x-submit-int-color);
border-color: var(--x-submit-int-border-color);
background-color: var(--x-submit-int-background-color);
box-shadow: var(--x-submit-int-box-shadow, var(--x-input-int-box-shadow)), 0 0 0 var(--x-submit-outline-width, var(--x-input-outline-width)) var(--x-submit-outline-color, var(--x-input-outline-color));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where(textarea) {
resize: vertical;
min-height: var(--x-textarea-min-height);
max-height: var(--x-textarea-max-height);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([multiple]) {
min-height: var(--x-multiple-min-height);
max-height: var(--x-multiple-max-height);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=range], [type=color]) {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text]:not(.adminbar-input), [type=time], [type=url], [type=week], textarea, select, [multiple], [type=radio], [type=checkbox], [type=submit]:not(.adminbar-button), .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :not.woocommerce #respond input#submit, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order):where([disabled]) {
opacity: 0.55;
filter: contrast(55%);
cursor: not-allowed;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-outer-spin-button,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-inner-spin-button,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-search-decoration {
margin: 0px;
-webkit-appearance: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::-webkit-datetime-edit-fields-wrapper {
padding: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :where([type=number]) {
-moz-appearance: textfield;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) ::placeholder {
color: var(--x-input-color);
opacity: var(--x-placeholder-opacity);
transition-duration: inherit;
transition-property: color, opacity;
transition-timing-function: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :focus-visible::placeholder {
color: var(--x-input-int-color);
opacity: var(--x-placeholder-int-opacity);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(*) {
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(p:not(:last-child), ol:not(:last-child), ul:not(:last-child), .x-copy:not(:last-child)) {
margin-bottom: var(--x-content-copy-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child), .x-h1:not(:first-child), .x-h2:not(:first-child), .x-h3:not(:first-child), .x-h4:not(:first-child), .x-h5:not(:first-child), .x-h6:not(:first-child)) {
margin-top: var(--x-content-h-margin-top);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(h1:not(:last-child), h2:not(:last-child), h3:not(:last-child), h4:not(:last-child), h5:not(:last-child), h6:not(:last-child), .x-h1:not(:last-child), .x-h2:not(:last-child), .x-h3:not(:last-child), .x-h4:not(:last-child), .x-h5:not(:last-child), .x-h6:not(:last-child)) {
margin-bottom: var(--x-content-h-margin-bottom);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(hr:not(:first-child), div:not(:first-child), img:not(:first-child), pre:not(:first-child), span:not(:first-child), audio:not(:first-child), embed:not(:first-child), table:not(:first-child), video:not(:first-child), iframe:not(:first-child), object:not(:first-child), figure:not(:first-child), blockquote:not(:first-child), .has-background:not(:first-child)) {
margin-top: var(--x-content-media-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(hr:not(:last-child), div:not(:last-child), img:not(:last-child), pre:not(:last-child), span:not(:last-child), audio:not(:last-child), embed:not(:last-child), table:not(:last-child), video:not(:last-child), iframe:not(:last-child), object:not(:last-child), figure:not(:last-child), blockquote:not(:last-child), .has-background:not(:last-child)) {
margin-bottom: var(--x-content-media-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol),
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol) :where(ol) {
padding-inline-start: var(--x-content-ol-padding-inline-start);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ul),
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ul) :where(ul) {
padding-inline-start: var(--x-content-ul-padding-inline-start);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol, ul) :where(ol, ul, li + li) {
margin-top: var(--x-content-li-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol) {
list-style: var(--x-content-ol-top-list-style);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol, ul) :where(ol) {
list-style: var(--x-content-ol-sub-list-style);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ul) {
list-style: var(--x-content-ul-top-list-style);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol, ul) :where(ul) {
list-style: var(--x-content-ul-sub-list-style);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-content, .x-the-content, .comment-body) > :where(ol, ul) :where(li)::marker {
color: var(--x-content-li-marker-color);
font-weight: var(--x-content-li-marker-font-weight);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup {
--x-comment-markup-comment-spacing: 2em;
--x-comment-markup-avatar-size: 2em;
--x-comment-markup-avatar-spacing: 0.8em;
--x-comment-markup-author-spacing: 0em;
--x-comment-markup-action-spacing: 0.409em;
--x-comment-markup-list-and-form-spacing: 65px;
--x-comment-markup-form-control-spacing: 1em;
--x-comment-markup-form-label-margin-top: -0.512;
--x-comment-markup-form-label-margin-bottom: 0.409em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment .comment-body {
margin-inline-start: calc((var(--x-comment-markup-avatar-size) + var(--x-comment-markup-avatar-spacing)) * var(--x-comment-markup-nested-depth, 0));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-1 {
--x-comment-markup-nested-depth: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-2 {
--x-comment-markup-nested-depth: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-3 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-4 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-5 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-6 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-7 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-8 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-9 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-10 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-11 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-12 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-13 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-14 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-15 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-16 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-17 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-18 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-19 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment.depth-20 {
--x-comment-markup-nested-depth: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li[class*=thread] + li[class*=thread] {
margin-top: var(--x-comment-markup-comment-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup li.comment .children .comment {
margin-top: var(--x-comment-markup-comment-spacing);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: flex-start;
padding-inline-start: calc(var(--x-comment-markup-avatar-size) + var(--x-comment-markup-avatar-spacing));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-author {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: center;
width: 100%;
margin-bottom: var(--x-comment-markup-author-spacing) !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-author .avatar {
display: inline-block;
margin-inline-start: calc((var(--x-comment-markup-avatar-size) + var(--x-comment-markup-avatar-spacing)) * -1);
margin-inline-end: var(--x-comment-markup-avatar-spacing);
font-size: 1em;
width: var(--x-comment-markup-avatar-size);
height: var(--x-comment-markup-avatar-size);
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-author cite {
font-style: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-author .says {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-author .says:before {
content: "\a0";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body > :not(.comment-author):not(.comment-meta):not(.reply) {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body > :is(.comment-author, .comment-meta, .reply) {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-meta + * {
margin-top: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body > :nth-last-child(2) {
margin-bottom: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-meta {
order: 99999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body .reply {
order: 99998;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-body .reply:after {
content: "\a0\a0\a0";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup :is(.comment-meta, .reply) {
font-size: calc(1em / var(--x-1));
margin-top: var(--x-comment-markup-action-spacing) !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-form > p {
margin-top: var(--x-comment-markup-form-control-spacing) !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-comment-markup .comment-form label {
display: block;
margin-top: var(--x-comment-markup-form-label-margin-top) !important;
margin-bottom: var(--x-comment-markup-form-label-margin-bottom) !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-root {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-root :is(.site, .x-site) {
flex: 1 1 auto;
position: relative;
width: 100%;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-masthead, .x-colophon) {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-container,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-container.max,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-container.width {
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-container.max {
max-width: var(--x-container-max-width);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-container.width {
width: var(--x-container-width);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=x-advanced-bg] {
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
transition-property: opacity;
transition-duration: var(--x-advanced-bg-transition-duration);
transition-timing-function: var(--x-advanced-bg-transition-timing-function);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=x-advanced-bg].is-hidden {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-advanced-bg {
overflow: hidden;
z-index: -1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-advanced-bg-layer {
z-index: var(--x-advanced-bg-layer-z-index);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-advanced-bg-layer.is-video {
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-advanced-bg-layer.is-video .x-video {
position: absolute;
top: 50%;
left: 50%;
width: 101%;
transform: translate3d(-50%, -50%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-advanced-bg-layer.is-video .x-video .x-frame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .visually-hidden,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .screen-reader-text {
position: absolute !important;
overflow: hidden !important;
width: 1px !important;
height: 1px !important;
margin: -1px !important;
border: 0 !important;
padding: 0 !important;
white-space: nowrap !important;
clip: rect(0, 0, 0, 0) !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .x-text-gradient {
color: var(--x-text-gradient-start) !important;
background: -webkit-linear-gradient(var(--x-text-gradient-direction), var(--x-text-gradient-start), var(--x-text-gradient-end)) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-label],
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-label] .x-text-content {
display: inline-flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-content] {
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-nw, .is-n, .is-ne, .is-e, .is-w) {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-nw, .is-w, .is-sw, .is-n, .is-s) {
left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-ne, .is-e, .is-se, .is-n, .is-s) {
right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-sw, .is-s, .is-se, .is-e, .is-w) {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-n, .is-s) {
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.is-e, .is-w) {
margin-top: auto;
margin-bottom: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone] {
--exp-phone-grid-template-rows: auto auto 1px 1fr 1px auto auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone] .is-slice {
background-size: 100% auto;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone] .is-top {
background-position: 50% 0%;
background-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone] .is-middle {
background-position: 50% 50%;
background-repeat: repeat-y;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone] .is-bottom {
background-position: 50% 100%;
background-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-apple-iphone-13-pro .is-top {
aspect-ratio: 1242/1118;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/apple-iphone-13-pro-top.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-apple-iphone-13-pro .is-middle {
aspect-ratio: auto;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/apple-iphone-13-pro-middle.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-apple-iphone-13-pro .is-bottom {
aspect-ratio: 1242/280;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/apple-iphone-13-pro-bottom.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-google-pixel-6 .is-top {
aspect-ratio: 1784/2043;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/google-pixel-6-top.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-google-pixel-6 .is-middle {
aspect-ratio: auto;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/google-pixel-6-middle.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-google-pixel-6 .is-bottom {
aspect-ratio: 1784/210;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/google-pixel-6-bottom.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-samsung-s22-ultra .is-top {
aspect-ratio: 1318/1162;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/samsung-s22-ultra-top.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-samsung-s22-ultra .is-middle {
aspect-ratio: auto;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/samsung-s22-ultra-middle.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=-phone].is-samsung-s22-ultra .is-bottom {
aspect-ratio: 1318/258;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/samsung-s22-ultra-bottom.png);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=exp][class*=simple-bg].is-cover [class*=x-bg-layer] {
background-repeat: no-repeat !important;
background-size: cover !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) [class*=has-fade-mask]:not(.has-fade-mask-):not(.has-fade-mask-off) {
-webkit-mask-image: linear-gradient(var(--fade-mask-direction), var(--fade-mask-image));
mask-image: linear-gradient(var(--fade-mask-direction), var(--fade-mask-image));
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-fade-mask-up {
--fade-mask-direction: to top;
--fade-mask-image:
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 1) var(--fade-mask-stop, 33%),
rgba(0, 0, 0, 0) 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-fade-mask-down {
--fade-mask-direction: to bottom;
--fade-mask-image:
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 1) var(--fade-mask-stop, 33%),
rgba(0, 0, 0, 0) 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-fade-mask-left {
--fade-mask-direction: to left;
--fade-mask-image:
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 1) var(--fade-mask-stop, 33%),
rgba(0, 0, 0, 0) 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-fade-mask-right {
--fade-mask-direction: to right;
--fade-mask-image:
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 1) var(--fade-mask-stop, 33%),
rgba(0, 0, 0, 0) 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-text-overflow-ellipsis,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-text-overflow-ellipsis .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout) .has-text-overflow-ellipsis .x-text-content-text-secondary {
min-width: 0px !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout) :is(.x-anchor-content, .x-anchor-text-primary, .x-anchor-text-secondary, .x-anchor-sub-indicator) {
z-index: auto !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) {
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-item {
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
align-items: stretch;
position: relative;
z-index: 1;
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header {
display: block;
position: relative;
z-index: 2;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
background-color: transparent;
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header span {
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-content {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-indicator {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
line-height: 1;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-text {
flex: 1 0 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-content {
position: relative;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-content > p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-content > ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-content > ol:last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-list {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: center;
align-content: center;
margin: 0 !important;
padding: 0;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-list-item {
display: inherit;
flex-direction: inherit;
flex-wrap: nowrap;
justify-content: inherit;
align-items: inherit;
align-content: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-list-item:last-child:after {
content: ".";
display: inline;
visibility: hidden;
width: 0;
opacity: 0;
pointer-events: none;
speak: never;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-link {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: stretch;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-flip-left .x-card-face.is-back,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-flip-right .x-card-face.is-back {
transform: rotate3d(0, 1, 0, 180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-flip-up .x-card-face.is-back,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-flip-down .x-card-face.is-back {
transform: rotate3d(1, 0, 0, 180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-active.is-flip-left .x-card-faces {
transform: rotate3d(0, 1, 0, -180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-active.is-flip-right .x-card-faces {
transform: rotate3d(0, 1, 0, 180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-active.is-flip-up .x-card-faces {
transform: rotate3d(1, 0, 0, 180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.is-active.is-flip-down .x-card-faces {
transform: rotate3d(1, 0, 0, -180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d .x-card-faces {
transform-style: initial;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d .x-card-face {
-webkit-backface-visibility: initial;
backface-visibility: initial;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d .x-card-face.is-front {
visibility: visible;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d .x-card-face.is-back {
visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d .x-text {
max-width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d[class*=is-flip] .x-card-faces,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d[class*=is-flip] .x-card-face {
transform: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d.is-active .x-card-face.is-front {
visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.cannot-preserve-3d.is-active .x-card-face.is-back {
visibility: visible;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card.has-not-flipped .x-card-face.is-back * {
box-shadow: none !important;
transform: none !important;
filter: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-faces {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr;
-ms-grid-rows: 1fr;
grid-gap: 0px;
grid-auto-columns: 0px;
grid-auto-rows: 0px;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
justify-items: stretch;
align-items: stretch;
flex: 1 1 auto;
position: relative;
transform-style: preserve-3d;
will-change: transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-face {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
-ms-grid-column: 1;
-ms-grid-column-span: 1;
-ms-grid-row: 1;
-ms-grid-row-span: 1;
grid-column: 1/-1;
grid-row: 1/-1;
position: relative;
z-index: 1;
min-width: 0px;
max-width: 100%;
min-height: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-face [class^=x-bg][class*=lower],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-face [class^=x-bg][class*=upper] {
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-compact-labels .x-countdown-unit-content {
flex-flow: row nowrap;
justify-content: center;
align-items: baseline;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-top-labels .x-countdown-unit-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-bottom-labels .x-countdown-unit-content {
flex-flow: column nowrap;
justify-content: center;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-top-labels .x-countdown-number {
order: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-top-labels .x-countdown-label {
order: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-bottom-labels .x-countdown-number {
order: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown.has-bottom-labels .x-countdown-label {
order: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-units {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-unit {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-unit:not(:last-child):after {
display: inline;
font-style: normal;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-unit-content {
display: flex;
flex: 0 0 auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-number {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-digit {
display: inline;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-countdown-label {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label {
display: flex;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar {
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-bar {
flex-direction: inherit;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label {
justify-content: center;
align-items: center;
opacity: 0;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label.x-active {
opacity: 1;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: stretch;
position: relative;
z-index: 2;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list:after {
content: "";
display: block;
width: 0;
height: 0;
visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list ul {
display: flex;
flex-flow: inherit;
justify-content: flex-start;
align-items: stretch;
flex: 1 0 0%;
margin: 0;
padding: 0;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li {
display: flex;
justify-content: flex-start;
align-items: stretch;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list button {
flex: 1 0 0%;
display: block;
border: 0;
border-radius: 0;
background-color: transparent;
white-space: nowrap;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:first-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:first-child a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:first-child button {
margin-left: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:last-child a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-list li:last-child button {
margin-right: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-panels {
display: flex;
flex-flow: row nowrap;
align-items: stretch;
position: relative;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-panel {
flex: 1 1 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-panel:not(.x-active) {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-panel :first-child {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tabs-panel :last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-quote {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-quote-content {
display: flex;
flex-direction: column;
flex: 1 1 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-quote-text :first-child {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-quote-text :last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-quote-cite {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-global-block {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-single-anim] {
animation-duration: 0.3s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-single-anim][class*=secondary] {
animation-duration: 0.45s;
}
@keyframes x-slide-top {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes x-slide-left {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: translate3d(-50%, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes x-slide-right {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: translate3d(50%, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes x-slide-bottom {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes x-scale-up {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: scale3d(0, 0, 1);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
@keyframes x-scale-down {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: scale3d(1.5, 1.5, 1);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
@keyframes x-flip-x {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: perspective(125px) rotate3d(1, 0, 0, -180deg);
}
100% {
opacity: 1;
transform: perspective(125px) rotate3d(1, 0, 0, 0deg);
}
}
@keyframes x-flip-y {
33% {
opacity: 0;
transform: none;
}
34% {
opacity: 0;
transform: perspective(125px) rotate3d(0, 1, 0, -180deg);
}
100% {
opacity: 1;
transform: perspective(125px) rotate3d(0, 1, 0, 0deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial {
display: flex;
flex-wrap: nowrap;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-content {
display: flex;
flex-flow: column nowrap;
flex: 1 1 auto;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-text :first-child {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-text :last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-cite {
display: flex;
flex-wrap: nowrap;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-cite-content {
flex: 1 1 auto;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-testimonial-cite-text {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section {
display: block;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-div {
display: block;
position: relative;
width: auto;
min-width: 0;
max-width: none;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-row {
display: flex;
position: relative;
flex-flow: row nowrap;
justify-content: center;
align-items: stretch;
width: auto;
min-width: 0;
max-width: none;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-row-inner {
display: flex;
flex-wrap: wrap;
flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;
min-width: 0;
min-height: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-col {
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
display: block;
position: relative;
width: auto;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-grid {
display: grid;
grid-auto-columns: auto;
grid-auto-rows: auto;
position: relative;
width: auto;
min-width: 0;
max-width: none;
height: auto;
min-height: 0;
max-height: auto;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cell {
display: block;
position: relative;
width: auto;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport {
overflow: hidden;
width: 100%;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
tap-highlight-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport * {
touch-action: manipulation;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport.can-drag {
cursor: grab;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport.can-drag * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport.can-drag.is-drag {
cursor: grabbing;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport.show-outlines:before {
content: "";
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
right: 0;
bottom: 0;
outline: 8px solid #00adff;
outline-offset: -8px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-viewport.show-outlines .x-slide-container-content:before {
content: "";
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
right: 0;
bottom: 0;
outline: 8px solid #f31773;
outline-offset: -8px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-content {
position: relative;
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-content.has-adaptive-height {
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-property: height;
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-content.has-adaptive-height .x-slide-container {
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container-content .x-slide-container {
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container {
display: block;
position: relative;
width: 100%;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
will-change: transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container.is-inline {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
gap: var(--x-slide-container-gap, 1rem);
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-property: transform;
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-container.is-stacked {
display: grid;
grid-gap: 0;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
display: block;
position: relative;
width: auto;
min-width: 0;
max-width: 100%;
height: auto;
min-height: 0;
max-height: none;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
}
.x-slide-container :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
transition-duration: var(--x-slide-container-transition-duration, 1000ms);
transition-timing-function: var(--x-slide-container-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}
.x-slide-container-viewport:not(.is-ready) :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
opacity: 0 !important;
}
.x-slide-container.is-inline.is-paged :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
flex-grow: 1;
flex-shrink: 0;
flex-basis: calc((100% / var(--x-slides-per-page, 1)) - (var(--x-slide-container-gap, 1rem) * (1 - (1 / var(--x-slides-per-page, 1)))));
}
.x-slide-container.is-inline.is-auto :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
}
.x-slide-container.is-stacked :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
grid-column: 1/-1;
grid-row: 1/-1;
}
.x-slide-container.is-stacked :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide:not([class*=x-effect-e]),
.x-slide-container.is-stacked :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide.x-effect-opacity {
opacity: 0 !important;
}
.x-slide-container.is-stacked :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide.is-current-slide:not([class*=x-effect-e]),
.x-slide-container.is-stacked :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide.is-current-slide.x-effect-opacity {
opacity: 1 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination {
display: flex;
flex-wrap: nowrap;
align-content: center;
align-items: center;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
line-height: 1;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination.is-row {
flex-direction: row;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination.is-column {
flex-direction: column;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li {
display: block;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
position: relative;
margin: 0;
border: 0;
padding: 0;
background-color: var(--x-slide-pagination-item-bgc, black);
list-style: none;
user-select: none;
cursor: default;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li.is-active {
background-color: var(--x-slide-pagination-item-bgc-alt, rgba(0, 0, 0, 0.25));
}
@media (hover: hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li:hover {
background-color: var(--x-slide-pagination-item-bgc-alt, rgba(0, 0, 0, 0.25));
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: center;
align-content: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate.is-empty {
display: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner {
display: flex;
flex-flow: row wrap;
align-items: center;
align-content: center;
flex: 1 1 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner > * {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
flex-shrink: 1;
flex-basis: auto;
line-height: 1;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner .dots,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner .current {
cursor: not-allowed;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-the-content.entry-content {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-the-content.entry-content > :first-child {
margin-top: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-the-content.entry-content > :last-child {
margin-bottom: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] .x-wc-products .cross-sells,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] .x-wc-products .related,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] .x-wc-products .upsells {
float: none;
clear: none;
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] div.x-wc-product-gallery div.woocommerce-product-gallery {
float: none;
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] .pswp {
z-index: 999999999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=woocommerce] .x-wc-add-to-cart-form form {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort .woocommerce-ordering,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort .woocommerce-result-count {
float: none;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-area .woocommerce-Reviews-title {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-icon {
display: inline-flex !important;
flex-flow: row nowrap !important;
justify-content: center !important;
align-items: center !important;
width: auto;
height: auto;
line-height: inherit;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-icon:before {
display: block !important;
position: static !important;
top: auto !important;
left: auto !important;
right: auto !important;
bottom: auto !important;
width: inherit !important;
height: inherit !important;
margin: 0 !important;
line-height: inherit !important;
text-align: inherit !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor {
overflow: hidden;
display: inline-flex;
flex-flow: column nowrap;
justify-content: stretch;
position: relative;
min-width: 1px;
text-decoration: none;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-content {
overflow: hidden;
display: flex;
flex: 1 0 auto;
position: relative;
height: 100%;
border-radius: inherit;
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text {
flex-shrink: 1;
min-width: 1px;
max-width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-secondary {
position: relative;
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) div.x-anchor-text-primary *,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) div.x-anchor-text-secondary * {
display: block !important;
margin: 0 !important;
border: 0 !important;
padding: 0 !important;
font-family: inherit !important;
font-size: 1em !important;
font-style: inherit !important;
font-weight: inherit !important;
letter-spacing: inherit !important;
line-height: inherit !important;
text-align: inherit !important;
text-decoration: none !important;
text-shadow: none !important;
text-transform: inherit !important;
color: inherit !important;
background-color: transparent !important;
box-shadow: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-sub-indicator {
position: relative;
display: block;
width: auto;
height: auto;
letter-spacing: 0;
line-height: 1;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-sub-indicator:before {
display: inherit;
width: inherit;
height: inherit;
line-height: inherit;
text-align: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) li:not(.menu-item-has-children) > .x-anchor .x-anchor-sub-indicator {
display: none;
visibility: hidden;
speak: never;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-content.is-int {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content .x-anchor-content[class*=in-scale-up].is-int {
opacity: 0;
transform: scale(0);
}
@media (hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:hover .x-anchor-content[class*=in-scale-up].is-int,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:focus .x-anchor-content[class*=in-scale-up].is-int {
opacity: 1;
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:hover .x-anchor-content.x-anchor-content-out-slide-top-in-scale-up:not(.is-int),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:focus .x-anchor-content.x-anchor-content-out-slide-top-in-scale-up:not(.is-int) {
transform: translate3d(0, -100%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:hover .x-anchor-content.x-anchor-content-out-slide-left-in-scale-up:not(.is-int),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:focus .x-anchor-content.x-anchor-content-out-slide-left-in-scale-up:not(.is-int) {
transform: translate3d(-100%, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:hover .x-anchor-content.x-anchor-content-out-slide-right-in-scale-up:not(.is-int),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:focus .x-anchor-content.x-anchor-content-out-slide-right-in-scale-up:not(.is-int) {
transform: translate3d(100%, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:hover .x-anchor-content.x-anchor-content-out-slide-bottom-in-scale-up:not(.is-int),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content:focus .x-anchor-content.x-anchor-content-out-slide-bottom-in-scale-up:not(.is-int) {
transform: translate3d(0, 100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-content {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner {
justify-content: space-between;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h .x-bar-scroll-inner {
flex-direction: row;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-bar-scroll-inner {
flex-direction: column;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-content:not(.x-container) {
flex-grow: 1;
flex-shrink: 0;
flex-basis: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-content {
z-index: 5;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-content.x-container {
flex-grow: 0;
flex-shrink: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-container {
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-space {
flex-shrink: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-space-right {
-webkit-order: 9999;
order: 9999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-outer-spacers:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-outer-spacers:after {
content: "";
flex-grow: 0;
flex-shrink: 0;
display: block;
pointer-events: none;
visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll {
position: relative;
width: 100% !important;
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll .ps__rail-y {
z-index: 10;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner {
width: 100% !important;
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-outer {
overflow: hidden !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-inner {
box-sizing: content-box !important;
-webkit-overflow-scrolling: touch !important;
-ms-overflow-style: -ms-autohiding-scrollbar !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h .x-bar-scroll-inner {
overflow-x: scroll !important;
overflow-y: hidden !important;
padding: 0 0 50px 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-bar-scroll-inner {
overflow-x: hidden !important;
overflow-y: scroll !important;
padding: 0 50px 0 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button {
display: block;
position: absolute;
z-index: 9999;
top: 50%;
margin: 0;
border: 0;
border-radius: 0;
padding: 0;
line-height: 1;
text-align: center;
opacity: 1;
box-shadow: none;
transform: translate3d(0, -50%, 0);
outline: 0;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button .x-icon {
display: block;
width: auto;
height: 1em;
margin: auto;
transform: translateZ(0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button:not(.is-active) {
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button.is-bck:not(.is-active) {
opacity: 0;
transform: translate3d(-100%, -50%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button.is-fwd:not(.is-active) {
opacity: 0;
transform: translate3d(100%, -50%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-absolute {
position: absolute;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-fixed {
position: fixed;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-bottom {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-left {
top: 0;
left: 0;
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-right {
top: 0;
right: 0;
bottom: 0;
}
@media screen and (min-width: 783px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-bar-left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-bar-right {
top: 32px;
}
}
@media screen and (min-width: 601px) and (max-width: 782px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-bar-left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-bar-right {
top: 46px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-h .x-bar-container {
height: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-bar-container {
width: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-container {
display: flex;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-initially-hidden {
opacity: 0;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-initially-hidden:not(.x-bar-is-visible) {
visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg] {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: inherit;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg][data-x-params*=parallax] {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg] img {
display: block;
width: 100%;
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg] video {
object-fit: cover;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bg {
z-index: -1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-bg-layer-lower] {
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-bg-layer-upper] {
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-collapsed {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-collapsing {
overflow: hidden !important;
height: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart ul {
margin: 0 !important;
padding: 0 !important;
list-style: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart a:not(.x-anchor) {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart a:not(.x-anchor):focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart img {
float: left;
display: block;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .remove {
float: right;
text-align: center !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .quantity {
display: block;
margin: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .total {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .total strong {
font-weight: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .buttons {
display: flex;
flex-wrap: wrap;
flex-direction: row;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart .widget_shopping_cart_content {
display: flex;
flex-direction: column;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rtl .x-mini-cart img {
float: right;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rtl .x-mini-cart .remove {
float: left;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropdown {
visibility: hidden;
position: absolute;
margin: 0;
padding: 0;
opacity: 0;
transform: translate3d(0, 5%, 0);
pointer-events: none;
z-index: 9999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropdown[data-x-stem*=u] {
transform: translate3d(0, -5%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropdown.x-active {
visibility: visible;
opacity: 1;
transform: none;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) ul.x-dropdown,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) ol.x-dropdown {
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .menu-item-has-children {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner {
position: relative;
z-index: 1;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner video,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > div,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > embed,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > iframe,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > object,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > .x-map iframe,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > .x-video iframe,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-frame-inner > .x-video .mejs-poster img {
display: block !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
margin: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic {
display: inline-flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: flex-start;
flex-shrink: 0;
position: relative;
letter-spacing: 0;
line-height: 1;
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-child {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-icon.x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-image.x-image {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-icon.x-icon {
font-size: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-primary:not(:only-child),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-secondary {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-primary:not(:only-child) {
opacity: 1;
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-secondary {
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-scale-up.x-graphic-primary:not(:only-child) {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-scale-up.x-graphic-secondary {
transform: scale(0.35);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-scale-down.x-graphic-primary:not(:only-child) {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-scale-down.x-graphic-secondary {
transform: scale(1.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flip-x.x-graphic-primary:not(:only-child) {
transform: perspective(100px) rotateX(0deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flip-x.x-graphic-secondary {
transform: perspective(100px) rotateX(-180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flip-y.x-graphic-primary:not(:only-child) {
transform: perspective(100px) rotateY(0deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flip-y.x-graphic-secondary {
transform: perspective(100px) rotateY(-180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-primary:not(:only-child)[class*=active],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-primary:not(:only-child) {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-primary:not(:only-child)[class*=active].x-scale-up,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-primary:not(:only-child).x-scale-up {
transform: scale(1.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-primary:not(:only-child)[class*=active].x-scale-down,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-primary:not(:only-child).x-scale-down {
transform: scale(0.35);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-primary:not(:only-child)[class*=active].x-flip-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-primary:not(:only-child).x-flip-x {
transform: perspective(100px) rotateX(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-primary:not(:only-child)[class*=active].x-flip-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-primary:not(:only-child).x-flip-y {
transform: perspective(100px) rotateY(180deg);
}
@media (hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-primary:not(:only-child),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-primary:not(:only-child) {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-primary:not(:only-child).x-scale-up,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-primary:not(:only-child).x-scale-up {
transform: scale(1.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-primary:not(:only-child).x-scale-down,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-primary:not(:only-child).x-scale-down {
transform: scale(0.35);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-primary:not(:only-child).x-flip-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-primary:not(:only-child).x-flip-x {
transform: perspective(100px) rotateX(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-primary:not(:only-child).x-flip-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-primary:not(:only-child).x-flip-y {
transform: perspective(100px) rotateY(180deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-secondary[class*=active],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-secondary {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-secondary[class*=active].x-scale-up,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-secondary.x-scale-up {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-secondary[class*=active].x-scale-down,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-secondary.x-scale-down {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-secondary[class*=active].x-flip-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-secondary.x-flip-x {
transform: perspective(100px) rotateX(0deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic .x-graphic-secondary[class*=active].x-flip-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic[class*=active] .x-graphic-secondary.x-flip-y {
transform: perspective(100px) rotateY(0deg);
}
@media (hover) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-secondary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-secondary {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-secondary.x-scale-up,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-secondary.x-scale-up {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-secondary.x-scale-down,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-secondary.x-scale-down {
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-secondary.x-flip-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-secondary.x-flip-x {
transform: perspective(100px) rotateX(0deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-graphic:hover .x-graphic-secondary.x-flip-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=effects]:hover .x-graphic-secondary.x-flip-y {
transform: perspective(100px) rotateY(0deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image {
display: inline-block;
line-height: 1;
vertical-align: middle;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image {
min-height: 0%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image img {
display: block;
max-width: 100%;
height: auto;
vertical-align: bottom;
border: 0;
-ms-interpolation-mode: bicubic;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-image {
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-image:focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image-preserve-ratio img {
width: auto !important;
height: auto !important;
max-width: 100% !important;
max-height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image-preserve-ratio img[src*=".svg"] {
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-line {
display: block;
width: 0;
height: 0;
margin: 0;
border: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu .sub-menu {
margin: 0;
padding: 0;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu li {
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-has-sub {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-modal .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-dropdown .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-collapsed .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-inline .x-dropdown .x-anchor {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-modal li:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-modal li:after,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered li:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered li:after,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-collapsed li:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-collapsed li:after {
content: "";
display: table;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-modal li:after,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered li:after,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-collapsed li:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-menu-collapsed,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-v .x-menu-collapsed > li {
width: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-inline {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-inline > li {
display: flex;
flex-direction: inherit;
justify-content: inherit;
align-items: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered {
overflow: hidden;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered .menu-item-has-children {
position: static;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered ul {
position: absolute;
top: 0;
left: 0;
right: 0;
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered li {
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered .x-anchor {
opacity: 0;
transform: translate(25px, 0);
pointer-events: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prev-layer > li > .x-anchor {
transform: translate(-25px, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-current-layer > li > .x-anchor {
opacity: 1;
transform: translate(0, 0);
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal {
visibility: hidden;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
pointer-events: none;
z-index: 99999999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal.x-active {
visibility: visible;
opacity: 1;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal:after {
content: "";
display: block;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-bg {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close {
display: block;
position: fixed;
width: 1em;
height: 1em;
margin: 0;
border: 0;
padding: 0;
line-height: 1em;
text-align: center;
background-color: transparent;
opacity: 0;
transform: scale(0);
z-index: 3;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close span {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close svg {
display: block;
width: 1em;
height: 1em;
margin: auto;
font-size: 1em;
fill: currentColor;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal.x-active .x-modal-close {
opacity: 1;
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close-top {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close-left {
left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close-right {
right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close-bottom {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal-close-top {
top: 32px;
}
@media screen and (max-width: 782px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal-close-top {
top: 46px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-content {
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
z-index: 2;
width: 100%;
margin: 0 auto;
transform: translate3d(0, -15px, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal.x-active .x-modal-content {
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal-bg {
top: 32px;
}
@media screen and (max-width: 782px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-modal-bg {
top: 46px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas {
overflow-x: hidden;
overflow-y: auto;
visibility: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
z-index: 99999998;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas.x-active {
visibility: visible;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-bg {
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
z-index: 1;
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas.x-active .x-off-canvas-bg {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close {
display: block;
position: absolute;
top: 0;
margin: 0;
border: 0;
padding: 0;
line-height: 1;
text-align: center;
background-color: transparent;
opacity: 0;
transform: scale(0);
z-index: 3;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close span {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close svg {
display: block;
width: 1em;
height: 1em;
margin: auto;
font-size: 1em;
fill: currentColor;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas.x-active .x-off-canvas-close {
opacity: 1;
transform: scale(1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-content {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas.x-active .x-off-canvas-content {
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close-left {
left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close-right {
right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-content-left {
left: 0;
transform: translate3d(-115%, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-content-right {
right: 0;
transform: translate3d(115%, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-off-canvas {
top: 32px;
}
@media screen and (max-width: 782px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .admin-bar .x-off-canvas {
top: 46px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle] {
display: block;
position: absolute;
opacity: 0;
pointer-events: none;
speak: never;
z-index: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle] span {
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: inherit;
background-color: currentColor;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=t_] {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=_l] {
left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=_r] {
right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=b_] {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_]:not([data-x-particle*=c_c]) {
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=_c]:not([data-x-particle*=c_c]) {
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_c] {
top: 50%;
left: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=t_] {
top: 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=c_] {
top: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=b_] {
top: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=_l] {
left: 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=_c] {
left: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle*=_r] {
left: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle~=scale-x_y] {
transform: scale3d(0, 0, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle~=scale-x] {
transform: scale3d(0, 1, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle~=scale-y] {
transform: scale3d(1, 0, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_c] {
transform: translate3d(-50%, -50%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle~=scale-x_y],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_c][data-x-particle~=scale-x_y] {
transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle~=scale-x],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_c][data-x-particle~=scale-x] {
transform: translate3d(-50%, -50%, 0) scale3d(0, 1, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=overlap][data-x-particle~=scale-y],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle*=inside][data-x-particle*=c_c][data-x-particle~=scale-y] {
transform: translate3d(-50%, -50%, 0) scale3d(1, 0, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle [data-x-particle][class*=active],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle:hover [data-x-particle],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle.x-active [data-x-particle],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=particles]:hover [data-x-particle] {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle [data-x-particle][class*=active][data-x-particle*=scale],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle:hover [data-x-particle][data-x-particle*=scale],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle.x-active [data-x-particle][data-x-particle*=scale],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=particles]:hover [data-x-particle][data-x-particle*=scale] {
transform: scale3d(1, 1, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle [data-x-particle][class*=active][data-x-particle*=scale][data-x-particle*=overlap],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle [data-x-particle][class*=active][data-x-particle*=scale][data-x-particle*=inside][data-x-particle*=c_c],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle:hover [data-x-particle][data-x-particle*=scale][data-x-particle*=overlap],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle:hover [data-x-particle][data-x-particle*=scale][data-x-particle*=inside][data-x-particle*=c_c],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle.x-active [data-x-particle][data-x-particle*=scale][data-x-particle*=overlap],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle.x-active [data-x-particle][data-x-particle*=scale][data-x-particle*=inside][data-x-particle*=c_c],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=particles]:hover [data-x-particle][data-x-particle*=scale][data-x-particle*=overlap],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=particles]:hover [data-x-particle][data-x-particle*=scale][data-x-particle*=inside][data-x-particle*=c_c] {
transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps {
overflow: hidden !important;
overflow-anchor: none;
touch-action: auto;
-ms-overflow-style: none;
-ms-touch-action: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-y {
display: none;
position: absolute;
opacity: 0;
transition: background-color 0.2s ease, opacity 0.2s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-x {
bottom: 0;
height: 15px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-y {
right: 0;
width: 15px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--active-x > .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--active-y > .ps__rail-y {
display: block;
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps:hover > .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps:hover > .ps__rail-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--focus > .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--focus > .ps__rail-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--scrolling-x > .ps__rail-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps--scrolling-y > .ps__rail-y {
opacity: 0.6;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-x:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-y:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-x:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-y:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-x.ps--clicking,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps .ps__rail-y.ps--clicking {
background-color: #eee;
opacity: 0.9;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__thumb-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__thumb-y {
position: absolute;
border-radius: 100px;
background-color: #aaa;
transition-duration: 0.2s;
transition-timing-function: ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__thumb-x {
bottom: 2px;
height: 6px;
transition-property: background-color, height;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__thumb-y {
right: 2px;
width: 6px;
transition-property: background-color, width;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-x:hover > .ps__thumb-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-x:focus > .ps__thumb-x,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-x.ps--clicking .ps__thumb-x {
height: 11px;
background-color: #999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-y:hover > .ps__thumb-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-y:focus > .ps__thumb-y,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps__rail-y.ps--clicking .ps__thumb-y {
width: 11px;
background-color: #999;
}
@supports (-ms-overflow-style: none) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps {
overflow: auto !important;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .ps {
overflow: auto !important;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-rating {
display: inline-flex;
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-rating-graphic {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
min-width: 1px;
letter-spacing: 0 !important;
line-height: 1 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-rating-text {
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search {
display: flex;
align-items: center;
margin: 0;
border: 0;
padding: 0;
cursor: text;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search:focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn {
display: block;
flex-shrink: 0;
margin: 0;
border: 0;
padding: 0;
line-height: 1;
background-color: transparent;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn:focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn svg {
display: block;
width: 1em;
height: 1em;
margin: 0 auto;
line-height: inherit;
stroke: currentColor;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn-submit {
order: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn-clear {
order: 3;
visibility: hidden;
pointer-events: none;
}
.x-search-has-content :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn-clear {
visibility: visible;
pointer-events: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input {
flex-grow: 1;
order: 2;
width: 100%;
min-width: 1px;
height: auto !important;
border: 0 !important;
padding: 0 !important;
background-color: transparent !important;
box-shadow: none !important;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input::-ms-clear {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input::-webkit-input-placeholder {
color: currentColor;
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input::-moz-placeholder {
color: currentColor;
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input:-ms-input-placeholder {
color: currentColor;
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-separator] {
display: block;
position: absolute;
z-index: -1;
left: 0;
right: 0;
margin: 0 auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-separator][class*=top] {
top: 0;
transform: translate(0, -100%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-separator][class*=bottom] {
bottom: 0;
transform: translate(0, 100%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class*=x-separator] svg {
display: block;
width: 100%;
height: 100%;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem] {
top: auto;
left: auto;
right: auto;
bottom: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=d] {
top: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=l] {
right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=r] {
left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=u] {
bottom: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=d][data-x-stem-menu-top*=h] {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=l][data-x-stem-menu-top*=h] {
right: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=r][data-x-stem-menu-top*=h] {
left: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=u][data-x-stem-menu-top*=h] {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=d][data-x-stem-root*=h] {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=l][data-x-stem-root*=h] {
right: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=r][data-x-stem-root*=h] {
left: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem*=u][data-x-stem-root*=h] {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem] [data-x-stem*=d] {
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem] [data-x-stem*=l] {
right: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem] [data-x-stem*=r] {
left: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-stem] [data-x-stem*=u] {
bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text {
min-width: 1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-text {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-headline {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content {
display: -webkit-flex;
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text {
-webkit-flex-grow: 1;
flex-grow: 1;
min-width: 1px;
max-width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text > p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text > ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text > ol:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary > p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary > ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary > ol:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline > p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline > ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline > ol:last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline {
margin-top: 0;
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle {
display: block;
position: relative;
transform: translate3d(0, 0, 0);
pointer-events: none;
speak: never;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle > span {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0 auto;
border-radius: inherit;
background-color: currentColor;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-burger,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-grid,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-h,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-v {
height: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-grid,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-h,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-v {
width: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-h,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-v {
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toggle-more-v {
transform: translate3d(0, 0, 0) rotate(90deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-anim] {
animation-name: none;
animation-duration: 0.5s;
animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: paused;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-anim].x-paused {
animation-play-state: paused;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-anim].x-running {
animation-play-state: running;
}
@keyframes x-bun-t-1 {
50% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0, 0, 0) rotate(45deg);
}
}
@keyframes x-patty-1 {
49% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes x-bun-b-1 {
50% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0, 0, 0) rotate(-45deg);
}
}
@keyframes x-grid-1 {
50% {
box-shadow:
0 0,
0 0,
0 0,
0 0,
0 0,
0 0,
0 0,
0 0;
transform: rotate3d(0, 0, 1, 0deg);
}
100% {
box-shadow:
-1em 0,
-2em 0,
0 -1em,
0 2em,
0 -2em,
0 1em,
2em 0,
1em 0;
transform: rotate3d(0, 0, 1, -45deg);
}
}
@keyframes x-more-1-1 {
50% {
transform: translate3d(0, 0, 0);
}
75% {
border-radius: 0;
}
100% {
border-radius: 0;
transform: translate3d(0, 0, 0) rotate(45deg) scale3d(4, 0.5, 1);
}
}
@keyframes x-more-2-1 {
49% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes x-more-3-1 {
50% {
transform: translate3d(0, 0, 0) rotate(-45deg);
}
75% {
border-radius: 0;
}
100% {
border-radius: 0;
transform: translate3d(0, 0, 0) rotate(-45deg) scale3d(4, 0.5, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle] {
transition-delay: 0ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropdown.x-active {
transition-delay:
0ms,
0ms,
0ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal.x-active {
transition-delay: 0ms, 0ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-td,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-div,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-row,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-col,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-grid,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cell,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-indicator,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-link,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner > *,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-secondary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-sub-indicator,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content .x-anchor-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky .x-bar-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-collapse],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-line,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart a:not(.x-anchor),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-typing,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-typed-cursor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-first-level,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered:not(.x-menu-first-level),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-add-to-cart-form,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-container,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li {
transition-duration: 300ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-faces,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label {
transition-duration: 750ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg][data-x-params*=parallax] {
transition-duration: 300ms, 0ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle:hover [data-x-particle][data-x-particle*=scale],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .has-particle.x-active [data-x-particle][data-x-particle*=scale],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect-provider*=particles]:hover [data-x-particle][data-x-particle*=scale] {
transition-duration: 0ms, 300ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect] {
animation-duration: 1000ms;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropdown {
transition-property:
opacity,
transform,
visibility;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal {
transition-property: opacity, visibility;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-close {
transition-property:
color,
opacity,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-content {
transition-property: transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas {
transition-property: visibility;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas-bg {
transition-property: opacity;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle] {
transition-property: opacity, transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-container {
transition-property:
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky .x-bar-content {
transition-property: height, opacity;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-visible {
transition-property:
height,
opacity,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-line,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-first-level,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-add-to-cart-form,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination {
transition-property:
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered:not(.x-menu-first-level) {
transition-property: height;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered.x-menu-first-level {
transition-property:
height,
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-div,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-row,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-col,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-grid,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cell,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-headline,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
transition-property:
border-color,
background-color,
box-shadow,
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li {
transition-property:
width,
height,
background-color,
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search {
transition-property:
color,
border-color,
background-color,
box-shadow,
text-shadow,
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text:not(.x-text-headline) {
transition-property:
color,
border-color,
background-color,
box-shadow,
text-shadow,
column-rule,
opacity,
filter,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-collapse] {
transition-property: height;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-faces,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-indicator {
transition-property: transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-secondary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-sub-indicator,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-typing,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-typed-cursor {
transition-property: color, text-shadow;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content .x-anchor-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg][data-x-params*=parallax] {
transition-property: opacity, transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label {
transition-property:
width,
height,
transform,
opacity;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-link,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner > *,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart a:not(.x-anchor),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input {
transition-property:
color,
border-color,
background-color,
text-shadow,
box-shadow;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered .x-anchor {
transition-property:
border-color,
background-color,
box-shadow,
opacity,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-child {
transition-property:
color,
background-color,
text-shadow,
box-shadow,
opacity,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button {
transition-property:
color,
border-color,
background-color,
box-shadow,
text-shadow,
opacity,
transform;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-ttf,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-div,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-row,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-col,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-grid,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cell,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-acc-header-indicator,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-link,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner > *,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-text-secondary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor-sub-indicator,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anchor.has-int-content .x-anchor-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-is-sticky .x-bar-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-toggle-collapse],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-graphic-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-line,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-mini-cart a:not(.x-anchor),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-modal-close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-btn,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-input,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-primary,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-content-text-subheadline,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-text-typing,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-typed-cursor,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-first-level,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-menu-layered:not(.x-menu-first-level),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-faces,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-statbar-label,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-add-to-cart-form,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-wc-shop-sort,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-particle],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-container,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide-pagination li {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [class^=x-bg][data-x-params*=parallax] {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), linear;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-off-canvas {
transition-timing-function: linear;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-effect] {
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-crumbs-link .x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-paginate-inner > * .x-icon,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-bar-scroll-button .x-icon {
transition: initial;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-disable-animation],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) [data-x-disable-animation] * {
transition: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.bounceIn,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.flipOutX,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-anim-hide,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated-hide {
opacity: 0;
}
@keyframes bounce {
from, 20%, 53%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 0, 0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -30px, 0) scaleY(1.1);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
transform: translate3d(0, -15px, 0) scaleY(1.05);
}
80% {
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
transform: translate3d(0, 0, 0) scaleY(0.95);
}
90% {
transform: translate3d(0, -4px, 0) scaleY(1.02);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flash {
animation-name: flash;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes heartBeat {
0% {
transform: scale(1);
}
14% {
transform: scale(1.3);
}
28% {
transform: scale(1);
}
42% {
transform: scale(1.3);
}
70% {
transform: scale(1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .heartBeat {
animation-name: heartBeat;
animation-duration: calc(var(--animate-duration) * 1.3);
animation-timing-function: ease-in-out;
}
@keyframes jello {
from, 11.1%, to {
transform: translate3d(0, 0, 0);
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .jello {
animation-name: jello;
transform-origin: center;
}
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .pulse {
animation-name: pulse;
animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .shake {
animation-name: shake;
}
@keyframes shakeX {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .shakeX {
animation-name: shakeX;
}
@keyframes shakeY {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(0, -10px, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(0, 10px, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .shakeY {
animation-name: shakeY;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tada {
animation-name: tada;
}
@keyframes wobble {
from {
transform: translate3d(0, 0, 0);
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .wobble {
animation-name: wobble;
}
@keyframes backInDown {
0% {
transform: translateY(-1200px) scale(0.7);
opacity: 0.7;
}
80% {
transform: translateY(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backInDown {
animation-name: backInDown;
}
@keyframes backInLeft {
0% {
transform: translateX(-2000px) scale(0.7);
opacity: 0.7;
}
80% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backInLeft {
animation-name: backInLeft;
}
@keyframes backInRight {
0% {
transform: translateX(2000px) scale(0.7);
opacity: 0.7;
}
80% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backInRight {
animation-name: backInRight;
}
@keyframes backInUp {
0% {
transform: translateY(1200px) scale(0.7);
opacity: 0.7;
}
80% {
transform: translateY(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: scale(1);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backInUp {
animation-name: backInUp;
}
@keyframes backOutDown {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateY(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateY(700px) scale(0.7);
opacity: 0.7;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backOutDown {
animation-name: backOutDown;
}
@keyframes backOutLeft {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateX(-2000px) scale(0.7);
opacity: 0.7;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backOutLeft {
animation-name: backOutLeft;
}
@keyframes backOutRight {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateX(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateX(2000px) scale(0.7);
opacity: 0.7;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backOutRight {
animation-name: backOutRight;
}
@keyframes backOutUp {
0% {
transform: scale(1);
opacity: 1;
}
20% {
transform: translateY(0px) scale(0.7);
opacity: 0.7;
}
100% {
transform: translateY(-700px) scale(0.7);
opacity: 0.7;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .backOutUp {
animation-name: backOutUp;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceIn {
animation-duration: calc(var(--animate-duration) * 0.75);
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0) scaleY(3);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0) scaleY(0.9);
}
75% {
transform: translate3d(0, -10px, 0) scaleY(0.95);
}
90% {
transform: translate3d(0, 5px, 0) scaleY(0.985);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0) scaleX(3);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0) scaleX(1);
}
75% {
transform: translate3d(-10px, 0, 0) scaleX(0.98);
}
90% {
transform: translate3d(5px, 0, 0) scaleX(0.995);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0) scaleX(3);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0) scaleX(1);
}
75% {
transform: translate3d(10px, 0, 0) scaleX(0.98);
}
90% {
transform: translate3d(-5px, 0, 0) scaleX(0.995);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0) scaleY(5);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0) scaleY(0.9);
}
75% {
transform: translate3d(0, 10px, 0) scaleY(0.95);
}
90% {
transform: translate3d(0, -5px, 0) scaleY(0.985);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(0.9, 0.9, 0.9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceOut {
animation-duration: calc(var(--animate-duration) * 0.75);
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0) scaleY(0.985);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0) scaleY(0.9);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0) scaleY(3);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0) scaleX(0.9);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0) scaleX(2);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0) scaleX(0.9);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0) scaleX(2);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0) scaleY(0.985);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0) scaleY(0.9);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0) scaleY(3);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInBottomLeft {
from {
opacity: 0;
transform: translate3d(-100%, 100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInBottomLeft {
animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
from {
opacity: 0;
transform: translate3d(100%, 100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInBottomRight {
animation-name: fadeInBottomRight;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInTopLeft {
from {
opacity: 0;
transform: translate3d(-100%, -100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInTopLeft {
animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
from {
opacity: 0;
transform: translate3d(100%, -100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInTopRight {
animation-name: fadeInTopRight;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutBottomLeft {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-100%, 100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutBottomLeft {
animation-name: fadeOutBottomLeft;
}
@keyframes fadeOutBottomRight {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(100%, 100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutBottomRight {
animation-name: fadeOutBottomRight;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutTopLeft {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-100%, -100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutTopLeft {
animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
from {
opacity: 1;
transform: translate3d(0, 0, 0);
}
to {
opacity: 0;
transform: translate3d(100%, -100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutTopRight {
animation-name: fadeOutTopRight;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
animation-timing-function: ease-in;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .animated.flip {
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flipInX {
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flipInY {
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flipOutX {
animation-duration: calc(var(--animate-duration) * 0.75);
animation-name: flipOutX;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flipOutY {
animation-duration: calc(var(--animate-duration) * 0.75);
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedInLeft {
from {
transform: translate3d(-100%, 0, 0) skewX(30deg);
opacity: 0;
}
60% {
transform: skewX(-20deg);
opacity: 1;
}
80% {
transform: skewX(5deg);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .lightSpeedInLeft {
animation-name: lightSpeedInLeft;
animation-timing-function: ease-out;
}
@keyframes lightSpeedInRight {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .lightSpeedInRight {
animation-name: lightSpeedInRight;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOutLeft {
from {
opacity: 1;
}
to {
transform: translate3d(-100%, 0, 0) skewX(-30deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .lightSpeedOutLeft {
animation-name: lightSpeedOutLeft;
animation-timing-function: ease-in;
}
@keyframes lightSpeedOutRight {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .lightSpeedOutRight {
animation-name: lightSpeedOutRight;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateIn {
animation-name: rotateIn;
transform-origin: center;
}
@keyframes rotateInDownLeft {
from {
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateInDownLeft {
animation-name: rotateInDownLeft;
transform-origin: left bottom;
}
@keyframes rotateInDownRight {
from {
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateInDownRight {
animation-name: rotateInDownRight;
transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
from {
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateInUpLeft {
animation-name: rotateInUpLeft;
transform-origin: left bottom;
}
@keyframes rotateInUpRight {
from {
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateInUpRight {
animation-name: rotateInUpRight;
transform-origin: right bottom;
}
@keyframes rotateOut {
from {
opacity: 1;
}
to {
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateOut {
animation-name: rotateOut;
transform-origin: center;
}
@keyframes rotateOutDownLeft {
from {
opacity: 1;
}
to {
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateOutDownLeft {
animation-name: rotateOutDownLeft;
transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
from {
opacity: 1;
}
to {
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateOutDownRight {
animation-name: rotateOutDownRight;
transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
from {
opacity: 1;
}
to {
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateOutUpLeft {
animation-name: rotateOutUpLeft;
transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
from {
opacity: 1;
}
to {
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rotateOutUpRight {
animation-name: rotateOutUpRight;
transform-origin: right bottom;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .slideOutUp {
animation-name: slideOutUp;
}
@keyframes hinge {
0% {
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .hinge {
animation-duration: calc(var(--animate-duration) * 2);
animation-name: hinge;
transform-origin: top left;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .jackInTheBox {
animation-name: jackInTheBox;
}
@keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rollIn {
animation-name: rollIn;
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomOutDown {
animation-name: zoomOutDown;
transform-origin: center bottom;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.1) translate3d(-2000px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomOutLeft {
animation-name: zoomOutLeft;
transform-origin: left center;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(0.1) translate3d(2000px, 0, 0);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomOutRight {
animation-name: zoomOutRight;
transform-origin: right center;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .zoomOutUp {
animation-name: zoomOutUp;
transform-origin: center bottom;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-effect-exit,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-effect-entering,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-effect-exiting {
pointer-events: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-effect-animated {
animation-fill-mode: both !important;
}
@media print, (prefers-reduced-motion: reduce) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-effect-animated {
animation-duration: 1ms !important;
transition-duration: 1ms !important;
animation-iteration-count: 1 !important;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at i,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at ul,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at ol,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at div,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at span,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-no-at button {
animation-delay: 1ms !important;
animation-duration: 1ms !important;
transition-delay: 1ms !important;
transition-duration: 1ms !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container {
position: static;
width: 100% !important;
height: auto !important;
background: none !important;
background-color: transparent !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container.mejs-container-fullscreen {
background-color: #000;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls {
overflow: hidden;
position: relative;
width: 100%;
margin: 0;
border: 1px solid transparent;
padding: 0;
background: none !important;
background-color: rgba(0, 0, 0, 0.75) !important;
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls > div {
position: relative;
float: left;
width: 30px;
height: 30px;
margin: 0;
border: 0;
padding: 0;
background: none;
line-height: 30px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-controls {
width: auto;
position: absolute;
left: 15px;
right: 15px;
bottom: 15px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button {
top: auto;
left: auto;
right: auto;
bottom: auto;
margin: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-playpause-button {
border-right: 1px solid rgba(0, 0, 0, 0.25);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-volume-button,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-fullscreen-button {
border-left: 1px solid rgba(0, 0, 0, 0.25);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button button {
position: static;
display: block;
margin: 0;
border: 0;
padding: 0;
width: 30px;
height: 30px;
font-size: 14px;
line-height: inherit;
text-align: center;
vertical-align: top;
color: rgba(255, 255, 255, 0.5);
background: none;
text-decoration: none;
text-shadow: none;
box-shadow: none;
cursor: pointer;
transition: color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button button:hover {
color: #ffffff;
opacity: 1 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button button:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button button:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button button:before {
content: "\f065";
display: block;
position: static;
margin: 0 auto;
font-size: inherit;
font-family: "FontAwesome" !important;
font-style: normal !important;
font-weight: normal !important;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-play button:before {
content: "\f04b";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-replay button:before {
content: "\f01e";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-pause button:before {
content: "\f04c";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-mute button:before {
content: "\f028";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-unmute button:before {
content: "\f026";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-fullscreen button:before {
content: "\f065";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-button.mejs-unfullscreen button:before {
content: "\f066";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time {
width: 46px !important;
margin: 0;
padding: 0;
font-size: 10px;
text-align: center;
color: rgba(255, 255, 255, 0.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time span {
float: none;
width: 100%;
height: 100%;
margin: 0;
border: 0;
padding: 0;
font-size: inherit;
line-height: inherit;
color: inherit;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time {
display: none;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-rail {
width: calc(100% - 30px) !important;
padding: 10px 10px 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-total {
display: block;
margin: 0;
border: 0;
padding: 0;
position: relative;
width: 100% !important;
height: 10px;
background-color: rgba(255, 255, 255, 0.25);
border-radius: 5px;
box-shadow: none;
overflow: hidden;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-total:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-total:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-loaded,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-current {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: none;
border-radius: 5px;
transform-origin: 0% 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-loaded {
background-color: rgba(255, 255, 255, 0.25);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls .mejs-time-current {
background-color: #ffffff;
transform: scaleX(0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls .mejs-time-rail {
padding-left: 0;
padding-right: 0;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls .mejs-time-rail {
padding-left: 10px;
padding-right: 10px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls.mejs-audio .mejs-time-rail {
width: calc(100% - 152px) !important;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls.mejs-audio .mejs-time-rail {
width: calc(100% - 60px) !important;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls.mejs-video .mejs-time-rail {
width: calc(100% - 182px) !important;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .advanced-controls.mejs-video .mejs-time-rail {
width: calc(100% - 90px) !important;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-mediaelement {
position: static !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-audio .mejs-layers {
display: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-layer {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-poster {
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-poster img {
object-fit: contain;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-overlay-play {
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-overlay-loading,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-overlay-error,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-video .mejs-overlay-play .mejs-overlay-button {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-fullscreen {
overflow: hidden !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container-fullscreen {
bottom: 0;
left: 0;
overflow: hidden;
position: fixed;
right: 0;
top: 0;
z-index: 1000;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container-fullscreen .mejs-mediaelement,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-container-fullscreen video {
height: 100% !important;
width: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-fullscreen-button > button {
background-position: -80px 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-unfullscreen > button {
background-position: -100px 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-controls:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-offscreen,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-time-buffering,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-time-hovered,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-time-handle,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-time-float,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-volume-slider,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .mejs-clear {
display: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .hide-controls .mejs-video .mejs-controls {
display: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .hide-controls.autoplay .mejs-video .mejs-layers {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav {
margin-left: 0;
margin-bottom: 1.5em;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav > li > a {
display: block;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav > li > a:hover {
text-decoration: none;
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav > .right {
float: right;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs {
margin-bottom: 0;
border: 1px solid #000;
border: 1px solid black;
border-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li {
float: left;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li > a {
padding: 0.75em 0.75em 0.95em;
font-size: 14px;
line-height: 1.3;
color: #d2d2d2;
background-color: #fafafa;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li > a:hover {
color: #7a7a7a;
background-color: #fafafa;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li {
border-right: 1px solid #000;
border-right: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li a {
border-bottom: 1px solid #000;
border-bottom: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
width: 24%;
max-width: 200px;
border-bottom: 1px solid #000;
border-bottom: 1px solid black;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
float: none;
width: 100%;
max-width: none;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > .x-nav-tabs-item,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > .x-nav-tabs-item {
float: none;
width: 100%;
border-bottom: 1px solid #000;
border-bottom: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > .x-nav-tabs-item:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > .x-nav-tabs-item:last-child {
border-bottom: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left {
margin-right: -1px;
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li a {
border-right: 1px solid #000;
border-right: 1px solid black;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left {
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
margin-left: -1px;
border-left: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li a {
border-left: 1px solid #000;
border-left: 1px solid black;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
margin-left: 0;
}
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
border-bottom: 1px solid #000;
border-bottom: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item {
border-left: 0;
border-right: 0;
border-bottom: 1px solid #000;
border-bottom: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item.active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item.active > a:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item.active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item.active > a:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item.active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item.active > a:hover {
border-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item:last-child > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item:last-child > a:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item:last-child > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item:last-child > a:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item:last-child > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item:last-child > a:hover {
border-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > li.x-nav-tabs-item:last-child {
border-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item.active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > li.x-nav-tabs-item.active > a:hover {
border-right: 1px solid #000;
border-right: 1px solid black;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item.active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > li.x-nav-tabs-item.active > a:hover {
border-left: 1px solid #000;
border-left: 1px solid black;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > .active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > .active > a:hover {
color: #7a7a7a;
background-color: #ffffff;
cursor: default;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > .active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top > .active > a:hover {
border-bottom: 1px solid #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > .active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > .active > a:hover {
border-right: 1px solid #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > .active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > .active > a:hover {
border-left: 1px solid #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.one-up > li {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.two-up > li {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.three-up > li {
width: 33.33333%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.four-up > li {
width: 25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.five-up > li {
width: 20%;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.two-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.three-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.four-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.five-up > li {
float: none;
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top.one-up > li:nth-child(1n),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top.two-up > li:nth-child(2n),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top.three-up > li:nth-child(3n),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top.four-up > li:nth-child(4n),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.top.five-up > li:nth-child(5n) {
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tabbable:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tabbable:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tabbable:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content {
overflow: auto;
margin-bottom: 1.5em;
border: 1px solid #000;
border: 1px solid black;
border-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content .x-btn {
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content .x-tab-pane {
padding: 4%;
background-color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left + .x-tab-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right + .x-tab-content {
border-top: 1px solid #000;
border-top: 1px solid black;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left + .x-tab-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right + .x-tab-content {
border-top: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content > .x-tab-pane {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content > .active {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-articles {
float: right;
width: 10%;
text-align: right;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-articles {
float: none;
width: 100%;
margin-top: 0.65em;
text-align: center;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-articles .next {
margin-left: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-container {
margin: 0 auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-container:not(.x-row):not(.x-grid):not(.x-div):not(.x-bar-content):not(.x-slide-container-content):before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-container:not(.x-row):not(.x-grid):not(.x-div):not(.x-bar-content):not(.x-slide-container-content):after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-container:not(.x-row):not(.x-grid):not(.x-div):not(.x-bar-content):not(.x-slide-container-content):after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-dropcap {
float: left;
display: block;
margin: 0.175em 0.215em 0 0;
padding: 0.105em 0.2em 0.135em;
font-size: 3.3em;
line-height: 1;
border-radius: 3px;
color: #ffffff;
background-color: #ff2a13;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-hr {
height: 0;
margin: 0;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.125);
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-gap {
height: 0;
margin: 0;
border: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-clear {
height: 0;
margin: 0;
border: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-highlight {
padding: 0.15em 0.475em;
color: #ffffff;
background-color: #ff2a13;
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-highlight.dark {
color: #ffffff;
background-color: rgba(0, 0, 0, 0.75);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-blockquote {
position: static;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
border-left: 0;
border-right: 0;
padding: 1em;
font-size: 1.75em;
line-height: 1.4;
background: none;
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-blockquote:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-blockquote:after {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pullquote {
width: 40%;
margin: 0.375em 1.25em 0.55em 0;
font-size: 1.35em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pullquote.right {
margin-right: 0;
margin-left: 1.25em;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pullquote.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pullquote.right {
float: none;
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cite {
display: block;
margin-top: 0.75em;
font-size: 0.625em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-cite:before {
content: "\2013\a0";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message {
position: relative;
margin: 0;
border-left: 4px solid #f6dca7;
padding: 0.915em 2.25em 1.15em 1.15em;
font-size: 14px;
line-height: 1.6;
color: #c09853;
background-color: #fcf8e3;
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert.x-alert-block,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error.x-alert-block,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info.x-alert-block,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message.x-alert-block {
padding: 0.915em 1.15em 1.15em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .h-alert,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .h-alert,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .h-alert,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .h-alert {
margin: 0 0 0.5em;
padding: 0;
font-size: 18px;
letter-spacing: -0.05em;
line-height: 1.3;
text-transform: none;
color: inherit;
clear: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .close {
float: right;
position: relative;
top: -10px;
right: -26px;
border: 0;
padding: 0;
font-size: 18px;
line-height: 1;
text-decoration: none;
color: #c09853;
background-color: transparent;
background-image: none;
opacity: 0.4;
box-shadow: none;
cursor: pointer;
transition: opacity 0.3s ease;
-webkit-appearance: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .close:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .close:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .close:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .close:hover {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .close:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .close:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .close:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .close:focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .x-alert-content p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .x-alert-content p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .x-alert-content p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .x-alert-content p {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert .x-alert-content p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .x-alert-content p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .x-alert-content p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message p + p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .x-alert-content p + p {
margin-top: 6px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-muted {
color: #999;
border-color: #cfcfcf;
background-color: #eee;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-muted .close {
color: #999;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-info,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message {
color: #3a87ad;
border-color: #b3d1ef;
background-color: #d9edf7;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-info .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-info .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-message .close {
color: #3a87ad;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-success {
color: #468847;
border-color: #c1dea8;
background-color: #dff0d8;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-success .close {
color: #468847;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-danger,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error {
color: #b94a48;
border-color: #e5bdc4;
background-color: #f2dede;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-alert-danger .close,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .woocommerce-error .close {
color: #b94a48;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-map .x-map-inner {
overflow: hidden;
position: relative;
padding-bottom: 56.25%;
height: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-map .x-map-inner iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-map .gm-style img {
max-width: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-skill-bar {
margin: 0 0 5px;
padding: 0;
font-size: 10px;
letter-spacing: -0.015em;
line-height: 1;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-skill-bar {
height: 25px;
margin: 0;
background-color: rgba(0, 0, 0, 0.125);
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-skill-bar .bar {
overflow: hidden;
position: relative;
width: 0%;
height: 100%;
float: left;
background-color: #ff2a13;
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-skill-bar .bar .percent {
position: absolute;
right: 4px;
bottom: 4px;
height: 17px;
padding: 0 2px;
font-size: 11px;
line-height: 17px;
color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-code {
display: block;
margin: 0;
border: 0;
padding: 0.75em 1.25em;
font-family:
Consolas,
"Andale Mono WT",
"Andale Mono",
"Lucida Console",
"Lucida Sans Typewriter",
"DejaVu Sans Mono",
"Bitstream Vera Sans Mono",
"Liberation Mono",
"Nimbus Mono L",
Monaco,
"Courier New",
Courier,
monospace;
font-size: 1em;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: pre-wrap;
border-radius: 3px;
background: none;
background-color: rgba(0, 0, 0, 0.125);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-code code {
display: block;
margin: 0;
border: 0;
padding: 0;
font-size: 1.15em;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: pre-wrap;
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn {
display: inline-block;
position: relative;
border: 1px solid #ac1100;
padding: 0.563em 1.125em 0.813em;
cursor: pointer;
font-size: 16px;
line-height: 1.3;
text-align: center;
text-decoration: none;
vertical-align: middle;
color: #ffffff;
background: none;
background-color: #ff2a13;
transition: all 0.15s linear;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn:hover {
color: #ffffff;
border: 1px solid #600900;
background: none;
background-color: #df1600;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn:focus {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn:visited {
color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-jumbo {
padding: 0.643em 1.429em 0.786em;
font-size: 28px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-x-large {
padding: 0.714em 1.286em 0.857em;
font-size: 21px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-large {
padding: 0.579em 1.105em 0.842em;
font-size: 19px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-regular {
padding: 0.563em 1.125em 0.813em;
font-size: 16px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-small {
padding: 0.429em 1.143em 0.643em;
font-size: 14px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-mini {
padding: 0.385em 0.923em 0.538em;
font-size: 13px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-square {
border-radius: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-rounded {
border-radius: 0.225em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn.x-btn-pill {
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn [class*=x-icon-] {
display: inline;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap {
display: inline-block;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap.x-btn-jumbo,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap.x-btn-x-large,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap.x-btn-large {
margin: 0 0 21px;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap:after {
content: "";
position: relative;
display: block;
margin: 0 auto;
background-repeat: no-repeat;
background-position: center center;
z-index: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap:before {
top: 2px;
width: 172px;
height: 43px;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/btn-circle-top-small.png);
background-size: 172px 43px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap:after {
bottom: 2px;
width: 190px;
height: 43px;
background-image: url(//ripacareers.com.au/wp-content/plugins/cornerstone/assets/img/btn-circle-bottom-small.png);
background-size: 190px 43px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-circle-wrap .x-btn {
position: relative;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-block {
display: block;
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-btn-block + .x-btn-block {
margin-top: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid {
display: block;
overflow: hidden;
margin: 0;
padding: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid > li {
display: block;
float: left;
clear: none;
height: auto;
margin: 5% 5% 0 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li {
width: 47.5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li:nth-child(-n+2) {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li:nth-child(2n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li:nth-child(2n+1) {
clear: both;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li {
width: 100%;
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.two-up > li:nth-child(2) {
margin-top: 5%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li {
width: 30%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(-n+3) {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3n+1) {
clear: both;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li {
width: 47.5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3) {
margin-top: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3n) {
margin-right: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3n+1) {
clear: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(2n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(2n+1) {
clear: both;
}
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li {
width: 100%;
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(2) {
margin-top: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.three-up > li:nth-child(3n) {
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li {
width: 21.25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(-n+4) {
margin-top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4n+1) {
clear: both;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li {
width: 47.5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(3),
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4) {
margin-top: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4n) {
margin-right: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4n+1) {
clear: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(2n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(2n+1) {
clear: both;
}
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li {
width: 100%;
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(2) {
margin-top: 5%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-block-grid.four-up > li:nth-child(4n) {
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img img {
border-radius: 0;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img.left {
margin: 0.35em 1em 0.35em 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img.right {
margin: 0.35em 0 0.35em 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-img {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-img:not(.x-img-thumbnail) {
transform: translate3d(0, 0, 0);
transition: opacity 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-img:not(.x-img-thumbnail):hover {
opacity: 0.75;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-img > img {
display: block;
margin-left: auto;
margin-right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img-rounded,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img-rounded img {
border-radius: 6px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img-circle,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img-circle img {
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-img-thumbnail {
padding: 5px;
border: 1px solid rgba(0, 0, 0, 0.125);
background-color: #ffffff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
transition: border 0.3s ease, box-shadow 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) a.x-img-thumbnail:hover {
border: 1px solid #ff2a13;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-ul-icons {
margin: 0 0 0 1.65em;
padding: 0 !important;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-ul-icons li {
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-ul-icons li [class*=x-icon-] {
margin: 0;
border: 0;
padding: 0;
text-indent: -1.65em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip {
position: absolute;
z-index: 1020;
display: block;
visibility: visible;
border: 0;
padding: 0.455em;
font-size: 11px;
line-height: 1.2;
text-shadow: none;
cursor: default;
opacity: 0;
transform: translate3d(0, 0, 0);
transition: opacity 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.top {
margin-top: -0.273em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.right {
margin-left: 0.273em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.bottom {
margin-top: 0.273em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.left {
margin-left: -0.273em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip-inner {
max-width: 200px;
padding: 0.727em 0.818em;
color: #ffffff;
text-align: center;
text-decoration: none;
background-color: rgba(0, 0, 0, 0.815);
border-radius: 3px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: rgba(0, 0, 0, 0.815);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: rgba(0, 0, 0, 0.815);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: rgba(0, 0, 0, 0.815);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: rgba(0, 0, 0, 0.815);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: none;
width: 236px;
background-color: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 5px;
cursor: default;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
transform: translate3d(0, 0, 0);
transition: opacity 0.3s ease;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.top {
margin-top: -0.825em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.right {
margin-left: 0.825em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.bottom {
margin-top: 0.825em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.left {
margin-left: -0.825em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-title {
margin: 0;
padding: 0.575em 0.75em;
font-size: 15px;
line-height: 1.3;
background-color: #f5f5f5;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 5px 5px 0 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content {
padding: 0.675em 0.875em;
font-size: 13px;
line-height: 1.5;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content p,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content ul,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content ol {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content ul,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover-content ol {
margin-left: 1.286em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover .arrow,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover .arrow:after {
position: absolute;
display: inline-block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover .arrow:after {
content: "";
z-index: -1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.top .arrow {
left: 50%;
bottom: -10px;
margin-left: -10px;
border-width: 10px 10px 0;
border-top-color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.top .arrow:after {
left: 50%;
bottom: -1px;
margin-left: -11px;
border-width: 11px 11px 0;
border-top-color: rgba(0, 0, 0, 0.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.right .arrow {
top: 50%;
left: -10px;
margin-top: -10px;
border-width: 10px 10px 10px 0;
border-right-color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.right .arrow:after {
border-width: 11px 11px 11px 0;
border-right-color: rgba(0, 0, 0, 0.5);
bottom: -11px;
left: -1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.bottom .arrow {
top: -10px;
left: 50%;
margin-left: -10px;
border-width: 0 10px 10px;
border-bottom-color: #f5f5f5;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.bottom .arrow:after {
top: -1px;
left: 50%;
margin-left: -11px;
border-width: 0 11px 11px;
border-bottom-color: rgba(0, 0, 0, 0.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.left .arrow {
top: 50%;
right: -10px;
margin-top: -10px;
border-width: 10px 0 10px 10px;
border-left-color: #ffffff;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .popover.left .arrow:after {
border-width: 11px 0 11px 11px;
border-left-color: rgba(0, 0, 0, 0.5);
bottom: -11px;
right: -1px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-columnize {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 3em;
-moz-column-gap: 3em;
column-gap: 3em;
-webkit-column-rule: 1px solid rgba(0, 0, 0, 0.125);
-moz-column-rule: 1px solid rgba(0, 0, 0, 0.125);
column-rule: 1px solid rgba(0, 0, 0, 0.125);
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-columnize p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-columnize ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-columnize ol:last-child {
margin-bottom: 0;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-columnize {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-gap: 0;
-moz-column-gap: 0;
column-gap: 0;
-webkit-column-rule: 0;
-moz-column-rule: 0;
column-rule: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner.five-by-three {
padding-bottom: 60%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner.five-by-four {
padding-bottom: 80%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner.four-by-three {
padding-bottom: 75%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner.three-by-two {
padding-bottom: 66.67%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner embed,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner iframe,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner object,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video .x-video-inner video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video.bg {
transition: opacity 1s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video.bg,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video.bg .x-video-inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-video.bg.poster {
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-group {
margin: 0 0 10px;
border: 1px solid rgba(0, 0, 0, 0.125);
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-group:last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-heading {
overflow: hidden;
border-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-heading .x-accordion-toggle {
display: block;
border: 0;
padding: 10px 15px;
font-size: 1.15em;
text-decoration: none;
cursor: pointer;
box-shadow: none;
transition: color 0.3s ease, background-color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-heading .x-accordion-toggle.collapsed:before {
transform: rotate(0deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-heading .x-accordion-toggle:before {
content: "\f067";
position: relative;
display: inline-block;
bottom: 0.1em;
margin-right: 10px;
font-size: 74%;
color: rgba(0, 0, 0, 0.25);
transform: rotate(45deg);
transition: all 0.3s ease;
font-family: "FontAwesome" !important;
font-style: normal !important;
font-weight: normal !important;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-inner {
padding: 10px 15px;
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-inner p:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-inner ul:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-accordion-inner ol:last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs {
position: relative;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
border-bottom: 0;
padding: 0 !important;
list-style: none;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li {
float: left;
margin: 0;
border-right: 1px solid rgba(0, 0, 0, 0.125);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
padding: 0;
list-style: none;
text-align: center;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li {
border-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li > a {
display: block;
border: 0;
padding: 0.75em;
font-size: 14px;
line-height: 1.3;
text-decoration: none;
background-color: transparent;
box-shadow: none;
cursor: pointer;
transition: color 0.3s ease, background-color 0.3s ease;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li > a:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > li > a:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
width: 24%;
max-width: 200px;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
float: none;
width: 100%;
max-width: none;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left > .x-nav-tabs-item,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right > .x-nav-tabs-item {
float: none;
width: 100%;
border-left: 0;
border-right: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left {
border-right: 0;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left {
border-right: 1px solid rgba(0, 0, 0, 0.125);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
border-left: 0;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right {
border-left: 1px solid rgba(0, 0, 0, 0.125);
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > .active > a,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs > .active > a:hover {
cursor: default;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.one-up > li {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.one-up > li:nth-child(1n) {
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.two-up > li {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.two-up > li:nth-child(2n) {
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.three-up > li {
width: 33.33333%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.three-up > li:nth-child(3n) {
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.four-up > li {
width: 25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.four-up > li:nth-child(4n) {
border-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.five-up > li {
width: 20%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.five-up > li:nth-child(5n) {
border-right: 0;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.two-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.three-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.four-up > li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.five-up > li {
float: none;
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content {
overflow: auto;
position: relative;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
border-top: 0;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content img,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content .x-btn {
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content .x-tab-pane {
padding: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left + .x-tab-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right + .x-tab-content {
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.left + .x-tab-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-nav-tabs.right + .x-tab-content {
border-top: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content > .x-tab-pane {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-tab-content > .active {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column {
position: relative;
z-index: 1;
float: left;
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-1 {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-2 {
width: 48%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-3 {
width: 30.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-2-3 {
width: 65.33332%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-4 {
width: 22%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-3-4 {
width: 74%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-5 {
width: 16.8%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-2-5 {
width: 37.6%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-3-5 {
width: 58.4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-4-5 {
width: 79.2%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-6 {
width: 13.33332%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-5-6 {
width: 82.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.last,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column:last-of-type {
margin-right: 0;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-xs {
float: none;
width: 100%;
margin-right: 0;
}
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-sm {
float: none;
width: 100%;
margin-right: 0;
}
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-md {
float: none;
width: 100%;
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column[data-fade="1"],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column[data-fade=true] {
transition: opacity cubic-bezier(0.23, 1, 0.32, 1), transform cubic-bezier(0.23, 1, 0.32, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flexslider-shortcode-container {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flexslider a:active {
outline: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav {
margin: 0;
margin-top: 0 !important;
margin-bottom: 0 !important;
border: 0 !important;
padding: 0 !important;
list-style: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav li,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav li {
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flexslider {
margin: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide {
display: none;
position: relative;
margin: 0;
border: 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slide img {
width: 100%;
margin: 0;
display: block;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-flexslider {
width: 100%;
margin: 0;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-viewport {
max-height: 2000px;
transition: all 1s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .loading .flex-viewport {
max-height: 300px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav li {
display: block;
width: 0;
height: 0;
margin: 0;
border: 0;
padding: 0;
line-height: 0;
overflow: visible;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a {
display: block;
position: absolute;
top: 15px;
bottom: auto;
width: 30px;
height: 30px;
margin: 0;
border: 0;
padding: 0;
font-size: 14px;
line-height: 30px;
text-align: center;
text-shadow: none;
text-decoration: none;
color: #ffffff;
background-color: rgba(0, 0, 0, 0.25);
border-radius: 3px;
cursor: pointer;
opacity: 1;
box-shadow: none;
transition: background-color 0.3s ease;
z-index: 10;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a [class*=x-icon-] {
display: block;
width: 100%;
height: 100%;
font-size: inherit;
line-height: inherit;
color: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a:hover {
text-decoration: none;
color: #ffffff;
background-color: rgba(0, 0, 0, 0.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a.flex-prev {
left: 15px;
right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-direction-nav a.flex-next {
left: 50px;
right: auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav {
display: block;
position: absolute;
top: 15px;
left: auto;
right: 13px;
bottom: auto;
width: auto;
height: auto;
margin: 0;
border: 0;
padding: 0;
line-height: 1;
text-align: center;
background-color: transparent;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav li {
margin: 0 2px 0;
display: inline-block;
text-indent: -9999px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav a {
display: block;
width: 15px;
height: 15px;
margin: 0;
border: 0;
padding: 0;
background-color: rgba(0, 0, 0, 0.25);
border-radius: 3px;
cursor: pointer;
opacity: 1;
box-shadow: none;
transition: background-color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav a:hover,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .flex-control-nav a.flex-active {
background-color: rgba(0, 0, 0, 0.5);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-slides > li:first-child {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect {
padding: 7% 18%;
text-align: center;
background-color: rgba(0, 0, 0, 0.125);
border-radius: 0.65em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect label {
display: block;
margin: 25px 0 5px;
font-size: 14px;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect input[type=text],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect input[type=password] {
width: 100%;
max-width: 300px;
margin: 0 auto;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect .h-protect {
margin: 0;
font-size: 21px;
line-height: 1.2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-protect .x-btn-protect {
margin-top: 25px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts + .x-recent-posts {
margin-top: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a {
overflow: hidden;
float: left;
display: block;
margin: 0 4% 0 0;
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 5px 5px 0;
text-decoration: none;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
transform: translate3d(0, 0, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:last-child {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:hover .x-recent-posts-img:before {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:hover .x-recent-posts-img:after {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:hover .has-post-thumbnail .x-recent-posts-img:before {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:hover .has-post-thumbnail .x-recent-posts-img:after {
opacity: 0.85;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.no-image {
padding: 0 5px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post1 {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post2 {
width: 48%;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post2 {
width: 100%;
float: none;
margin-right: 0;
margin-bottom: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post2:last-child {
margin-bottom: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post3 {
width: 30.6666%;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post3 {
width: 100%;
float: none;
margin-right: 0;
margin-bottom: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a.x-recent-post3:last-child {
margin-bottom: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]) {
width: 22%;
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]):nth-child(4n) {
margin-right: 0;
margin-bottom: 4%;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]) {
width: 48%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]):first-child {
margin-bottom: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]):nth-child(2n) {
margin-right: 0;
margin-bottom: 4%;
}
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]) {
width: 100%;
float: none;
margin-right: 0;
margin-bottom: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts a[class^=x-recent-post]:not([class*="1"]):not([class*="2"]):not([class*="3"]):last-child {
margin-bottom: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts article.hentry {
margin: 0 !important;
border: 0 !important;
padding: 0 !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts article.hentry > .entry-wrap {
margin: 0;
border: 0;
padding: 0;
background-color: transparent;
border-radius: 0;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-img {
position: relative;
padding-bottom: 56.25%;
background: center center/cover no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-img:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-img:after {
display: block;
position: absolute;
transition: opacity 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-img:before {
margin: -30px 0 0 -30px;
top: 50%;
left: 50%;
width: 60px;
height: 60px;
font-size: 32px;
line-height: 60px;
text-align: center;
color: #ffffff;
opacity: 0.35;
z-index: 2;
font-family: "FontAwesome" !important;
font-style: normal !important;
font-weight: normal !important;
text-decoration: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-img:after {
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ff2a13;
opacity: 1;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .has-post-thumbnail .x-recent-posts-img:before {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .has-post-thumbnail .x-recent-posts-img:after {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-standard .x-recent-posts-img:before {
font-family: "FontAwesomeRegular";
content: "\f15c";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-video .x-recent-posts-img:before {
content: "\f008";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-audio .x-recent-posts-img:before {
content: "\f001";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-image .x-recent-posts-img:before {
content: "\f083";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-gallery .x-recent-posts-img:before {
content: "\f03e";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-link .x-recent-posts-img:before {
content: "\f0c1";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .format-quote .x-recent-posts-img:before {
content: "\f10d";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-portfolio .x-recent-posts-img:before {
content: "\f067";
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-content {
padding: 10px 5px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .h-recent-posts,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-date {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .h-recent-posts {
margin: 0 0 6px;
border: 0;
padding: 0;
font-size: 16px;
line-height: 1.2;
transition: color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts .x-recent-posts-date {
margin: 0;
font-size: 10px;
line-height: 1;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts.vertical a[class^=x-recent-post] {
float: none;
margin-right: 0;
width: 100% !important;
margin-bottom: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts.vertical a[class^=x-recent-post]:last-child {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-recent-posts[data-fade=true] a {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-audio.player {
height: 30px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table {
width: 100%;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.one-column .x-pricing-column {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.two-columns .x-pricing-column {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.three-columns .x-pricing-column {
width: 33.33333%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.four-columns .x-pricing-column {
width: 25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.five-columns .x-pricing-column {
width: 20%;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table[class*=-column] .x-pricing-column {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.three-columns .x-pricing-column:last-child,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table.five-columns .x-pricing-column:last-child {
width: 99.9%;
}
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-table[class*=-column] .x-pricing-column {
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column {
float: left;
margin: 0 0 -1px -1px;
text-align: center;
background-color: #ffffff;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column {
float: none;
margin-left: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column h2 {
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 20px 20px 25px;
letter-spacing: 0;
line-height: 1.1;
font-size: 32px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column h2 span {
display: block;
margin: 5px -2px 0 0;
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.35);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column.featured {
position: relative;
margin-top: -20px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column.featured {
margin-top: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column.featured h2 {
border: 0;
padding-bottom: 28px;
color: #ffffff;
background-color: #ff2a13;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column.featured .x-pricing-column-info {
padding-bottom: 50px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column.featured .x-pricing-column-info ul {
margin-bottom: 40px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info {
border: 1px solid rgba(0, 0, 0, 0.125);
border-top: 0;
padding: 15px 0 32px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info .x-price {
margin: 0 0 10px;
font-size: 54px;
letter-spacing: -3px;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info span {
display: block;
margin-top: -4px;
font-size: 12px;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info p {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info ul {
margin: 15px 0 25px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info ul > li {
margin: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
padding: 10px 40px 11px;
font-size: 16px;
line-height: 1.4;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info ul > li [class*=x-icon-] {
margin-left: 0.85em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info ul > li:first-child {
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-pricing-column-info .x-btn {
margin-left: 20px;
margin-right: 20px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout {
position: relative;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 2.35em;
font-size: 21px;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout {
font-size: 18px;
}
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout {
font-size: 16px;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout .h-callout {
position: relative;
margin: 0;
padding: 0;
font-size: 2.15em;
line-height: 1.1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout .p-callout {
position: relative;
margin: 0.5em 0 1em;
padding: 0;
line-height: 1.5;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-callout .x-btn {
font-size: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-promo {
overflow: hidden;
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 3px;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-promo .x-promo-image-wrap img {
min-width: 100%;
border-radius: 0;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-promo .x-promo-content {
padding: 1.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .h-about-the-author {
margin: 0 0 18px;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
padding: 0 0 0.5em;
font-size: 0.75em;
letter-spacing: 1px;
line-height: 1;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .avatar {
float: left;
width: 90px;
height: 90px;
border-radius: 3px;
box-shadow: none;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .avatar {
display: none;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .x-author-info {
float: right;
width: calc(100% - 110px);
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .x-author-info {
float: none;
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .h-author {
margin: 0 0 7px;
padding: 0;
font-size: 1em;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .x-author-social {
display: inline-block;
margin-right: 1em;
border: 0;
line-height: 1;
text-decoration: none;
white-space: nowrap;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .x-author-social [class*=x-social] {
position: relative;
top: 2px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-author-box .p-author {
margin-top: 7px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt {
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 1.75em;
background-color: #ffffff;
border-radius: 3px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt.message-left .x-prompt-section.x-prompt-section-message {
padding-right: 2.25em;
text-align: left;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt.message-right .x-prompt-section.x-prompt-section-message {
padding-left: 2.25em;
text-align: right;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section {
position: relative;
display: table-cell;
vertical-align: middle;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section p:last-child {
margin-bottom: 0;
padding-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section.x-prompt-section-message {
width: 46%;
font-size: 16px;
line-height: 1.5;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section.x-prompt-section-button {
width: 30%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-prompt {
margin: 0 0 0.25em;
padding: 0;
font-size: 28px;
line-height: 1.1;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt.message-left .x-prompt-section.x-prompt-section-message {
padding: 0 0 1.25em 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt.message-right .x-prompt-section.x-prompt-section-message {
padding: 1.25em 0 0 0;
text-align: left;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section.x-prompt-section-message,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-prompt-section.x-prompt-section-button {
width: 100%;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band {
margin: 0 0 1.5em;
padding: 40px 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-pattern {
background-position: 50% 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-image.parallax,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-pattern.parallax {
background-attachment: fixed;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-image {
background-size: cover;
background-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-pattern {
background-repeat: repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.bg-video {
position: relative;
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.border-top {
border-top: 1px solid rgba(0, 0, 0, 0.075);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.border-left {
border-left: 1px solid rgba(0, 0, 0, 0.075);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.border-right {
border-right: 1px solid rgba(0, 0, 0, 0.075);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.border-bottom {
border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container {
display: table;
table-layout: fixed;
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container:after {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column {
display: table-cell;
margin-right: 0;
float: none;
vertical-align: top;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-1 {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-2 {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-3 {
width: 33.33333%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-2-3 {
width: 66.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-4 {
width: 25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-3-4 {
width: 75%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-5 {
width: 20%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-2-5 {
width: 40%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-3-5 {
width: 60%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-4-5 {
width: 80%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-1-6 {
width: 16.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column.x-5-6 {
width: 83.33333%;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container:after {
display: table;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.marginless-columns .x-container > .x-column[class*=x-] {
display: block;
width: 100%;
vertical-align: inherit;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.vc .wpb_row,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band.vc .wpb_content_element {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-content-band .x-container {
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-entry-share {
margin: 0;
border: 1px solid rgba(0, 0, 0, 0.125);
border-left: 0;
border-right: 0;
padding: 25px 0;
line-height: 1;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-entry-share p {
margin: 0 0 10px;
padding: 0;
font-size: 12px;
line-height: 1;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-entry-share .x-share {
display: inline-block;
margin: 0 0.45em;
border: 0;
font-size: 24px;
line-height: 1;
text-decoration: none;
box-shadow: none;
transition: color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-entry-share .x-share:focus,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-entry-share .x-share:active {
outline: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc {
width: 210px;
margin: 0.55em 0;
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 15px;
font-size: 11px;
background-color: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.left {
margin-right: 1.75em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.right {
margin-left: 1.75em;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.left,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.right {
width: auto;
float: none;
margin: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block {
width: auto;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc ul {
margin: 0 0 -10px !important;
padding: 0 !important;
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-toc {
margin: 0 0 10px;
padding: 0;
font-size: 12px;
letter-spacing: 1px;
line-height: 1.2;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.two-columns .x-toc-item {
float: left;
width: 48%;
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.two-columns .x-toc-item:nth-child(2n) {
margin-right: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item {
float: left;
width: 30.66667%;
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item:nth-child(3n) {
margin-right: 0;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item {
width: 48%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item:nth-child(3n) {
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item:nth-child(2n) {
margin-right: 0;
}
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.two-columns .x-toc-item,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc.block.three-columns .x-toc-item {
width: 100%;
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc-item {
margin: 0 0 10px 0;
padding: 0;
font-size: 14px;
line-height: 1.3;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-toc-item a {
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
text-decoration: none;
transition: color 0.3s ease;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline {
letter-spacing: -1px;
line-height: 1.1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent {
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent span {
padding-bottom: 2px;
display: inline-block;
position: relative;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent span:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent span:after {
content: "";
position: absolute;
top: 50%;
height: 3px;
width: 9999px;
display: block;
margin-top: -2px;
border-top: 1px solid rgba(0, 0, 0, 0.125);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent span:before {
right: 100%;
margin-right: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-custom-headline.accent span:after {
left: 100%;
margin-left: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-feature-headline span {
display: inline-block;
position: relative;
padding-left: 1.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .h-feature-headline span i {
position: absolute;
top: 50%;
left: 0;
width: 2em;
height: 2em;
margin-top: -1em;
font-size: 0.65em;
letter-spacing: 0;
line-height: 2em;
text-align: center;
color: currentColor;
background-color: rgba(0, 0, 0, 0.125);
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-shortcode {
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-search-shortcode form input[type=submit] {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter {
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter .number-wrap {
font-size: 3.25em;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter .text-above,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter .text-below {
display: block;
letter-spacing: 0.125em;
line-height: 1.5;
text-transform: uppercase;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter .text-above {
margin-bottom: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-counter .text-below {
margin-top: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-typed-cursor {
-webkit-animation: x-blink 1s infinite;
animation: x-blink 1s infinite;
}
@-webkit-keyframes x-blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes x-blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section {
display: block;
position: relative;
margin: 0 0 1.5em;
padding: 45px 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section:after {
content: " ";
display: table;
width: 0px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section:after {
clear: both;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-image,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-pattern {
background-position: 50% 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-image.parallax,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-pattern.parallax {
background-attachment: fixed;
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-image.parallax,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-pattern.parallax {
background-size: auto !important;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-image {
background-size: cover;
background-repeat: no-repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-pattern {
background-repeat: repeat;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section.bg-video {
position: relative;
overflow: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container:not(.x-row):not(.x-grid):not(.x-div):not(.x-bar-content):not(.x-slide-container-content) {
position: relative;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns {
display: table;
table-layout: fixed;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns:not(.width) {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns:after {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column {
display: table-cell;
margin-right: 0;
float: none;
vertical-align: top;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-1 {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-2 {
width: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-3 {
width: 33.33333%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-2-3 {
width: 66.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-4 {
width: 25%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-3-4 {
width: 75%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-5 {
width: 20%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-2-5 {
width: 40%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-3-5 {
width: 60%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-4-5 {
width: 80%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-1-6 {
width: 16.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column.x-5-6 {
width: 83.33333%;
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns:after {
display: table;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section .x-container.marginless-columns > .x-column[class*=x-] {
display: block;
width: 100%;
vertical-align: inherit;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section-separator {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
z-index: 10;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section-separator svg {
display: block;
width: 100%;
height: 100%;
margin: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section-separator-top {
top: 0;
transform: translate(0, -100%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-section-separator-bottom {
bottom: 0;
transform: translate(0, 100%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer {
margin: 0 auto;
text-align: center;
cursor: pointer;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-card-inner {
position: relative;
min-height: 20em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-outer {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-outer.front {
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-outer.back {
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-inner {
height: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-graphic {
margin: 0 0 10px;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-title,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-text {
color: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-title {
margin: 0;
padding: 0;
font-size: 1.75em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-text {
margin: 8px 0 0;
padding: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer .x-face-button {
display: inline-block;
margin: 15px 0 0;
border: 0;
padding: 0.825em 1em;
line-height: 1;
text-decoration: none;
border-radius: 0.35em;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flipped .x-face-outer.front {
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flipped .x-face-outer.back {
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.center-vertically .x-face-inner:before {
content: "";
display: inline-block;
width: 0;
height: 100%;
margin: 0;
padding: 0;
vertical-align: middle;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.center-vertically .x-face-content {
display: inline-block;
vertical-align: middle;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d {
-webkit-perspective: 1200px;
-ms-perspective: 1200px;
perspective: 1200px;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d .x-card-inner {
-webkit-transition: -webkit-transform 1.25s cubic-bezier(0.23, 1, 0.32, 1);
transition: transform 1.25s cubic-bezier(0.23, 1, 0.32, 1);
transform-style: preserve-3d;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d .x-face-outer {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d .x-face-outer.front,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d .x-face-outer.back,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flipped .x-face-outer.front,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flipped .x-face-outer.back {
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-left .back,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-right .back {
transform: rotateY(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-left.flipped .x-card-inner {
transform: rotateY(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-right.flipped .x-card-inner {
transform: rotateY(-180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-top .back,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-bottom .back {
transform: rotateX(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-top.flipped .x-card-inner {
transform: rotateX(-180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-card-outer.flip-3d.flip-from-bottom.flipped .x-card-inner {
transform: rotateX(180deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta {
display: block;
overflow: hidden;
position: relative;
border: 0;
text-align: center;
text-decoration: none;
box-shadow: none;
transition: background-color 0.3s ease;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta > span {
display: block;
transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta > span.text {
line-height: 1.2;
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta > span.graphic {
position: absolute;
top: 50%;
left: 50%;
line-height: 1;
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta > span.graphic > i,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta > span.graphic > img {
box-shadow: none;
transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta:hover > span.text {
opacity: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta:hover > span.graphic {
opacity: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta.slide-top:hover > span.text {
transform: translate(0, -150%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta.slide-left:hover > span.text {
transform: translate(-80%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta.slide-right:hover > span.text {
transform: translate(80%, 0);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta.slide-bottom:hover > span.text {
transform: translate(0, 150%);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-creative-cta .image-overlay {
display: none !important;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box {
position: relative;
margin: 0 auto;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box.left-text,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box.right-text {
display: flex;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box.left-text .x-feature-box-content,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box.right-text .x-feature-box-content {
flex: 1 0 0%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic {
display: inline-block;
margin: 0 0 10px;
}
.x-feature-box.left-text :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic,
.x-feature-box.right-text :where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic {
margin-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic i.rounded,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic img.rounded {
border-radius: 0.15em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic i.circle,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic img.circle {
border-radius: 100em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic i {
display: block;
position: relative;
width: 1em;
height: 1em;
text-align: center;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic i:before {
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1em;
margin-top: -0.5em;
font-size: 0.395em;
line-height: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic img {
display: block;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-outer,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner {
position: relative;
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner {
width: 1em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.hexagon:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.hexagon:after {
content: "";
display: block;
border: 0 solid transparent;
border-left-width: 0.5em;
border-right-width: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.hexagon:before {
border-bottom-width: 0.285em;
border-bottom-color: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.hexagon:after {
border-top-width: 0.285em;
border-top-color: inherit;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.hexagon i {
height: 0.6em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge {
transform: scale(0.725) rotate(15deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge:before,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
border: 0.5em solid;
border-color: inherit;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge:before {
transform: rotate(30deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge:after {
transform: rotate(60deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge i {
position: relative;
z-index: 2;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-graphic-inner.badge i:before {
transform: scale(1.275) rotate(-15deg);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-connector {
display: block;
position: absolute;
width: 0;
margin: 0 auto;
z-index: 1;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-connector.full {
height: 100%;
top: 0.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-connector.upper {
height: 50%;
top: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-connector.lower {
height: 50%;
top: 50%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-title {
margin: 0;
padding: 0;
font-size: 1.5em;
line-height: 1.3;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-text {
margin: 8px 0 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-text a {
border: 0;
box-shadow: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-box-align-v-middle {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-self: stretch;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list {
margin: 0;
padding: 1px 0 !important;
list-style: none;
counter-reset: xFeatureListNum;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list li {
list-style: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box {
margin-bottom: 0;
counter-increment: xFeatureListNum;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.top-text > div {
padding: 0 0 1.5em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.top-text:last-child > div {
padding-bottom: 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.top-text:last-child .full {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.middle-text > div {
padding: 0.75em 0;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.middle-text:first-child {
margin-top: -0.75em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.middle-text:last-child {
margin-bottom: -0.75em;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.middle-text:first-child .upper,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box.middle-text:last-child .lower {
display: none;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-feature-list .x-feature-box-graphic i.number:before {
content: counter(xFeatureListNum);
font-style: normal;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .with-container {
border: 1px solid rgba(0, 0, 0, 0.125);
padding: 5px;
background-color: #ffffff;
border-radius: 3px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column {
position: relative;
z-index: 1;
float: left;
margin-right: 4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-1 {
width: 100%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-2 {
width: 48%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-3 {
width: 30.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-2-3 {
width: 65.33332%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-4 {
width: 22%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-3-4 {
width: 74%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-5 {
width: 16.8%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-2-5 {
width: 37.6%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-3-5 {
width: 58.4%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-4-5 {
width: 79.2%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-1-6 {
width: 13.33332%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-5-6 {
width: 82.66666%;
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.last,
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column:last-of-type {
margin-right: 0;
}
@media (max-width: 479.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-xs {
float: none;
width: 100%;
margin-right: 0;
}
}
@media (max-width: 766.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-sm {
float: none;
width: 100%;
margin-right: 0;
}
}
@media (max-width: 978.98px) {
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column.x-md {
float: none;
width: 100%;
margin-right: 0;
}
}
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column[data-fade="1"],
:where(#cs-header, #cs-content, #cs-footer, .x-layout, .x-root) .x-column[data-fade=true] {
transition: opacity cubic-bezier(0.23, 1, 0.32, 1), transform cubic-bezier(0.23, 1, 0.32, 1);
}