@charset "UTF-8";
/**
 * Jetpack related posts
 */

/**
 * The Gutenberg block
 */

.jp-related-posts-i2 {
	margin-top: 1.5rem;
}

.jp-related-posts-i2__list {
	--hgap: 1rem;

	display: flex;
	flex-wrap: wrap;
	column-gap: var(--hgap);
	row-gap: 2rem;

	margin: 0;
	padding: 0;

	list-style-type: none;
}

.jp-related-posts-i2__post {
	display: flex;
	flex-direction: column;

	/* Default: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

/* Quantity qeuries: see https://alistapart.com/article/quantity-queries-for-css/ */
.jp-related-posts-i2__post:nth-last-child(n+3):first-child,
.jp-related-posts-i2__post:nth-last-child(n+3):first-child ~ * {

	/* From 3 total items on, 3 items by row */
	flex-basis: calc(( 100% - var(--hgap) * 2 ) / 3);
}

.jp-related-posts-i2__post:nth-last-child(4):first-child,
.jp-related-posts-i2__post:nth-last-child(4):first-child ~ * {

	/* Exception for 4 total items: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

.jp-related-posts-i2__post-link {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;

	width: 100%;
	margin-bottom: 1rem;

	line-height: 1.2;
}

.jp-related-posts-i2__post-link:focus-visible {
	outline-offset: 2px;
}

.jp-related-posts-i2__post-img {
	order: -1;

	max-width: 100%;
}

.jp-related-posts-i2__post-defs {
	margin: 0;

	list-style-type: unset;
}

/* Hide, except from screen readers */
.jp-related-posts-i2__post-defs dt {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.jp-related-posts-i2__post-defs dd {
	margin: 0;
}

/* List view */

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__list {
	display: block;
}

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__post {
	margin-bottom: 2rem;
}

/* Breakpoints */

@media only screen and (max-width: 640px) {

	.jp-related-posts-i2__list {
		display: block;
	}

	.jp-related-posts-i2__post {
		margin-bottom: 2rem;
	}
}

/* Container */

#jp-relatedposts {
	display: none;
	padding-top: 1em;
	margin: 1em 0;
	position: relative;
	clear: both;
}

.jp-relatedposts::after {
	content: "";
	display: block;
	clear: both;
}

/* Headline above related posts section, labeled "Related" */

#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 rgba(0, 0, 0, 0.2);
	margin-bottom: 1em;
}

#jp-relatedposts h3.jp-relatedposts-headline em {
	font-style: normal;
	font-weight: 700;
}

/* Related posts items (wrapping items) */

#jp-relatedposts .jp-relatedposts-items {
	clear: left;
}

#jp-relatedposts .jp-relatedposts-items-visual {
	margin-right: -20px;
}

/* Related posts item */

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
	float: left;
	width: 33%;
	margin: 0 0 1em; /* Needs to be same as the main outer wrapper for Related Posts */
	box-sizing: border-box;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
	padding-right: 20px;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.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 {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* Related posts item content */

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
	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,
#jp-relatedposts .jp-relatedposts-items time {
	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;
	filter: alpha(opacity=100);
	-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 {
	height: auto;
	max-width: 100%;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
	opacity: 0.6;
}

/* Hide the date by default, but leave the element there if
 * a theme wants to use css to make it visible. */
.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
	display: none;
}

/* Behavior when there are thumbnails in visual mode */
#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt {
	display: none;
}

/* Behavior when there are no thumbnails in visual mode */
#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;
}

/* List Layout */
#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%;
}

/*
 * Responsive
 */

@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;
	}
}

/*
 * Hide the related post section in the print view of a post
 */

@media print {

	.jp-relatedposts {
		display: none !important;
	}
}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body.wc-block-product-gallery-modal-open,body.wc-modal--open{overflow:hidden}.wc-block-grid__products .wc-block-grid__product-image{display:block;position:relative;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image a{border:0;box-shadow:none;outline:0;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image img{height:auto;max-width:100%;width:100%}.wc-block-grid__products .wc-block-grid__product-image img[hidden]{display:none}.wc-block-grid__products .wc-block-grid__product-image img[alt=""]{border:1px solid #f2f2f2}.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,.editor-styles-wrapper .wc-block-grid__product-title,.wc-block-grid__product-title{color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:700;line-height:1.2;padding:0}.wc-block-grid__product-price{display:block}.wc-block-grid__product-price .wc-block-grid__product-price__regular{margin-right:.5em}.wc-block-grid__product-add-to-cart.wp-block-button{white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{display:inline-flex;font-size:1em;justify-content:center;text-align:center;white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading{opacity:.25}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.added:after{content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after{animation:spin 2s linear infinite;content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.has-5-columns:not(.alignfull) .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-6-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-7-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-8-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-9-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after{content:"";margin:0}.wc-block-grid__product-rating,.wp-block-woocommerce-product-review-rating{display:block}.wc-block-grid__product-rating .star-rating,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars,.wc-block-grid__product-rating .wc-block-product-review-rating__stars,.wp-block-woocommerce-product-review-rating .star-rating,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars{font-family:WooCommerce;font-size:1em;font-weight:400;height:1.618em;line-height:1.618;margin:0 auto;overflow:hidden;position:relative;text-align:left;width:5.3em}.wc-block-grid__product-rating .star-rating:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars:before,.wp-block-woocommerce-product-review-rating .star-rating:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars:before{content:"SSSSS";left:0;opacity:.5;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid__product-rating .star-rating span,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span,.wp-block-woocommerce-product-review-rating .star-rating span,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span{left:0;overflow:hidden;padding-top:1.5em;position:absolute;right:0;top:0}.wc-block-grid__product-rating .star-rating span:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span:before,.wp-block-woocommerce-product-review-rating .star-rating span:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span:before{color:inherit;content:"SSSSS";left:0;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid .wc-block-grid__product-onsale,.wc-block-grid__product-image .wc-block-grid__product-onsale{background:#fff;border:1px solid #43454b;border-radius:4px;color:#43454b;display:inline-block;font-size:.875em;font-weight:600;left:auto;padding:.25em .75em;position:absolute;right:4px;text-align:center;text-transform:uppercase;top:4px;width:auto;z-index:9}.wc-block-grid__product .wc-block-grid__product-image,.wc-block-grid__product .wc-block-grid__product-link{display:inline-block;position:relative}.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),.wc-block-grid__product .wc-block-grid__product-title{margin:0 0 12px}.wc-block-grid__product .wc-block-grid__product-add-to-cart,.wc-block-grid__product .wc-block-grid__product-onsale,.wc-block-grid__product .wc-block-grid__product-price,.wc-block-grid__product .wc-block-grid__product-rating{margin:0 auto 12px}.theme-twentysixteen .wc-block-grid .price ins{color:#77a464}.theme-twentynineteen .wc-block-grid__product{font-size:.88889em}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-components-product-title,.theme-twentynineteen .wc-block-grid__product-onsale,.theme-twentynineteen .wc-block-grid__product-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}.theme-twentynineteen .wc-block-grid__product-title:before{display:none}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-grid__product-onsale{line-height:1}.theme-twentynineteen .editor-styles-wrapper .wp-block-button .wp-block-button__link:not(.has-text-color){color:#fff}.theme-twentytwenty .wc-block-grid__product-link{color:#000}.theme-twentytwenty .wc-block-components-product-title,.theme-twentytwenty .wc-block-grid__product-title{color:#cd2653;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:1em}.theme-twentytwenty .wp-block-columns .wc-block-components-product-title{margin-top:0}.theme-twentytwenty .wc-block-components-product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-components-product-price__value,.theme-twentytwenty .wc-block-grid__product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-grid__product-price__value{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:.9em}.theme-twentytwenty .wc-block-components-product-price del,.theme-twentytwenty .wc-block-grid__product-price del{opacity:.7}.theme-twentytwenty .wc-block-components-product-price ins,.theme-twentytwenty .wc-block-grid__product-price ins{text-decoration:none}.theme-twentytwenty .star-rating,.theme-twentytwenty .wc-block-grid__product-rating{font-size:.7em}.theme-twentytwenty .star-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .star-rating .wc-block-grid__product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-grid__product-rating__stars{line-height:1}.theme-twentytwenty .wc-block-components-product-button>.wp-block-button__link,.theme-twentytwenty .wc-block-grid__product-add-to-cart>.wp-block-button__link{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif}.theme-twentytwenty .wc-block-components-product-sale-badge,.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{background:#cd2653;color:#fff;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-weight:700;letter-spacing:-.02em;line-height:1.2;text-transform:uppercase}.theme-twentytwenty .wc-block-grid__products .wc-block-components-product-sale-badge{position:static}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-image .wc-block-components-product-sale-badge{position:absolute}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale:not(.wc-block-components-product-sale-badge){position:absolute;right:4px;top:4px;z-index:1}.theme-twentytwenty .wc-block-active-filters__title,.theme-twentytwenty .wc-block-attribute-filter__title,.theme-twentytwenty .wc-block-price-filter__title,.theme-twentytwenty .wc-block-stock-filter__title{font-size:1em}.theme-twentytwenty .wc-block-active-filters .wc-block-active-filters__clear-all,.theme-twentytwenty .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{font-size:.75em}@media only screen and (min-width:768px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}@media only screen and (min-width:1168px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}.theme-twentytwentytwo .wc-block-grid__product-add-to-cart .added_to_cart{display:block;margin-top:12px}.theme-twentytwentytwo .wc-block-components-product-price ins,.theme-twentytwentytwo .wc-block-grid__product-price ins{text-decoration:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute!important;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip-path:none;color:#2b2d2f;display:block;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}.wp-block-group.woocommerce.product .up-sells.upsells.products{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wc-block-components-notice-banner{align-content:flex-start;align-items:stretch;background-color:#fff;border:1px solid #2f2f2f;border-radius:4px;box-sizing:border-box;color:#2f2f2f;display:flex;font-size:.875em;font-weight:400;gap:12px;line-height:1.5;margin:16px 0;padding:16px!important}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content{align-self:center;flex-basis:100%;padding-right:16px;white-space:normal}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content:last-child{padding-right:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary{font-weight:600;margin:0 0 8px}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul{margin:0 0 0 24px;padding:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol li:after,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul li:after{clear:both;content:"";display:block}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward{appearance:none;background:transparent!important;border:0;color:#2f2f2f!important;float:right;margin:0;opacity:.7;padding:0!important;text-decoration-line:underline;text-underline-position:under;transition:all .2s ease-in-out}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:active,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:focus,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover{opacity:1;text-decoration:none}.wc-block-components-notice-banner>svg{fill:#fff;background-color:#2f2f2f;border-radius:50%;flex-grow:0;flex-shrink:0;height:100%;padding:2px}.wc-block-components-notice-banner>.wc-block-components-button{background:transparent none!important;border:0!important;box-shadow:none!important;color:#2f2f2f!important;flex:0 0 16px;height:16px!important;margin:6px 0 0 auto!important;min-height:auto!important;min-width:0!important;opacity:.6;outline:none!important;padding:0!important;width:16px!important}.wc-block-components-notice-banner>.wc-block-components-button>svg{margin:0!important}.wc-block-components-notice-banner>.wc-block-components-button:active,.wc-block-components-notice-banner>.wc-block-components-button:focus,.wc-block-components-notice-banner>.wc-block-components-button:hover{opacity:1}.wc-block-components-notice-banner>.wc-block-components-button:focus{outline:2px solid currentColor!important;outline-offset:0}.wc-block-components-notice-banner.is-error{background-color:#fff0f0;border-color:#cc1818}.wc-block-components-notice-banner.is-error>svg{background-color:#cc1818;transform:rotate(180deg)}.wc-block-components-notice-banner.is-warning{background-color:#fffbf4;border-color:#f0b849}.wc-block-components-notice-banner.is-warning>svg{background-color:#f0b849;transform:rotate(180deg)}.wc-block-components-notice-banner.is-success{background-color:#f4fff7;border-color:#4ab866}.wc-block-components-notice-banner.is-success>svg{background-color:#4ab866}.wc-block-components-notice-banner.is-info{background-color:#f4f8ff;border-color:#007cba}.wc-block-components-notice-banner.is-info>svg{background-color:#007cba}.wc-block-components-notice-banner:focus{outline-width:0}.wc-block-components-notice-banner:focus-visible{outline-style:solid;outline-width:2px}.woocommerce.wc-block-store-notices.alignwide{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.coming-soon-newsletter-mailpoet-setting-panel-body{background-color:#f1f6fc;padding:15px}.coming-soon-newsletter-mailpoet-setting-panel-body h3{font-size:13px;text-transform:none}.coming-soon-newsletter-mailpoet-setting-panel-body a.components-button.is-link{text-decoration:none}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body:has(.woocommerce-coming-soon-store-only) .woocommerce-breadcrumb{display:none}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wp-site-blocks:has(>.wp-block-woocommerce-coming-soon){--wp--style--root--padding-top:0;--wp--style--root--padding-bottom:0}.woocommerce-coming-soon-default{--cover--color-background:var(--woocommerce-coming-soon-color);--wp--preset--color--background:var(--woocommerce-coming-soon-color);--responsive--aligndefault-width:1280px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;min-width:320px}.woocommerce-coming-soon-default h1.wp-block-heading.woocommerce-coming-soon-banner{text-wrap:balance}.woocommerce-coming-soon-default .wp-block-loginout a,.woocommerce-coming-soon-image-gallery .wp-block-loginout a,.woocommerce-coming-soon-minimal-left-image .wp-block-loginout a{text-decoration:none}.woocommerce-coming-soon-minimal-left-image{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.woocommerce-coming-soon-minimal-left-image__content .wp-block-columns-is-layout-flex{justify-content:center}.woocommerce-coming-soon-modern-black{--wp--preset--color--contrast:#fff}.woocommerce-coming-soon-split-right-image{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.woocommerce-coming-soon-split-right-image .woocommerce-split-right-image-content{width:100%}.woocommerce-coming-soon-split-right-image .woocommerce-split-right-image-cover{align-items:start}.woocommerce-coming-soon-split-right-image .is-size-fit-content{width:fit-content}.block-editor-block-preview__content-iframe .wp-block-woocommerce-coming-soon{aspect-ratio:1/1}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}.woocommerce-account .wp-block-post-title,.woocommerce-account main .woocommerce,.woocommerce-cart .wp-block-post-title,.woocommerce-cart main .woocommerce,.woocommerce-checkout .wp-block-post-title,.woocommerce-checkout main .woocommerce{max-width:1000px}.clear{clear:both}.woocommerce a.button.disabled,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled,.woocommerce a.button:disabled:hover,.woocommerce a.button:disabled[disabled],.woocommerce a.button:disabled[disabled]:hover,.woocommerce button.button.disabled,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled,.woocommerce button.button:disabled:hover,.woocommerce button.button:disabled[disabled],.woocommerce button.button:disabled[disabled]:hover{opacity:.5}.woocommerce #respond input#submit:hover,.woocommerce a.button.alt:hover,.woocommerce input.button:hover{opacity:.9}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit:disabled[disabled],.woocommerce #respond input#submit:disabled[disabled]:hover,.woocommerce a.button.alt.disabled,.woocommerce a.button.alt.disabled:hover,.woocommerce a.button.alt:disabled,.woocommerce a.button.alt:disabled:hover,.woocommerce a.button.alt:disabled[disabled],.woocommerce a.button.alt:disabled[disabled]:hover,.woocommerce input.button.disabled,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled],.woocommerce input.button:disabled[disabled]:hover{opacity:.5}.woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:1.2em}.woocommerce div.product::after{content:"";display:block;clear:both}.woocommerce div.product div.summary>*{margin-bottom:var(--wp--style--block-gap)}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{box-shadow:2px 2px 0 var(--wp--preset--color--background,#fff)}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{box-shadow:-2px 2px 0 var(--wp--preset--color--background,#fff)}.woocommerce div.product form.cart div.quantity{float:none;vertical-align:middle}.woocommerce div.product form.cart div.quantity .qty{margin-right:.5em}.woocommerce div.product form.cart button.single_add_to_cart_button,.woocommerce div.product form.cart button[name=add-to-cart]{display:inline-block;float:none;margin-top:0;margin-bottom:0;vertical-align:middle;word-break:normal}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{word-break:normal}.woocommerce div.product .related.products{margin-top:5em}.woocommerce .woocommerce-Reviews #comments{margin-bottom:var(--wp--style--block-gap)}.woocommerce .woocommerce-Reviews .commentlist{box-sizing:border-box}.woocommerce .woocommerce-Reviews .comment-reply-title{font-size:var(--wp--preset--font-size--medium);font-weight:700}.woocommerce .price bdi,.woocommerce .price ins,.woocommerce .wc-block-components-product-price bdi,.woocommerce .wc-block-components-product-price ins,.woocommerce .woocommerce-grouped-product-list-item__price bdi,.woocommerce .woocommerce-grouped-product-list-item__price ins{text-decoration:none}.woocommerce span.onsale{background-color:var(--wp--preset--color--foreground,#958e09);color:var(--wp--preset--color--background,#fff)}.woocommerce table.variations{display:block}.woocommerce table.variations tr td,.woocommerce table.variations tr th{padding-bottom:var(--wp--style--block-gap);text-align:left}.woocommerce table.variations tr th{padding-right:1em}.woocommerce table.variations tr td select{height:3em;padding:.9em 1.1em;font-size:var(--wp--preset--font-size--small)}.woocommerce div.product form.cart table.variations td select{min-width:70%}.woocommerce div.product form.cart table.variations td,.woocommerce div.product form.cart table.variations th{vertical-align:middle}.woocommerce .single_variation_wrap .woocommerce-variation{margin-bottom:var(--wp--style--block-gap)}a.added_to_cart{display:block;margin-top:1em}.woocommerce-page .input-text,.woocommerce-page .select2-container,.woocommerce-page select{font-size:var(--wp--preset--font-size--small)}.woocommerce-page label{margin-bottom:.7em}.woocommerce form .form-row{margin-bottom:1em}.woocommerce form textarea{min-height:100px}.woocommerce-page table.shop_table{width:70%;border-collapse:collapse}@media only screen and (max-width:768px){.woocommerce-page table.shop_table{width:100%}}.woocommerce-page table.shop_table td,.woocommerce-page table.shop_table th{padding:1em}.woocommerce-page table.shop_table_responsive{width:100%}.woocommerce-page .woocommerce-cart-form .product-remove{width:1em}.woocommerce-page .woocommerce-cart-form .product-thumbnail{width:120px}.woocommerce-page .woocommerce-cart-form .product-thumbnail a img{width:117px}.woocommerce-page .woocommerce-cart-form .coupon{display:flex;align-items:center;flex-wrap:wrap}.woocommerce-page .woocommerce-cart-form #coupon_code{width:auto;margin-right:.8em;height:50px;font-size:var(--wp--preset--font-size--small);padding:0 1.1em}@media only screen and (max-width:768px){.woocommerce-page .woocommerce-cart-form .product-remove{width:auto}.woocommerce-page .woocommerce-cart-form #coupon_code{width:50%;margin-right:0}}.woocommerce-page .cart-collaterals h2{font-size:var(--wp--preset--font-size--medium)}.woocommerce-page .woocommerce-form-coupon .button{min-height:50px}.woocommerce-page .woocommerce-column__title,.woocommerce-page .woocommerce-customer-details h2,.woocommerce-page .woocommerce-thankyou-order-received{font-size:var(--wp--preset--font-size--large);font-weight:300}.woocommerce-page ul.woocommerce-order-overview{display:flex;width:100%;padding-left:0;font-size:var(--wp--preset--font-size--small)}@media only screen and (max-width:768px){.woocommerce-page ul.woocommerce-order-overview{flex-direction:column}}.woocommerce-page ul.woocommerce-order-overview li{flex-grow:1;margin-bottom:1em;border:none;display:inline;text-transform:uppercase}.woocommerce-page ul.woocommerce-order-overview li strong{text-transform:none;display:block}.woocommerce-page .woocommerce-customer-details address{box-sizing:border-box;width:70%;padding:1em;border-width:1px;border-radius:0}.woocommerce-account .woocommerce-MyAccount-navigation ul{margin:0 0 2em;padding:0}.woocommerce-account .woocommerce-MyAccount-navigation li{list-style:none;padding:1em 0}@media only screen and (max-width:768px){.woocommerce-account .woocommerce-MyAccount-navigation li{padding:.35em 0}}.woocommerce-account .woocommerce-MyAccount-navigation li:first-child{padding-top:0}.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a{text-decoration:underline}.woocommerce-account .woocommerce-MyAccount-navigation li a{text-decoration:none}.woocommerce-account .woocommerce-MyAccount-navigation li a:hover{text-decoration:underline}.woocommerce-account .woocommerce-MyAccount-content p.form-row-first,.woocommerce-account .woocommerce-MyAccount-content p.form-row-last,.woocommerce-account .woocommerce-MyAccount-content>p:first-of-type{margin-block-start:0}.woocommerce-account .woocommerce-customer-details address,.woocommerce-account table.shop_table.order_details{width:100%}.woocommerce-account .addresses .title .edit{display:block;margin-bottom:1em}.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content form>h3{margin-block-start:0}.woocommerce-account .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions::before{display:none}.woocommerce-account .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a{display:block;margin-bottom:1em;text-align:center}.woocommerce-page form .form-row input.input-text,.woocommerce-page form .form-row select,.woocommerce-page form .form-row textarea.input-text{font-size:var(--wp--preset--font-size--small);padding:.9rem 1.1rem}.woocommerce-page form .form-row select{background-position:calc(100% - 1.1rem) 50%}.woocommerce-page form .form-row label{margin-bottom:.7em}.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__rendered{padding:.9rem 1.1rem}.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__arrow{right:1.1em}.woocommerce-page .select2-container .select2-search--dropdown{padding:0 1.1rem .5rem}.woocommerce-page .select2-container .select2-search--dropdown .select2-search__field{padding:.5rem;font-size:var(--wp--preset--font-size--small)}.woocommerce-page .select2-container .select2-results__option{padding:.5rem 1.1rem}.woocommerce-store-notice,p.demo_store{background:var(--wp--preset--color--foreground,#720eec);bottom:0;color:var(--wp--preset--color--background,#fcfbfe);position:fixed;top:auto!important}.woocommerce-store-notice a,p.demo_store a{color:var(--wp--preset--color--background,#fcfbfe)}.woocommerce .product-category mark.count{background-color:transparent}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
/* -------------------------------------------------------------------------------- /

	Plugin Name: Go Pricing - WordPress Responsive Pricing Tables
	Plugin URI: http://www.go-pricing.com
	Description: The New Generation Pricing Tables. If you like traditional Pricing Tables, but you would like get much more out of it, then this rodded product is a useful tool for you.
	Author: Granth
	Version: 3.4
	Author https://granthweb.com/

	+----------------------------------------------------+
		TABLE OF CONTENTS
	+----------------------------------------------------+

    [1] RESET
    [2] SETUP
    [3] LAYOUT
    [3.1] HEADER
    [3.2] BODY
    [3.3] FOOTER & BUTTONS
    [4] ICONS
    [5] RIBBONS
    [6] COLUMN SHADOWS    		
    [7] CLEAN STYLE
	

/ -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- /
	[1]	RESET
/ -------------------------------------------------------------------------------- */

.go-pricing * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.gw-go * {
    background: none;
    border: none;
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    letter-spacing: normal !important;
    margin: 0;
    outline: none;
    padding: 0;
    text-transform: none;
    text-decoration: none !important;
    -moz-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
    word-break: normal;
    word-break: break-word;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------------- /
	[2]	SETUP - general settings, clearfix, common classes
/ -------------------------------------------------------------------------------- */

/* clearfix */
.gw-go-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.gw-go-clearfix {
    display: inline-block;
} /* Hide from IE Mac \*/
.gw-go-clearfix {
    display: block;
} /* End hide from IE Mac */
.gw-go-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* clearfix class */
.gw-go-clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    width: 100%;
}

/* text aligns */
.gw-go-tcenter {
    text-align: center;
}
.gw-go-tleft {
    text-align: center;
}
.gw-go-tright {
    text-align: right;
}

/* video iframe */
.gw-go-video-wrapper {
    padding-bottom: 56.25% !important;
    position: relative;
    height: 0;
}
.gw-go-header-bottom .gw-go-video-wrapper {
    margin-bottom: -1px;
}
.gw-go-video-wrapper > div {
    position: static !important;
    padding-top: 100% !important;
}
.gw-go-video-wrapper iframe {
    height: 100%;
    left: 0;
    margin: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    width: 100%;
}

/* image settings */
.gw-go-img-wrapper {
    position: relative;
}
.gw-go img {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: inline-block;
    vertical-align: bottom;
}
img.gw-go-responsive-img {
    border: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
.gw-go audio,
.gw-go video {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
}
/* fix for google map popup & mediaelement js styling bug in some themes */
.gw-go-gmap img {
    max-width: none !important;
}
.gw-go .mejs-container img {
    height: auto !important;
    max-width: none !important;
    width: 100% !important;
}
.gw-go-oldie .me-plugin,
.gw-go-oldie .mejs-mediaelement {
    position: static !important;
}

/* table & input settings for paypal */
.gw-go table {
    border: none;
    margin: 0 auto;
    width: auto;
    text-align: center;
}
.gw-go td {
    border: none;
    margin: 0;
    padding: 0 0 10px 0;
}
div.gw-go input {
    border: none;
    outline: none;
}
.gw-go input[type="text"] {
    background: #fff !important;
    border: solid 1px #b8b8b8 !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    outline: none;
    padding: 3px 5px;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.gw-go input[type="text"]:focus {
    border: solid 1px #9d9d9d;
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
}

/* other */
.gw-go i {
    display: inline-block;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    text-align: left;
    top: -1px;
}
.gw-go b,
.gw-go strong {
    font-weight: bold;
}
.gw-go em {
    font-style: italic !important;
}
.gw-go u {
    text-decoration: underline !important;
}
.gw-go del {
    text-decoration: line-through !important;
}

/* -------------------------------------------------------------------------------- /
	[3] LAYOUT
/ -------------------------------------------------------------------------------- */

.gw-go {
    font-size: 0;
    margin: 0 0 -20px 0;
    visibility: hidden;
}
.gw-go[data-scroll-offset] {
    opacity: 0;
}
/* VC frontend editing fix */
.vc_editor .gw-go[data-scroll-offset] {
    opacity: 1;
}

.cs-preview .cs-content .gw-go[data-scroll-offset] {
    opacity: 1;
}

/* RTL trick */
[dir="rtl"] .gw-go {
    direction: ltr;
}
[dir="rtl"] .gw-go-col-wrap {
    direction: rtl;
}

/* default colum widths */
.gw-go-1col .gw-go-col-wrap {
    width: 100%;
}
.gw-go-2cols .gw-go-col-wrap {
    width: 50%;
}
.gw-go-3cols .gw-go-col-wrap {
    width: 33.33%;
}
.gw-go-4cols .gw-go-col-wrap {
    width: 25%;
}
.gw-go-5cols .gw-go-col-wrap {
    width: 20%;
}
.gw-go-6cols .gw-go-col-wrap {
    width: 16.66%;
}
.gw-go-7cols .gw-go-col-wrap {
    width: 14.285%;
}
.gw-go-8cols .gw-go-col-wrap {
    width: 12.5%;
}
.gw-go-9cols .gw-go-col-wrap {
    width: 11.11%;
}
.gw-go-10cols .gw-go-col-wrap {
    width: 10%;
}

.gw-go-col-wrap {
    display: inline-block !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    float: none !important;
    font-size: 12px;
    line-height: 16px;
    margin-left: -1px;
    padding: 20px 0;
    position: relative;
    -moz-transition: padding 0.2s linear, margin 0.2s linear !important;
    -o-transition: padding 0.2s linear, margin 0.2s linear !important;
    -webkit-transition: padding 0.2s linear, margin 0.2s linear !important;
    transition: padding 0.2s linear, margin 0.2s linear !important;
    vertical-align: top !important;
}
.gw-go-col-wrap:first-child {
    margin-left: 0;
}

.gw-go-col-wrap.gw-go-hover {
    z-index: 2;
}
.gw-go-col-wrap.gw-go-curr {
    z-index: 3 !important;
}

.gw-go-col {
    border: solid 1px #ebebeb;
    border-bottom: solid 2px #d3d3d3;
    border-top-width: 2px;
    position: relative;
    top: 0;
    -moz-transition: margin-top 0.2s linear, top 0.2s linear, -moz-box-shadow 0.2s linear;
    -o-transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
    -webkit-transition: margin-top 0.2s linear, top 0.2s linear, -webkit-box-shadow 0.2s linear;
    transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
}
.gw-go-col-inner {
    -moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    float: none !important;
    overflow: hidden;
    padding: 0 !important;
    -moz-transition: -moz-box-shadow 0.2s linear;
    -o-transition: box-shadow 0.2s linear;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    transition: box-shadow 0.2s linear;
}
.gw-go.gw-go-fullh-bg .gw-go-col {
    height: 100%;
}
.gw-go.gw-go-fullh-bg .gw-go-col-inner {
    height: 100%;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-col-inner {
    -moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}
.gw-go-col:before {
    content: "";
    height: 20px;
    margin-top: 2px;
    filter: alpha(opacity=40);
    -khtml-opacity: 0.4;
    -moz-opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
}

/* enlarge highlighted column / column on hover option is enabled */
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current {
    padding: 20px 0 40px;
}
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col {
    margin-top: 0;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover {
    padding: 0;
    margin-bottom: 0;
}

.gw-go.gw-go-enlarge-current.gw-go-no-footer.gw-go-hover .gw-go-col-wrap.gw-go-hover {
    margin-bottom: 0;
}

/* disable enlarge */
.gw-go-col-wrap.gw-go-disable-enlarge {
    padding: 20px 0 20px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
    margin-top: 0 !important;
    top: 0 !important;
}

.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer {
    top: 0 !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer-spacer {
    height: 0.1px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* disable box-shadow */
.gw-go-disable-box-shadow .gw-go-col-inner {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* -------------------------------------------------------------------------------- /
	[3.1] HEADER
/ -------------------------------------------------------------------------------- */

.gw-go-header {
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}
.gw-go-header img {
    border-radius: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.gw-go-header small {
    font-size: inherit;
    margin-bottom: 4px;
}
/** 1. regular pricing header **/

/* header containers */
.gw-go-header-top {
    height: 95px;
    position: relative;
}
.gw-go-header h2 {
    color: inherit;
    font-size: 26px !important;
    line-height: 32px !important;
    font-weight: normal !important;
    letter-spacing: normal !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
    text-transform: none !important;
    top: 15px;
}
.gw-go-header h2 small {
    font-size: 22px;
}

.gw-go-header h3 {
    border: none !important;
    color: inherit;
    font-size: 18px !important;
    line-height: 16px !important;
    font-weight: normal !important;
    left: 0;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    text-align: center;
    text-transform: none !important;
    top: 19px;
    width: 100%;
}
.gw-go-header h3 small {
    display: block;
    font-size: 12px;
}
.gw-go-header-bottom {
    border-top: solid 1px transparent;
    height: 50px;
}

/* pricing coins */
.gw-go-coin-wrap {
    font-size: 32px;
    height: 80px;
    left: 50%;
    margin: 0 0 0 -40px;
    position: absolute;
    top: 54px;
    width: 80px;
    z-index: 1;
}
.gw-go-coinf,
.gw-go-coinb {
    background: #fff;
    border-width: 1px !important;
    border-radius: 50px;
    display: table;
    height: 78px;
    left: 0;
    position: absolute;
    table-layout: fixed;
    text-align: center;
    width: 78px;
}

.gw-go-coinf div,
.gw-go-coinb div {
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    border-radius: 50px;
    border-width: 1px !important;
    display: table-cell;
    font-size: 32px;
    line-height: 24px;
    vertical-align: middle;
}
.gw-go-coinf div span[data-id="currency"],
.gw-go-coinb div span[data-id="currency"] {
    font-size: 0.5em;
    margin: 0 2px;
    position: relative;
    top: 0;
    vertical-align: top;
}
.gw-go-coinf small,
.gw-go-coinb small {
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -5px;
    margin-top: 3px;
}

.gw-go-coinb,
.gw-go-col-wrap.gw-go-hover .gw-go-coinf,
.gw-go-col-wrap.gw-go-current .gw-go-coinf {
    visibility: hidden;
}

.gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-coinb,
.gw-go-col-wrap.gw-go-current .gw-go-coinb {
    visibility: visible;
}

.gw-go-price-wrap > span {
    font-size: 32px;
}
.gw-go-price-wrap > small {
    font-size: 12px;
}

/* -------------------------------------------------------------------------------- /
	[3.2] BODY
/ -------------------------------------------------------------------------------- */

ul.gw-go-body {
    border-bottom: solid 1px transparent;
    float: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    text-align: center;
    width: 100%;
}
.gw-go-no-footer ul.gw-go-body {
    border-bottom: none !important;
    padding-bottom: none !important;
}
ul.gw-go-body > li {
    background: none;
    border-top: solid 1px #fff;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: table !important;
    position: relative;
    min-height: 17px;
    line-height: 16px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 5px !important;
    table-layout: fixed;
    text-align: inherit !important;
    width: 100%;
}
ul.gw-go-body > li .gw-go-body-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    position: relative;
    z-index: 1;
}
ul.gw-go-body > li .gw-go-body-cell-valign-top {
    vertical-align: top;
}
ul.gw-go-body > li .gw-go-body-cell-valign-bottom {
    vertical-align: bottom;
}
.gw-go-ie ul.gw-go-body > li .gw-go-body-cell {
    display: block;
}
ul.gw-go-body > li:before,
ul.gw-go-body > li:after {
    display: none !important;
}

ul.gw-go-body > li .gw-go-body-cell:before,
ul.gw-go-body > li .gw-go-body-cell:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* Tooltip */
.gw-go-tooltip {
    left: 50%;
    margin-top: 15px !important;
    margin-left: -15px;
    opacity: 0;
    position: absolute;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    visibility: hidden;
    z-index: 4;
}
.gw-go-tooltip-visible {
    margin-top: 5px !important;
    opacity: 1;
    visibility: visible;
    -moz-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    -o-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
}
.gw-go-tooltip-content:before {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid #9d9d9d;
    border-top-color: inherit;
    content: "";
    left: 10px;
    position: absolute;
    top: 100%;
}
.gw-go-tooltip-content {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    background: #9d9d9d;
    border-color: #9d9d9d;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #333333;
    display: none;
    padding: 6px 10px 6px 10px;
    text-decoration: none !important;
    transition: none;
    text-align: left;
    width: 130px;
    max-width: 100%;
}
.gw-go-tooltip .gw-go-tooltip-content {
    display: block;
}

ul.gw-go-body li a,
ul.gw-go-body li a:visited,
ul.gw-go-body li a:active {
    color: inherit;
    text-decoration: none !important;
}
ul.gw-go-body li a:hover {
    text-decoration: underline !important;
}

/* -------------------------------------------------------------------------------- /
	[3.3] FOOTER & BUTTONS
/ -------------------------------------------------------------------------------- */

/* colum footer */
.gw-go-footer-wrap {
    padding: 15px 0;
}

.gw-go-footer {
    display: table;
    width: 100%;
    position: relative;
    table-layout: fixed;
    -moz-transition: padding 0.2s linear;
    -o-transition: padding 0.2s linear;
    -webkit-transition: top 0.2s linear;
    transition: top 0.2s linear;
    text-align: center;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer {
    top: -20px;
}
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-footer {
    bottom: 20px;
}

.gw-go-footer-spacer {
    height: 0.1px;
    -moz-transition: height 0.2s linear;
    -o-transition: height 0.2s linear;
    -webkit-transition: height 0.2s linear;
    transition: height 0.2s linear;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer {
    height: 40px;
}
.gw-go-footer-inner {
    -moz-transition: top 0.2s linear;
    -o-transition: top 0.2s linear;
    -webkit-transition: top 0.2s linear;
    transition: top 0.2s linear;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer-innner {
    top: 20px;
}

.gw-go-footer-rows {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.gw-go-footer-row {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: table;
    table-layout: fixed;
    width: 100%;
}
div.gw-go-footer-row a,
div.gw-go-footer-row a:visited,
div.gw-go-footer-row a:active {
    color: inherit;
    text-decoration: none !important;
}
.gw-go-footer-row-inner {
    display: table-cell;
    padding: 5px;
    vertical-align: middle;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-top {
    vertical-align: top;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-bottom {
    vertical-align: bottom;
}

/* button */
.gw-go-btn,
a.gw-go-btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    cursor: pointer;
    display: inline-block;
    font-family: inherit !important;
    margin: 0 5px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.gw-go-btn,
a.gw-go-btn:hover,
ul.gw-go-body li a.gw-go-btn:hover {
    text-decoration: none !important;
}

.gw-go-btn:active {
    top: 1px;
}
.gw-go-btn form {
    display: none !important;
}

/* button hover & active states */
.gw-go-col-wrap.gw-go-hover .gw-go-btn:active,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-btn:active {
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}

/* button sizes - small, medium, large */
.gw-go-btn-small {
    padding: 1px 11px 0;
}
.gw-go-btn-medium {
    padding: 5px 13px 4px;
}
.gw-go-btn-large {
    padding: 11px 18px 10px;
}

.gw-go-btn > .gw-go-btn-inner {
    display: table-cell;
    height: 23px;
    vertical-align: middle;
}
.gw-go-btn-fullwidth > .gw-go-btn-inner {
    max-width: 100%;
    width: 1000px;
}

/* -------------------------------------------------------------------------------- /
	[4]	ICONS (CLASSIC IMAGE ICONS)
/ -------------------------------------------------------------------------------- */

.gw-go-icon-left {
    margin-left: 0 !important;
}
.gw-go-icon-right {
    margin-right: 0 !important;
}

/* Body icons */
span[class*="gw-go-icon"] {
    background-position: 50% 50% no-repeat;
    display: inline-block;
    height: 16px;
    margin: 0 3px -4px;
    width: 16px;
}

/* Team icons */
.gw-go-icon-light-skype {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-light-facebook {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-light-twitter {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-light-email {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_email.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-skype {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-facebook {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-twitter {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-email {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_email.png) 50% 50% no-repeat;
}

/* Light icons */
.gw-go-icon-light-arrow {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-light-arrow2 {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-light-circle {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-light-cross {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-light-dot {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-light-minus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-ok {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-light-plus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-star {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_light_star.png) 50% 50% no-repeat;
}

/* Dark icons */
.gw-go-icon-dark-arrow {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-arrow2 {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-circle {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-cross {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-dot {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-minus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-ok {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-plus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-star {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_star.png) 50% 50% no-repeat;
}

/* Red icons */
.gw-go-icon-red-arrow {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-red-arrow2 {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-red-circle {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-red-cross {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-red-dot {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-red-minus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-ok {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-red-plus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-star {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_red_star.png) 50% 50% no-repeat;
}

/* Green icons */
.gw-go-icon-green-arrow {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-green-arrow2 {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-green-circle {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-green-cross {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-green-dot {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-green-minus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-ok {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-green-plus {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-star {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_green_star.png) 50% 50% no-repeat;
}

/* Button icons */
span[class*="gw-go-btn-icon"] {
    display: inline-block;
    height: 20px;
    margin-bottom: 0;
    margin-top: 0;
    vertical-align: middle;
    width: 20px;
}
span[class*="gw-go-btn-icon"][class*="gw-go-btn-icon-large"] {
    height: 24px;
    width: 24px;
}
.gw-go-btn-icon-medium-white-basket {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-medium-white-download {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_white_download_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-large-white-basket {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_large.png) 50% 50% no-repeat;
}

/* -------------------------------------------------------------------------------- /
	[5]	SIGNS (RIBBON)
/ -------------------------------------------------------------------------------- */

[class*="gw-go-ribbon"] img {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
}
[class*="gw-go-ribbon-right"] img {
    float: right;
}

[class*="gw-go-ribbon-left"],
[class*="gw-go-ribbon-right"] {
    left: 0;
    margin-left: -1px;
    margin-top: -2px;
    position: absolute;
    top: 0;
    z-index: 2;
}
[class*="gw-go-ribbon-right"] {
    left: auto;
    margin-right: -1px;
    right: 0;
}

/* Text ribbons */
.gw-go-ribbon-text {
    height: 110px;
    overflow: hidden;
    width: 110px;
}
.gw-go-ribbon-text span {
    display: inline-block;
    line-height: 26px;
    text-align: center;
    text-shadow: none;
    width: 100%;
}
.gw-go-ribbon-text.gw-go-ribbon-left span {
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform-origin: 55% 200%;
    -o-transform-origin: 55% 200%;
    -webkit-transform-origin: 55% 200%;
    transform-origin: 55% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-right span {
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transform-origin: 45% 200%;
    -o-transform-origin: 45% 200%;
    -webkit-transform-origin: 45% 200%;
    transform-origin: 45% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-shadow span {
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------------------------- /
	[6] COLUMN SHADOWS
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-shadow1:before {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/shadows/shadow_1.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow2:before {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/shadows/shadow_2.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow3:before {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/shadows/shadow_3.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow4:before {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/shadows/shadow_4.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow5:before {
    background: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/shadows/shadow_5.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow1:before,
.gw-go-col.gw-go-shadow2:before,
.gw-go-col.gw-go-shadow3:before,
.gw-go-col.gw-go-shadow4:before,
.gw-go-col.gw-go-shadow5:before {
    background-size: 100% 20px;
}

/* -------------------------------------------------------------------------------- /
	[7] CLEAN STYLE
/ -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- /
	[7.1] GENERAL
/ -------------------------------------------------------------------------------- */

.gw-go-col[class*="gw-go-clean-style"] {
    border: none;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -moz-transition: margin-top 0.2s linear, top 0.2s linear;
    -o-transition: margin-top 0.2s linear, top 0.2s linear;
    -webkit-transition: margin-top 0.2s linear, top 0.2s linear;
    transition: margin-top 0.2s linear, top 0.2s linear;
}
.gw-go-col[class*="gw-go-clean-style"]:before {
    margin-top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-col-inner {
    border: solid 1px #ebebeb;
    border-bottom: solid 2px #d3d3d3;
    border-top-width: 2px;
    -moz-transition: -moz-box-shadow 0.2s linear;
    -o-transition: box-shadow 0.2s linear;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    transition: box-shadow 0.2s linear;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-top {
    height: 100px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-bottom {
    height: 60px;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-coin-wrap {
    height: 90px;
    margin: 0 0 0 -45px;
    width: 90px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb {
    height: 88px;
    width: 88px;
    border-width: 2px !important;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf div,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb div {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top {
    display: table;
    height: 50px;
    table-layout: fixed;
    width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top h3 {
    display: table-cell;
    position: relative;
    top: 0;
    vertical-align: middle;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-bottom {
    display: table;
    table-layout: fixed;
    height: 110px;
    width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"],
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"] {
    font-size: 0.5em;
    position: relative;
    top: 2px;
    vertical-align: text-top;
    margin: 0 2px;
    vertical-align: top;
    top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small {
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -5px;
    margin-top: 3px;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img h3 {
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-left"],
.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
    margin-left: 0;
    margin-top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
    left: auto;
    margin-right: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-btn {
    border: none;
}

/* -------------------------------------------------------------------------------- /
	[7.2] CLEAN STYLE 1
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style1 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-header-top {
    background: none;
}

.gw-go-col.gw-go-clean-style1 .gw-go-header-bottom {
    background: #f5f5f5;
    border-top-color: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top {
    background: none !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom {
    background: none !important;
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top:before {
    height: 50px !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom:before {
    display: none !important;
}

/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-header h3 {
    color: #333;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style1 .gw-go-coinf,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style1 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    color: #333333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-small {
    margin-top: 45px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-medium {
    margin-top: 40px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-large {
    margin-top: 33px;
}
/* button default state */
.gw-go-col.gw-go-clean-style1 .gw-go-btn {
    background: #9d9d9d;
    color: #ffffff;
}
/* button hover state */
.gw-go-col.gw-go-clean-style1 .gw-go-btn:hover {
    background: #333333;
}

/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.3] CLEAN STYLE 2
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style2 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
    background: #333333 !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
    background: none !important;
}

/* column default state */
.gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 100%;
    left: 0;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb small {
    color: #333;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinb div {
    color: #333 !important;
}

/***** details *****/
.gw-go-col.gw-go-clean-style2 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li {
    background: #ebebeb;
    color: #333333;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style2 .gw-go-btn {
    background: #333;
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style2 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style2 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.4] CLEAN STYLE 3
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style3 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style3 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style3 .gw-go-header h3,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-price-wrap {
    color: #fff;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb small {
    color: #9d9d9d;
}

/***** details *****/
.gw-go-col.gw-go-clean-style3 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/* column default state */
.gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    color: #9d9d9d;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    color: #333333;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style3 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 20px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style3 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.5] CLEAN STYLE 4
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style4 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style4 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header h3,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-price-wrap {
    color: #fff;
}
.gw-go-col.gw-go-clean-style4 .gw-go-coinf,
.gw-go-col.gw-go-clean-style4 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

/***** details *****/
.gw-go-col.gw-go-clean-style4 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=7);
    -khtml-opacity: 0.07;
    -moz-opacity: 0.07;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=7)";
    opacity: 0.07;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=14);
    -khtml-opacity: 0.14;
    -moz-opacity: 0.14;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=14)";
    opacity: 0.14;
}

/* button default state */
.gw-go-col.gw-go-clean-style4 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style4 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style4 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.6] CLEAN STYLE 5
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style5 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style5 .gw-go-header-bottom {
    background: #f5f5f5;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
    background: transparent !important;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header h3,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap span,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap small,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img span,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img small {
    color: #fff !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style5 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    background: #ebebeb;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    background: none !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col-wrap .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    position: absolute;
    top: -10px;
    z-index: -1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    padding: 10px 5px;
    width: 101%;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    color: #333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
    color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
    color: #333;
}

/* button default state */
.gw-go-col.gw-go-clean-style5 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style5 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.7] CLEAN STYLE 6
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-col-inner,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-col-inner {
    background: #fff;
}

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-header-bottom {
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2) !important;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35) !important;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-header h3 {
    color: #fff !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-price-wrap,
.gw-go-col.gw-go-clean-style6 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

/* column default state */
.gw-go-coin-wrap:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: 50px;
}

.gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
    color: #fff;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
    background: #fff !important;
}

/***** details *****/
.gw-go-col.gw-go-clean-style6 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style6 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body {
    border-bottom-color: #fff !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff !important;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-btn {
    background: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style6 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.8] CLEAN STYLE 7
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style7 .gw-go-col-inner {
    background: #fff;
}

/***** details *****/
.gw-go-col.gw-go-clean-style7 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body {
    border-bottom-color: #fff !important;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style7 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style7 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style7 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.9] CLEAN STYLE 8
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-col-inner {
    background: #fff;
}

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-header-bottom {
    border-top: solid 1px transparent;
}

/***** details *****/
.gw-go-col.gw-go-clean-style8 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style8 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-btn {
    background: #fff !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style8 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.10] CLEAN STYLE 9
/ -------------------------------------------------------------------------------- */

/***** header *****/
.gw-go-col.gw-go-clean-style9 .gw-go-header-bottom {
    height: auto;
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style9 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-coinf,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

.gw-go-col.gw-go-clean-style9 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style9 .gw-go-body > li {
    background: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}

.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style9 .gw-go-btn {
    background: #fff;
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style9 .gw-go-footer-row {
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style9 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.11] CLEAN STYLE 10
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style10 .gw-go-col-inner {
    background: #fff;
}

.gw-go-col.gw-go-clean-style10 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}
.gw-go-col.gw-go-clean-style10 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style10 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #333;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style10 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style10 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style10 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.12] CLEAN STYLE 12
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style12 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style12 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}

.gw-go-col.gw-go-clean-style12 .gw-go-header h3 small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style12 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #f5f5f5;
    color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li a {
    color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li:first-child {
    border-top-color: #fff;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
    border-top-color: #ebebeb;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style12 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style12 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style12 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.13] CLEAN STYLE 13
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style13 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-header p {
    color: #333;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header h2,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header p {
    color: #fff !important;
}

/***** details *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body {
    border-bottom-color: #fff;
}
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style13 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-btn {
    background: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style13 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.14] CLEAN STYLE 14
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style14 .gw-go-header-top {
    background: #fff;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img .gw-go-header-top {
    background: transparent;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-header h3 {
    color: #333;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img h3 {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-coinf,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

.gw-go-col.gw-go-clean-style14 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb small {
    color: #9d9d9d;
}

/***** details *****/
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-body {
    border-bottom-color: #fff;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-body > li {
    border-top-color: #fff;
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body > li {
    border-top-color: #ebebeb;
    color: #333333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
    color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
    color: #333;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-btn {
    background: #9d9d9d;
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style14 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.15] CLEAN STYLE 15
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style15 .gw-go-col-inner {
    background: #fff;
}

/***** details *****/
.gw-go-col.gw-go-clean-style15 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even {
    background: none;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style15 .gw-go-btn {
    background-image: url(https://aimade.tech/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style15 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style15 .gw-go-footer-row {
    color: #333;
}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}.woocommerce .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-error .button,.woocommerce-page .woocommerce-info .button,.woocommerce-page .woocommerce-message .button{float:right}.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%}.woocommerce .col2-set::after,.woocommerce .col2-set::before,.woocommerce-page .col2-set::after,.woocommerce-page .col2-set::before{content:" ";display:table}.woocommerce .col2-set::after,.woocommerce-page .col2-set::after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{float:left;width:48%}.woocommerce #content div.product div.thumbnails::after,.woocommerce #content div.product div.thumbnails::before,.woocommerce div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::before,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::before,.woocommerce-page div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::before{content:" ";display:table}.woocommerce #content div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::after{clear:both}.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%;margin-bottom:1em}.woocommerce #content div.product div.thumbnails a.last,.woocommerce div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last{margin-right:0}.woocommerce #content div.product div.thumbnails a.first,.woocommerce div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first{clear:both}.woocommerce #content div.product div.thumbnails.columns-1 a,.woocommerce div.product div.thumbnails.columns-1 a,.woocommerce-page #content div.product div.thumbnails.columns-1 a,.woocommerce-page div.product div.thumbnails.columns-1 a{width:100%;margin-right:0;float:none}.woocommerce #content div.product div.thumbnails.columns-2 a,.woocommerce div.product div.thumbnails.columns-2 a,.woocommerce-page #content div.product div.thumbnails.columns-2 a,.woocommerce-page div.product div.thumbnails.columns-2 a{width:48%}.woocommerce #content div.product div.thumbnails.columns-4 a,.woocommerce div.product div.thumbnails.columns-4 a,.woocommerce-page #content div.product div.thumbnails.columns-4 a,.woocommerce-page div.product div.thumbnails.columns-4 a{width:22.05%}.woocommerce #content div.product div.thumbnails.columns-5 a,.woocommerce div.product div.thumbnails.columns-5 a,.woocommerce-page #content div.product div.thumbnails.columns-5 a,.woocommerce-page div.product div.thumbnails.columns-5 a{width:16.9%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{float:right;width:48%;clear:none}.woocommerce #content div.product .woocommerce-tabs,.woocommerce div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::before{content:" ";display:table}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{display:inline-block}.woocommerce #content div.product #reviews .comment::after,.woocommerce #content div.product #reviews .comment::before,.woocommerce div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::before,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::before,.woocommerce-page div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::before{content:" ";display:table}.woocommerce #content div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::after{clear:both}.woocommerce #content div.product #reviews .comment img,.woocommerce div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img{float:right;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both}.woocommerce ul.products::after,.woocommerce ul.products::before,.woocommerce-page ul.products::after,.woocommerce-page ul.products::before{content:" ";display:table}.woocommerce ul.products::after,.woocommerce-page ul.products::after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%;margin-left:0}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce ul.products.columns-1 li.product,.woocommerce-page ul.products.columns-1 li.product{width:100%;margin-right:0}.woocommerce ul.products.columns-2 li.product,.woocommerce-page ul.products.columns-2 li.product{width:48%}.woocommerce ul.products.columns-3 li.product,.woocommerce-page ul.products.columns-3 li.product{width:30.75%}.woocommerce ul.products.columns-5 li.product,.woocommerce-page ul.products.columns-5 li.product{width:16.95%}.woocommerce ul.products.columns-6 li.product,.woocommerce-page ul.products.columns-6 li.product{width:13.5%}.woocommerce-page.columns-1 ul.products li.product,.woocommerce.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce-page.columns-2 ul.products li.product,.woocommerce.columns-2 ul.products li.product{width:48%}.woocommerce-page.columns-3 ul.products li.product,.woocommerce.columns-3 ul.products li.product{width:30.75%}.woocommerce-page.columns-5 ul.products li.product,.woocommerce.columns-5 ul.products li.product{width:16.95%}.woocommerce-page.columns-6 ul.products li.product,.woocommerce.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce .woocommerce-pagination ul.page-numbers::before,.woocommerce-page .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::before{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline-block}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{height:auto}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:right}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:80px}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:left}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{width:100%}.woocommerce .cart-collaterals::after,.woocommerce .cart-collaterals::before,.woocommerce-page .cart-collaterals::after,.woocommerce-page .cart-collaterals::before{content:" ";display:table}.woocommerce .cart-collaterals::after,.woocommerce-page .cart-collaterals::after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce .cart-collaterals .shipping_calculator::before,.woocommerce-page .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::before{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.cart_list li::before,.woocommerce-page ul.product_list_widget li::after,.woocommerce-page ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row::after,.woocommerce form .form-row::before,.woocommerce-page form .form-row::after,.woocommerce-page form .form-row::before{content:" ";display:table}.woocommerce form .form-row::after,.woocommerce-page form .form-row::after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-first,.woocommerce-page form .form-row-last{width:47%;overflow:visible}.woocommerce form .form-row-first,.woocommerce-page form .form-row-first{float:left}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce form .password-input,.woocommerce-page form .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.woocommerce form .password-input input[type=password],.woocommerce-page form .password-input input[type=password]{padding-right:2.5rem}.woocommerce form .password-input input::-ms-reveal,.woocommerce-page form .password-input input::-ms-reveal{display:none}.woocommerce form .show-password-input,.woocommerce-page form .show-password-input{background-color:transparent;border-radius:0;border:0;color:var(--wc-form-color-text,#000);cursor:pointer;font-size:inherit;line-height:inherit;margin:0;padding:0;position:absolute;right:.7em;text-decoration:none;top:50%;transform:translateY(-50%);-moz-osx-font-smoothing:inherit;-webkit-appearance:none;-webkit-font-smoothing:inherit}.woocommerce form .show-password-input::before,.woocommerce-page form .show-password-input::before{background-repeat:no-repeat;background-size:cover;background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');content:"";display:block;height:22px;width:22px}.woocommerce form .show-password-input.display-password::before,.woocommerce-page form .show-password-input.display-password::before{background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>')}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce #payment .wc-terms-and-conditions,.woocommerce-page #payment .terms,.woocommerce-page #payment .wc-terms-and-conditions{text-align:left;padding:0 1em 0 0;float:left}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-billing-fields::before,.woocommerce .woocommerce-shipping-fields::after,.woocommerce .woocommerce-shipping-fields::before,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-billing-fields::before,.woocommerce-page .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-shipping-fields::before{content:" ";display:table}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-shipping-fields::after{clear:both}.woocommerce .woocommerce-terms-and-conditions,.woocommerce-page .woocommerce-terms-and-conditions{margin-bottom:1.618em;padding:1.618em}.woocommerce .woocommerce-oembed,.woocommerce-page .woocommerce-oembed{position:relative}.woocommerce-account .woocommerce-MyAccount-navigation{float:left;width:30%}.woocommerce-account .woocommerce-MyAccount-content{float:right;width:68%}.woocommerce-account .woocommerce-MyAccount-content mark{background-color:transparent;color:inherit;font-weight:700}.woocommerce-page.left-sidebar #content.twentyeleven{width:58.4%;margin:0 7.6%;float:right}.woocommerce-page.right-sidebar #content.twentyeleven{margin:0 7.6%;width:58.4%;float:left}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .product .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail{margin-top:0}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}}.twentyfifteen .t15wc{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15wc .page-title{margin-left:0}@media screen and (min-width:38.75em){.twentyfifteen .t15wc{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15wc{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.twentysixteen .site-main{margin-right:7.6923%;margin-left:7.6923%}.twentysixteen .entry-summary{margin-right:0;margin-left:0}#content .twentysixteen div.product div.images,#content .twentysixteen div.product div.summary{width:46.42857%}@media screen and (min-width:44.375em){.twentysixteen .site-main{margin-right:23.0769%}}@media screen and (min-width:56.875em){.twentysixteen .site-main{margin-right:0;margin-left:0}.no-sidebar .twentysixteen .site-main{margin-right:15%;margin-left:15%}.no-sidebar .twentysixteen .entry-summary{margin-right:0;margin-left:0}}.rtl .woocommerce .col2-set .col-1,.rtl .woocommerce-page .col2-set .col-1{float:right}.rtl .woocommerce .col2-set .col-2,.rtl .woocommerce-page .col2-set .col-2{float:left}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}@keyframes spin{100%{transform:rotate(360deg)}}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row .woocommerce-input-wrapper .description{background:#1e85be;color:#fff;border-radius:3px;padding:1em;margin:.5em 0 0;clear:both;display:none;position:relative}.woocommerce form .form-row .woocommerce-input-wrapper .description a{color:#fff;text-decoration:underline;border:0;box-shadow:none}.woocommerce form .form-row .woocommerce-input-wrapper .description::before{left:50%;top:0;margin-top:-4px;transform:translateX(-50%) rotate(180deg);content:"";position:absolute;border-width:4px 6px 0 6px;border-style:solid;border-color:#1e85be transparent transparent transparent;z-index:100;display:block}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row .input-text,.woocommerce form .form-row select{font-family:inherit;font-weight:400;letter-spacing:normal;padding:.5em;display:block;background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width) solid var(--wc-form-border-color);border-radius:var(--wc-form-border-radius);color:var(--wc-form-color-text,#000);box-sizing:border-box;width:100%;margin:0;line-height:normal;height:auto}.woocommerce form .form-row .input-text:focus,.woocommerce form .form-row select:focus{border-color:currentColor}.woocommerce form .form-row select{cursor:pointer;appearance:none;padding-right:3em;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=);background-repeat:no-repeat;background-size:16px;background-position:calc(100% - .5em) 50%}.woocommerce form .form-row textarea{height:4em;line-height:1.5;box-shadow:none}.woocommerce form .form-row .country_to_state--single{background:0 0;border:0;padding:0;appearance:none;background-image:none;font:inherit;font-weight:700;color:inherit;width:auto;pointer-events:none}.woocommerce form .form-row .required{color:var(--wc-red);font-weight:700;border:0!important;text-decoration:none;visibility:hidden}.woocommerce form .form-row .optional{visibility:visible}.woocommerce form .form-row.woocommerce-invalid label{color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:var(--wc-green)}.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-green)}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}:where(.woocommerce) .select2-container{width:100%}:where(.woocommerce) .select2-container .select2-selection--single{height:auto}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered{padding:.5em;line-height:normal;box-sizing:border-box;color:var(--wc-form-color-text,#444);font-weight:400}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__placeholder{color:var(--wc-form-color-text,#444)}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow{position:absolute;top:2px;right:.5em;height:100%;width:16px}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow b{border:none;display:block;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;background-size:16px;width:16px;height:16px;position:absolute;top:50%;left:0;margin:-8px 0 0}:where(.woocommerce) .select2-container .select2-dropdown,:where(.woocommerce) .select2-container .select2-selection{background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width,1px) solid var(--wc-form-border-color,#aaa);border-radius:var(--wc-form-border-radius,4px)}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}:where(.woocommerce) .select2-results__options{list-style:none;margin:0;padding:0}:where(.woocommerce) .select2-results__option{margin:0}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#720eec;color:#fcfbfe;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fcfbfe;text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce a.remove{display:block;font-size:1.5em;height:1em;width:1em;text-align:center;line-height:1;border-radius:100%;color:var(--wc-red)!important;text-decoration:none;font-weight:700;border:0}.woocommerce a.remove:hover{color:#fff!important;background:var(--wc-red)}.woocommerce small.note{display:block;color:#767676;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:" ";display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .quantity .qty{width:3.631em;text-align:center}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.7;display:inline-block}.woocommerce div.product p.stock{font-size:.92em}.woocommerce div.product .woocommerce-product-rating{margin-bottom:1.618em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff;opacity:0}.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder{border:1px solid #f2f2f2}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__image a{display:block;outline-offset:-2px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{background:#fff;border:none;box-sizing:content-box;border-radius:100%;cursor:pointer;font-size:2em;height:36px;padding:0;position:absolute;right:.5em;text-indent:-9999px;top:.5em;width:36px;z-index:99}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before{border:2px solid #000;border-radius:100%;box-sizing:content-box;content:"";display:block;height:10px;left:9px;top:9px;position:absolute;width:10px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{background:#000;border-radius:6px;box-sizing:content-box;content:"";display:block;height:8px;left:22px;position:absolute;top:19px;transform:rotate(-45deg);width:2px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true]{border:0;clip-path:inset(50%);height:1px;left:50%;margin:-1px;overflow:hidden;position:absolute;top:50%;width:1px}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:left;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:left}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0 0 0 1em;margin:0 0 1.618em;overflow:hidden;position:relative}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:1px solid #cfc8d8;background-color:#e9e6ed;color:#515151;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 -5px;padding:0 1em}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6b6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background:#fff;color:#515151;z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{box-shadow:2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{box-shadow:-2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{border:1px solid #cfc8d8;position:absolute;bottom:-1px;width:5px;height:5px;content:" ";box-sizing:border-box}.woocommerce div.product .woocommerce-tabs ul.tabs li::before{left:-5px;border-bottom-right-radius:4px;border-width:0 1px 1px 0;box-shadow:2px 2px 0 #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs li::after{right:-5px;border-bottom-left-radius:4px;border-width:0 0 1px 1px;box-shadow:-2px 2px 0 #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:" ";width:100%;bottom:0;left:0;border-bottom:1px solid #cfc8d8;z-index:1}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 2em;padding:0}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:" ";display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin-bottom:2em}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:" ";display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table{border-width:0 0 1px}.woocommerce div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{margin-bottom:1em;border:0;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;line-height:2em;vertical-align:top}.woocommerce div.product form.cart .variations label{font-weight:700;text-align:left}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;margin-right:1em;appearance:none;-webkit-appearance:none;-moz-appearance:none;padding-right:3em;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;background-size:16px;-webkit-background-size:16px;background-position:calc(100% - 12px) 50%;-webkit-background-position:calc(100% - 12px) 50%}.woocommerce div.product form.cart .variations td.label{padding-right:1em}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label{padding-right:1em;padding-left:1em}.woocommerce div.product form.cart .group_table td{vertical-align:top;padding-bottom:.5em;border:0}.woocommerce div.product form.cart .group_table td:first-child{width:4em;text-align:center}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce span.onsale{min-height:3.236em;min-width:3.236em;padding:.202em;font-size:1em;font-weight:700;position:absolute;text-align:center;line-height:3.236;top:-.5em;left:-.5em;margin:0;border-radius:100%;background-color:#958e09;color:#fff;font-size:.857em;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:" ";display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;right:0;left:auto;margin:-.5em -.5em 0 0}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a.woocommerce-loop-product__link{display:block}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .woocommerce-placeholder{border:1px solid #f2f2f2}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{display:inline-block;margin-top:1em}.woocommerce ul.products li.product .price{display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.7;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(90,89,68,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 1em}.woocommerce .woocommerce-ordering>label{margin-right:.25rem}.woocommerce .woocommerce-ordering select{vertical-align:top}.woocommerce nav.woocommerce-pagination{text-align:center}.woocommerce nav.woocommerce-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #cfc8d8;border-right:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{border-right:1px solid #cfc8d8;padding:0;margin:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#e9e6ed;color:#816f98}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding-top:.5em;display:inline-block}.woocommerce #reviews h2 small{float:right;color:#767676;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#767676}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:" ";display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 20px;border:0;position:relative;background:0;border:0}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;background:#e9e6ed;border:1px solid #e1dde7;margin:0;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1em}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{font-size:.83em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li::before{content:""}.woocommerce .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:WooCommerce}.woocommerce .star-rating::before{content:"sssss";color:#cfc8d8;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:"SSSSS";top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:" ";display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating{display:block;margin:0 0 .5em;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;padding:0;background:transparent none;border:0}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:" ";display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond p{margin:0 0 10px}.woocommerce #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none;font-size:24px}.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:"\e021";text-indent:0}.woocommerce p.stars a:hover~a::before{content:"\e021"}.woocommerce p.stars:hover a::before{content:"\e020"}.woocommerce p.stars.selected a.active::before{content:"\e020"}.woocommerce p.stars.selected a.active~a::before{content:"\e021"}.woocommerce p.stars.selected a:not(.active)::before{content:"\e020"}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(even) td,.woocommerce table.shop_attributes tr:nth-child(even) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid color-mix(in srgb,currentColor 20%,transparent);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;border-spacing:0;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px;line-height:1.5em}.woocommerce table.shop_table td{border-top:1px solid color-mix(in srgb,currentColor 20%,transparent);padding:9px 12px;vertical-align:middle;line-height:1.5em}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table td del{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid color-mix(in srgb,currentColor 20%,transparent)}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:"↓";display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:left;clear:both;margin-right:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:" ";display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{border-top:3px double #e9e6ed;padding:4px 0 0}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding-left:2em;position:relative;padding-top:0}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;top:0;left:0}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:" ";display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-right:5px;margin-bottom:5px}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #cfc8d8;padding:20px;margin:2em 0;text-align:left;border-radius:5px}.woocommerce form.checkout_coupon .coupon-error-notice{color:var(--wc-red);display:block;font-size:.75em;margin-top:8px}.woocommerce form.checkout_coupon .input-text.has-error:focus{border-color:var(--wc-red)}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0 0 .5em;line-height:1.5em;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .4375em 0 0;vertical-align:top}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce .wc_bis_form{margin:2em 0;padding:0}.woocommerce .wc_bis_form.hidden{display:none}.woocommerce .wc_bis_form__form-row{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;justify-content:flex-start;gap:.7em;margin:.7em 0}.woocommerce .wc_bis_form__input{box-sizing:border-box;width:auto;white-space:nowrap}.woocommerce .wc_bis_form__button{box-sizing:border-box;white-space:nowrap}.woocommerce .wc_bis_form__checkbox{font-size:var(--wp--preset--font-size--small,.7em);display:block}.woocommerce :where(.wc_bis_form__input,.wc_bis_form__button){padding:.9rem 1.1rem;line-height:1}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:" ";display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-right:1px dashed #cfc8d8;padding-right:2em;margin-left:0;padding-left:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details .order-actions--heading,.woocommerce .woocommerce-order-details .order-actions--heading,.woocommerce .woocommerce-order-downloads .order-actions--heading{vertical-align:middle}.woocommerce .woocommerce-customer-details .order-actions-button,.woocommerce .woocommerce-order-details .order-actions-button,.woocommerce .woocommerce-order-downloads .order-actions-button{margin-right:10px}.woocommerce .woocommerce-customer-details .order-actions-button:last-child,.woocommerce .woocommerce-order-details .order-actions-button:last-child,.woocommerce .woocommerce-order-downloads .order-actions-button:last-child{margin-right:0}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .additional-fields,.woocommerce .woocommerce-customer-details .addresses{margin-bottom:2em}.woocommerce .woocommerce-customer-details .additional-fields:last-child,.woocommerce .woocommerce-customer-details .addresses:last-child{margin-bottom:0}.woocommerce .addresses .wc-block-components-additional-fields-list{margin:0;padding:0}.woocommerce .addresses .wc-block-components-additional-fields-list dt{margin:0;padding:0;font-style:normal;font-weight:700;display:inline}.woocommerce .addresses .wc-block-components-additional-fields-list dt::after{content:": "}.woocommerce .addresses .wc-block-components-additional-fields-list dt::before{content:"";display:block}.woocommerce .addresses .wc-block-components-additional-fields-list dd{margin:0;padding:0;font-style:normal;display:inline}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list{border:1px solid rgba(0,0,0,.1);padding:0;display:grid;grid-template-columns:1fr max-content}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt{border-bottom:1px solid rgba(0,0,0,.1);font-style:normal;font-weight:700;padding:1rem;box-sizing:border-box;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt::after{display:none}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt:last-of-type{border-bottom:0}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd{border-bottom:1px solid rgba(0,0,0,.1);padding:1rem;box-sizing:border-box;text-align:right;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd:last-of-type{border-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-column__title{margin-top:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-right-width:2px;text-align:left;width:100%;border-radius:5px;padding:6px 12px;box-sizing:border-box}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{padding-left:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:last-child,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e037";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e02d";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:" ";display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:left;padding:0 1em 1px 1px;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red);vertical-align:inherit;margin-right:.5em}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:left;margin-left:.5em;margin-right:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#7f54b3;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#7f54b3}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#35224c;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:" ";display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{float:left;margin-right:1em}.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{display:inline-block}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.618em 1em;font-weight:700;border-radius:3px;left:auto;color:#515151;background-color:#e9e6ed;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading{opacity:.25;padding-right:2.618em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after{font-family:WooCommerce;content:"\e01c";vertical-align:top;font-weight:400;position:absolute;top:.618em;right:1em;animation:spin 2s linear infinite}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.added::after{font-family:WooCommerce;content:"\e017";margin-left:.53em;vertical-align:bottom}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover{background-color:#dcd7e2;text-decoration:none;background-image:none;color:#515151}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{background-color:#7f54b3;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover{background-color:#7249a4;color:#fff}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover{background-color:#7f54b3;color:#fff}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#e9e6ed}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb{font-size:.92em;color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{color:#958e09;font-size:1.25em}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .out-of-stock{color:var(--wc-red)}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) #reviews #comments ol.commentlist li .meta{color:#767676;font-size:.75em}.woocommerce-no-js form.woocommerce-form-coupon,.woocommerce-no-js form.woocommerce-form-login{display:block!important}.woocommerce-no-js .showcoupon,.woocommerce-no-js .woocommerce-form-coupon-toggle,.woocommerce-no-js .woocommerce-form-login-toggle{display:none!important}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 2em 1em 3.5em;margin:0 0 2em;position:relative;background-color:#f6f5f8;color:#515151;border-top:3px solid #720eec;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:" ";display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:"\e028";content:"\e028"/"";display:inline-block;position:absolute;top:1em;left:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:right}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.rtl.woocommerce .price_label,.rtl.woocommerce .price_label span{direction:ltr;unicode-bidi:embed}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:"\e015";color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:"\e016";color:#b81c23}.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:" ";display:table}.woocommerce-account .woocommerce::after{clear:both}.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:" ";display:table}.woocommerce-account .addresses .title::after{clear:both}.woocommerce-account .addresses .title h3{float:left}.woocommerce-account .addresses .title .edit{float:right}.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce-account ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e00a";text-decoration:none}.woocommerce-account ul.digital-downloads li .count{float:right}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#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,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:left;box-sizing:border-box;border:1px solid #cfc8d8;padding:6px 6px 5px;margin:0 4px 0 0;outline:0}#add_payment_method table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-cart table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-checkout table.cart td.actions .coupon .input-text.has-error:focus{border-color:var(--wc-red)}#add_payment_method table.cart td.actions .coupon .coupon-error-notice,.woocommerce-cart table.cart td.actions .coupon .coupon-error-notice,.woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice{clear:left;color:var(--wc-red);flex-basis:100%;float:none;font-size:.75em;margin-bottom:0;margin-top:8px;text-align:left;width:auto}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:" ";display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping-calculator-button,.woocommerce-cart .cart-collaterals .shipping-calculator-button,.woocommerce-checkout .cart-collaterals .shipping-calculator-button{float:none;margin-top:.5em;display:inline-block}#add_payment_method .cart-collaterals .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"\e019";text-decoration:none}#add_payment_method .cart-collaterals .shipping-calculator-form,.woocommerce-cart .cart-collaterals .shipping-calculator-form,.woocommerce-checkout .cart-collaterals .shipping-calculator-form{margin:1em 0 0 0}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#767676;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:35%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-left:0;border-right:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#767676}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#958e09}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #e9e6ed}#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination{margin-bottom:0}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:left}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:left}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#767676;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:left;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method .checkout .checkout-inline-error-message,.woocommerce-cart .checkout .checkout-inline-error-message,.woocommerce-checkout .checkout .checkout-inline-error-message{color:var(--wc-red);font-size:.75em;margin-bottom:0}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{background:rgba(129,110,153,.14);border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid rgba(104,87,125,.14);margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:left;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 1em 0 0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-left:2px}#add_payment_method #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-cart #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal img{max-height:24px;vertical-align:middle;float:right;margin:0}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dcd7e2;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c2bacd;border-top-color:#b5abc2}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 1em 0 0;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(https://c0.wp.com/p/woocommerce/10.9.4/assets/images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#767676;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:"";display:block;border:1em solid #dcd7e2;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;left:0;margin:-1em 0 0 2em}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:right;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:24px;vertical-align:middle;float:right}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-invalid #terms{outline:2px solid var(--wc-red);outline-offset:2px}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}#content.twentyeleven .woocommerce-pagination a{font-size:1em;line-height:1}.single-product .twentythirteen #reply-title,.single-product .twentythirteen #respond #commentform,.single-product .twentythirteen .entry-summary{padding:0}.single-product .twentythirteen p.stars{clear:both}.twentythirteen .woocommerce-breadcrumb{padding-top:40px}.twentyfourteen ul.products li.product{margin-top:0!important}body:not(.search-results) .twentysixteen .entry-summary{color:inherit;font-size:inherit;line-height:inherit}.twentysixteen .price ins{background:inherit;color:inherit}form.has-custom-place-order-button #place_order{display:none!important}
.jetpack-instant-search__overlay{background:#1d2327b3;bottom:0;box-sizing:border-box;color:#0a112d;font-size:16px;left:0;opacity:1;overflow-x:hidden;overflow-y:auto;position:fixed;right:0;top:0;z-index:9999999999999}body.jps-theme-argent .jetpack-instant-search__overlay *{font-family:Helvetica,sans-serif}@media(max-width:767.98px){.jetpack-instant-search__overlay{padding:3em 1em}}@media(max-width:575.98px){.jetpack-instant-search__overlay{padding:0}}@media(min-width:768px){.jetpack-instant-search__overlay{padding:3em}}.jetpack-instant-search__overlay :is(h1,h2,h3,h4,h5,h6){letter-spacing:inherit}.jetpack-instant-search__overlay.is-hidden{background:#0000;opacity:0;visibility:hidden}.jetpack-instant-search__overlay *,.jetpack-instant-search__overlay :after,.jetpack-instant-search__overlay :before{box-sizing:inherit}@media print{.jetpack-instant-search__overlay.is-hidden{display:none}}@media(prefers-reduced-motion:no-preference){.jetpack-instant-search__overlay{transition:opacity .1s ease-in}}.jp-search-answers-panel{background:#fff;border:1px solid #dcdcde;border-radius:6px;box-shadow:0 1px 4px #00000014;color:#0a112d;margin:0 56px 16px;overflow:hidden}.jp-search-answers-panel--fixed-height{display:flex;flex-direction:column;height:160px}.jp-search-answers-panel--fixed-height .jp-search-answers-panel__content{flex:1;max-height:none;min-height:0;overflow:hidden}.jp-search-answers-panel--fixed-height .jp-search-answers-panel__toggle{flex-shrink:0;margin-top:auto}@media(max-width:991.98px){.jp-search-answers-panel{margin-left:40px;margin-right:40px}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jp-search-answers-panel{margin-left:40px;margin-right:40px}}@media(min-width:600px){.jp-search-answers-panel{margin-left:20px;margin-right:20px}}.jp-search-answers-panel__heading{color:#646970;font-size:11px;font-weight:600;letter-spacing:.08em;margin:0;padding:14px 18px 8px;text-transform:uppercase}.jp-search-answers-panel--error{border-color:#facfd2}.jp-search-answers-panel__error{padding:0 18px 14px}.jp-search-answers-panel__error-message{color:#d63638;font-size:13px;margin:0 0 4px}.jp-search-answers-panel__error-detail{color:#646970;font-size:12px;margin:0}.jp-search-answers-panel__loading{align-items:center;color:#646970;display:flex;font-size:13px;gap:8px;padding:0 18px 14px}.jp-search-answers-panel__loading-hint{color:#646970;font-size:13px;font-style:italic;margin:0;padding:0 18px 14px}.jp-search-answers-panel__content{padding:0 18px 14px}.jp-search-answers-panel__content--collapsed{max-height:5em;overflow:hidden;padding-bottom:0;position:relative}.jp-search-answers-panel__content--collapsed:after{background:linear-gradient(#0000,#fff);bottom:0;content:"";height:2.5em;left:0;pointer-events:none;position:absolute;right:0}.jp-search-answers-panel__text{font-size:13px;line-height:1.6}.jp-search-answers-panel__text :is(h2,h3,h4){font-size:1em;font-weight:700;margin:.8em 0 .3em}.jp-search-answers-panel__text p{margin:0 0 .6em}.jp-search-answers-panel__text ul{list-style:disc;margin:0 0 .6em 1.2em;padding:0}.jp-search-answers-panel__text li{margin-bottom:.2em}.jp-search-answers-panel__text strong{font-weight:700}.jp-search-answers-panel__text em{font-style:italic}.jp-search-answers-panel__text a{color:#0a112d;text-decoration:underline}.jp-search-answers-panel__toggle{align-items:center;background:none;border:none;border-top:1px solid #f6f7f7;color:#0a112d;cursor:pointer;display:flex;font-size:12px;font-weight:500;gap:6px;justify-content:center;padding:9px 0;width:100%}.jp-search-answers-panel__toggle:hover{background:#f6f7f7}.jp-search-answers-panel__toggle-icon{border-bottom:1.5px solid;border-right:1.5px solid;display:inline-block;height:6px;transform:rotate(45deg);width:6px}.jp-search-answers-panel__toggle--expanded .jp-search-answers-panel__toggle-icon{margin-top:3px;transform:rotate(-135deg)}.jp-search-answers-panel__citations{border-top:1px solid #f6f7f7;display:flex;flex-wrap:wrap;gap:6px 12px;justify-content:flex-end;list-style:none;margin:6px 0 0;padding:10px 0 0}.jp-search-answers-panel__citations li{font-size:12px;line-height:1.5}.jp-search-answers-panel__citations a{align-items:center;color:#0a112d;display:inline-flex;gap:4px;text-decoration:underline}.jp-search-answers-panel__citation-icon{flex-shrink:0}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel{background:#000;border-color:#3c434a;box-shadow:none;color:#fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel--error{border-color:#d63638}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(.jp-search-answers-panel__error-detail,.jp-search-answers-panel__heading,.jp-search-answers-panel__loading,.jp-search-answers-panel__loading-hint){color:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel__content--collapsed:after{background:linear-gradient(#0000,#000)}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel__toggle{border-top-color:#3c434a;color:#f6f7f7}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel__toggle:hover{background:#ffffff14}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jp-search-answers-panel__citations{border-top-color:#3c434a}.gridicon{display:inline-block;fill:currentColor}.gridicon.needs-offset g{transform:translate(1px,1px)}.gridicon.needs-offset-x g{transform:translate(1px)}.gridicon.needs-offset-y g{transform:translateY(1px)}.jetpack-instant-search__jetpack-colophon{margin-bottom:2em;margin-top:2em;text-align:center}.jetpack-instant-search__jetpack-colophon-link{align-items:center;color:inherit;display:flex;text-decoration:none}.jetpack-instant-search__jetpack-colophon-logo{display:inline;height:16px;width:16px}.jetpack-instant-search__jetpack-colophon-text{color:#2c3338;font-size:.7em;font-weight:500;line-height:16px;padding-left:12px}.jetpack-instant-search__notice{display:flex;font-size:14px;margin:1em 0;padding:.75em}.jetpack-instant-search__notice.jetpack-instant-search__notice--warning{background-color:#f5e6b3;color:#4f3500}.jetpack-instant-search__notice .gridicon{flex-shrink:0;margin-right:.5em;margin-top:1px;vertical-align:middle}.jetpack-instant-search__scroll-button{border:0;box-shadow:none;outline:0;padding:0 6px}.jetpack-instant-search__scroll-button:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit}.jetpack-instant-search__search-results .jetpack-instant-search__search-results-pagination button.jetpack-instant-search__scroll-button{background-color:inherit;color:#646970;font-size:inherit;font-weight:inherit}.jetpack-instant-search__search-sort{align-items:center;display:flex}.jetpack-instant-search__search-sort>label[for=jetpack-instant-search__search-sort-select]{flex-shrink:0;font-size:1em;font-weight:700;margin:0 .25em 0 0}.jetpack-instant-search__search-sort-with-links{font-size:13px}.jetpack-instant-search__search-sort-with-links .jetpack-instant-search__search-sort-separator{color:#646970;font-weight:300}@media(max-width:575.98px){.jetpack-instant-search__search-sort-with-select{margin-right:1em;width:100%}.jetpack-instant-search__overlay--no-sidebar .jetpack-instant-search__search-sort-with-select{margin-right:0}}@media(min-width:992px){.jetpack-instant-search__search-sort-with-select{margin-top:-4px}}.jetpack-instant-search__search-sort-select{appearance:auto;background:#fff;border:1px solid #fbfcfe;border-radius:5px;color:#0a112d;font-size:1em;height:inherit;padding:.25em}@media(max-width:575.98px){.jetpack-instant-search__search-sort-select{padding:.5em;width:100%}}.jetpack-instant-search__search-sort-option{border:none;border-radius:0;margin:0;padding:0;text-decoration:none;text-shadow:none;text-transform:none}.jetpack-instant-search__search-sort-option,.jetpack-instant-search__search-sort-option:focus,.jetpack-instant-search__search-sort-option:hover{appearance:none;background:none;box-shadow:none;outline:none}.jetpack-instant-search__search-sort-option{cursor:pointer;padding:0 2px}.jetpack-instant-search__search-sort-option:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit}.jetpack-instant-search__search-form-controls .jetpack-instant-search__search-sort button.jetpack-instant-search__search-sort-option{background-color:inherit;color:#646970;font-size:inherit;font-weight:inherit}.jetpack-instant-search__search-form-controls .jetpack-instant-search__search-sort button.jetpack-instant-search__search-sort-option.is-selected{color:#1d35b4;font-weight:600;text-decoration:none}.jetpack-instant-search__search-form-controls{align-items:center;display:flex;flex-shrink:0;line-height:1.3;z-index:1}@media(max-width:991.98px){.jetpack-instant-search__search-form-controls{flex-direction:row-reverse}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-form-controls{flex-direction:row-reverse}}.jetpack-instant-search__box{border-bottom:1px solid #fbfcfe;border-right:1px solid #fbfcfe}.jetpack-instant-search__box-label{align-items:center;display:flex;flex:0 0 100%;margin:0}input.jetpack-instant-search__box-input.search-field{appearance:none;background:#fff;border:0;box-shadow:none;color:#3c434a;font-size:18px;height:60px;line-height:1;margin:0;max-width:none;padding:0 14px;text-indent:32px;vertical-align:middle}input.jetpack-instant-search__box-input.search-field:focus,input.jetpack-instant-search__box-input.search-field:hover{background:#fff;color:#0a112d}input.jetpack-instant-search__box-input.search-field.search-field{letter-spacing:-.02em;padding-left:0;text-indent:0}.jetpack-instant-search__box-gridicon{align-items:center;display:flex;flex-shrink:0;height:60px;justify-content:center;left:0;position:relative;top:0;width:60px;z-index:1}.jetpack-instant-search__box-gridicon svg{fill:#646970}.jetpack-instant-search__box input[type=button]{border:none;border-radius:0;margin:0;padding:0;text-decoration:none;text-shadow:none;text-transform:none}.jetpack-instant-search__box :is(input[type=button]:focus,input[type=button]:hover),.jetpack-instant-search__box input[type=button]{appearance:none;background:none;box-shadow:none;outline:none}.jetpack-instant-search__box input[type=button]{color:#646970;cursor:pointer;font-size:1em;font-weight:400;height:60px;line-height:1;margin:0 .25em 0 0;overflow-wrap:normal;width:60px}.jetpack-instant-search__box :is(input[type=button]:focus,input[type=button]:hover){color:#3c434a}.jetpack-instant-search__box input[type=button]:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input{border:none;box-shadow:none;height:52px;outline-style:none;padding:0 10px;width:100%}.jetpack-instant-search__box :is(input[type=search].jetpack-instant-search__box-input:focus,input[type=search].jetpack-instant-search__box-input:hover){border:none;box-shadow:none}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input:focus{border-radius:5px;margin-left:-50px;margin-right:5px;outline:thin dotted #3c434a;outline-offset:inherit;padding-left:60px}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input::-webkit-search-results-button,.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input::-webkit-search-results-decoration{appearance:none;-webkit-appearance:none;display:initial}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input::-webkit-search-cancel-button{display:none}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input::-ms-clear,.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input::-ms-reveal{display:none}@media(prefers-reduced-motion:no-preference){.jetpack-instant-search__box input[type=button]{transition:all .1s linear}.jetpack-instant-search__box input[type=search].jetpack-instant-search__box-input{transition:color .15s ease-in-out,border-color .25s ease-in-out}}.jetpack-instant-search__search-suggestions{background:#fff;border:1px solid #dcdcde;border-radius:0 0 4px 4px;border-top:none;box-shadow:0 4px 8px #0000001a;left:0;list-style:none;margin:0;max-height:60vh;overflow-y:auto;overscroll-behavior:contain;padding:4px 0 8px;position:absolute;right:0;top:100%;z-index:100}@media(max-width:480px){.jetpack-instant-search__search-suggestions{max-height:50vh}}.jetpack-instant-search__search-suggestions-separator{border:none;border-top:1px solid #f0f0f0;margin:4px 0}.jetpack-instant-search__search-suggestions-label{color:#787c82;font-size:11px;font-weight:600;letter-spacing:.06em;padding:8px 16px 4px;text-transform:uppercase}.jetpack-instant-search__search-suggestion{color:#1e1e1e;cursor:pointer;font-size:14px;line-height:1.4;padding:10px 16px}@media(max-width:480px){.jetpack-instant-search__search-suggestion{padding:13px 16px}}.jetpack-instant-search__search-suggestion.is-active,.jetpack-instant-search__search-suggestion:hover{background:#f0f6fc;color:#0675c4}.jetpack-instant-search__search-suggestion--post,.jetpack-instant-search__search-suggestion--taxonomy{padding-left:20px}@media(max-width:480px){.jetpack-instant-search__search-suggestion--post,.jetpack-instant-search__search-suggestion--taxonomy{padding-left:20px}}.jetpack-instant-search__path-breadcrumb{font-size:.9em;margin:0;max-width:calc(100vw - 2em);overflow-x:hidden;text-overflow:ellipsis}.jetpack-instant-search__path-breadcrumb-link{max-width:100%;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.jetpack-instant-search__path-breadcrumb-link:focus,.jetpack-instant-search__path-breadcrumb-link:hover{text-decoration:underline}.jetpack-instant-search__path-breadcrumb,.jetpack-instant-search__path-breadcrumb-link{color:#3c434a}.jetpack-instant-search__search-result-comments{border-left:2px solid #f0f0f1;font-size:.9em;margin-left:8px;margin-top:16px;overflow-wrap:break-word;padding-left:16px}.jetpack-instant-search__search-result-comments .gridicon{margin-right:8px;vertical-align:middle}.jetpack-instant-search__search-result-expanded{display:flex;flex-flow:column}.jetpack-instant-search__search-result-expanded:last-child{margin-right:0}.jetpack-instant-search__search-result-expanded .jetpack-instant-search__search-result-expanded__title{width:100%}.jetpack-instant-search__search-result-expanded__path{color:#646970;font-size:.9375em;margin:0 0 .4em}.jetpack-instant-search__search-result-expanded__copy-container{max-width:100%}@media(min-width:576px){.jetpack-instant-search__search-result-expanded__copy-container{width:calc(100% - 128px - 1em)}}.jetpack-instant-search__search-result-expanded--no-image .jetpack-instant-search__search-result-expanded__copy-container{width:auto}.jetpack-instant-search__search-result-expanded__content{color:#0a112d;font-size:.9375em}.jetpack-instant-search__search-result-expanded__image-link{margin-left:1em}@media(max-width:575.98px){.jetpack-instant-search__search-result-expanded__image-link{margin:0 auto .5em}}.jetpack-instant-search__search-result-expanded__image-container{position:relative;width:128px}@media(max-width:575.98px){.jetpack-instant-search__search-result-expanded__image-container{width:256px}}.jetpack-instant-search__search-result-expanded--no-image .jetpack-instant-search__search-result-expanded__image-container{display:none}.jetpack-instant-search__search-result-expanded__image-container:before{content:"";display:block;padding-top:100%;width:100%}.jetpack-instant-search__search-result-expanded__image{border-radius:5px;bottom:0;height:100%;left:0;object-fit:cover;position:absolute;right:0;top:0;width:100%}.jetpack-instant-search__search-result-expanded__content-container{display:flex;flex-flow:column}@media(min-width:576px){.jetpack-instant-search__search-result-expanded__content-container{flex-flow:row nowrap}}.jetpack-instant-search__search-result-expanded__footer{display:flex;list-style-type:none;margin-left:0;margin-top:10px;padding-left:0}.jetpack-instant-search__search-result-expanded__footer li{margin-right:10px}.jetpack-instant-search__search-result-expanded__footer-blog-image{border-radius:2px;margin-right:3px;vertical-align:middle}.jetpack-instant-search__search-result-expanded__footer-blog{font-size:13px;font-style:normal;font-weight:600;line-height:180%}.jetpack-instant-search__search-result-expanded__footer-author:after,.jetpack-instant-search__search-result-expanded__footer-blog:after{color:#636363;content:"·";margin-left:10px}li:last-child .jetpack-instant-search__search-result-expanded__footer-author:after,li:last-child .jetpack-instant-search__search-result-expanded__footer-blog:after{content:""}.jetpack-instant-search__search-result-expanded__footer-author,.jetpack-instant-search__search-result-expanded__footer-date{color:#636363;font-size:13px;font-style:normal;font-weight:400}.jetpack-instant-search__search-result-title.jetpack-instant-search__search-result-minimal-title{margin-bottom:.4em}.jetpack-instant-search__search-result-title.jetpack-instant-search__search-result-minimal-title .gridicon{margin-right:8px}.jetpack-instant-search__search-result-minimal-cats-and-tags{display:flex;flex-flow:row wrap;font-size:.9375em}.jetpack-instant-search__search-result-minimal-cats,.jetpack-instant-search__search-result-minimal-tags{display:flex;flex-flow:row wrap;list-style-type:none;margin:0;padding:0}.jetpack-instant-search__search-result-minimal-cat,.jetpack-instant-search__search-result-minimal-tag{margin:0 .75em 0 0}:is(.jetpack-instant-search__search-result-minimal-cat,.jetpack-instant-search__search-result-minimal-tag) .gridicon{margin-right:.25em}.jetpack-instant-search__search-result-minimal-cat .gridicon,.jetpack-instant-search__search-result-minimal-cat-text,.jetpack-instant-search__search-result-minimal-tag .gridicon,.jetpack-instant-search__search-result-minimal-tag-text{vertical-align:middle}.jetpack-instant-search__search-result-minimal-content{overflow-wrap:break-word}.jetpack-instant-search__product-price-regular{color:#646970;padding-right:.25em}.jetpack-instant-search__product-rating-stars .gridicon{fill:#f0c930;vertical-align:middle}.jetpack-instant-search a.jetpack-instant-search__product-rating-count{color:#646970;font-size:.9em;text-decoration:underline;vertical-align:text-top}.jetpack-instant-search__search-results-list.is-format-product{display:flex;flex-wrap:wrap;margin-right:40px;padding:0 0 3em}@media(max-width:991.98px){.jetpack-instant-search__search-results-list.is-format-product{margin-right:24px}}@media(max-width:767.98px){.jetpack-instant-search__search-results-list.is-format-product{margin-right:4px}}.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{display:flex;flex-direction:column;margin:0 16px 16px 0;position:relative;width:calc(50% - 16px)}@media(min-width:576px){.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{width:calc(33.33333% - 16px)}}@media(min-width:768px){.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{width:calc(25% - 16px)}}@media(min-width:992px){.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{width:calc(33.33333% - 16px)}}@media(min-width:1200px){.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{width:calc(25% - 16px)}}@media(min-width:1400px){.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product{width:calc(20% - 16px)}}.jetpack-instant-search__search-result.jetpack-instant-search__search-result-product .jetpack-instant-search__search-result-title-link{display:initial}.jetpack-instant-search__search-result>.jetpack-instant-search__search-result-product-img-link{display:block}.jetpack-instant-search__search-result-product-img-container{border-radius:5px;color:#0000}.jetpack-instant-search__search-result-product-img-container.jetpack-instant-search__search-result-product-img-container--placeholder{background:#c3c4c7}.jetpack-instant-search__search-result-product-img-container .gridicon{fill:#fff}.jetpack-instant-search__search-result-product-img-container{position:relative}.jetpack-instant-search__search-result-product-img-container:before{content:"";display:block;padding-top:100%;width:100%}.jetpack-instant-search__search-result-product-img{border-radius:5px;bottom:0;height:100%;left:0;object-fit:cover;position:absolute;right:0;top:0;width:100%}.jetpack-instant-search__search-result-product-img>.gridicon{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.jetpack-instant-search__search-result-product-img>.gridicons-image{height:25%;width:25%}.jetpack-instant-search__search-result-product-img>.gridicons-block{height:50%;width:50%}.jetpack-instant-search__search-result-title.jetpack-instant-search__search-result-product-title{font-size:1.25em;margin:.25em 0 0}.jetpack-instant-search__search-result-product-match{font-size:.9em;margin-top:.25em}.jetpack-instant-search__search-result-product-match mark{align-items:center;display:flex;font-weight:400}.jetpack-instant-search__search-result-product-match .gridicon{height:1em;margin-right:.25em;width:1em}.jetpack-instant-search__search-result{margin:0 0 2em}.jetpack-instant-search__search-result-title{font-size:1.6em;font-weight:400;line-height:1.35;margin:0;overflow-wrap:break-word}.jetpack-instant-search__search-result-title .jetpack-instant-search__search-result-title-link{align-items:center;display:flex;text-decoration:none}.jetpack-instant-search__search-result-title :is(.jetpack-instant-search__search-result-title-link:focus,.jetpack-instant-search__search-result-title-link:hover){text-decoration:underline}.jetpack-instant-search__search-result-title .jetpack-instant-search__search-result-title-checkmark{background-color:#b8e6bf;border-radius:50%;height:30px;margin-left:.35em;position:relative;width:30px}.jetpack-instant-search__search-result-title .jetpack-instant-search__search-result-title-checkmark:after{border-bottom:3px solid #00450c;border-left-color:#00450c;border-right:3px solid #00450c;border-top-color:#00450c;content:"";height:16px;left:11px;position:absolute;top:6px;transform:rotate(40deg);width:8px}.jetpack-instant-search__search-filters{position:relative}.jetpack-instant-search__search-filters>div{margin-top:1em}.jetpack-instant-search__search-filters-title{color:#0a112d;display:block;font-size:inherit;font-weight:700;line-height:1.3;margin:0;padding:0}.jetpack-instant-search__clear-filters-link{border:none;cursor:pointer;line-height:1.3;margin:0;padding:0 4px;position:absolute;right:0;top:0}.jetpack-instant-search__clear-filters-link:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit}.jetpack-instant-search__sidebar .jetpack-instant-search__search-filters button.jetpack-instant-search__clear-filters-link{background-color:inherit;color:#646970;font-size:inherit;font-weight:inherit}.jetpack-instant-search__search-filter-sub-heading{color:#646970;font-size:inherit;margin:0;padding:0}.jetpack-instant-search__search-filter-list{text-align:left}.jetpack-instant-search__search-filter-list>div{align-items:baseline;display:flex;margin-top:8px}.jetpack-instant-search__search-filter-list .jetpack-instant-search__search-filter-list-input,.jetpack-instant-search__search-filter-list .widget_search .jetpack-instant-search__search-filter-list-input{appearance:auto;background:none;border:none;cursor:pointer;height:auto;margin:0;top:1px;width:auto}.jetpack-instant-search__search-filter-list .jetpack-instant-search__search-filter-list-input:after,.jetpack-instant-search__search-filter-list .jetpack-instant-search__search-filter-list-input:before,.jetpack-instant-search__search-filter-list .widget_search .jetpack-instant-search__search-filter-list-input:after,.jetpack-instant-search__search-filter-list .widget_search .jetpack-instant-search__search-filter-list-input:before{display:none!important}.jetpack-instant-search__search-filter-list .jetpack-instant-search__search-filter-list-input:focus,.jetpack-instant-search__search-filter-list .widget_search .jetpack-instant-search__search-filter-list-input:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit;outline-offset:2px}.jetpack-instant-search__search-filter-list .jetpack-instant-search__search-filter-list-label,.jetpack-instant-search__search-filter-list .widget_search .jetpack-instant-search__search-filter-list-label{color:inherit;cursor:pointer;display:inline-block;font-weight:400;margin:0 0 0 8px;padding:0;width:auto}.jetpack-instant-search__search-static-filter-list{font-size:.875rem;line-height:1.8}.jetpack-instant-search__widget-area-container{margin-bottom:2em}.jetpack-instant-search__sidebar{padding-top:14px}.jetpack-instant-search__sidebar .jetpack-instant-search__widget-area>.widget{background:none;border:none;margin:0;padding:0}.jetpack-instant-search__sidebar .jetpack-instant-search__widget-area>.widget a{font-weight:400}.jetpack-instant-search__sidebar h2.widgettitle{border:none;font-size:1.3em;margin:1em 0 .5em}.jetpack-instant-search__sidebar h2.widgettitle:after,.jetpack-instant-search__sidebar h2.widgettitle:before{display:none!important}.jetpack-instant-search__sidebar-citations{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}.jetpack-instant-search__sidebar-citation-card{border:1px solid #fbfcfe;border-radius:6px;color:inherit;display:flex;flex-direction:column;gap:2px;padding:10px 12px;text-decoration:none;transition:background-color .1s ease}.jetpack-instant-search__sidebar-citation-card:hover{background-color:#ffc}.jetpack-instant-search__sidebar-citation-title{color:#0a112d;font-size:13px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.jetpack-instant-search__sidebar-citation-url{color:#646970;font-size:11px}.jetpack-instant-search__search-static-filter-variation-tabbed{border-bottom:1px solid #fbfcfe;display:flex}.jetpack-instant-search__search-static-filter-variation-tabbed>div{margin:0}.jetpack-instant-search__search-static-filter-variation-tabbed .jetpack-instant-search__search-filter-list-label{margin:0;padding:10px 20px}.jetpack-instant-search__search-static-filter-variation-tabbed .jetpack-instant-search__search-filter-list-input{display:none}.jetpack-instant-search__search-static-filter-variation-tabbed .jetpack-instant-search__search-filter-list-input:checked+.jetpack-instant-search__search-filter-list-label{border-bottom:3px solid #3858e9}.jetpack-instant-search__search-results-wrapper{border-radius:4px;height:100%;margin:0 auto;max-width:1080px;overflow:hidden;position:relative}@media(min-width:992px){.jetpack-instant-search__search-results-wrapper{max-width:95%}}.jetpack-instant-search__search-results-wrapper.has-colophon{padding-bottom:40px}.jetpack-instant-search__jetpack-colophon{background-color:#fff;border-top:1px solid #fbfcfe;bottom:0;display:flex;height:40px;justify-content:center;margin:0;position:absolute;width:100%}.jetpack-instant-search__search-results{background:#fff;height:100%;min-height:100%;overflow-y:auto;position:relative;z-index:10}@media(max-width:575.98px){.jetpack-instant-search__search-results{border-radius:0}}.jetpack-instant-search__search-results mark{background:#ffc;color:#0a112d}.jetpack-instant-search__search-results #jetpack-instant-search__overlay-focus-anchor{background-color:inherit;border:none;bottom:0;clip-path:inset(50%);color:inherit;font-size:.7em;font-weight:400;margin-bottom:4px;margin-right:4px;overflow:hidden;padding:4px 6px;position:absolute;right:0;width:1px}.jetpack-instant-search__search-results #jetpack-instant-search__overlay-focus-anchor:focus{clip-path:none;outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit;width:auto}.jetpack-instant-search__search-results-controls{display:flex}.jetpack-instant-search__search-results-content{display:flex;position:relative}.jetpack-instant-search__search-results-filter-button{align-items:center;border:0;color:#646970;cursor:pointer;display:flex;flex-shrink:0;font-size:12px;margin:0;padding:8px;text-decoration:none}.jetpack-instant-search__overlay--no-sidebar .jetpack-instant-search__search-results-filter-button{visibility:hidden}@media(min-width:576px){.jetpack-instant-search__search-results-filter-button{font-size:13px;padding:10px 14px}}@media(min-width:992px){.jetpack-instant-search__search-results-filter-button{display:none}.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-filter-button{display:flex}}@media(min-width:1200px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-filter-button{display:none}}.jetpack-instant-search__search-results-filter-button:focus,.jetpack-instant-search__search-results-filter-button:hover{color:#0a112d}.jetpack-instant-search__search-results-filter-button .gridicon{margin-left:4px}.jetpack-instant-search__search-results-primary{margin:0;max-width:calc(100% - 320px);width:100%}.jetpack-instant-search__overlay--no-sidebar .jetpack-instant-search__search-results-primary{max-width:100%}@media(max-width:991.98px){.jetpack-instant-search__search-results-primary{max-width:100%}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-primary{max-width:100%}}.jetpack-instant-search__search-results-secondary{background:none;border-left:1px solid #fbfcfe;border-radius:0;bottom:0;box-shadow:none;color:#0a112d;display:block;flex:none;padding:0 32px;position:static;width:320px}.jetpack-instant-search__overlay--no-sidebar .jetpack-instant-search__search-results-secondary{display:none}@media(max-width:991.98px){.jetpack-instant-search__search-results-secondary{display:none}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-secondary{display:none}}@media(max-width:991.98px){.jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{background:#fff;border:1px solid #0000001a;border-radius:6px;box-shadow:0 2px 3px #0000001a;display:block;left:1em;max-height:70vh;min-width:360px;overflow-y:scroll;padding:16px 24px;position:absolute;right:1em;top:0;width:auto;z-index:10}}@media(max-width:991.98px)and (max-width:575.98px){.jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{max-height:80vh}}@media(max-width:991.98px){.jetpack-instant-search__overlay--no-sidebar .jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{display:none}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{background:#fff;border:1px solid #0000001a;border-radius:6px;box-shadow:0 2px 3px #0000001a;display:block;left:1em;max-height:70vh;min-width:360px;overflow-y:scroll;padding:16px 24px;position:absolute;right:1em;top:0;width:auto;z-index:10}}@media(max-width:1199.98px)and (max-width:575.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{max-height:80vh}}@media(max-width:1199.98px){.jetpack-instant-search__overlay--no-sidebar .jp-search-configure-app-wrapper .jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{display:none}}.jetpack-instant-search__search-results-header{align-items:center;display:flex;justify-content:space-between;margin:1em 56px 1.5em}@media(max-width:991.98px){.jetpack-instant-search__search-results-header{margin-bottom:1em;margin-left:40px;margin-right:40px}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-header{margin-bottom:1em;margin-left:40px;margin-right:40px}}@media(max-width:767.98px){.jetpack-instant-search__search-results-header{margin-left:20px;margin-right:20px}}.jetpack-instant-search__search-results-title,.jetpack-instant-search__search-results-unused-query{color:#0a112d;font-size:1em;font-weight:700;line-height:1.3;margin:0;overflow-wrap:break-word;padding:0}.jetpack-instant-search__search-results-unused-query{margin:0 56px 1em}@media(max-width:991.98px){.jetpack-instant-search__search-results-unused-query{margin-left:40px;margin-right:40px}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-unused-query{margin-left:40px;margin-right:40px}}@media(max-width:767.98px){.jetpack-instant-search__search-results-unused-query{margin-left:20px;margin-right:20px}}.jetpack-instant-search__search-results-list{color:#0a112d;list-style:none;margin-left:56px;margin-right:56px;padding:0}@media(max-width:991.98px){.jetpack-instant-search__search-results-list{margin-left:40px;margin-right:40px}}@media(max-width:1199.98px){.jp-search-configure-app-wrapper .jetpack-instant-search__search-results-list{margin-left:40px;margin-right:40px}}@media(max-width:767.98px){.jetpack-instant-search__search-results-list{margin-left:20px;margin-right:20px}}.jetpack-instant-search__search-results-list li:before{content:"​";height:1px;position:absolute;width:1px}.jetpack-instant-search__search-results-search-form{font-size:.8em;margin:0;top:0;width:100%}button.jetpack-instant-search__overlay-close{border:none;border-radius:0;margin:0;padding:0;text-decoration:none;text-shadow:none;text-transform:none}button.jetpack-instant-search__overlay-close,button.jetpack-instant-search__overlay-close:focus,button.jetpack-instant-search__overlay-close:hover{appearance:none;background:none;box-shadow:none;outline:none}button.jetpack-instant-search__overlay-close{align-items:center;background-color:#0000!important;border-bottom:1px solid #fbfcfe;cursor:pointer;display:flex;height:61px;justify-content:center;line-height:1;width:60px}button.jetpack-instant-search__overlay-close:focus{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color!important;outline-offset:inherit}button.jetpack-instant-search__overlay-close svg.gridicon{fill:#646970}button.jetpack-instant-search__overlay-close:active,button.jetpack-instant-search__overlay-close:focus,button.jetpack-instant-search__overlay-close:hover{background-color:#0000!important;border-color:#fbfcfe}:is(button.jetpack-instant-search__overlay-close:active,button.jetpack-instant-search__overlay-close:focus,button.jetpack-instant-search__overlay-close:hover) svg.gridicon{fill:#3c434a}.jetpack-instant-search__search-results-pagination{display:block;flex:none;margin:50px}@media(prefers-reduced-motion:no-preference){.jetpack-instant-search__search-results-filter-button{transition:background-color .25s ease-in-out}}.jetpack-instant-search .widget a,.jetpack-instant-search .widget.widget_archive ul li a,.jetpack-instant-search a{border:none;color:#0a112d;text-decoration:none}.jetpack-instant-search .widget a:focus,.jetpack-instant-search .widget a:hover,.jetpack-instant-search .widget.widget_archive ul li a:focus,.jetpack-instant-search .widget.widget_archive ul li a:hover,.jetpack-instant-search a:focus,.jetpack-instant-search a:hover{color:#1d35b4;text-decoration:underline}.jetpack-search-filters-widget__filter-list{list-style-type:none}body.enable-search-modal .cover-modal.show-modal.search-modal.active{display:none}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute;width:1px}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark{background:#1d2327b3;color:#fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a{color:#f6f7f7}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:focus,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget a:hover,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:focus,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .widget.widget_archive ul li a:hover,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:focus,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark a:hover{color:#546ff3}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(.jetpack-instant-search__search-filters-title,.jetpack-instant-search__search-result-expanded__content,.jetpack-instant-search__search-results-list,.jetpack-instant-search__search-results-title,.jetpack-instant-search__search-results-unused-query){color:#fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(.jetpack-instant-search__jetpack-colophon-text,.jetpack-instant-search__path-breadcrumb,.jetpack-instant-search__path-breadcrumb-link){color:#a7aaad}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(.jetpack-instant-search__search-filter-sub-heading,.jetpack-instant-search__search-result-expanded__path){color:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__jetpack-colophon{background-color:#000;border-color:#3c434a}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__box,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark button.jetpack-instant-search__overlay-close{border-color:#3c434a}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__box-gridicon svg,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark button.jetpack-instant-search__overlay-close svg.gridicon{fill:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark button.jetpack-instant-search__overlay-close{border-color:#3c434a}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(button.jetpack-instant-search__overlay-close:focus,button.jetpack-instant-search__overlay-close:hover) svg.gridicon{fill:#a7aaad}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__box input[type=button]{color:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__box :is(input[type=button]:focus,input[type=button]:hover){color:#a7aaad}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input.jetpack-instant-search__box-input.search-field{background:#000;color:#a7aaad}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(input.jetpack-instant-search__box-input.search-field:focus,input.jetpack-instant-search__box-input.search-field:hover){background:#000;color:#fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark input.jetpack-instant-search__box-input.search-field:focus{outline:thin dotted #fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results{background:#000}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results mark{color:#fbfcfe}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-filter-button{color:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-secondary,.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark :is(.jetpack-instant-search__search-results-filter-button:focus,.jetpack-instant-search__search-results-filter-button:hover){color:#fbfcfe}@media(min-width:992px){.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-secondary{border-color:#3c434a}}@media(max-width:991.98px){.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-results-secondary.jetpack-instant-search__search-results-secondary--show-as-modal{background:#000;border-color:#3c434a;box-shadow:0 2px 3px #3c434a}}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-form-controls .jetpack-instant-search__search-sort button.jetpack-instant-search__search-sort-option{color:#8c8f94}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-form-controls .jetpack-instant-search__search-sort button.jetpack-instant-search__search-sort-option.is-selected{color:#546ff3}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-result-product-img--placeholder{color:#2c3338}.jetpack-instant-search__overlay.jetpack-instant-search__overlay--dark .jetpack-instant-search__search-sort-select{background:#000;border-color:#3c434a;color:#fbfcfe}
/*
Theme Name: AI Made Theme
Theme URI: /mcp-agent-suite/
Author: AIMADE.TECH
Author URI: /
Description: A blank-canvas WordPress block theme built for AI agents to design professional custom sites through Agent MCP Suite. Minimal defaults, clean templates, predictable block structure, and agent-friendly patterns.
Version: 1.1.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aimade-mcp
Tags: full-site-editing, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, one-column, two-columns, wide-blocks

AI Made Theme is distributed under the terms of the GNU GPL v2 or later.
*/

/*
 * AI Made Theme intentionally ships as a blank canvas.
 * It avoids branded layouts so Agent MCP Suite and external AI agents can
 * create custom designs per site without fighting opinionated CSS.
 */

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

.aimade-skip-link {
	position: absolute;
	left: 1rem;
	top: -5rem;
	z-index: 9999;
	padding: .75rem 1rem;
	border-radius: .5rem;
	background: CanvasText;
	color: Canvas;
	text-decoration: none;
}

.aimade-skip-link:focus {
	top: 1rem;
}

.aimade-site-header,
.aimade-site-footer,
.aimade-main {
	width: 100%;
}

.aimade-site-header {
	padding-block: var(--wp--preset--spacing--30, 1.5rem);
}

.aimade-header-inner,
.aimade-footer-inner,
.aimade-main > * {
	width: min(100%, var(--wp--style--global--wide-size, 1200px));
	margin-inline: auto;
}

.aimade-header-inner,
.aimade-footer-inner {
	padding-inline: var(--wp--preset--spacing--30, 1.5rem);
}

.aimade-brand {
	gap: .75rem;
}

.aimade-brand-text {
	gap: 0;
}

.aimade-brand-subtitle {
	margin: 0;
	font-size: .75rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .72;
}

.aimade-page-main,
.aimade-single-main,
.aimade-archive-main,
.aimade-404-main {
	padding-block: var(--wp--preset--spacing--60, 4rem);
	padding-inline: var(--wp--preset--spacing--30, 1.5rem);
}

.aimade-home-main {
	padding: 0;
}

.aimade-home-main > *,
.aimade-page-main > *,
.aimade-single-main > *,
.aimade-archive-main > *,
.aimade-404-main > * {
	max-width: var(--wp--style--global--wide-size, 1200px);
	margin-inline: auto;
}

.aimade-site-footer {
	padding-block: var(--wp--preset--spacing--50, 3rem);
}

.aimade-footer-bottom {
	padding-top: var(--wp--preset--spacing--30, 1.5rem);
	border-top: 1px solid currentColor;
	opacity: .76;
}

.wp-block-button__link {
	transition: transform .16s ease, opacity .16s ease;
}

.wp-block-button__link:hover {
	transform: translateY(-1px);
}

:where(a, button, input, textarea, select):focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.aimade-canvas-section {
	padding-block: var(--wp--preset--spacing--70, 6rem);
}

.aimade-canvas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
	gap: var(--wp--preset--spacing--30, 1.5rem);
}

.aimade-canvas-card {
	padding: var(--wp--preset--spacing--30, 1.5rem);
	border: 1px solid currentColor;
	border-radius: var(--wp--custom--border-radius--medium, .75rem);
}

@media (max-width: 782px) {
	.aimade-header-actions {
		display: none;
	}

	.aimade-header-inner,
	.aimade-footer-inner {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
	}
}
#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager,#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager-ai-chat{padding:0;width:43px}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager svg,#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager-ai-chat svg{position:absolute;height:22px;width:22px;top:1px;left:0;right:0;bottom:0;padding:4px 11px}@media(max-width: 782px){#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager svg,#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager-ai-chat svg{height:30px!important;padding:7px 8px!important;width:30px!important}}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager .ab-item:hover,#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager-ai-chat .ab-item:hover{color:#7b90ff;cursor:pointer}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager #agents-manager-icon-with-notification{display:none}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.has-unread #agents-manager-icon{display:none}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.has-unread #agents-manager-icon-with-notification{display:block}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.unseen-notification #agents-manager-icon-with-notification{display:block}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.unseen-notification #agents-manager-icon{display:none}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager .ab-item.ab-empty-item{transition:250ms ease}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.menupop.hover>.ab-sub-wrapper,#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.menupop>.ab-sub-wrapper{display:none!important}#wpadminbar #wp-toolbar #wp-admin-bar-agents-manager.menupop.open-click>.ab-sub-wrapper{display:block!important}#wpadminbar #wp-toolbar .ab-icon:hover{color:inherit}#wpadminbar #wp-toolbar .agents-manager button.components-button{background:rgba(0,0,0,0);border:none;color:currentcolor}#wpadminbar #wp-toolbar .agents-manager button.components-button.inline-help__new-releases{text-align:left}#wpadminbar #wp-toolbar .agents-manager button.components-button svg{fill:currentColor}#wpadminbar #wp-toolbar #wp-admin-bar-root-default #wp-admin-bar-wpcom-logo a{border-top-left-radius:8px}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary{border-top-right-radius:8px}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-my-account a{border-top-right-radius:8px}@media(max-width: 782px){#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager,#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager-ai-chat{display:block!important;margin-right:0!important;width:52px!important}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager .ab-item,#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager-ai-chat .ab-item{display:flex;justify-content:center}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager .ab-item svg,#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager-ai-chat .ab-item svg{position:relative}}@media(max-width: 480px){#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager,#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager-ai-chat{width:46px!important}}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager li .ab-item{display:flex;align-items:center;justify-content:flex-start;gap:12px}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager li .ab-item svg.help-center-menu-icon{fill:currentColor;padding:0;position:unset}@media(max-width: 782px){#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager li .ab-item svg.help-center-menu-icon{padding:0!important}}#wpadminbar #wp-toolbar #wp-admin-bar-top-secondary #wp-admin-bar-agents-manager li .ab-item:hover svg{fill:#7b90ff}.interface-pinned-items:has(.agents-manager-ai-chat)>.help-center,.interface-pinned-items:has(.agents-manager-ai-chat)>.agents-manager-help-center,.interface-pinned-items:has(.agents-manager-help-center)>.help-center,.interface-pinned-items:has(.agents-manager-help-center)>.agents-manager-help-center{order:-2}.interface-pinned-items:has(.agents-manager-ai-chat)>.agents-manager-ai-chat,.interface-pinned-items:has(.agents-manager-help-center)>.agents-manager-ai-chat{order:-1}.agents-manager-copy-action-button svg path{fill:var(--color-muted-foreground)}.agents-manager-copy-action-button:hover:not(:disabled) svg path{fill:var(--color-foreground)}.agents-manager-copy-action-button:focus:not(:focus-visible){box-shadow:none!important}.agenttic{--base-font-size:1rem;--color-white:#FFFFFF;--color-background:#FCFCFC;--color-foreground:#1F1F1F;--color-popover:#FCFCFC;--color-popover-muted:#FCFCFC;--color-primary:#2D5AF2;--color-primary-foreground:var(--color-white);--color-muted:#E9E9E9;--color-muted-foreground:#757575;--color-ring:var(--color-primary);--color-success-background:#F1F7F1;--color-success:var(--color-foreground);--color-warning-background:#F8F3E7;--color-warning:var(--color-foreground);--color-error-background:#FCF1F1;--color-error:#E7000B;--color-link:var(--color-primary);--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-weight-medium:450;--font-weight-semibold:500;--font-weight-bold:600;--text-xs:calc(.8125 * var(--base-font-size));--text-xs--line-height:1.538;--text-sm:calc(.875 * var(--base-font-size));--text-sm--line-height:1.65;--text-base:calc(.9375 * var(--base-font-size));--text-base--line-height:1.625;--text-base--tracking:-.01em;--spacing:calc(.25 * var(--base-font-size));--spacing-1:var(--spacing);--spacing-1\.5:calc(var(--spacing) * 1.5);--spacing-2:calc(var(--spacing) * 2);--spacing-3:calc(var(--spacing) * 3);--spacing-3\.5:calc(var(--spacing) * 3.5);--spacing-4:calc(var(--spacing) * 4);--spacing-5:calc(var(--spacing) * 5);--spacing-6:calc(var(--spacing) * 6);--spacing-7:calc(var(--spacing) * 7);--spacing-8:calc(var(--spacing) * 8);--spacing-9:calc(var(--spacing) * 9);--spacing-10:calc(var(--spacing) * 10);--spacing-12:calc(var(--spacing) * 12);--spacing-20:calc(var(--spacing) * 20);--radius:var(--base-font-size);--radius-xs:calc(var(--radius) - 10px);--radius-sm:calc(var(--radius) - 8px);--radius-md:calc(var(--radius) - 2px);--radius-lg:var(--radius);--radius-xl:calc(var(--radius) + 8px);--radius-full:9999px;--shadow-sm:0 0 0 1px color-mix(in srgb,var(--color-foreground) 10%,transparent),0 0 6px color-mix(in srgb,var(--color-foreground) 5%,transparent);--shadow-lg:0 0 0 1px rgba(0,0,0,.075),0 2px 24px rgba(0,0,0,.075);--shadow-outline:0 0 0 1px color-mix(in srgb,var(--color-foreground) 10%,transparent);--shadow-outline-strong:0 0 0 1px color-mix(in srgb,var(--color-foreground) 25%,transparent);--transition-colors:color .15s cubic-bezier(.4,0,.2,1),background-color .15s cubic-bezier(.4,0,.2,1),border-color .15s cubic-bezier(.4,0,.2,1),box-shadow .15s cubic-bezier(.4,0,.2,1),fill .15s cubic-bezier(.4,0,.2,1),stroke .15s cubic-bezier(.4,0,.2,1)}.agenttic.dark{--color-background:#1F1F1F;--color-foreground:#FFFFFF;--color-popover:#1F1F1F;--color-popover-muted:#2F2F2F;--color-muted:#464646;--color-muted-foreground:#8F8F8F;--color-success-background:#1F2E1F;--color-warning-background:#2E281F;--color-error-background:#2E1F1F;--color-error:#FFDDDF;--color-link:var(--color-white)}.agenttic.dark [data-slot=collapsed-view] svg{color:var(--color-white)}@layer base{.agenttic *,.agenttic :before,.agenttic :after,.agenttic ::backdrop,.agenttic ::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}.agenttic *{outline-color:var(--color-ring)}.agenttic button,.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;background-color:rgba(0,0,0,0);opacity:1}.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{color:inherit;border-radius:0}.agenttic [data-slot=messages],.agenttic [data-slot=chat-input],.agenttic [data-slot=chat-footer],.agenttic [data-slot=chat-header] [data-slot=button]{cursor:default}}.ResizeHandles-module_resizeTop,.ResizeHandles-module_resizeRight,.ResizeHandles-module_resizeBottom,.ResizeHandles-module_resizeLeft,.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{position:absolute;z-index:1;touch-action:none}.ResizeHandles-module_resizeTop{top:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeBottom{bottom:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeLeft{top:6px;bottom:6px;left:0;width:6px}.ResizeHandles-module_resizeRight{top:6px;bottom:6px;right:0;width:6px}.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{width:12px;height:12px;z-index:2}.ResizeHandles-module_resizeTopLeft{top:0;left:0}.ResizeHandles-module_resizeTopRight{top:0;right:0}.ResizeHandles-module_resizeBottomRight{bottom:0;right:0}.ResizeHandles-module_resizeBottomLeft{bottom:0;left:0}.button-module_button{align-items:center;border-radius:var(--radius-sm);border:1px solid rgba(0,0,0,0);color:var(--color-foreground);cursor:pointer;display:inline-flex;flex-shrink:0;font-weight:var(--font-weight-medium);font-size:var(--text-sm);gap:calc(var(--spacing)*.5);justify-content:center;outline:none;transition:var(--transition-colors);letter-spacing:var(--text-base--tracking);white-space:nowrap;height:var(--spacing-8);padding:var(--spacing-2) var(--spacing-3)}.button-module_button:disabled{pointer-events:none;background-color:var(--color-muted);color:var(--color-muted-foreground)}.button-module_button:focus-visible{outline:2px solid var(--color-ring);outline-offset:1.5px}.button-module_pressed{color:var(--color-foreground)}.button-module_pressed svg{color:var(--color-foreground)}.button-module_primary{background-color:var(--color-primary);color:var(--color-primary-foreground)}.button-module_primary:hover:not(:disabled){background-color:color-mix(in srgb,var(--color-primary) 85%,#000)}.button-module_ghost{background-color:rgba(0,0,0,0);color:var(--color-muted-foreground)}.button-module_ghost svg{color:var(--color-muted-foreground)}.button-module_ghost:hover:not(:disabled){background:rgba(0,0,0,0);color:var(--color-foreground)}.button-module_ghost:hover:not(:disabled) svg{color:var(--color-foreground)}.button-module_ghost:disabled{background:rgba(0,0,0,0);opacity:.66}.button-module_ghost:focus-visible{outline-offset:0}.button-module_ghost.button-module_pressed{color:var(--color-foreground)}.button-module_ghost.button-module_pressed svg{color:var(--color-foreground)}.button-module_outline{box-shadow:var(--shadow-outline);background-color:var(--color-background)}.button-module_outline:hover:not(:disabled){box-shadow:var(--shadow-outline-strong)}.button-module_outline:focus-visible{outline-offset:0}.button-module_outline:disabled{background-color:var(--color-background)}.button-module_outline.button-module_pressed{color:var(--color-foreground)}.button-module_outline.button-module_pressed svg{color:var(--color-foreground)}.button-module_transparent{background-color:color-mix(in srgb,var(--color-background) 95%,transparent);color:var(--color-foreground);box-shadow:var(--shadow-lg)}.button-module_transparent:hover:not(:disabled){background-color:var(--color-background);box-shadow:var(--shadow-lg)}.button-module_link{background-color:rgba(0,0,0,0);color:var(--color-primary);font-weight:var(--font-weight-semibold);padding-left:var(--spacing-2);padding-right:var(--spacing-2);width:auto}.button-module_link:hover:not(:disabled){color:color-mix(in srgb,var(--color-primary) 85%,#000)}.button-module_link.button-module_pressed{color:var(--color-primary)}.button-module_link.button-module_pressed svg{color:var(--color-primary)}.button-module_icon{border-radius:var(--radius-xs);height:var(--spacing-8);padding:0;width:var(--spacing-8)}.button-module_sm{border-radius:var(--radius-xs);gap:0;height:var(--spacing-6);padding:0;width:var(--spacing-6)}.button-module_sm svg{height:var(--spacing-6);width:var(--spacing-6)}.button-module_lg{height:var(--spacing-10);border-radius:var(--radius-md);font-size:var(--text-base);padding-left:var(--spacing-3\.5);padding-right:var(--spacing-3\.5)}.button-module_withTextAndIcon{padding-left:var(--spacing-1);width:inherit}.button-module_sm.button-module_withTextAndIcon{padding-left:0;padding-right:var(--spacing-1)}.button-module_button svg{flex-shrink:0;pointer-events:none}.CollapsedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:var(--spacing-10)}.Textarea-module_textarea{display:flex;width:100%;border-radius:var(--radius-md);border:0;font-size:var(--text-sm);line-height:var(--text-sm--line-height);background-color:rgba(0,0,0,0);padding:var(--spacing-2);scrollbar-width:none;resize:none}.Textarea-module_textarea::placeholder{color:var(--color-muted-foreground);font-weight:var(--font-weight-medium)}.Textarea-module_textarea:focus,.Textarea-module_textarea:focus-visible{outline:none;border:0;box-shadow:none}.Textarea-module_textarea:disabled{cursor:not-allowed;opacity:.5}.ChatInput-module_container{display:flex;align-items:end;gap:var(--spacing)}.ChatInput-module_container textarea{color:var(--color-foreground)}.ChatInput-module_textareaContainer{position:relative;flex:1;width:100%}.ChatInput-module_actions{display:flex;flex-direction:row;padding-left:var(--spacing);padding-right:var(--spacing);height:var(--spacing-10);gap:var(--spacing);align-items:center}.ChatInput-module_containerStacked{flex-direction:column;padding:var(--spacing-2);gap:var(--spacing)}.ChatInput-module_containerStacked .ChatInput-module_actions{width:100%;justify-content:space-between;padding-left:0;padding-right:0}.ChatInput-module_containerStacked .ChatInput-module_actions .ChatInput-module_button{min-width:var(--spacing-8);min-height:var(--spacing-8)}.ChatInput-module_button{border-radius:var(--radius-full)}.AnimatedPlaceholder-module_container{color:var(--color-muted-foreground);font-weight:var(--font-weight-medium);padding-left:var(--spacing-2);padding-right:var(--spacing-2);padding-top:var(--spacing-2);pointer-events:none;position:absolute;z-index:1}.SuggestionDropdown-module_container{position:relative}.SuggestionDropdown-module_labelRow{display:flex;align-items:center}.SuggestionDropdown-module_chevron{margin-left:var(--spacing-0\.5);transition:transform .15s ease;flex-shrink:0}.SuggestionDropdown-module_chevronOpen{transform:rotate(180deg)}.SuggestionDropdown-module_dropdown{display:flex;flex-direction:column;background-color:var(--color-background);border-radius:var(--radius-sm);padding:var(--spacing-2);z-index:1000;box-shadow:var(--shadow-lg)}.agenttic.dark .SuggestionDropdown-module_dropdown{border:1px solid var(--color-muted)}.SuggestionDropdown-module_option{display:flex;align-items:center;width:100%;padding:var(--spacing-2);background:none;border:none;border-radius:var(--radius-sm);color:var(--color-foreground);font-size:var(--text-sm);font-weight:var(--font-weight-medium);font-family:inherit;cursor:pointer;text-align:start;white-space:nowrap}.SuggestionDropdown-module_option:hover{background-color:color-mix(in srgb,var(--color-background) 50%,var(--color-muted))}.SuggestionDropdown-module_option:focus{outline:none}.SuggestionDropdown-module_option:focus-visible{outline:2px solid var(--color-primary);outline-offset:-2px}.Suggestions-module_container{position:absolute;top:0;left:0;right:0;display:flex;flex-wrap:nowrap;gap:var(--spacing-2);padding:var(--spacing-2) var(--spacing-1\.5);overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none}.Suggestions-module_container::-webkit-scrollbar{display:none}.Suggestions-module_vertical{position:static;flex-direction:column;overflow:visible;gap:0;padding:0}.Suggestions-module_vertical .Suggestions-module_button{width:100%;height:unset;justify-content:start;font-size:var(--text-xs);line-height:20px;padding:14px 16px;border:1px solid var(--color-muted);border-radius:0;box-shadow:none}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description{display:flex;flex-direction:column}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description .Suggestions-module_label{font-weight:var(--font-weight-semibold)}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description .Suggestions-module_description{color:var(--color-muted-foreground)}.Suggestions-module_vertical .Suggestions-module_button:hover{box-shadow:none;background-color:color-mix(in srgb,var(--color-background) 50%,var(--color-muted))}.Suggestions-module_vertical .Suggestions-module_button:focus-visible{outline-offset:-3px}.Suggestions-module_vertical>div+div .Suggestions-module_button{margin-top:-1px}.Suggestions-module_vertical>div:only-of-type .Suggestions-module_button{border-radius:8px}.Suggestions-module_vertical>div:first-of-type:not(:only-of-type) .Suggestions-module_button{border-radius:8px 8px 0 0}.Suggestions-module_vertical>div:last-of-type:not(:only-of-type) .Suggestions-module_button{border-radius:0 0 8px 8px}.Suggestions-module_floating{flex-direction:column;gap:var(--spacing-1);overflow:visible;padding:1px;padding-bottom:var(--spacing-1);z-index:-1}.MinimizedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:100%;justify-content:flex-start;gap:var(--spacing-2);padding:0 var(--spacing-2)}.MinimizedView-module_button svg:not(.MinimizedView-module_chevron),.MinimizedView-module_button:hover:not(:disabled) svg:not(.MinimizedView-module_chevron){color:var(--color-primary)}.MinimizedView-module_button .MinimizedView-module_chevron,.MinimizedView-module_button:hover:not(:disabled) .MinimizedView-module_chevron{color:var(--color-muted-foreground)}.MinimizedView-module_title{flex:1;min-width:0;font-size:var(--text-base);text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Chat-module_container{font-size:var(--text-sm);line-height:var(--text-sm--line-height);font-weight:400;font-family:var(--font-sans);letter-spacing:var(--text-base--tracking);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.Chat-module_container.Chat-module_embedded{height:100%}.Chat-module_container.Chat-module_floating{position:fixed;z-index:50}.Chat-module_container.Chat-module_floating .Chat-module_content{background-color:var(--color-background);color:var(--color-foreground);overflow:hidden;min-height:56px;padding:var(--spacing-2);box-shadow:var(--shadow-lg)}.Chat-module_container.Chat-module_expanded .Chat-module_content{padding:var(--spacing-3)}.Chat-module_container.Chat-module_floating [data-slot=chat-input],.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer,.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer *,.Chat-module_container.Chat-module_floating textarea,.Chat-module_container.Chat-module_floating input{cursor:auto}.ChatHeader-module_container{display:flex;align-items:center;justify-content:flex-end;gap:var(--spacing);cursor:grab}.ChatHeader-module_container:active{cursor:grabbing}.MessageActions-module_container{display:flex;align-items:center;flex-wrap:wrap;margin-top:var(--spacing-2);gap:var(--spacing-1)}.MessageActions-module_container button[aria-hidden=true]{display:none}.Message-module_message{display:flex;align-items:flex-start;padding:var(--spacing) var(--spacing-4);color:var(--color-foreground)}.Message-module_message.Message-module_user{padding:0 var(--spacing-4)}.Message-module_message.Message-module_user .Message-module_bubble{background-color:var(--color-muted);max-width:85%;padding:var(--spacing-3) var(--spacing-4);border-radius:var(--radius-xl);border-bottom-right-radius:var(--radius-sm)}.Message-module_message.Message-module_error{color:var(--color-error)}.Message-module_icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:28px;height:calc(var(--text-sm)*var(--text-sm--line-height));margin-inline-end:var(--spacing-2)}.Message-module_content{flex:1;min-width:0;text-align:start;word-break:break-word;white-space:normal}.Message-module_message.Message-module_user .Message-module_content{display:flex;justify-content:flex-end}.Message-module_bubble{max-width:100%;min-width:0;overflow-wrap:anywhere}.Message-module_bubble pre{max-width:100%;overflow-x:auto;white-space:pre-wrap}.Message-module_message *{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground)}.Message-module_message p{text-wrap-style:pretty;margin-top:0;margin-bottom:var(--spacing-3)}.Message-module_message a{color:var(--color-link)}.Message-module_message p:last-child{margin-bottom:0}.Message-module_message strong{font-weight:var(--font-weight-semibold)}.Message-module_message ol,.Message-module_message ul{margin-bottom:var(--spacing-3);padding-left:var(--spacing-6);margin-left:var(--spacing-2)}.Message-module_message ul{list-style-type:disc}.Message-module_message p+:where(ol,ul){margin-top:0}.Message-module_message li{margin-bottom:var(--spacing-2)}.Message-module_message li::marker{font-size:var(--text-sm)}.Message-module_message table{width:100%;margin:12px 0;border-collapse:collapse}.Message-module_message th,.Message-module_message td{padding:8px 12px;border:1px solid #ddd;text-align:left}.Message-module_message th{background-color:var(--color-muted);font-weight:600}.Message-module_message.Message-module_disabled{pointer-events:auto;filter:grayscale(50%)}.Message-module_message.Message-module_disabled .Message-module_content{opacity:.6}.Message-module_message.Message-module_disabled *{pointer-events:none}.Message-module_message.Message-module_disabled:hover,.Message-module_message.Message-module_disabled:hover .Message-module_content{pointer-events:auto}.Messages-module_container{display:flex;flex-direction:column;flex:1;padding-top:var(--spacing-1);padding-bottom:var(--spacing-6);gap:var(--spacing-8);overflow-y:auto;height:100%;position:relative;z-index:10}.Messages-module_bottomMessages>*:first-child{margin-top:auto}.animating .Messages-module_container::-webkit-scrollbar{display:none}.Messages-module_container [data-role=user]:has(+[data-role=user]),.Messages-module_container [data-role=agent]:has(+[data-role=agent]),.Messages-module_container [data-role=assistant]:has(+[data-role=assistant]){margin-bottom:calc(-1*var(--spacing-6))}.Thinking-module_container{display:flex;align-items:flex-start;gap:var(--spacing);padding:0 var(--spacing-2);color:var(--color-muted-foreground);font-size:var(--text-sm)}.Thinking-module_icon{display:flex;align-items:center;justify-content:center}.Thinking-module_icon svg{width:var(--spacing-6);height:var(--spacing-6)}.Thinking-module_content{background:linear-gradient(90deg,color-mix(in srgb,currentColor 30%,transparent),currentColor,color-mix(in srgb,currentColor 30%,transparent));background-size:200% 100%;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0);animation:Thinking-module_shimmer 2s infinite linear 0ms}@keyframes Thinking-module_shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.Notice-module_container{position:relative;display:flex;align-items:center;margin:calc((var(--spacing-2))*-1) calc((var(--spacing-2))*-1) 0;padding:var(--spacing-2) var(--spacing-4);gap:var(--spacing-3);background-color:var(--color-muted);border-radius:calc(var(--radius-lg)) calc(var(--radius-lg)) 0 0;color:var(--color-muted-foreground)}.Notice-module_container *{font-size:var(--text-xs);font-weight:var(--font-weight-medium);line-height:var(--text-xs--line-height)}.Notice-module_isSuccess{background-color:var(--color-success-background);color:var(--color-success)}.Notice-module_isSuccess .Notice-module_icon svg path{fill:var(--color-success)}.Notice-module_isWarning{background-color:var(--color-warning-background);color:var(--color-warning)}.Notice-module_isWarning .Notice-module_icon svg path{fill:var(--color-warning)}.Notice-module_isError{background-color:var(--color-error-background);color:var(--color-error)}.Notice-module_isError .Notice-module_icon svg path{fill:var(--color-error)}.Notice-module_content{align-items:center;display:flex;flex:1;gap:var(--spacing);min-width:0}.Notice-module_content *{margin:0}.Notice-module_actions{align-items:center;display:flex;flex-shrink:0;gap:var(--spacing)}.Notice-module_action{height:auto;font-size:var(--text-xs);font-weight:var(--font-weight-bold);color:var(--color-foreground);border:none;padding:0}.Notice-module_action:hover:not(:disabled){color:var(--color-foreground);opacity:.8}.Notice-module_action:is(:focus,:focus-visible){outline-offset:0}.Notice-module_icon{align-items:center;display:flex;flex-shrink:0;justify-content:center}.Notice-module_icon svg{display:block;height:var(--spacing-5);width:var(--spacing-5)}.Notice-module_dismissible svg{display:block;width:var(--spacing-5);height:var(--spacing-5);color:var(--color-muted-foreground)}.ChatFooter-module_container{background-color:var(--color-popover-muted);border-radius:calc(var(--radius-lg) + 1px);border:1px solid var(--color-muted);color:var(--color-foreground);display:flex;flex-direction:column;gap:var(--spacing-2);padding:var(--spacing-2);position:relative;z-index:10}.ConversationView-module_container{display:flex;flex-direction:column;height:100%;justify-content:flex-end}.ConversationView-module_container.ConversationView-module_withHeader{justify-content:space-between}.ConversationView-module_container:has([data-slot=suggestions]) [data-slot=messages]{padding-bottom:var(--spacing-12)}.AgentUIInputToolbar-module_container{position:relative}.AgentUIInputToolbar-module_button{display:flex;align-items:center;gap:var(--spacing-1);padding:calc(var(--spacing)*1.5) calc(var(--spacing)*2.5);background:var(--color-muted);color:var(--color-foreground);border-radius:calc(var(--radius) - 6px);font-size:var(--text-sm);font-family:inherit;cursor:pointer;border:none}.AgentUIInputToolbar-module_button:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.AgentUIInputToolbar-module_icon{transition:transform .15s ease}.AgentUIInputToolbar-module_iconOpen{transform:rotate(180deg)}.AgentUIInputToolbar-module_dropdown{font-size:var(--text-sm);font-family:inherit;color:var(--color-foreground);background:var(--color-popover-muted);border:1px solid var(--color-muted);border-radius:calc(var(--radius) - 4px);padding:var(--spacing-2);z-index:1000}.AgentUIInputToolbar-module_dropdown:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.ImageUploader-module_container{width:100%;padding:4px 0;align-self:flex-start;position:absolute;pointer-events:none}.ImageUploader-module_container.ImageUploader-module_active{position:relative;pointer-events:auto}.ImageUploader-module_uploader{position:relative;width:100%;transition:opacity .2s ease}.ImageUploader-module_uploader.ImageUploader-module_uploading{opacity:.9}.ImageUploader-module_content{width:100%}.ImageUploader-module_hiddenInput{display:none}.ImageUploader-module_clickArea{cursor:pointer;outline:none;width:100%}.ImageUploader-module_clickArea:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px;border-radius:4px}.ImageUploader-module_draggingMessage{padding:60px 24px;text-align:center;border:1px dashed var(--color-muted);border-radius:12px;background-color:var(--color-muted);margin-bottom:8px;position:relative;min-height:150px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px}.ImageUploader-module_draggingMessage p{margin:0;color:var(--color-muted-foreground);font-size:15px;line-height:1.6}.ImageUploader-module_uploader.ImageUploader-module_draggingOver .ImageUploader-module_draggingMessage{border-color:var(--color-primary);background-color:rgba(0,0,0,0)}.ImageUploader-module_preview{display:flex;flex-wrap:wrap;gap:16px;padding:0}.ImageUploader-module_previewItem{position:relative;display:flex;flex-direction:row;align-items:center;gap:12px;padding:8px;border-radius:8px;border:none;background-color:var(--color-muted);cursor:move;transition:transform .2s ease,box-shadow .2s ease;width:150px}.ImageUploader-module_previewItem:active{cursor:grabbing}.ImageUploader-module_removeButton{position:absolute;top:-5px;right:-8px;width:20px;height:20px;border-radius:50%;border:none;background-color:#2F2F2F;background-color:var(--color-popover-muted,#2F2F2F);color:#fff;font-size:16px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;padding:0;opacity:0;transition:opacity .2s ease,background-color .2s ease}.ImageUploader-module_removeButton svg{color:#8F8F8F;color:var(--color-muted-foreground,#8F8F8F)}.ImageUploader-module_previewItem:hover .ImageUploader-module_removeButton{opacity:1}.ImageUploader-module_removeButton:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px}.ImageUploader-module_previewImage{width:48px;height:48px;object-fit:cover;border-radius:6px;flex-shrink:0}.ImageUploader-module_previewMeta{display:flex;flex-direction:column;gap:0px;flex:1;min-width:0}.ImageUploader-module_previewMeta span.ImageUploader-module_previewFilename{font-size:14px!important;color:var(--color-foreground);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:400}.ImageUploader-module_previewMeta span.ImageUploader-module_previewType{font-size:12px!important;color:var(--color-muted-foreground);text-transform:uppercase;font-weight:400}.ImageUploader-module_uploadingIndicator{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background-color:var(--color-muted)}.ImageUploader-module_spinner{width:32px;height:32px;border:3px solid var(--color-muted);border-top-color:var(--color-primary);border-radius:50%;animation:ImageUploader-module_spin .8s linear infinite}@keyframes ImageUploader-module_spin{to{transform:rotate(360deg)}}.ImageUploader-module_invalidMessage{padding:16px;background-color:var(--color-error-background);border:1px solid var(--color-error);border-radius:8px;text-align:center}.ImageUploader-module_invalidMessage p{margin:0;color:var(--color-error);font-size:14px}.MessageDivider-module_container{display:flex;align-items:center;margin:var(--spacing-4) 0}.MessageDivider-module_line{flex:1;height:1px;background-color:var(--color-muted)}.MessageDivider-module_message{padding:0 var(--spacing-3);color:var(--color-muted-foreground);font-size:var(--text-sm)}.EmptyView-module_container{display:flex;flex-direction:column;align-items:start;justify-content:flex-start;gap:var(--spacing-6)}.EmptyView-module_container:before{content:"";flex:1 0 0}.EmptyView-module_icon{font-size:calc(3*var(--base-font-size));line-height:1;padding:0 var(--spacing-4);color:var(--color-link)}.EmptyView-module_heading,.EmptyView-module_help{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground);margin:0;padding:var(--spacing) var(--spacing-4)}.EmptyView-module_suggestionsWrapper{width:100%;position:relative}.ImageRenderer-module_container{display:grid;grid-template-columns:1fr 1fr;gap:2px;width:100%}.ImageRenderer-module_imageButton{position:relative;border:none;background:none;cursor:pointer;border-radius:calc(var(--radius-sm) + 1px);overflow:hidden;transition:var(--transition-colors);border:1px solid rgba(0,0,0,0);padding:1px}.ImageRenderer-module_imageButton:hover{border-color:var(--color-muted-foreground)}.ImageRenderer-module_imageButton.ImageRenderer-module_selected{border-color:var(--color-primary);box-shadow:0 0 0 1px var(--color-primary);border-radius:calc(var(--radius-sm) + 1px)}.ImageRenderer-module_imageButton.ImageRenderer-module_disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.ImageRenderer-module_image{width:100%;height:auto;display:block;border-radius:var(--radius-sm);object-fit:cover}.ImageRenderer-module_header{display:flex;margin-bottom:var(--spacing-1);color:var(--color-muted-foreground)}.agenttic .chart-block{--jp-gray-80:var(--color-foreground);margin:var(--spacing-1) 0;position:relative;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;z-index:1000;font-family:var(--font-sans)}.agenttic .chart-block-title{margin:0 0 var(--spacing-2) 0;font-size:var(--text-sm);font-family:inherit;font-weight:700;font-weight:var(--font-weight-bold,700);word-wrap:break-word;white-space:normal;line-height:var(--text-sm--line-height);hyphens:auto}.agenttic .chart-container{width:100%;height:auto;display:flex;flex-direction:column;align-items:stretch;z-index:1001;overflow:visible;position:relative;box-sizing:border-box}.agenttic .chart-container svg{overflow:visible!important}.agenttic .chart-error{padding:var(--spacing-4);border:1px solid var(--color-error);border-radius:var(--radius-sm);background-color:var(--color-muted);color:var(--color-error);font-size:var(--text-sm)}.agenttic .chart-error strong{display:inline-block;margin-bottom:var(--spacing-1)}.agenttic .chart-error details{margin-top:var(--spacing-2)}.agenttic .chart-error details summary{cursor:pointer;color:var(--color-muted-foreground)}.agenttic .chart-error details pre{margin-top:var(--spacing-2);padding:var(--spacing-2);background-color:var(--color-muted);border-radius:var(--radius-sm);overflow:auto;font-size:var(--text-sm)}.agenttic .chart-tooltip{line-height:1.2;font-size:11px;max-width:120px;min-width:auto;background:rgba(0,0,0,.8);color:#fff;padding:var(--spacing-2) var(--spacing-4) var(--spacing-2) var(--spacing-2);border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}.agenttic .chart-tooltip-date{font-size:10px;opacity:.8;margin-bottom:var(--spacing-1);color:rgba(255,255,255,.8);border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row:last-child{margin-bottom:0}.agenttic .chart-tooltip-label{font-weight:var(--font-weight-normal);font-size:11px;color:rgba(255,255,255,.8);margin-right:var(--spacing-2)}.agenttic .chart-tooltip-value{font-weight:var(--font-weight-semibold);font-size:11px;color:#fff;text-align:right}.agenttic .chart-block .visx-axis-bottom text{font-size:11px}.agenttic .chart-block .visx-axis-bottom text.visx-axis-tick{text-anchor:middle}.agenttic .chart-block .visx-axis-bottom.rotate-labels .visx-axis-tick text{text-anchor:end;transform:rotate(-45deg);transform-origin:right center}.agenttic .chart-block .visx-legend .visx-legend-label{font-size:11px!important;max-width:none!important}.agenttic .chart-block .visx-legend{margin-top:8px;position:relative;z-index:1002}.agenttic .chart-block .visx-legend-item{display:flex;align-items:center;margin:0 8px}.agenttic .chart-block .visx-legend-shape{width:12px;height:12px;margin-right:6px;display:inline-block;flex-shrink:0}.agenttic .chart-block .visx-legend-shape svg{width:100%;height:100%;display:block}.agenttic .chart-block .visx-legend-shape rect{width:100%;height:100%}.agenttic .chart-block .visx-legend-shape circle{r:6;cx:6;cy:6}.agenttic .chart-block .visx-legend>div{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.agenttic .chart-block .visx-legend-item>div:first-child{margin-right:6px}.agenttic .chart-block .visx-legend [class*=legend] svg{opacity:1;visibility:visible}.agenttic .chart-block .visx-legend svg *{opacity:1;visibility:visible;fill:currentColor}.agenttic div[style*="pointer-events: none"][style*="position: absolute"]{z-index:10000!important}.visx-tooltip{z-index:10000!important;max-width:150px!important;word-wrap:break-word!important;white-space:normal!important}.SourcesCard-module_card{background:var(--color-background);border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:var(--spacing-2);padding:var(--spacing-3)}.SourcesCard-module_heading{color:var(--color-muted-foreground);font-size:var(--text-sm);font-weight:var(--font-weight-semibold);line-height:var(--text-sm--line-height);margin:0;text-transform:uppercase;letter-spacing:.04em}.SourcesCard-module_list{display:flex;flex-direction:column;gap:var(--spacing-2);list-style:none;margin:0;padding:0}.SourcesCard-module_item{display:flex;flex-direction:column;gap:var(--spacing-1)}.SourcesCard-module_title{color:var(--color-foreground);font-size:var(--text-sm);font-weight:var(--font-weight-medium);line-height:var(--text-sm--line-height);text-decoration:none;word-break:break-word}a.SourcesCard-module_title:hover,a.SourcesCard-module_title:focus-visible{color:var(--color-primary);text-decoration:underline}a.SourcesCard-module_title:focus-visible{outline:2px solid var(--color-ring);outline-offset:2px}.SourcesCard-module_label{color:var(--color-muted-foreground);font-size:var(--text-xs);line-height:var(--text-xs--line-height)}.QuestionCard-module_card{background:var(--color-background);border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:var(--spacing-3);padding:var(--spacing-4)}.QuestionCard-module_question{color:var(--color-foreground);font-size:var(--text-base);font-weight:var(--font-weight-semibold);line-height:var(--text-base--line-height);margin:0}.QuestionCard-module_choices{display:grid;gap:var(--spacing-2)}.QuestionCard-module_choicesGrid{grid-template-columns:repeat(2,minmax(0,1fr))}@media(max-width: 520px){.QuestionCard-module_choicesGrid{grid-template-columns:1fr}}.QuestionCard-module_choice{align-items:stretch;background:var(--color-background);border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-md);color:var(--color-foreground);cursor:pointer;display:grid;gap:var(--spacing-2);padding:var(--spacing-3);text-align:left;transition:var(--transition-colors);width:100%}.QuestionCard-module_choice:hover:not(:disabled){border-color:var(--color-ring);box-shadow:var(--shadow-outline)}.QuestionCard-module_choice:focus-visible{outline:2px solid var(--color-ring);outline-offset:2px}.QuestionCard-module_choice:disabled{cursor:default;opacity:.66}.QuestionCard-module_answered{border-color:var(--color-primary)}.QuestionCard-module_label{font-size:var(--text-sm);font-weight:var(--font-weight-semibold);line-height:var(--text-sm--line-height)}.QuestionCard-module_description,.QuestionCard-module_layoutHint{color:var(--color-muted-foreground);font-size:var(--text-sm);line-height:var(--text-sm--line-height)}.DiffCard-module_card{background:var(--color-background);border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:var(--spacing-3);padding:var(--spacing-4)}.DiffCard-module_isResolved{opacity:.85}.DiffCard-module_title{color:var(--color-foreground);font-size:var(--text-base);font-weight:var(--font-weight-semibold);line-height:var(--text-base--line-height);margin:0}.DiffCard-module_summary{color:var(--color-muted-foreground);font-size:var(--text-sm);line-height:var(--text-sm--line-height);margin:0}.DiffCard-module_body{display:flex;flex-direction:column;gap:var(--spacing-2)}.DiffCard-module_change{display:flex;flex-direction:column;gap:var(--spacing-1)}.DiffCard-module_changeLabel{color:var(--color-muted-foreground);font-size:var(--text-xs);font-weight:var(--font-weight-medium);line-height:var(--text-xs--line-height)}.DiffCard-module_diff{background:color-mix(in srgb,var(--color-foreground) 4%,transparent);border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-md);color:var(--color-foreground);font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:var(--text-sm);line-height:var(--text-sm--line-height);margin:0;overflow-x:auto;padding:var(--spacing-3);white-space:pre-wrap;word-break:break-word}.DiffCard-module_removed{background:var(--color-error-background);border-color:color-mix(in srgb,var(--color-error) 30%,transparent)}.DiffCard-module_added{background:var(--color-success-background);border-color:color-mix(in srgb,var(--color-success) 30%,transparent)}.DiffCard-module_resolution{color:var(--color-muted-foreground);font-size:var(--text-sm);font-weight:var(--font-weight-medium);line-height:var(--text-sm--line-height);margin:0}.DiffCard-module_actions{display:flex;gap:var(--spacing-2)}.DiffCard-module_action{border:1px solid color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:var(--radius-md);cursor:pointer;font-size:var(--text-sm);font-weight:var(--font-weight-semibold);line-height:var(--text-sm--line-height);padding:var(--spacing-2) var(--spacing-4);transition:var(--transition-colors)}.DiffCard-module_action:focus-visible{outline:2px solid var(--color-ring);outline-offset:2px}.DiffCard-module_action:disabled{cursor:default;opacity:.66}.DiffCard-module_accept{background:var(--color-primary);border-color:var(--color-primary);color:var(--color-primary-foreground)}.DiffCard-module_accept:hover:not(:disabled){box-shadow:var(--shadow-outline-strong)}.DiffCard-module_reject{background:var(--color-background);color:var(--color-foreground)}.DiffCard-module_reject:hover:not(:disabled){border-color:var(--color-ring);box-shadow:var(--shadow-outline)}.card{display:block;position:relative;margin:0 auto 10px;padding:16px;box-sizing:border-box;background:var(--color-surface);box-shadow:0 0 0 1px var(--color-border-subtle);border:none}.card a:not(.components-external-link){text-decoration:none}.card p a:not(.components-external-link){text-decoration:underline}.card::after{content:".";display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}@media(min-width: 480px){.card{margin-bottom:16px;padding:24px}}.card.is-compact{margin-bottom:1px}@media(min-width: 480px){.card.is-compact{margin-bottom:1px;padding:16px 24px}}.card.is-card-link{padding-right:48px;text-decoration:none}.card.is-card-link:not(a){color:var(--color-primary);font-size:100%;line-height:1.5;text-align:left;width:100%}.card.is-card-link:not(a):active,.card.is-card-link:not(a):focus,.card.is-card-link:not(a):hover{color:var(--color-link-dark)}.card.is-clickable{cursor:pointer}.card.is-highlight{padding-left:21px}.card.is-error{border-left:3px solid var(--color-error-20)}.card.is-info{border-left:3px solid var(--color-primary-20)}.card.is-success{border-left:3px solid var(--color-success-20)}.card.is-warning{border-left:3px solid var(--color-warning-20)}.card__link-indicator{color:var(--color-text-subtle);display:block;height:100%;position:absolute;top:0;right:16px}html[dir=rtl] .card__link-indicator.gridicons-chevron-right{transform:scaleX(-1)}a.card:hover .card__link-indicator,.is-card-link.card:hover .card__link-indicator{color:var(--color-text)}a.card:focus .card__link-indicator,.is-card-link.card:focus .card__link-indicator{color:var(--color-link-dark)}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden}.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{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:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.foldable-card.card{position:relative;transition:margin .15s linear;padding:0}.foldable-card.card::after{content:".";display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}.foldable-card__header{min-height:64px;width:100%;padding:16px;box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;position:relative}.foldable-card__header.is-clickable.is-expandable{cursor:pointer}.foldable-card__header.has-border .foldable-card__summary,.foldable-card__header.has-border .foldable-card__summary-expanded{margin-right:48px}.foldable-card__header.has-border .foldable-card__expand{border-left:1px var(--color-neutral-5) solid}.foldable-card.is-compact .foldable-card__header{padding:8px 16px;min-height:40px}.foldable-card.is-expanded .foldable-card__header{margin-bottom:0;height:inherit;min-height:64px}.foldable-card.is-expanded.is-compact .foldable-card__header{min-height:40px}.foldable-card.is-disabled .foldable-card__header{opacity:.2}.foldable-card__action{position:absolute;top:0;right:0;height:100%}.foldable-card.is-expanded .foldable-card__action{height:100%}.foldable-card.is-disabled .foldable-card__action{cursor:default}.accessible-focus .foldable-card__action:focus{outline:thin dotted}button:not(:disabled).foldable-card__action{cursor:pointer}.foldable-card__main{max-width:calc(100% - 36px);display:flex;align-items:center;flex:2 1;margin-right:5px}@media(max-width: 480px){.foldable-card__main{flex:1 1}}.foldable-card__secondary{display:flex;align-items:center;flex:1 1;justify-content:flex-end}@media(max-width: 480px){.foldable-card__secondary{flex:0 1}}.foldable-card__expand{width:48px}.foldable-card__expand .gridicon{display:flex;align-items:center;width:100%;vertical-align:middle;transition:transform .15s cubic-bezier(0.175,0.885,0.32,1.275),color .2s ease-in}.foldable-card__expand:not(:disabled) .gridicon{fill:var(--studio-gray-100)}.foldable-card__expand:disabled .gridicon{fill:var(--studio-gray-20)}.foldable-card.is-expanded>.foldable-card__header .foldable-card__expand .gridicon{transform:rotate(180deg)}.foldable-card__content{display:none}.foldable-card.is-smooth .foldable-card__content{display:block;overflow:hidden;transition:max-height .25s ease;max-height:0}.foldable-card.is-expanded.is-smooth .foldable-card__content{height:auto;max-height:250px;transition:max-height .25s ease;padding:0}.foldable-card.is-expanded .foldable-card__content{display:block;padding:16px;border-top:1px solid var(--color-neutral-5)}.foldable-card.is-compact .foldable-card.is-expanded .foldable-card__content{padding:8px}.foldable-card__summary,.foldable-card__summary-expanded{margin-right:40px;color:var(--color-text-subtle);font-size:.75rem;transition:opacity .2s linear;display:inline-block}@media(max-width: 480px){.foldable-card__summary,.foldable-card__summary-expanded{display:none}}.foldable-card.has-expanded-summary .foldable-card__summary,.foldable-card.has-expanded-summary .foldable-card__summary-expanded{transition:none;flex:2;text-align:right}.foldable-card__summary{opacity:1;display:inline-block}.foldable-card.is-expanded .foldable-card__summary{display:none}.has-expanded-summary .foldable-card.is-expanded .foldable-card__summary{display:none}.foldable-card__summary-expanded{display:none}.foldable-card.is-expanded .foldable-card__summary-expanded{display:inline-block}.MessageActions-module_container:has(.agents-manager-sources-display){gap:0}.agents-manager-sources-display.card{width:100%;display:flex;flex-direction:column;background-color:rgba(0,0,0,0);box-shadow:none;margin:-32px 0 0;pointer-events:none}.agents-manager-sources-display .foldable-card__header{width:auto;height:32px;min-height:unset;flex-direction:row-reverse;justify-content:end;align-self:flex-end;gap:4px;padding:0;pointer-events:initial;border-radius:4px}.agents-manager-sources-display .foldable-card__header:has(:focus-visible){padding-left:4px;outline:2px solid var(--color-ring);outline-offset:-1px}.agents-manager-sources-display .foldable-card__content{width:100%;pointer-events:initial}.agents-manager-sources-display .foldable-card__main,.agents-manager-sources-display .foldable-card__secondary{flex:unset;margin:0}.agents-manager-sources-display .foldable-card__action{position:relative;width:16px}.agents-manager-sources-display .foldable-card__action:focus-visible{outline:none}.agents-manager-sources-display .foldable-card__action svg.gridicon{fill:var(--color-muted-foreground)}.agents-manager-sources-display .foldable-card__summary,.agents-manager-sources-display .foldable-card__summary-expanded{color:var(--color-muted-foreground);margin:0}.agents-manager-sources-display.is-expanded{width:100%}.agents-manager-sources-display.is-expanded .foldable-card__header{height:32px;min-height:unset}.agents-manager-sources-display.is-expanded .foldable-card__content{border:none}.agents-manager-sources-display .agents-manager-sources-display__list{padding-top:8px}.agents-manager-sources-display .agents-manager-sources-display__link{width:100%;min-width:0;display:flex;align-items:center;gap:8px;padding:4px;border:1px solid var(--color-muted)}.agents-manager-sources-display .agents-manager-sources-display__link+.agents-manager-sources-display__link{margin-top:-1px}.agents-manager-sources-display .agents-manager-sources-display__link:first-of-type:not(:only-of-type){border-radius:8px 8px 0 0}.agents-manager-sources-display .agents-manager-sources-display__link:last-of-type:not(:only-of-type){border-radius:0 0 8px 8px}.agents-manager-sources-display .agents-manager-sources-display__link:hover{background-color:color-mix(in srgb,var(--color-background) 50%,var(--color-muted))}.agents-manager-sources-display .agents-manager-sources-display__link:focus{box-shadow:none}.agents-manager-sources-display .agents-manager-sources-display__link:focus-visible{outline:2px solid var(--color-ring);outline-offset:-3px}.agents-manager-sources-display .agents-manager-sources-display__link span{flex:1;font-size:var(--text-xs);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.agents-manager-sources-display .agents-manager-sources-display__link svg path{fill:var(--color-muted-foreground)}.agents-manager-zoom-action-button svg path{stroke:var(--color-muted-foreground)}.agents-manager-zoom-action-button:hover:not(:disabled) svg path{stroke:var(--color-foreground)}.agents-manager-zoom-action-button:focus:not(:focus-visible){box-shadow:none!important}.agents-manager-zoom-action-button.is-pressed{background-color:var(--color-muted)!important}.KbFrMkaedIusvO1IEnTA{box-sizing:border-box;background-color:color-mix(in srgb,#fff 90%,var(--base-color));color:color-mix(in srgb,#000 50%,var(--base-color));padding:0 8px;min-height:24px;max-width:100%;border-radius:2px;font-size:12px;font-weight:400;line-height:20px;display:inline-flex;align-items:center;gap:2px}.KbFrMkaedIusvO1IEnTA *,.KbFrMkaedIusvO1IEnTA *::before,.KbFrMkaedIusvO1IEnTA *::after{box-sizing:inherit}.KbFrMkaedIusvO1IEnTA:where(.Zp6wZO_YaqZ1D_KFItG1){background-color:#f0f0f0;background-color:var(--wp-components-color-gray-100,#f0f0f0);color:#2f2f2f;color:var(--wp-components-color-gray-800,#2f2f2f)}@media screen{:root[data-theme=dark] .KbFrMkaedIusvO1IEnTA:where(.Zp6wZO_YaqZ1D_KFItG1){background-color:#e0e0e0;background-color:var(--wp-components-color-gray-200,#e0e0e0);box-shadow:inset 0 0 0 1px #ddd;box-shadow:inset 0 0 0 1px var(--wp-components-color-gray-300,#ddd)}}@media screen and (prefers-color-scheme: dark){:root[data-theme=system] .KbFrMkaedIusvO1IEnTA:where(.Zp6wZO_YaqZ1D_KFItG1){background-color:#e0e0e0;background-color:var(--wp-components-color-gray-200,#e0e0e0);box-shadow:inset 0 0 0 1px #ddd;box-shadow:inset 0 0 0 1px var(--wp-components-color-gray-300,#ddd)}}.KbFrMkaedIusvO1IEnTA.OajxvlxhTfZvXBkU_XlB{padding-inline-start:4px}.KbFrMkaedIusvO1IEnTA.eXZcnSX89uJig3R0Bnxt{--base-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}@media screen{:root[data-theme=dark] .KbFrMkaedIusvO1IEnTA.eXZcnSX89uJig3R0Bnxt{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}@media screen and (prefers-color-scheme: dark){:root[data-theme=system] .KbFrMkaedIusvO1IEnTA.eXZcnSX89uJig3R0Bnxt{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}.KbFrMkaedIusvO1IEnTA.QIY8K4Nn4HogHjMbHGVa{--base-color:#f0b849}@media screen{:root[data-theme=dark] .KbFrMkaedIusvO1IEnTA.QIY8K4Nn4HogHjMbHGVa{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}@media screen and (prefers-color-scheme: dark){:root[data-theme=system] .KbFrMkaedIusvO1IEnTA.QIY8K4Nn4HogHjMbHGVa{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}.KbFrMkaedIusvO1IEnTA.rvPT8r0tPnBZ_vI9nNfJ{--base-color:#cc1818}@media screen{:root[data-theme=dark] .KbFrMkaedIusvO1IEnTA.rvPT8r0tPnBZ_vI9nNfJ{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}@media screen and (prefers-color-scheme: dark){:root[data-theme=system] .KbFrMkaedIusvO1IEnTA.rvPT8r0tPnBZ_vI9nNfJ{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}.KbFrMkaedIusvO1IEnTA.uqJx81qdCTrJkVSGn26P{--base-color:#4ab866}@media screen{:root[data-theme=dark] .KbFrMkaedIusvO1IEnTA.uqJx81qdCTrJkVSGn26P{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}@media screen and (prefers-color-scheme: dark){:root[data-theme=system] .KbFrMkaedIusvO1IEnTA.uqJx81qdCTrJkVSGn26P{background-color:color-mix(in srgb,#fff 90%,var(--base-color));background-color:color-mix(in srgb,var(--wp-components-color-background,#fff) 90%,var(--base-color));color:color-mix(in srgb,#1e1e1e 50%,var(--base-color));color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e) 50%,var(--base-color))}}.r9W1nPw3NlXoJwSOQt_K{flex-shrink:0}.g5MCK4IXrCKkh_TeTPZ5{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.summary-button.components-button{padding:24px;display:block;height:auto;transition:none;width:100%}.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]){background:color-mix(in srgb,#fff 98%,#3858e9);background:color-mix(in srgb,#fff 98%,var(--wp-admin-theme-color,#3858e9));color:#3858e9;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]) .summary-button-title{color:#3858e9;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]) .summary-button-navigation-icon,.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]) .summary-button-decoration svg{fill:#3858e9;fill:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]).has-density-low:not(:focus-visible){border:1px solid color-mix(in srgb,#3858e9 12%,transparent);border:1px solid color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 12%,transparent)}.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]).has-density-medium:not(:focus-visible,:last-child),.summary-button.components-button:hover:not(:disabled,[aria-disabled=true]).has-density-medium-low:not(:focus-visible,:last-child){border-bottom:1px solid color-mix(in srgb,#3858e9 12%,transparent);border-bottom:1px solid color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 12%,transparent)}.summary-button.components-button[aria-disabled=true]{opacity:.6;cursor:default}.summary-button.components-button .summary-button-title{font-family:-apple-system,"system-ui","Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:400;font-size:15px;line-height:24px}.summary-button.components-button .summary-button-strapline{font-family:-apple-system,"system-ui","Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:499;font-size:11px;line-height:16px}.summary-button.components-button .summary-button-navigation-icon,.summary-button.components-button .summary-button-decoration svg{fill:#757575;flex-shrink:0}.summary-button.components-button .summary-button-decoration{display:inline-flex}.summary-button.components-button .summary-button-decoration img{width:24px;height:24px;flex-shrink:0}.summary-button.components-button.has-density-low{border-radius:7px;border:1px solid #e0e0e0;background-color:#fff}.summary-button.components-button.has-density-medium,.summary-button.components-button.has-density-medium-low{padding:16px 24px;border-bottom:1px solid #f0f0f0;border-radius:0}.summary-button.components-button.has-density-medium .summary-button-title,.summary-button.components-button.has-density-medium-low .summary-button-title{font-family:-apple-system,"system-ui","Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:400;font-size:13px;line-height:20px;line-height:24px}.summary-button.components-button:focus-visible{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid rgba(0,0,0,0)}.agents-manager__escalation-button.summary-button.components-button{text-align:start;background-color:var(--color-background);border-color:var(--color-muted)}.agents-manager__escalation-button.summary-button.components-button:hover:not(:disabled){border-color:var(--color-muted);background-color:color-mix(in srgb,var(--color-foreground) 8%,transparent)}.agents-manager__escalation-button.summary-button.components-button .summary-button-title{color:var(--color-foreground)}.agents-manager__escalation-button.summary-button.components-button .agents-manager__escalation-button-time{color:inherit}.agents-manager-chat-header{width:100%;display:flex;align-items:center;justify-content:end;gap:4px;padding-bottom:4px}.agents-manager-chat-header .agents-manager-chat-header__back-btn{padding:0}.agents-manager-chat-header .agents-manager-chat-header__back-btn,.agents-manager-chat-header .agents-manager-chat-header__back-btn:hover:not(:disabled){color:var(--color-foreground)}.agents-manager-chat-header:has(.agents-manager-chat-header__title){justify-content:space-between}.agents-manager-chat-header__title{font-size:14px;font-weight:600;color:var(--color-foreground);flex-grow:1;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.agents-manager-chat-header__actions{display:flex;gap:8px;align-items:center;padding-block:2px}.agents-manager-chat-header__more-options.components-button svg,.agents-manager-chat-header__more-options .components-button:not(.components-dropdown-menu__menu-item) svg,.agents-manager-chat-header__history-btn.components-button svg,.agents-manager-chat-header__history-btn .components-button:not(.components-dropdown-menu__menu-item) svg,.agents-manager-chat-header__close-btn.components-button svg,.agents-manager-chat-header__close-btn .components-button:not(.components-dropdown-menu__menu-item) svg{fill:var(--color-foreground)}.agents-manager-chat-header__close-btn svg{width:20px;height:20px}@keyframes skeleton-pulse{0%,100%{opacity:1}50%{opacity:.4}}.agents-manager-chat-message-skeleton{display:flex;flex-direction:column;gap:24px;padding:16px 12px;width:100%;height:100%;justify-content:flex-end;min-height:0;overflow:hidden}.agents-manager-chat-message-skeleton__message{display:flex;width:100%}.agents-manager-chat-message-skeleton__message--user{justify-content:flex-end;padding-right:4px}.agents-manager-chat-message-skeleton__message--assistant{justify-content:flex-start}.agents-manager-chat-message-skeleton__bubble{display:flex;flex-direction:column;gap:8px;padding:12px 16px;border-radius:24px 24px 8px 24px;background-color:var(--color-muted);width:85%}.agents-manager-chat-message-skeleton__bubble .agents-manager-chat-message-skeleton__line{background-color:color-mix(in srgb,var(--color-foreground) 20%,transparent)}.agents-manager-chat-message-skeleton__text{display:flex;flex-direction:column;gap:8px;width:70%}.agents-manager-chat-message-skeleton__line{height:14px;background-color:color-mix(in srgb,var(--color-foreground) 10%,transparent);border-radius:4px;animation:skeleton-pulse 1.5s ease-in-out infinite}.agents-manager-chat-message-skeleton__line--long{width:100%}.agents-manager-chat-message-skeleton__line--medium{width:75%;animation-delay:.1s}.agents-manager-chat-message-skeleton__line--short{width:50%;animation-delay:.2s}.agents-manager-context-cards{margin:12px 16px 4px}.agents-manager-context-card-wrapper{display:grid;grid-template-rows:1fr;margin-bottom:12px;transition:grid-template-rows 220ms cubic-bezier(0.4,0,0.2,1),margin-bottom 220ms cubic-bezier(0.4,0,0.2,1),opacity 180ms ease-out}.agents-manager-context-card-wrapper>*{min-height:0;overflow:hidden}.agents-manager-context-card-wrapper--leaving{grid-template-rows:0fr;margin-bottom:0;opacity:0;pointer-events:none}.agents-manager-context-card-wrapper:last-child{margin-bottom:0}.agents-manager-context-card{background:#fff;border:1px solid rgba(30,30,30,.12);border-radius:16px;box-shadow:0 10px 28px rgba(30,30,30,.08);color:#1e1e1e;padding:14px;position:relative}.agents-manager-context-card__body{isolation:isolate}.agents-manager-context-card__dismiss.components-button{color:#5f5a52;height:auto;padding:2px 6px;position:absolute;right:8px;top:8px;z-index:1}.agents-manager-context-card__actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.agenttic.dark .agents-manager-context-card{background:#1f1d1a;border-color:rgba(255,255,255,.14);box-shadow:0 14px 36px rgba(0,0,0,.35);color:#e8e6e1}.agents-manager-feedback-input{margin-left:12px;margin-right:12px;margin-bottom:24px}.agents-manager-feedback-input__inner{margin-top:12px;padding:12px;background:var(--color-background);border:1px solid var(--color-muted);border-radius:4px}.agents-manager-feedback-input__inner .components-textarea-control{margin-bottom:12px}.agents-manager-feedback-input__inner .components-base-control__label{font-size:13px;text-transform:none;color:var(--color-muted-foreground)}.agents-manager-feedback-input__inner .components-textarea-control__input{width:100%;resize:vertical;background:var(--color-popover-muted);border-color:var(--color-muted);color:var(--color-foreground)}.agents-manager-feedback-input__inner .components-textarea-control__input::placeholder{color:var(--color-muted-foreground)}.agents-manager-feedback-input__success{padding:12px;background:var(--color-success-background);color:var(--color-success);border-radius:4px;text-align:center;font-size:14px}.agents-manager-feedback-input__error{padding:12px;background:var(--color-error-background);color:var(--color-error);border-radius:4px;text-align:center;font-size:14px}.agents-manager-feedback-input__actions{display:flex;gap:8px;justify-content:flex-end;padding:2px}.agents-manager-feedback-input__actions .components-button{display:flex;align-items:center;gap:4px}.agents-manager-feedback-input__actions .components-button.is-tertiary{color:var(--color-muted-foreground)}.agents-manager-feedback-input__actions .components-button.is-tertiary:hover{color:var(--color-foreground)}.agents-manager-feedback-input__actions .components-button.is-primary{background:var(--color-primary);color:var(--color-primary-foreground)}.agents-manager-feedback-input__actions .components-button.is-primary:disabled{background:var(--color-muted);color:var(--color-muted-foreground)}.agents-manager-feedback-input__actions .agents-manager-feedback-input__spinner{margin-top:0}.agents-manager-selected-block{max-width:150px;display:flex;align-items:center;align-self:start;gap:4px;border:1px solid var(--color-muted);border-radius:8px;padding:4px;margin-top:4px;margin-left:4px;color:var(--color-foreground)}.agents-manager-selected-block .block-editor-block-icon{flex-shrink:0;width:20px;height:20px}.agents-manager-selected-block .block-editor-block-icon svg{width:100%;height:100%;fill:currentColor}.agents-manager-selected-block__name{font-size:11px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.agents-manager-selected-block__divider{height:16px;border:none;border-left:1px solid var(--color-muted);margin:0}.agents-manager-selected-block__remove.components-button{min-width:unset;height:auto;color:var(--color-foreground);padding:0}.agents-manager-selected-block__remove.components-button:hover{color:currentColor}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agents-manager-selected-block{margin-top:8px}@keyframes agents-manager-delay-visibility{from,99%{visibility:hidden}to{visibility:visible}}body.wp-admin.agents-manager-sidebar-container--closing #wp-admin-bar-my-account{pointer-events:none}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open){background-color:#1e1e1e}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpcontent{margin-left:176px!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpbody{left:176px;width:calc(100% - 160px - 16px - 350px)!important;width:calc(100% - 160px - 16px - var(--am-sidebar-width, 350px))!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpnt-notes-panel2{right:350px!important;right:var(--am-sidebar-width,350px)!important;top:49px!important;bottom:16px!important;border-bottom-right-radius:8px!important;border:1px solid #545454;border-top:none;border-left:none}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpadminbar{position:fixed!important;top:16px;left:16px;right:350px;right:var(--am-sidebar-width,350px);width:auto!important;border-radius:8px 8px 0 0;border:1px solid #545454;border-bottom:none;box-sizing:border-box;height:calc(32px + 1px)}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #adminmenuback,body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #adminmenuwrap{position:fixed!important;top:48px;left:16px;height:calc(100vh - 32px - 32px)!important;border-left:1px solid #545454;border-bottom:1px solid #545454;border-bottom-left-radius:8px}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpcontent{margin-right:350px!important;margin-right:var(--am-sidebar-width,350px)!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpbody{position:fixed!important;top:48px;right:350px;right:var(--am-sidebar-width,350px);padding-left:16px;bottom:15px;border-bottom-right-radius:8px;border-right:1px solid #545454;border-bottom:1px solid #545454;overflow-y:auto;overflow-x:hidden;background-color:#f1f1f1;box-sizing:border-box}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #wpfooter{margin-right:calc(350px + 1px)!important;margin-right:calc(var(--am-sidebar-width, 350px) + 1px)!important;left:14px;bottom:16px;border-bottom-right-radius:8px;background-color:#f1f1f1}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) .agents-manager-sidebar-fab{display:none}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).is-nav-unification #wpcontent{margin-left:288px!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).is-nav-unification #wpbody{left:288px;width:calc(100% - 272px - 16px - 350px)!important;width:calc(100% - 272px - 16px - var(--am-sidebar-width, 350px))!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).folded #wpcontent{margin-left:53px!important}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).folded #wpbody{left:53px;width:calc(100% - 37px - 16px - 350px)!important;width:calc(100% - 37px - 16px - var(--am-sidebar-width, 350px))!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open #wpbody{padding-left:0!important;margin-top:60px!important;height:calc(100vh - 32px - 92px)!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open #wpcontent{min-height:calc(100vh - 48px)!important;border-radius:0 8px 8px 0!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open .woocommerce-layout__header{margin-top:17px;width:calc(100% - 160px - 350px - 16px - 1px)!important;width:calc(100% - 160px - var(--am-sidebar-width, 350px) - 16px - 1px)!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open.is-nav-unification .woocommerce-layout__header{width:calc(100% - 272px - 350px - 16px - 1px)!important;width:calc(100% - 272px - var(--am-sidebar-width, 350px) - 16px - 1px)!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open.folded .woocommerce-layout__header{width:calc(100% - 37px - 350px - 16px - 1px)!important;width:calc(100% - 37px - var(--am-sidebar-width, 350px) - 16px - 1px)!important}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open .woocommerce-layout__activity-panel-wrapper{opacity:0}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open .woocommerce-layout__activity-panel-wrapper.is-open{opacity:1}body.wp-admin.woocommerce-admin-page.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{z-index:999990!important}body.wp-admin.woocommerce_page_wc-settings.agents-manager-sidebar-container--sidebar-open #wpbody{background-color:#fff;margin-top:88px!important;height:calc(100vh - 32px - 120px)!important;border-right:none!important}body.wp-admin.woocommerce_page_wc-settings.agents-manager-sidebar-container--sidebar-open #wpfooter{background-color:#fff}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open):is([class*=jetpack_page_],[class*=plugins_page_wpcom-],.toplevel_page_jetpack,.tools_page_advertising) #wpwrap{background-color:inherit;position:inherit}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open):is([class*=jetpack_page_],[class*=plugins_page_wpcom-],.toplevel_page_jetpack,.tools_page_advertising) #wpbody{padding-left:0}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open):is([class*=jetpack_page_],[class*=plugins_page_wpcom-],.toplevel_page_jetpack,.tools_page_advertising) #wpbody-content{position:absolute;inset:0;display:flex;flex-direction:column;overflow:hidden;border-radius:0 0 8px 8px}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).plugins_page_wpcom-install-plugin #wpwrap #wpcontent{min-height:inherit}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #jetpack-social-root>div:first-of-type{margin-left:0}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open) #jetpack-social-root>div>div:nth-child(2)>div>div:nth-child(2)>div:nth-child(2)>div{grid-column-end:span 7}body.wp-admin.agents-manager-sidebar-container--sidebar-open:not(.modal-open).jetpack_page_jetpack-social #wpbody{z-index:9990}body.agents-manager-sidebar-container--sidebar-open.modal-open:not(.wp-admin){overflow:hidden}body.agents-manager-sidebar-container--sidebar-open.modal-open:not(.wp-admin) .is-section-subscribers #secondary{position:fixed!important;bottom:16px!important;top:48px!important}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin),body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin) .agents-manager-chat{background-color:#1e1e1e!important}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin) #wpcom #content{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin) #content{min-height:100vh;background-color:#fcfcfc!important;background-color:var(--color-main-background,#fcfcfc)!important}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #wpcom #content{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #wpnc-panel{right:350px!important;right:var(--am-sidebar-width,350px)!important;top:49px!important;bottom:16px!important;border-bottom-right-radius:8px!important;border:1px solid #545454;border-top:none;border-left:none}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header{top:16px;left:16px;right:350px;right:var(--am-sidebar-width,350px);width:auto;border-radius:8px 8px 0 0;border:1px solid #545454;border-bottom:none;box-sizing:border-box;height:calc(32px + 1px);height:calc(var(--masterbar-height, 32px) + 1px)}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__item-wrapper .masterbar__item-my-sites{border-top-left-radius:8px}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__section.masterbar__section--left{overflow:hidden}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__item.masterbar__item-my-sites.is-active.has-global-border{border-top-left-radius:8px}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__item.masterbar__item-howdy{border-top-right-radius:8px}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__item:hover,body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #header .masterbar__item.is-active{cursor:pointer}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open .is-global-sidebar-visible .masterbar__item.has-global-border::after{display:none}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #content{top:16px;left:16px;height:calc(100vh - 32px);min-height:unset;margin:0!important;overflow:auto!important;border:1px solid #545454}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open #secondary{top:48px;left:16px;bottom:16px;overflow:hidden;border-radius:0 0 0 8px;border:1px solid #545454;border-top:none;border-right:none}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open .domain-search--step-wrapper .domain-search--initial-state__already-own-domain-cta{position:absolute}body:is([class*=is-group-],[class*=is-section-]).agents-manager-sidebar-container:not(.wp-admin).agents-manager-sidebar-container--sidebar-open .is-section-plans{background-color:inherit}body.is-section-dashboard-dotcom.agents-manager-sidebar-container,body.is-section-dashboard-dotcom.agents-manager-sidebar-container .agents-manager-chat{background-color:#1e1e1e!important}body.is-section-dashboard-dotcom.agents-manager-sidebar-container #wpcom .dashboard-root__layout{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body.is-section-dashboard-dotcom.agents-manager-sidebar-container .dashboard-root__layout{position:relative;min-height:100vh;background-color:#fcfcfc!important;background-color:var(--dashboard__background-color,#fcfcfc)!important;margin:0!important}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open #wpcom .dashboard-root__layout{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open #wpcom-omnibar{top:16px;inset-inline:16px calc(350px + 16px);inset-inline:16px calc(var(--am-sidebar-width, 350px) + 16px)}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .dashboard-responsive-sidebar__sidebar{inset-inline-start:16px}body.is-section-dashboard-dotcom.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .dashboard-root__layout{height:calc(100vh - 32px);min-height:unset;top:16px;left:16px;overflow:auto!important}body.is-section-stepper.agents-manager-sidebar-container,body.is-section-stepper.agents-manager-sidebar-container .agents-manager-chat{background-color:#1e1e1e!important}body.is-section-stepper.agents-manager-sidebar-container #wpcom .step-route{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body.is-section-stepper.agents-manager-sidebar-container .step-route{min-height:100vh;background-color:var(--color-main-background)!important;overflow:hidden}body.is-section-stepper.agents-manager-sidebar-container .domain-transfer{max-width:unset}body.is-section-stepper.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open #wpcom .step-route{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body.is-section-stepper.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.is-section-stepper.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body.is-section-stepper.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .step-route{position:relative;height:calc(100vh - 32px);min-height:unset;top:16px;left:16px;overflow:auto!important;margin:0!important}body.is-section-stepper.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .step-route .step-container-v2{height:100%;min-height:unset}.agents-manager-sidebar-container--sidebar-open .layout__secondary~.layout__primary .plugins-browser--site-view .search-categories.fixed-top{top:49px;right:calc(350px + 1px);right:calc(var(--am-sidebar-width, 350px) + 1px);left:calc(272px + 17px);left:calc(var(--sidebar-width-max, 272px) + 17px)}.agents-manager-sidebar-container--sidebar-open .layout__secondary~.layout__primary .plugins-browser--site-view .search-categories.fixed-top::after{width:calc(100vw - 272px - 350px - 18px);width:calc(100vw - var(--sidebar-width-max, 272px) - var(--am-sidebar-width, 350px) - 18px)}.agents-manager-sidebar-container--sidebar-open .layout__secondary~.layout__primary .themes__content .themes__controls.is-sticky:not(.is-global-sidebar-visible){top:49px;left:calc(272px + 17px);left:calc(var(--sidebar-width-max, 272px) + 17px);width:calc(100vw - 272px - 350px - 18px);width:calc(100vw - var(--sidebar-width-max, 272px) - var(--am-sidebar-width, 350px) - 18px)}body.next-admin.agents-manager-sidebar-container,body.next-admin.agents-manager-sidebar-container .agents-manager-chat{background-color:#1e1e1e!important}body.next-admin.agents-manager-sidebar-container .next-admin-layout__canvas.is-full-canvas{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body.next-admin.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .next-admin-layout__canvas.is-full-canvas{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body.next-admin.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.next-admin.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body.next-admin.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions{margin:16px 0;right:350px;right:var(--am-sidebar-width,350px);overflow:hidden;border-radius:0 8px 8px 0}body.next-admin.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel{right:350px;right:var(--am-sidebar-width,350px);margin-bottom:16px;border-bottom-right-radius:8px}body.site-editor-php.agents-manager-sidebar-container,body.site-editor-php.agents-manager-sidebar-container .agents-manager-chat{background-color:#1e1e1e!important}body.site-editor-php.agents-manager-sidebar-container .edit-site-layout__canvas{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body.site-editor-php.agents-manager-sidebar-container:not(.agents-manager-sidebar-container--sidebar-open) .edit-site-layout__canvas{transition-delay:.1s}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .edit-site-layout__canvas{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions{margin:16px 0;right:350px;right:var(--am-sidebar-width,350px);overflow:hidden;border-radius:0 8px 8px 0}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel{right:350px;right:var(--am-sidebar-width,350px);margin-bottom:16px;border-bottom-right-radius:8px}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open.has-admin-bar-in-editor .edit-site-layout__canvas{border-top-left-radius:0;border-top-right-radius:0}body.site-editor-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .edit-site-layout:not(.is-full-canvas) .edit-site-layout__canvas{width:calc(100% - 350px)!important;width:calc(100% - var(--am-sidebar-width, 350px))!important;margin:0!important}body.post-php.agents-manager-sidebar-container,body.post-php.agents-manager-sidebar-container .agents-manager-chat,body.post-new-php.agents-manager-sidebar-container,body.post-new-php.agents-manager-sidebar-container .agents-manager-chat{background-color:#1e1e1e!important}body.post-php.agents-manager-sidebar-container .edit-post-layout,body.post-new-php.agents-manager-sidebar-container .edit-post-layout{will-change:width,margin,border-radius;transition:width .2s cubic-bezier(0.4,0,0.2,1),margin .2s cubic-bezier(0.4,0,0.2,1),border-radius .2s cubic-bezier(0.4,0,0.2,1)}body.post-php.agents-manager-sidebar-container .edit-post-layout,body.post-new-php.agents-manager-sidebar-container .edit-post-layout{width:100%}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .edit-post-layout,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .edit-post-layout{width:calc(100% - 350px - 16px)!important;width:calc(100% - var(--am-sidebar-width, 350px) - 16px)!important;margin:16px;border-radius:8px;overflow:hidden}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-chat--docked{visibility:visible;animation:agents-manager-delay-visibility .2s;z-index:unset}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .agents-manager-sidebar-fab{display:none}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions{margin:16px 0;right:350px;right:var(--am-sidebar-width,350px);overflow:hidden;border-radius:0 8px 8px 0}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .admin-ui-navigable-region.interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel{right:350px;right:var(--am-sidebar-width,350px);margin-bottom:16px;border-bottom-right-radius:8px}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open.has-admin-bar-in-editor .edit-post-layout,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open.has-admin-bar-in-editor .edit-post-layout{border-top-left-radius:0;border-top-right-radius:0}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open.is-split-screen .editor-header:has(>.editor-header__center),body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open.is-split-screen .editor-header:has(>.editor-header__center){grid-template:auto/60px minmax(0,max-content) minmax(0,1fr) minmax(0,max-content) 60px}body.post-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .editor-post-publish-panel,body.post-new-php.agents-manager-sidebar-container.agents-manager-sidebar-container--sidebar-open .editor-post-publish-panel{top:16px;bottom:16px;right:calc(350px + 16px);right:calc(var(--am-sidebar-width, 350px) + 16px);animation:none;transform:translateX(0)}body:not(.modal-open.wp-admin) .agents-manager-chat--docked{visibility:hidden;position:fixed;top:0;right:0;bottom:0;padding:16px;width:350px;width:var(--am-sidebar-width,350px);box-sizing:border-box;z-index:999989}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agents-manager-sidebar-fab{visibility:visible;position:fixed;bottom:16px;right:16px;width:56px;height:56px;border-radius:24px;background-color:#fcfcfc;color:#3858e8;box-shadow:0 0 0 1px rgba(0,0,0,.075),0 2px 24px rgba(0,0,0,.075)}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agents-manager-sidebar-fab svg{width:32px;height:32px}.agenttic .Messages-module_container .big-sky__completed-plan:first-child{margin-top:0}.agenttic .Messages-module_container .button-module_button:has(.agents-manager-message-action-icon){width:32px;height:32px}.agenttic .Messages-module_container .button-module_button:has(.agents-manager-message-action-icon) .agents-manager-message-action-icon{width:30px;height:30px}.agenttic .Messages-module_container .button-module_button:has(.agents-manager-message-action-icon) .agents-manager-message-action-icon path{fill:var(--color-muted-foreground)}.agenttic .Messages-module_container .button-module_button:has(.agents-manager-message-action-icon):hover:not(:disabled) .agents-manager-message-action-icon path{fill:var(--color-foreground)}.agenttic .Message-module_content{width:100%}.agenttic .Suggestions-module_vertical .Suggestions-module_button{white-space:normal;text-align:left;overflow-wrap:anywhere}.agenttic .big-sky__chat-actions{width:100%;margin-top:auto;overflow:visible;display:flex;flex-direction:column;padding:0 0 8px 16px;flex-shrink:0}.big-sky__chat-components .agenttic .big-sky__chat-actions{padding:0}.agenttic .big-sky__chat-actions__carousel{display:flex;white-space:nowrap;-webkit-user-select:none;user-select:none;overflow-x:auto;transition:transform .2s;scroll-behavior:smooth;scrollbar-width:none;gap:8px;padding-right:16px;width:100%;min-width:0}.agenttic .big-sky__chat-actions__carousel::-webkit-scrollbar{display:none}.big-sky__chat-components .agenttic .big-sky__chat-actions__carousel{padding-right:0}.agenttic .big-sky__chat-actions__carousel.draggable{cursor:grab}.agenttic .big-sky__chat-actions__carousel.active{cursor:grabbing}.agenttic .big-sky__chat-actions__carousel__item{display:inline-block;box-sizing:border-box;text-align:left}.agenttic .big-sky__chat-actions button{flex:0 0 auto;max-width:200px;border-radius:8px;display:flex;flex-direction:column;justify-content:center;text-align:left;padding:12px 14px;background-color:#f0f0f0;color:#1e1e1e;height:fit-content;border:none;cursor:pointer;transition:background-color 100ms ease-in-out}.agenttic .big-sky__chat-actions button:hover{color:#1e1e1e;background-color:#e0e0e0}.agenttic .big-sky__chat-actions button.confirmation-action,.agenttic .big-sky__chat-actions button.confirmation-action-destructive{flex:1}.agenttic .big-sky__chat-actions button.confirmation-action-destructive{background-color:#cc1818}.agenttic .big-sky__chat-actions button.confirmation-action-destructive p,.agenttic .big-sky__chat-actions button.confirmation-action-destructive span{color:#fff}.agenttic .big-sky__chat-actions button.confirmation-action-destructive:hover{color:#fff;background-color:#cc1818;filter:brightness(90%)}.agenttic .big-sky__chat-actions button:last-child{margin-right:0}.agenttic .big-sky__chat-actions button:focus{box-shadow:none!important}.agenttic .big-sky__chat-actions button span,.agenttic .big-sky__chat-actions button p{white-space:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2;text-align:left;width:100%;max-width:100%}.agenttic .big-sky__chat-actions button span{font-size:14px}.agenttic .big-sky__chat-actions button p{font-size:13px;color:#757575;margin:0}.agenttic .big-sky__chat-actions::before:not(.has-confirmation-actions),.agenttic .big-sky__chat-actions::after:not(.has-confirmation-actions){backdrop-filter:blur(8px);content:"";height:100%;left:0;-webkit-mask:linear-gradient(to left,rgba(255,255,255,0.1),rgb(255,255,255));mask:linear-gradient(to left,rgba(255,255,255,0.1),rgb(255,255,255));position:fixed;top:0;width:20px;will-change:backdrop-filter;z-index:1}.agenttic .big-sky__chat-actions::after{-webkit-mask:linear-gradient(to right,rgba(255,255,255,0.1),rgb(255,255,255));mask:linear-gradient(to right,rgba(255,255,255,0.1),rgb(255,255,255));left:auto;right:0}.agenttic .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item.is-active .edit-site-global-styles-variations_item-preview,.agenttic .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item:focus-visible .edit-site-global-styles-variations_item-preview{outline:#3858e9 solid 2px!important;outline:var(--wp-admin-theme-color,#3858e9) solid 2px!important}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__dock__menu__variation-picker{min-height:unset}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item:not(.is-active):hover .edit-site-global-styles-variations_item-preview{outline-color:#949494}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview{outline:1px solid #545454;overflow:hidden}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__arrows{bottom:-40px}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__arrows .components-button{color:#757575}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__arrows .components-button:not(:disabled):hover{color:#f0f0f0}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__arrows .components-button:disabled{opacity:.5}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__arrows .components-button.is-pressed{color:#f0f0f0;background-color:#484848}body:not(.modal-open.wp-admin) .agents-manager-chat--docked .agenttic .Message-module_message .big-sky__item-picker__pager{color:#ccc}.agents-manager-chat--undocked.is-focused .agenttic.Chat-module_container.Chat-module_floating{z-index:999995}.agents-manager-chat--undocked .agenttic.Chat-module_container.Chat-module_floating{z-index:999990}.agents-manager-chat--undocked .agenttic.Chat-module_container.Chat-module_floating .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item:not(.is-active):hover .edit-site-global-styles-variations_item-preview{outline-color:rgba(0,0,0,.5019607843)}.agents-manager-chat--undocked .agenttic.Chat-module_container.Chat-module_floating .big-sky__dock__menu__variation-picker .edit-site-global-styles-variations_item .edit-site-global-styles-variations_item-preview{outline:1px solid rgba(0,0,0,.3019607843);overflow:hidden}body.agents-manager-sidebar-container.is-split-screen{--am-sidebar-width:50vw}body.agents-manager-sidebar-container.is-split-screen [class*=EmptyView-module_heading],body.agents-manager-sidebar-container.is-split-screen [class*=EmptyView-module_help],body.agents-manager-sidebar-container.is-split-screen [class*=EmptyView-module_suggestionsWrapper]{max-width:none}body.agents-manager-sidebar-container.is-split-screen .MessageActions-module_container:has(.agents-manager-sources-display){inline-size:100%}body.agents-manager-sidebar-container.is-split-screen .agents-manager-sources-display.card{flex:0 0 100%;max-inline-size:100%}