/* =Infinity Styles
-------------------------------------------------------------- */

.infinite-loader {
	color: #000;
	display: block;
	height: 28px;
	text-align: center;
}
#infinite-handle span {
	background: #333;
	border-radius: 1px;
	color: #eee;
	cursor: pointer;
	font-size: 13px;
	padding: 6px 16px;
}

/**
 * CSS Spinner Styles
 */
@keyframes spinner-inner {
	0% { opacity: 1 }
	100% { opacity: 0 }
}
.infinite-loader .spinner-inner div {
	left: 47px;
	top: 24px;
	position: absolute;
	animation: spinner-inner linear 1s infinite;
	background: #000000;
	outline: 1px solid white;
	width: 6px;
	height: 12px;
	border-radius: 3px / 6px;
	transform-origin: 3px 26px;
}
.infinite-loader .spinner-inner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -0.9166666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -0.8333333333333334s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.75s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.6666666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.5833333333333334s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.5s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.4166666666666667s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.3333333333333333s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.25s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.16666666666666666s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.08333333333333333s;
	background: #000000;
}
.infinite-loader .spinner-inner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
	background: #000000;
}
.infinite-loader .spinner {
	width: 28px;
	height: 28px;
	display: inline-block;
	overflow: hidden;
	background: none;
}
.infinite-loader .spinner-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(0.28);
	backface-visibility: hidden;
	transform-origin: 0 0; /* see note above */
}
.infinite-loader .spinner-inner div {
	box-sizing: content-box;
}

/**
 * Using a highly-specific rule to make sure that all button styles
 * will be reset
 */
#infinite-handle span button,
#infinite-handle span button:hover,
#infinite-handle span button:focus {
	display: inline;
	position: static;
	padding: 0;
	margin: 0;
	border: none;
	line-height: inherit;
	background: transparent;
	color: inherit;
	cursor: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
}

/**
 * This is used to avoid unnecessary inner button spacing in Firefox
 */
#infinite-handle span button::-moz-focus-inner {
	margin: 0;
	padding: 0;
	border: none;
}

/**
 * For smaller viewports, remove the down-arrow icon and turn
 * the button into a block element, spanning the content's full width.
 */
@media (max-width: 800px) {
	#infinite-handle span:before {
		display: none;
	}
	#infinite-handle span {
		display: block;
	}
}

/**
 * Footer
 */
#infinite-footer {
	position: fixed;
		bottom: -50px;
		left: 0;
	width: 100%;
}
#infinite-footer a {
	text-decoration: none;
}
#infinite-footer .blog-info a:hover,
#infinite-footer .blog-credits a:hover {
	color: #444;
	text-decoration: underline;
}
#infinite-footer .container {
	background: rgba( 255, 255, 255, 0.8 );
	border-color: #ccc;
	border-color: rgba( 0, 0, 0, 0.1 );
	border-style: solid;
	border-width: 1px 0 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
	padding: 1px 20px;
	width: 780px;
}
#infinite-footer .blog-info,
#infinite-footer .blog-credits {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 25px;
}
#infinite-footer .blog-info {
	float: left;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 40%;
}
#infinite-footer .blog-credits {
	font-weight: normal;
	float: right;
	width: 60%;
}
#infinite-footer .blog-info a {
	color: #111;
	font-size: 14px;
	font-weight: bold;
}
#infinite-footer .blog-credits {
	color: #888;
	font-size: 12px;
	text-align: right;
}
#infinite-footer .blog-credits a {
	color: #666;
}

/**
 * Hooks to infinity-end body class to restore footer
 */
.infinity-end.neverending #infinite-footer {
	display: none;
}

/**
 * Responsive structure for the footer
 */
@media (max-width: 640px) {
	#infinite-footer .container {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
	}
	#infinite-footer .blog-info {
		width: 30%;
	}
	#infinite-footer .blog-credits {
		width: 70%;
	}
	#infinite-footer .blog-info a,
	#infinite-footer .blog-credits {
		font-size: 10px;
	}
}

/**
 * No fixed footer on small viewports
 */
@media ( max-width: 640px ) {
	#infinite-footer {
		position: static;
	}
}

/**
 * Hide infinite aria feedback visually
 */
#infinite-aria {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height: 1px; width: 1px;
	margin: -1px; padding: 0; border: 0;
}

/**
 * Hide focus on infinite wrappers
 */
.infinite-wrap:focus {
	outline: 0 !important;
}
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-20:#005a87}#start-resizable-editor-section{display:none}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border:none;border-radius:28px;box-shadow:none;cursor:pointer;display:inline-block;font-size:18px;padding:12px 24px;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline .wp-block-button__link,.wp-block-button__link.is-style-outline{color:#32373c;background-color:transparent;border:2px solid}.wp-block-buttons .wp-block-button{display:inline-block;margin-right:8px;margin-bottom:8px}.wp-block-buttons .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:8px}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:8px}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-button.aligncenter,.wp-block-buttons.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:4px;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar tfoot a{color:#007cba;color:var(--wp-admin-theme-color)}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;margin-bottom:28px;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:20px 38px}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column{flex-basis:calc(50% - 16px)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:32px}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:32px}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;height:100%;width:100%;display:flex;justify-content:center;align-items:center;padding:16px}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim,.wp-block-cover.has-background-dim{background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:290px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:calc(100% - 70px);z-index:1;color:#fff}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover__video-background{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%;z-index:0;object-fit:cover}.wp-block-cover-image-text,.wp-block-cover-text,section.wp-block-cover-image h2{color:#fff}.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:580px;padding:14px;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type^=core-embed],.wp-block[data-align=right]>[data-type^=core-embed]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type^=core-embed] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type^=core-embed] .wp-block-embed__wrapper{min-width:280px}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 16px 16px 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:40px 10px 9px;color:#fff;text-align:center;font-size:13px;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;object-fit:cover}}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 16px)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - 10.66667px);margin-right:16px}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - 12px);margin-right:16px}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - 12.8px);margin-right:16px}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - 13.33333px);margin-right:16px}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - 13.71429px);margin-right:16px}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - 14px);margin-right:16px}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n){margin-right:0}.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n){margin-right:0}.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n){margin-right:0}.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n){margin-right:0}.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n){margin-right:0}.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n){margin-right:0}.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:290px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:20px 38px}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.is-style-circle-mask img,.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:36px;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:52px}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:left;height:40px;margin-right:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 20px 20px 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 20px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 20px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 20px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 20px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 20px)}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#6c7781;font-size:13px}.wp-block-latest-posts__post-excerpt{margin-top:8px;margin-bottom:16px}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.edit-post-visual-editor .wp-block-latest-posts.is-grid li{margin-bottom:20px}.wp-block-media-text{
  /*!rtl:begin:ignore*/direction:ltr;
  /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{
  /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1;
  /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr;
  /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1;
  /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{
  /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{
  /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media>img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media,.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}}.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color),.wp-block-navigation .wp-block-navigation-link:not(.has-text-color){color:#1e1e1e}.wp-block-navigation.is-style-light:not(.has-background) .wp-block-navigation__container,.wp-block-navigation:not(.has-background) .wp-block-navigation__container{background-color:#fff}.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color){color:#fff}.wp-block-navigation.is-style-dark:not(.has-background) .wp-block-navigation__container{background-color:#1e1e1e}.items-justified-left>ul{justify-content:flex-start}.items-justified-center>ul{justify-content:center}.items-justified-right>ul{justify-content:flex-end}.wp-block-navigation-link{display:flex;align-items:center;position:relative;margin:0}.wp-block-navigation-link .wp-block-navigation__container:empty{display:none}.wp-block-navigation__container{list-style:none;margin:0;padding-left:0;display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block}.has-child .wp-block-navigation__container{border:1px solid rgba(0,0,0,.15);background-color:inherit;color:inherit;position:absolute;left:0;top:100%;width:fit-content;z-index:1;opacity:0;transition:opacity .1s linear;visibility:hidden}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__content{flex-grow:1}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon{padding-right:8px}@media (min-width:782px){.has-child .wp-block-navigation__container{left:24px}.has-child .wp-block-navigation__container .wp-block-navigation__container{left:100%;top:-1px}.has-child .wp-block-navigation__container .wp-block-navigation__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:8px;background:transparent}.has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg{transform:rotate(0)}}.has-child:hover{cursor:pointer}.has-child:hover>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.has-child:focus-within{cursor:pointer}.has-child:focus-within>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation-link__content{text-decoration:none;padding:8px 16px}.wp-block-navigation-link__content+.wp-block-navigation-link__content{padding-top:0}.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation-link__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;word-break:normal;overflow-wrap:break-word}.wp-block-navigation-link__submenu-icon{height:inherit;padding:6px 16px}.wp-block-navigation-link__submenu-icon svg{fill:currentColor}@media (min-width:782px){.wp-block-navigation-link__submenu-icon svg{transform:rotate(90deg)}}.is-small-text{font-size:14px}.is-regular-text{font-size:16px}.is-large-text{font-size:36px}.is-larger-text{font-size:48px}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:20px 38px}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap;line-height:1.5}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:16px}.wp-block-post-author__bio{margin-bottom:8px;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:290px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:32px}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:right}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 16px)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-rss.columns-4 li{width:calc(25% - 16px)}.wp-block-rss.columns-5 li{width:calc(20% - 16px)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#6c7781;font-size:13px}.wp-block-search{display:flex;flex-wrap:wrap}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;max-width:360px}.wp-block-search .wp-block-search__button{margin-left:10px}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"\00b7 \00b7 \00b7";color:currentColor;font-size:20px;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-social-links{display:flex;justify-content:flex-start;padding-left:0;padding-right:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-social-link{display:block;width:36px;height:36px;border-radius:36px;margin-right:8px;transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{padding:6px;display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link svg{width:28px;height:28px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:16px;padding-right:16px}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}:root .editor-styles-wrapper .has-pale-pink-background-color,:root .has-pale-pink-background-color{background-color:#f78da7}:root .editor-styles-wrapper .has-vivid-red-background-color,:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .editor-styles-wrapper .has-luminous-vivid-orange-background-color,:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .editor-styles-wrapper .has-luminous-vivid-amber-background-color,:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .editor-styles-wrapper .has-light-green-cyan-background-color,:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .editor-styles-wrapper .has-vivid-green-cyan-background-color,:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .editor-styles-wrapper .has-pale-cyan-blue-background-color,:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .editor-styles-wrapper .has-vivid-cyan-blue-background-color,:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .editor-styles-wrapper .has-vivid-purple-background-color,:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .editor-styles-wrapper .has-white-background-color,:root .has-white-background-color{background-color:#fff}:root .editor-styles-wrapper .has-very-light-gray-background-color,:root .has-very-light-gray-background-color{background-color:#eee}:root .editor-styles-wrapper .has-cyan-bluish-gray-background-color,:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .editor-styles-wrapper .has-very-dark-gray-background-color,:root .has-very-dark-gray-background-color{background-color:#313131}:root .editor-styles-wrapper .has-black-background-color,:root .has-black-background-color{background-color:#000}:root .editor-styles-wrapper .has-pale-pink-color,:root .has-pale-pink-color{color:#f78da7}:root .editor-styles-wrapper .has-vivid-red-color,:root .has-vivid-red-color{color:#cf2e2e}:root .editor-styles-wrapper .has-luminous-vivid-orange-color,:root .has-luminous-vivid-orange-color{color:#ff6900}:root .editor-styles-wrapper .has-luminous-vivid-amber-color,:root .has-luminous-vivid-amber-color{color:#fcb900}:root .editor-styles-wrapper .has-light-green-cyan-color,:root .has-light-green-cyan-color{color:#7bdcb5}:root .editor-styles-wrapper .has-vivid-green-cyan-color,:root .has-vivid-green-cyan-color{color:#00d084}:root .editor-styles-wrapper .has-pale-cyan-blue-color,:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .editor-styles-wrapper .has-vivid-cyan-blue-color,:root .has-vivid-cyan-blue-color{color:#0693e3}:root .editor-styles-wrapper .has-vivid-purple-color,:root .has-vivid-purple-color{color:#9b51e0}:root .editor-styles-wrapper .has-white-color,:root .has-white-color{color:#fff}:root .editor-styles-wrapper .has-very-light-gray-color,:root .has-very-light-gray-color{color:#eee}:root .editor-styles-wrapper .has-cyan-bluish-gray-color,:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .editor-styles-wrapper .has-very-dark-gray-color,:root .has-very-dark-gray-color{color:#313131}:root .editor-styles-wrapper .has-black-color,:root .has-black-color{color:#000}:root .editor-styles-wrapper .has-vivid-cyan-blue-to-vivid-purple-gradient-background,:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background,:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .editor-styles-wrapper .has-light-green-cyan-to-vivid-green-cyan-gradient-background,:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .editor-styles-wrapper .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background,:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .editor-styles-wrapper .has-luminous-vivid-orange-to-vivid-red-gradient-background,:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .editor-styles-wrapper .has-very-light-gray-to-cyan-bluish-gray-gradient-background,:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .editor-styles-wrapper .has-cool-to-warm-spectrum-gradient-background,:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .editor-styles-wrapper .has-blush-light-purple-gradient-background,:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .editor-styles-wrapper .has-blush-bordeaux-gradient-background,:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .editor-styles-wrapper .has-purple-crush-gradient-background,:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .editor-styles-wrapper .has-luminous-dusk-gradient-background,:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .editor-styles-wrapper .has-hazy-dawn-gradient-background,:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .editor-styles-wrapper .has-pale-ocean-gradient-background,:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .editor-styles-wrapper .has-electric-grass-gradient-background,:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .editor-styles-wrapper .has-subdued-olive-gradient-background,:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .editor-styles-wrapper .has-atomic-cream-gradient-background,:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .editor-styles-wrapper .has-nightshade-gradient-background,:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .editor-styles-wrapper .has-midnight-gradient-background,:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root .editor-styles-wrapper .has-link-color a,:root .has-link-color a{color:#00e;color:var(--wp--style--color--link,#00e)}.editor-styles-wrapper .has-small-font-size,.has-small-font-size{font-size:13px}.editor-styles-wrapper .has-normal-font-size,.editor-styles-wrapper .has-regular-font-size,.has-normal-font-size,.has-regular-font-size{font-size:16px}.editor-styles-wrapper .has-medium-font-size,.has-medium-font-size{font-size:20px}.editor-styles-wrapper .has-large-font-size,.has-large-font-size{font-size:36px}.editor-styles-wrapper .has-huge-font-size,.editor-styles-wrapper .has-larger-font-size,.has-huge-font-size,.has-larger-font-size{font-size:42px}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}/**
 * Grid Block styles.
 * These styles are loaded into both the editor, and the frontend.
 */
/**
 * Padding Options
 */
/* autoprefixer grid: no-autoplace */
.wp-block-jetpack-layout-grid {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__none {
    padding-left: 0px;
    padding-right: 0px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__small {
    padding-left: 8px;
    padding-right: 8px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__medium {
    padding-left: 16px;
    padding-right: 16px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__huge {
    padding-left: 48px;
    padding-right: 48px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-gutter__nowrap {
    padding-left: 0px;
    padding-right: 0px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none {
    padding: 0px; }
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-none.has-background {
      padding: 0px 13px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column {
    padding: 8px; }
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-small .wp-block-jetpack-layout-grid-column.has-background {
      padding: 8px 21px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column {
    padding: 16px; }
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-medium .wp-block-jetpack-layout-grid-column.has-background {
      padding: 16px 29px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column {
    padding: 24px; }
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-large .wp-block-jetpack-layout-grid-column.has-background {
      padding: 24px 37px; }
  .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column {
    padding: 48px; }
    .wp-block-jetpack-layout-grid.wp-block-jetpack-layout-grid__padding-huge .wp-block-jetpack-layout-grid-column.has-background {
      padding: 48px 61px; }

/**
 * Individual Column Options
 */
.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.has-background {
  margin-left: -13px;
  margin-right: -13px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: .05px;
  padding-bottom: .05px; }

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none {
  padding: 0px; }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-none.has-background {
    padding: 0px 13px; }

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small {
  padding: 8px; }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-small.has-background {
    padding: 8px 21px; }

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium {
  padding: 16px; }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-medium.has-background {
    padding: 16px 29px; }

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large {
  padding: 24px; }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-large.has-background {
    padding: 24px 37px; }

.wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge {
  padding: 48px; }
  .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column.wp-block-jetpack-layout-grid__padding-huge.has-background {
    padding: 48px 61px; }

/**
 * Parent column alignment
 */
.wp-block-jetpack-layout-grid.are-vertically-aligned-top {
  align-items: flex-start; }

.wp-block-jetpack-layout-grid.are-vertically-aligned-center {
  align-items: center; }

.wp-block-jetpack-layout-grid.are-vertically-aligned-bottom {
  align-items: flex-end; }

/**
 * Individual column alignment
 */
.wp-block-jetpack-layout-grid-column.is-vertically-aligned-top {
  align-self: flex-start; }

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-center {
  align-self: center; }

.wp-block-jetpack-layout-grid-column.is-vertically-aligned-bottom {
  align-self: flex-end; }
/*
CSS File for Team Rosters Plugin
Theme URI: http://shoalsummitsolutions.com
Author: Mark O'Donnell
Author URI: http://shoalsummitsolutions.com
Description: Styles required for the Team Rosters Plugin.
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*---------------------------------------------------------------------------
 *	MSTW Wordpress Plugins (http://shoalsummitsolutions.com)
 *	Copyright 2014-20 Mark O'Donnell (mark@shoalsummitsolutions.com)
 *
 *	This program is free software: you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation, either version 3 of the License, or
 *	(at your option) any later version.
 *
 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *	GNU General Public License for more details.
 *
 *	You should have received a copy of the GNU General Public License
 *	along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/*-------------------------------------------------------	
 *	PLAYER PROFILE (CPT "player" single page template) 
 *------------------------------------------------------*/

/* this is a patch for the 2012 theme */ 
.nav-previous_single-player {
	margin-bottom: 12px;
	margin-bottom: 1.0rem;
	}
 
/* player-header contains player photo and information */
.player-header {
	background-color: #dce6f1; /* light blue */
	color: #000;
	width: 100%;
	/*height: 162px;*/
	float: left;
	/*font-size: 12px;
	font-size: 1.0rem;*/
	padding: 10px 0;
	}

h1.player-head-title {
	color: #000;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	margin-bottom: 1.0rem;
	}

/* player-photo is coming from the featured image */
#player-photo {
	float: left;
	padding-left: 20px;
	line-height: 0;
	}

#player-photo img {
	border: 1px solid #bbb;
	padding: 5px;
	background-color: #eee;
	width: 150px;
	height: 150px;
	}
	
div #team-logo {
	padding-left: 20px;
	padding-right: 20px;
	float: right;
	}

div#team-logo img {
	border: 1px solid #bbb;
	padding: 5px;
	background-color: #eee;
	width: 150px;
	height: 150px;
	}

#player-name-nbr {
	float: left;
	padding: 18px 0 20px 20px;
	display: inline;
	color: #000;
	}

.player-header #player-name-nbr #number {
	float: left;
	font-size: 72px;
	line-height: 1em;
	display: inline;
	}

.player-header #player-name-nbr #player-name {
	float: left;
	font-size: 24px;
	line-height: 36px;
	padding-left: 10px;
	display: inline;
	margin-right: 20px;
	}
			
#player-info {
	float: left;
	font-size: 14px;
	line-height: 16px;
	border-left: 2px solid #fff;
	}

#player-info p {
	margin-bottom: 0px;
	}

table#player-info {
	width: auto;
	font-size: 16px;
	color: #111;
	/*padding-left: 10px;*/
	/*margin-left: 20px;*/
	}

table#player-info td {
	padding-top: 2px;
	padding-bottom: 2px;
	}

table#player-info td.lf-col {
	text-align: right;
	font-weight: bold; 
	padding-left: 10px;
	}
	
table#player-info td.rt-col {
	text-align: left;
	padding-left: 6px;
	}


/* 	
 *	player-bio contains whatever is in the post content 
 *	bio, stats, etc.
 */			
.player-bio {
	clear: both;
	border-style: solid;
	border-width: 2px;
	color: #333;
	border-color: #1982d1; 	/*Twentyeleven Default - lt blue */
	}

.player-bio h1, .player-bio h2, .player-bio h3 {
	margin-bottom: 12px;
	margin-bottom: 1.0rem;
	margin-top: 6px;
	margin-top: 1.0rem;
	margin-left: 15px;
	margin-left: 1.5rem;
	font-size: 18px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #1982d1;			/*Twentyeleven Default - lt blue */
	}

.player-bio h2 {
	font-size: 15px;
	font-size: 1.25rem;
	}

.player-bio h3 {
	font-size: 13px;
	font-size: 1.0rem;
	text-transform: uppercase;
	}

.player-bio p {
	padding: 0 15px;
	padding: 0 1.5rem;
	font-size: 12px;
	font-size: 1.0rem;
	margin-bottom: 12px;
	margin-bottom: 1.0rem;
	line-height: 18px;
	line-height: 1.5em;
	}

/*-------------------------------------------------------	
 *	ROSTER TABLE
 *------------------------------------------------------*/
 
 /* 
  * This wrapper is an attempt to make the roster tables
  * more responsive on small screens. Remark it out or
  * modify it to suit your application.
  */
 .mstw-tr-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.mstw_tr_roster_title {
	color: inherit;
	font-size: 24px;
	margin-top: 24px;
	margin-bottom: 12px;
	}
	
.mstw-tr-table {
	table-layout: auto;
	}
 
.mstw-tr-table thead tr  th {
	background-color: #4e81db;		/*MS default */
	color: #fff; 					/*MS default */
	vertical-align: middle;
	padding-left: 5px;
	text-align: left;
	}

.mstw-tr-table tbody tr:nth-child(odd) {
	background-color: #dce6f1;		/*MS default */
	color: #000;					/*MS default */
	vertical-align: middle;
	}

.mstw-tr-table tbody tr:nth-child(even) {
	vertical-align: middle;
	background-color: #fff; 			/*MS default */
	color: #000; 					/*MS default */
	}
	
.mstw-tr-table tbody tr td  {
	padding-left: 5px;
	/* this is needed down this low in the stack to override twentyeleven defaults */
	border-top: #95b3d7 solid 1px;  		/* MS default */
	border-bottom: #95b3d7 solid 1px;  		/* MS default */
	vertical-align: middle;
	text-align: left;
	}

.mstw-tr-table tbody tr td a:link, .mstw-tr-table tbody tr td a:visited {	
	/* you have finer control here than you do with the admin settings */
	color: #1982d1; 		
	vertical-align: middle;
	text-decoration: none;
	}
	
.mstw-tr-table tbody tr td a:hover {	
	text-decoration: underline;
	}

.mstw-tr-table tbody tr td a:active {	
	color: #1982d1;
	}

.mstw-tr-table tbody tr td img {
	border: 1px solid #BBB;
	padding: 5px;
	background-color: #EEE;
	margin-left: 0; /*10px;*/
	/* height: 64px; removed to improve responsiveness*/
	width: 64px;
	}
 
/*-------------------------------------------------------	
 *	PLAYER GALLERY (Teams/team-slug" taxonomy page)
 *------------------------------------------------------*/
 
 #content-player-gallery {
	margin: 0 7.6% 0 7.6%;
	width: 84.8%;
	}
	
#content-player-gallery header.page-header {
	margin-bottom: 0;
	}

h1.team-head-title {
	font-size: 28px;
	color: #5899E6;
	}

.player-tile {
	float: left;
	margin: 0 15px 15px 15px;
	width: 230px;
	color: #000;
	background-color: #dce6f1;
	/*-moz-border-radius: 15px;*/
	border-radius: 15px;
	}
 
.player-tile img {
	border:           1px solid #bbb;
	padding:          5px;
	background-color: #eee;
	margin-top:       10px;
	margin-left:      10px;
	width:            125px;
	height:           125px;
	}
	
.player-info-container {
	padding-bottom: 10px;
	}
 
.player-name-number {
	font-size:   16px;
	font-weight: bold;
	color:       #000;
	}
	
 .player-name-number {
	padding: 0 0 5px 10px;
	}

.player-name, .player-number {
	display: inline;
	}
	
.player-number {
	margin-right: 10px;
	}

.player-name-number .player-name a:link, .player-name-number .player-name a:visited {
	color:           #000;
	text-decoration: underline;
	}
	
.player-name-number .player-name a:hover, .player-name-number .player-name a:active {
	text-decoration: none;
	}
 
.player-info-container table.player-info {
	padding: 0 5px 5px 10px;
	margin: 0;
	width: 100%;
	font-size: 12px;
	line-height: 16px;
	/*font-size: 1.0rem;*/
	border: 0 solid #fff;
	color: #333;
	/*line-height: 1.0rem;*/
	}

table.player-info tr td {
	border: 0 solid blue;
	padding: 0px 5px 5px 10px;
	}	
	
/*-------------------------------------------------------	
 *	Roster table sortable column header
 *------------------------------------------------------*/

.sorting-indicator {
	display        : inline-block;
	visibility     : hidden;
	width          : 10px;
	height         : 4px;
	/*margin-top   : 8px;*/
	margin-left    : 3px;
	vertical-align : middle;
}

.sorting-indicator:before {
	content: "\f142";
	font: normal 20px/1 dashicons;
	/*speak: none;*/
	display: inline-block;
	padding: 0;
	top: -4px;
	left: -8px;
	color: #fff;
	line-height: 0.5;
	position: relative;
	vertical-align: top;
	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
	text-decoration: none !important;
	color: #fff;
}

.column-comments .sorting-indicator:before {
	top: 0;
	left: -10px;
}

th.sorted.asc .sorting-indicator:before,
th.desc:hover span.sorting-indicator:before,
th.desc a:focus span.sorting-indicator:before {
	content: "\f142";
}

th.sorted.desc .sorting-indicator:before,
th.asc:hover span.sorting-indicator:before,
th.asc a:focus span.sorting-indicator:before {
	content: "\f140";
}

th.sorted .sorting-indicator,
th.desc:hover span.sorting-indicator,
th.desc a:focus span.sorting-indicator,
th.asc:hover span.sorting-indicator,
th.asc a:focus span.sorting-indicator {
	visibility: visible;
}
.vipps-recurring-icon {
    width: 70px;
}
.yith-infs-loader {
	text-align: center;
	margin: 10px 0 30px;
}
.yith-infs-loader img {
	max-width: 100%;
	display: inline-block;
}

/* Fade In */

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.yith-infs-animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}/*
Theme Name: Aquene Child
Template: aquene
*/

.site-header {
	background: rgba(255,255,255,.85);
}

div#content {
	background: #fff;
}

.featured-image-wrap {
	min-height: 32rem !important;
	height: auto;
}

.site-footer .site-info, .jetpack-social-navigation-genericons a:before {
	display: none !important;
}

.custom-background #page {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.custom-background #sticky-header {
	background: white;
}

.blog-credits, .player-bio #jp-relatedposts {
	display: none !important;
}

/* /// ARTICLES /// */

.archive-grid .hentry  {
	height: 380px !important;
	min-height: 380px !important;
}

.featured-image-wrap {
	height: auto !important;
}

.single .site-main .hentry.has-post-thumbnail .entry-header, .page .site-main .hentry.has-post-thumbnail .entry-header {
	margin-top: -20px !important;
}

.hentry .entry-cats a, #sticky-header .progress-bar {
	background: #225497 !important;
}

.th-highlighted-summary::after {
	color: #225497 !important;
}

/* /// ROSTER /// */

/* Galleri */

h1.team-head-title {
	color: #000;
	margin: 15px;
}

.player-tile {
	background-color: #eee;
	border-radius: 0;
	width: 275px;
}

.player-tile img {
	border: 0;
	padding: 0;
	background-color: #fff;
	margin-top: 0;
	margin-left: 0;
}

.player-name-number {
	background: #ddd;
}

.player-name-number .player-name a:link, .player-name-number .player-name a:visited {
	color: #000;
	text-decoration: none;
}

/* Spillerside */

.single-mstw_tr_player #nav-single,
.single-mstw_tr_player .player-head-title,
div.player-bio h1:first-child,
.player-info_legender tr:nth-child(2),
.player-header_legender tr:nth-child(2),
.player-info_a-laget tr:nth-child(3),
.player-info_a-laget tr:nth-child(4),
.player-header_a-laget #player-info tr:nth-child(3),
.player-header_a-laget #player-info tr:nth-child(4),
.player-info_femenino tr:nth-child(3),
.player-info_femenino tr:nth-child(4),
.player-header_femenino #player-info tr:nth-child(3),
.player-header_femenino #player-info tr:nth-child(4),
.player-name-number_legender .player-number,
.player-header_legender #player-name-nbr #number {
	display: none !important;
}

.mstw_tr_team-legender #player-name br {
	content:' ';
}

.mstw_tr_team-legender #player-name br:after {
	content:' ';
}

.mstw_tr_player .player-header {
	background: #fff url(/wp-content/themes/aquene-child/img/rm-dressing-room.png) no-repeat;
	background-position: right top;
	padding: 0;
	position: relative;
}

.mstw_tr_player .player-header_legender {
	background: #fff url(/wp-content/themes/aquene-child/img/rm-dressing-room-legends.png) no-repeat;
	background-position: right top;
}

.mstw_tr_player #player-photo img {
	width: 275px;
	height: 325px;
	border: 0;
	padding: 0;
	background: transparent;
}

.player-header #player-name-nbr #number,
.player-header #player-name-nbr #player-name {
	display: inline-block;
	float: none;
}

.player-header .table-responsive {
	margin-top: 20px;
}

.mstw_tr_player .player-bio {
	border-width: 0;
}

.mstw_tr_player .player-bio h1 {
	background: #ddd;
	padding: 0.5rem 1.5rem;
	color: #000;
	margin-left: 0;
}

.mstw_tr_player .player-header #player-name-nbr {
	position: absolute;
	bottom: 0px;
	padding-bottom: 0;
}

.mstw_tr_player .player-header #player-name-nbr #player-info {
	margin: 0;
	margin-bottom: 10px;
}

.player-bio .slideshow-window {
	border-radius: 0;
}

.player-bio .slideshow-window .slideshow-slide-caption {
	background: #222;
	padding: 5px 0;
	bottom: -5px;
}

/* /// CASTILLA /// */

.player-tile_castilla .player-photo,
.player-tile_castilla .player-name a {
	pointer-events: none;
}

/* /// PRESIDENTER /// */

.president-container {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	background: #f1f1f1;
}

.president-img-container {
	float: left;
	display: inline-block;
}

.president-details-container {
	display: inline-block;
	padding-left: 15px;
}

.president-details-container p {
	margin: 0;
}

.president-details-container ul {
	list-style-type: none;
	margin: 0;
	font-size: 1rem;
}

.president-merits-left {
	float: left;
	margin-right: 30px;
}

.president-merits-right {
	float: left;
}

/* /// TRENERE /// */

.manager-container {
	width: 100%;
	clear: both;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	background: #f1f1f1;
}

.manager-img-container {
	float: left;
	display: inline-block;
}

.manager-details-container {
	display: inline-block;
	padding-left: 15px;
}

.manager-details-container p {
	margin: 0;
}

.manager-details-container ul {
	list-style-type: none;
	margin: 0;
	font-size: 0.9rem;
}

.manager-merits-left {
	float: left;
	margin-right: 30px;
}

.manager-merits-right {
	float: left;
}

/* /// SIDEBAR /// */

aside#secondary.sidebar-area {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	border: 0;
}

aside#secondary.sidebar-area #league-table-header {
	background: #225497;
	padding: 10px;
}

aside#secondary.sidebar-area #league-table-header > h2 {
	font-size: 1.1rem;
	color: white;
	margin-right: 10px;
}

aside#secondary.sidebar-area #league-table-header > span.header-subtitle, aside#secondary.sidebar-area #league-table-header > span.header-subtitle > a {
	color: white;
	font-size: 0.8rem;
}

aside#secondary.sidebar-area #league-table-header > span.header-subtitle > a:hover {
	text-decoration: underline;
}

#content .sidebar-area > * + * {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

#next_match {
	background: #225497;
	color: white;
	padding: 35px;
}

table.league_table thead {
	background: #225497;
	color: white;
	font-weight: bold;
}

table thead tr td {
	border-top: 0;
}

table.league_table tbody tr {
	transition: all linear 200ms;
}

table.league_table tbody tr:hover {
	background: #225497;
	color: white;
}

img.league_table_logo {
	display: inline-block;
	margin-right: 5px;
}

/* /// MINI LIGA /// */

#mini-league-container {
	max-height: 516px;
	max-width: 200px;
	overflow: hidden;
}

/* /// AD BANNER /// */

#ad_banner_outer_container {
	width: 100%;
	background: url(/wp-content/themes/aquene-child/img/ad-banner-bg.jpg);
	background-size: cover;
	margin-bottom: 50px;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#ad_banner_container {
	color: #000;
	padding: 10px 0;
	height: 60px;
	margin: 0 auto;
	max-width: 1440px;
	width: 100%;
}

#ad_banner_container #ad_banner_title {
	float: left;
	margin: 5px 0 0 0;
}

#ad_banner_container #ad_banner_title h3 {
	color: #000;
	font-size: 1.2rem;
}

#ad_banner_btn {
	float: right;
	margin: 5px 0 0 0;
}

#ad_banner_btn a {
	background: #FFF;
	color: #00529F;
	padding: 5px 25px;
	border: 1px solid #00529F;
	font-size: 1rem;
	border-radius: 5px;
	transition: all 200ms linear;
}

#ad_banner_btn a:hover {
	background: #00529F;
	color: #fff;
}

/* /// TERMINLISTE /// */

.schedule_table tbody tr td {
	font-size: 1rem;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

/* /// LIGATABELL /// */

img.league_table_logo {
	display:none;
}

.full_table .table_name img,
.full_table .table_wins,
.full_table .table_draws,
.full_table .table_losses,
.full_table .table_goal_scored,
.full_table .table_goal_against,
.full_table .table_goal_diff {
	display: none !important;
}


td#col_won, td#col_draw, td#col_lost,
td#table_won, td#table_draw, td#table_lost {
	display:none;
}

#ad_banner_outer_container {
	background: #fff;
}

#ad_banner_container {
	height: 120px;
}

#ad_banner_container #ad_banner_title {
	text-align: center;
	float: none;
	margin: 0;
}

#ad_banner_btn {
	float: none;
	margin: 10px 0 0 0;
	text-align: center;
}

.featured-image-wrap {
	min-height: auto !important;
}

/* /// ROSTER /// */

.mstw_tr_player .player-header {
	background: #fff url(/wp-content/themes/aquene-child/img/rm-dressing-room-mobile.jpg) no-repeat;
}

.mstw_tr_player .player-header #player-name-nbr {
	position: relative;
	padding-bottom: 20px;
	background: white;
	width: 100%;
}

/* /// PRESIDENTER /// */

.president-container {
	display: block;
}

.president-img-container, .president-img-container img {
	width: 100%;
}

.president-details-container {
	padding: 15px;
}

.president-merits-left, .president-merits-right {
	float: none;
	margin: 0;
}

/* /// TRENERE /// */

.manager-container {
	display: block;
}

.manager-img-container, .manager-img-container img {
	width: 100%;
}

.manager-details-container {
	padding: 15px;
}

.manager-merits-left, .manager-merits-right {
	float: none;
	margin: 0;
}

} /* MOBILE SCREEN */.featured-content .posted-on{
  display:none;
}

.featured-content .primary-section .thumb-link,
.featured-content .featured-image{
  bottom:0;
  left:0;
  position:absolute;
  right:0;
  top:0;
}

.featured-content .featured-image,
.featured-content .secondary-section .hentry:hover .thumb-link{
  opacity:0.85;
}

.featured-content .hentry:hover .featured-image{
  -webkit-box-shadow:#000 0em 0em 0em;
  box-shadow:#000 0em 0em 0em;
  opacity:1;
}

.featured-content .primary-section .hentry{
  -webkit-box-shadow:0 0 2px #ffffff;
  box-shadow:0 0 2px #ffffff;
  position:relative;
}

.featured-content .primary-section .hentry{
  min-height:280px;
}

.featured-content .primary-section .hentry:first-child{
  margin-bottom:2px;
  min-height:400px;
}

.featured-content .primary-section .hentry.has-post-thumbnail{
  background:#000000;
}

.featured-content .secondary-section a,
.featured-content .primary-section .byline a{
  color:inherit;
  text-decoration:none;
}

.featured-content .primary-section .entry-cats a,
.featured-content .primary-section .entry-title,
.featured-content .primary-section .entry-footer{
  position:relative;
  z-index:1;
}

.featured-content .primary-section .entry-title{
  color:#ffffff;
  line-height:1.6;
  margin:1px 0;
  max-width:35rem;
}

.featured-content .primary-section .entry-title,
.featured-content .primary-section .entry-footer{
  padding:0 7px;
}

.featured-content .primary-section .entry-title a,
.featured-content .primary-section .byline{
  -webkit-box-decoration-break:clone;
  -webkit-box-shadow:7px 0 0 rgba(0,0,0,0.85), -7px 0 0 rgba(0,0,0,0.85);
  background-color:rgba(0,0,0,0.85);
  box-decoration-break:clone;
  box-shadow:7px 0 0 rgba(0,0,0,0.85), -7px 0 0 rgba(0,0,0,0.85);
  padding-bottom:3px;
  padding-top:3px;
}

.featured-content .primary-section .byline{
  display:inline-block;
}

.featured-content .primary-section .entry-footer{
  color:#c9c9c9;
}

.featured-content .secondary-section .entry-header{
  min-width:0%;
}

.featured-content .secondary-section .entry-footer{
  color:var(--color-secondary-base);
}

.featured-content .secondary-section .thumb-link{
  line-height:0;
}

.active-sidebar.blog .site-content,
.active-sidebar.archive .site-content,
.active-sidebar.search:not(.search-no-results) .site-content{
  background:var(--color-secondary-lightest);
}

.archive-grid,
.archive-grid .hentry,
.archive-grid .hentry .entry-cats{
  position:relative;
}

.archive-grid .hentry{
  height:auto;
  min-height:460px;
  overflow:hidden;
  padding-bottom:80px;
}

.archive-grid .hentry:hover .featured-image{
  opacity:0.75;
}

.archive-grid .hentry .thumb-link{
  background-color:var(--color-secondary-lightest);
  height:225px;
  margin:0 -1rem 0;
}

.archive-grid .hentry .entry-cats{
  margin-top:-23px;
  z-index:1;
}

.archive-grid .hentry .entry-title{
  margin-top:1.5rem;
}

.archive-grid .hentry .entry-footer{
  background:-webkit-gradient(linear,  left top, left bottom,  from(rgba(255,255,255,0)),color-stop(30%, rgba(255,255,255,1)),to(rgba(255,255,255,1)));
  background:linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,1) 100%);
  bottom:0;
  color:var(--color-secondary-base);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  left:0;
  position:absolute;
}

.archive-grid .hentry .entry-footer a{
  color:inherit;
  text-decoration:none;
}

.archive-grid .hentry:hover .entry-footer .more-link{
  color:var(--color-primary-dark);
}

.archive-grid .hentry .entry-footer .more-link{
  border:1px solid;
  border-radius:50%;
  height:25px;
  width:25px;
}

.more-link .svg-icon{
  height:16px;
  margin:0 auto;
  width:16px;
}

.archive-grid .hentry .entry-footer .posted-on{
  font-size:0.79rem;
  line-height:1.15;
}

.archive-grid .sticky{
  background:#f2e7b7;
}

.archive-grid .sticky .entry-footer{
  background:-webkit-gradient(linear,  left top, left bottom,  from(rgba(255,255,255,0)),color-stop(99%, rgba(242,231,184,1)),to(rgba(242,231,183,1)));
  background:linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(242,231,184,1) 99%,rgba(242,231,183,1) 100%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f2e7b7',GradientType=0 );
}

.archive-grid .sticky:not(.has-post-thumbnail) .thumb-link{
  background:#dcd3a9;
}

.archive-grid .hentry .entry-footer .posted-on,
#featured-content .hentry .entry-footer .posted-on{
  font-style:italic;
  padding-left:15px;
}

.author-hidden .archive-grid .hentry .entry-footer .posted-on,
.author-hidden #featured-content .hentry .entry-footer .posted-on{
  padding-left:0;
}

.archive-grid .hentry .entry-title a,
#featured-content .secondary-section .entry-title a{
  border-bottom:1px solid transparent;
}

.archive-grid .hentry:hover .entry-title a,
#featured-content .secondary-section .hentry:hover .entry-title a{
  border-bottom-color:inherit;
}

@media (min-width: 500px){
  .featured-content .primary-section .hentry:first-child .entry-title{
    font-size:2.25rem;
    line-height:1.47;
  }
  .archive-grid .hentry .thumb-link{
    margin:0 -2rem 0;
  }
}

@media (min-width: 768px){
  .archive-grid .hentry{
    border-right:1px solid var(--color-secondary-lighter);
    height:480px;
    width:50%;
  }
  .archive-grid .hentry:nth-of-type(2n){
    border-right:none;
  }
}

@media (min-width: 992px){
  .featured-content .hentry{
    width:33.33333%;
  }
  .featured-content .primary-section .hentry:first-child{
    width:66.66666%;
  }
  .featured-content .primary-section .hentry,
	.featured-content .primary-section .hentry:first-child{
    min-height:490px;
  }
  .featured-content .primary-section .hentry:first-child{
    margin-bottom:0;
  }
  .hfeed.active-sidebar:not(.left-sidebar) .site-main{
    border-right:1px solid var(--color-secondary-lighter);
  }
  .hfeed.active-sidebar.left-sidebar .site-main{
    border-left:1px solid var(--color-secondary-lighter);
  }
  .archive-grid .hentry{
    width:33.3333333%;
  }
  .archive-grid .hentry:nth-of-type(2n){
    border-right:1px solid var(--color-secondary-lighter);
  }
  .archive-grid .hentry:nth-of-type(3n){
    border-right:none;
  }
}
#wpstats,
#botd,
#botd2{
  display:none;
}

.infinite-scroll .posts-navigation,

.infinite-scroll.neverending .site-footer{
  display:none;
}

.infinity-end.neverending .site-footer,
#infinite-handle span{
  display:block;
}

#infinite-handle{
  clear:both;
  width:100%;
}

#infinite-handle,
.infinite-loader{
  text-align:center;
}

#page #infinite-handle span{
  background:var(--color-secondary-lighter);
  border-radius:0;
  font-weight:900;
  padding:11px 30px;
}

#page #infinite-handle button{
  color:#757575;
  text-transform:uppercase;
}

#page #infinite-handle button:hover{
  color:#000000;
}

.infinite-loader{
  bottom:0;
  padding:21px 30px;
  position:absolute;
  width:100%;
}

.infinite-loader .spinner{
  left:50% !important;
  top:0 !important;
}

#infinite-footer{
  z-index:99;
}

#infinite-footer .container{
  background:#ffffff;
  padding:7px 30px;
  text-transform:uppercase;
}

#infinite-footer #infinity-blog-title{
  font-size:16px;
  font-size:1rem;
  font-weight:900;
}

#infinite-footer .blog-credits{
  font-size:10px;
  font-size:0.625rem;
}

#page div.sharedaddy{
  margin-top:35px;
}

#page div.sharedaddy h3.sd-title,
#page #jp-relatedposts h3.jp-relatedposts-headline em{
  font-weight:900;
  text-transform:uppercase;
}

#page div.sharedaddy h3.sd-title,
#page #jp-relatedposts h3.jp-relatedposts-headline{
  margin-bottom:20px;
}

#page #jp-relatedposts h3.jp-relatedposts-headline em:before{
  display:none;
}

#page div.sharedaddy h3.sd-title:before{
  border:none;
  margin:0;
}

#page .sd-social .sd-content ul{
  margin:0 !important;
}

#page .sd-social-icon .sd-content ul li[class*='share-'] a{
  padding:18px;
  text-shadow:2px 2px rgba(0,0,0,0.05), 3px 3px rgba(0,0,0,0.05), 4px 4px rgba(0,0,0,0.05);
}

#page .sd-content ul li a.sd-button:before{
  font-size:18px;
  font-size:1.125rem;
}

#page .sd-content ul li{
  margin:6px 6px 0 0;
}

.pd-rating{
  line-height:1;
}

.pd-rating .rating-msg{
  font-size:16px !important;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list h4.jp-relatedposts-post-title,
#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-grid h4.jp-relatedposts-post-title,
#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list .jp-relatedposts-post .jp-relatedposts-post-date,
#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-grid .jp-relatedposts-post .jp-relatedposts-post-date{
  margin-top:10px;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-grid h4.jp-relatedposts-post-title,
#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list h4.jp-relatedposts-post-title{
  line-height:1.3;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-grid h4.jp-relatedposts-post-title{
  font-size:16px;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list h4.jp-relatedposts-post-title{
  font-size:18px;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-grid .jp-relatedposts-post-title a,
#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list .jp-relatedposts-post-title a{
  color:inherit;
  font-weight:900;
}

#page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list .jp-relatedposts-post .jp-relatedposts-post-date,
#page #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{
  font-weight:bold;
}

#page #jp-relatedposts,
#page #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:last-child{
  margin-bottom:0;
}

#page #jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post{
  -moz-opacity:1;
  filter:alpha(opacity=100);
  opacity:1;
}

#page #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img{
  margin-bottom:10px;
}

#page .jetpack-recipe{
  -webkit-box-shadow:0 0 20px rgba(0,0,0,0.03);
  border-color:var(--color-secondary-lighter);
  box-shadow:0 0 20px rgba(0,0,0,0.03);
  margin:0 0 35px;
  padding:1% 6%;
}

#page .jetpack-recipe .jetpack-recipe-meta{
  color:var(--color-secondary-base);
}

#page .jetpack-recipe-title{
  padding-bottom:10px;
}

#respond.js .comment-reply-title span{
  display:inline-block;
}

#respond.js .comment-reply-title{
  margin-bottom:1rem;
}

.akismet_comment_form_privacy_notice{
  font-size:0.889rem;
}

.wp-block-jetpack-subscriptions{
  margin-bottom:2rem;
}

.wp-block-group.has-background > .wp-block-group__inner-container > .wp-block-jetpack-layout-grid.alignfull{
  margin-left:auto;
  margin-right:auto;
  width:100%;
}

.wp-block-jetpack-tiled-gallery.alignfull{
  padding:4px;
}

.wp-block-jetpack-contact-info{
  margin-bottom:2rem;
}

.wp-block-jetpack-contact-info a{
  line-height:1.45;
}

.wp-block-jetpack-contact-info > * + *{
  margin-top:0.25rem;
}

.wp-block-jetpack-mailchimp input[type="email"]{
  width:100%;
}

.wp-block-jetpack-mailchimp form > :last-child{
  margin-bottom:0;
}

.wpnbha,
.th-content .wpnbha{
  margin-bottom:2rem;
}

.wpnbha:not(.is-grid) > div > * + *{
  border-top:1px solid var(--color-secondary-lighter);
  margin-top:2rem;
  padding-top:2rem;
}

.wpnbha article .entry-wrapper > * + *{
  margin-top:1.3em;
}

.wpnbha .entry-wrapper > .entry-title + *{
  margin-top:1em;
}

.wpnbha .entry-meta a,
.wpnbha .cat-links a{
  -webkit-box-shadow:none;
  border-bottom:none;
  box-shadow:none;
  font-weight:bold;
  text-decoration:none;
}

.wpnbha .entry-wrapper .cat-links + .entry-title{
  margin-top:0;
}

@media only screen and (max-width: 640px){
  #page #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{
    padding-right:0;
    width:100%;
  }
  #page #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,
	#page #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{
    margin-right:0;
    max-width:100%;
  }
  #page #jp-relatedposts .jp-relatedposts-items-visual.jp-relatedposts-list h4.jp-relatedposts-post-title{
    font-size:inherit;
  }
  #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{
    float:none;
  }
}table.shop_attributes tr:nth-child(even) td,

table.shop_attributes tr:nth-child(even) th{
  background-color:var(--color-secondary-lightest);
}

table.shop_attributes th{
  border-right:1px solid var(--color-secondary-lighter);
  width:180px;
}

table.shop_attributes td p{
  margin:0;
}

a.button,
a.button:visited,
#secondary a.button,
a.added_to_cart{
  display:inline-block;
  line-height:1.45;
  padding:0.85em 1.25em;
}

table.woocommerce-cart-form__contents tbody > tr:first-of-type > *{
  border-top:1px solid var(--color-secondary-lighter);
}

table.cart .product-remove a{
  -webkit-box-shadow:none;
  border:0;
  border-radius:100%;
  box-shadow:none;
  color:var(--color-red);
  display:block;
  font-size:1.5em;
  font-weight:700;
  height:1em;
  line-height:.9;
  margin:0 auto;
  text-align:center;
  text-decoration:none;
  width:1em;
}

table.cart .product-remove a:hover{
  background:var(--color-red);
  color:var(--color-white);
}

table.cart .product-thumbnail{
  min-width:60px;
}

table.cart .product-thumbnail img{
  display:inline-block;
}

table.cart .product-price{
  color:var(--color-secondary-base);
}

table.cart .product-subtotal{
  font-weight:bold;
}

table.cart .actions{
  text-align:left;
}

table.cart .actions > * + *,
table.cart .coupon > * + *{
  margin-top:1rem;
}

table.cart .coupon{
  display:block;
  width:100%;
}

table.cart .coupon label{
  display:none;
}

table.cart .coupon input,
table.cart .coupon button,
table.cart .actions > button[type="submit"]{
  width:100%;
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
table.cart .product-thumbnail img.woocommerce-checkout table.cart th{
  vertical-align:middle;
}

.demo_store{
  -ms-flex-align:center;
  -ms-flex-pack:justify;
  -webkit-box-align:center;
  -webkit-box-pack:justify;
  -webkit-box-shadow:0 0 8px 0 rgba(0,0,0,0.25);
  align-items:center;
  bottom:1rem;
  box-shadow:0 0 8px 0 rgba(0,0,0,0.25);
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  justify-content:space-between;
  left:1rem;
  margin:0;
  padding:0.8em 1.2em;
  position:fixed;
  right:1rem;
  z-index:9999;
}

.demo_store a{
  color:rgba(255, 255, 255, 0.75);
  font-weight:bold;
}

.demo_store a:not(.woocommerce-store-notice__dismiss-link){
  text-decoration:underline;
}

.demo_store a:hover{
  color:inherit;
  text-decoration:none;
}

.demo_store .woocommerce-store-notice__dismiss-link{
  border:1px solid;
  margin-left:2rem;
  padding:0.4em 0.8em;
}

.form-row.woocommerce-validated input.input-text{
  -webkit-box-shadow:0 0 0 2px #8fae1b;
  box-shadow:0 0 0 2px #8fae1b;
}

.form-row.woocommerce-invalid input.input-text{
  -webkit-box-shadow:0 0 0 2px red;
  box-shadow:0 0 0 2px red;
}

.required{
  color:red;
  text-decoration:none;
}

.required[title]{
  border-bottom:none;
}

.woocommerce-page .quantity .qty{
  padding:1rem;
  text-align:center;
  width:4.631em;
}

#ship-to-different-address{
  color:inherit;
  font-size:inherit;
  font-weight:normal;
}

#ship-to-different-address input{
  margin-right:0.25rem;
}

.woocommerce .select2 .select2-selection--single{
  border:1px solid var(--color-secondary-lighter);
}

.woocommerce .select2:not(.select2-container--open) .select2-selection__rendered{
  -webkit-box-shadow:inset 0 0 4px 1px var(--color-white);
  box-shadow:inset 0 0 4px 1px var(--color-white);
}

.woocommerce .select2-container--open .select2-selection--single .select2-selection__rendered{
  background-color:var(--color-secondary-lightest);
  color:var(--color-secondary-base);
  height:48px;
  line-height:48px;
  padding:0 1.5rem;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{
  margin-top:-13px;
  right:1rem;
  top:50%;
}

.woocommerce .select2-container--default:not(.select2-container--open) .select2-selection--single .select2-selection__arrow b{
  border-width:8px 6px 0 6px;
  margin-left:-6px;
  margin-top:-2px;
}

.woocommerce .select2-results__option{
  padding-left:1rem;
  padding-right:1rem;
}

.woocommerce .select2-search--dropdown{
  margin:1rem;
}

.form-row label{
  display:inline-block;
  margin-bottom:5px;
}

#page .widget_rating_filter ul li,
#page .widget_layered_nav_filters ul li.chosen,
#page .widget.woocommerce .product_list_widget:not(.cart_list) li,
#page .widget_rating_filter ul li{
  padding-left:0;
  padding-right:0;
}

.widget_layered_nav_filters ul li.chosen::before,
.widget.woocommerce .product_list_widget li::before,
.widget_rating_filter ul li::before{
  content:"";
  display:none;
}

.entry-summary .stock{
  background-color:#FFC186;
  border-radius:1px;
  display:inline-block;
  font-size:0.889rem;
  font-weight:bold;
  padding:0.75em 1em;
}

.entry-summary .stock + form{
  margin-top:2.5rem;
}

.entry-summary .out-of-stock{
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
  background-color:var(--color-secondary-lightest);
  border-left:8px solid 	var(--color-accent-base);
  border-radius:1px;
  clear:both;
  color:var(--color-secondary-base);
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  margin-bottom:3rem;
  margin-left:0;
  padding:1em 1.25em;
  position:relative;
  width:100%;
}

ul.woocommerce-message,
ul.woocommerce-info,
ul.woocommerce-error{
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  padding-left:3rem;
}

ul.woocommerce-message > *,
ul.woocommerce-info > *,
ul.woocommerce-error > *{
  width:100%;
}

ul.woocommerce-message > * + *,
ul.woocommerce-info > * + *,
ul.woocommerce-error > * + *{
  border-top:2px dotted rgba(0,0,0,0.1);
  margin-top:0.75rem;
  padding-top:0.75rem;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-noreviews .button,
p.no-comments .button{
  -ms-flex-order:1;
  -webkit-box-ordinal-group:2;
  background-color:var(--color-secondary-base);
  display:inline-block;
  font-size:0.889rem;
  line-height:inherit;
  line-height:1.25;
  margin-left:auto;
  order:1;
  text-decoration:none;
}

.woocommerce-error{
  background-color:#fde2e5;
  border-left-color:#EA7D84;
  color:#552F25;
}

.woocommerce-page .content-area input[type="text"],
.woocommerce-page .content-area input[type="email"],
.woocommerce-page .content-area input[type="url"],
.woocommerce-page .content-area input[type="password"],
.woocommerce-page .content-area input[type="search"],
.woocommerce-page .content-area input[type="tel"],
.woocommerce-page .content-area textarea,
.woocommerce-product-search input[type="search"]{
  display:block;
}

.woocommerce-address-fields input[type="text"],
.woocommerce-address-fields input[type="email"],
.woocommerce-address-fields input[type="url"],
.woocommerce-address-fields input[type="password"],
.woocommerce-address-fields input[type="search"],
.woocommerce-address-fields input[type="tel"],
.woocommerce-address-fields textarea,
.woocommerce-billing-fields input[type="text"],
.woocommerce-billing-fields input[type="email"],
.woocommerce-billing-fields input[type="url"],
.woocommerce-billing-fields input[type="password"],
.woocommerce-billing-fields input[type="search"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields input[type="text"],
.woocommerce-shipping-fields input[type="email"],
.woocommerce-shipping-fields input[type="url"],
.woocommerce-shipping-fields input[type="password"],
.woocommerce-shipping-fields input[type="search"],
.woocommerce-shipping-fields input[type="tel"],
.woocommerce-shipping-fields textarea,
.woocommerce-page .content-area textarea,

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea{
  width:100%;
}

.onsale,
.wc-block-grid__product-onsale{
  background-color:var(--color-red);
  color:#ffffff;
  font-size:0.889rem;
  font-weight:bold;
  height:35px;
  left:0;
  line-height:35px;
  padding:0 1em;
  position:absolute;
  text-align:center;
  top:0;
}

.single-product .product > .onsale{
  display:none;
}

.wc-block-grid .wc-block-grid__product .wc-block-grid__product-onsale{
  margin-top:0;
}

.wc-block-grid__product .wc-block-grid__product-onsale{
  left:1rem;
  width:auto;
}

.wc-block-grid__product .wc-block-grid__product-onsale--alignright{
  left:auto;
  right:1rem;
}

.wc-block-grid__product .wc-block-grid__product-onsale--alignleft{
  left:1rem;
}

.wc-block-grid__product .wc-block-grid__product-onsale--aligncenter{
  -webkit-transform:translate(-50%,0);
  left:50%;
  transform:translate(-50%,0);
}

ul.wc_payment_methods{
  list-style:none;
  margin-bottom:0;
  margin-left:0;
}

.wc_payment_methods > li + li{
  border-top:4px solid var(--color-secondary-lightest);
  margin-top:1.5rem;
  padding-top:1.5rem;
}

.wc_payment_methods .payment_box{
  background-color:var(--color-secondary-lightest);
  border-radius:1px;
  color:var(--color-secondary-base);
  margin:1rem 0;
  padding:1rem;
  position:relative;
  width:100%;
}

.wc_payment_methods .payment_box::before{
  border:1em solid var(--color-secondary-lightest);
  border-left-color:transparent;
  border-right-color:transparent;
  border-top-color:transparent;
  content:'';
  display:block;
  left:0;
  margin:-1em 0 0 2em;
  position:absolute;
  top:-.75em;
}

ul.payment_methods li img{
  -webkit-box-shadow:none;
  box-shadow:none;
  display:inline-block;
  margin:0 0 0 1rem;
  max-height:64px;
  vertical-align:middle;
}

ul.payment_methods .about_paypal{
  font-size:0.889rem;
  margin-left:1rem;
}

ul.payment_methods li input{
  margin:0 0.25em 0 0;
}

.wc_payment_methods .payment_box > :last-child,
.wc_payment_methods .woocommerce-notice{
  margin-bottom:0;
}

.product .price,
.wc-block-grid__product-price{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  font-size:1rem;
  line-height:1.25;
}

.product .price > *,
.wc-block-grid__product-price .wc-block-grid__product-price__value,
.wc-block-grid__product-price .wc-block-grid__product-price__regular{
  font-size:inherit;
  line-height:inherit;
}

.product .price,
.product .price del,
.wc-block-grid__product-price,
.wc-block-grid__product-price .wc-block-grid__product-price__value,
.wc-block-grid__product-price .wc-block-grid__product-price__regular{
  color:var(--color-secondary-base);
}

.product .price ins,
.wc-block-grid__product-price ins,
.wc-block-grid__product-price__regular + .wc-block-grid__product-price__value{
  color:var(--color-red);
  font-weight:bold;
  margin-left:0.25rem;
}

.product .price ins,
.wc-block-grid__product-price ins{
  background-color:transparent;
  padding:0;
}

.wc-block-grid__product-price .wc-block-grid__product-price__value,
.wc-block-grid__product-price .wc-block-grid__product-price__regular{
  font-weight:normal;
}

.wc-block-grid__product-price .wc-block-grid__product-price__regular{
  margin-top:0;
}

.wc-block-grid__products,
ul.products{
  -ms-flex-wrap:wrap;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
  list-style:none;
  margin:0 -1rem 0;
  padding-left:0;
}

.wc-block-grid__product,
ul.products li.product{
  -ms-flex-direction:column;
  -ms-flex-wrap:wrap;
  -webkit-box-direction:normal;
  -webkit-box-orient:vertical;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-direction:column;
  flex-wrap:wrap;
  margin-top:2rem;
  padding:0 1rem;
  position:relative;
  width:100%;
}

.wc-block-grid__product > *{
  margin-bottom:0;
  width:100%;
}

.wc-block-grid__product > * + *,
ul.products > * + *{
  margin-top:0.5rem;
}

.related.products > * + *,
.upsells.products > * + *{
  margin-top:2rem;
}

.wc-block-grid .wc-block-grid__product-image + *:not(.wp-block-button),
ul.products li.product .woocommerce-LoopProduct-link img + *{
  margin-top:0.75rem;
}

.wc-block-grid__product-image:hover,
ul.products li.product .woocommerce-LoopProduct-link img:hover{
  opacity:0.65;
}

.wc-block-grid__product-image img,
ul.products li.product .woocommerce-LoopProduct-link img{
  border-radius:1px;
}

ul.products li.product .woocommerce-loop-product__link > * + *,
.wc-block-grid .wc-block-grid__product > * + *{
  margin-top:0.5rem;
}

.woocommerce-loop-product__title,
.woocommerce-loop-category__title,
.wc-block-grid__product-title{
  font-family:var(--font-headings);
  font-size:1.125rem;
  margin-top:1.25rem;
}

.woocommerce-loop-product__title:hover,
.woocommerce-loop-category__title:hover,
.wc-block-grid__product-title:hover{
  color:var(--color-secondary-base);
}

.has-5-columns .wc-block-grid__product-title,
.has-6-columns .wc-block-grid__product-title,
ul.products.columns-6 .woocommerce-loop-product__title,
ul.products.columns-6 .woocommerce-loop-product__title{
  font-size:1rem;
}

ul.products li.product .button,
.wc-block-grid.has-aligned-buttons .wp-block-button{
  margin-top:auto;
}

ul.products li.product .button{
  margin-top:auto;
}

ul.products li.product .onsale + *{
  margin-top:0;
}

.woocommerce-loop-product__link{
  margin-bottom:1rem;
}

.wc-block-grid,
.wc-block-sort-select{
  margin-bottom:2rem;
}

.wc-block-grid__products a{
  color:inherit;
  text-decoration:none;
}

.wc-block-grid > *,
.wc-block-grid .wc-block-grid__product > *{
  margin-bottom:0;
}

.wc-block-grid > * + *,
.wc-block-grid__products > * + *{
  margin-top:2rem;
}

.wc-block-grid__product-title a:not(:hover){
  color:inherit;
}

.wc-block-grid .wp-block-button{
  margin-top:1rem;
}

.wc-block-grid.has-aligned-buttons .wp-block-button{
  padding-top:1.5rem;
}

table.shop_table_responsive thead{
  display:none;
}

table.shop_table_responsive tbody th{
  display:none;
}

table.shop_table_responsive tr td{
  clear:both;
  display:block;
  text-align:right;
}

table.shop_table_responsive tr td:not(.product-thumbnail):before{
  color:var(--color-secondary-base);
  content:attr(data-title) ":";
  float:left;
}

table.shop_table_responsive tr td.product-remove:before{
  display:none;
}

table.shop_table_responsive tr td.actions:before,

table.shop_table_responsive tr td.download-actions:before{
  display:none;
}

table.shop_table_responsive tr td.download-actions .button{
  display:block;
  text-align:center;
}

.shop_table_responsive .product-remove{
  background-color:var(--color-secondary-lightest);
}

.shop_table_responsive .product-thumbnail{
  text-align:center;
}

.woocommerce table.shop_table,
.woocommerce table.group_table,
.woocommerce table.variations,
.woocommerce table.shop_attributes{
  border:1px solid var(--color-secondary-lighter);
  border-collapse:collapse;
  border-spacing:0;
  table-layout:auto;
  text-align:left;
  width:100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td{
  border-top:1px solid var(--color-secondary-lighter);
  padding:1.5rem 1rem;
}

.woocommerce table.shop_table th{
  background-color:var(--color-secondary-lightest);
  color:var(--color-secondary-base);
  font-weight:bold;
  vertical-align:middle;
}

table.shop_attributes tbody > tr:first-of-type > *,
table.shop_table tbody > tr:first-of-type > td:first-of-type,
table.group_table tbody > tr:first-of-type > *,
table.variations tbody > tr:first-of-type > *,
.woocommerce-checkout-review-order-table tbody > tr:first-of-type > *,
table.shop_table thead > tr:first-of-type > *{
  border-top:none;
}

table.shop_table .product-name a{
  text-decoration:none;
}

table.shop_table .product-quantity{
  color:var(--color-secondary-base);
  font-size:0.889rem;
  font-weight:normal;
}

table.shop_table tbody .product-total{
  color:var(--color-secondary-base);
}

table.shop_table tfoot > tr:last-of-type .woocommerce-Price-amount{
  color:var(--color-accent-dark);
  font-weight:bold;
}

table.group_table td ,
table.variations td{
  vertical-align:middle;
}

.grouped_form .woocommerce-grouped-product-list{
  margin-bottom:2.75rem;
}

.woocommerce-grouped-product-list-item__quantity{
  max-width:160px;
}

.woocommerce-grouped-product-list-item__price del{
  color:var(--color-secondary-base);
}

.woocommerce-grouped-product-list-item__price ins{
  background:none;
  color:var(--color-red);
  font-weight:bold;
}

table.variations .label{
  color:var(--color-secondary-base);
}

table.variations select{
  float:left;
  max-width:70%;
}

table.variations .reset_variations{
  float:right;
}

table.variations .reset_variations button{
  font-size:0.889rem;
  font-weight:bold;
}

table.variations .reset_variations button:not(:hover){
  background-color:transparent;
  border-color:var(--color-secondary-lighter);
  color:var(--color-primary-base);
}

.single_variation_wrap > * + *{
  margin-top:2.5rem;
}

table.group_table .stock{
  margin-bottom:0;
}

table.group_table a{
  text-decoration:none;
}

table.group_table .button{
  font-size:0.889rem;
}

table.group_table .button:not(:hover){
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-base);
}

table.group_table .button:hover{
  border-color:var(--color-secondary-base);
}

.shop_table .woocommerce-shipping-methods{
  list-style:none;
  margin-left:0;
  padding-left:0;
}

.shop_table .woocommerce-shipping-methods > li + li{
  padding-top:0.25em;
}

.shop_table:not(.woocommerce-checkout-review-order-table) .woocommerce-shipping-methods [type="radio"]{
  margin-right:0.75rem;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-methods{
  margin-bottom:0;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-methods li{
  -ms-flex-pack:end;
  -webkit-box-pack:end;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  font-size:0.889rem;
  justify-content:flex-end;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-methods li [type="radio"]{
  -ms-flex-order:2;
  -webkit-box-ordinal-group:3;
  margin-left:0.5rem;
  order:2;
}

.star-rating:before,
.star-rating span:before,

.wc-block-grid__product-rating__stars::before,
.wc-block-grid__product-rating__stars > span::before,

.wc-block-review-list-item__rating__stars::before,
.wc-block-review-list-item__rating__stars > span::before{
  content:'\53\53\53\53\53';
  font-family:'star';
}

.star-rating:before,
.star-rating span,
.star-rating span:before,

.wc-block-grid__product-rating__stars,
.wc-block-grid__product-rating__stars > span,

.wc-block-review-list-item__rating__stars,
.wc-block-review-list-item__rating__stars > span{
  left:0;
  position:absolute;
  top:0;
}

.star-rating,

.wc-block-grid__product-rating,
.wc-block-grid__product-rating__stars > span,

.wc-block-review-list-item__rating,
.wc-block-review-list-item__rating__stars > span{
  height:0.889rem;
}

.star-rating,

.wc-block-grid__product-rating,
.wc-block-review-list-item__rating{
  color:#ffa700;
  line-height:1;
  position:relative;
  width:6.2em;
}

.star-rating,

.wc-block-grid__product-rating,
.wc-block-grid__product-rating__stars > span::before,

.wc-block-review-list-item__rating,
.wc-block-review-list-item__rating__stars > span::before{
  font-size:0.889rem;
  letter-spacing:0.2em;
}

.star-rating{
  overflow:hidden;
}

.star-rating:before{
  color:var(--color-secondary-lighter);
  float:left;
}

.star-rating span{
  float:left;
  overflow:hidden;
  padding-top:1.5em;
}

.star-rating span:before{
  color:#ffa700;
  content:"\53\53\53\53\53";
}

.wc-block-grid__product-rating__stars::before,
.wc-block-review-list-item__rating__stars::before{
  opacity:.25;
}

.wc-block-grid__product-rating__stars > span,
.wc-block-review-list-item__rating__stars > span{
  font-size:0;
  overflow:hidden;
}

.wc-block-grid__product-rating{
  margin-top:1.25rem;
}

p.stars a{
  display:inline-block;
  font-weight:400;
  height:1em;
  margin-right:1px;
  position:relative;
  text-decoration:none;
  text-indent:-999em;
  width:1em;
}

p.stars a:before{
  color:var(--color-secondary-lighter);
  content:"\53";
  display:block;
  font-family:"star";
  height:1em;
  left:0;
  line-height:1;
  position:absolute;
  text-indent:0;
  top:0;
  width:1em;
}

p.stars a:hover ~ a:before,
p.stars.selected a.active ~ a:before{
  color:var(--color-secondary-lighter);
  content:"\53";
}

p.stars:hover a:before{
  color:#ffa700;
  content:"\53";
}

p.stars.selected a.active:before,
p.stars.selected a:not(.active):before{
  color:var(--color-primary-base);
  content:"\53";
}

.widget.woocommerce ul{
  list-style:none;
  margin-left:0;
  padding-left:0;
}

.widget.woocommerce ul > li + li{
  border-top:2px dotted var(--color-secondary-lightest);
  margin-top:0.5rem;
  padding-top:0.5rem;
}

.widget.woocommerce ul.product_list_widget::before,
.widget.woocommerce ul.product_list_widget::after{
  content:"";
  display:table;
}

.widget.woocommerce ul.product_list_widget::after{
  clear:both;
}

.widget.woocommerce ul.product_list_widget li > a{
  display:block;
}

.widget.woocommerce ul.product_list_widget li > a:not(:hover){
  color:inherit;
}

.widget.woocommerce ul.product_list_widget li > a.remove{
  -webkit-box-shadow:none;
  background:var(--color-red);
  border-radius:100%;
  box-shadow:none;
  color:var(--color-white);
  display:block;
  font-size:1rem;
  font-weight:bold;
  height:24px;
  left:0;
  line-height:24px;
  position:absolute;
  text-align:center;
  text-decoration:none;
  top:15px;
  width:24px;
}

.widget.woocommerce ul.product_list_widget li img{
  float:right;
  margin-left:1.25rem;
  max-width:58px;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li{
  padding-left:calc(24px + 1rem);
  position:relative;
}

.widget.woocommerce ul.product_list_widget li:first-child,
.woocommerce.widget_shopping_cart .cart_list li:first-child{
  margin-top:0;
}

.widget.woocommerce ul.product_list_widget li:first-child > a.remove{
  top:4px;
}

.widget ul.product_list_widget li::before,
.widget ul.product_list_widget li::after,
.widget_shopping_cart .cart_list li::before,
.widget_shopping_cart .cart_list li::after{
  content:"";
  display:table;
}

.widget ul.product_list_widget li::after,
.widget_shopping_cart .cart_list li::after{
  clear:both;
}

.widget .product_list_widget ins{
  background-color:transparent;
  font-weight:bold;
}

.widget .product_list_widget ins .amount{
  color:var(--color-red);
}

.widget_shopping_cart p.woocommerce-mini-cart__total{
  border-top:8px solid var(--color-secondary-lightest);
  margin-top:2rem;
  padding-top:1rem;
}

.widget_shopping_cart .woocommerce-mini-cart__buttons{
  margin-bottom:0;
}

.widget_shopping_cart .woocommerce-mini-cart__buttons a{
  display:inline-block;
}

.widget_shopping_cart .woocommerce-mini-cart__buttons .button.checkout{
  margin-left:.25rem;
  margin-right:.25rem;
}

.widget_shopping_cart .quantity,
.widget .product_list_widget .amount,
.widget .product_list_widget .reviewer{
  color:var(--color-secondary-base);
  font-size:0.889rem;
}

.widget .woocommerce-mini-cart__total .amount{
  color:var(--color-accent-dark);
  font-weight:bold;
}

.woocommerce-mini-cart__buttons{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  text-align:center;
}

.woocommerce-mini-cart__buttons .button{
  font-weight:bold;
  width:100%;
}

.woocommerce-mini-cart__buttons .button:nth-child(1){
  border-radius:999px 200px 200px 999px;
}

.woocommerce-mini-cart__buttons .button:nth-child(2){
  border-radius:200px 999px 999px 200px;
}

.woocommerce-mini-cart__buttons .button:not(:hover){
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-base);
}

.widget-area .woocommerce-mini-cart__buttons .button:hover{
  text-decoration:none;
}

.widget_product_search .woocommerce-product-search .search-field{
  display:block;
  width:100%;
}

.widget_product_search .woocommerce-product-search{
  position:relative;
}

.widget_product_search .woocommerce-product-search button{
  background:none;
  border:none;
  color:inherit;
  font-size:0;
  height:100%;
  line-height:1.4;
  padding:15px 18px;
  position:absolute;
  right:0;
  top:1px;
}

.widget_product_search .woocommerce-product-search button::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  content:"";
  display:inline-block;
  height:16px;
  width:16px;
}

.widget_rating_filter ul li a{
  color:var(--color-secondary-base);
  overflow:hidden;
}

.widget_rating_filter ul li .star-rating{
  float:left;
  line-height:2.3;
  margin-right:.55em;
}

.widget_layered_nav_filters ul li a:before{
  background-color:var(--color-red);
  border-radius:50%;
  color:var(--color-white);
  content:"×";
  display:inline-block;
  font-size:1rem;
  font-weight:bold;
  height:20px;
  line-height:20px;
  margin-right:.5em;
  text-align:center;
  width:20px;
}

.widget_price_filter .price_slider{
  margin-bottom:1.5em;
}

.widget_price_filter .price_slider_amount{
  line-height:44px;
  text-align:right;
}

.widget_price_filter .price_slider_amount .button{
  float:left;
}

.widget_price_filter .ui-slider{
  position:relative;
  text-align:left;
}

.widget_price_filter .ui-slider .ui-slider-handle{
  background:var(--color-secondary-base);
  border-radius:100%;
  cursor:ew-resize;
  height:1em;
  margin-left:-1px;
  margin-top:-.25em;
  opacity:1;
  outline:none;
  position:absolute;
  width:1em;
  z-index:2;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,

.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active{
  -webkit-box-shadow:0 0 0 0.25em rgba(0, 0, 0, 0.1);
  box-shadow:0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range{
  background:var(--color-secondary-lightest);
  border:0;
  display:block;
  position:absolute;
  z-index:1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content{
  background:rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal{
  height:.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range{
  height:100%;
}

.woocommerce-breadcrumb,
.woocommerce-breadcrumb a:hover{
  color:var(--color-secondary-base);
}

.woocommerce-breadcrumb{
  font-size:0.875rem;
  margin:0 30px 30px;
}

.woocommerce-breadcrumb a{
  color:var(--color-primary-dark);
  font-weight:bold;
}

.woocommerce-loop-product__title,
.woocommerce-loop-category__title,
.wc-block-grid__product-title{
  font-weight:bold;
  margin-bottom:0;
}

.woocommerce-loop-product__link{
  color:inherit;
}

.product .price,
.wc-block-grid__product-price{
  font-size:0.889rem;
}

ul.products .button,
ul.products li.product .added_to_cart,
.wc-block-grid .wp-block-button.wc-block-grid__product-add-to-cart button.wp-block-button__link,
.wc-block-grid .wp-block-button.wc-block-grid__product-add-to-cart a.wp-block-button__link{
  background-color:transparent;
  border:1px solid;
  border-radius:1px;
  color:var(--color-primary-dark);
  display:inline-block;
  font-size:0.8125rem;
  font-weight:bold;
  line-height:1.25;
  padding:0.85em;
  text-align:center;
  text-transform:uppercase;
}

div.woocommerce a.button.alt,
ul.products li.product .added_to_cart{
  background-color:var(--color-accent-base);
  color:#ffffff;
  font-size:0.8125rem;
  line-height:1.4;
  padding:1.2em 1.75em;
  text-transform:uppercase;
}

div.woocommerce a.button.alt:hover,
ul.products li.product .added_to_cart:hover{
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-base);
}

ul.products .button:hover,
.wc-block-grid .wp-block-button.wc-block-grid__product-add-to-cart > .wp-block-button__link.add_to_cart_button:hover{
  background-color:transparent;
  color:var(--color-secondary-base);
}

ul.products .button.added{
  display:none;
}

.wp-block-button{
  -ms-flex-item-align:start;
  align-self:flex-start;
}

.wc-block-grid__product-add-to-cart:not(:hover){
  color:var(--color-primary-dark);
}

.wc-block-grid.has-aligned-buttons .wc-block-grid__product>.wc-block-grid__product-title:last-child,
.wc-block-grid.has-aligned-buttons .wc-block-grid__product>div:last-child{
  padding-bottom:0;
}

.wc-block-grid .wp-block-button{
  padding-top:0.75rem;
}

.wc-block-grid__product-add-to-cart a.added:after,
.wc-block-grid__product-add-to-cart button.added:after,
.wc-block-grid__product-add-to-cart a.loading:after,
.wc-block-grid__product-add-to-cart button.loading:after{
  display:none;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link{
  width:100%;
}

.demo_store{
  background-color:#bb7900;
  border-radius:1px;
  color:var(--color-white);
}

.woocommerce-page .quantity .qty{
  line-height:1.25;
  padding:calc(1.2em - 1px) 0;
}

.woocommerce .select2 .select2-selection--single{
  border-radius:0;
  height:49px;
}

.woocommerce .select2:not(.select2-container--open) .select2-selection__rendered{
  height:49px;
  line-height:49px;
  padding:0 0.75em;
}

.woocommerce-account #page .entry-content a,
.woocommerce-checkout #page .entry-content a,
.woocommerce-cart #page .entry-content a{
  border-bottom:none;
}

.single-product #content .woocommerce-Reviews-title,
.single-product #reviews .comment-reply-title,
.single-product .entry-content.panel > h2:first-of-type,
.single-product .woocommerce-Reviews-title,
.single-product .upsells.products > h2:first-of-type,
.single-product .related.products > h2:first-of-type,
.cart-collaterals .cross-sells h2,
.cart-collaterals .cart_totals h2{
  font-size:1.125rem;
  margin-bottom:20px;
  margin-top:0;
}

ul.products .add_to_cart_button::before{
  -webkit-font-smoothing:antialiased;
  display:inline-block;
  font-family:FontAwesome;
  font-style:normal;
  font-weight:normal;
  text-decoration:inherit;
}

.form-row label{
  display:inline-block;
  margin-bottom:5px;
}

#page .widget_rating_filter ul li,
#page .widget_layered_nav_filters ul li.chosen,
#page .widget.woocommerce .product_list_widget:not(.cart_list) li,
#page .widget_rating_filter ul li{
  padding-left:0;
  padding-right:0;
}

.widget_layered_nav_filters ul li.chosen::before,
.widget.woocommerce .product_list_widget li::before,
.widget_rating_filter ul li::before{
  content:"";
  display:none;
}

.archive.inactive-sidebar.woocommerce .site-main,
.inactive-sidebar.single.woocommerce .site-main,
.woocommerce-cart.inactive-sidebar.page-template-default .site-main{
  max-width:100%;
}

.woocommerce .content-area{
  padding-top:35px;
}

.woocommerce-active .header-search-button{
  margin-left:0;
}

.cart-contents{
  color:inherit;
  display:block;
  font-size:1rem;
  padding-right:25px;
  position:relative;
}

.site-header .cart-contents .svg-icon{
  height:18px;
  width:18px;
}

.cart-contents span{
  background-color:#ffffff;
  border:1px solid;
  border-radius:50%;
  color:inherit;
  font-size:0.6em;
  font-weight:bold;
  height:1rem;
  line-height:0.9rem;
  position:absolute;
  right:14px;
  text-align:center;
  text-shadow:none;
  top:-3px;
  width:1rem;
}

.site-header-cart{
  -ms-flex-direction:column;
  -ms-flex-order:2;
  -ms-flex-pack:center;
  -webkit-box-direction:normal;
  -webkit-box-ordinal-group:3;
  -webkit-box-orient:vertical;
  -webkit-box-pack:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-direction:column;
  float:right;
  justify-content:center;
  margin:0 0 -10px;
  order:2;
  padding:0;
  position:relative;
}

.site-header-cart li{
  display:block;
  position:relative;
}

.site-header-cart li:first-child{
  margin-bottom:10px;
}

.site-header-cart:hover .widget_shopping_cart{
  -webkit-transition:top .3s ease-in-out, opacity .3s ease-in-out;
  left:auto;
  opacity:1;
  right:0;
  top:0;
  transition:top .3s ease-in-out, opacity .3s ease-in-out;
}

.site-header-cart .widget_shopping_cart{
  -webkit-box-shadow:2px 2px 10px 2px rgba(0,0,0,0.1);
  background:#ffffff;
  border:3px solid #000000;
  border-radius:1px;
  box-shadow:2px 2px 10px 2px rgba(0,0,0,0.1);
  display:block;
  font-size:0.875rem;
  left:-999em;
  opacity:0;
  padding:20px;
  position:absolute;
  top:20px;
  width:300px;
  z-index:999999;
}

.site-header-cart .widget_shopping_cart::before{
  border-color:transparent transparent #000000 transparent;
  border-style:solid;
  border-width:0 8px 8px 8px;
  content:'';
  height:0;
  margin-right:-4px;
  position:absolute;
  right:26px;
  top:-10px;
  width:0;
}

.site-header-cart ul.cart_list{
  padding-top:0;
}

.site-header-cart ul.cart_list li:not(:first-child){
  padding-top:9px;
}

.site-header-cart ul.cart_list a{
  font-weight:bold;
  line-height:1.35;
}

.site-header-cart .widget_shopping_cart,
.site-header-cart .widget_shopping_cart_content :last-child,
.site-header-cart .widget_shopping_cart .buttons :last-child{
  margin-bottom:0;
}

.main-navigation .container > div,
.main-navigation .site-header-cart{
  float:left;
}

.main-navigation .container > div{
  width:70.5%;
}

.main-navigation .site-header-cart{
  width:29.5%;
}

.site-header-cart ul.product_list_widget{
  -webkit-box-shadow:none;
  border:none;
  box-shadow:none;
  float:none;
  opacity:1;
  position:static;
}

.site-header-cart ul.product_list_widget li a{
  border:none;
  margin-bottom:0;
  padding-bottom:0;
}

.site-header-cart ul.product_list_widget li a:not(.remove){
  width:100%;
}

.site-header-cart .woocommerce-mini-cart__buttons .button{
  border-radius:1px;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-noreviews .button,
p.no-comments .button{
  background:none;
}

div.product > .onsale{
  left:0;
}

li.product .onsale{
  left:1rem;
}

.woocommerce-pagination,
.wc-block-pagination{
  border-top:1px solid var(--color-secondary-lighter);
  font-size:0.889rem;
  font-weight:bold;
  padding-top:2rem;
  text-align:inherit;
}

.wc-block-pagination,
.woocommerce-pagination ul.page-numbers{
  -ms-flex-wrap:wrap;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
}

.woocommerce-pagination ul.page-numbers li span,
.woocommerce-pagination ul.page-numbers li a,
.wc-block-pagination .wc-block-pagination-page{
  border:none;
  color:var(--color-primary-base);
  display:inline-block;
  height:42px;
  line-height:42px;
  min-width:45px;
  padding:0 14px;
  text-align:center;
  text-decoration:none;
  width:auto;
}

.wc-block-pagination .wc-block-pagination-page--active,
.wc-block-pagination .wc-block-pagination-page:hover,
.woocommerce-pagination ul.page-numbers li a:hover{
  background-color:var(--color-primary-dark);
  color:#ffffff;
}

.woocommerce-pagination{
  background-color:var(--color-secondary-lighter);
  margin-left:-1rem;
  margin-right:-1rem;
  padding:0 1rem;
  text-align:inherit;
}

.woocommerce-pagination ul.page-numbers{
  list-style:none;
  margin:0;
  padding:0;
}

.woocommerce-pagination ul.page-numbers > li + li{
  margin-left:1px;
}

.woocommerce-pagination ul.page-numbers li span{
  background-color:var(--color-white);
}

.wc-block-pagination > * + *{
  margin-left:0.5rem;
}

.wc-block-pagination .screen-reader-text + *{
  margin-left:0;
}

.wc-block-pagination .wc-block-pagination-page{
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-dark);
}

.woocommerce-loop-product__title,
.woocommerce-loop-category__title,
.wc-block-grid__product-title{
  border-bottom:1px solid transparent;
  display:inline;
  font-size:1.125rem;
  font-weight:900;
}

.woocommerce-loop-product__title:hover,
.woocommerce-loop-category__title:hover,
.wc-block-grid__product-title:hover{
  border-bottom:1px solid;
}

#page ul.products li.product.product-category{
  height:auto;
}

ul.products li.product.product-category .woocommerce-loop-category__title{
  -webkit-box-decoration-break:clone;
  -webkit-box-shadow:7px 0 0 rgba(0,0,0,.85), -7px 0 0 rgba(0,0,0,.85);
  background-color:rgba(0,0,0,.85);
  bottom:30px;
  box-decoration-break:clone;
  box-shadow:7px 0 0 rgba(0,0,0,.85), -7px 0 0 rgba(0,0,0,.85);
  color:#ffffff;
  font-size:18px;
  left:0;
  margin:0 37px;
  padding:1px 0;
  position:absolute;
}

ul.products li.product.product-category .woocommerce-loop-category__title mark{
  background:none;
  color:inherit;
}

.woocommerce-loop-product__link + .woocommerce-loop-product__link{
  margin-bottom:2rem;
}

.wc-block-grid__product a.wc-block-grid__product-link,
.wc-block-grid .wc-block-grid__product-title > a{
  color:inherit;
  text-decoration:none;
}

.wc-block-grid .wc-block-grid__product > :first-child{
  margin-bottom:0.75rem;
}

.wc-block-grid .wc-block-grid__product-title{
  -ms-flex-item-align:start;
  align-self:flex-start;
  width:auto;
}

.wc-block-grid .wc-block-grid__product-title a,
.wc-block-grid .wc-block-grid__product-link{
  border-bottom:none;
}

.wc-block-price-filter .wc-block-price-filter__range-input-wrapper .wc-block-price-filter__range-input-progress{
  --range-color:#e5e5e5;
}

.woocommerce-mini-cart__buttons .button{
  border:1px solid transparent;
}

.woocommerce-mini-cart__buttons .button:hover{
  border:1px solid;
  color:var(--color-primary-base);
}

.woocommerce.archive .page-title{
  margin-bottom:0;
}

.woocommerce.archive .page-title + .woocommerce-notices-wrapper:empty,
.woocommerce.archive .term-description + .woocommerce-notices-wrapper:empty{
  margin-top:0;
}

.woocommerce.archive .page-title + .term-description{
  margin-top:0.75rem;
  max-width:37rem;
}

.woocommerce-result-count,
.woocommerce-ordering{
  margin-bottom:2rem;
}

.woocommerce-result-count{
  color:var(--color-secondary-base);
  font-size:0.889rem;
}

.woocommerce-ordering select{
  margin:0.375em 0;
}

.archive.woocommerce-active:not(.infinite-scroll) .post{
  padding-bottom:2em;
}

.archive.woocommerce-active .site-main .page-title{
  font-size:1.424rem;
}

.archive.woocommerce-active .site-main{
  padding-bottom:0;
}

.archive ul.products{
  margin-bottom:0;
  margin-left:0;
  margin-right:0;
}

.archive ul.products li.product{
  margin-top:0;
  padding-bottom:2rem;
  padding-left:1rem;
  padding-right:1rem;
}

.woocommerce.archive ul.products{
  margin-left:-1rem;
  margin-right:-1rem;
  width:auto;
}

.archive ul.products li.product{
  border-left:1px solid #e5e5e5;
}

.archive ul.products li.product > a.woocommerce-LoopProduct-link:first-of-type,
.archive ul.products li.product.product-category > a{
  display:block;
  margin-left:-1rem;
  margin-right:-1rem;
}

.archive ul.products li.product img{
  -webkit-box-shadow:0 -1px 0 1px #ffffff;
  box-shadow:0 -1px 0 1px #ffffff;
  width:100%;
}

.woocommerce-cart-form > *,
.woocommerce-cart .return-to-shop{
  margin-bottom:0;
}

.woocommerce-cart .woocommerce-cart-form > * + *,
.woocommerce-cart .woocommerce > * + *{
  margin-top:2.5rem;
}

.woocommerce-cart .woocommerce-notices-wrapper + *{
  margin-top:0;
}

.woocommerce-cart .cross-sells > h2,
.cart-collaterals .cart_totals > h2{
  color:var(--color-secondary-base);
  font-size:1.125rem;
  margin-bottom:1rem;
}

.woocommerce-cart .woocommerce-cart-form a,
.woocommerce-cart .cross-sells a,
.woocommerce-cart .cart-collaterals a{
  text-decoration:none;
}

.woocommerce-cart-form__contents .actions .button:not(:hover){
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-base);
}

.woocommerce-form-coupon-toggle .woocommerce-info a{
  font-size:0.889rem;
  margin-left:auto;
}

.woocommerce-checkout .entry-content .woocommerce h3,
.woocommerce-checkout .woocommerce .widget_shopping_cart .widgettitle{
  border-bottom:4px solid var(--color-secondary-lightest);
  color:var(--color-secondary-base);
  font-size:1.125rem;
  margin-bottom:2rem;
  padding-bottom:0.75rem;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
  -ms-flex-flow:wrap row;
  -webkit-box-direction:normal;
  -webkit-box-orient:horizontal;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-flow:wrap row;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > *{
  width:100%;
}

.woocommerce-checkout #billing_first_name_field span.woocommerce-input-wrapper,
.woocommerce-checkout #billing_state_field span.woocommerce-input-wrapper,
.woocommerce-checkout #billing_phone_field span.woocommerce-input-wrapper{
  display:block;
  margin-right:1rem;
}

.woocommerce-checkout .woocommerce-form-coupon{
  margin-bottom:1rem;
  max-width:43rem;
}

.woocommerce-checkout-review-order > *{
  margin-bottom:0;
}

.woocommerce-checkout-review-order > * + *,
.woocommerce-checkout-payment > * + *{
  margin-top:2.5rem;
}

#order_review_heading{
  display:none;
}

.woocommerce table.woocommerce-checkout-review-order-table thead th{
  background-color:transparent;
  border-bottom-width:4px;
}

.woocommerce table.woocommerce-checkout-review-order-table th,
.woocommerce table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce table.woocommerce-table--order-details th,
.woocommerce table.woocommerce-table--order-details tfoot td{
  padding-bottom:0.65em;
  padding-top:0.65em;
}

.woocommerce table.woocommerce-checkout-review-order-table th{
  font-family:var(--font-headings);
}

.woocommerce table.woocommerce-checkout-review-order-table td{
  vertical-align:middle;
}

.woocommerce-checkout-review-order-table .product-name{
  font-weight:bold;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td{
  text-align:right;
}

.woocommerce-form-login > :last-child{
  margin-bottom:0;
}

.woocommerce-form-login input[name="rememberme"]{
  margin-left:0.65em;
  margin-right:0.4em;
}

.woocommerce-form-login .form-row{
  -ms-flex-flow:row wrap;
  -webkit-box-direction:normal;
  -webkit-box-orient:horizontal;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-flow:row wrap;
}

.woocommerce-form-login__submit{
  -ms-flex-order:1;
  -webkit-box-ordinal-group:2;
  order:1;
}

.woocommerce-form-login__rememberme{
  -ms-flex-align:center;
  -ms-flex-item-align:center;
  -ms-flex-order:2;
  -webkit-box-align:center;
  -webkit-box-ordinal-group:3;
  align-items:center;
  align-self:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  margin-bottom:0;
  margin-left:0.5rem;
  order:2;
}

.woocommerce-form__label-for-checkbox span{
  font-size:inherit;
}

.woocommerce-account .woocommerce .woocommerce-notices-wrapper + h2{
  margin-bottom:1.25rem;
  margin-top:0;
}

.woocommerce-form-login .password-input{
  display:block;
  width:100%;
}

.woocommerce-account .entry-content > .woocommerce > * + *{
  margin-top:2rem;
}

.woocommerce-form-row em,
.woocommerce-account .addresses .title .edit,
.woocommerce-account .entry-content .woocommerce-pagination a.button{
  color:var(--color-secondary-base);
  font-size:0.889rem;
}

.woocommerce-account .woocommerce-pagination{
  overflow:hidden;
  padding:0;
  position:relative;
  text-align:center;
}

.woocommerce-account .woocommerce-pagination::before{
  background:var(--color-white);
  content:"";
  height:100%;
  left:50%;
  margin-left:-1px;
  position:absolute;
  top:0;
  width:1px;
}

.woocommerce-account .entry-content .woocommerce-pagination a.button{
  background:none;
  display:inline-block;
  float:left;
  padding:11px 30px;
  width:50%;
}

.woocommerce-account .entry-content .woocommerce-pagination a.woocommerce-button--next{
  float:right;
}

.woocommerce-Addresses > * + *{
  border-top:2px solid var(--color-secondary-lightest);
  margin-top:2rem;
  padding-top:2rem;
}

.woocommerce-Address > * + *{
  margin-top:1rem;
}

.woocommerce-account .woocommerce-Address-title{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.woocommerce-Address > :last-child,
.woocommerce-account .woocommerce-Address-title h3{
  margin-bottom:0;
}

.woocommerce-account .woocommerce-Address-title .edit{
  background-color:var(--color-secondary-lightest);
  border-radius:999px;
  font-weight:normal;
  margin-left:0.75rem;
  padding:0.2em 1em;
  text-decoration:none;
}

.woocommerce-account .woocommerce-Address-title .edit:hover{
  color:var(--color-primary-base);
}

.woocommerce-form-row em{
  margin-top:1em;
}

.woocommerce-EditAccountForm fieldset > *,
.woocommerce-EditAccountForm > :last-child{
  margin-bottom:0;
}

.woocommerce-EditAccountForm fieldset > * + *{
  margin-top:1rem;
}

.woocommerce-EditAccountForm fieldset legend + *{
  margin-top:0;
}

.woocommerce-EditAccountForm fieldset{
  border:2px solid var(--color-secondary-lightest);
  margin:2.5rem 0;
  padding:1rem 2rem 2rem;
}

.woocommerce-EditAccountForm fieldset legend{
  color:var(--color-secondary-base);
  font-weight:bold;
  padding:0 1rem;
}

.woocommerce-account .woocommerce-form-login{
  max-width:680px;
}

.woocommerce-customer-details > :last-child{
  margin-bottom:0;
}

.woocommerce-customer-details address{
  border:1px solid var(--color-secondary-lighter);
  border-radius:1px;
  padding:1.5rem;
}

.woocommerce-customer-details--phone{
  border-top:2px dotted var(--color-secondary-lightest);
  margin-bottom:0;
  margin-top:1rem;
  padding-top:1rem;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email{
  color:var(--color-secondary-base);
}

.woocommerce-orders-table__cell-order-actions > *,
.woocommerce-order-downloads .download-file > *{
  margin-top:1rem;
}

.woocommerce-orders-table a,
.woocommerce-order-downloads a{
  text-decoration:none;
}

.woocommerce-orders-table td,
.woocommerce-order-downloads td{
  vertical-align:middle;
}

.woocommerce-orders-table .button,
.woocommerce-order-downloads .button{
  font-size:0.889rem;
  text-align:center;
  width:100%;
}

.woocommerce-orders-table__cell-order-actions .button:not(:hover){
  background-color:transparent;
  border-color:var(--color-secondary-base);
  color:var(--color-secondary-base);
}

.woocommerce-orders-table__cell-order-actions .button:hover{
  border-color:var(--color-accent-dark);
  color:var(--color-accent-dark);
}

.woocommerce-table__product-purchase-note td > :last-child{
  margin-bottom:0;
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title{
  color:var(--color-secondary-base);
  font-size:1.125rem;
  margin-bottom:1rem;
}

.woocommerce-order-received .woocommerce-thankyou-order-details{
  background-color:var(--color-secondary-lightest);
  border:1px solid var(--color-secondary-lighter);
  border-radius:1px;
  list-style:none;
  margin-left:0;
  padding:1.5rem;
}

.woocommerce-thankyou-order-details li + li{
  border-top:2px dotted var(--color-secondary-lighter);
  margin-top:0.5rem;
  padding-top:0.5rem;
}

#reviews #comments{
  max-width:100%;
  padding:0;
}

#reviews #reply-title:before{
  display:none;
}

#reviews #comments ol.commentlist{
  list-style:none;
  margin-bottom:2em;
  margin-left:0;
  padding:0;
}

#reviews #comments ol.commentlist:before,
#reviews #comments ol.commentlist:after{
  content:"";
  display:table;
}

#reviews #comments ol.commentlist::after{
  clear:both;
}

#reviews #comments ol.commentlist li{
  border-top:2px solid var(--color-secondary-lightest);
  margin-bottom:2rem;
  padding-top:2rem;
  position:relative;
}

#reviews #comments ol.commentlist li:first-child{
  border-top:none;
}

#reviews #comments ol.commentlist li img.avatar{
  border:2px solid var(--color-secondary-lightest);
  border-radius:50%;
  height:48px;
  height:3rem;
  margin-bottom:1rem;
  padding:2px;
  width:48px;
}

#reviews #comments ol.commentlist li .meta{
  margin-bottom:0.75rem;
}

.woocommerce-review__author{
  font-family:var(--font-headings);
}

.woocommerce-review__published-date{
  color:var(--color-secondary-base);
  display:block;
  font-size:0.889rem;
  margin-top:0.125rem;
}

.woocommerce-review__dash{
  display:none;
}

#reviews #comments ol.commentlist li .star-rating{
  float:right;
}

#review_form #respond .comment-reply-title{
  display:block;
  font-family:var(--font-headings);
  font-size:1.424rem;
  font-weight:bold;
  margin-bottom:0.75rem;
}

#review_form .comment-form-rating{
  font-weight:bold;
  margin-top:2rem;
}

#review_form .comment-form-rating + .comment-form-comment{
  margin-top:1rem;
}

#review_form p.stars{
  margin-bottom:1em;
}

#review_form p.stars a{
  border-bottom:none;
}

#comments .woocommerce-noreviews{
  margin:0 0 20px;
}

.comment-form-rating label{
  display:block;
  margin-bottom:0.5rem;
}

.single-product div.product > * + *{
  margin-top:2rem;
}

.single-product .product .woocommerce-tabs,
.single-product .product .related.products{
  padding-top:2rem;
}

.single-product .woocommerce-notices-wrapper + .product{
  margin-top:0;
}

.single-product .entry-summary > *{
  margin-bottom:0;
}

.single-product .entry-summary > * + *{
  margin-top:2rem;
}

.single-product .product .product_title{
  font-size:1.424rem;
}

.single-product .product .product_title + *{
  margin-top:0.5rem;
}

.single-product .product .summary .woocommerce-product-rating{
  -ms-flex-line-pack:center;
  -ms-flex-wrap:wrap;
  align-content:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
}

.single-product .product .summary .star-rating{
  font-size:1.266rem;
  height:1.4em;
}

.single-product .entry-summary .woocommerce-review-link{
  color:var(--color-secondary-base);
  font-weight:normal;
  line-height:1.25;
  margin-left:0.75rem;
}

.single-product .product .summary .price del .amount{
  font-size:1.266rem;
}

.single-product .product .summary .price{
  font-size:2.027rem;
  line-height:1.25;
}

.single-product .entry-summary .cart:not(.variations_form),
.single-product .entry-summary .woocommerce-variation-add-to-cart{
  -ms-flex-wrap:wrap;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
}

.single-product .entry-summary .product_meta{
  color:var(--color-secondary-base);
}

.single-product .entry-summary .product_meta > *{
  display:block;
}

.single-product .cart:not(.grouped_form) .quantity{
  margin-right:0.75rem;
}

.woocommerce-product-details__short-description + .cart{
  margin-top:2rem;
}

.single-product .related.products ul,
.single-product .related.products .woocommerce-loop-product__link{
  margin-bottom:0;
}

.single-product .related.products .button{
  display:none;
}

.single-product .related.products .woocommerce-loop-product__link{
  padding-bottom:0;
}

.woocommerce-product-details__short-description > :last-child{
  margin-bottom:0;
}

.single-product .woocommerce-product-gallery__image{
  border-radius:1px;
}

.single-product div.product .woocommerce-product-gallery{
  margin-top:0;
  position:relative;
}

.single-product div.product .woocommerce-product-gallery img{
  display:block;
}

.single-product .product .woocommerce-product-gallery__trigger:focus,
.single-product .product .woocommerce-product-gallery__trigger:hover{
  opacity:0.5;
}

.single-product .product .woocommerce-product-gallery__trigger{
  background:rgba(255,255,255,0.7);
  border-radius:0 1px;
  color:inherit;
  display:block;
  font-size:0;
  height:auto;
  padding:0.75rem;
  position:absolute;
  right:0;
  top:0;
  z-index:2;
}

.woocommerce .product .woocommerce-product-gallery__trigger::before{
  background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M11.5 0c6.347 0 11.5 5.153 11.5 11.5s-5.153 11.5-11.5 11.5-11.5-5.153-11.5-11.5 5.153-11.5 11.5-11.5zm0 1c5.795 0 10.5 4.705 10.5 10.5s-4.705 10.5-10.5 10.5-10.5-4.705-10.5-10.5 4.705-10.5 10.5-10.5zm.5 10h6v1h-6v6h-1v-6h-6v-1h6v-6h1v6z'/%3E%3C/svg%3E");
  background-size:24px 24px;
  border:none;
  content:'';
  display:block;
  display:block;
  height:24px;
  line-height:24px;
  margin:auto;
  width:24px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger .emoji,
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{
  display:none !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs{
  -ms-flex-wrap:wrap;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
  margin:0;
  padding:0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li{
  cursor:pointer;
  list-style:none;
  margin-top:3.8%;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img{
  opacity:0.85;
  width:100%;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img{
  opacity:1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li{
  margin-right:4%;
  width:48%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n){
  margin-right:0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{
  margin-right:5%;
  width:30%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){
  margin-right:0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{
  margin-right:3.8%;
  width:22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){
  margin-right:0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{
  margin-right:3.8%;
  width:16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n){
  margin-right:0;
}

.wc-tab.entry-content > :first-child{
  margin-top:0;
}

.wc-tab.entry-content > :last-child{
  margin-bottom:0;
}

.woocommerce-cart-form__contents .actions .button:hover{
  background-color:var(--color-primary-base);
  color:var(--color-secondary-lightest);
}

.place-order [type="submit"]:not(:hover){
  background-color:var(--color-accent-base);
  color:#ffffff;
}

#review_form .comment-form-rating{
  margin-top:0;
}

#review_form .submit:not(:hover){
  background-color:var(--color-secondary-lightest);
  color:var(--color-primary-base);
}

.related.products ul.products{
  width:auto;
}

.related.products ul.products li > .woocommerce-LoopProduct-link{
  margin-bottom:1rem;
}

.single-product .product .summary .price{
  font-size:1.266rem;
}

.woocommerce-tabs ul.tabs,
.woocommerce-MyAccount-navigation ul{
  border-left:2px solid var(--color-secondary-lighter);
  list-style:none;
  margin-left:0;
  padding-left:1rem;
}

.woocommerce-tabs ul.tabs li a,
.woocommerce-MyAccount-navigation a{
  display:block;
  font-weight:normal;
  padding:0.25rem 0;
  text-decoration:none;
}

.woocommerce-tabs ul.tabs li a:not(:hover),
.woocommerce-MyAccount-navigation a:not(:hover){
  color:inherit;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-MyAccount-navigation .is-active a{
  cursor:default;
  font-weight:bold;
}

.woocommerce-tabs{
  border-top:1px solid var(--color-secondary-lighter);
  clear:both;
}

.woocommerce-tabs .panel h2:first-of-type{
  margin-bottom:2rem;
}

.woocommerce-tabs .panel h2:first-of-type,
div.product .related h2{
  font-size:1.125rem;
}

.woocommerce-account .woocommerce-Address-title h3{
  margin-top:0;
}

.woocommerce-tabs ~ *{
  border-top:1px solid var(--color-secondary-lighter);
  margin-top:2rem;
  padding-top:2rem;
}

.wc-block-featured-category,
.wc-block-featured-category.has-background-dim:before{
  border-radius:1px;
}

.wc-block-featured-category{
  background-color:var(--color-primary-base);
  background-position:50%;
  background-size:cover;
  margin:0 0 2rem;
  padding:2.5rem;
  position:relative;
  width:100%;
}

.wc-block-featured-category > * + *{
  margin-top:2rem;
}

.wc-block-featured-category,
.wc-block-featured-category .wc-block-featured-category__wrapper{
  -ms-flex-align:center;
  -ms-flex-line-pack:center;
  -ms-flex-pack:center;
  -ms-flex-wrap:wrap;
  -webkit-box-align:center;
  -webkit-box-pack:center;
  align-content:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.wc-block-featured-category .wc-block-featured-category__wrapper{
  height:100%;
  overflow:hidden;
}

.wc-block-featured-category.has-left-content{
  -ms-flex-pack:start;
  -webkit-box-pack:start;
  justify-content:flex-start;
}

.wc-block-featured-category__description{
  font-size:1.266rem;
  max-width:35rem;
}

.wc-block-featured-category.has-left-content .wc-block-featured-category__description,
.wc-block-featured-category.has-left-content .wc-block-featured-category__price,
.wc-block-featured-category.has-left-content .wc-block-featured-category__title{
  margin-left:0;
  margin-right:auto;
  text-align:left;
}

.wc-block-featured-category.has-right-content{
  -ms-flex-pack:end;
  -webkit-box-pack:end;
  justify-content:flex-end;
}

.wc-block-featured-category.has-right-content .wc-block-featured-category__description,
.wc-block-featured-category.has-right-content .wc-block-featured-category__price,
.wc-block-featured-category.has-right-content .wc-block-featured-category__title{
  margin-left:auto;
  margin-right:0;
  text-align:right;
}

.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__price,
.wc-block-featured-category .wc-block-featured-category__title{
  color:var(--color-white);
  margin-bottom:0;
  text-align:center;
}

.wc-block-featured-category .wc-block-featured-category__description a,
.wc-block-featured-category .wc-block-featured-category__description a:active,
.wc-block-featured-category .wc-block-featured-category__description a:focus,
.wc-block-featured-category .wc-block-featured-category__description a:hover,
.wc-block-featured-category .wc-block-featured-category__price a,
.wc-block-featured-category .wc-block-featured-category__price a:active,
.wc-block-featured-category .wc-block-featured-category__price a:focus,
.wc-block-featured-category .wc-block-featured-category__price a:hover,
.wc-block-featured-category .wc-block-featured-category__title a,
.wc-block-featured-category .wc-block-featured-category__title a:active,
.wc-block-featured-category .wc-block-featured-category__title a:focus,
.wc-block-featured-category .wc-block-featured-category__title a:hover{
  color:var(--color-white);
}

.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__link,
.wc-block-featured-category .wc-block-featured-category__price,
.wc-block-featured-category .wc-block-featured-category__title{
  width:100%;
  z-index:1;
}

.wc-block-featured-category .wc-block-featured-category__title{
  margin-top:0;
}

.wc-block-featured-category .wc-block-featured-category__title:before{
  display:none;
}

.wc-block-featured-category .wc-block-featured-category__description p{
  margin:0;
}

.wc-block-featured-category.has-background-dim:before{
  background-color:inherit;
  bottom:0;
  content:"";
  left:0;
  opacity:.5;
  position:absolute;
  right:0;
  top:0;
  z-index:1;
}

.wc-block-featured-category.has-background-dim.has-background-dim-10:before{
  opacity:.1;
}

.wc-block-featured-category.has-background-dim.has-background-dim-20:before{
  opacity:.2;
}

.wc-block-featured-category.has-background-dim.has-background-dim-30:before{
  opacity:.3;
}

.wc-block-featured-category.has-background-dim.has-background-dim-40:before{
  opacity:.4;
}

.wc-block-featured-category.has-background-dim.has-background-dim-50:before{
  opacity:.5;
}

.wc-block-featured-category.has-background-dim.has-background-dim-60:before{
  opacity:.6;
}

.wc-block-featured-category.has-background-dim.has-background-dim-70:before{
  opacity:.7;
}

.wc-block-featured-category.has-background-dim.has-background-dim-80:before{
  opacity:.8;
}

.wc-block-featured-category.has-background-dim.has-background-dim-90:before{
  opacity:.9;
}

.wc-block-featured-category.has-background-dim.has-background-dim-100:before{
  opacity:1;
}

.wc-block-featured-category.alignleft,
.wc-block-featured-category.alignright{
  max-width:305px;
  width:100%;
}

.wc-block-featured-category:after{
  content:"";
  display:block;
  font-size:0;
  min-height:inherit;
}

@supports ((position: -webkit-sticky) or (position: sticky)){
  .wc-block-featured-category:after{
    content:none;
  }
}

.wc-block-featured-category.aligncenter,
.wc-block-featured-category.alignleft,
.wc-block-featured-category.alignright{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-featured-category .wp-block-button__link:hover{
  color:var(--color-white);
}

.wc-block-featured-category .wp-block-button:not(.is-style-outline) .has-text-color:hover,
.wc-block-featured-category .wp-block-button:not(.is-style-outline) .has-background:hover{
  color:var(--color-white) !important;
}

.wc-block-featured-category .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color){
  border-color:inherit;
  color:var(--color-white);
}

.wc-block-featured-category .wp-block-button.is-style-outline .wp-block-button__link:hover{
  background-color:var(--color-white);
  border-color:var(--color-white);
  color:var(--color-primary-base);
}

.wc-block-featured-product.has-background-dim:before,
.wc-block-featured-product{
  border-radius:1px;
}

.wc-block-featured-product{
  background-color:var(--color-primary-base);
  background-position:50%;
  background-size:cover;
  margin:0 0 2rem;
  padding:2.5rem;
  position:relative;
  width:100%;
}

.wc-block-featured-product > * + *{
  margin-top:2rem;
}

.wc-block-featured-product,
.wc-block-featured-product .wc-block-featured-product__wrapper{
  -ms-flex-align:center;
  -ms-flex-line-pack:center;
  -ms-flex-pack:center;
  -ms-flex-wrap:wrap;
  -webkit-box-align:center;
  -webkit-box-pack:center;
  align-content:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.wc-block-featured-product .wc-block-featured-product__wrapper{
  height:100%;
  overflow:hidden;
}

.wc-block-featured-product.has-left-content{
  -ms-flex-pack:start;
  -webkit-box-pack:start;
  justify-content:flex-start;
}

.wc-block-featured-product.has-left-content .wc-block-featured-product__description,
.wc-block-featured-product.has-left-content .wc-block-featured-product__price,
.wc-block-featured-product.has-left-content .wc-block-featured-product__title,
.wc-block-featured-product.has-left-content .wc-block-featured-product__variation{
  margin-left:0;
  margin-right:auto;
  text-align:left;
}

.wc-block-featured-product.has-right-content{
  -ms-flex-pack:end;
  -webkit-box-pack:end;
  justify-content:flex-end;
}

.wc-block-featured-product.has-right-content .wc-block-featured-product__description,
.wc-block-featured-product.has-right-content .wc-block-featured-product__price,
.wc-block-featured-product.has-right-content .wc-block-featured-product__title,
.wc-block-featured-product.has-right-content .wc-block-featured-product__variation{
  margin-left:auto;
  margin-right:0;
  text-align:right;
}

.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__price,
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation{
  color:var(--color-white);
  margin-bottom:0;
  text-align:center;
}

.wc-block-featured-product .wc-block-featured-product__description a,
.wc-block-featured-product .wc-block-featured-product__description a:active,
.wc-block-featured-product .wc-block-featured-product__description a:focus,
.wc-block-featured-product .wc-block-featured-product__description a:hover,
.wc-block-featured-product .wc-block-featured-product__price a,
.wc-block-featured-product .wc-block-featured-product__price a:active,
.wc-block-featured-product .wc-block-featured-product__price a:focus,
.wc-block-featured-product .wc-block-featured-product__price a:hover,
.wc-block-featured-product .wc-block-featured-product__title a,
.wc-block-featured-product .wc-block-featured-product__title a:active,
.wc-block-featured-product .wc-block-featured-product__title a:focus,
.wc-block-featured-product .wc-block-featured-product__title a:hover,
.wc-block-featured-product .wc-block-featured-product__variation a,
.wc-block-featured-product .wc-block-featured-product__variation a:active,
.wc-block-featured-product .wc-block-featured-product__variation a:focus,
.wc-block-featured-product .wc-block-featured-product__variation a:hover{
  color:var(--color-white);
}

.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__link,
.wc-block-featured-product .wc-block-featured-product__price,
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation{
  width:100%;
  z-index:1;
}

.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation{
  border:0;
  margin-top:0;
}

.wc-block-featured-product .wc-block-featured-product__title:before,
.wc-block-featured-product .wc-block-featured-product__variation:before{
  display:none;
}

.wc-block-featured-product .wc-block-featured-product__variation{
  font-style:italic;
  padding-top:0;
}

.wc-block-featured-product__description{
  font-size:1.266rem;
  max-width:35rem;
}

.wc-block-featured-product .wc-block-featured-product__description p{
  margin:0;
}

.wc-block-featured-product__price{
  font-size:1.424rem;
  font-weight:bold;
}

.wc-block-featured-product__price ins{
  background:none;
}

.wc-block-featured-product__price del{
  font-weight:normal;
  opacity:0.65;
}

.wc-block-featured-product.has-background-dim:before{
  background-color:inherit;
  bottom:0;
  content:"";
  left:0;
  opacity:.5;
  position:absolute;
  right:0;
  top:0;
  z-index:1;
}

.wc-block-featured-product.has-background-dim.has-background-dim-10:before{
  opacity:.1;
}

.wc-block-featured-product.has-background-dim.has-background-dim-20:before{
  opacity:.2;
}

.wc-block-featured-product.has-background-dim.has-background-dim-30:before{
  opacity:.3;
}

.wc-block-featured-product.has-background-dim.has-background-dim-40:before{
  opacity:.4;
}

.wc-block-featured-product.has-background-dim.has-background-dim-50:before{
  opacity:.5;
}

.wc-block-featured-product.has-background-dim.has-background-dim-60:before{
  opacity:.6;
}

.wc-block-featured-product.has-background-dim.has-background-dim-70:before{
  opacity:.7;
}

.wc-block-featured-product.has-background-dim.has-background-dim-80:before{
  opacity:.8;
}

.wc-block-featured-product.has-background-dim.has-background-dim-90:before{
  opacity:.9;
}

.wc-block-featured-product.has-background-dim.has-background-dim-100:before{
  opacity:1;
}

.wc-block-featured-product.alignleft,.wc-block-featured-product.alignright{
  max-width:305px;
  width:100%;
}

.wc-block-featured-product:after{
  content:"";
  display:block;
  font-size:0;
  min-height:inherit;
}

@supports ((position: -webkit-sticky) or (position: sticky)){
  .wc-block-featured-product:after{
    content:none;
  }
}

.wc-block-featured-product.aligncenter,
.wc-block-featured-product.alignleft,
.wc-block-featured-product.alignright,
.wc-block-product-search .wc-block-product-search__fields{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-featured-product .wp-block-button__link:hover{
  color:var(--color-white);
}

.wc-block-featured-product .wp-block-button:not(.is-style-outline) .has-text-color:hover,
.wc-block-featured-product .wp-block-button:not(.is-style-outline) .has-background:hover{
  color:var(--color-white) !important;
}

.wc-block-featured-product .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color){
  border-color:inherit;
  color:var(--color-white);
}

.wc-block-featured-product .wp-block-button.is-style-outline .wp-block-button__link:hover{
  background-color:var(--color-white);
  border-color:var(--color-white);
  color:var(--color-primary-base);
}

.wp-block-woocommerce-attribute-filter{
  margin-bottom:2rem;
}

.wp-block-woocommerce-attribute-filter > *:not(.wc-block-attribute-filter){
  color:var(--color-secondary-base);
  font-size:1.125rem;
  margin-bottom:0.75rem;
  padding-bottom:0.75rem;
  position:relative;
}

.wp-block-woocommerce-attribute-filter > *:not(.wc-block-attribute-filter):after{
  background-color:var(--color-secondary-lightest);
  border-radius:30px;
  bottom:0;
  content:"";
  height:4px;
  left:0;
  position:absolute;
  width:100%;
}

.wc-block-attribute-filter-list{
  list-style:none;
  margin-bottom:0;
  margin-left:0;
}

.wc-block-attribute-filter-list > * + *{
  border-top:2px dotted var(--color-secondary-lightest);
  margin-top:0.5rem;
  padding-top:0.5rem;
}

.wc-block-attribute-filter-list li{
  -ms-flex-align:center;
  -ms-flex-wrap:wrap;
  -webkit-box-align:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
}

.wc-block-attribute-filter-list li label{
  margin-left:0.5rem;
}

.wc-block-attribute-filter-list .wc-block-attribute-filter-list-count{
  color:var(--color-secondary-base);
  font-style:italic;
  margin-left:0.25rem;
}

.wc-block-attribute-filter-list .wc-block-attribute-filter-list-count::before{
  content:"\2014";
  padding-right:0.25rem;
}

.wc-block-price-slider{
  margin-bottom:2rem;
}

.wp-block-woocommerce-price-filter > :first-child{
  color:var(--color-secondary-base);
  font-size:1.125rem;
  margin-bottom:1rem;
}

.wc-block-price-filter .wc-block-price-filter__range-input-wrapper,
.wc-block-price-filter .wc-block-price-filter__range-input-progress{
  border-radius:4px;
}

.wc-block-price-filter .wc-block-price-filter__range-input-wrapper{
  -moz-appearance:none;
  -webkit-appearance:none;
  -webkit-box-shadow:inset 0 0 0 1px var(--color-secondary-lighter);
  appearance:none;
  background-color:var(--color-white);
  border:0;
  box-shadow:inset 0 0 0 1px var(--color-secondary-lighter);
  clear:both;
  height:8px;
  margin:2rem 0;
  outline:none;
  padding:0;
  position:relative;
}

.wc-block-price-filter .wc-block-price-filter__range-input-progress{
  --range-color:#C1CCD6;
  --track-background:linear-gradient(90deg,transparent var(--low),var(--range-color) 0,var(--range-color) var(--high),transparent 0) no-repeat 0 100%/100% 100%;
  background:var(--track-background);
  height:8px;
  left:0;
  position:absolute;
  top:0;
  width:100%;
}

.wc-block-price-filter .wc-block-price-filter__controls{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  margin:0 0 1.5rem;
}

.wc-block-price-filter .wc-block-price-filter__amount{
  border-radius:30px;
  margin:0;
  max-width:100px;
  min-width:0;
  padding:0.4em;
  text-align:center;
  width:auto;
}

.wc-block-price-filter .wc-block-price-filter__amount.wc-block-price-filter__amount--min{
  margin-right:1rem;
}

.wc-block-price-filter .wc-block-price-filter__amount.wc-block-price-filter__amount--max{
  margin-left:auto;
}

.wc-block-price-filter.wc-block-price-filter--has-filter-button .wc-block-price-filter__controls{
  -ms-flex-align:center;
  -ms-flex-pack:end;
  -webkit-box-align:center;
  -webkit-box-pack:end;
  align-items:center;
  justify-content:flex-end;
}

.wc-block-price-filter.wc-block-price-filter--has-filter-button .wc-block-price-filter__controls .wc-block-price-filter__amount.wc-block-price-filter__amount--max{
  margin-left:0;
  margin-right:10px;
}

.wc-block-price-filter.wc-block-price-filter--has-filter-button .wc-block-price-filter__controls .wc-block-price-filter__button{
  margin-left:auto;
  padding:0.4em 0.85em;
  white-space:nowrap;
}

.wc-block-price-filter .wc-block-price-filter__range-input{
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background:transparent;
  border:0;
  display:block;
  height:0;
  margin:0;
  outline:none;
  outline:none!important;
  padding:0;
  pointer-events:none;
  position:relative;
  width:100%;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-runnable-track{
  -webkit-appearance:none;
  appearance:none;
  cursor:default;
  height:1px;
  outline:0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-thumb{
  -webkit-appearance:none;
  -webkit-box-shadow:0 0 0 1px var(--color-secondary-lighter);
  -webkit-transition:-webkit-transform .2s ease-in-out;
  appearance:none;
  background-color:var(--color-accent-base);
  border:3px solid var(--color-white);
  border-radius:50%;
  box-shadow:0 0 0 1px var(--color-secondary-lighter);
  cursor:pointer;
  height:30px;
  margin:-12px 0 0;
  padding:0;
  pointer-events:auto;
  transition:-webkit-transform .2s ease-in-out;
  transition:transform .2s ease-in-out;
  transition:transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  vertical-align:middle;
  width:30px;
  z-index:20;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-thumb:hover{
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input::-webkit-slider-progress{
  -webkit-appearance:none;
  appearance:none;
  background:transparent;
  border:0;
  margin:0;
  outline:none;
  padding:0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-focus-outer{
  border:0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-track{
  -moz-appearance:none;
  appearance:none;
  cursor:default;
  height:1px;
  outline:0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-progress{
  -moz-appearance:none;
  appearance:none;
  background:transparent;
  border:0;
  margin:0;
  outline:none;
  padding:0;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-thumb{
  -moz-appearance:none;
  -moz-transition:transform .2s ease-in-out;
  appearance:none;
  background-color:var(--color-accent-base);
  border:3px solid var(--color-white);
  border-radius:50%;
  box-shadow:0 0 0 1px var(--color-secondary-lighter);
  cursor:pointer;
  height:30px;
  margin-bottom:-12px;
  padding:0;
  pointer-events:auto;
  transition:transform .2s ease-in-out;
  vertical-align:middle;
  width:30px;
  z-index:20;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-moz-range-thumb:hover{
  transform:scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb{
  -ms-transition:transform .2s ease-in-out;
  appearance:none;
  background-color:var(--color-accent-base);
  border:3px solid var(--color-white);
  border-radius:50%;
  box-shadow:0 0 0 1px var(--color-secondary-lighter);
  cursor:pointer;
  height:30px;
  margin:-12px 0 0;
  padding:0;
  pointer-events:auto;
  transition:-webkit-transform .2s ease-in-out;
  transition:transform .2s ease-in-out;
  vertical-align:middle;
  width:30px;
  z-index:20;
}

.wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb:hover{
  transform:scale(1.1);
}

.wc-block-price-filter .wc-block-price-filter__range-input.wc-block-price-filter__range-input--min{
  z-index:21;
}

.wc-block-price-filter .wc-block-price-filter__range-input.wc-block-price-filter__range-input--max{
  z-index:20;
}

.wc-block-price-filter.is-disabled:not(.is-loading) .wc-block-price-filter__amount,.wc-block-price-filter.is-disabled:not(.is-loading) .wc-block-price-filter__button,.wc-block-price-filter.is-disabled:not(.is-loading) .wc-block-price-filter__range-input-wrapper{
  -webkit-animation:none;
  animation:none;
}

.rtl .wc-block-price-filter .wc-block-price-filter__range-input-wrapper .wc-block-price-filter__range-input-progress{
  --range-color:#C1CCD6;
  --track-background:linear-gradient(270deg,transparent var(--low),var(--range-color) 0,var(--range-color) var(--high),transparent 0) no-repeat 0 100%/100% 100%;
  background:var(--track-background);
}

@supports (-ms-ime-align: auto){
  .wc-block-price-filter .wc-block-price-filter__range-input-wrapper{
    -webkit-box-shadow:none;
    background:transparent;
    box-shadow:none;
    height:24px;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input-wrapper .wc-block-price-filter__range-input-progress{
    -webkit-box-shadow:inset 0 0 0 1px #95588a;
    background:#a8739d;
    box-shadow:inset 0 0 0 1px #95588a;
    top:7px;
    width:100%;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input{
    height:24px;
    left:0;
    pointer-events:auto;
    position:absolute;
    top:0;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-track{
    background:transparent;
    border-color:transparent;
    border-width:7px 0;
    color:transparent;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-fill-lower{
    background:var(--color-secondary-lighter);
    box-shadow:inset 0 0 0 1px #b8b8b8;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-fill-upper{
    background:transparent;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-tooltip{
    display:none;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb{
    pointer-events:auto;
    transform:translate(1px);
  }
  .wc-block-price-filter .wc-block-price-filter__range-input--max::-ms-fill-upper{
    background:var(--color-secondary-lighter);
    box-shadow:inset 0 0 0 1px #b8b8b8;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input--max::-ms-fill-lower{
    background:transparent;
  }
  .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:loading-fade 1.2s ease-in-out infinite;
    -webkit-box-shadow:none;
    animation:loading-fade 1.2s ease-in-out infinite;
    background-color:#e2e4e7!important;
    border:0;
    box-shadow:none;
    color:transparent;
  }
  .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper:after,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper:after{
    content:"\00a0";
  }
  .wc-block-price-filter.is-disabled:not(.is-loading) .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:none;
    animation:none;
  }
}

.wc-block-reviews-by-product{
  margin-bottom:2rem;
}

.wc-block-review-list{
  list-style:none;
  margin-bottom:0;
  margin-left:0;
  padding-left:0;
}

.wc-block-review-list > * + *{
  margin-top:2.5rem;
}

.wc-block-review-list li{
  border:1px solid var(--color-secondary-lighter);
  border-radius:1px;
  padding:1.5rem;
}

.wc-block-review-list-item__info{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-review-list-item__image{
  -ms-flex-order:2;
  -webkit-box-ordinal-group:3;
  margin-left:auto;
  order:2;
}

.wc-block-review-list-item__product{
  font-family:var(--font-headings);
}

.wc-block-review-list-item__product a:not(:hover){
  color:inherit;
}

.wc-block-review-list-item__rating + .wc-block-review-list-item__product{
  line-height:1.35;
  margin-top:0.5rem;
}

.wc-block-review-list-item__image img{
  border:2px solid var(--color-secondary-lightest);
  border-radius:50%;
  padding:2px;
}

.wc-block-review-list-item__author,
.wc-block-review-list-item__published-date{
  color:var(--color-secondary-base);
}

.wc-block-review-list-item__author{
  display:inline-block;
  font-size:0.889rem;
  font-weight:bold;
}

.wc-block-review-list-item__author + .wc-block-review-list-item__published-date{
  margin-left:0.25rem;
}

.wc-block-review-list-item__author + .wc-block-review-list-item__published-date::before{
  content:"\2014";
  margin-right:0.25rem;
}

.wc-block-review-list-item__published-date{
  font-size:0.889rem;
  line-height:1.25;
}

.wc-block-review-list-item__product a{
  text-decoration:none;
}

.wc-block-review-list-item__text::before{
  background-color:var(--color-secondary-lightest);
  border-radius:999px;
  content:"";
  display:block;
  height:4px;
  margin-bottom:1rem;
  width:100%;
}

.wc-block-review-list-item__text{
  margin-top:1rem;
}

.wc-block-review-list-item__text > div > div > :last-child{
  margin-bottom:0;
}

.wc-block-all-reviews{
  margin-bottom:2rem;
}

.wc-block-all-reviews > * + *,
.wc-block-reviews-by-product > * + *{
  margin-top:2.5rem;
}

.wc-block-sort-select{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-sort-select label{
  color:var(--color-secondary-base);
  margin-right:0.5rem;
}

.wc-block-sort-select select{
  max-width:300px;
}

.wc-block-product-categories{
  margin-bottom:2rem;
}

ul.wc-block-product-categories-list--depth-0{
  list-style:none;
  margin-left:0;
}

ul.wc-block-product-categories-list--depth-0 > li{
  -ms-flex-align:center;
  -ms-flex-pack:center;
  -ms-flex-positive:1;
  -webkit-box-align:center;
  -webkit-box-flex:1;
  -webkit-box-pack:center;
  align-items:center;
  background-color:var(--color-secondary-lightest);
  border-radius:10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-grow:1;
  justify-content:center;
  margin-top:2rem;
  min-height:9rem;
  padding:1rem;
  position:relative;
  text-align:center;
  width:100%;
}

.wc-block-product-categories ul.wc-block-product-categories-list--depth-0 > li a{
  text-decoration:none;
}

.wc-block-product-categories ul.wc-block-product-categories-list--depth-0 > li a:not(:hover){
  color:inherit;
}

.wc-block-product-categories-list-item-count::before,
.wc-block-product-categories-list-item-count::after{
  display:none;
}

.wc-block-product-categories-list-item-count{
  background-color:rgba(255,255,255,0.5);
  border-radius:50%;
  color:var(--color-primary-base);
  font-size:0.8125rem;
  font-weight:bold;
  height:25px;
  line-height:25px;
  position:absolute;
  right:0.25rem;
  top:0.25rem;
  width:25px;
}

.wc-block-product-categories.is-dropdown{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-product-categories__dropdown{
  width:100%;
}

.is-dropdown .wc-block-product-categories__button{
  margin-left:1rem;
}

.wc-block-product-categories__button svg{
  fill:currentColor;
}

.wc-block-product-search__label{
  color:var(--color-secondary-base);
  display:block;
  font-size:1.125rem;
  font-weight:bold;
  margin-bottom:1rem;
}

.wc-block-product-search__fields{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.wc-block-product-search__field{
  width:100%;
}

.wc-block-product-search__button{
  margin-left:1rem;
}

.wc-block-product-search__button svg{
  fill:currentColor;
}

@media (min-width: 500px){
  table.cart .coupon{
    display:-webkit-inline-box;
    display:-ms-inline-flexbox;
    display:inline-flex;
  }
  table.cart .coupon input{
    width:60%;
  }
  table.cart .coupon button{
    margin-left:1rem;
    width:40%;
  }
  table.cart .coupon > * + *{
    margin-top:0;
  }
  .wc-block-grid:not(.has-1-columns) .wc-block-grid__product,
    ul.products li.product{
    width:50%;
  }
  .wc-block-grid:not(.has-1-columns) .wc-block-grid__products > :nth-of-type(-n+2),
    ul.products li.product:nth-of-type(-n+2){
    margin-top:0;
  }
  .woocommerce-pagination{
    margin-left:-2rem;
    margin-right:-2rem;
    padding:0 2rem;
  }
  .woocommerce.archive ul.products{
    margin-left:-2rem;
    margin-right:-2rem;
  }
  .archive ul.products li.product{
    padding-left:2rem;
    padding-right:2rem;
  }
  .archive ul.products li.product > a.woocommerce-LoopProduct-link:first-of-type,
	.archive ul.products li.product.product-category > a{
    margin-left:-2rem;
    margin-right:-2rem;
  }
  .woocommerce-checkout #billing_first_name_field,
	.woocommerce-checkout #billing_last_name_field,
	.woocommerce-checkout #billing_postcode_field,
	.woocommerce-checkout #billing_state_field,
	.woocommerce-checkout #billing_phone_field,
	.woocommerce-checkout #billing_email_field{
    width:50%;
  }
  .single-product .product .product_title{
    font-size:2.281rem;
  }
  .woocommerce-Reviews .comment-respond .comment-form{
    background-color:transparent;
    padding:0;
  }
  .single-product .product .product_title{
    font-size:1.602rem;
  }
}

@media screen and (min-width: 600px){
  .woocommerce-ordering,
	.woocommerce-result-count{
    margin-bottom:2rem;
    margin-top:0.75rem;
  }
  .woocommerce-ordering{
    width:auto;
  }
}

@media (min-width: 768px){
  .wc-block-grid.has-4-columns .wc-block-grid__product{
    width:50%;
  }
  .wc-block-grid.has-4-columns .wc-block-grid__products > :nth-of-type(-n+2){
    margin-top:0;
  }
  .wc-block-grid.has-3-columns .wc-block-grid__product,
	.wc-block-grid.has-5-columns .wc-block-grid__product,
    .wc-block-grid.has-6-columns .wc-block-grid__product,
    ul.products.columns-3 li.product{
    width:33.333333%;
  }
  .wc-block-grid.has-3-columns .wc-block-grid__products > :nth-of-type(-n+3),
	.wc-block-grid.has-5-columns .wc-block-grid__products > :nth-of-type(-n+3),
    .wc-block-grid.has-6-columns .wc-block-grid__products > :nth-of-type(-n+3),
    ul.products.columns-3 li.product:nth-of-type(-n+3){
    margin-top:0;
  }
  .cart-contents{
    margin-left:25px;
  }
  .woocommerce-active .header-search-button{
    border-left:1px solid var(--color-secondary-lighter);
    padding-left:0.75rem;
  }
  .inactive-sidebar.woocommerce .site-main{
    display:block;
  }
  #reviews #comments ol.commentlist li img.avatar{
    left:0;
    margin-bottom:0;
    position:absolute;
    top:2rem;
  }
  #reviews #comments ol.commentlist li .comment-text{
    margin:0 0 0 66px;
  }
  .inactive-sidebar .wc-block-review-list{
    -ms-flex-wrap:wrap;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap:wrap;
    margin:0 -1.25rem 0;
  }
  .inactive-sidebar .wc-block-review-list-item__item{
    margin-left:1.25rem;
    margin-right:1.25rem;
    width:calc(50% - 2.5rem);
  }
  .inactive-sidebar .wc-block-review-list > :nth-child(2){
    margin-top:0;
  }
  ul.wc-block-product-categories-list--depth-0{
    -ms-flex-wrap:wrap;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap:wrap;
    margin:0 -1rem;
  }
  ul.wc-block-product-categories-list--depth-0 > li{
    margin-left:1rem;
    margin-right:1rem;
    width:25%;
  }
  .entry-content > * + .wc-block-product-categories.is-list{
    margin-top:-2rem;
  }
}

@media only screen and (min-width: 768px){
  .woocommerce-result-count{
    float:left;
  }
  .woocommerce-ordering{
    float:right;
  }
  .woocommerce-ordering + .products{
    clear:both;
  }
}

@media (min-width: 992px){
  table.cart .product-thumbnail{
    width:120px;
  }
  table.cart .actions > * + *{
    margin-top:0;
  }
  table.cart .actions > button[type="submit"]{
    float:right;
    width:auto;
  }
  table.cart .coupon,
	table.cart .coupon input,
	table.cart .coupon button{
    width:auto;
  }
  .wc-block-grid.has-4-columns .wc-block-grid__product,
    ul.products.columns-4 li.product{
    width:25%;
  }
  .wc-block-grid.has-4-columns .wc-block-grid__products > :nth-of-type(-n+4),
    ul.products.columns-4 li.product:nth-of-type(-n+4){
    margin-top:0;
  }
  .wc-block-grid.has-5-columns .wc-block-grid__product,
    ul.products.columns-5 li.product{
    width:20%;
  }
  .wc-block-grid.has-5-columns .wc-block-grid__products > :nth-of-type(-n+5),
    ul.products.columns-6 > :nth-of-type(-n+5){
    margin-top:0;
  }
  .wc-block-grid.has-6-columns .wc-block-grid__product,
    ul.products.columns-6 li.product{
    width:16.666667%;
  }
  .wc-block-grid.has-6-columns .wc-block-grid__products > :nth-of-type(-n+6),
    ul.products.columns-6 > :nth-of-type(-n+6){
    margin-top:0;
  }
  table.shop_table_responsive thead{
    display:table-header-group;
  }
  table.shop_table_responsive tbody th{
    display:table-cell;
  }
  table.shop_table_responsive tr td{
    display:table-cell;
    text-align:inherit;
  }
  table.shop_table_responsive tr td:not(.product-thumbnail):before{
    content:"";
    float:none;
  }
  .shop_table_responsive .product-remove{
    background-color:transparent;
  }
  .shop_table_responsive .product-thumbnail{
    text-align:inherit;
  }
  table.shop_table tbody > tr:first-of-type > *{
    border-top:none;
  }
  .woocommerce.archive .products{
    clear:both;
    width:100%;
  }
  .woocommerce.archive.has-sidebar .products{
    width:calc(100% + 2.5rem);
  }
  .woocommerce.archive.inactive-sidebar .products{
    margin-left:0;
    margin-right:0;
  }
  .woocommerce-account .entry-content > .woocommerce > * + *{
    margin-top:0;
  }
  .woocommerce-orders-table__cell-order-actions > :first-child,
    .woocommerce-order-downloads .download-file > *{
    margin-top:0;
  }
  .woocommerce-orders-table__cell-order-actions > * + *{
    margin-top:1rem;
  }
  .woocommerce-orders-table .button,
    .woocommerce-order-downloads .button{
    font-weight:bold;
    padding:0.65em 0.75em;
  }
  .woocommerce-order-received .woocommerce-order{
    -ms-flex-pack:justify;
    -ms-flex-wrap:wrap;
    -webkit-box-pack:justify;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }
  .woocommerce-order-received .woocommerce-order > *{
    -ms-flex-order:3;
    -webkit-box-ordinal-group:4;
    order:3;
    width:48%;
  }
  .woocommerce-order-received .woocommerce-thankyou-order-details{
    -ms-flex-order:1;
    -webkit-box-ordinal-group:2;
    order:1;
  }
  .woocommerce-order-received .woocommerce-notice{
    -ms-flex-item-align:center;
    -ms-flex-order:2;
    -webkit-box-ordinal-group:3;
    align-self:center;
    font-weight:bold;
    order:2;
  }
  .single-product div.product{
    -ms-flex-wrap:wrap;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap:wrap;
  }
  .single-product .product .woocommerce-product-gallery{
    -ms-flex-order:1;
    -webkit-box-ordinal-group:2;
    order:1;
    width:50%;
  }
  .single-product .product .entry-summary{
    -ms-flex-order:2;
    -webkit-box-ordinal-group:3;
    margin-top:0;
    order:2;
    padding-left:2.5rem;
    width:50%;
  }
  .single-product .product .woocommerce-tabs,
	.single-product .product .related.products{
    -ms-flex-order:3;
    -webkit-box-ordinal-group:4;
    order:3;
    width:100%;
  }
  .woocommerce-tabs ul.tabs,
	.woocommerce-MyAccount-navigation ul{
    border-left:none;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-bottom:0;
    padding-left:0;
  }
  .woocommerce-tabs ul.tabs li,
	.woocommerce-MyAccount-navigation li{
    border:1px solid var(--color-secondary-lighter);
    margin:0;
    position:relative;
  }
  .woocommerce-tabs ul.tabs li,
	.woocommerce-MyAccount-navigation li{
    margin-left:0.25rem;
  }
  .woocommerce-tabs ul.tabs li a,
	.woocommerce-MyAccount-navigation li a{
    background-color:var(--color-secondary-lightest);
    color:var(--color-secondary-base);
    display:block;
    height:100%;
    line-height:1.45;
    padding:0.75em;
  }
  .entry-content .woocommerce-MyAccount-navigation li a{
    text-decoration:none;
  }
  .woocommerce-tabs ul.tabs li.active a,
	.woocommerce-MyAccount-navigation li.is-active a{
    background:none;
    color:inherit;
  }
  .woocommerce-tabs ul.tabs li.active,
	.woocommerce-MyAccount-navigation li.is-active{
    border-bottom-color:var(--color-white);
    bottom:-1px;
  }
  .woocommerce-tabs .wc-tab,
	.woocommerce-MyAccount-content{
    border-top:1px solid var(--color-secondary-lighter);
    padding:2rem 0 0;
  }
  .woocommerce-tabs{
    border-top:none;
  }
}

@media only screen and (max-width: 768px){
  .cart-contents{
    line-height:44px;
  }
  .cart-contents span{
    top:7px;
  }
  #site-header-cart .widget_shopping_cart{
    display:none;
  }
  #page #reviews #comments ol.commentlist li .star-rating{
    float:none;
  }
}

@media (-ms-high-contrast:active), (-ms-high-contrast: none){
  .wc-block-price-filter .wc-block-price-filter__range-input-wrapper{
    -webkit-box-shadow:none;
    background:transparent;
    box-shadow:none;
    height:24px;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input-wrapper .wc-block-price-filter__range-input-progress{
    -webkit-box-shadow:inset 0 0 0 1px #95588a;
    background:#a8739d;
    box-shadow:inset 0 0 0 1px #95588a;
    top:7px;
    width:100%;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input{
    height:24px;
    left:0;
    pointer-events:auto;
    position:absolute;
    top:0;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-track{
    background:transparent;
    border-color:transparent;
    border-width:7px 0;
    color:transparent;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-fill-lower{
    background:var(--color-secondary-lighter);
    box-shadow:inset 0 0 0 1px #b8b8b8;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-fill-upper{
    background:transparent;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-tooltip{
    display:none;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input::-ms-thumb{
    pointer-events:auto;
    transform:translate(1px);
  }
  .wc-block-price-filter .wc-block-price-filter__range-input--max::-ms-fill-upper{
    background:var(--color-secondary-lighter);
    box-shadow:inset 0 0 0 1px #b8b8b8;
  }
  .wc-block-price-filter .wc-block-price-filter__range-input--max::-ms-fill-lower{
    background:transparent;
  }
  .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:loading-fade 1.2s ease-in-out infinite;
    -webkit-box-shadow:none;
    animation:loading-fade 1.2s ease-in-out infinite;
    background-color:#e2e4e7!important;
    border:0;
    box-shadow:none;
    color:transparent;
  }
  .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper:after,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper:after{
    content:"\00a0";
  }
  .wc-block-price-filter.is-disabled:not(.is-loading) .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:none;
    animation:none;
  }
}

@media (hover: none) and (pointer: coarse){
  #site-header-cart .widget_shopping_cart{
    display:none;
  }
}

@media screen and (-ms-high-contrast:active) and (prefers-reduced-motion: reduce){
  .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:none;
    animation:none;
  }
}

@media screen and (prefers-reduced-motion: reduce){
  .wc-block-price-filter.is-disabled .wc-block-price-filter__amount,
    .wc-block-price-filter.is-disabled .wc-block-price-filter__button,
    .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper,
    .wc-block-price-filter.is-loading .wc-block-price-filter__amount,
    .wc-block-price-filter.is-loading .wc-block-price-filter__button,
    .wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper{
    -webkit-animation:none;
    animation:none;
  }
  @supports (-ms-ime-align: auto){
    .wc-block-price-filter.is-disabled .wc-block-price-filter__range-input-wrapper,.wc-block-price-filter.is-loading .wc-block-price-filter__range-input-wrapper{
      -webkit-animation:none;
      animation:none;
    }
  }
}/*
This file is part of the plugin Login with Vipps
Copyright (c) 2019 WP-Hosting AS

MIT License

Copyright (c) 2019 WP-Hosting AS

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/* Styles for wp-login.php */
#continue-with-vipps-wrapper, .continue-with-vipps-wrapper.center-block {
 text-align:center;
 display: block;
 padding: 0.5rem 0;
}
#continue-with-vipps-wrapper {
 margin: 20px;
}

#continue-with-vipps-wrapper .button.continue-with-vipps {
 margin: 0 auto;
 width: 100%;
 height: 48px; 
 line-height: 48px;
} 

/* And the rest */
.continue-with-vipps-wrapper.center-block .button.continue-with-vipps {
 margin: 0 auto;
 width: 100%;
}
.continue-with-vipps-wrapper {
 display:inline-block;
}
.continue-with-vipps-wrapper a.button.continue-with-vipps img {
    max-width: 100%;
    margin:0px;
    display:inline;
    height: 2ex;
    vertical-align: text-bottom;
}
.continue-with-vipps-wrapper a.button.continue-with-vipps:hover img {
    opacity: 0.9;
}
.continue-with-vipps-wrapper a.button.continue-with-vipps.disabled img {
    opacity: 0.7;
}
.continue-with-vipps-wrapper a.button.continue-with-vipps {
 display: inline-block;
 border-radius: 17px;
 color: #fff;
 background-color: #fe5b24;
 border: 0;
 padding:0;
 font-size: 22px;
 height: 48px;
 line-height: 48px;
 font-weight: 400;
 text-align:center;
 cursor: pointer;
 box-sizing: border-box;
}

.continue-with-vipps-wrapper.inline a.button.continue-with-vipps {
 font-size: 1em;
 line-height: 2em;
 font-weight: 500;
 height: auto;
 padding: 5px 10px 4px 10px;
}

.continue-with-vipps-wrapper a.button.continue-with-vipps:focus {
 outline:0; 
}
.continue-with-vipps-wrapper a.button.continue-with-vipps:active, #continue-with-vipps-wrapper a.button.continue-with-vipps:active {
 border: 0;
}

.vippsorange, .button.vippsorange, button.vippsorange{
 background-color: #fe5b24;
 color: #fff;
}

/* For woocommerce */
.widget_shopping_cart .continue-with-vipps-wrapper.center-block, .widget_shopping_cart .continue-with-vipps-wrapper {
 width:100%
}

.widget_shopping_cart .continue-with-vipps-wrapper.widget a.button.continue-with-vipps{
 float: none;
 color: #fff;
 background-color: #fe5b24;
 font-size: 14.5px;
 padding: 5px 10px 4px 10px;
 width:80%;
 margin-top: 0;
 margin-bottom: 0;
 margin-left: auto;
 margin-right: auto;
 clear: both;
}
.widget_shopping_cart .continue-with-vipps-wrapper a.button.continue-with-vipps:hover{
 color: #fff;
 background-color: #fe5b24;
 border: 0;
}

/* This is for a plugin I'm doing testing with. */
.woocommerce-cart-tab-container .widget_shopping_cart a.button.continue-with-vipps{
 min-width: 190px;
}
/* Banner code */
.woocommerce-info.vipps-info {
 color:#fff;
 background-color: #fe5b24;
 border-color: #fe5b24;
    
}
.woocommerce-info.vipps-info img.vipps-logo {
 margin:0px;
}
.woocommerce-info.vipps-info a {
 color:#fff;
 background-color: transparent;
}
.woocommerce-info.vipps-info a:hover {
    color:#fff;
    font-weight: bolder;
    background-color: transparent;
}
.woocommerce-info.vipps-info::before {
 color:#fff;
}
img.inline {
 height: 2ex;
 display:inline;
 vertical-align: text-bottom;
}


/* 

This file is part of the plugin Checkout with Vipps for WooCommerce
Copyright (c) 2019 WP-Hosting AS

MIT License

Copyright (c) 2019 WP-Hosting AS

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/* This is for the Gutenberg payment-block IOK 2020-08-10 */
.wc-block-components-tabs .wc-block-components-tabs__list > .wc-block-components-tabs__item .wc-block-components-tabs__item-content > img.vipps-payment-logo {
 height: 2em;
 margin-bottom: -0.7em;
}

/* And this is for the products blocks IOK 2020-09-03 */
.wc-block-grid__product .vippsbuynow {
}
.wc-block-grid__product .single-product.button.vipps-buy-now .inline.vipps-logo.negative {
    display: inline-block;
    margin: 0 .2em;
}
.wc-block-grid__product .single-product.button.vipps-buy-now {
 min-width:15em;
}

/* end block stuff for now */

form#vippsdata {
 margin:0;
}
h2.confirmVippsExpressCheckoutHeader {
 margin-top: 0;
}


a.button.vipps-express-checkout img {
    max-width: 100%;
    filter: drop-shadow( 0px 1px 2px #d7d7d7);
}
a.button.vipps-express-checkout:hover img {
    opacity: 0.9;
}
a.button.vipps-express-checkout.disabled img {
    opacity: 0.7;
}

li.wc_payment_method.payment_method_vipps img {
	max-width: 145px;
}

.wc-block-grid__products .wc-block-grid__product .wp-block-button__link.vipps-buy-now, .woocommerce ul.products li.product .button.vipps-buy-now, a.button.vipps-buy-now {
 color: #fff;
 background-color: #fe5b24;
}

ul.products li.product a.button.vipps-buy-now img {
 margin:0px;
 display:inline;
}

a.button.vipps-express-checkout {
 background-color: #fff;
 color: transparent;
 vertical-align: bottom;
 padding: 0;
 margin-left:.5em;
}
a.button.vipps-express-checkout:active, a.button.vipps-buy-now:active {
 border: 0;
}
a.button.vipps-express-checkout:hover, a.button.vipps-buy-now:hover {
 border: 0;
}

.widget_shopping_cart a.button.vipps-express-checkout {
 color:transparent;
 background-color: #fff;
 float: none;
 margin-top: .5em;
 margin-bottom: 0;
 margin-left: auto;
 margin-right: auto;
 clear: both;
}

/* This is for a plugin I'm doing testing with. */
.woocommerce-cart-tab-container .widget_shopping_cart a.button.vipps-express-checkout {
 min-width: 190px;
}

.vippslogincontainer {
 width: 100%;
 text-align: center;
}

a.button.vipps-login {
 vertical-align: bottom;
 max-width: 250px;
 color:transparent;
 background-color: #fff;
 margin: 1em auto;
 min-width: 190px;
 clear: both;
 padding:0;
}

/* Displays a 'vipps' information banner  */
.woocommerce-info.vipps-info {
 background-color: #fe5b24;
}
img.inline {
 height: 2ex;
 display:inline;
 vertical-align: text-bottom;
}


.vippsorange {
 background-color: #fe5b24;
}

.vippsspinner {
    width:125px;
    height:125px;
    display: none;
    position:absolute;
    top:50%;
    left:50%;
    margin-left: -62px;
    margin-top: -62px;
    transform:scale(0.6);
        -o-transform:scale(0.6);
        -ms-transform:scale(0.6);
        -webkit-transform:scale(0.6);
        -moz-transform:scale(0.6);
}

.vippsoverlay {
    background: #e9e9e9;
    position:fixed;
    display: none;
    top: 0;           
    right: 0;        
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1000;
}
body.processing {
 cursor: progress;
}
.processing .vippsoverlay {
    display:block;
}
.processing .vippsspinner  {
        display:block;
}


.f_circleG{
    position:absolute;
    background-color:rgb(255,255,255);
    height:22px;
    width:22px;
    border-radius:12px;
        -o-border-radius:12px;
        -ms-border-radius:12px;
        -webkit-border-radius:12px;
        -moz-border-radius:12px;
    animation-name:f_fadeG;
        -o-animation-name:f_fadeG;
        -ms-animation-name:f_fadeG;
        -webkit-animation-name:f_fadeG;
        -moz-animation-name:f_fadeG;
    animation-duration:1.2s;
        -o-animation-duration:1.2s;
        -ms-animation-duration:1.2s;
        -webkit-animation-duration:1.2s;
        -moz-animation-duration:1.2s;
    animation-iteration-count:infinite;
        -o-animation-iteration-count:infinite;
        -ms-animation-iteration-count:infinite;
        -webkit-animation-iteration-count:infinite;
        -moz-animation-iteration-count:infinite;
    animation-direction:normal;
        -o-animation-direction:normal;
        -ms-animation-direction:normal;
        -webkit-animation-direction:normal;
        -moz-animation-direction:normal;
}
#frotateG_01{
    left:0;
    top:51px;
    animation-delay:0.45s;
        -o-animation-delay:0.45s;
        -ms-animation-delay:0.45s;
        -webkit-animation-delay:0.45s;
        -moz-animation-delay:0.45s;
}
#frotateG_02{
    left:15px;
    top:15px;
    animation-delay:0.6s;
        -o-animation-delay:0.6s;
        -ms-animation-delay:0.6s;
        -webkit-animation-delay:0.6s;
        -moz-animation-delay:0.6s;
}
#frotateG_03{
    left:51px;
    top:0;
    animation-delay:0.75s;
        -o-animation-delay:0.75s;
        -ms-animation-delay:0.75s;
        -webkit-animation-delay:0.75s;
        -moz-animation-delay:0.75s;
}
#frotateG_04{
    right:15px;
    top:15px;
    animation-delay:0.9s;
        -o-animation-delay:0.9s;
        -ms-animation-delay:0.9s;
        -webkit-animation-delay:0.9s;
        -moz-animation-delay:0.9s;
}
#frotateG_05{
    right:0;
    top:51px;
    animation-delay:1.05s;
        -o-animation-delay:1.05s;
        -ms-animation-delay:1.05s;
        -webkit-animation-delay:1.05s;
        -moz-animation-delay:1.05s;
}
#frotateG_06{
    right:15px;
    bottom:15px;
    animation-delay:1.2s;
        -o-animation-delay:1.2s;
        -ms-animation-delay:1.2s;
        -webkit-animation-delay:1.2s;
        -moz-animation-delay:1.2s;
}
#frotateG_07{
    left:51px;
    bottom:0;
    animation-delay:1.35s;
        -o-animation-delay:1.35s;
        -ms-animation-delay:1.35s;
        -webkit-animation-delay:1.35s;
        -moz-animation-delay:1.35s;
}
#frotateG_08{
    left:15px;
    bottom:15px;
    animation-delay:1.5s;
        -o-animation-delay:1.5s;
        -ms-animation-delay:1.5s;
        -webkit-animation-delay:1.5s;
        -moz-animation-delay:1.5s;
}
@keyframes f_fadeG{
    0%{
        background-color:rgba(254,90,36,0.97);
    }
    100%{
        background-color:rgb(255,255,255);
    }
}
@-o-keyframes f_fadeG{
    0%{
        background-color:rgba(254,90,36,0.97);
    }
    100%{
        background-color:rgb(255,255,255);
    }
}
@-ms-keyframes f_fadeG{
    0%{
        background-color:rgba(254,90,36,0.97);
    }
    100%{
        background-color:rgb(255,255,255);
    }
}
@-webkit-keyframes f_fadeG{
    0%{
        background-color:rgba(254,90,36,0.97);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}
@-moz-keyframes f_fadeG{
    0%{
        background-color:rgba(254,90,36,0.97);
    }

    100%{
        background-color:rgb(255,255,255);
    }
}
/**
	HTML markup structure of an ad:

	<div class="wpcnt">
		<div class="wpa [wpmrec|wpwidesky|wpleaderboard]">
			<a class="wpa-about" href="http://wordpress.com/about-these-ads/" rel="nofollow">
			About these ads
			</a>
			<div class="u">
				[ad unit here]
			</div>
		</div>
	</div>
*/

/* outer container */
.wpcnt {
	text-align: center;
	line-height: 2;
}

/* inner container */
.wpa {
	position: relative;
	overflow: hidden;			/* this hides "about these ads" when there's no adfill */
	display: inline-block;
	max-width: 100%;			/* important! this bit of CSS will *crop* any ad that's larger than the parent container! */
}

/* about these ads */
.wpa-about {
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	display: block;
	margin-top: 0;
	color: #888;
	font: 10px/1 "Open Sans", Arial, sans-serif !important;
	text-align: left !important;
	text-decoration: none !important;
	opacity: 0.85;
	border-bottom: none !important;			/* some themes ad dotted underlines, that won't look nice */
	box-shadow: none !important;
}

/* ad unit wrapper */
.wpa .u>div {	/* @todo: deprecate wpdvert */
	display: block;
	margin-top: 5px;			/* this makes "about these ads" visible */
	margin-bottom: 1em;			/* every ad should have a little space below it */
}

div.wpa>div {
	margin-top: 20px;
}

.wpa .u .adsbygoogle {
	display: block;
	margin-top: 17px;			/* this makes "about these ads" visible */
	margin-bottom: 1em;			/* every ad should have a little space below it */
	background-color: transparent;
}
/*!
Theme Name: Aquene
Theme URI: https://theme.wordpress.com/themes/aquene
Author: Themes Harbor
Author URI: https://themesharbor.com/
Description: Aquene is stylish and lightweight theme specially crafted for magazines, newspapers or personal blogs. By taking a minimalist approach to design, theme is focusing more on readability to make the content more appealing, engaging and usable. Best of all, your sophisticated website will look great across all devices.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aquene
Tags: one-column, two-columns, left-sidebar, right-sidebar, grid-layout, custom-background, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, blog, entertainment, news

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Aquene is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

:root{
	--color-primary-dark:#111111;
	--color-primary-base:#2b2b2b;
	--color-primary-light:#2b2b2b;

	--color-secondary-base:#757575;
	--color-secondary-light:#aeaeae;
	--color-secondary-lighter:#e5e5e5;
	--color-secondary-lightest:#f5f5f5;

	--color-accent-dark:#bd1f55;
	--color-accent-base:#E91E63;
	--color-accent-light:#E91E63;

	--color-white:#ffffff;
	--color-red:red;
}

:root{
	--site-font-headings:'Lato';
	--site-font-body:'Lato';
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html{
  line-height:1.15;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
}

main{
  display:block;
}

h1{
  font-size:2em;
  margin:0.67em 0;
}

hr{
  -webkit-box-sizing:content-box;
  box-sizing:content-box;
  height:0;
  overflow:visible;
}

pre{
  font-family:monospace, monospace;
  font-size:1em;
}

a{
  background-color:transparent;
}

abbr[title]{
  border-bottom:none;
  text-decoration:underline;
  -webkit-text-decoration:underline dotted;
  text-decoration:underline dotted;
}

b,
strong{
  font-weight:bolder;
}

code,
kbd,
samp{
  font-family:monospace, monospace;
  font-size:1em;
}

small{
  font-size:80%;
}

sub,
sup{
  font-size:75%;
  line-height:0;
  position:relative;
  vertical-align:baseline;
}

sub{
  bottom:-0.25em;
}

sup{
  top:-0.5em;
}

img{
  border-style:none;
}

button,
input,
optgroup,
select,
textarea{
  font-family:inherit;
  font-size:100%;
  line-height:1.15;
  margin:0;
}

button,
input{
  overflow:visible;
}

button,
select{
  text-transform:none;
}

button,
[type="button"],
[type="reset"],
[type="submit"]{
  -webkit-appearance:button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner{
  border-style:none;
  padding:0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring{
  outline:1px dotted ButtonText;
}

fieldset{
  padding:0.35em 0.75em 0.625em;
}

legend{
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  color:inherit;
  display:table;
  max-width:100%;
  padding:0;
  white-space:normal;
}

progress{
  vertical-align:baseline;
}

textarea{
  overflow:auto;
}

[type="checkbox"],
[type="radio"]{
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  padding:0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button{
  height:auto;
}

[type="search"]{
  -webkit-appearance:textfield;
  outline-offset:-2px;
}

[type="search"]::-webkit-search-decoration{
  -webkit-appearance:none;
}

::-webkit-file-upload-button{
  -webkit-appearance:button;
  font:inherit;
}

details{
  display:block;
}

summary{
  display:list-item;
}

template{
  display:none;
}

[hidden]{
  display:none;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre{
  margin:0;
}

button{
  background-color:transparent;
  background-image:none;
  padding:0;
}

button:focus{
  outline:1px dotted;
  outline:5px auto -webkit-focus-ring-color;
}

fieldset{
  margin:0;
  padding:0;
}

ol,
ul{
  list-style:none;
  margin:0;
  padding:0;
}

html{
  font-family:system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height:1.5;
}

*,
::before,
::after{
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  border-width:0;
  border-style:solid;
  border-color:currentColor;
}

hr{
  border-top-width:1px;
}

img{
  border-style:solid;
}

textarea{
  resize:vertical;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  color:#a0aec0;
}

input::-moz-placeholder,
textarea::-moz-placeholder{
  color:#a0aec0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
  color:#a0aec0;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder{
  color:#a0aec0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
  color:#a0aec0;
}

input::-moz-placeholder, textarea::-moz-placeholder{
  color:#a0aec0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder{
  color:#a0aec0;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder{
  color:#a0aec0;
}

input::placeholder,
textarea::placeholder{
  color:#a0aec0;
}

button,
[role="button"]{
  cursor:pointer;
}

table{
  border-collapse:collapse;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-size:inherit;
  font-weight:inherit;
}

a{
  color:inherit;
  text-decoration:inherit;
}

button,
input,
optgroup,
select,
textarea{
  color:inherit;
  line-height:inherit;
  padding:0;
}

pre,
code,
kbd,
samp{
  font-family:Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object{
  display:block;
  vertical-align:middle;
}

img,
video{
  height:auto;
  max-width:100%;
}

blockquote{
  margin-bottom:2rem;
}

blockquote > :last-child{
  margin-bottom:0;
}

blockquote cite,
.site .wp-block-quote cite,
.site .wp-block-quote__citation,
.site .wp-block-pullquote__citation{
  display:block;
  font-size:1rem;
  font-weight:normal;
  line-height:1.45;
  opacity:0.75;
}

pre,
.wp-block-code{
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
  line-height:1.6;
  margin-bottom:2rem;
  overflow:auto;
  padding:1.6em;
}

.wp-block-code,
pre,
code,
kbd,
samp{
  font-family:Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre,
.wp-block-code,
code,
kbd,
tt,
var{
  font-size:0.9375rem;
}

code{
  background-color:#f9f2f4;
  border-radius:4px;
  color:#c7254e;
  padding:0.2em 0.3em;
}

pre code{
  background:none;
  border-radius:0;
  color:inherit;
  padding:0;
}

body{
  background:#ffffff;
  background:var(--color-white);
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

hr{
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
  border:0;
  height:1px;
  margin-bottom:2rem;
}

img{
  display:inline-block;
}

ul,
ol{
  margin:0 0 2rem 1.5em;
}

ul{
  list-style:disc;
}

ol{
  list-style:decimal;
}

li > ul,
li > ol{
  margin-bottom:0;
  margin-left:1.5em;
}

dt{
  font-weight:bold;
}

dd{
  margin:0 2rem 1.5em;
}

.svg-icon.th-fill-current[stroke]{
  fill:transparent;
}

button,
input,
select,
optgroup,
textarea{
  color:inherit;
  font-family:inherit;
  line-height:inherit;
}

button,
input[type=button],
input[type=reset],
input[type=submit],
[role="button"]{
  cursor:pointer;
}

fieldset{
  border:0;
  margin:0;
  padding:0;
}

button.disabled,
button:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="submit"].disabled,
input[type="submit"]:disabled,
.button.disabled,
.button:disabled,
.added_to_cart.disabled,
.added_to_cart:disabled{
  cursor:not-allowed;
  opacity:0.5;
}

button.disabled:hover,
button:disabled:hover,
input[type="button"].disabled:hover,
input[type="button"]:disabled:hover,
input[type="reset"].disabled:hover,
input[type="reset"]:disabled:hover,
input[type="submit"].disabled:hover,
input[type="submit"]:disabled:hover,
.button.disabled:hover,
.button:disabled:hover,
.added_to_cart.disabled:hover,
.added_to_cart:disabled:hover{
  opacity:0.5;
}

textarea{
  width:100%;
}

h1,
h2,
h3,
h4,
h5,
h6{
  color:#111111;
  color:var(--color-primary-dark);
  font-family:'Lato';
  font-family:var(--site-font-headings);
  line-height:1.25;
}

.th-heading-text-inherit h1,
.th-heading-text-inherit h2,
.th-heading-text-inherit h3,
.th-heading-text-inherit h4,
.th-heading-text-inherit h5,
.th-heading-text-inherit h6{
  color:inherit;
}

a{
  color:#E91E63;
  color:var(--color-accent-base);
}

a:hover,
a:focus{
  color:#bd1f55;
  color:var(--color-accent-dark);
}

a:focus{
  outline:thin dotted;
  outline:5px auto -webkit-focus-ring-color;
  outline-offset:-2px;
}

.th-links-inherit a:not(:hover){
  color:inherit;
}

.has-background-cover .th-content a,
.has-background-cover .th-content a:hover{
  color:inherit;
}

table{
  background-color:transparent;
  border-collapse:collapse;
  border-spacing:0;
  margin-bottom:2rem;
  max-width:100%;
  width:100%;
}

th{
  text-align:left;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
  line-height:1.45;
  padding:0.6em;
  vertical-align:top;
}

table > thead > tr > th{
  border-bottom:2px solid #e5e5e5;
  border-bottom:2px solid var(--color-secondary-lighter);
  vertical-align:bottom;
}

table > tbody + tbody{
  border-top:2px solid #e5e5e5;
  border-top:2px solid var(--color-secondary-lighter);
}

table table{
  background-color:#ffffff;
  background-color:var(--color-white);
}

.table-responsive{
  margin-bottom:2rem;
  min-height:.01%;
  overflow-x:auto;
}

.table-responsive > table{
  margin-bottom:0;
}

body,
button,
input,
select,
optgroup,
textarea{
  font-size:1rem;
}

body{
  color:#2b2b2b;
  color:var(--color-primary-base);
  font-family:'Lato';
  font-family:var(--site-font-body);
  line-height:1.65;
}

p{
  margin-bottom:2rem;
}

dfn,
cite,
em,
i{
  font-style:italic;
}

address{
  margin:0 0 2rem;
}

abbr,
acronym{
  border-bottom:1px dotted #757575;
  border-bottom:1px dotted var(--color-secondary-base);
  cursor:help;
}

mark,
ins{
  background:#fff9c0;
  padding:.2em;
  text-decoration:none;
}

small{
  font-size:85%;
}

big{
  font-size:125%;
}

b,
strong{
  font-weight:bold;
}

blockquote{
  border-left:4px solid #E91E63;
  border-left:4px solid var(--color-accent-base);
  color:#111111;
  color:var(--color-primary-dark);
  margin:0 0 1rem;
  padding:0 1rem;
}

.primary-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"]{
  -webkit-box-shadow:none;
  background-color:#111111;
  background-color:var(--color-primary-dark);
  border:2px solid transparent;
  border-radius:1px;
  box-shadow:none;
  color:#ffffff;
  color:var(--color-white);
  font-size:0.8125rem;
  font-weight:bold;
  letter-spacing:0.02em;
  line-height:1.4;
  padding:1.2em 1.75em;
  text-transform:uppercase;
  vertical-align:bottom;
}

.primary-button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
  background:#e5e5e5;
  background:var(--color-secondary-lighter);
  color:#757575;
  color:var(--color-secondary-base);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea{
  background-color:#ffffff;
  background-color:var(--color-white);
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
  border-radius:1px;
  color:#2b2b2b;
  color:var(--color-primary-base);
  font-size:1rem;
  line-height:1.387;
  padding:15px 18px;
}

select{
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus{
  border-color:#757575;
  border-color:var(--color-secondary-base);
  outline:none;
}

.clean-button,
#infinite-handle button{
  -webkit-box-shadow:none;
  background:none;
  border:none;
  border-radius:0;
  box-shadow:none;
  color:inherit;
  outline:none;
  padding:0;
  text-shadow:none;
}

.clean-button:hover{
  background:none;
}

.list-unstyled{
  list-style:none;
  padding-left:0;
}

#page .has-background-cover,
.site-content .post-navigation a:before{
  background-position:center center;
  background-repeat:no-repeat;
  background-size:100%;
  background-size:cover;
}

.jetpack-video-wrapper,
.mejs-container,
.wp-caption,
#page .wp-playlist,
#page .tiled-gallery,
#page .slideshow-window{
  margin-bottom:1rem;
}

a,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-content .post-navigation a:before{
  -webkit-transition:color 200ms ease-in-out, border 200ms ease-in-out;
  transition:color 200ms ease-in-out, border 200ms ease-in-out;
}

.has-animation{
  -webkit-transition:all 200ms ease-in-out;
  transition:all 200ms ease-in-out;
}

.site.container{
  -webkit-box-shadow:0 0 15px rgba(0,0,0,0.3);
  box-shadow:0 0 15px rgba(0,0,0,0.3);
  padding:0;
  position:relative;
  word-wrap:break-word;
}

#colophon .footer-bottom,
.site-content .posts-navigation,
.site-content .comment-navigation,
.main-navigation ul ul,
#comments .comment-metadata,
#comments .reply,
#page #infinite-handle span,
#page div.sharedaddy h3.sd-title{
  font-size:0.75rem;
}

.custom-background #page{
  margin:30px;
}

.container{
  margin-left:auto;
  margin-right:auto;
  max-width:1440px;
  padding-left:35px;
  padding-right:35px;
}

h1,
h2,
h3,
h4,
h5,
h6{
  clear:both;
  font-weight:700;
  letter-spacing:-0.02em;
}

h1{
  font-size:2.566rem;
}

h2{
  font-size:2.027rem;
}

h3{
  font-size:1.602rem;
}

h4{
  font-size:1.266rem;
}

h5{
  font-size:1.125rem;
}

h6{
  font-size:1rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a{
  text-decoration:none;
}

a{
  font-weight:bold;
  text-decoration:underline;
}

a:hover{
  text-decoration:none;
}

.table-striped tbody tr:nth-of-type(odd){
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
}

.table-bordered{
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
}

.table-bordered th,
.table-bordered td{
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
}

.table-bordered thead th,
.table-bordered thead td{
  border-bottom-width:2px;
}

body,
input,
select,
textarea{
  font-size:1.125rem;
  font-weight:400;
}

.wp-block-audio{
  margin-bottom:2rem;
}

.wp-block-audio audio{
  width:100%;
}

.wp-block-audio.alignleft,
.wp-block-audio.alignright,
.wp-block-video.alignleft,
.wp-block-video.alignright,
.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright,
.wp-block-pullquote.alignright
.wp-block-pullquote.alignleft{
  max-width:100%;
  width:50%;
}

.has-text-color h1,
.has-text-color h2,
.has-text-color h3,
.has-text-color h4,
.has-text-color h5,
.has-text-color h6{
  color:inherit;
}

.wp-block-button__link{
  font-size:inherit;
  line-height:1.25;
  padding:0.8em 1.35em;
}

.wp-block-button,
.wp-block-buttons .wp-block-button{
  margin:0 0 2rem;
}

.wp-block-buttons > .wp-block-button + .wp-block-button{
  margin-left:0.5rem;
}

.wp-block-button__link.has-text-color:hover,
.wp-block-button__link.has-background:hover,
.has-background-dim .wp-block-button.is-style-outline .wp-block-button__link:hover,
.has-background .wp-block-button.is-style-outline .wp-block-button__link:hover{
  opacity:0.65;
}

.wp-block-button.aligncenter{
  text-align:center;
}

.wp-block-button__link:not(.has-background):hover{
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
}

.wp-block-button__link:not(.has-text-color):not(.has-background):hover{
  color:#2b2b2b;
  color:var(--color-primary-base);
}

.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover{
  color:#757575;
  color:var(--color-secondary-base);
}

.wp-block-button.is-style-outline,
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color){
  color:inherit;
}

.wp-block-button.is-style-outline .wp-block-button__link{
  border-color:inherit;
  border-style:solid;
}

.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background){
  background-color:transparent;
}

p.has-background{
  padding:1em 1.5em;
}

.wp-block-columns{
  margin-bottom:2rem;
}

.wp-block-columns > * + *{
  margin-top:2rem;
}

.wp-block-column > *,
.wp-block-column .wp-block-buttons > *{
  margin-bottom:0;
}

.wp-block-column .wp-block-buttons > *,
.wp-block-column > * + *{
  margin-top:2rem;
}

.wp-block-buttons{
  margin-top:0;
}

.wp-block-column h3 + *,
.wp-block-column h4 + *,
.wp-block-column h5 + *,
.wp-block-column h6 + *{
  margin-top:0.75rem;
}

.wp-block-columns.alignfull{
  padding:2rem;
}

.wp-block-cover{
  margin-bottom:2rem;
}

.wp-block-cover,
.wp-block-cover-image{
  padding:0;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover__inner-container{
  padding:2rem;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container{
  width:100%;
}

.wp-block-cover__inner-container > :last-child{
  margin-bottom:0;
}

.wp-block-cover.alignleft,
.wp-block-cover.alignright{
  min-height:300px;
}

p.has-drop-cap:not(:focus):first-letter{
  font-size:6.2em;
  font-weight:bold;
  line-height:0.8;
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright{
  max-width:100%;
}

.wp-block-embed{
  margin-bottom:2rem;
}

.wp-block-embed figcaption{
  margin-top:0.75em;
}

.wp-block-embed .jetpack-video-wrapper{
  margin-bottom:0;
}

.wp-block-embed.alignfull figcaption{
  padding-left:2rem;
  padding-right:2rem;
}

.wp-embed-responsive .wp-has-aspect-ratio iframe{
  bottom:0;
  height:100%;
  left:0;
  position:absolute;
  right:0;
  top:0;
  width:100%;
}

.wp-block-file{
  margin-bottom:2rem;
}

.wp-block-gallery{
  margin-bottom:calc(2rem - 16px);
}

.wp-block-gallery.alignfull{
  padding:0 16px;
}

.wp-block-gallery .blocks-gallery-caption{
  margin-bottom:16px;
}

[class*="has-background"] [class*="__inner-container"] a:not(.wp-block-button__link),
[class*="has-background"] .wp-block-media-text__content a:not(.wp-block-button__link),

.has-text-color .wp-block-image figcaption,
.has-text-color .wp-block-audio figcaption,
.has-text-color .wp-block-video figcaption,
.has-text-color .wp-block-embed figcaption,
.has-text-color .wp-block-gallery .blocks-gallery-caption,

[class*="has-background"] .wp-block-quote,
[class*="has-background"] [class*="__inner-container"] .wp-block-image figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-audio figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-video figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-embed figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-latest-comments__comment-date,
[class*="has-background"] [class*="__inner-container"] .wp-block-latest-posts__post-date{
  color:inherit;
  opacity:0.85;
}

[class*="has-background"] [class*="__inner-container"] .wp-block-image figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-audio figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-video figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-embed figcaption,
[class*="has-background"] [class*="__inner-container"] .wp-block-latest-comments__comment-date,
[class*="has-background"] [class*="__inner-container"] .wp-block-latest-posts__post-date,

.has-text-color .wp-block-image figcaption,
.has-text-color .wp-block-audio figcaption,
.has-text-color .wp-block-video figcaption,
.has-text-color .wp-block-embed figcaption,
.has-text-color .wp-block-gallery .blocks-gallery-caption,

[class*="has-background"] [class*="__inner-container"] a:not(.wp-block-button__link):hover,
[class*="has-background"] .wp-block-media-text__content a:not(.wp-block-button__link):hover{
  opacity:0.65;
}

[class*="has-background"] [class*="__inner-container"] a:not(.wp-block-button__link):hover,
[class*="has-background"] .wp-block-media-text__content a:not(.wp-block-button__link):hover{
  color:inherit;
}

[class*="has-background"] [class*="__inner-container"] .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),
[class*="has-background"] [class*="__inner-container"] .wp-block-button__link.is-style-outline:not(.has-text-color){
  color:inherit;
}

[class*="has-background"] [class*="__inner-container"] .wp-block-button.is-style-outline:hover,
[class*="has-background"] [class*="__inner-container"] .wp-block-button__link.is-style-outline:hover{
  opacity:0.65;
}

[class*="has-background"] [class*="__inner-container"] .wp-social-link a,
[class*="has-background"] .wp-block-media-text__content .wp-social-link a,
[class*="has-background"] [class*="__inner-container"] .wp-social-link a:hover,
[class*="has-background"] .wp-block-media-text__content .wp-social-link a:hover{
  opacity:1;
}

.wp-block-image figcaption,
.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption,
.wp-block-gallery .blocks-gallery-caption,
.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date{
  color:#757575;
  color:var(--color-secondary-base);
  font-size:0.889rem;
}

.wp-block-pullquote blockquote,
.wp-block-column > :last-child,
.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption,
.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date{
  margin-bottom:0;
}

.wp-block-group{
  margin-bottom:2rem;
}

[class*="has-background"] .wp-block-group__inner-container,
.wp-block-group.alignfull .wp-block-group__inner-container{
  padding:2rem;
}

.wp-block-group__inner-container > :last-child{
  margin-bottom:0;
}

.wp-block-group__inner-container > :first-child:not(.wp-block){
  margin-top:0;
}

.wp-block-group.alignfull .wp-block-group__inner-container{
  width:100%;
}

.inactive-sidebar .wp-block-group.has-background > .wp-block-group__inner-container > .alignfull{
  margin-left:-2rem;
  max-width:unset;
  width:calc(100% + 4rem);
}

.wp-block-image{
  margin-bottom:2rem;
}

.wp-block-image figcaption{
  margin-bottom:0;
  margin-top:0.75em;
}

.wp-block-image.alignfull figcaption{
  padding-left:2rem;
  padding-right:2rem;
}

.wp-block-image .aligncenter{
  text-align:center;
}

.wp-block-latest-posts{
  margin-left:0;
  padding-left:0;
}

.wp-block-latest-posts li > a{
  font-family:'Lato';
  font-family:var(--site-font-headings);
  font-size:1.266rem;
  line-height:1.25;
  text-decoration:none;
}

.wp-block-latest-posts__post-date{
  margin-top:0.25rem;
}

.wp-block-latest-posts.is-grid,
.wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts__post-excerpt > :last-child,
.wp-block-latest-posts__post-full-content,
.wp-block-latest-posts__post-full-content > :last-child{
  margin-bottom:0;
}

.wp-block-latest-posts__post-excerpt{
  margin-top:0.75rem;
}

.wp-block-latest-posts .more-link-container{
  margin-top:2rem;
}

.wp-block-latest-posts__list:not(.is-grid) > * + *{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
  margin-top:2rem;
  padding-top:2rem;
}

.wp-block-latest-posts.is-grid li,
.wp-block-latest-posts__featured-image{
  margin-bottom:2rem;
}

.wp-block-media-text{
  margin-bottom:2rem;
}

.wp-block-media-text__content > :first-child{
  margin-top:0;
}

.wp-block-media-text__content > :last-child{
  margin-bottom:0;
}

.wp-block-media-text .wp-block-media-text__media{
  margin-bottom:2rem;
  overflow:hidden;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{
  margin-bottom:0;
  margin-top:2rem;
}

.wp-block-media-text .wp-block-media-text__content{
  padding:0;
}

.wp-block-media-text:not(.is-stacked-on-mobile) .wp-block-media-text__content{
  padding-left:2rem;
  padding-right:0;
}

.has-media-on-the-right:not(.is-stacked-on-mobile) .wp-block-media-text__content{
  padding-left:0;
  padding-right:2rem;
}

.wp-block-media-text.has-background:not(.is-image-fill){
  padding:2rem;
}

.wp-block-media-text.has-background.is-image-fill .wp-block-media-text__content{
  padding:2rem;
}

.wp-block-media-text.has-background.is-image-fill .wp-block-media-text__media{
  margin-bottom:0;
  margin-top:0;
}

.wp-block-media-text .has-text-color a:hover{
  color:inherit;
  opacity:0.65;
}

.wp-block-media-text.alignfull .wp-block-media-text__content{
  padding-left:2rem;
  padding-right:2rem;
}

.wp-block-quote cite,
.wp-block-pullquote cite{
  font-style:normal;
  font-style:initial;
}

.wp-block-quote.has-text-align-center,
.wp-block-quote.is-style-large.has-text-align-center,
.wp-block-quote.is-large.has-text-align-center{
  border:none;
  padding-left:0;
}

.wp-block-pullquote{
  border:1px solid;
  margin-bottom:2rem;
  padding:2em;
}

.site .wp-block-pullquote blockquote{
  border:none;
  margin:0;
  padding:0;
}

.wp-block-pullquote.is-style-solid-color{
  border:none;
}

.wp-block-pullquote.is-style-solid-color:not(.has-background){
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
}

.wp-block-pullquote.is-style-solid-color blockquote{
  max-width:100%;
}

.wp-block-pullquote p,
.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p,
.wp-block-pullquote.is-style-solid-color blockquote p{
  font-size:inherit;
  line-height:inherit;
}

.wp-block-pullquote.is-style-solid-color blockquote p{
  margin-bottom:2rem;
}

.wp-block-pullquote blockquote{
  font-size:1em;
}

.wp-block-pullquote.alignwide,
.wp-block-pullquote.alignfull{
  clear:both;
}

.wp-block-pullquote.alignfull blockquote{
  margin-left:auto;
  margin-right:auto;
  max-width:992px;
}

.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer{
  text-align:inherit;
}

.wp-block-quote.is-style-large p,
.wp-block-quote.is-large p{
  font-size:1.424rem;
  font-style:inherit;
}

.wp-block-separator{
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
  margin:2rem auto;
}

.wp-block-separator,
.inactive-sidebar .site .alignfull [class*="__inner-container"] > hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
  max-width:25rem;
}

.wp-block-separator.is-style-wide{
  max-width:100%;
}

.wp-block-separator.is-style-dots::before{
  font-size:1.424em;
  letter-spacing:1.424em;
  padding-left:1.424em;
}

.wp-block-table{
  margin-bottom:2rem;
}

.wp-block-table table,
.wp-block-table > .table-responsive{
  margin-bottom:0;
}

.wp-block-table.is-style-stripes{
  border-bottom-color:#e5e5e5;
  border-bottom-color:var(--color-secondary-lighter);
}

.wp-block-table.is-style-stripes td{
  border-color:#e5e5e5;
  border-color:var(--color-secondary-lighter);
}

.wp-block-table.is-style-stripes > tbody > tr:nth-child(odd){
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
}

.wp-block-table.is-style-stripes thead tr:nth-child(odd){
  background:none;
}

.wp-block-table.is-style-stripes th,

.wp-block-table.is-style-stripes td{
  border-color:#e5e5e5;
  border-color:var(--color-secondary-lighter);
}

.wp-block-table table + figcaption{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
  color:#757575;
  color:var(--color-secondary-base);
  font-size:0.889rem;
  padding:0.2em 0.4em;
  text-align:center;
}

.wp-block-verse pre,
pre.wp-block-verse{
  background:none;
  border:none;
  color:inherit;
  font-family:inherit;
  font-size:inherit;
  line-height:inherit;
  padding-bottom:0;
  padding-top:0;
}

.wp-block-verse pre::before,
pre.wp-block-verse::before{
  display:none;
}

.wp-block-video{
  margin-bottom:2rem;
}

.inactive-sidebar [class*="__inner-container"] .alignwide,
.inactive-sidebar [class*="__inner-container"] > .alignfull,
.inactive-sidebar .alignwide .alignwide,
.inactive-sidebar .alignfull .alignfull{
  margin-left:auto;
  margin-right:auto;
  max-width:100%;
  width:100%;
}

.inactive-sidebar .alignfull [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){
  margin-left:auto;
  margin-right:auto;
  max-width:992px;
}

.wp-block-archives-dropdown{
  margin-bottom:2rem;
}

.wp-block-calendar{
  margin-bottom:2rem;
}

.wp-block-calendar table th{
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
  padding-bottom:0.8em;
  padding-top:0.8em;
  text-align:center;
}

.wp-block-calendar th,
.wp-block-calendar tbody td{
  border-color:#e5e5e5;
  border-color:var(--color-secondary-lighter);
}

.wp-block-calendar table tbody,
.wp-block-calendar table caption{
  color:#757575;
  color:var(--color-secondary-base);
}

.wp-block-calendar table,
.wp-block-calendar table caption{
  margin-bottom:2rem;
}

.wp-block-categories-dropdown{
  margin-bottom:2rem;
}

.wp-block-latest-comments{
  margin-bottom:2rem;
  margin-left:0;
  padding-left:0;
}

.wp-block-latest-comments .avatar{
  height:48px;
  margin-right:0;
  width:48px;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{
  margin-left:calc(48px + 2rem);
}

.wp-block-latest-comments__comment-author{
  font-weight:bold;
}

.wp-block-latest-comments > *,
.wp-block-latest-comments__comment-excerpt > :last-child{
  margin-bottom:0;
}

.wp-block-latest-comments__comment,
.wp-block-latest-comments__comment-excerpt p{
  font-size:inherit;
}

.wp-block-latest-comments__comment-excerpt p{
  margin-top:2rem;
}

.wp-block-latest-comments > * + *{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
  margin-top:2rem;
  padding-top:2rem;
}

.wp-block-latest-comments__comment-date{
  margin-top:0.5rem;
}

.wp-block-search{
  margin-bottom:2rem;
}

.wp-block-search .wp-block-search__label{
  font-weight:bold;
  margin-bottom:0.75rem;
}

.wp-block-search .wp-block-search__input{
  max-width:100%;
}

.wp-block-button__link{
  background-color:#111111;
  background-color:var(--color-primary-dark);
  border:2px solid transparent;
  border-radius:1px;
  color:#ffffff;
  color:var(--color-white);
  font-size:0.8125rem;
  font-weight:bold;
  letter-spacing:0.02em;
  padding:1.2em 1.75em;
  text-decoration:none;
  text-transform:uppercase;
}

.is-style-outline .wp-block-button__link:not(.has-text-color){
  color:#111111;
  color:var(--color-primary-dark);
}

:root .has-small-font-size{
  font-size:0.889rem;
  line-height:1.65;
}

:root .has-normal-font-size{
  font-size:1.125rem;
}

:root .has-medium-font-size{
  font-size:1.266rem;
}

:root .has-large-font-size{
  font-size:1.602rem;
  line-height:1.5;
}

:root .has-huge-font-size{
  font-size:2.027rem;
  line-height:1.45;
}

.entry-content .wp-block-latest-posts li > a{
  text-decoration:none;
}

.wp-block-quote.is-style-large,
.wp-block-quote.is-large,
.wp-block-quote.has-text-align-center{
  padding:0 1rem;
}

.wp-block-quote.is-style-large p,
.wp-block-quote.is-large p{
  font-size:1.602rem;
}

.wp-block-pullquote blockquote::before{
  display:none;
}

.wp-block-quote > * + cite,
.wp-block-pullquote blockquote > * + cite{
  display:block;
  margin-top:-0.5rem;
}

.wp-block-pullquote blockquote{
  line-height:1.45;
}

.wp-block-pullquote{
  border-width:2px;
}

.table-striped tbody tr:nth-of-type(odd){
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
}

.table-bordered,
.wp-block-table.is-style-borders{
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
}

.table-bordered th,
.wp-block-table.is-style-borders th,
.table-bordered td,
.wp-block-table.is-style-borders td{
  border:1px solid #e5e5e5;
  border:1px solid var(--color-secondary-lighter);
}

.table-bordered thead th,
.wp-block-table.is-style-borders thead th,
.table-bordered thead td,
.wp-block-table.is-style-borders td{
  border-bottom-width:2px;
}

.inactive-sidebar .alignfull{
  margin-left:calc(50% - 50vw);
  width:100vw;
}

.screen-reader-text{
  clip:rect(1px, 1px, 1px, 1px);
  height:1px;
  overflow:hidden;
  position:absolute !important;
  width:1px;
}

.screen-reader-text:focus{
  -webkit-box-shadow:0 0 2px 2px rgba(0, 0, 0, 0.6);
  background-color:#f1f1f1;
  border-radius:3px;
  box-shadow:0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip:auto !important;
  color:#21759b;
  display:block;
  font-size:14px;
  font-size:0.875rem;
  font-weight:bold;
  height:auto;
  left:5px;
  line-height:normal;
  padding:15px 23px 14px;
  text-decoration:none;
  top:5px;
  width:auto;
  z-index:100000;
}

#content[tabindex="-1"]:focus{
  outline:0;
}

.alignleft{
  float:left;
  margin-right:2rem;
}

.alignright{
  float:right;
  margin-left:2rem;
}

.aligncenter{
  clear:both;
  margin-left:auto;
  margin-right:auto;
}

img.aligncenter{
  display:block;
}

img.alignleft,
img.alignright{
  margin-bottom:1rem;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.container:before,
.container:after{
  -ms-flex-order:1;
  -ms-flex-preferred-size:0;
  -webkit-box-ordinal-group:2;
  content:"";
  display:table;
  flex-basis:0;
  order:1;
  table-layout:fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.container:after{
  clear:both;
}

.search-form{
  position:relative;
}

.search-form button.submit{
  height:54px;
  line-height:1.4;
  padding:15px 18px;
  position:absolute;
  right:0;
  top:1px;
}

.search-form button.submit .svg-icon{
  height:1rem;
  width:1rem;
}

.site-header,
#sticky-header{
  -webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.05), 0 1px 7px 0 rgba(0,0,0,0.07);
  box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.05), 0 1px 7px 0 rgba(0,0,0,0.07);
  z-index:999;
}

.site-header,
.header-right-col{
  position:relative;
}

.header-right-col::before{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
  content:"";
  height:44px;
  left:-1rem;
  position:absolute;
  right:-1rem;
  z-index:-1;
}

.header-right-col .header-search-button,
.header-right-col .mobile-menu-button{
  line-height:44px;
}

.mobile-menu-button{
  margin-right:auto;
}

.site-header .custom-logo{
  display:inline-block;
  max-width:380px;
  width:100%;
}

.site-header .site-title{
  color:#111111;
  color:var(--color-primary-dark);
  font-family:inherit;
  letter-spacing:-0.02em;
}

.site-header .site-title a{
  color:inherit;
  text-decoration:none;
}

.site-header .header-right-col a:hover,
.site-header .header-right-col button:hover{
  color:#757575;
  color:var(--color-secondary-base);
}

.header-search-button{
  -ms-flex-order:10;
  -webkit-box-ordinal-group:11;
  border-left:1px solid #e5e5e5;
  border-left:1px solid var(--color-secondary-lighter);
  order:10;
}

.site-header .svg-icon{
  height:18px;
  margin:auto;
  width:18px;
}

.header-right-col .jetpack-social-navigation,
.header-right-col .social-navigation,
.site-header .mobile-menu-button svg + svg,
.active-toggle-sidebar .mobile-menu-button svg:first-of-type{
  display:none;
}

.active-toggle-sidebar .mobile-menu-button svg + svg{
  display:block;
}

.site-header .mobile-menu-button svg{
  margin-right:0.25rem;
  pointer-events:none;
}

.sticky-header{
  -webkit-transform:translateY(-100%);
  -webkit-transition:all 0.62s ease;
  left:0;
  margin:0 auto;
  max-width:1440px;
  opacity:0;
  position:fixed;
  right:0;
  top:-100%;
  transform:translateY(-100%);
  transition:all 0.62s ease;
}

.custom-background .sticky-header{
  left:30px;
  right:30px;
  width:auto;
}

.sticky-header.scroll-header{
  -webkit-transform:translateY(0%);
  opacity:1;
  top:0;
  transform:translateY(0%);
}

.single-post .sticky-header.scroll-header{
  overflow:hidden;
}

.sticky-header .gotop{
  color:#757575;
  color:var(--color-secondary-base);
  font-size:0.8125rem;
  font-weight:bold;
  margin-left:auto;
}

.gotop .svg-icon{
  margin-right:0.25rem;
  stroke-width:2.5;
}

.sticky-header .sticky-right-col,
.sticky-header .main-navigation .menu{
  line-height:0;
}

.sticky-header .main-navigation ul:not(.sub-menu):not(.children) > li:first-child{
  margin-left:0;
}

.sticky-header .progress-bar:before{
  border-top:1px solid rgba(0,0,0,0.1);
  content:"";
  left:0;
  position:absolute;
  top:0;
  width:100%;
}

.sticky-header .progress-bar{
  background-color:#E91E63;
  background-color:var(--color-accent-base);
  bottom:0;
  height:3px;
  left:0;
  position:absolute;
  width:0;
  z-index:-1;
}

.sticky-header .hentry-title{
  font-weight:900;
  line-height:1.25;
  overflow:hidden;
  padding-bottom:3px;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.close-toggle-sidebar,
.mobile-navigation > .menu li{
  font-size:0.8125rem;
}

.toggle-sidebar{
  -webkit-animation:toggle-slide-in 200ms ease;
  -webkit-box-shadow:inset 5px 0 18px -5px rgba(0,0,0,0.2);
  animation:toggle-slide-in 200ms ease;
  border-left:1px solid #e5e5e5;
  border-left:1px solid var(--color-secondary-lighter);
  box-shadow:inset 5px 0 18px -5px rgba(0,0,0,0.2);
  display:none;
  height:100%;
  max-width:340px;
  overflow:scroll;
  overflow-x:hidden;
  position:fixed;
  right:-340px;
  top:0;
  visibility:hidden;
  width:100%;
  z-index:9999;
}

.toggle-sidebar .inner-panel{
  padding:0 0 30px;
  position:relative;
}

.toggle-sidebar a{
  color:inherit;
}

.toggle-sidebar a:hover{
  opacity:0.75;
}

.active-toggle-sidebar{
  overflow:hidden;
}

.site{
  -webkit-transition:right 200ms ease;
  position:relative;
  right:0;
  transition:right 200ms ease;
}

.active-toggle-sidebar .toggle-sidebar{
  display:block;
  right:0;
  visibility:visible;
}

.hidden-toggle-sidebar .toggle-sidebar{
  -webkit-animation:toggle-slide-out 200ms ease;
  animation:toggle-slide-out 200ms ease;
  display:block;
  height:0;
  right:-340px;
  visibility:hidden;
}

@-webkit-keyframes toggle-slide-in{
  0%{
    right:-340px;
  }
  100%{
    right:0;
  }
}

@keyframes toggle-slide-in{
  0%{
    right:-340px;
  }
  100%{
    right:0;
  }
}

@-webkit-keyframes toggle-slide-out{
  0%{
    height:100%;
    right:0;
    visibility:visible;
  }
  100%{
    height:100%;
    right:-340px;
  }
}

@keyframes toggle-slide-out{
  0%{
    height:100%;
    right:0;
    visibility:visible;
  }
  100%{
    height:100%;
    right:-340px;
  }
}

.close-toggle-sidebar{
  -webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.05), 0 1px 7px 0 rgba(0,0,0,0.07);
  border-bottom:1px solid rgba(255,255,255,0.1);
  box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.05), 0 1px 7px 0 rgba(0,0,0,0.07);
  font-weight:bold;
  padding-bottom:10px;
  padding-top:10px;
}

.close-toggle-sidebar:hover{
  background-color:#111111;
  background-color:var(--color-primary-dark);
  color:#ffffff;
  color:var(--color-white);
}

.close-toggle-sidebar .svg-icon{
  height:11px;
  margin-right:0.25rem;
  width:11px;
}

.site-search-container{
  -webkit-animation:fadein 0.15s linear;
  -webkit-box-shadow:0 0 15px rgba(0,0,0,0.1);
  animation:fadein 0.15s linear;
  background:rgba(255,255,255,0.97);
  bottom:15px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
  color:#000000;
  display:none;
  left:15px;
  position:fixed;
  right:15px;
  top:15px;
  z-index:99999;
}

.site-search-container .close-site-search{
  display:inline-block;
  height:45px;
  line-height:45px;
  position:absolute;
  right:8px;
  top:8px;
  width:45px;
}

.site-search-container .search-form{
  max-width:40rem;
  padding:60px;
  width:100%;
}

.site-search-container .search-field{
  -webkit-appearance:none;
  -webkit-backface-visibility:hidden;
  background:none;
  border:none;
  border-bottom:1px solid #000000;
  font-size:inherit;
  outline:none;
  padding:17px 20px 15px 0;
}

.close-site-search svg{
  height:0.889rem;
  margin:auto;
  width:0.889rem;
}

.site-search-container .search-field:focus{
  border-bottom-color:#e5e5e5;
}

.site-search-container ::-moz-placeholder{
  color:#a3a3a3;
  font-weight:bold;
}

.site-search-container :-ms-input-placeholder{
  color:#a3a3a3;
  font-weight:bold;
}

.site-search-container ::-webkit-input-placeholder{
  color:#a3a3a3;
  font-weight:bold;
}

.site-search-container button.submit{
  font-size:inherit;
  height:50px;
  line-height:50px;
  margin-top:-25px;
  padding:0;
  position:absolute;
  right:60px;
  top:50%;
  width:25px;
}

.site-search-container button.submit svg{
  height:100%;
  width:1rem;
}

.site-footer a:hover{
  color:#757575;
  color:var(--color-secondary-base);
}

.site-footer a{
  color:#e5e5e5;
  color:var(--color-secondary-lighter);
  text-decoration:none;
}

#colophon .footer-branding .site-footer-description{
  font-size:inherit;
}

.footer-section{
  border-top:1px solid rgba(255,255,255,0.08);
}

.site-footer .widget{
  margin-bottom:0;
}

.footer-navigation li:not(:first-child) a{
  margin-left:14px;
}

.footer-navigation li:not(:first-child){
  margin-left:7px;
}

.footer-navigation li:not(:first-child):before{
  content:"/";
  float:left;
  font-size:8px;
}

#colophon .table thead th,
#colophon .table th,
#colophon .table td{
  border-color:rgba(255,255,255,0.08);
}

.site-navigation ul{
  -webkit-padding-start:0;
  list-style:none;
  margin:0;
  padding-left:0;
}

.site-navigation ul{
  line-height:0.8;
}

.site-navigation li{
  display:inline-block;
  line-height:1.2;
  position:relative;
}

.site-navigation a{
  display:block;
  text-decoration:none;
}

.site-navigation .current_page_item > a,
.site-navigation .current-menu-item > a,
.site-navigation .current_page_ancestor > a,
.site-navigation .current-menu-ancestor > a{
  font-weight:900;
}

.site-navigation .arrow-icon{
  -webkit-font-smoothing:antialiased;
  -webkit-transform:rotate(-45deg);
  display:block;
  height:0.3rem;
  pointer-events:none;
  position:absolute;
  right:0;
  top:calc(50% - 0.55rem);
  transform:rotate(-45deg);
  width:0.5rem;
}

.site-navigation .arrow-icon::before,
.site-navigation .arrow-icon::after{
  background-color:currentColor;
  bottom:calc(50% - 0.1rem);
  content:"";
  display:block;
  left:0;
  position:absolute;
}

.site-navigation .arrow-icon::before{
  height:0.35rem;
  width:0.095rem;
}

.site-navigation .arrow-icon::after{
  height:0.095rem;
  width:0.35rem;
}

.site-footer .jetpack-social-navigation a,
.site-footer .social-navigation a,
.toggle-sidebar .jetpack-social-navigation a,
.toggle-sidebar .social-navigation a{
  border:1px solid rgba(255,255,255,0.1);
  border-radius:50%;
  height:35px;
  line-height:33px;
  width:35px;
}

.site-footer .jetpack-social-navigation .svg-icon,
.site-footer .social-navigation .svg-icon,
.toggle-sidebar .jetpack-social-navigation .svg-icon,
.toggle-sidebar .social-navigation .svg-icon{
  height:0.889rem;
  margin:auto;
  width:0.889rem;
}

.header-left-col .main-navigation{
  line-height:1;
}

.main-navigation > ul.menu > li{
  font-size:0.8125rem;
  font-weight:700;
  letter-spacing:0.02em;
  margin-bottom:-10px;
  margin-left:1rem;
  text-transform:uppercase;
}

.main-navigation a:not(:hover){
  color:inherit;
}

.main-navigation > ul.menu > li > a{
  padding-bottom:10px;
}

.main-navigation > ul.menu > li.menu-item-has-children > a,
.main-navigation > ul.menu > li.page_item_has_children > a{
  padding-right:15px;
}

.main-navigation ul ul .arrow-icon{
  -webkit-transform:rotate(225deg);
  right:14px;
  top:calc(50% - 0.35rem);
  transform:rotate(225deg);
}

.main-navigation ul ul .arrow-icon::before{
  height:0.35rem;
  width:0.095rem;
}

.main-navigation ul ul .arrow-icon::after{
  height:0.095rem;
  width:0.35rem;
}

.main-navigation ul ul:before{
  border-color:transparent transparent #111111 transparent;
  border-color:transparent transparent var(--color-primary-dark) transparent;
  border-style:solid;
  border-width:0 6px 6px 6px;
  content:'';
  height:0;
  left:10%;
  margin-left:-3px;
  position:absolute;
  top:-6px;
  width:0;
}

.main-navigation ul ul{
  -webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.06), 0 1px 10px 0 rgba(0,0,0,0.08);
  background-color:#111111;
  background-color:var(--color-primary-dark);
  border-radius:2px;
  box-shadow:0 2px 4px -1px rgba(0,0,0,0.04), 0 4px 5px 0 rgba(0,0,0,0.06), 0 1px 10px 0 rgba(0,0,0,0.08);
  float:left;
  left:-999em;
  opacity:0;
  padding:16px 0;
  position:absolute;
  top:130%;
  z-index:9999;
}

.main-navigation ul ul ul{
  left:-999em;
  margin-left:0;
  margin-top:-16px;
  top:0;
}

.main-navigation ul ul ul:before{
  border:none;
}

.main-navigation ul ul li{
  color:#ffffff;
  color:var(--color-white);
  padding-left:14px;
  padding-right:14px;
  width:180px;
}

.main-navigation ul ul > * + *{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:14px;
  padding-top:14px;
}

#masthead .main-navigation ul li:hover > a,
#masthead .main-navigation ul li.focus > a{
  color:#a3a3a3;
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a{
  opacity:0.7;
}

.main-navigation ul li:hover > ul{
  -webkit-transition:top 250ms ease-in-out, opacity 250ms ease-in-out;
  transition:top 250ms ease-in-out, opacity 250ms ease-in-out;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul{
  left:auto;
  opacity:1;
  top:100%;
}

.main-navigation ul ul li:hover > ul{
  -webkit-transition:opacity 250ms ease-in-out;
  transition:opacity 250ms ease-in-out;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul{
  left:100%;
  top:0;
}

.jetpack-social-navigation,
.social-navigation{
  width:100%;
}

.site .jetpack-social-navigation ul,
.social-navigation ul{
  -ms-flex-pack:center;
  -ms-flex-wrap:wrap;
  -webkit-box-pack:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  line-height:1;
  list-style:none;
  margin:0;
  padding:0;
}

.jetpack-social-navigation ul li + li,
.social-navigation ul li + li{
  margin-left:7px;
}

.jetpack-social-navigation ul li a,
.social-navigation ul li a{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
  color:inherit;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  height:25px;
  text-align:center;
  width:25px;
}

.toggle-sidebar .jetpack-social-navigation,
.toggle-sidebar .social-navigation{
  margin-top:1.25rem;
  padding-left:2rem;
  padding-right:2rem;
}

.toggle-sidebar .jetpack-social-navigation ul li + li,
.toggle-sidebar .social-navigation ul li + li{
  margin-left:0.75rem;
}

.toggle-sidebar .jetpack-social-navigation ul li,
.toggle-sidebar .social-navigation ul li{
  margin-top:0.75rem;
}

.site .jetpack-social-navigation-genericons a::before{
  display:none;
}

.mobile-navigation li{
  width:100%;
}

.mobile-navigation ul ul{
  display:none;
}

.mobile-navigation ul .toggled-on{
  background-color:rgba(0,0,0,0.15);
  display:block;
}

.mobile-navigation .dropdown-toggle{
  border-left:1px solid rgba(255,255,255,0.1);
  height:45px;
  position:absolute;
  right:0;
  text-align:center;
  top:0;
  width:47px;
}

.mobile-navigation .arrow-icon{
  -webkit-transform:rotate(-45deg);
  position:absolute;
  right:18px;
  top:20px;
  transform:rotate(-45deg);
}

.mobile-navigation .arrow-icon.toggled-on{
  -webkit-transform:rotate(135deg);
  right:22px;
  top:22px;
  transform:rotate(135deg);
}

.mobile-navigation > .menu li a{
  -webkit-transition:padding 200ms ease-in-out;
  border-bottom:1px solid rgba(255,255,255,0.1);
  color:inherit;
  display:block;
  line-height:1.2;
  padding:15px 50px 15px 30px;
  transition:padding 200ms ease-in-out;
}

.mobile-navigation > .menu li a:hover{
  background-color:rgba(0,0,0,0.05);
  padding-left:35px;
}

.comment-navigation,
.posts-navigation,
.post-navigation{
  clear:both;
  overflow:hidden;
  position:relative;
}

.comment-navigation,
.post-navigation{
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous{
  float:left;
  width:50%;
}

.comment-navigation .nav-next{
  text-align:right;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next{
  float:right;
  width:50%;
}

.posts-navigation:before,
.post-navigation:before,
.comment-navigation:before{
  background-color:rgba(0,0,0,0.08);
  content:"";
  height:100%;
  left:50%;
  margin-left:-1px;
  position:absolute;
  top:0;
  width:1px;
}

.posts-navigation a,
.comment-navigation a{
  color:#757575;
  color:var(--color-secondary-base);
  text-decoration:none;
}

.posts-navigation a:hover,
.comment-navigation a:hover{
  color:#111111;
  color:var(--color-primary-dark);
}

.posts-navigation,
.comment-navigation{
  font-weight:900;
  text-transform:uppercase;
}

.site-content .posts-navigation{
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
  width:100%;
}

.posts-navigation a{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding:0.75rem 1rem;
}

.posts-navigation .svg-icon{
  height:16px;
  width:16px;
}

.posts-navigation .nav-previous a{
  -ms-flex-pack:end;
  -webkit-box-pack:end;
  justify-content:flex-end;
}

.posts-navigation .nav-previous .svg-icon{
  margin-right:0.5rem;
}

.posts-navigation .nav-next a{
  -ms-flex-pack:start;
  -webkit-box-pack:start;
  justify-content:flex-start;
}

.posts-navigation .nav-next .svg-icon{
  margin-left:0.5rem;
}

.post-navigation{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
}

.post-navigation a{
  color:#111111;
  color:var(--color-primary-dark);
  display:block;
  line-height:1.4;
  padding:1.5rem 1rem;
  position:relative;
  text-decoration:none;
  width:100%;
}

.post-navigation .nav-meta{
  margin-bottom:0.5rem;
}

.post-navigation:before{
  display:none;
}

.post-navigation a:before{
  -webkit-box-shadow:0 0 35px rgba(0,0,0,0.3);
  border:8px solid #ffffff;
  border:8px solid var(--color-white);
  bottom:-10px;
  box-shadow:0 0 35px rgba(0,0,0,0.3);
  float:right;
  height:160px;
  margin-left:30px;
  position:relative;
  width:40%;
}

.post-navigation a:hover:before{
  bottom:15px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next{
  overflow:hidden;
  width:100%;
}

.post-navigation .nav-links > * + *{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
}

.site-content .comment-navigation{
  border-radius:1px;
  margin-bottom:60px;
}

.site-content .comment-navigation a{
  display:block;
  padding:8px 30px;
  text-align:center;
}

.th-content > :last-child,
.entry-content > :last-child{
  margin-bottom:0;
}

.th-content > *:first-child{
  margin-top:0;
}

.th-rounded-thumb{
  -webkit-box-shadow:0 0 2px rgba(0,0,0,0.09);
  border:3px solid #ffffff;
  border:3px solid var(--color-white);
  box-shadow:0 0 2px rgba(0,0,0,0.09);
  height:93px;
  min-width:93px;
  width:93px;
}

.th-w-single-view{
  margin-left:auto;
  margin-right:auto;
  max-width:992px;
}

.featured-image{
  -o-object-fit:cover;
  object-fit:cover;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley{
  border:none;
  margin-bottom:0;
  margin-top:0;
  padding:0;
}

embed,
iframe,
object{
  max-width:100%;
}

.wp-caption{
  margin-bottom:2.188em;
  max-width:100%;
}

.wp-caption img[class*="wp-image-"]{
  display:block;
  margin-left:auto;
  margin-right:auto;
}

.wp-caption .wp-caption-text{
  color:#757575;
  font-size:14px;
  margin:0.8075em 0;
}

.wp-caption-text{
  text-align:center;
}

.entry-gallery,
.gallery{
  margin-bottom:2.188em;
}

.gallery{
  overflow:hidden;
}

.gallery-item{
  display:inline-block;
  float:left;
  margin:0 10px 10px 0;
  overflow:hidden;
  position:relative;
  width:auto;
}

.gallery-item a{
  display:block;
  line-height:0;
}

.gallery-columns-1 .gallery-item{
  max-width:100%;
}

.gallery-columns-2 .gallery-item{
  max-width:49.5%;
  max-width:calc(50% - 10px);
}

.gallery-columns-3 .gallery-item{
  max-width:33%;
  max-width:calc(33.3% - 10px);
}

.gallery-columns-4 .gallery-item{
  max-width:24.5%;
  max-width:calc(25% - 10px);
}

.gallery-columns-5 .gallery-item{
  max-width:19.5%;
  max-width:calc(20% - 10px);
}

.gallery-columns-6 .gallery-item{
  max-width:16%;
  max-width:calc(16.66% - 10px);
}

.gallery-columns-7 .gallery-item{
  max-width:13.5%;
  max-width:calc(14.285% - 10px);
}

.gallery-columns-8 .gallery-item{
  max-width:12%;
  max-width:calc(12.5% - 10px);
}

.gallery-columns-9 .gallery-item{
  max-width:10%;
  max-width:calc(11.11% - 10px);
}

.gallery-columns-1 figure.gallery-item:nth-of-type(1n),
.gallery-columns-2 figure.gallery-item:nth-of-type(2n),
.gallery-columns-3 figure.gallery-item:nth-of-type(3n),
.gallery-columns-4 figure.gallery-item:nth-of-type(4n),
.gallery-columns-5 figure.gallery-item:nth-of-type(5n),
.gallery-columns-6 figure.gallery-item:nth-of-type(6n),
.gallery-columns-7 figure.gallery-item:nth-of-type(7n),
.gallery-columns-8 figure.gallery-item:nth-of-type(8n),
.gallery-columns-9 figure.gallery-item:nth-of-type(9n){
  margin-right:0;
}

.gallery-columns-1 figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1 figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2 figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3 figure.gallery-item:nth-of-type(3n+1),
.gallery-columns-4 figure.gallery-item:nth-of-type(4n+1),
.gallery-columns-5 figure.gallery-item:nth-of-type(5n+1),
.gallery-columns-6 figure.gallery-item:nth-of-type(6n+1),
.gallery-columns-7 figure.gallery-item:nth-of-type(7n+1),
.gallery-columns-8 figure.gallery-item:nth-of-type(8n+1),
.gallery-columns-9 figure.gallery-item:nth-of-type(9n+1){
  clear:left;
}

.gallery-caption{
  background:rgba(0, 0, 0, 0.4);
  background:-webkit-gradient(linear,  left top, left bottom,  from(rgba(0,0,0,0.26)),color-stop(59%, rgba(0,0,0,0.59)),color-stop(69%, rgba(0,0,0,0.65)));
  background:linear-gradient(to bottom,  rgba(0,0,0,0.26) 0%,rgba(0,0,0,0.59) 59%,rgba(0,0,0,0.65) 69%);
  bottom:0;
  color:#ffffff;
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#42000000', endColorstr='#a6000000',GradientType=0 );
  font-size:11px;
  height:0;
  left:0;
  line-height:1.2;
  margin:0;
  opacity:0;
  padding:8px;
  position:absolute;
  visibility:hidden;
  width:100%;
}

.gallery-item:hover .gallery-caption{
  height:30%;
  opacity:1;
  visibility:visible;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption{
  display:none;
}

.hentry .entry-cats a{
  background:#E91E63;
  background:var(--color-accent-base);
  border-radius:1px;
  color:#ffffff;
  display:inline-block;
  line-height:1.1;
  margin:2px 2px 0 0;
  padding:4px 8px;
  text-decoration:none;
}

.posted-on a{
  font-weight:normal;
}

.hentry .entry-title{
  font-weight:900;
}

.hentry .entry-title a{
  color:inherit;
}

.hentry .entry-footer .byline{
  padding-left:15px;
  position:relative;
}

.hentry .entry-footer .byline:before{
  border-top:1px solid;
  content:"";
  left:0;
  opacity:0.5;
  position:absolute;
  top:49.99999%;
  width:12px;
}

.updated:not(.published){
  display:none;
}

.sidebar-area{
  border-top:1px solid #e5e5e5;
  border-top:1px solid var(--color-secondary-lighter);
}

.sidebar-area a{
  color:#111111;
  color:var(--color-primary-dark);
  text-decoration:none;
}

.sidebar-area a:hover,
.sidebar-area .widget .widget-title{
  color:#757575;
  color:var(--color-secondary-base);
}

.widget_text a:not(:hover){
  text-decoration:underline;
}

.sidebar-area > * + *{
  border-top:1px solid rgba(0,0,0,0.08);
  margin-top:2rem;
  padding-top:2rem;
}

.widget ul{
  -webkit-padding-start:0;
  list-style:none;
  margin:0;
  padding-left:0;
}

.widget .avatar{
  border-radius:50%;
}

.widget ul li,
.widget.widget_jp_blogs_i_follow ol li{
  padding-left:1.15em;
  position:relative;
}

.widget ul li:before,
.widget.widget_jp_blogs_i_follow ol li:before{
  -webkit-transform:translateY(50%) rotate(-45deg);
  border-bottom:1px solid;
  border-right:1px solid;
  content:'';
  height:6px;
  left:0;
  position:absolute;
  top:0.45em;
  transform:translateY(50%) rotate(-45deg);
  width:6px;
}

.sidebar-area .widget ul li:before,
.sidebar-area .widget.widget_jp_blogs_i_follow ol li:before{
  top:calc(0.45em + 7px);
}

.sidebar-area .widget ul li:first-child::before,
.sidebar-area .widget.widget_jp_blogs_i_follow ol li:first-child::before{
  top:0.45em;
}

#secondary .widget ul li + li,
#secondary .widget.widget_archive li + li,
#secondary .widget.widget_categories li + li,
#secondary .widget.widget_pages li + li,
#secondary .widget.widget_nav_menu li + li,
#secondary .widget.widget_recent_comments li + li,
#secondary .widget.widget_meta li + li,
#secondary .widget.widget_recent_entries li + li,
#secondary .widget.widget_recent_comments tr + tr,
#secondary .widget.widget_links li + li,
#secondary .widget.widget_authors ul > li + li,
#secondary .widget.widget_goodreads div[class*="gr_custom_each_container"]{
  border-top:1px dotted #e5e5e5;
  border-top:1px dotted var(--color-secondary-lighter);
  margin-top:7px;
  padding-top:7px;
}

#secondary .widget.widget_archive li,
#secondary .widget.widget_categories li,
#secondary .widget.widget_recent_entries .post-date,
#secondary .widget_tag_cloud a:hover,
#secondary .widget.wp_widget_tag_cloud a:hover,
#secondary .widget.widget_links{
  color:#757575;
  color:var(--color-secondary-base);
}

.widget.widget_recent_entries li,
.widget.widget_recent_comments li{
  line-height:1.55;
}

.widget.widget_recent_entries .post-date{
  display:block;
  font-size:85%;
  margin-top:2px;
}

.widget select{
  max-width:100%;
}

.widget.widget_calendar .table #next{
  text-align:right;
}

.sidebar-area .widget_tag_cloud a,
.sidebar-area .widget.wp_widget_tag_cloud a{
  background-color:#e5e5e5;
  background-color:var(--color-secondary-lighter);
}

.widget_tag_cloud a,
.widget.wp_widget_tag_cloud a{
  background-color:rgba(255,255,255,0.08);
  border-radius:1px;
  display:inline-block;
  font-size:11px !important;
  line-height:28px;
  margin:0 0 3px 0;
  padding:0 14px;
  text-transform:uppercase;
}

.widget.widget_categories li .children,
.widget.widget_pages li .children{
  margin-left:15px;
}

.widget.widget_authors,
.widget.widget_recent_comments,
.widget.widget_author_grid ul,
.widget.widget_top-posts .no-grav li,
.widget.widget_goodreads div[class*="gr_custom_each_container"]{
  overflow:hidden;
}

.widget.widget_authors > ul > li:before,
.widget.widget_author_grid li:before,
.widget.widget_wpcom_social_media_icons_widget li:before,
.widget.widget_jetpack_my_community li:before,
.widget.widget_jetpack_posts_i_like li:before,
.widget.widget_top-posts .no-grav li:before,
.widget.widget_eventbrite li:before{
  content:'';
  display:none;
  margin:0;
}

.widget.widget_authors > ul > li,
.widget.widget_author_grid li,
.widget.widget_jetpack_posts_i_like li,
.widget.widget_eventbrite li,
.widget.widget_wpcom_social_media_icons_widget li{
  padding:0;
}

.widget.widget_author_grid li,
.widget.widget_goodreads div[class*="gr_custom_book_container"],
.widget.widget_jetpack_posts_i_like .widgets-list-layout.no-grav .widgets-list-layout-links,
.widget.widget_top-posts .widgets-list-layout .widgets-list-layout-links{
  float:left;
}

.widget.widget_authors .avatar,
.widget.widget_authors li a strong{
  display:block;
}

.widget.widget_authors > ul > li,
#page .widget.milestone-widget{
  margin-bottom:35px;
}

.widget.widget_authors > ul > li:last-child,
.widget.widget_text .textwidget :last-child,
.widget.widget_gravatar :last-child,
.widget.widget_jetpack_posts_i_like :last-child,
.widget .recentcommentsavatar.table{
  margin-bottom:0;
}

.widget.widget_authors .avatar{
  margin-bottom:20px;
  margin-top:35px;
}

.widget.widget_authors li strong{
  color:#757575;
  color:var(--color-secondary-base);
  font-size:18px;
  font-size:1.125rem;
  font-weight:400;
  line-height:1;
  margin-bottom:30px;
}

#page .widget.widget_goodreads div[class^="gr_custom_container"]{
  background:none;
  border:none;
  color:inherit;
  padding:0;
}

.widget.widget_goodreads div[class*="gr_custom_each_container"]:last-child{
  border:none;
  padding:0;
}

.widget.widget_goodreads div[class*="gr_custom_book_container"]{
  margin-right:15px;
}

.widget.widget_goodreads div[class*="gr_custom_rating"]{
  line-height:1;
  margin-bottom:5px;
}

.widget.widget_goodreads div[class*="gr_custom_title"]{
  line-height:1.4;
}

.widget.widget_goodreads div[class*="gr_custom_author"]{
  font-size:12px;
  font-size:0.75rem;
}

#page .widget.widget_goodreads div[class^="gr_custom_each_container"]{
  border-bottom:none;
}

#page .jetpack_widget_social_icons ul li,
#page .widget.widget_jetpack_my_community ul li,
#page .widget.widget_author_grid li,
#page .widget.widget_eventbrite .simpleTabsNavigation li,
#page .widget.widget_wpcom_social_media_icons_widget li{
  border-top:none;
  margin-top:0;
  padding-top:0;
}

.widget.widget_recent_comments td{
  border-top:none;
}

.widget.widget_recent_comments td.recentcommentsavatarend,
.widget.widget_recent_comments td.recentcommentsavatartop{
  padding:13px 0;
}

.widget.widget_recent_comments td.recentcommentstextend{
  padding-bottom:13px;
  padding-top:13px;
}

.widget.widget_recent_comments .recentcommentsavatar tr:first-child td.recentcommentstextend,
.widget.widget_recent_comments .recentcommentsavatar tr:first-child td.recentcommentsavatartop{
  padding-top:0;
}

.widget.widget_recent_comments .recentcommentsavatar tr:last-child td.recentcommentstextend,
.widget.widget_recent_comments .recentcommentsavatar tr:last-child td.recentcommentsavatarend,
#page .widget.widget_goodreads div[class^="gr_custom_each_container"]{
  padding-bottom:0;
}

.widget.widget_jetpack_posts_i_like .widgets-list-layout.no-grav .widgets-list-layout-links,
.widget.widget_top-posts .widgets-list-layout .widgets-list-layout-links{
  margin-left:10px;
}

.widget.widget_flickr .table > tbody > tr > td{
  border:none;
  padding:0;
  text-align:left;
}

#page .widget.widget_flickr #flickr_badge_wrapper{
  background:none !important;
  border:none;
}

#page .widget.widget_flickr #flickr_badge_wrapper,
#page .widget.widget_flickr #flickr_badge_uber_wrapper{
  margin:0;
}

#page #flickr_badge_uber_wrapper a:link{
  color:#E91E63;
  color:var(--color-accent-base);
}

#page #flickr_badge_uber_wrapper a:hover,
#page #flickr_badge_uber_wrapper a:active,
#page #flickr_badge_uber_wrapper a:visited{
  color:#bd1f55;
  color:var(--color-accent-dark);
}

#page .widget-area.footer-section #flickr_badge_uber_wrapper a:link,
#page .widget-area.footer-section #flickr_badge_uber_wrapper a:hover,
#page .widget-area.footer-section #flickr_badge_uber_wrapper a:active,
#page .widget-area.footer-section #flickr_badge_uber_wrapper a:visited{
  color:inherit;
}

@keyframes fadein{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}

@-webkit-keyframes fadein{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}

.archive.author .page-header .avatar,
.single .entry-meta .avatar{
  border-radius:50%;
  display:none;
}

.archive.author .page-header .avatar{
  -webkit-box-shadow:0 0 2px rgba(0,0,0,0.09);
  border:3px solid #ffffff;
  border:3px solid var(--color-white);
  box-shadow:0 0 2px rgba(0,0,0,0.09);
  height:93px;
  margin-left:auto;
  min-width:93px;
  width:93px;
}

.single .entry-meta .avatar{
  margin-right:0.75rem;
}

.th-bg-white{
  background-color:#ffffff;
  background-color:var(--color-white);
}

.th-bg-primary-dark{
  background-color:#111111;
  background-color:var(--color-primary-dark);
}

.th-bg-primary-base{
  background-color:#2b2b2b;
  background-color:var(--color-primary-base);
}

.th-bg-secondary-lightest{
  background-color:#f5f5f5;
  background-color:var(--color-secondary-lightest);
}

.th-border-secondary-lighter{
  border-color:#e5e5e5;
  border-color:var(--color-secondary-lighter);
}

.th-rounded{
  border-radius:1px;
}

.th-rounded-full{
  border-radius:9999px;
}

.th-border-b{
  border-bottom-width:1px;
}

.th-block{
  display:block;
}

.th-inline-block{
  display:inline-block;
}

.th-flex{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.th-hidden{
  display:none;
}

.th-flex-wrap{
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.th-items-end{
  -ms-flex-align:end;
  -webkit-box-align:end;
  align-items:flex-end;
}

.th-items-center{
  -ms-flex-align:center;
  -webkit-box-align:center;
  align-items:center;
}

.th-justify-center{
  -ms-flex-pack:center;
  -webkit-box-pack:center;
  justify-content:center;
}

.th-font-normal{
  font-weight:400;
}

.th-font-bolder{
  font-weight:900;
}

.th-h-full{
  height:100%;
}

.th-text-xs{
  font-size:0.8125rem;
}

.th-text-sm{
  font-size:0.889rem;
}

.th-text-base{
  font-size:1rem;
}

.th-text-md{
  font-size:1.125rem;
}

.th-text-xl{
  font-size:1.424rem;
}

.th-text-2xl{
  font-size:1.602rem;
}

.th-text-3xl{
  font-size:2.027rem;
}

.th-text-4xl{
  font-size:2.281rem;
}

.th-leading-xs{
  line-height:1.25;
}

.th-list-none{
  list-style-type:none;
}

.th-my-0{
  margin-bottom:0;
  margin-top:0;
}

.th-mt-0{
  margin-top:0;
}

.th-mb-0{
  margin-bottom:0;
}

.th-ml-0{
  margin-left:0;
}

.th-ml-auto{
  margin-left:auto;
}

.th-mb-lg{
  margin-bottom:2rem;
}

.th-mr-base{
  margin-right:1rem;
}

.th-mb-base{
  margin-bottom:1rem;
}

.th-mt-sm{
  margin-top:0.75rem;
}

.th-mr-sm{
  margin-right:0.75rem;
}

.th-ml-sm{
  margin-left:0.75rem;
}

.th-max-w-base{
  max-width:42rem;
}

.th-p-base{
  padding:1rem;
}

.th-py-2xl{
  padding-bottom:3rem;
  padding-top:3rem;
}

.th-py-lg{
  padding-bottom:2rem;
  padding-top:2rem;
}

.th-px-lg{
  padding-left:2rem;
  padding-right:2rem;
}

.th-py-md{
  padding-bottom:1.5rem;
  padding-top:1.5rem;
}

.th-py-base{
  padding-bottom:1rem;
  padding-top:1rem;
}

.th-px-base{
  padding-left:1rem;
  padding-right:1rem;
}

.th-py-sm{
  padding-bottom:0.75rem;
  padding-top:0.75rem;
}

.th-pb-lg{
  padding-bottom:2rem;
}

.th-pt-md{
  padding-top:1.5rem;
}

.th-pb-md{
  padding-bottom:1.5rem;
}

.th-pb-base{
  padding-bottom:1rem;
}

.th-pl-base{
  padding-left:1rem;
}

.th-fill-current{
  fill:currentColor;
}

.th-text-center{
  text-align:center;
}

.th-text-inherit{
  color:inherit;
}

.th-text-white{
  color:#ffffff;
  color:var(--color-white);
}

.th-text-primary-dark{
  color:#111111;
  color:var(--color-primary-dark);
}

.th-text-secondary-base{
  color:#757575;
  color:var(--color-secondary-base);
}

.th-text-secondary-light{
  color:#aeaeae;
  color:var(--color-secondary-light);
}

.th-uppercase{
  text-transform:uppercase;
}

.th-w-3\/12{
  width:25%;
}

.th-w-9\/12{
  width:75%;
}

.th-w-full{
  width:100%;
}

[class^="th-stack"] > *{
  margin:0;
}

.th-stack--lg > * + *{
  margin-top:2rem;
}

.th-stack--md > * + *{
  margin-top:1.5rem;
}

.th-stack--base > * + *{
  margin-top:1rem;
}

.th-stack--sm > * + *{
  margin-top:0.75rem;
}

.th-stack--xs > * + *{
  margin-top:0.5rem;
}

.th-stack-full--lg > *{
  margin-top:2rem;
}

.th-stack-full--md > *{
  margin-top:1.5rem;
}

.th-stack-full--base > *{
  margin-top:1rem;
}

@media (min-width: 500px){
  .wp-block-pullquote.alignfull blockquote,
	.inactive-sidebar .alignfull [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){
    max-width:calc(100vw - 6rem);
  }
  .inactive-sidebar .alignfull [class*="__inner-container"] > .alignwide{
    max-width:calc(110vw - 6rem);
    width:100%;
  }
  .header-right-col::before{
    left:-2rem;
    right:-2rem;
  }
  .posts-navigation a{
    padding-left:2rem;
    padding-right:2rem;
  }
  .post-navigation a{
    padding:2rem;
  }
  .post-navigation .nav-title{
    font-size:1.424rem;
  }
  .post-navigation a:before{
    height:260px;
  }
  .archive.author .page-header .avatar,
	.single .entry-meta .avatar{
    display:block;
  }
  .sm\:th-block{
    display:block;
  }
  .sm\:th-flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  }
  .sm\:th-text-6xl{
    font-size:2.887rem;
  }
  .sm\:th-mt-0{
    margin-top:0;
  }
  .sm\:th-mb-2xl{
    margin-bottom:3rem;
  }
  .sm\:th-mr-base{
    margin-right:1rem;
  }
  .sm\:th-p-lg{
    padding:2rem;
  }
  .sm\:th-py-4xl{
    padding-bottom:6rem;
    padding-top:6rem;
  }
  .sm\:th-py-2xl{
    padding-bottom:3rem;
    padding-top:3rem;
  }
  .sm\:th-px-2xl{
    padding-left:3rem;
    padding-right:3rem;
  }
  .sm\:th-py-xl{
    padding-bottom:2.5rem;
    padding-top:2.5rem;
  }
  .sm\:th-px-lg{
    padding-left:2rem;
    padding-right:2rem;
  }
  .sm\:th-py-md{
    padding-bottom:1.5rem;
    padding-top:1.5rem;
  }
  .sm\:th-px-base{
    padding-left:1rem;
    padding-right:1rem;
  }
  .sm\:th-pb-2xl{
    padding-bottom:3rem;
  }
  .sm\:th-pb-lg{
    padding-bottom:2rem;
  }
  .sm\:th-stack--2xl > * + *{
    margin-top:3rem;
  }
  .sm\:th-stack-full--2xl > *{
    margin-top:3rem;
  }
  .sm\:th-stack-full--lg > *{
    margin-top:2rem;
  }
}

@media (min-width: 600px){
  .wp-block-latest-posts.is-grid li{
    margin-right:2rem;
  }
  .wp-block-latest-posts.columns-2 li{
    width:calc(50% - 2rem);
  }
  .wp-block-latest-posts.columns-3 li{
    width:calc(33.33333% - 2rem);
  }
  .wp-block-latest-posts.columns-4 li{
    width:calc(25% - 2rem);
  }
  .wp-block-latest-posts.columns-5 li{
    width:calc(20% - 2rem);
  }
  .wp-block-latest-posts.columns-6 li{
    width:calc(16.66667% - 2rem);
  }
  .wp-block-media-text .wp-block-media-text__media{
    margin-bottom:0;
  }
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{
    margin-top:0;
  }
  .wp-block-media-text .wp-block-media-text__content{
    padding-left:2rem;
    padding-right:0;
  }
  .has-media-on-the-right .wp-block-media-text__content{
    padding-left:0;
    padding-right:2rem;
  }
}

@media (min-width: 768px){
  blockquote{
    border-left:none;
    font-size:1.424rem;
    line-height:1.45;
    margin:2rem 0;
    padding-bottom:2rem;
    padding-top:2rem;
    position:relative;
    z-index:1;
  }
  blockquote:before{
    background-color:#f5f5f5;
    background-color:var(--color-secondary-lightest);
    bottom:0;
    content:"";
    left:30%;
    position:absolute;
    right:10%;
    top:0;
    z-index:-1;
  }
  .wp-block-cover.alignleft,
	.wp-block-cover.alignright{
    margin-bottom:0.75rem;
  }
  .wp-block-image .alignleft,
	.wp-block-image .alignright{
    margin-bottom:0.75rem;
  }
  .wp-block-image .alignleft{
    margin-right:2rem;
  }
  .wp-block-image .alignright{
    margin-left:2rem;
  }
  .wp-block-latest-posts__featured-image.alignleft,
	.wp-block-latest-posts__featured-image.alignright{
    margin-bottom:2rem;
  }
  .wp-block-latest-posts__featured-image.alignleft{
    margin-right:2rem;
  }
  .wp-block-latest-posts__featured-image.alignright{
    margin-left:2rem;
  }
  .wp-block-pullquote blockquote{
    font-size:1.424em;
  }
  .wp-block-pullquote.alignleft blockquote,
  .wp-block-pullquote.alignright blockquote{
    font-size:1.125em;
  }
  .wp-block-pullquote.alignleft{
    float:left;
    margin-right:2rem;
    text-align:left;
  }
  .wp-block-pullquote.alignright{
    float:right;
    margin-left:2rem;
    text-align:right;
  }
  .inactive-sidebar .alignwide{
    margin-left:-2.5vw;
    margin-right:-2.5vw;
    width:calc(100% + 5vw);
  }
  [class*="has-background"] .wp-block-quote::before{
    opacity:0.15;
  }
  blockquote.pull-left,
	blockquote.pull-right{
    padding:0;
    width:45%;
  }
  blockquote.pull-left{
    float:left;
    margin:35px 35px 55px -35px;
  }
  blockquote.pull-right{
    float:right;
    margin:35px -35px 55px 35px;
  }
  .wp-block-quote.is-style-large,
	.wp-block-quote.is-large,
	.wp-block-quote.has-text-align-center{
    padding-bottom:2rem;
    padding-top:2rem;
  }
  .wp-block-quote.is-style-large,
	.wp-block-quote.is-large{
    margin:2rem 0;
  }
  .wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright{
    padding:1em;
  }
  .wp-block-pullquote.is-style-solid-color{
    text-shadow:0 1px 2px rgba(0,0,0,0.1);
  }
  .header-right-col::before{
    display:none;
  }
  .header-search-button{
    line-height:inherit;
  }
  .mobile-menu-button{
    margin-right:0;
  }
  .site-footer .widget{
    border-right:1px solid rgba(255,255,255,0.08);
    width:50%;
  }
  .active-sidebar .archive-grid .hentry{
    width:50%;
  }
  .active-sidebar .archive-grid .hentry:nth-of-type(3n){
    border-right:1px solid #e5e5e5;
    border-right:1px solid var(--color-secondary-lighter);
  }
  .active-sidebar .archive-grid .hentry:nth-of-type(2n){
    border-right:none;
  }
  .md\:th-inline-block{
    display:inline-block;
  }
  .md\:th-items-center{
    -ms-flex-align:center;
    -webkit-box-align:center;
    align-items:center;
  }
  .md\:th-justify-end{
    -ms-flex-pack:end;
    -webkit-box-pack:end;
    justify-content:flex-end;
  }
  .md\:th-m-0{
    margin:0;
  }
  .md\:th-mt-0{
    margin-top:0;
  }
  .md\:th-px-4xl{
    padding-left:6rem;
    padding-right:6rem;
  }
  .md\:th-pb-md{
    padding-bottom:1.5rem;
  }
  .md\:th-pr-base{
    padding-right:1rem;
  }
  .md\:th-pl-sm{
    padding-left:0.75rem;
  }
  .md\:th-w-3\/12{
    width:25%;
  }
  .md\:th-w-9\/12{
    width:75%;
  }
  .md\:th-text-align-unset{
    text-align:inherit;
  }
}

@media (min-width: 782px){
  .wp-block-columns > *{
    margin-top:0;
  }
  .wp-block-column:not(:first-child){
    margin-left:2rem;
  }
}

@media screen and (min-width: 782px){
  .admin-bar .sticky-header{
    top:32px;
  }
  .admin-bar .site-search-container{
    top:47px;
  }
}

@media (min-width: 992px){
  .inactive-sidebar .alignwide{
    margin-left:-5vw;
    margin-right:-5vw;
    width:calc(100% + 10vw);
  }
  .inactive-sidebar .alignfull [class*="__inner-container"] > .alignwide{
    max-width:calc(992px + 10vw);
    width:100%;
  }
  .wp-block-pullquote.alignfull blockquote,
	.inactive-sidebar .alignfull [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){
    max-width:calc(992px - 12rem);
  }
  .inactive-sidebar .alignfull [class*="__inner-container"] > .alignwide{
    max-width:calc(992px - 12rem + 10vw);
    width:100%;
  }
  .header-left-col .main-navigation{
    width:70%;
  }
  .header-left-col .site-branding{
    border-right:1px solid #e5e5e5;
    border-right:1px solid var(--color-secondary-lighter);
    max-width:30%;
    width:auto;
  }
  .header-search-button{
    border-left:none;
  }
  .header-right-col .jetpack-social-navigation,
	.header-right-col .social-navigation{
    display:block;
  }
  .site-footer .jetpack-social-navigation,
	.site-footer .social-navigation{
    margin-top:0;
    width:50%;
  }
  .site-footer .widget{
    width:20%;
  }
  .site-footer .widget:nth-child(4n){
    border-right:none;
    width:40%;
  }
  .site-footer .site-info{
    -ms-flex-order:1;
    -webkit-box-ordinal-group:2;
    order:1;
  }
  .site-footer .footer-navigation{
    -ms-flex-order:2;
    -webkit-box-ordinal-group:3;
    order:2;
    text-align:right;
  }
  .site .jetpack-social-navigation ul,
	.social-navigation ul{
    -ms-flex-pack:end;
    -webkit-box-pack:end;
    justify-content:flex-end;
  }
  .post-navigation:before{
    display:block;
  }
  .post-navigation .nav-links > * + *{
    border-top:none;
  }
  .post-navigation .nav-previous{
    float:left;
    width:50%;
  }
  .post-navigation .nav-next{
    float:right;
    width:50%;
  }
  .active-sidebar:not(.error404):not(.page-template-full-width-page) .site-main{
    float:left;
    width:66.66666%;
  }
  .left-sidebar:not(.error404):not(.page-template-full-width-page) .site-main{
    float:right;
  }
  .sidebar-area{
    -webkit-box-shadow:inset 15px 0 9px -15px rgba(0,0,0,0.08), inset 1px 0 2px -1px #e5e5e5;
    -webkit-box-shadow:inset 15px 0 9px -15px rgba(0,0,0,0.08), inset 1px 0 2px -1px var(--color-secondary-lighter);
    border-top:none;
    box-shadow:inset 15px 0 9px -15px rgba(0,0,0,0.08), inset 1px 0 2px -1px #e5e5e5;
    box-shadow:inset 15px 0 9px -15px rgba(0,0,0,0.08), inset 1px 0 2px -1px var(--color-secondary-lighter);
    float:left;
    position:relative;
    width:33.33333%;
    z-index:3;
  }
  .left-sidebar .sidebar-area{
    -webkit-box-shadow:inset -15px 0 9px -15px rgba(0,0,0,0.08), inset -1px 0 2px -1px #e5e5e5;
    -webkit-box-shadow:inset -15px 0 9px -15px rgba(0,0,0,0.08), inset -1px 0 2px -1px var(--color-secondary-lighter);
    box-shadow:inset -15px 0 9px -15px rgba(0,0,0,0.08), inset -1px 0 2px -1px #e5e5e5;
    box-shadow:inset -15px 0 9px -15px rgba(0,0,0,0.08), inset -1px 0 2px -1px var(--color-secondary-lighter);
    float:right;
  }
  .lg\:th-block{
    display:block;
  }
  .lg\:th-hidden{
    display:none;
  }
  .lg\:th-pl-0{
    padding-left:0;
  }
  .lg\:th-pr-sm{
    padding-right:0.75rem;
  }
  .lg\:th-w-6\/12{
    width:50%;
  }
}

@media (min-width: 1441px){
  .inactive-sidebar .alignfull{
    margin-left:calc(50% - 720.5px);
    width:1441px;
  }
}

@media only screen and (min-width: 1441px){
  .custom-background #page{
    margin-left:auto;
    margin-right:auto;
  }
}

@media only screen and (max-width: 992px){
  .footer-top{
    text-align:center;
  }
}

@media screen and (max-width: 992px){
  .single #sticky-header .sticky-left-col #sticky-menu{
    display:none;
  }
  #sticky-header .sticky-left-col{
    line-height:0;
  }
}

@media (max-width: 959px) and (min-width: 768px){
  .wp-block-pullquote.alignfull blockquote,
	.inactive-sidebar .alignfull [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright){
    max-width:calc(100vw - 12rem);
  }
  .inactive-sidebar .alignfull [class*="__inner-container"] > .alignwide{
    max-width:calc(110vw - 12rem);
    width:100%;
  }
}

@media screen and (max-width: 782px) and (min-width: 600px){
  .admin-bar .sticky-header{
    top:46px;
  }
  .admin-bar .site-search-container{
    top:61px;
  }
}

@media (max-width: 781px) and (min-width: 600px){
  .wp-block-column:nth-child(-n + 2){
    margin-top:0;
  }
}

@media only screen and (max-width: 768px){
  .wp-block-file.alignright,
	.wp-block-file.alignleft,
	.wp-block-pullquote.alignright,
	.wp-block-pullquote.alignleft,
	.wp-block-audio.alignleft,
	.wp-block-audio.alignright,
	.wp-block-video.alignleft,
	.wp-block-video.alignright,
	.wp-block-embed.alignleft,
	.wp-block-embed.alignright,
	.wp-block-cover.alignleft,
	.wp-block-cover.alignright{
    max-width:100%;
    width:100%;
  }
}

@media screen and (max-width: 767px){
  .table-responsive{
    -ms-overflow-style:-ms-autohiding-scrollbar;
    border:none;
    margin-bottom:2rem;
    overflow-y:hidden;
    width:100%;
  }
  .wp-block-table > .table-responsive,
	.table-responsive > table{
    margin-bottom:0;
  }
  .table-responsive > table:not(.has-fixed-layout) > thead > tr > th,
	.table-responsive > table:not(.has-fixed-layout) > tbody > tr > th,
	.table-responsive > table:not(.has-fixed-layout) > tfoot > tr > th,
	.table-responsive > table:not(.has-fixed-layout) > thead > tr > td,
	.table-responsive > table:not(.has-fixed-layout) > tbody > tr > td,
	.table-responsive > table:not(.has-fixed-layout) > tfoot > tr > td{
    white-space:nowrap;
  }
}

@media only screen and (max-width: 500px){
  .wp-block-image .alignright,
	.wp-block-image .alignleft{
    float:none;
    margin-left:auto;
    margin-right:auto;
  }
  .wp-block-quote.is-style-large,
	.wp-block-quote.is-large{
    margin-left:0;
    margin-right:0;
  }
  .wp-block-pullquote.is-style-default blockquote{
    max-width:100%;
  }
  #sticky-header .hentry-title{
    font-size:16px;
    font-size:1rem;
  }
  .entry-content img.alignright,
	.entry-content img.alignleft,
	.entry-content .wp-caption.alignright,
	.entry-content .wp-caption.alignleft{
    float:none;
  }
  .entry-content img.alignright,
	.entry-content img.alignleft,
	.wp-caption{
    display:block;
    margin:0 auto 2.188em;
  }
  .custom-background #page{
    margin:15px;
  }
  .custom-background #sticky-header{
    left:15px;
    right:15px;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0){
  select,
	textarea,
	input{
    font-size:16px;
  }
}
/*!
* Do not modify this file directly.  It is concatenated from individual module CSS files.
*/
[data-carousel-extra]{cursor:pointer}.jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{background:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(/wp-content/plugins/jetpack/css/../modules/carousel/images/arrows.png) no-repeat center center;background-size:200px 126px}.jp-carousel-msg{font-family:"Open Sans",sans-serif;font-style:normal;display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:center;margin:25px 20px 0 2px;background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(/wp-content/plugins/jetpack/css/../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:left!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;left:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{transition:.4s ease-out}.jp-carousel-info h2{background:0 0!important;border:none!important;color:#999;display:block!important;font:normal 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:left;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{transition:.5s opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{opacity:.6}.jp-carousel-next-button span{background-position:-110px center;right:0}.jp-carousel-previous-button span{background-position:-10px center;left:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:normal 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 2px 5px 0;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-transitions .jp-carousel-slide{transition:.3s ease-out}.jp-carousel-slide.selected{position:absolute!important;opacity:1}.jp-carousel-slide{opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:0 0!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{transition:opacity .4s linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:right;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{transition:color .2s linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:inline-block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 0 0 .4em;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{transition:border-color .2s linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(/wp-content/plugins/jetpack/css/../modules/carousel/images/carousel-sprite.png?5) no-repeat;background-size:16px 200px}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 14px 0 0!important}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-right:8px!important;border-radius:2px;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 2px 0 -12px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-right:auto!important;padding-left:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-left:19px!important}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(/wp-content/plugins/jetpack/css/../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;background:-moz-linear-gradient(bottom,#222,#333);background:-webkit-gradient(linear,left bottom,left top,from(#222),to(#333));padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:left;margin:6px 9px 0 9px;border:1px solid #666;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:2px}#carousel-reblog-box textarea:focus{background:#ccc;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-right:2px;padding-left:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:left;width:154px;padding-top:0;padding-left:1px;overflow:hidden;height:34px;margin:3px 0 0 2px!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-left:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;background:-moz-linear-gradient(bottom,#aaa,#ccc);background:-webkit-gradient(linear,left bottom,left top,from(#aaa),to(#ccc));border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc;background:-moz-linear-gradient(bottom,#ccc,#eee);background:-webkit-gradient(linear,left bottom,left top,from(#ccc),to(#eee))}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font-size:13px;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;right:auto!important;left:auto!important;bottom:auto!important;background:0 0!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;display:inline-block!important;vertical-align:top!important;margin:0 2% 15px 0!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-left:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-left:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 1px 0 2px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-left-radius:6px;border-right:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;right:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-right-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-left:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;right:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none transparent}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none transparent;color:#999;margin-bottom:20px;clear:left;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:left}.jp-carousel-comment .comment-content{border:none;margin-left:85px;padding:0}.jp-carousel-comment .avatar{margin:0 20px 0 0;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:right}#jp-carousel-comment-form{margin:0 0 10px!important;float:left;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner,#jp-carousel-comment-form-spinner:after{border-radius:50%;width:20px;height:20px}#jp-carousel-comment-form-spinner{display:none;float:left;margin:22px 0 0 10px;font-size:10px;position:relative;text-indent:-9999em;border-top:4px solid rgba(255,255,255,.2);border-right:4px solid rgba(255,255,255,.2);border-bottom:4px solid rgba(255,255,255,.2);border-left:4px solid #fff;transform:translateZ(0);animation:load8 1.1s infinite linear}@keyframes load8{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:left;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:left}#jp-carousel-comment-form-commenting-as fieldset{float:left;border:none;margin:20px 0 0 0;padding:0}#jp-carousel-comment-form-commenting-as fieldset{clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 20px 3px 0;float:left;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:right}#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px #000}.jp-carousel-comment-post-error{color:#df4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:400 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:left;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-left:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div#carousel-reblog-box{background:#eee;background:-moz-linear-gradient(bottom,#ececec,#f7f7f7);background:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f7f7f7));box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{border:1px inset #ccc;color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;background:-moz-linear-gradient(bottom,#ddd,#fff);background:-webkit-gradient(linear,left bottom,left top,from(#ddd),to(#fff));border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-left-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}.jp-carousel-light .jp-carousel-fadeaway{background:-moz-linear-gradient(bottom,rgba(255,255,255,.75),rgba(255,255,255,0));background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,255,255,.75)),to(rgba(255,255,255,0)))}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-buttons{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{left:0!important;width:100%!important}}
.contact-form .clear-form{clear:both}.contact-form input:-ms-input-placeholder{-ms-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.contact-form input::-ms-input-placeholder{-ms-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.contact-form input::placeholder{transition:opacity .3s ease-out}.contact-form input:hover:-ms-input-placeholder{opacity:.5}.contact-form input:hover::-ms-input-placeholder{opacity:.5}.contact-form input:hover::placeholder{opacity:.5}.contact-form input:focus:-ms-input-placeholder{opacity:.3}.contact-form input:focus::-ms-input-placeholder{opacity:.3}.contact-form input:focus::placeholder{opacity:.3}.contact-form input[type=email],.contact-form input[type=tel],.contact-form input[type=text],.contact-form input[type=url]{box-sizing:border-box;margin-bottom:1.5em;width:100%}.contact-form select{margin-bottom:1.5em}.contact-form textarea{box-sizing:border-box;float:none;height:200px;margin-bottom:1.5em;width:100%}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin:0 .75rem 0 5px}.contact-form input[type=checkbox]{top:0;margin-left:0}.contact-form label{margin-bottom:.25em;float:none;font-weight:700;display:block}.contact-form label.consent-implicit input{display:none}.contact-form label.checkbox,.contact-form label.checkbox-multiple,.contact-form label.radio{margin-bottom:.25em;float:none;font-weight:400;display:inline-flex;align-items:center}.contact-form .grunion-field-checkbox-multiple-wrap,.contact-form .grunion-field-checkbox-wrap,.contact-form .grunion-field-consent-wrap,.contact-form .grunion-field-radio-wrap{margin-bottom:1em}.contact-form label span{font-size:85%;margin-left:.25em;font-weight:400}.contact-form-submission{margin-bottom:4em;padding:1.5em 1em}.contact-form-submission p{margin:0 auto;word-wrap:break-word}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=tel],.textwidget .contact-form input[type=text],.textwidget .contact-form input[type=url],.textwidget .contact-form textarea,.wp-block-column .contact-form input[type=email],.wp-block-column .contact-form input[type=tel],.wp-block-column .contact-form input[type=text],.wp-block-column .contact-form input[type=url],.wp-block-column .contact-form textarea{width:100%}#jetpack-check-feedback-spam{margin:1px 8px 0 0}.jetpack-check-feedback-spam-spinner{display:inline-block;margin-top:7px}.wp-block-jetpack-contact-form{display:flex;flex-wrap:wrap;justify-content:flex-start;flex-direction:row}.wp-block-jetpack-button,.wp-block-jetpack-contact-form .grunion-field-wrap{flex:0 0 100%}.wp-block-jetpack-button.alignright button{float:right}.wp-block-jetpack-contact-form .grunion-field-wrap{border-right:15px solid transparent}.wp-block-jetpack-contact-form .grunion-field-width-25-wrap{flex:0 0 25%}.wp-block-jetpack-contact-form .grunion-field-width-50-wrap{flex:0 0 50%}.wp-block-jetpack-contact-form .grunion-field-width-75-wrap{flex:0 0 75%}.grunion-field-checkbox-wrap,.grunion-field-consent-wrap{align-self:center}@media only screen and (min-width:600px){.contact-form input[type=email],.contact-form input[type=tel],.contact-form input[type=text],.contact-form input[type=url]{width:50%}.wp-block-jetpack-contact-form input[type=email],.wp-block-jetpack-contact-form input[type=tel],.wp-block-jetpack-contact-form input[type=text],.wp-block-jetpack-contact-form input[type=url]{width:100%}}.jetpack-empty-spam-container{display:inline-block}.jetpack-empty-spam{display:inline-block}.jetpack-empty-spam-spinner{display:inline-block;margin-top:7px}
.infinite-loader{color:#000;display:block;height:28px;text-align:center}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}@keyframes spinner-inner{0%{opacity:1}100%{opacity:0}}.infinite-loader .spinner-inner div{left:47px;top:24px;position:absolute;animation:spinner-inner linear 1s infinite;background:#000;outline:1px solid #fff;width:6px;height:12px;border-radius:3px/6px;transform-origin:3px 26px}.infinite-loader .spinner-inner div:nth-child(1){transform:rotate(0);animation-delay:-.9166666666666666s;background:#000}.infinite-loader .spinner-inner div:nth-child(2){transform:rotate(30deg);animation-delay:-.8333333333333334s;background:#000}.infinite-loader .spinner-inner div:nth-child(3){transform:rotate(60deg);animation-delay:-.75s;background:#000}.infinite-loader .spinner-inner div:nth-child(4){transform:rotate(90deg);animation-delay:-.6666666666666666s;background:#000}.infinite-loader .spinner-inner div:nth-child(5){transform:rotate(120deg);animation-delay:-.5833333333333334s;background:#000}.infinite-loader .spinner-inner div:nth-child(6){transform:rotate(150deg);animation-delay:-.5s;background:#000}.infinite-loader .spinner-inner div:nth-child(7){transform:rotate(180deg);animation-delay:-.4166666666666667s;background:#000}.infinite-loader .spinner-inner div:nth-child(8){transform:rotate(210deg);animation-delay:-.3333333333333333s;background:#000}.infinite-loader .spinner-inner div:nth-child(9){transform:rotate(240deg);animation-delay:-.25s;background:#000}.infinite-loader .spinner-inner div:nth-child(10){transform:rotate(270deg);animation-delay:-.16666666666666666s;background:#000}.infinite-loader .spinner-inner div:nth-child(11){transform:rotate(300deg);animation-delay:-83.33333333333333ms;background:#000}.infinite-loader .spinner-inner div:nth-child(12){transform:rotate(330deg);animation-delay:0s;background:#000}.infinite-loader .spinner{width:28px;height:28px;display:inline-block;overflow:hidden;background:0 0}.infinite-loader .spinner-inner{width:100%;height:100%;position:relative;transform:translateZ(0) scale(.28);-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-origin:0 0}.infinite-loader .spinner-inner div{box-sizing:content-box}#infinite-handle span button,#infinite-handle span button:focus,#infinite-handle span button:hover{display:inline;position:static;padding:0;margin:0;border:none;line-height:inherit;background:0 0;color:inherit;cursor:inherit;font-size:inherit;font-weight:inherit;font-family:inherit}#infinite-handle span button::-moz-focus-inner{margin:0;padding:0;border:none}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;left:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:left;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:right;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:right}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#infinite-aria{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.infinite-wrap:focus{outline:0!important}
#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em 0;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}div.jetpack-comment-likes-widget-wrapper{width:100%;position:relative;min-height:31px}div.jetpack-comment-likes-widget-wrapper iframe{margin-bottom:0}#likes-other-gravatars{display:none;position:absolute;padding:10px 10px 12px 10px;background-color:#2e4453;border-width:0;box-shadow:0 0 10px #2e4453;box-shadow:0 0 10px rgba(46,68,83,.6);min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:12px;padding-bottom:8px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:left;margin:0 5px 5px 0}#likes-other-gravatars ul.wpl-avatars li a{margin:0 2px 0 0;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.comment-likes-widget-placeholder,.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.comment-likes-widget-placeholder{height:18px;position:absolute;display:flex;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.comment-likes-widget-placeholder::before{color:#2ea2cc;width:16px;height:16px;content:'';display:inline-block;position:relative;top:3px;padding-right:5px;background-repeat:no-repeat;background-size:16px 16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E")}.post-likes-widget-placeholder .button{display:none}.comment-likes-widget-placeholder .loading,.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.comment-likes-widget-placeholder .loading{padding-left:5px;margin-top:4px;align-self:center;color:#4e4e4e}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.cs-rating,.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}
.jp-related-posts-i2__row{display:flex;margin-top:1.5rem}.jp-related-posts-i2__row:first-child{margin-top:0}.jp-related-posts-i2__post{flex-grow:1;flex-basis:0;margin:0 10px;display:flex;flex-direction:column;padding-left:0}.jp-related-posts-i2__row[data-post-count="3"] .jp-related-posts-i2__post{max-width:calc(33% - 20px)}.jp-related-posts-i2__row[data-post-count="1"] .jp-related-posts-i2__post,.jp-related-posts-i2__row[data-post-count="2"] .jp-related-posts-i2__post{max-width:calc(50% - 20px)}.jp-related-posts-i2__post-context,.jp-related-posts-i2__post-date,.jp-related-posts-i2__post-heading,.jp-related-posts-i2__post-img-link{flex-direction:row;display:block}.jp-related-posts-i2__post-heading{margin:.5rem 0;font-size:1rem;line-height:1.2em}.jp-related-posts-i2__post-link{display:block;width:100%;line-height:1.2em}.jp-related-posts-i2__post-img-link{order:-1}.jp-related-posts-i2__post-img-link img{width:100%}.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__row{margin-top:0;display:block}.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__post{max-width:none;margin:0}.jp-relatedposts-i2[data-layout=list].jp-related-posts-i2__post-img-link{margin-top:1rem}@media only screen and (max-width:640px){.jp-related-posts-i2__row{margin-top:0;display:block}.jp-related-posts-i2__row[data-post-count] .jp-related-posts-i2__post{max-width:none;margin:0;margin-top:1rem}.jp-related-posts-i2__post-img-link{margin-top:1rem}.jp-related-posts-i2__post-img-link img{width:350px}}#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative;clear:both}.jp-relatedposts:after{content:'';display:block;clear:both}#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em 0;display:inline-block;float:left;font-size:9pt;font-weight:700;font-family:inherit}#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}#jp-relatedposts .jp-relatedposts-items{clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:-20px}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{float:left;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post{padding-right:20px;-moz-opacity:.8;opacity:.8}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4){clear:both}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover{-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items p,#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs{position:relative}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;left:0;right:0;display:block;border-bottom:0}#jp-relatedposts .jp-relatedposts-items p{margin-bottom:0}#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;-moz-opacity:1;opacity:1}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{display:none}#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt{display:none}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span{margin-bottom:1em}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post{clear:both;width:100%}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img{float:left;overflow:hidden;max-width:33%;margin-right:3%}#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{display:inline-block;max-width:63%}@media only screen and (max-width:640px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:50%}#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:left}#jp-relatedposts .jp-relatedposts-items-visual{margin-right:20px}}@media only screen and (max-width:320px){#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title{float:none;max-width:100%;margin-right:0}}
#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em 0;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-sharing{margin-bottom:1em}.sd-content ul{padding:0!important;margin:0!important;list-style:none!important}.sd-content ul li{display:inline-block}.sd-content ul li.share-deprecated{opacity:.5}.sd-content ul li.share-deprecated a span{text-decoration:line-through}.sd-block.sd-gplus{margin:0 0 .5em 0}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#656565!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 8px 0 5px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button>a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content ul li a.sd-button>span{line-height:17px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:normal 18px/1 social-logos;vertical-align:top;text-align:center}.sd-social-icon-text ul li a.sd-button:before{position:relative;top:2px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-content ul li a.sd-button:before{position:relative;top:2px}}.sd-social-official ul li a.sd-button:before{position:relative;top:-2px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-social-official ul li a.sd-button:before{top:0}}.sd-content ul li{margin:0 5px 5px 0;padding:0}.jp-sharing-input-touch .sd-content ul li{padding-left:10px}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-left:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-left:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-left:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:-4px}@media screen and (-webkit-min-device-pixel-ratio:0){.sd-social-icon .sd-content ul li a.share-more{top:2px}}@-moz-document url-prefix(){.sd-social-icon .sd-content ul li a.share-more{top:2px}}.sd-social-icon .sd-content ul li a.share-more span{margin-left:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f607'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f210'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f203'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.share-telegram div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-telegram a:before,.sd-social-icon-text .sd-content li.share-telegram a:before,.sd-social-official .sd-content li.share-telegram a:before,.sd-social-text .sd-content ul li.share-telegram a:before{content:'\f606'}.sd-social-official .sd-content li.share-telegram a:before{color:#08c}.sd-content ul li.share-skype div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-skype a:before,.sd-social-icon-text .sd-content li.share-skype a:before,.sd-social-text .sd-content ul li.share-skype a:before{content:'\f220'}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before,.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before,.sd-social-official .sd-content li.share-jetpack-whatsapp a:before,.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before{content:'\f608'}.sd-social-official .sd-content li.share-jetpack-whatsapp a:before{color:#43d854}.sd-social-icon .sd-content ul li[class*=share-].share-jetpack-whatsapp a.sd-button{background:#43d854;color:#fff!important}.sd-content ul li.share-deprecated div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-deprecated a:before,.sd-social-icon-text .sd-content li.share-deprecated a:before,.sd-social-official .sd-content li.share-deprecated a:before{width:1em;height:1em;content:"\1F6AB"}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px 0}.sd-social-official .sd-content ul>li{display:block;float:left;margin:0 10px 5px 0!important;height:25px}.sd-social-official .fb-share-button>span{vertical-align:top!important}.sd-social-official .sd-content .pocket_button iframe{width:98px}.reddit_button iframe{margin-top:1px}.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}.linkedin_button>span,.pinterest_button a{display:block!important}.sd-social-official .sd-content .share-skype{width:55px}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0 3px;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-left:0;padding:0 0 0 19px;display:inline-block;height:21px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-left:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0!important;height:0!important}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;left:20px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:7px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:1px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px 8px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-left:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-left:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;right:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#1877f2;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-telegram a.sd-button{background:#08c;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-skype a.sd-button{background:#00aff0;color:#fff!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:left}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px 0;text-align:left;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#jetpack-source_f_name{display:none!important;position:absolute!important;left:-9000px}#sharing_email .sharing_cancel{padding:0 0 0 1em;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em 0}.sd-content .share-customize-link{margin-top:0;line-height:11px}.sd-content .share-customize-link a{font-size:11px;font-family:"Open Sans",sans-serif}
.slideshow-window{background-color:#222;border:20px solid #222;border-radius:10px;height:0;margin-bottom:20px;overflow:hidden;padding-top:30px!important;padding-bottom:56.25%!important;position:relative;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{background-color:transparent!important;background-image:none!important;border-width:0!important;display:block;margin:0 auto;max-width:100%;max-height:100%;padding:0!important;position:relative;transform:translateY(-50%);top:50%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{display:none;height:100%!important;left:0;margin:auto;position:absolute;text-align:center;top:0;width:100%!important}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;left:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;opacity:.5;direction:ltr;transition:.3s opacity ease-out}.slideshow-window:hover .slideshow-controls{opacity:1}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(/wp-content/plugins/jetpack/css/../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;border-radius:10em!important;transition:.3s border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(/wp-content/plugins/jetpack/css/../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:#fff!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.running{background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}
body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;right:0!important;bottom:0!important;left:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:grey;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(/wp-content/plugins/jetpack/css/../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{left:0;background-position:4px 50%}.presentation .nav-arrow-right{right:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;right:0;z-index:3;background-image:url(/wp-content/plugins/jetpack/css/../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(/wp-content/plugins/jetpack/css/../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;transition:opacity .5s}
div.jetpack-quiz{border:1px solid #deede3;background-color:#f3f3f3;padding:1em;line-height:1.3em;margin-bottom:2em;border-radius:.2em}div.jetpack-quiz div.jetpack-quiz-question{margin-bottom:.5em;font-weight:700}div.jetpack-quiz div.jetpack-quiz-answer{cursor:pointer;margin-bottom:.5em;padding:1em 0 1em 1em;border-bottom:1px dotted #999}div.jetpack-quiz div.jetpack-quiz-answer.last{padding-bottom:0;margin-bottom:0;border-bottom:0}div.jetpack-quiz div.jetpack-quiz-answer.correct{color:green}div.jetpack-quiz div.jetpack-quiz-answer.wrong{color:red}div.jetpack-quiz div.jetpack-quiz-answer div.jetpack-quiz-explanation{display:none}div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation,div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation{display:block;color:#000;font-size:90%;margin-top:1em}div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation tt,div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation tt{font-size:85%}div.jetpack-quiz pre{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;background:0 0;margin:0;padding:0}
#subscribe-email input{width:95%}.comment-subscription-form{margin-bottom:1em}.comment-subscription-form .subscribe-label{display:inline!important}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}
.jetpack-video-wrapper{margin-bottom:1.6em}.jetpack-video-wrapper>.wp-video,.jetpack-video-wrapper>embed,.jetpack-video-wrapper>iframe,.jetpack-video-wrapper>object{margin-bottom:0}
.jetpack-social-navigation ul{display:block;margin:0 0 1.5em;padding:0}.jetpack-social-navigation li{display:inline-block;margin:0;line-height:1}.jetpack-social-navigation a{border:0;height:1em;text-decoration:none;width:1em}.jetpack-social-navigation-svg .icon{color:inherit;fill:currentColor;height:1em;vertical-align:middle;width:1em}.jetpack-social-navigation-genericons a:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-family:Genericons;font-size:1em;font-style:normal;font-weight:400;height:1em;line-height:1;speak:none;text-decoration:inherit;vertical-align:top;width:1em}.jetpack-social-navigation-genericons a:before{content:"\f415"}.jetpack-social-navigation-genericons a[href*="codepen.io"]:before{content:"\f216"}.jetpack-social-navigation-genericons a[href*="digg.com"]:before{content:"\f221"}.jetpack-social-navigation-genericons a[href*="dribbble.com"]:before{content:"\f201"}.jetpack-social-navigation-genericons a[href*="dropbox.com"]:before{content:"\f225"}.jetpack-social-navigation-genericons a[href*="mailto:"]:before{content:"\f410"}.jetpack-social-navigation-genericons a[href*="facebook.com"]:before{content:"\f203"}.jetpack-social-navigation-genericons a[href*="flickr.com"]:before{content:"\f211"}.jetpack-social-navigation-genericons a[href*="foursquare.com"]:before{content:"\f226"}.jetpack-social-navigation-genericons a[href*="github.com"]:before{content:"\f200"}.jetpack-social-navigation-genericons a[href*="plus.google.com"]:before{content:"\f206"}.jetpack-social-navigation-genericons a[href*="instagram.com"]:before{content:"\f215"}.jetpack-social-navigation-genericons a[href*="linkedin.com"]:before{content:"\f208"}.jetpack-social-navigation-genericons a[href*="path.com"]:before{content:"\f219"}.jetpack-social-navigation-genericons a[href*="pinterest."]:before{content:"\f210"}.jetpack-social-navigation-genericons a[href*="getpocket.com"]:before{content:"\f224"}.jetpack-social-navigation-genericons a[href*="polldaddy.com"]:before{content:"\f217"}.jetpack-social-navigation-genericons a[href*="reddit.com"]:before{content:"\f222"}.jetpack-social-navigation-genericons a[href$="/feed/"]:before{content:"\f413"}.jetpack-social-navigation-genericons a[href*="skype:"]:before{content:"\f220"}.jetpack-social-navigation-genericons a[href*="spotify.com"]:before{content:"\f515"}.jetpack-social-navigation-genericons a[href*="stumbleupon.com"]:before{content:"\f223"}.jetpack-social-navigation-genericons a[href*="tumblr.com"]:before{content:"\f214"}.jetpack-social-navigation-genericons a[href*="twitch.tv"]:before{content:"\f516"}.jetpack-social-navigation-genericons a[href*="twitter.com"]:before{content:"\f202"}.jetpack-social-navigation-genericons a[href*="vimeo.com"]:before{content:"\f212"}.jetpack-social-navigation-genericons a[href*="vine.co"]:before{content:"\f517"}.jetpack-social-navigation-genericons a[href*="wordpress.com"]:before,.jetpack-social-navigation-genericons a[href*="wordpress.org"]:before{content:"\f205"}.jetpack-social-navigation-genericons a[href*="youtube.com"]:before{content:"\f213"}
.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:left;position:relative}.tiled-gallery .tiled-gallery-item{float:left;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:inherit;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;left:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important;object-fit:cover}.tiled-gallery.type-circle .tiled-gallery-caption{display:none;opacity:0}.tiled-gallery.type-square .tiled-gallery-item img{object-fit:cover}
.jetpack-display-remote-posts{margin:5px 0 20px 0}.jetpack-display-remote-posts h4{margin:5px 0;padding:0}.jetpack-display-remote-posts p{margin:0;padding:0}.jetpack-display-remote-posts img{max-width:100%}
.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-left:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.widget-grofile ul.grofile-accounts li::before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(https://secure.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;width:16px;height:16px;float:left;margin-right:8px;margin-bottom:8px}.rtl .widget-grofile .grofile-accounts-logo{margin-left:8px;margin-right:0}.grofile-thumbnail{width:500px;max-width:100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(https://secure.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}
div[class^=gr_custom_container]{border:1px solid gray;border-radius:10px;padding:10px 5px 10px 5px;background-color:#fff;color:#000}div[class^=gr_custom_container] a{color:#000}h2[class^=gr_custom_header]{display:none}div[class^=gr_custom_each_container]{width:100%;clear:both;margin-bottom:10px;overflow:auto;padding-bottom:4px;border-bottom:1px solid #aaa}div[class^=gr_custom_book_container]{float:right;overflow:hidden;height:60px;margin-left:4px;width:39px}div[class^=gr_custom_author]{font-size:10px}div[class^=gr_custom_tags]{font-size:10px;color:gray}div[class^=gr_custom_rating]{display:none}
.widget_wpcom_social_media_icons_widget ul{list-style-type:none;margin-left:0}.widget_wpcom_social_media_icons_widget ul li{border:0 none;display:inline;margin-right:.5em}.widget_wpcom_social_media_icons_widget li a{border:0 none;text-decoration:none}.widget_wpcom_social_media_icons_widget .genericon{font-family:Genericons}.widget_wpcom_social_media_icons_widget .screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.widget_wpcom_social_media_icons_widget .screen-reader-text:active,.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,.widget_wpcom_social_media_icons_widget .screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:left;max-width:50%}.widget-grid-view-image a{display:block;margin:0 2px 4px 0}.widget-grid-view-image:nth-child(even){float:right}.widget-grid-view-image:nth-child(even) a{margin:0 0 4px 2px}.widgets-grid-layout .widget-grid-view-image img{max-width:100%;height:auto}.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:left;margin:0 -5px -3px 0;padding:0 8px 6px 0;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widgets-list-layout{padding:0;margin:0;list-style-type:none}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;margin-bottom:1em;list-style-type:none!important}.widgets-list-layout .widgets-list-layout-blavatar{float:left;width:21.276596%;max-width:40px;height:auto}.widgets-list-layout-links{float:right;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8}
.jetpack-image-container:after{clear:both}.jetpack-image-container:after,.jetpack-image-container:before{display:table;content:""}
.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:left;margin:0 -5px -3px 0;padding:0 8px 6px 0;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widget_jetpack_my_community .avatar-240,.widget_jetpack_my_community .avatar-48{max-width:48px;max-height:48px}
.widget.widget_authors li>ul,.widget_authors>ul{margin-left:inherit;padding-left:0}.widget_authors ul li li{padding-left:0}.widget_authors>ul>li{margin-bottom:1em;list-style:none}.widget_authors>ul>li+li{border-top:0}.widget.widget_authors img{margin-right:5px;margin-bottom:5px;vertical-align:middle;box-shadow:none}
.wpcnt{text-align:center;line-height:2}.wpa{position:relative;overflow:hidden;display:inline-block;max-width:100%}.wpa-about{position:absolute;top:5px;left:0;right:0;display:block;margin-top:0;color:#888;font:10px/1 "Open Sans",Arial,sans-serif!important;text-align:left!important;text-decoration:none!important;opacity:.85;border-bottom:none!important;box-shadow:none!important}.wpa .u>div{display:block;margin-top:5px;margin-bottom:1em}div.wpa>div{margin-top:20px}.wpa .u .adsbygoogle{display:block;margin-top:17px;margin-bottom:1em;background-color:transparent}
.widget_eu_cookie_law_widget{animation:fadeIn .8s;border:none;bottom:1em;left:1em;margin:0;padding:0;position:fixed;right:1em;width:auto;z-index:50001}@keyframes fadeIn{from{opacity:0;visibility:hidden}to{opacity:1;visibility:visible}}.widget_eu_cookie_law_widget.widget.top{bottom:auto;top:1em}.admin-bar .widget_eu_cookie_law_widget.widget.top{top:3em}amp-consent.widget_eu_cookie_law_widget.widget.top{top:1em;margin:0}.admin-bar amp-consent.widget_eu_cookie_law_widget.widget.top{top:0;margin-top:3em}#eu-cookie-law{background-color:#fff;border:1px solid #dedede;color:#2e4467;font-size:12px;line-height:1.5;overflow:hidden;padding:6px 6px 6px 15px;position:relative}#eu-cookie-law a,#eu-cookie-law a:active,#eu-cookie-law a:visited{color:inherit;cursor:inherit;text-decoration:underline}#eu-cookie-law a:hover{cursor:pointer;text-decoration:none}#eu-cookie-law.negative{background-color:#000;border:none;color:#fff}#eu-cookie-law.hide{opacity:0;visibility:hidden;transition:opacity .4s,visibility .4s}#eu-cookie-law form{margin-bottom:0;position:static}#eu-cookie-law input,#eu-cookie-law input:focus,#eu-cookie-law input:hover{background:#f3f3f3;border:1px solid #dedede;border-radius:4px;-moz-border-radius:3px;-webkit-border-radius:3px;color:#2e4453;cursor:pointer;display:inline;float:right;font-family:inherit;font-size:14px;font-weight:inherit;line-height:inherit;margin:0 0 0 5%;padding:8px 12px;position:static;text-transform:none}#eu-cookie-law.negative input,#eu-cookie-law.negative input:focus,#eu-cookie-law.negative input:hover{background:#282828;border-color:#535353;color:#fff}@media (max-width:600px){#eu-cookie-law{padding-bottom:55px}#eu-cookie-law input.accept{bottom:8px;position:absolute;right:8px}}.widget_eu_cookie_law_widget .customize-partial-edit-shortcut>button{left:0}
.flickr-images{text-align:center}.flickr-size-thumbnail .flickr-images{align-content:space-between;align-items:center;display:flex;flex-flow:row wrap;justify-content:center}.flickr-images img{max-width:100%;margin:5px}
.wpcom-instagram-images{display:grid;grid-gap:.5rem;grid-auto-columns:1fr}.wpcom-instagram-images:after,.wpcom-instagram-images:before{content:none}.wpcom-instagram-images a{display:block;margin:4px 2px}.wpcom-instagram-columns-2 a,.wpcom-instagram-columns-3 a{display:inline-block;vertical-align:top}.wpcom-instagram-columns-2 a{width:calc(50% - 8px)}.wpcom-instagram-columns-3 a{width:calc(33.3333% - 8px)}.wpcom-instagram-images .sq-bg-image{background-position:center;background-repeat:no-repeat;background-size:cover;height:0;overflow:hidden;padding-bottom:100%}.wpcom-instagram-columns-2{grid-template-columns:repeat(2,1fr)}.wpcom-instagram-columns-3{grid-template-columns:repeat(3,1fr)}@supports (display:grid){.wpcom-instagram-images a{display:block;margin:0}.wpcom-instagram-columns-2 a,.wpcom-instagram-columns-3 a{width:auto}}
.jetpack-search-filters-widget__sub-heading{font-size:inherit;font-weight:700;margin:0 0 .5em;padding:0}.jetpack-search-form+.jetpack-search-filters-widget__sub-heading{margin-top:1.5em;margin-bottom:.5em!important}.jetpack-search-filters-widget__clear{margin-top:.5em;margin-bottom:.5em}.jetpack-search-sort-wrapper{margin-top:1em;margin-bottom:1.5em}.jetpack-search-sort-wrapper label{display:inherit}.widget_search .jetpack-search-filters-widget__filter-list input[type=checkbox]{width:auto;height:auto}ul.jetpack-search-filters-widget__filter-list li{border:none;padding:0;list-style:none}ul.jetpack-search-filters-widget__filter-list li a{text-decoration:none}ul.jetpack-search-filters-widget__filter-list li a:hover{box-shadow:none}ul.jetpack-search-filters-widget__filter-list li label{font-weight:inherit;display:inherit}.jetpack-search-filters-widget__filter-list{list-style:none}ul.jetpack-search-filters-widget__filter-list{margin-bottom:1.5em}body.search .jetpack-search-form input[name="s"]:-ms-input-placeholder{color:transparent}body.search .jetpack-search-form input[name="s"]::-ms-input-placeholder{color:transparent}body.search .jetpack-search-form input[name="s"]::placeholder{color:transparent}body.search .jetpack-search-form input[name="s"].show-placeholder:-ms-input-placeholder{color:inherit}body.search .jetpack-search-form input[name="s"].show-placeholder::-ms-input-placeholder{color:inherit}body.search .jetpack-search-form input[name="s"].show-placeholder::placeholder{color:inherit}
@media screen and (min-width:400px){.widget.jetpack-simple-payments .jetpack-simple-payments-product{flex-direction:column}.widget.jetpack-simple-payments .jetpack-simple-payments-details{padding-left:0}}
.jetpack_widget_social_icons li,.jetpack_widget_social_icons ul{list-style:none}.jetpack_widget_social_icons ul{display:block;margin:0 0 1.5em;padding:0}.jetpack_widget_social_icons ul li{border:0;display:inline-block;line-height:1;margin:0;padding:0}.jetpack_widget_social_icons ul li:after,.jetpack_widget_social_icons ul li:before{display:none}.jetpack_widget_social_icons a{border:0;box-shadow:none;display:block;height:24px;text-decoration:none;width:24px}.jetpack_widget_social_icons svg{color:inherit;fill:currentColor;height:inherit;vertical-align:middle;width:inherit}.jetpack_widget_social_icons ul.size-small a{height:24px;width:24px}.jetpack_widget_social_icons ul.size-medium a{height:32px;width:32px}.jetpack_widget_social_icons ul.size-large a{height:48px;width:48px}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}