/**
 * 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: rect(1px, 1px, 1px, 1px); 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,.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: .8;
	opacity: .8;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
	clear: both;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
	text-decoration: underline;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover {
	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: .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;
	}
}.wp-block-navigation{--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center;position:relative}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{align-items:center;background-color:inherit;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation :where(a),.wp-block-navigation :where(a:active),.wp-block-navigation :where(a:focus){text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{stroke:currentColor;display:inline-block;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;height:0;left:-1px;opacity:0;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:0;z-index:2}@media not (prefers-reduced-motion){.wp-block-navigation .has-child .wp-block-navigation__submenu-container{transition:opacity .1s linear}}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:#0000;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:initial;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid #00000026}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{background-color:inherit;display:flex;flex-direction:column;overflow:auto;padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem);z-index:100000}@media not (prefers-reduced-motion){.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards}}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible;padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{background:#0000!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open{color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:#0000;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}/*! elementor - v3.29.0 - 04-06-2025 */
.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{background:var(--e-a-bg-logo);border-radius:50%;display:inline-block;line-height:1;padding:.75em}.e-logo-wrapper i{color:var(--e-a-color-logo);font-size:1em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.elementor .elementor-background-video{max-width:none}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}.elementor-custom-embed-play{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{height:100px;width:100px;fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3))}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-left:auto;margin-right:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-bottom:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-bottom:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap;margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con:not(.e-div-block-base){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;pointer-events:none;position:absolute;right:10px;text-shadow:0 0 3px rgba(0,0,0,.3);top:50%;transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:not(.e-div-block-base) .elementor-widget-container,.elementor-element:not(.e-div-block-base):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;font-size:15px;line-height:1;padding:12px 24px;fill:#fff;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;padding:.5em;fill:#fff}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}.elementor-2470 .elementor-element.elementor-element-e01b15c{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2470 .elementor-element.elementor-element-e01b15c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2470 .elementor-element.elementor-element-026913b{width:100%;max-width:100%;z-index:0;text-align:center;}.elementor-2470 .elementor-element.elementor-element-026913b > .elementor-widget-container{margin:1px 1px 1px 1px;padding:0px 0px 0px 0px;}.elementor-2470 .elementor-element.elementor-element-026913b .elementor-widget-container{--e-transform-origin-x:center;--e-transform-origin-y:center;}.elementor-2470 .elementor-element.elementor-element-026913b:hover img{opacity:0.95;}.elementor-2470 .elementor-element.elementor-element-36da618{--display:flex;}.elementor-2470 .elementor-element.elementor-element-91fce87{--display:flex;}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-2470 .elementor-element.elementor-element-a06499e{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-2470 .elementor-element.elementor-element-a06499e .elementor-divider-separator{width:0%;}.elementor-2470 .elementor-element.elementor-element-a06499e .elementor-divider{padding-block-start:15px;padding-block-end:15px;}.elementor-widget-animated-headline .elementor-headline-dynamic-wrapper path{stroke:var( --e-global-color-accent );}.elementor-widget-animated-headline .elementor-headline-plain-text{color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-animated-headline{--dynamic-text-color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline-dynamic-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2470 .elementor-element.elementor-element-b17ef89{--iteration-count:infinite;--animation-duration:1200ms;--dynamic-text-color:#000000;}.elementor-2470 .elementor-element.elementor-element-b17ef89 .elementor-headline{text-align:center;font-family:"EB Garamond", Sans-serif;font-weight:200;font-style:normal;line-height:51px;letter-spacing:-1.4px;word-spacing:1px;}.elementor-2470 .elementor-element.elementor-element-b17ef89 .elementor-headline-dynamic-wrapper path{stroke:#000000;}.elementor-2470 .elementor-element.elementor-element-b17ef89 .elementor-headline-plain-text{color:#000000;}.elementor-2470 .elementor-element.elementor-element-b17ef89 .elementor-headline-dynamic-text{font-family:"EB Garamond", Sans-serif;font-weight:300;letter-spacing:-1.4px;}.elementor-2470 .elementor-element.elementor-element-6bad5be{--display:flex;}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2470 .elementor-element.elementor-element-c6f1cc7{color:#000000;font-family:"EB Garamond", Sans-serif;font-size:37px;font-weight:300;line-height:1px;letter-spacing:-1.9px;}.elementor-2470 .elementor-element.elementor-element-14810e8{--display:flex;--min-height:149px;--gap:4px 4px;--row-gap:4px;--column-gap:4px;border-style:solid;--border-style:solid;--padding-top:60px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2470 .elementor-element.elementor-element-86189ac{text-align:center;}.elementor-2470 .elementor-element.elementor-element-86189ac .elementor-heading-title{font-family:"Arial", Sans-serif;font-size:31px;font-weight:200;text-transform:none;font-style:normal;line-height:42px;letter-spacing:-1.4px;word-spacing:2px;-webkit-text-stroke-width:1px;stroke-width:1px;-webkit-text-stroke-color:#000;stroke:#000;color:#000000;}.elementor-widget-testimonial-carousel .elementor-testimonial__text{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-testimonial-carousel .elementor-testimonial__name{color:var( --e-global-color-text );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-testimonial-carousel .elementor-testimonial__title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-2470 .elementor-element.elementor-element-47c668b.elementor-arrows-yes .elementor-main-swiper{width:calc( 95% - 40px );}.elementor-2470 .elementor-element.elementor-element-47c668b .elementor-main-swiper{width:95%;}.elementor-2470 .elementor-element.elementor-element-47c668b .elementor-swiper-button{font-size:20px;}.elementor-2470 .elementor-element.elementor-element-1d7ba41{--display:flex;}.elementor-2470 .elementor-element.elementor-element-0ded406{columns:1;text-align:center;font-family:"EB Garamond", Sans-serif;font-size:137px;font-weight:300;font-style:normal;line-height:44px;}.elementor-2470 .elementor-element.elementor-element-da7e356{width:100%;max-width:100%;}.elementor-2470 .elementor-element.elementor-element-da7e356.elementor-element{--order:-99999 /* order start hack */;--flex-grow:0;--flex-shrink:0;}.elementor-2470 .elementor-element.elementor-element-ed4e0dc{--display:flex;}.elementor-2470 .elementor-element.elementor-element-853b416 > .elementor-widget-container{margin:-37px -37px -37px -37px;}.elementor-2470 .elementor-element.elementor-element-853b416.elementor-element{--align-self:center;}.elementor-2470 .elementor-element.elementor-element-853b416{font-family:"EB Garamond", Sans-serif;font-size:48px;font-weight:300;letter-spacing:-2.3px;}.elementor-2470 .elementor-element.elementor-element-996baba{--display:flex;}.elementor-widget-gallery .elementor-gallery-item__title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-gallery .elementor-gallery-item__description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-gallery{--galleries-title-color-normal:var( --e-global-color-primary );--galleries-title-color-hover:var( --e-global-color-secondary );--galleries-pointer-bg-color-hover:var( --e-global-color-accent );--gallery-title-color-active:var( --e-global-color-secondary );--galleries-pointer-bg-color-active:var( --e-global-color-accent );}.elementor-widget-gallery .elementor-gallery-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2470 .elementor-element.elementor-element-9c52a28 .e-gallery-item:hover .elementor-gallery-item__overlay, .elementor-2470 .elementor-element.elementor-element-9c52a28 .e-gallery-item:focus .elementor-gallery-item__overlay{background-color:rgba(0,0,0,0.5);}.elementor-2470 .elementor-element.elementor-element-9c52a28{--image-transition-duration:800ms;--overlay-transition-duration:800ms;--content-text-align:center;--content-padding:20px;--content-transition-duration:800ms;--content-transition-delay:800ms;}.elementor-2470 .elementor-element.elementor-element-50c08b2{--display:flex;}.elementor-widget-call-to-action .elementor-cta__title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-call-to-action .elementor-cta__description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-call-to-action .elementor-cta__button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-call-to-action .elementor-ribbon-inner{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-2470 .elementor-element.elementor-element-dc9a01f .elementor-cta .elementor-cta__bg, .elementor-2470 .elementor-element.elementor-element-dc9a01f .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-2470 .elementor-element.elementor-element-dc9a01f .elementor-cta__content{text-align:center;}@media(min-width:768px){.elementor-2470 .elementor-element.elementor-element-e01b15c{--width:113.721%;}.elementor-2470 .elementor-element.elementor-element-14810e8{--content-width:1100px;}}/* Start custom CSS for testimonial-carousel, class: .elementor-element-47c668b */.elementor-testimonial__name {
  margin-top: -30px;
}

.elementor-2470 .elementor-element.elementor-element-47c668b .swiper-wrapper{
  transition-timing-function: linear !important; 
}/* End custom CSS */@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}.elementor-element,.elementor-lightbox{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-element .swiper .swiper-slide figure,.elementor-lightbox .swiper .swiper-slide figure{line-height:0}.elementor-element .swiper .elementor-lightbox-content-source,.elementor-lightbox .swiper .elementor-lightbox-content-source{display:none}.elementor-element .swiper .elementor-swiper-button,.elementor-element .swiper~.elementor-swiper-button,.elementor-lightbox .swiper .elementor-swiper-button,.elementor-lightbox .swiper~.elementor-swiper-button{color:hsla(0,0%,93%,.9);cursor:pointer;display:inline-flex;font-size:25px;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.elementor-element .swiper .elementor-swiper-button svg,.elementor-element .swiper~.elementor-swiper-button svg,.elementor-lightbox .swiper .elementor-swiper-button svg,.elementor-lightbox .swiper~.elementor-swiper-button svg{fill:hsla(0,0%,93%,.9);height:1em;width:1em}.elementor-element .swiper .elementor-swiper-button-prev,.elementor-element .swiper~.elementor-swiper-button-prev,.elementor-lightbox .swiper .elementor-swiper-button-prev,.elementor-lightbox .swiper~.elementor-swiper-button-prev{left:10px}.elementor-element .swiper .elementor-swiper-button-next,.elementor-element .swiper~.elementor-swiper-button-next,.elementor-lightbox .swiper .elementor-swiper-button-next,.elementor-lightbox .swiper~.elementor-swiper-button-next{right:10px}.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-element .swiper~.elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper~.elementor-swiper-button.swiper-button-disabled{opacity:.3}.elementor-element .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image,.elementor-lightbox .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image{width:100%}.elementor-element .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper .swiper-pagination-custom,.elementor-element .swiper .swiper-pagination-fraction,.elementor-element .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper~.swiper-pagination-custom,.elementor-element .swiper~.swiper-pagination-fraction,.elementor-lightbox .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-lightbox .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper .swiper-pagination-custom,.elementor-lightbox .swiper .swiper-pagination-fraction,.elementor-lightbox .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper~.swiper-pagination-custom,.elementor-lightbox .swiper~.swiper-pagination-fraction{bottom:5px}.elementor-element .swiper.swiper-cube .elementor-swiper-button,.elementor-element .swiper.swiper-cube~.elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube .elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube~.elementor-swiper-button{transform:translate3d(0,-50%,1px)}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-bullets,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-bullets{bottom:5px;left:0;width:100%}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-progressbar,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-progressbar{height:4px;left:0;top:0;width:100%}.elementor-element.elementor-pagination-position-outside .swiper,.elementor-lightbox.elementor-pagination-position-outside .swiper{padding-bottom:30px}.elementor-element.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-element.elementor-pagination-position-outside .swiper~.elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper~.elementor-swiper-button{top:calc(50% - 30px / 2)}.elementor-element .elementor-swiper,.elementor-lightbox .elementor-swiper{position:relative}.elementor-element .elementor-main-swiper,.elementor-lightbox .elementor-main-swiper{position:static}.elementor-element.elementor-arrows-position-outside .swiper,.elementor-lightbox.elementor-arrows-position-outside .swiper{width:calc(100% - 60px)}.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev{left:0}.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next{right:0}@keyframes slideInRight{from{transform:translate3d(100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}.slideInRight{animation-name:slideInRight}.ays-survey-menu-badge{
    color: #fff;
    display: inline-block;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    background: #ca4a1f;
    margin-left: 5px;
    border-radius: 20px;
    padding: 2px 5px;
}

#adminmenu a.toplevel_page_quiz-maker.wp-menu-open div.wp-menu-image img {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
#adminmenu a.toplevel_page_survey-maker div.wp-menu-name {    
    transition: .3s ease-in-out;
}
#adminmenu a.toplevel_page_survey-maker div.wp-menu-image img {
    width: 24px;
    padding: 3px 0 0;
    transition: .3s ease-in-out;
}

ul.ays-wp-notice-answers{
    list-style-type: none;
}

#adminmenu li.toplevel_page_survey-maker ul.wp-submenu.wp-submenu-wrap li a {
    transition: .3s ease-in-out;
}
#adminmenu li.toplevel_page_survey-maker ul.wp-submenu.wp-submenu-wrap li a[href*="feature"] {
    color: #68A615;
    font-weight: bold;
}

.survey-elementor-widget-logo-wrap .survey-elementor-widget-logo:before,
.survey-elementor-widget-logo:before {
    content: "";
    background-image: url(/wp-content/plugins/survey-maker/admin/css/../images/icons/survey_logo.png);
    height: 30px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.survey-elementor-widget-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.survey-elementor-widget-logo-wrap .survey-elementor-widget-logo {
    display: inline-block;
    margin-right: 5px;
    width: 30px;
    height: 30px;
}

.survey-elementor-widget-logo-wrap .survey-elementor-widget-logo:before {
    text-align: left;
}


.btn-link{
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Admin notes */
div#ays-survey-discount-month-main{
    border: 1px solid #E5E5E5;
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 5%);
    position: relative;
    z-index: 1;
    min-height: 80px;
}

div#ays-survey-discount-month-main button{
    display: flex;
    align-items: center;
}

div#ays-survey-discount-month-main a:focus{
    outline: none;
    box-shadow: unset;
}

div#ays-survey-discount-month-main .btn-link{
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem
}

#adminmenu li.toplevel_page_survey-maker ul.wp-submenu.wp-submenu-wrap li a[href*="subscribe-email"] {
    color: #ffd400;
    font-weight: bold;
  }


.swal2-popup .ays-survey-upgrade-button,
.swal2-popup .ays-survey-cancel-button {
    position: relative;
}

  .swal2-popup .ays-survey-upgrade-button.swal2-styled.swal2-confirm:after {
    content: "(Save Your Data)";
    position: absolute;
    color: #878787;
    bottom: -18px;
    left: 25px;
    font-size: 12px;
}

.swal2-popup .ays-survey-cancel-button.swal2-styled.swal2-cancel:after {
    content: "(Delete All Data)";
    position: absolute;
    color: #878787;
    bottom: -18px;
    left: 30px;
    font-size: 12px;
}

.swal2-popup .ays-survey-upgrade-button.swal2-styled.swal2-confirm {
    background-color: #fff !important;
    color: #3085d6 !important;
    border: 1px solid #3085d6 !important;
}

.swal2-popup.swal2-modal.ays-survey-deactivate-popup.swal2-show {
    font-size: initial !important;
}

.ays-survey-admin-upgrade-button{
    color:#01A32A;
    font-weight: bold;
}

.ays-survey-admin-upgrade-button:hover{
    color:#3B8D3F;
}


/*! Survey Deactivate Feedback Popup | Start */
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    padding: 8px 16px;
    outline: none;
    border: none;
    border-radius: 3px;
    background-color: #515962;
    color: #ffffff;
    transition: all 0.3s;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:hover,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:hover {
    border: none;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:hover,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:hover,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:focus,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:focus {
    background-color: rgb(57.9217877095, 63.6424581006, 70.0782122905);
    color: #ffffff;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:active,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:active {
    background-color: rgb(34.843575419, 38.2849162011, 42.156424581);
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:not([disabled]),
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:not([disabled]) {
    cursor: pointer;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:disabled,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:disabled {
    background-color: #d5d8dc;
    color: #babfc5;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip {
    background: transparent;
    color: #515962;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:hover,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:focus {
    background: #f1f2f3;
    color: #3f444b;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-skip:disabled {
    background: transparent;
    color: #babfc5;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit {
    background-color: #fb8d5f;
    color: #0c0d0e;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:hover,
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-submit:focus {
    background-color: #f19b76;
    color: #0c0d0e;
}
body.ays-survey-editor-active :is(.is-desktop-preview, .is-tablet-preview, .is-mobile-preview) :is(.editor-styles-wrapper, iframe[name="editor-canvas"]) {
    height: auto !important;
    padding: 0 !important;
    flex: 0 !important;
}

.ays-survey-dialog-widget-content {
    background-color: #ffffff;
    position: absolute;
    border-radius: 3px;
    box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.ays-survey-dialog-message {
    line-height: 1.5;
    box-sizing: border-box;
}

.ays-survey-dialog-type-lightbox {
    position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.e-button:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.e-button:not(:disabled):not(.disabled):active:focus,
.e-button:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.4);
}

#ays-survey-deactivate-feedback-modal {
    color: #515962;
    display: flex;
    justify-content: center;
    align-items: center;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-widget-content {
    width: 500px;
    position: unset;
    max-width: 95%;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-header {
    padding: 18px 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    text-align: start;
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-message {
    padding: 30px;
    padding-block-end: 0;
    text-align: start;
}
#ays-survey-deactivate-feedback-modal .ays-survey-deactivate-feedback-dialog-input {
    margin-block: 0;
    margin-inline: 0 15px;
    box-shadow: none;
}
#ays-survey-deactivate-feedback-modal .ays-survey-deactivate-feedback-dialog-input:not(:checked) ~ label .ays-survey-feedback-text {
    display: none;
}
#ays-survey-deactivate-feedback-modal .ays-survey-deactivate-feedback-dialog-label {
    display: block;
    font-size: 13px;
    min-width: 220px;
}
#ays-survey-deactivate-feedback-modal .ays-survey-feedback-text {
    background-color: transparent;
    color: #515962;
    padding: 5px;
    box-shadow: none;
    width: 100%;
    margin: 0; 
}
#ays-survey-deactivate-feedback-modal .ays-survey-dialog-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px 30px;
}

#ays-survey-deactivate-feedback-dialog-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#ays-survey-deactivate-feedback-dialog-header img {
    width: 20px;
    height: 20px;
}

#ays-survey-deactivate-feedback-dialog-header i {
    font-size: 19px;
}
#ays-survey-deactivate-feedback-dialog-header-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    padding-inline-start: 5px;
}
#ays-survey-deactivate-feedback-dialog-form-caption {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.4;
}
#ays-survey-deactivate-feedback-dialog-form-body {
    padding-block-start: 30px;
    padding-block-end: 15px;
}

.ays-survey-deactivate-feedback-dialog-input-wrapper {
    display: flex;
    align-items: center;
    line-height: 2;
    overflow: hidden;
}

@media screen and (max-width: 782px) {
    div#ays-survey-deactivate-feedback-modal .ays-survey-deactivate-feedback-dialog-input {
        min-width: 25px;
        min-height: 25px;
    }
}
/*! survey Deactivate Feedback Popup | End */
/*!
 * # Semantic UI 2.4.0 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */.ui.dropdown{cursor:pointer;position:relative;display:inline-block;outline:0;text-align:left;-webkit-transition:width .1s ease,-webkit-box-shadow .1s ease;transition:width .1s ease,-webkit-box-shadow .1s ease;transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease,-webkit-box-shadow .1s ease;-webkit-tap-highlight-color:transparent}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;margin:0;padding:0 0;background:#fff;font-size:1em;text-shadow:none;text-align:left;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15);border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{position:relative;width:auto;font-size: 18px;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;-webkit-transition:none;transition:none}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;color:rgba(0,0,0,.87);padding:.78571429rem 1.14285714rem!important;font-size:1rem;text-transform:none;font-weight:400;-webkit-box-shadow:none;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714rem;color:rgba(0,0,0,.85);font-size:.78571429em;font-weight:700;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(34,36,38,.1);height:0;margin:.5em 0}.ui.dropdown.dropdown .menu>.input{width:auto;display:-webkit-box;display:-ms-flexbox;display:flex;margin:1.14285714rem .78571429rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{float:right;margin:0 0 0 1em;color:rgba(0,0,0,.4)}.ui.dropdown .menu>.message{padding:.78571429rem 1.14285714rem;font-weight:400}.ui.dropdown .menu>.message:not(.ui){color:rgba(0,0,0,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%;right:auto;margin:0 0 0 -.5em!important;border-radius:.28571429rem!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img{margin-top:0}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-left:0;float:none;margin-right:.78571429rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:top;width:auto;margin-top:-.5em;margin-bottom:-.5em;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height: 1;white-space:normal;outline:0;-webkit-transform:rotateZ(0);transform:rotateZ(0);min-width:14em;min-height: 20px;background:#fff;display:inline-block;padding: 10px 20px 10px 10px;color:rgba(0,0,0,.87);-webkit-box-shadow:none;box-shadow:none;border:1px solid rgba(34,36,38,.15);border-radius:.28571429rem;-webkit-transition:width .1s ease,-webkit-box-shadow .1s ease;transition:width .1s ease,-webkit-box-shadow .1s ease;transition:box-shadow .1s ease,width .1s ease;transition:box-shadow .1s ease,width .1s ease,-webkit-box-shadow .1s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(34,36,38,.15);visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;width:auto;height:auto;line-height: 1;top:.78571429em;right:1em;z-index:3;margin:-.78571429em;padding: 10px;opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;width:auto;outline:0;margin:0 -1px;min-width:calc(100% + 2px);width:calc(100% + 2px);border-radius:0 0 .28571429rem .28571429rem;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15);-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.78571429rem 1.14285714rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:21.37142857rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #fafafa;padding:.78571429rem 1.14285714rem!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown .menu>.hidden.addition.item{display:none}.ui.selection.dropdown:hover{border-color:rgba(34,36,38,.35);-webkit-box-shadow:none;box-shadow:none}.ui.selection.active.dropdown{border-color:#96c8da;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.active.dropdown .menu{border-color:#96c8da;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.dropdown:focus{border-color:#96c8da;-webkit-box-shadow:none;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#96c8da;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(0,0,0,.8)}.ui.selection.active.dropdown:hover{border-color:#96c8da;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.selection.active.dropdown:hover .menu{border-color:#96c8da;-webkit-box-shadow:0 2px 3px 0 rgba(34,36,38,.15);box-shadow:0 2px 3px 0 rgba(34,36,38,.15)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:'';z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.active.empty.selection.dropdown{border-radius:.28571429rem!important;-webkit-box-shadow:none!important;box-shadow:none!important}.ui.active.empty.selection.dropdown .menu{border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none transparent!important;border:none!important;-webkit-box-shadow:none!important;box-shadow:none!important;cursor:text;top:0;left:1px;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit}.ui.search.dropdown>input.search{position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;left:1px;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.21428571em;padding:.67857143em 2.1em .67857143em 1em}.ui.search.selection.dropdown>span.sizer{line-height:1.21428571em;padding:.67857143em 2.1em .67857143em 1em;display:none;white-space:pre}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:rgba(115,115,115,.87)!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:21.37142857rem}}.ui.multiple.dropdown{padding:.22619048em 2.1em .22619048em .35714286em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:.35714286em .78571429em;margin:.14285714rem .28571429rem .14285714rem 0;-webkit-box-shadow:0 0 0 1px rgba(34,36,38,.15) inset;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset}.ui.multiple.dropdown .dropdown.icon{margin:'';padding:''}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.45238095em 0 .45238095em .64285714em;line-height:1.21428571em}.ui.multiple.dropdown>.label~input.search{margin-left:.14285714em!important}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.45238095em 0 .45238095em .64285714em;line-height:1.21428571em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.45238095em 0 .45238095em .64285714em;width:2.2em;line-height:1.21428571em}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .21428571em 0 .21428571em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:700}.ui.inline.dropdown .menu{cursor:auto;margin-top:.21428571em;border-radius:.28571429rem}.ui.dropdown .menu .active.item{background:0 0;font-weight:700;color:rgba(0,0,0,.95);-webkit-box-shadow:none;box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);z-index:13}.ui.loading.dropdown>i.icon{height:1em!important}.ui.loading.selection.dropdown>i.icon{padding:1.5em 1.28571429em!important}.ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;-webkit-box-shadow:0 0 0 1px transparent;box-shadow:0 0 0 1px transparent;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;-webkit-animation:dropdown-spin .6s linear;animation:dropdown-spin .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@-webkit-keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dropdown-spin{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.default.dropdown:not(.button)>.text,.ui.dropdown:not(.button)>.default.text{color:rgba(191,191,191,.87)}.ui.default.dropdown:not(.button)>input:focus~.text,.ui.dropdown:not(.button)>input:focus~.default.text{color:rgba(115,115,115,.87)}.ui.loading.dropdown>.text{-webkit-transition:none;transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown>.loading.menu{left:0!important;right:auto!important}.ui.dropdown>.menu .loading.menu{left:100%!important;right:auto!important}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(0,0,0,.03);color:rgba(0,0,0,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.dropdown>.clear.dropdown.icon{opacity:.8;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.dropdown>.clear.dropdown.icon:hover{opacity:1}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important;border-radius:.28571429rem!important}.ui.dropdown>.left.menu{left:auto!important;right:0!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto;right:100%;margin:0 -.5em 0 0!important;border-radius:.28571429rem!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0}.ui.upward.dropdown>.menu{top:auto;bottom:100%;-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,.08);box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:.28571429rem .28571429rem 0 0}.ui.dropdown .upward.menu{top:auto!important;bottom:0!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.28571429rem .28571429rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.28571429rem .28571429rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important;-webkit-box-shadow:0 -2px 3px 0 rgba(0,0,0,.08);box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.05);box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.selection.dropdown.visible{-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,.08);box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:0 0 .28571429rem .28571429rem!important}.ui.upward.active.selection.dropdown:hover{-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,.05);box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{-webkit-box-shadow:0 -2px 3px 0 rgba(0,0,0,.08);box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100%!important;width:auto!important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;-webkit-box-shadow:none!important;box-shadow:none!important;border-radius:0!important;margin:0!important;min-width:100%!important;width:auto!important;border-top:1px solid rgba(34,36,38,.15)}.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item{border-top:none}.ui.dropdown .scrolling.menu .item:first-child,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 17px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:10.28571429rem}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:15.42857143rem}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.57142857rem}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.57142857rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;-webkit-box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)!important;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)!important;border-radius:.28571429rem!important}.ui.floating.dropdown>.menu{margin-top:.5em!important;border-radius:.28571429rem!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.78571429rem;border-radius:.28571429rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:.5em;height:.5em;-webkit-box-shadow:-1px -1px 0 0 rgba(34,36,38,.15);box-shadow:-1px -1px 0 0 rgba(34,36,38,.15);background:#fff;z-index:2}.ui.pointing.dropdown>.menu:after{top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.pointing.dropdown>.left.menu:after,.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto!important;right:1em!important;margin:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu{left:auto!important;right:100%!important;margin:0 1em 0 0}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.pointing.upward.dropdown .menu,.ui.top.pointing.upward.dropdown .menu{top:auto!important;bottom:100%!important;margin:0 0 .78571429rem;border-radius:.28571429rem}.ui.pointing.upward.dropdown .menu:after,.ui.top.pointing.upward.dropdown .menu:after{top:100%!important;bottom:auto!important;-webkit-box-shadow:1px 1px 0 0 rgba(34,36,38,.15);box-shadow:1px 1px 0 0 rgba(34,36,38,.15);margin:-.25em 0 0}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto!important;bottom:0!important;margin:0 1em 0 0}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto!important;bottom:0!important;margin:0 0 1em 0;-webkit-box-shadow:-1px -1px 0 0 rgba(34,36,38,.15);box-shadow:-1px -1px 0 0 rgba(34,36,38,.15)}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto!important;bottom:0!important;margin:0 0 0 1em}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto!important;bottom:0!important;margin:0 0 1em 0;-webkit-box-shadow:-1px -1px 0 0 rgba(34,36,38,.15);box-shadow:-1px -1px 0 0 rgba(34,36,38,.15)}@font-face{font-family:Dropdown;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;width:1.23em;-webkit-backface-visibility:hidden;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.dropdown>.dropdown.icon{width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.dropdown>.clear.icon:before{content:"\f00d"}/* eslint-disable */

/* If a new version is imported from swiper the selectors should all be namespaced with .jp-carousel-overlay 
/* to prevent clashes with other plugins that are overrding swiperjs css
*/

/**
 * Swiper 6.7.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 22, 2021
 */

@font-face {
	font-family: swiper-icons;
	src: url( 'data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA' )
		format( 'woff' );
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

.jp-carousel-overlay .swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;

	/* Fix of Webkit flickering */
	z-index: 1;
}

.jp-carousel-overlay .swiper-container-vertical > .swiper-wrapper {
	flex-direction: column;
}

.jp-carousel-overlay .swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.jp-carousel-overlay .swiper-container-android .swiper-slide,
.jp-carousel-overlay .swiper-wrapper {
	transform: translate3d( 0px, 0, 0 );
}

.jp-carousel-overlay .swiper-container-multirow > .swiper-wrapper {
	flex-wrap: wrap;
}

.jp-carousel-overlay .swiper-container-multirow-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.jp-carousel-overlay .swiper-container-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.jp-carousel-overlay .swiper-container-pointer-events {
	touch-action: pan-y;
}

.jp-carousel-overlay .swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x;
}

.jp-carousel-overlay .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.jp-carousel-overlay .swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */
.jp-carousel-overlay .swiper-container-autoheight,
.jp-carousel-overlay .swiper-container-autoheight .swiper-slide {
	height: auto;
}

.jp-carousel-overlay .swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

/* 3D Effects */
.jp-carousel-overlay .swiper-container-3d {
	perspective: 1200px;
}

.jp-carousel-overlay .swiper-container-3d .swiper-wrapper,
.jp-carousel-overlay .swiper-container-3d .swiper-slide,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom,
.jp-carousel-overlay .swiper-container-3d .swiper-cube-shadow {
	transform-style: preserve-3d;
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top,
.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient( to left, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient( to right, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient( to top, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}

.jp-carousel-overlay .swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient( to bottom, rgba( 0, 0, 0, 0.5 ), rgba( 0, 0, 0, 0 ) );
}

/* CSS Mode */
.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;

	/* For Firefox */
	-ms-overflow-style: none;

	/* For Internet Explorer and Edge */
}

.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.jp-carousel-overlay .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.jp-carousel-overlay .swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.jp-carousel-overlay .swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

:root {
	--swiper-navigation-size: 44px;

	/*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
	position: absolute;
	top: 50%;
	width: calc( var( --swiper-navigation-size ) / 44 * 27 );
	height: var( --swiper-navigation-size );
	margin-top: calc( 0px - ( var( --swiper-navigation-size ) / 2 ) );
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var( --swiper-navigation-color, var( --swiper-theme-color ) );
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-disabled,
.jp-carousel-overlay .swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-button-next:after {
	font-family: swiper-icons;
	font-size: var( --swiper-navigation-size );
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.jp-carousel-overlay .swiper-button-prev:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next:after {
	content: 'prev';
}

.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.jp-carousel-overlay .swiper-button-next:after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev:after {
	content: 'next';
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-white,
.jp-carousel-overlay .swiper-button-next.swiper-button-white {
	--swiper-navigation-color: #fff;
}

.jp-carousel-overlay .swiper-button-prev.swiper-button-black,
.jp-carousel-overlay .swiper-button-next.swiper-button-black {
	--swiper-navigation-color: #000;
}

.jp-carousel-overlay .swiper-button-lock {
	display: none;
}

:root {

	/*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.jp-carousel-overlay .swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 300ms opacity;
	transform: translate3d( 0, 0, 0 );
	z-index: 10;
}

.jp-carousel-overlay .swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */
.jp-carousel-overlay .swiper-pagination-fraction,
.jp-carousel-overlay .swiper-pagination-custom,
.jp-carousel-overlay .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.jp-carousel-overlay .swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale( 0.33 );
	position: relative;
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale( 1 );
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale( 1 );
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale( 0.66 );
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale( 0.33 );
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale( 0.66 );
}

.jp-carousel-overlay .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale( 0.33 );
}

.jp-carousel-overlay .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: 0.2;
}

.jp-carousel-overlay button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.jp-carousel-overlay .swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.jp-carousel-overlay .swiper-pagination-bullet-active {
	opacity: 1;
	background: var( --swiper-pagination-color, var( --swiper-theme-color ) );
}

.jp-carousel-overlay .swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d( 0px, -50%, 0 );
}

.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY( -50% );
	width: 8px;
}

.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: 200ms transform, 200ms top;
}

.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 4px;
}

.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX( -50% );
	white-space: nowrap;
}

.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 200ms transform, 200ms left;
}

.jp-carousel-overlay
	.swiper-container-horizontal.swiper-container-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 200ms transform, 200ms right;
}

/* Progress */
.jp-carousel-overlay .swiper-pagination-progressbar {
	background: rgba( 0, 0, 0, 0.25 );
	position: absolute;
}

.jp-carousel-overlay .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var( --swiper-pagination-color, var( --swiper-theme-color ) );
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale( 0 );
	transform-origin: left top;
}

.jp-carousel-overlay
	.swiper-container-rtl
	.swiper-pagination-progressbar
	.swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.jp-carousel-overlay .swiper-container-horizontal > .swiper-pagination-progressbar,
.jp-carousel-overlay
	.swiper-container-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.jp-carousel-overlay .swiper-container-vertical > .swiper-pagination-progressbar,
.jp-carousel-overlay
	.swiper-container-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.jp-carousel-overlay .swiper-pagination-white {
	--swiper-pagination-color: #fff;
}

.jp-carousel-overlay .swiper-pagination-black {
	--swiper-pagination-color: #000;
}

.jp-carousel-overlay .swiper-pagination-lock {
	display: none;
}

.jp-carousel-overlay .swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.jp-carousel-overlay .swiper-zoom-container > img,
.jp-carousel-overlay .swiper-zoom-container > svg,
.jp-carousel-overlay .swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.jp-carousel-overlay .swiper-slide-zoomed {
	cursor: move;
}

/* a11y */
.jp-carousel-overlay .swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}
:root {
	--jp-carousel-primary-color: #fff;
	--jp-carousel-primary-subtle-color: #999;
	--jp-carousel-bg-color: #000;
	--jp-carousel-bg-faded-color: #222;
	--jp-carousel-border-color: #3a3a3a;
}

:root .jp-carousel-light {
	--jp-carousel-primary-color: #000;
	--jp-carousel-primary-subtle-color: #646970;
	--jp-carousel-bg-color: #fff;
	--jp-carousel-bg-faded-color: #fbfbfb;
	--jp-carousel-border-color: #dcdcde;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next,
.jp-carousel-overlay .swiper-button-next,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev {
	background-image: none;
}

/* end of temporary fix */

[data-carousel-extra]:not( .jp-carousel-wrap ) img, [data-carousel-extra]:not( .jp-carousel-wrap ) img + figcaption {
	cursor: pointer;
}

.jp-carousel-wrap * {
	line-height: inherit;
}

.jp-carousel-wrap.swiper-container {
	height: auto;
	width: 100vw;
}

.jp-carousel-overlay .swiper-zoom-container {
	background-size: 200%;
	background-repeat: no-repeat;
	background-position: center;
}

/*
To prevent flash of prev/next image scale transition after pinch zoom we need to hide them.
Swiper does not add a class of `swiper-slide-zoomed` to slides on pinch and zoom
so we have to target all affected elements in touch devices.
*/
.jp-carousel-overlay .swiper-slide.swiper-slide-prev .swiper-zoom-container img,
.jp-carousel-overlay .swiper-slide.swiper-slide-next .swiper-zoom-container img {
	transition: none !important;
}

.jp-carousel-overlay .swiper-button-prev,
.jp-carousel-overlay .swiper-button-next {
	opacity: 0.5;
	transition: 0.5s opacity ease-out;
	height: initial;
	width: initial;
	padding: 20px 40px;
	background-image: none;
}

.jp-carousel-overlay .swiper-button-prev:hover,
.jp-carousel-overlay .swiper-button-next:hover {
	opacity: 1;
}

.jp-carousel-overlay .swiper-button-next::after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-next::after,
.jp-carousel-overlay .swiper-button-prev::after,
.jp-carousel-overlay .swiper-container-rtl .swiper-button-prev::after {
	content: none;
}

.jp-carousel-overlay .swiper-button-prev svg,
.jp-carousel-overlay .swiper-button-next svg {
	height: 30px;
	width: 28px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-overlay .swiper-button-prev svg:hover,
.jp-carousel-overlay .swiper-button-next svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-overlay {
	font-family: 'Helvetica Neue', sans-serif !important;
	z-index: 2147483647;
	overflow-x: hidden;
	overflow-y: auto;
	direction: ltr;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--jp-carousel-bg-color);
}

.jp-carousel-overlay * {
	box-sizing: border-box;
}

/* Fix for Twenty Nineteen theme compatibility */
.jp-carousel-overlay h1::before,
.jp-carousel-overlay h2::before,
.jp-carousel-overlay h3::before {
	content: none;
	display: none;
}

.jp-carousel-overlay .swiper-container .swiper-button-prev {
	left: 0;
	right: auto;
}

.jp-carousel-overlay .swiper-container .swiper-button-next {
	right: 0;
	left: auto;
}

.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-prev,
.jp-carousel-overlay .swiper-container.swiper-container-rtl .swiper-button-next {
	transform: scaleX( -1 );
}

.jp-carousel-container {
	display: grid;
	grid-template-rows: 1fr 64px; /* 1. main carousel, 2. info area as footer */
	height: 100%;
}

.jp-carousel-hide-controls .jp-carousel-container {
	grid-template-rows: 1fr;
}

.jp-carousel-hide-controls .swiper-wrapper {
	margin-top: -32px; /* Compensate for the remove of the height of the info bar. */
}


.jp-carousel-hide-controls .jp-swiper-button-next,
.jp-carousel-hide-controls .jp-swiper-button-prev {
	margin-top: -54px; /* The height of the info bar plus any top padding on the nav button itself. */
}

.jp-carousel-msg {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	display: inline-block;
	line-height: 19px;
	padding: 11px 15px;
	font-size: 14px;
	text-align: center;
	margin: 25px 20px 0 2px;
	background-color: var(--jp-carousel-primary-color);
	border-left: 4px solid #ffba00;
	box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
}

.jp-carousel-info {
	display: flex;
	flex-direction: column;
	text-align: left !important;
	-webkit-font-smoothing: subpixel-antialiased !important;
	z-index: 100;
	background-color: var(--jp-carousel-bg-color);
	transition: opacity 200ms ease-out;
	opacity: 1;
}

.jp-carousel-hide-controls .jp-carousel-info {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

.jp-carousel-info-footer {
	position: relative;
	background-color: var(--jp-carousel-bg-color);
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
}

.jp-carousel-info-extra {
	display: none;
	background-color: var(--jp-carousel-bg-color);
	padding: 35px;
	width: 100vw;
	border-top: 1px solid var(--jp-carousel-bg-faded-color);
}

.jp-carousel-title-and-caption {
	margin-bottom: 15px;
}

.jp-carousel-info-extra.jp-carousel-show {
	display: block;
}

.jp-carousel-info ::selection {
	background: var(--jp-carousel-primary-color); /* Safari */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info ::-moz-selection {
	background: var(--jp-carousel-primary-color); /* Firefox */
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-photo-info {
	left: 0 !important;
	width: 100% !important;
}

.jp-carousel-comments-wrapper {
	padding: 0;
	width: 100% !important;
	display: none;
}

.jp-carousel-comments-wrapper.jp-carousel-show {
	display: block;
}

.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
	display: none;
}

.jp-carousel-transitions .jp-carousel-photo-info {
	transition: 400ms ease-out;
}

.jp-carousel-buttons {
	margin: -18px -20px 15px;
	padding: 8px 10px;
	border-bottom: 1px solid #222;
	background: #222;
	text-align: center;
}

div.jp-carousel-buttons a {
	border: none !important;
	color: var(--jp-carousel-primary-subtle-color);
	font: 400 11px/1.2em 'Helvetica Neue', sans-serif !important;
	letter-spacing: 0 !important;
	padding: 5px 2px 5px 0;
	text-decoration: none !important;
	text-shadow: none !important;
	vertical-align: middle;
	-webkit-font-smoothing: subpixel-antialiased;
}

div.jp-carousel-buttons a:hover {
	color: var(--jp-carousel-primary-color);
	border: none !important;
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
	transition: none !important;
}

.jp-carousel-slide,
.jp-carousel-slide img {
	transform: translate3d( 0, 0, 0 );
}

.jp-carousel-close-hint {
	letter-spacing: 0 !important;
	position: fixed;
	top: 20px;
	right: 30px;
	padding: 10px;
	text-align: right;
	width: 45px;
	height: 45px;
	z-index: 15;
	color: var(--jp-carousel-primary-color);
	cursor: pointer;
	transition: opacity 200ms ease-out;
}

.jp-carousel-transitions .jp-carousel-close-hint {
	transition: color 200ms linear;
}

.jp-carousel-close-hint svg {
	padding: 3px 2px;
	background: var(--jp-carousel-bg-color);
	border-radius: 4px;
}

.jp-carousel-close-hint svg:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-close-hint:hover {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-close-hint:hover span {
	border-color: var(--jp-carousel-primary-color);
}

/** Pagination Start **/
.jp-carousel-pagination-container {
	flex: 1;
	margin: 0 15px 0 35px;
}

.jp-swiper-pagination,
.jp-carousel-pagination {
	color: var(--jp-carousel-primary-color);
	font-size: 15px; /* same as .jp-carousel-info-footer .jp-carousel-photo-title  */
	font-weight: 400;
	white-space: nowrap;
	display: none;
	position: static !important;
}

.jp-carousel-pagination-container .swiper-pagination {
	text-align: left;
	line-height: 8px;
}

.jp-carousel-pagination {
	padding-left: 5px;
}

.jp-swiper-pagination .swiper-pagination-bullet {
	background: var(--jp-carousel-primary-subtle-color);
	margin: 0 4px;
}

.jp-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--jp-carousel-primary-color);
}

.jp-swiper-pagination .swiper-pagination-bullet:not( .swiper-pagination-bullet-active ) {
	background: var(--jp-carousel-primary-color);
	opacity: 0.5;
}

/** Pagination End **/

/** Title and Desc Start **/
.jp-carousel-info-footer .jp-carousel-photo-title-container {
	flex: 4;
	justify-content: center;
	overflow: hidden;
	margin: 0;
}

.jp-carousel-photo-title,
.jp-carousel-photo-caption {
	background: none !important;
	border: none !important;
	display: inline-block;
	font: 400 20px/1.3em 'Helvetica Neue', sans-serif;
	line-height: normal;
	letter-spacing: 0 !important;
	margin: 0 0 10px 0;
	padding: 0;
	overflow: hidden;
	text-shadow: none !important;
	text-transform: none !important;
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-info-footer .jp-carousel-photo-caption {
	text-align: center;
	font-size: 15px; /* same as .jp-carousel-pagination */
	white-space: nowrap;
	color: var(--jp-carousel-primary-subtle-color);
	cursor: pointer;
	margin: 0;
	text-overflow: ellipsis;
}

.jp-carousel-info-footer .jp-carousel-photo-caption p {
	margin: 0;
}

.jp-carousel-photo-title {
	font-size: 32px;
	margin-bottom: 2px;
}

.jp-carousel-photo-description {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 16px;
	margin: 25px 0;
	width: 100%;
	overflow: hidden;
	overflow-wrap: break-word;
}

.jp-carousel-photo-description p {
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1.4;
	margin-bottom: 0;
}

.jp-carousel-photo-description p a,
.jp-carousel-comments p a,
.jp-carousel-info h2 a {
	color: var(--jp-carousel-primary-color) !important;
	border: none !important;
	text-decoration: underline !important;
	font-weight: 400 !important;
	font-style: normal !important;
}

.jp-carousel-photo-description p strong,
.jp-carousel-photo-description p b {
	font-weight: 700;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p em,
.jp-carousel-photo-description p i {
	font-style: italic;
	color: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-photo-description p a:hover,
.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-photo-description p:empty {
	display: none;
}

.jp-carousel-photo-info h1::before,
.jp-carousel-photo-info h1::after,
.jp-carousel-comments-wrapper h1::before,
.jp-carousel-comments-wrapper h1::after {
	content: none !important;
}

.jp-carousel-caption {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}

/** Title and Desc End **/

/** Meta Box Start **/
.jp-carousel-image-meta {
	color: var(--jp-carousel-primary-color);
	font: 12px/1.4 'Helvetica Neue', sans-serif !important;
	width: 100%;
	display: none;
}

.jp-carousel-image-meta.jp-carousel-show {
	display: block;
}

.jp-carousel-image-meta li,
.jp-carousel-image-meta h5 {
	font-family: 'Helvetica Neue', sans-serif !important;
	position: inherit !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	bottom: auto !important;
	background: none !important;
	border: none !important;
	font-weight: 400 !important;
	/* stylelint-disable-next-line declaration-property-unit-allowed-list -- this should be changed to a unitless value: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/#values */
	line-height: 1.3em !important;
}

.jp-carousel-image-meta ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.jp-carousel-image-meta li {
	width: 48% !important;
	display: inline-block !important;
	vertical-align: top !important;
	margin: 0 2% 15px 0 !important;
	color: var(--jp-carousel-primary-color) !important;
	font-size: 13px !important;
}

.jp-carousel-image-meta h5 {
	color: var(--jp-carousel-primary-subtle-color) !important;
	text-transform: uppercase !important;
	font-size: 10px !important;
	margin: 0 0 2px !important;
	letter-spacing: 0.1em !important;
}

a.jp-carousel-image-download {
	display: inline-block;
	clear: both;
	color: var(--jp-carousel-primary-subtle-color);
	line-height: 1;
	font-weight: 400;
	font-size: 14px;
	text-decoration: none;
}

a.jp-carousel-image-download svg {
	display: inline-block;
	vertical-align: middle;
	margin: 0 3px;
	padding-bottom: 2px;
}

a.jp-carousel-image-download span.photo-size {
	font-size: 11px;
	border-radius: 1em;
	margin-left: 2px;
	display: inline-block;
}

a.jp-carousel-image-download span.photo-size-times {
	padding: 0 1px 0 2px;
}

/** Meta Box End **/

/** Comments Start **/
.jp-carousel-comments {
	font: 15px/1.7 'Helvetica Neue', sans-serif !important;
	font-weight: 400;
	background: none transparent;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

.jp-carousel-comments p a:hover,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:active {
	color: var(--jp-carousel-primary-color) !important;
}

.jp-carousel-comment {
	background: none transparent;
	color: var(--jp-carousel-primary-subtle-color);
	overflow: auto;
	width: 100%;
	display: flex;
}

.jp-carousel-comment + .jp-carousel-comment {
	margin-top: 20px;
}

.jp-carousel-comment:last-of-type {
	margin-bottom: 20px;
}

.jp-carousel-comment p {
	color: var(--jp-carousel-primary-subtle-color) !important;
}

.jp-carousel-comment .comment-author {
	font-size: 15px;
	font-weight: 500;
	padding: 0;
	width: auto;
	display: inline;
	float: none;
	border: none;
	margin: 0;
}

.jp-carousel-comment .comment-author a {
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-comment .comment-gravatar {
	float: none;
	margin-right: 10px;
}

.jp-carousel-comment .comment-content {
	border: none;
	padding: 0;
}

.jp-carousel-comment .avatar {
	margin: 0;
	border-radius: 4px;
	border: none !important;
	padding: 0 !important;
	background-color: transparent !important;
	min-width: 64px;
	min-height: 64px;
	width: 64px;
	height: 64px;
}

.jp-carousel-comment .comment-date {
	color: var(--jp-carousel-primary-subtle-color);
	font-size: 11px;
	border-bottom: 1px solid var(--jp-carousel-bg-faded-color);
	margin-bottom: 6px;
}

#jp-carousel-comment-form {
	margin: 0 0 10px !important;
	width: 100%;
}

#jp-carousel-comment-form.jp-carousel-is-disabled {
	opacity: 0.5;
	pointer-events: none;
}

textarea#jp-carousel-comment-form-comment-field {
	background: var(--jp-carousel-bg-faded-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 'Helvetica Neue', sans-serif !important;
	width: 100%;
	padding: 10px 10px 5px;
	margin: 0;
	float: none;
	height: 147px;
	box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.1 );
	border-radius: 3px;
	overflow: hidden;
	box-sizing: border-box;
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
	color: #555;
}

textarea#jp-carousel-comment-form-comment-field:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-loading-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#jp-carousel-loading-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

#jp-carousel-library-loading,
#jp-carousel-library-loading::after {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

#jp-carousel-library-loading {
	float: left;
	margin: 22px 0 0 10px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 8px solid rgba( 255, 255, 255, 0.2 );
	border-right: 8px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 8px solid rgba( 255, 255, 255, 0.2 );
	border-left: 8px solid var(--jp-carousel-primary-color);
	transform: translateZ( 0 );
	animation: load8 1.1s infinite linear;
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner::after {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

#jp-carousel-comment-form-spinner {
	display: none;
	float: left;
	font-size: 10px;
	position: absolute; /* relative to .jp-carousel-comment-form-container */
	text-indent: -9999em;
	border-top: 4px solid rgba( 255, 255, 255, 0.2 );
	border-right: 4px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 4px solid rgba( 255, 255, 255, 0.2 );
	border-left: 4px solid var(--jp-carousel-primary-color);
	transform: translateZ( 0 );
	animation: load8 1.1s infinite linear;
	margin: 0 auto;
	top: calc( 50% - 15px );
	left: 0;
	bottom: 0;
	right: 0;
}

@keyframes load8 {

	0% {
		transform: rotate( 0deg );
	}

	100% {
		transform: rotate( 360deg );
	}
}

.jp-carousel-info-content-wrapper {
	max-width: 800px;
	margin: auto;
}

#jp-carousel-comment-form-submit-and-info-wrapper {
	display: none;
	overflow: hidden;
	width: 100%;
}

#jp-carousel-comment-form-commenting-as input {
	background: var(--jp-carousel-bg-color);
	border: 1px solid var(--jp-carousel-border-color);
	color: var(--jp-carousel-primary-subtle-color);
	font: 16px/1.4 'Helvetica Neue', sans-serif !important;
	padding: 10px;
	float: left;
	box-shadow: inset 2px 2px 2px rgba( 0, 0, 0, 0.2 );
	border-radius: 2px;
	width: 285px;
}

#jp-carousel-comment-form-commenting-as input:focus {
	background: var(--jp-carousel-bg-faded-color);
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comment-form-commenting-as p {
	font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
	margin: 22px 0 0;
	float: left;
}

#jp-carousel-comment-form-commenting-as fieldset {
	float: left;
	border: none;
	margin: 20px 0 0 0;
	padding: 0;
	clear: both;
}

#jp-carousel-comment-form-commenting-as label {
	font: 400 13px/1.7 'Helvetica Neue', sans-serif !important;
	margin: 0 20px 3px 0;
	float: left;
	width: 100px;
}

#jp-carousel-comment-form-button-submit {
	margin-top: 20px;
	margin-left: auto;
	display: block;
	border: solid 1px var(--jp-carousel-primary-color);
	background: var(--jp-carousel-bg-color);
	border-radius: 3px;
	padding: 8px 16px;
	font-size: 14px;
	color: var(--jp-carousel-primary-color);
}

#jp-carousel-comment-form-button-submit:active,
#jp-carousel-comment-form-button-submit:focus {
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
}

#jp-carousel-comment-form-container {
	margin-bottom: 15px;
	width: 100%;
	margin-top: 20px;
	color: var(--jp-carousel-primary-subtle-color);
	position: relative;
	overflow: hidden;
}

#jp-carousel-comment-post-results {
	display: none;
	overflow: auto;
	width: 100%;
}

#jp-carousel-comment-post-results span {
	display: block;
	text-align: center;
	margin-top: 20px;
	width: 100%;
	overflow: auto;
	padding: 1em 0;
	box-sizing: border-box;
	border-radius: 2px;
	font: 13px/1.4 'Helvetica Neue', sans-serif !important;
	border: 1px solid var(--jp-carousel-border-color);
	box-shadow: inset 0 0 5px 0 rgba( 0, 0, 0, 0.2 );
}

.jp-carousel-comment-post-error {
	color: #df4926;
}

#jp-carousel-comments-closed {
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
}

#jp-carousel-comments-loading {
	font: 400 15px/1.7 'Helvetica Neue', sans-serif !important;
	display: none;
	color: var(--jp-carousel-primary-subtle-color);
	text-align: left;
	margin-bottom: 20px;
	width: 100%;
	bottom: 10px;
	margin-top: 20px;
}

/** Icons Start **/
.jp-carousel-photo-icons-container {
	flex: 1;
	display: block;
	text-align: right;
	margin: 0 20px 0 30px;
	white-space: nowrap;
}

.jp-carousel-icon-btn {
	padding: 16px;
	text-decoration: none;
	border: none;
	background: none;
	display: inline-block;
	height: 64px;
}

.jp-carousel-icon {
	border: none;
	display: inline-block;
	line-height: 0;
	font-weight: 400;
	font-style: normal;
	border-radius: 4px;
	width: 31px; /* Prevent comments indicator from changing icon width */
	padding: 4px 3px 3px;
}

.jp-carousel-icon:hover {
	background: var(--jp-carousel-primary-subtle-color);
}

.jp-carousel-icon svg {
	display: inline-block;
}

.jp-carousel-overlay rect {
	fill: var(--jp-carousel-primary-color);
}

.jp-carousel-selected .jp-carousel-icon {
	background: var(--jp-carousel-primary-color);
}

.jp-carousel-selected rect {
	fill: var(--jp-carousel-bg-color);
}

.jp-carousel-icon-comments.jp-carousel-show {
	display: inline-block;
}

.jp-carousel-icon .jp-carousel-has-comments-indicator {
	display: none;
	font-size: 12px;
	vertical-align: top;
	margin-left: -16px;
	line-height: 1;
	padding: 2px 4px;
	border-radius: 4px;
	background: var(--jp-carousel-primary-color);
	color: var(--jp-carousel-bg-color);
	font-weight: 400;
	font-family: 'Helvetica Neue', sans-serif !important;
	position: relative;
}

.jp-carousel-selected .jp-carousel-icon .jp-carousel-has-comments-indicator {
	background: var(--jp-carousel-bg-color);
	color: var(--jp-carousel-primary-color);
}

.jp-carousel-has-comments-indicator.jp-carousel-show {
	display: inline-block;
}

/** Icons End **/

/* Small screens */
@media only screen and ( max-width: 760px ) {

	.jp-carousel-overlay .swiper-container .swiper-button-next,
	.jp-carousel-overlay .swiper-container .swiper-button-prev {
		display: none !important;
	}

	.jp-carousel-buttons {
		display: none !important;
	}

	.jp-carousel-image-meta {
		float: none !important;
		width: 100% !important;
		box-sizing: border-box;
		margin-left: 0;
	}

	.jp-carousel-close-hint {
		font-size: 26px !important;
		position: fixed !important;
		top: 10px;
		right: 10px;
	}

	/* The admin bar is fixed at top: 0*/
	.admin-bar .jp-carousel-close-hint {
		top: 40px;
	}

	.jp-carousel-slide img {
		opacity: 1;
	}

	.jp-carousel-wrap {
		background-color: var(--jp-carousel-bg-color);
	}

	.jp-carousel-fadeaway {
		display: none;
	}

	.jp-carousel-info > .jp-carousel-photo-info {
		display: none;
	}

	.jp-carousel-comments-wrapper > .jp-carousel-photo-info {
		display: block;
	}

	.jp-carousel-caption {
		overflow: visible !important;
	}

	.jp-carousel-info-footer .jp-carousel-photo-title-container {
		display: none;
	}

	.jp-carousel-photo-icons-container {
		margin: 0 10px 0 0;
		white-space: nowrap;
	}

	.jp-carousel-icon-btn {
		padding-left: 20px;
	}

	.jp-carousel-pagination {
		padding-left: 5px;
	}

	.jp-carousel-pagination-container {
		margin-left: 25px;
	}

	.jp-carousel-comment .avatar {
		min-width: 48px;
	}

	#jp-carousel-comment-form-commenting-as fieldset,
	#jp-carousel-comment-form-commenting-as input {
		width: 100%;
		float: none;
	}
}
/*! E-Gallery v1.2.0 by Elementor */
.e-gallery-container{position:relative;display:flex;flex-wrap:wrap}.e-gallery-container:not(.e-gallery-grid){transition:padding-bottom var(--animation-duration)}.e-gallery-item{position:relative;flex-grow:0;flex-shrink:0;transition-property:all;transition-duration:var(--animation-duration)}.e-gallery-item:not(:hover) .e-gallery-overlay{display:none}.e-gallery-item.e-gallery-item--hidden{transform:scale3d(0, 0, 0);opacity:0}.e-gallery-image{background-position:center center;background-size:cover;width:100%;transform-origin:center top;transition:var(--animation-duration)}.e-gallery-overlay{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;align-items:center;justify-content:space-evenly;flex-wrap:wrap;flex-direction:column;color:#fff;background-color:rgba(0,0,0,0.5)}.e-gallery-overlay__title{font-size:24px}.e-gallery-grid:not(.e-gallery--animated){display:grid;grid-gap:var(--vgap) var(--hgap);grid-template-columns:repeat(var(--columns), 1fr)}.e-gallery-grid:not(.e-gallery--animated) .e-gallery-item--hidden{position:absolute}.e-gallery-grid.e-gallery--animated{padding-bottom:var(--container-aspect-ratio)}.e-gallery-grid.e-gallery--animated .e-gallery-item{--item-width: calc((100% - ((var(--columns) - 1) * var(--hgap))) / var(--columns));position:absolute;top:calc(((100% / var(--rows)) + (var(--vgap) / var(--rows))) * var(--row));width:var(--item-width)}.e-gallery-grid .e-gallery-image{padding-bottom:var(--aspect-ratio)}.e-gallery-justified{padding-bottom:calc(var(--container-aspect-ratio) * 100%)}.e-gallery-justified .e-gallery-item{position:absolute;width:calc(var(--item-width) * (100% - var(--hgap) * var(--gap-count)));height:var(--item-height);top:calc(var(--item-top) + (var(--row) * var(--vgap)))}.e-gallery-justified .e-gallery-image{height:100%}.e-gallery-masonry{height:0;margin-bottom:calc(var(--highest-column-gap-count) * var(--vgap))}.e-gallery-masonry .e-gallery-item{position:absolute;width:calc(100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns)));top:calc(var(--percent-height) + (var(--items-in-column) * var(--vgap)))}.e-gallery-masonry .e-gallery-image{padding-bottom:var(--item-height)}.e-gallery--ltr.e-gallery-grid.e-gallery--animated .e-gallery-item{left:calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--ltr.e-gallery-justified .e-gallery-item{left:calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index))}.e-gallery--ltr.e-gallery-masonry .e-gallery-item{left:calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--rtl.e-gallery-grid.e-gallery--animated .e-gallery-item{right:calc(var(--item-width) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--rtl.e-gallery-justified .e-gallery-item{right:calc(var(--item-start) * (100% - var(--hgap) * var(--gap-count)) + var(--hgap) * var(--item-row-index))}.e-gallery--rtl.e-gallery-masonry .e-gallery-item{right:calc((100% / var(--columns) - (var(--hgap) * (var(--columns) - 1) / var(--columns))) * var(--column) + (var(--hgap) * var(--column)))}.e-gallery--lazyload .e-gallery-image:not(.e-gallery-image-loaded){filter:opacity(0);transform:scale(0.5)}

/*! elementor - v3.29.0 - 04-06-2025 */
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{flex-shrink:0;margin:0 var(--divider-element-spacing)}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{border-block-end:0;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color);content:"";display:block;flex-grow:1}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url);-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;min-height:var(--divider-pattern-height);width:100%}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var( --container-widget-flex-grow )}/*! elementor - v3.29.0 - 04-06-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}/*! elementor - v3.29.0 - 04-06-2025 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}/*! elementor - v3.29.0 - 04-06-2025 */
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{background-color:transparent;border:3px solid;color:#69727d}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-block-start:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{height:1em;width:1em}.elementor-widget-text-editor .elementor-drop-cap{float:inline-start;font-size:50px;line-height:1;text-align:center}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}.elementor-motion-effects-element,.elementor-motion-effects-layer{transition-duration:1s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,.33,.07,1.03)}.elementor-motion-effects-container{height:100%;left:0;overflow:hidden;position:absolute;top:0;transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x);width:100%}.elementor-motion-effects-layer{background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0}.elementor-motion-effects-perspective{perspective:1200px}.elementor-motion-effects-element{transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}/*! elementor-pro - v3.29.0 - 04-06-2025 */
.elementor-gallery__container{min-height:1px}.elementor-gallery-item{border:solid var(--image-border-width) var(--image-border-color);border-radius:var(--image-border-radius);display:block;overflow:hidden;position:relative;text-decoration:none}.elementor-gallery-item__content,.elementor-gallery-item__overlay{height:100%;left:0;position:absolute;top:0;width:100%}.elementor-gallery-item__overlay{mix-blend-mode:var(--overlay-mix-blend-mode);transition-duration:var(--overlay-transition-duration);transition-property:mix-blend-mode,transform,opacity,background-color}.elementor-gallery-item__image.e-gallery-image{transition-duration:var(--image-transition-duration);transition-property:filter,transform}.elementor-gallery-item__content{align-items:center;display:flex;flex-direction:column;justify-content:var(--content-justify-content,center);padding:var(--content-padding);text-align:var(--content-text-align)}.elementor-gallery-item__content>div{transition-duration:var(--content-transition-duration)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(2){transition-delay:calc(var(--content-transition-delay) / 3)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(3){transition-delay:calc(var(--content-transition-delay) / 3 * 2)}.elementor-gallery-item__content.elementor-gallery--sequenced-animation>div:nth-child(4){transition-delay:calc(var(--content-transition-delay) / 3 * 3)}.elementor-gallery-item__description{color:var(--description-text-color,#fff);width:100%}.elementor-gallery-item__title{color:var(--title-text-color,#fff);font-weight:700;width:100%}.elementor-gallery__titles-container{display:flex;flex-wrap:wrap;justify-content:var(--titles-container-justify-content,center);margin-bottom:20px}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item:before{background-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container:not(.e--pointer-framed) .elementor-item.elementor-item-active:before{background-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:before{border-color:var(--galleries-pointer-bg-color-hover);border-width:var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item:after{border-color:var(--galleries-pointer-bg-color-hover)}.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:after,.elementor-gallery__titles-container.e--pointer-framed .elementor-item.elementor-item-active:before{border-color:var(--galleries-pointer-bg-color-active)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:before{border-width:0 0 var(--galleries-pointer-border-width) var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-draw .elementor-item:after{border-width:var(--galleries-pointer-border-width) var(--galleries-pointer-border-width) 0 0}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:before{border-width:var(--galleries-pointer-border-width) 0 0 var(--galleries-pointer-border-width)}.elementor-gallery__titles-container.e--pointer-framed.e--animation-corners .elementor-item:after{border-width:0 var(--galleries-pointer-border-width) var(--galleries-pointer-border-width) 0}.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:after,.elementor-gallery__titles-container .e--pointer-double-line .elementor-item:before,.elementor-gallery__titles-container .e--pointer-overline .elementor-item:before,.elementor-gallery__titles-container .e--pointer-underline .elementor-item:after{height:var(--galleries-pointer-border-width)}.elementor-gallery-title{--space-between:10px;color:#6d7882;cursor:pointer;font-weight:500;padding:7px 14px;position:relative;transition:all .3s}.elementor-gallery-title--active{color:#495157}.elementor-gallery-title:not(:last-child){margin-inline-end:var(--space-between)}.elementor-gallery-item__title+.elementor-gallery-item__description{margin-top:var(--description-margin-top)}.e-gallery-item.elementor-gallery-item{transition-property:all}.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-bottom,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-left,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-right,.e-gallery-item.elementor-animated-content .elementor-animated-item--enter-from-top,.e-gallery-item:focus .elementor-gallery__item-overlay-bg,.e-gallery-item:focus .elementor-gallery__item-overlay-content,.e-gallery-item:focus .elementor-gallery__item-overlay-content__description,.e-gallery-item:focus .elementor-gallery__item-overlay-content__title,.e-gallery-item:hover .elementor-gallery__item-overlay-bg,.e-gallery-item:hover .elementor-gallery__item-overlay-content,.e-gallery-item:hover .elementor-gallery__item-overlay-content__description,.e-gallery-item:hover .elementor-gallery__item-overlay-content__title{opacity:1}a.elementor-item.elementor-gallery-title{color:var(--galleries-title-color-normal)}a.elementor-item.elementor-gallery-title.elementor-item-active,a.elementor-item.elementor-gallery-title.highlighted,a.elementor-item.elementor-gallery-title:focus,a.elementor-item.elementor-gallery-title:hover{color:var(--galleries-title-color-hover)}a.elementor-item.elementor-gallery-title.elementor-item-active{color:var(--gallery-title-color-active)}.e-con-inner>.elementor-widget-gallery,.e-con>.elementor-widget-gallery{width:var(--container-widget-width);--flex-grow:var( --container-widget-flex-grow )}.elementor-animated-content{--translate:0,0}.elementor-animated-content:focus .elementor-animated-item--grow,.elementor-animated-content:hover .elementor-animated-item--grow{transform:scale(1.1)}.elementor-animated-content:focus .elementor-animated-item--shrink,.elementor-animated-content:hover .elementor-animated-item--shrink{transform:scale(.85)}.elementor-animated-content:focus .elementor-animated-item--shrink-contained,.elementor-animated-content:hover .elementor-animated-item--shrink-contained{transform:scale(1)}.elementor-animated-content:focus .elementor-animated-item--enter-zoom-in,.elementor-animated-content:focus .elementor-animated-item--enter-zoom-out,.elementor-animated-content:focus .elementor-animated-item--fade-in,.elementor-animated-content:hover .elementor-animated-item--enter-zoom-in,.elementor-animated-content:hover .elementor-animated-item--enter-zoom-out,.elementor-animated-content:hover .elementor-animated-item--fade-in{opacity:1;transform:scale(1)}.elementor-animated-content:focus .elementor-animated-item--exit-zoom-in,.elementor-animated-content:focus .elementor-animated-item--exit-zoom-out,.elementor-animated-content:focus .elementor-animated-item--fade-out,.elementor-animated-content:hover .elementor-animated-item--exit-zoom-in,.elementor-animated-content:hover .elementor-animated-item--exit-zoom-out,.elementor-animated-content:hover .elementor-animated-item--fade-out{opacity:0}.elementor-animated-content:focus .elementor-animated-item--exit-zoom-out,.elementor-animated-content:hover .elementor-animated-item--exit-zoom-out{transform:scale(.2)}.elementor-animated-content:focus .elementor-animated-item--exit-zoom-in,.elementor-animated-content:hover .elementor-animated-item--exit-zoom-in{transform:scale(2)}.elementor-animated-content:focus .elementor-animated-item--enter-from-bottom,.elementor-animated-content:focus .elementor-animated-item--enter-from-left,.elementor-animated-content:focus .elementor-animated-item--enter-from-right,.elementor-animated-content:focus .elementor-animated-item--enter-from-top,.elementor-animated-content:hover .elementor-animated-item--enter-from-bottom,.elementor-animated-content:hover .elementor-animated-item--enter-from-left,.elementor-animated-content:hover .elementor-animated-item--enter-from-right,.elementor-animated-content:hover .elementor-animated-item--enter-from-top{opacity:1;transform:translateY(0) translateX(0)}.elementor-animated-content:focus .elementor-animated-item--exit-to-right,.elementor-animated-content:hover .elementor-animated-item--exit-to-right{transform:translateX(1000px)}.elementor-animated-content:focus .elementor-animated-item--exit-to-left,.elementor-animated-content:hover .elementor-animated-item--exit-to-left{transform:translateX(-1000px)}.elementor-animated-content:focus .elementor-animated-item--exit-to-top,.elementor-animated-content:hover .elementor-animated-item--exit-to-top{transform:translateY(-600px)}.elementor-animated-content:focus .elementor-animated-item--exit-to-bottom,.elementor-animated-content:hover .elementor-animated-item--exit-to-bottom{transform:translateY(600px)}.elementor-animated-content:focus .elementor-animated-item--exit-to-bottom,.elementor-animated-content:focus .elementor-animated-item--exit-to-left,.elementor-animated-content:focus .elementor-animated-item--exit-to-right,.elementor-animated-content:focus .elementor-animated-item--exit-to-top,.elementor-animated-content:hover .elementor-animated-item--exit-to-bottom,.elementor-animated-content:hover .elementor-animated-item--exit-to-left,.elementor-animated-content:hover .elementor-animated-item--exit-to-right,.elementor-animated-content:hover .elementor-animated-item--exit-to-top{opacity:0}.elementor-animated-content:focus .elementor-animated-item--move-right,.elementor-animated-content:hover .elementor-animated-item--move-right{transform:translateX(30px)}.elementor-animated-content:focus .elementor-animated-item--move-left,.elementor-animated-content:hover .elementor-animated-item--move-left{transform:translateX(-30px)}.elementor-animated-content:focus .elementor-animated-item--move-up,.elementor-animated-content:hover .elementor-animated-item--move-up{transform:translateY(-30px)}.elementor-animated-content:focus .elementor-animated-item--move-down,.elementor-animated-content:hover .elementor-animated-item--move-down{transform:translateY(30px)}.elementor-animated-content:focus .elementor-animated-item--move-contained-right,.elementor-animated-content:hover .elementor-animated-item--move-contained-right{--translate:8%,0}.elementor-animated-content:focus .elementor-animated-item--move-contained-left,.elementor-animated-content:hover .elementor-animated-item--move-contained-left{--translate:-8%,0}.elementor-animated-content:focus .elementor-animated-item--move-contained-top,.elementor-animated-content:hover .elementor-animated-item--move-contained-top{--translate:0,-8%}.elementor-animated-content:focus .elementor-animated-item--move-contained-bottom,.elementor-animated-content:hover .elementor-animated-item--move-contained-bottom{--translate:0,8%}.elementor-animated-content [class^=elementor-animated-item]{will-change:transform,opacity}.elementor-animated-content .elementor-animated-item--shrink-contained{transform:scale(1.17)}.elementor-animated-content .elementor-animated-item--enter-zoom-in{transform:scale(.2)}.elementor-animated-content .elementor-animated-item--enter-zoom-out{transform:scale(2)}.elementor-animated-content .elementor-animated-item--enter-zoom-in,.elementor-animated-content .elementor-animated-item--enter-zoom-out,.elementor-animated-content .elementor-animated-item--fade-in{opacity:0}.elementor-animated-content .elementor-animated-item--exit-zoom-in,.elementor-animated-content .elementor-animated-item--exit-zoom-out,.elementor-animated-content .elementor-animated-item--fade-out{opacity:1;transform:scale(1)}.elementor-animated-content .elementor-animated-item--enter-from-right{transform:translateX(1000px)}.elementor-animated-content .elementor-animated-item--enter-from-left{transform:translateX(-1000px)}.elementor-animated-content .elementor-animated-item--enter-from-top{transform:translateY(-600px)}.elementor-animated-content .elementor-animated-item--enter-from-bottom{transform:translateY(500px)}.elementor-animated-content .elementor-animated-item--enter-from-bottom,.elementor-animated-content .elementor-animated-item--enter-from-left,.elementor-animated-content .elementor-animated-item--enter-from-right,.elementor-animated-content .elementor-animated-item--enter-from-top{opacity:0}.elementor-animated-content .elementor-animated-item--exit-to-bottom,.elementor-animated-content .elementor-animated-item--exit-to-left,.elementor-animated-content .elementor-animated-item--exit-to-right,.elementor-animated-content .elementor-animated-item--exit-to-top{opacity:1;transform:translateY(0) translateX(0)}.elementor-animated-content .elementor-animated-item--move-contained-bottom,.elementor-animated-content .elementor-animated-item--move-contained-left,.elementor-animated-content .elementor-animated-item--move-contained-right,.elementor-animated-content .elementor-animated-item--move-contained-top{transform:scale(1.2) translate(var(--translate))}/*! elementor-pro - v3.29.0 - 04-06-2025 */
.elementor-headline{display:block;font-size:43px;line-height:1.2}.elementor-headline-dynamic-text{color:var(--dynamic-text-color,#aebcb9)}.elementor-headline--style-rotate .elementor-headline-dynamic-wrapper{text-align:start}.elementor-headline--style-highlight .elementor-headline-dynamic-wrapper{overflow:visible;text-align:inherit}.elementor-headline--style-highlight .elementor-headline-dynamic-text{z-index:1}.elementor-headline--style-highlight .elementor-headline-plain-text{position:relative;z-index:1}.elementor-headline--style-highlight svg{height:calc(100% + 20px);left:50%;overflow:visible;position:absolute;top:50%;transform:translate(-50%,-50%);width:calc(100% + 20px)}.elementor-headline--style-highlight svg path{stroke:red;stroke-width:9;fill:none;opacity:0;stroke-dasharray:0 1500;transition:.3s}.elementor-headline.e-animated svg path{animation:elementor-headline-dash forwards;animation-duration:var(--animation-duration,1.2s);animation-iteration-count:1}.elementor-headline.e-animated svg path:nth-of-type(2){animation-delay:calc(var(--animation-duration, 1.2s) / 2)}.elementor-headline.e-hide-highlight svg path{opacity:1;stroke-dasharray:1500 1500;animation:hide-highlight .4s forwards;animation-iteration-count:1}@keyframes elementor-headline-dash{0%{stroke-dasharray:0 1500;opacity:1}to{stroke-dasharray:1500 1500;opacity:1}}@keyframes hide-highlight{0%{opacity:1;stroke-dasharray:1500 1500}to{filter:blur(10px);opacity:0}}.elementor-headline-text-wrapper{vertical-align:bottom}.elementor-headline-dynamic-wrapper{display:inline-block;position:relative}.elementor-headline-dynamic-wrapper .elementor-headline-dynamic-text{display:inline-block;left:0;position:absolute;top:0}.elementor-headline-dynamic-wrapper .elementor-headline-dynamic-text.elementor-headline-text-active{position:relative}.elementor-headline-animation-type-flip .elementor-headline-dynamic-wrapper{perspective:300px}.elementor-headline-animation-type-flip .elementor-headline-dynamic-text{opacity:0;transform:rotateX(180deg);transform-origin:50% 100%}.elementor-headline-animation-type-flip .elementor-headline-dynamic-text.elementor-headline-text-active{animation:elementor-headline-flip-in 1.2s;opacity:1;transform:rotateX(0deg)}.elementor-headline-animation-type-flip .elementor-headline-dynamic-text.elementor-headline-text-inactive{animation:elementor-headline-flip-out 1.2s;transform:rotateX(180deg)}@keyframes elementor-headline-flip-in{0%{opacity:0;transform:rotateX(180deg)}35%{opacity:0;transform:rotateX(120deg)}65%{opacity:0}to{opacity:1;transform:rotateX(1turn)}}@keyframes elementor-headline-flip-out{0%{opacity:1;transform:rotateX(0deg)}35%{opacity:1;transform:rotateX(-40deg)}65%{opacity:0}to{opacity:0;transform:rotateX(180deg)}}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper{overflow:hidden;vertical-align:top}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper:after{background-color:#0d0d0d;content:"";height:90%;left:auto;position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper:not(.elementor-headline-typing-selected):after{animation:elementor-headline-pulse 1s infinite}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper.elementor-headline-typing-selected{background-color:var(--typing-selected-bg-color,#0d0d0d)}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper.elementor-headline-typing-selected:after{visibility:hidden}.elementor-headline-animation-type-typing .elementor-headline-dynamic-wrapper.elementor-headline-typing-selected .elementor-headline-dynamic-text{color:var(--typing-selected-color,var(--dynamic-text-color),#aebcb9)}.elementor-headline-animation-type-typing .elementor-headline-dynamic-text:not(.elementor-headline-text-active){visibility:hidden}.elementor-headline-animation-type-typing .elementor-headline-dynamic-letter:not(.elementor-headline-animation-in){position:absolute;visibility:hidden}@keyframes elementor-headline-pulse{0%{opacity:1;transform:translateY(-50%) scale(1)}40%{opacity:0;transform:translateY(-50%) scale(.9)}to{opacity:0;transform:translateY(-50%) scale(0)}}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-wrapper{perspective:300px}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-letter{backface-visibility:hidden;display:inline-block}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-text{opacity:0;transform:scaleX(1.0005)}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-letter{opacity:0;transform:translateZ(-20px) rotateX(90deg);transform-style:preserve-3d}.elementor-headline-text-active .elementor-headline-animation-type-swirl .elementor-headline-dynamic-letter{opacity:1}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-letter.elementor-headline-animation-in{animation:elementor-headline-swirl-in .4s forwards}.elementor-headline-animation-type-swirl .elementor-headline-dynamic-letter:not(.elementor-headline-animation-in){animation:elementor-headline-swirl-out .4s forwards}@keyframes elementor-headline-swirl-in{0%{opacity:0;transform:translateZ(-20px) rotateX(90deg)}60%{opacity:1;transform:translateZ(-20px) rotateX(-10deg)}to{opacity:1;transform:translateZ(-20px) rotateX(0deg)}}@keyframes elementor-headline-swirl-out{0%{opacity:1;transform:translateZ(-20px) rotateX(0)}60%{opacity:0;transform:translateZ(-20px) rotateX(-100deg)}to{opacity:0;transform:translateZ(-20px) rotateX(-90deg)}}.elementor-headline-animation-type-slide-down .elementor-headline-text-wrapper{display:inline-block;padding:.2em 0}.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-wrapper{overflow:hidden;vertical-align:top}.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-text{opacity:0;top:.2em}.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-text.elementor-headline-text-active{animation:elementor-headline-slide-down-in .6s;opacity:1;top:0}.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-text.elementor-headline-text-inactive{animation:elementor-headline-slide-down-out .6s}@keyframes elementor-headline-slide-down-in{0%{opacity:0;transform:translateY(-100%)}60%{opacity:1;transform:translateY(20%)}to{opacity:1;transform:translateY(0)}}@keyframes elementor-headline-slide-down-out{0%{opacity:1;transform:translateY(0)}60%{opacity:0;transform:translateY(120%)}to{opacity:0;transform:translateY(100%)}}.elementor-headline-animation-type-clip .elementor-headline-text-wrapper{display:inline-block;padding:.2em 0}.elementor-headline-animation-type-clip .elementor-headline-dynamic-wrapper{overflow:hidden;vertical-align:top}.elementor-headline-animation-type-clip .elementor-headline-dynamic-wrapper:after{background-color:#0d0d0d;content:"";height:100%;left:auto;position:absolute;right:0;top:0;width:2px}.elementor-headline-animation-type-clip .elementor-headline-dynamic-text{opacity:0}.elementor-headline-animation-type-clip .elementor-headline-dynamic-text.elementor-headline-text-active{opacity:1}.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper{perspective:300px}.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-text{opacity:0}.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-text.elementor-headline-text-active{animation:elementor-headline-drop-in-in .8s;opacity:1}.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-text.elementor-headline-text-inactive{animation:elementor-headline-drop-in-out .8s}@keyframes elementor-headline-drop-in-in{0%{opacity:0;transform:translateZ(100px)}to{opacity:1;transform:translateZ(0)}}@keyframes elementor-headline-drop-in-out{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translateZ(-100px)}}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-wrapper{perspective:300px}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-text{opacity:0}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-letter{backface-visibility:hidden;display:inline-block;transform:rotateY(180deg)}.elementor-headline-text-active .elementor-headline-animation-type-blinds .elementor-headline-dynamic-letter{transform:rotateY(0deg)}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-letter.elementor-headline-animation-in{animation:elementor-headline-blinds-in .6s forwards}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-letter:not(.elementor-headline-animation-in){animation:elementor-headline-blinds-out .6s forwards}@keyframes elementor-headline-blinds-in{0%{transform:rotateY(180deg)}to{transform:rotateY(0deg)}}@keyframes elementor-headline-blinds-out{0%{transform:rotateY(0)}to{transform:rotateY(-180deg)}}.elementor-headline-animation-type-wave .elementor-headline-dynamic-text{opacity:0}.elementor-headline-animation-type-wave .elementor-headline-dynamic-letter{display:inline-block;opacity:0;transform:scale(0)}.elementor-headline-text-active .elementor-headline-animation-type-wave .elementor-headline-dynamic-letter{opacity:1}.elementor-headline-animation-type-wave .elementor-headline-dynamic-letter.elementor-headline-animation-in{animation:elementor-headline-wave-up .6s forwards}.elementor-headline-animation-type-wave .elementor-headline-dynamic-letter:not(.elementor-headline-animation-in){animation:elementor-headline-wave-down .6s forwards}@keyframes elementor-headline-wave-up{0%{opacity:0;transform:scale(0)}60%{opacity:1;transform:scale(1.2)}to{opacity:1;transform:scale(1)}}@keyframes elementor-headline-wave-down{0%{opacity:1;transform:scale(1)}60%{opacity:0;transform:scale(0)}}.elementor-headline-animation-type-slide .elementor-headline-dynamic-text{opacity:0}.elementor-headline-animation-type-slide .elementor-headline-dynamic-text.elementor-headline-text-active{animation:elementor-headline-slide-in .6s;opacity:1}.elementor-headline-animation-type-slide .elementor-headline-dynamic-text.elementor-headline-text-inactive{animation:elementor-headline-slide-out .6s}@keyframes elementor-headline-slide-in{0%{opacity:0;transform:translateX(-100%)}60%{opacity:1;transform:translateX(10%)}to{opacity:1;transform:translateX(0)}}@keyframes elementor-headline-slide-out{0%{opacity:1;transform:translateX(0)}60%{opacity:0;transform:translateX(110%)}to{opacity:0;transform:translateX(100%)}}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-drop-in .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-flip .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-slide .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-slide-down .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-swirl .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-wave .elementor-headline-dynamic-wrapper{transition:width .5s}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-swirl .elementor-headline-dynamic-wrapper,.elementor-headline-animation-type-wave .elementor-headline-dynamic-wrapper{overflow:hidden}.elementor-headline-animation-type-blinds .elementor-headline-dynamic-text,.elementor-headline-animation-type-swirl .elementor-headline-dynamic-text,.elementor-headline-animation-type-wave .elementor-headline-dynamic-text{white-space:nowrap}.elementor-msie .elementor-headline--style-highlight svg{left:auto;top:auto;transform:translate(-100%)}/*! elementor-pro - v3.29.0 - 04-06-2025 */
.elementor-widget-call-to-action .elementor-widget-container,.elementor-widget-call-to-action:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-cta{display:flex;overflow:hidden;position:relative;transition:.5s}.elementor-cta--skin-classic .elementor-cta{flex-wrap:wrap}.elementor-cta--skin-classic .elementor-cta__bg-wrapper{min-height:200px;position:relative;width:100%}.elementor-cta--skin-classic .elementor-cta__content{background-color:#f9fafa;transition:all .4s;width:100%}.elementor-cta--skin-classic .elementor-cta__content-item,.elementor-cta--skin-classic .elementor-cta__content-item .elementor-icon{border-color:#3f444b;color:#3f444b;fill:#3f444b}.elementor-cta--skin-classic .elementor-cta__button.elementor-button{border-color:#3f444b;color:#3f444b}.elementor-cta--skin-cover .elementor-cta{display:block}.elementor-cta--skin-cover .elementor-cta__bg-wrapper{bottom:0;left:0;position:absolute;right:0;top:0;transition:all .4s;width:100%}.elementor-cta--skin-cover .elementor-cta__content{min-height:280px}.elementor-cta--skin-cover .elementor-cta__button.elementor-button,.elementor-cta--skin-cover .elementor-cta__content-item,.elementor-cta--skin-cover .elementor-cta__content-item .elementor-icon{border-color:#fff;color:#fff}.elementor-cta--layout-image-above .elementor-cta,.elementor-cta--layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--layout-image-left .elementor-cta,.elementor-cta--layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--layout-image-left .elementor-cta__content,.elementor-cta--layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--layout-image-right .elementor-cta{flex-direction:row-reverse}.elementor-cta__bg,.elementor-cta__bg-overlay{bottom:0;left:0;position:absolute;right:0;top:0;transition:all .4s}.elementor-cta__bg-wrapper{overflow:hidden;z-index:1}.elementor-cta__bg{background-position:50%;background-size:cover;z-index:1}.elementor-cta__bg-overlay{z-index:2}.elementor-cta__button.elementor-button{align-self:center;background:transparent;border:2px solid #fff;cursor:pointer;margin-left:auto;margin-right:auto}.elementor-cta__button.elementor-button:hover{background:transparent;text-decoration:none}.elementor-cta__title{font-size:23px}.elementor-cta__content{align-content:center;align-items:center;display:flex;flex-wrap:wrap;overflow:hidden;padding:35px;width:100%;z-index:1}.elementor-cta__content,.elementor-cta__content-item{color:#fff;position:relative;transition:.5s}.elementor-cta__content-item{margin:0;width:100%}.elementor-cta__content-item:not(:last-child){margin-bottom:15px}.elementor-cta__content-item .elementor-icon{color:#fff}.elementor-cta--valign-top .elementor-cta__content{align-content:flex-start;align-items:flex-start}.elementor-cta--valign-middle .elementor-cta__content{align-content:center;align-items:center}.elementor-cta--valign-bottom .elementor-cta__content{align-content:flex-end;align-items:flex-end}.elementor-cta:hover .elementor-cta__bg-overlay{background-color:rgba(0,0,0,.3)}@media (max-width:1024px){.elementor-cta{cursor:pointer}}@media (min-width:-1){.elementor-cta--widescreen-layout-image-above .elementor-cta,.elementor-cta--widescreen-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--widescreen-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--widescreen-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--widescreen-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--widescreen-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--widescreen-layout-image-left .elementor-cta,.elementor-cta--widescreen-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--widescreen-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--widescreen-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--widescreen-layout-image-left .elementor-cta__content,.elementor-cta--widescreen-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--widescreen-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--widescreen-layout-image-right .elementor-cta{flex-direction:row-reverse}}@media (max-width:-1){.elementor-cta--laptop-layout-image-above .elementor-cta,.elementor-cta--laptop-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--laptop-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--laptop-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--laptop-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--laptop-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--laptop-layout-image-left .elementor-cta,.elementor-cta--laptop-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--laptop-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--laptop-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--laptop-layout-image-left .elementor-cta__content,.elementor-cta--laptop-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--laptop-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--laptop-layout-image-right .elementor-cta{flex-direction:row-reverse}.elementor-cta--tablet_extra-layout-image-above .elementor-cta,.elementor-cta--tablet_extra-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--tablet_extra-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--tablet_extra-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--tablet_extra-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--tablet_extra-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--tablet_extra-layout-image-left .elementor-cta,.elementor-cta--tablet_extra-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--tablet_extra-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--tablet_extra-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--tablet_extra-layout-image-left .elementor-cta__content,.elementor-cta--tablet_extra-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--tablet_extra-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--tablet_extra-layout-image-right .elementor-cta{flex-direction:row-reverse}}@media (max-width:1024px){.elementor-cta--tablet-layout-image-above .elementor-cta,.elementor-cta--tablet-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--tablet-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--tablet-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--tablet-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--tablet-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--tablet-layout-image-left .elementor-cta,.elementor-cta--tablet-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--tablet-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--tablet-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--tablet-layout-image-left .elementor-cta__content,.elementor-cta--tablet-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--tablet-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--tablet-layout-image-right .elementor-cta{flex-direction:row-reverse}}@media (max-width:-1){.elementor-cta--mobile_extra-layout-image-above .elementor-cta,.elementor-cta--mobile_extra-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--mobile_extra-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--mobile_extra-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--mobile_extra-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--mobile_extra-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--mobile_extra-layout-image-left .elementor-cta,.elementor-cta--mobile_extra-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--mobile_extra-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--mobile_extra-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--mobile_extra-layout-image-left .elementor-cta__content,.elementor-cta--mobile_extra-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--mobile_extra-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--mobile_extra-layout-image-right .elementor-cta{flex-direction:row-reverse}}@media (max-width:767px){.elementor-cta--mobile-layout-image-above .elementor-cta,.elementor-cta--mobile-layout-image-below .elementor-cta{flex-wrap:wrap}.elementor-cta--mobile-layout-image-above .elementor-cta__bg-wrapper,.elementor-cta--mobile-layout-image-below .elementor-cta__bg-wrapper{width:100%}.elementor-cta--mobile-layout-image-above .elementor-cta{flex-direction:column}.elementor-cta--mobile-layout-image-below .elementor-cta{flex-direction:column-reverse}.elementor-cta--mobile-layout-image-left .elementor-cta,.elementor-cta--mobile-layout-image-right .elementor-cta{flex-wrap:nowrap}.elementor-cta--mobile-layout-image-left .elementor-cta__bg-wrapper,.elementor-cta--mobile-layout-image-right .elementor-cta__bg-wrapper{min-width:50%;width:auto}.elementor-cta--mobile-layout-image-left .elementor-cta__content,.elementor-cta--mobile-layout-image-right .elementor-cta__content{flex-grow:1}.elementor-cta--mobile-layout-image-left .elementor-cta{flex-direction:row}.elementor-cta--mobile-layout-image-right .elementor-cta{flex-direction:row-reverse}}.elementor-ribbon{height:150px;left:auto;overflow:hidden;position:absolute;right:0;top:0;transform:rotate(90deg);width:150px;z-index:1}.elementor-ribbon-inner{background:#000;color:#fff;font-size:13px;font-weight:800;left:0;line-height:2;margin-top:35px;text-align:center;text-transform:uppercase;transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);width:200%}.elementor-ribbon.elementor-ribbon-left{left:0;right:auto;transform:rotate(0)}.elementor-ribbon.elementor-ribbon-right{left:auto;right:0;transform:rotate(90deg)}.elementor-bg-transform .elementor-bg{will-change:transform}.elementor-bg-transform-zoom-in:hover .elementor-bg,.elementor-bg-transform-zoom-out .elementor-bg{transform:scale(1.2)}.elementor-bg-transform-zoom-out:hover .elementor-bg{transform:scale(1)}.elementor-bg-transform-move-left .elementor-bg{transform:scale(1.2) translateX(8%)}.elementor-bg-transform-move-left:hover .elementor-bg,.elementor-bg-transform-move-right .elementor-bg{transform:scale(1.2) translateX(-8%)}.elementor-bg-transform-move-right:hover .elementor-bg{transform:scale(1.2) translateX(8%)}.elementor-bg-transform-move-up .elementor-bg{transform:scale(1.2) translateY(8%)}.elementor-bg-transform-move-down .elementor-bg,.elementor-bg-transform-move-up:hover .elementor-bg{transform:scale(1.2) translateY(-8%)}.elementor-bg-transform-move-down:hover .elementor-bg{transform:scale(1.2) translateY(8%)}/*! elementor-pro - v3.29.0 - 04-06-2025 */
.elementor-testimonial__image{flex-shrink:0}.elementor-testimonial__image img{border-radius:999px;box-sizing:content-box;-o-object-fit:cover;object-fit:cover}.elementor-testimonial__footer,.elementor-testimonial__header{display:flex}.elementor-testimonial__footer cite,.elementor-testimonial__header cite{display:flex;flex-direction:column;font-size:14px;font-style:normal;line-height:1.5}.elementor-testimonial__name{font-weight:700}.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{align-items:center}.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-start:20px}.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__footer,.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__footer{flex-direction:row-reverse}.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__image+cite,.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__footer,.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__footer{flex-direction:row}.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__image+cite,.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{margin-top:25px}.elementor-testimonial--layout-image_above .elementor-testimonial{display:flex;flex-direction:column-reverse}.elementor-testimonial--layout-image_above .elementor-testimonial__footer{margin-bottom:25px}.elementor-testimonial--layout-image_stacked .elementor-testimonial__footer{flex-wrap:wrap;margin-top:25px}.elementor-testimonial--layout-image_stacked .elementor-testimonial cite,.elementor-testimonial--layout-image_stacked .elementor-testimonial__image{margin-top:15px;width:100%}.elementor-testimonial--layout-image_left .elementor-testimonial,.elementor-testimonial--layout-image_right .elementor-testimonial{align-items:stretch;display:flex}.elementor-testimonial--layout-image_left .elementor-testimonial__footer,.elementor-testimonial--layout-image_right .elementor-testimonial__footer{flex-direction:column;flex-shrink:0;text-align:center}.elementor-testimonial--layout-image_left .elementor-testimonial__image+cite,.elementor-testimonial--layout-image_right .elementor-testimonial__image+cite{margin-top:15px}.elementor-testimonial--layout-image_left.elementor-testimonial--align-center .elementor-testimonial__footer,.elementor-testimonial--layout-image_right.elementor-testimonial--align-center .elementor-testimonial__footer{justify-content:flex-start}.elementor-testimonial--layout-image_left .elementor-testimonial{flex-direction:row-reverse}.elementor-testimonial--layout-image_left .elementor-testimonial__footer{padding-inline-end:20px}.elementor-testimonial--layout-image_right .elementor-testimonial{flex-direction:row}.elementor-testimonial--layout-image_right .elementor-testimonial__footer{padding-inline-start:20px}.elementor-testimonial--align-right .elementor-testimonial{text-align:right}.elementor-testimonial--align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--align-left .elementor-testimonial{text-align:left}.elementor-testimonial--align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--align-center .elementor-testimonial{text-align:center}.elementor-testimonial--align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}.elementor-testimonial--skin-default.elementor-testimonial--layout-image_above .elementor-testimonial__cite,.elementor-testimonial--skin-default.elementor-testimonial--layout-image_left .elementor-testimonial__cite,.elementor-testimonial--skin-default.elementor-testimonial--layout-image_right .elementor-testimonial__cite{display:flex;flex-direction:column;margin-top:25px;width:100%}.elementor-testimonial--skin-bubble .elementor-testimonial__content{background-color:#f9fafa;padding:20px;position:relative}.elementor-testimonial--skin-bubble .elementor-testimonial__content:after{background-color:#f9fafa;border-width:0;box-sizing:content-box;content:"";display:block;height:14px;position:absolute;transform:scaleX(.75) rotate(45deg);width:14px}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above .elementor-testimonial__content:after{bottom:calc(100% - 7px);transform:scaleX(.75) rotate(-135deg)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-center .elementor-testimonial__content:after{left:50%;transform:translateX(-50%) scaleX(.75) rotate(-135deg)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked .elementor-testimonial__content:after{top:calc(100% - 7px)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-center .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-center .elementor-testimonial__content:after{left:50%;transform:translateX(-50%) scaleX(.75) rotate(45deg)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-left .elementor-testimonial__content:after{left:calc(20px + 50px / 2)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-right .elementor-testimonial__content:after{right:calc(20px + 50px / 2)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__content:after{left:-8px;transform:scaleY(.75) rotate(135deg)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__content:after{right:-8px;transform:scaleY(.75) rotate(-45deg)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__content:after,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__content:after{top:calc(20px + 50px / 2)}.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__footer,.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__footer{padding-top:20px}@media (min-width:-1){.elementor-testimonial--widescreen-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--widescreen-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--widescreen-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}}@media (max-width:-1){.elementor-testimonial--laptop-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--laptop-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--laptop-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}.elementor-testimonial--tablet_extra-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--tablet_extra-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--tablet_extra-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}}@media (max-width:1024px){.elementor-testimonial--tablet-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--tablet-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--tablet-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}}@media (max-width:-1){.elementor-testimonial--mobile_extra-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--mobile_extra-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--mobile_extra-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}}@media (max-width:767px){.elementor-testimonial--mobile-align-right .elementor-testimonial{text-align:right}.elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row-reverse;justify-content:end}.elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:20px;margin-inline-start:0}.elementor-testimonial--mobile-align-left .elementor-testimonial{text-align:left}.elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{flex-direction:row;justify-content:start}.elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,.elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{margin-inline-end:0;margin-inline-start:20px}.elementor-testimonial--mobile-align-center .elementor-testimonial{text-align:center}.elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,.elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer{justify-content:center}.elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite{text-align:start}}.elementor-widget-testimonial-carousel .swiper-slide{padding:20px}.elementor-widget-testimonial-carousel .elementor-testimonial__text{font-size:1.3em;font-style:italic;line-height:1.5}.elementor-widget-testimonial-carousel .elementor-testimonial__image img{height:50px;width:50px}/*! elementor-pro - v3.29.0 - 04-06-2025 */
.swiper-pagination-bullets{color:#fff;cursor:default}.swiper-slide{border-style:solid;border-width:0;overflow:hidden;transition-duration:.5s;transition-property:border,background,transform;will-change:transform}.swiper-slide:not(:hover) .e-overlay-animation-fade{opacity:0}.swiper-slide:not(:hover) .e-overlay-animation-slide-up{transform:translateY(100%)}.swiper-slide:not(:hover) .e-overlay-animation-slide-down{transform:translateY(-100%)}.swiper-slide:not(:hover) .e-overlay-animation-slide-right{transform:translateX(-100%)}.swiper-slide:not(:hover) .e-overlay-animation-slide-left{transform:translateX(100%)}.swiper-slide:not(:hover) .e-overlay-animation-zoom-in{opacity:0;transform:scale(.5)}.swiper-slide a{display:inline}.swiper-slide a.elementor-button{display:inline-block}.elementor-widget-reviews .elementor-arrows-yes .elementor-main-swiper,.elementor-widget-testimonial-carousel .elementor-arrows-yes .elementor-main-swiper{width:calc(95% - 40px)}.elementor-widget-reviews .elementor-main-swiper,.elementor-widget-testimonial-carousel .elementor-main-swiper{width:95%}.elementor-widget-reviews .swiper-wrapper,.elementor-widget-testimonial-carousel .swiper-wrapper{align-items:stretch;display:flex}.elementor-widget-reviews .swiper-slide,.elementor-widget-testimonial-carousel .swiper-slide{height:auto}.elementor-widget-reviews.elementor-pagination-type-bullets .swiper,.elementor-widget-reviews.elementor-pagination-type-bullets .swiper-container,.elementor-widget-reviews.elementor-pagination-type-fraction .swiper,.elementor-widget-reviews.elementor-pagination-type-fraction .swiper-container,.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper,.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container,.elementor-widget-testimonial-carousel.elementor-pagination-type-fraction .swiper,.elementor-widget-testimonial-carousel.elementor-pagination-type-fraction .swiper-container{padding-bottom:40px}.elementor-widget-reviews .elementor-swiper-button-prev,.elementor-widget-reviews .swiper-container-rtl .elementor-swiper-button-next,.elementor-widget-reviews .swiper-rtl .elementor-swiper-button-next,.elementor-widget-testimonial-carousel .elementor-swiper-button-prev,.elementor-widget-testimonial-carousel .swiper-container-rtl .elementor-swiper-button-next,.elementor-widget-testimonial-carousel .swiper-rtl .elementor-swiper-button-next{left:0;right:unset}.elementor-widget-reviews .elementor-swiper-button-next,.elementor-widget-reviews .swiper-container-rtl .elementor-swiper-button-prev,.elementor-widget-reviews .swiper-rtl .elementor-swiper-button-prev,.elementor-widget-testimonial-carousel .elementor-swiper-button-next,.elementor-widget-testimonial-carousel .swiper-container-rtl .elementor-swiper-button-prev,.elementor-widget-testimonial-carousel .swiper-rtl .elementor-swiper-button-prev{left:unset;right:0}.elementor-widget-reviews.elementor-pagination-type-bullets .elementor-swiper-button-next,.elementor-widget-reviews.elementor-pagination-type-bullets .elementor-swiper-button-prev,.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .elementor-swiper-button-next,.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .elementor-swiper-button-prev{top:calc(50% - 40px / 2)}.elementor-widget-media-carousel .elementor-swiper-button-prev,.elementor-widget-media-carousel .swiper-container-rtl .elementor-swiper-button-next,.elementor-widget-media-carousel .swiper-rtl .elementor-swiper-button-next{left:10px;right:unset}.elementor-widget-media-carousel .elementor-swiper-button-next,.elementor-widget-media-carousel .swiper-container-rtl .elementor-swiper-button-prev,.elementor-widget-media-carousel .swiper-rtl .elementor-swiper-button-prev{left:unset;right:10px}.wp-block-paragraph.is-style-error,.wp-block-paragraph.is-style-info,.wp-block-paragraph.is-style-success,.wp-block-paragraph.is-style-warning,p.is-style-error,p.is-style-info,p.is-style-success,p.is-style-warning{border-radius:4px;box-sizing:border-box;padding:32px}.wp-block-paragraph.is-style-error.coblocks-alert-paragraph,.wp-block-paragraph.is-style-info.coblocks-alert-paragraph,.wp-block-paragraph.is-style-success.coblocks-alert-paragraph,.wp-block-paragraph.is-style-warning.coblocks-alert-paragraph,p.is-style-error.coblocks-alert-paragraph,p.is-style-info.coblocks-alert-paragraph,p.is-style-success.coblocks-alert-paragraph,p.is-style-warning.coblocks-alert-paragraph{margin-bottom:var(--go--spacing--vertical);margin-top:var(--go--spacing--vertical)}.wp-block-paragraph:not(.has-background).is-style-info,p:not(.has-background).is-style-info{background-color:#d6efee}.wp-block-paragraph:not(.has-background).is-style-warning,p:not(.has-background).is-style-warning{background-color:#fbe7dd}.wp-block-paragraph:not(.has-background).is-style-error,p:not(.has-background).is-style-error{background-color:#ffdede}.wp-block-paragraph:not(.has-background).is-style-success,p:not(.has-background).is-style-success{background-color:#d0eac4}.wp-block-paragraph:not(.has-text-color).is-style-info,p:not(.has-text-color).is-style-info{color:#094264}.wp-block-paragraph:not(.has-text-color).is-style-warning,p:not(.has-text-color).is-style-warning{color:#8a4b30}.wp-block-paragraph:not(.has-text-color).is-style-error,p:not(.has-text-color).is-style-error{color:#8b343c}.wp-block-paragraph:not(.has-text-color).is-style-success,p:not(.has-text-color).is-style-success{color:#154a28}
.wp-block-image.is-style-bottom-wave img{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");-webkit-mask-position:bottom;mask-position:bottom}.wp-block-image.is-style-bottom-wave img,.wp-block-image.is-style-top-wave img{-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}.wp-block-image.is-style-top-wave img{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");-webkit-mask-position:top;mask-position:top}.block-editor-block-styles__item-preview .wp-block-image{margin-top:0}.block-editor-block-styles__item-preview .wp-block-image .components-resizable-box__container{height:100%!important;width:100%!important}
.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-bottom-wave{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");-webkit-mask-position:bottom;mask-position:bottom;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-top-wave{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");-webkit-mask-position:top;mask-position:top;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}
:root{--coblocks-spacing--0:0;--coblocks-spacing--1:0.5em;--coblocks-spacing--2:1em;--coblocks-spacing--3:1.5em;--coblocks-spacing--4:2em;--coblocks-spacing--5:2.5em;--coblocks-spacing--6:3em;--coblocks-spacing--7:3.5em;--coblocks-spacing--8:4em;--coblocks-spacing--9:4.5em;--coblocks-spacing--10:7em}.wp-block-media-text.is-style-card .wp-block-media-text__content{background-color:var(--wp--preset--color--background,#fff);margin-left:auto;margin-right:auto;margin-top:calc(var(--coblocks-spacing--8, 4em)*-1);padding:var(--coblocks-spacing--4,2em);width:95%}@media(min-width:600px){.wp-block-media-text.is-style-card .wp-block-media-text__content{margin-left:0;margin-right:0;margin-top:0;padding:calc(var(--coblocks-spacing--3, 1.5em)*2);right:1px;width:auto}}@media(min-width:960px){.wp-block-media-text.is-style-card .wp-block-media-text__content{padding:calc(var(--coblocks-spacing--6, 3em)*2)}}.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{margin-bottom:calc(var(--coblocks-spacing--8, 4em)*-1);margin-top:0}@media(min-width:600px){.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{margin-bottom:0}}.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:auto;margin-right:auto;margin-top:calc(var(--coblocks-spacing--4, 2em)*-1);width:90%}@media(min-width:600px){.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:0;margin-left:calc(var(--coblocks-spacing--8, 4em)*-1);margin-right:0;margin-top:0;width:auto}}@media(min-width:960px){.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-2)}}.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:0;margin-top:0;width:auto}@media(min-width:600px){.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:calc(var(--coblocks-spacing--8, 4em)*-1);width:175%}}@media(min-width:960px){.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-right:calc(var(--coblocks-spacing--10, 7em)*-2)}}@media(min-width:600px){.wp-block-media-text.is-style-card .wp-block-media-text__content,.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-1)}.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content,.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:calc(var(--coblocks-spacing--10, 7em)*-1)}}.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:auto;margin-right:auto;width:90%}@media(min-width:600px){.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-1);margin-right:inherit;margin-top:inherit;width:auto}}.wp-block-media-text.is-style-outline .wp-block-media-text__content h1,.wp-block-media-text.is-style-outline .wp-block-media-text__content h2,.wp-block-media-text.is-style-outline .wp-block-media-text__content h3,.wp-block-media-text.is-style-outline .wp-block-media-text__content h4,.wp-block-media-text.is-style-outline .wp-block-media-text__content h5,.wp-block-media-text.is-style-outline .wp-block-media-text__content h6,.wp-block-media-text.is-style-outline .wp-block-media-text__content p{background-color:var(--wp--preset--color--background,#fff);box-shadow:.5rem 0 0 var(--wp--preset--color--background,#fff),-.5rem 0 0 var(--wp--preset--color--background,#fff);display:inline}.wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block-buttons{margin-top:var(--coblocks-spacing--5,2.5em)}.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{width:100%}@media(min-width:600px){.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{margin-left:.5rem;width:175%}}.wp-block-media-text .wp-block-media-text__content :first-child{margin-top:0}@media(min-width:600px){.editor-styles-wrapper .wp-block-media-text.is-style-card .wp-block-media-text__content{right:1px}.editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{left:1px;right:auto}}.editor-styles-wrapper .wp-block-media-text.is-style-card .components-resizable-box__handle:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline .components-resizable-box__handle:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap .components-resizable-box__handle:after{top:-8px}.editor-styles-wrapper .wp-block-media-text.is-style-card.is-selected .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline.is-selected .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap.is-selected .wp-block-media-text__media:after{background:var(--wp-admin-theme-color,#007cba);border:2px solid #fff;border-radius:50%;bottom:-7px;content:"";cursor:inherit;display:block;height:15px;position:absolute;right:-8px;width:15px;z-index:9999}.editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__media:after{left:-8px;right:inherit}.editor-styles-wrapper .wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block.wp-block-buttons{margin-top:var(--coblocks-spacing--5,2.5em)!important}
:root{--coblocks-spacing--0:0;--coblocks-spacing--1:0.5em;--coblocks-spacing--2:1em;--coblocks-spacing--3:1.5em;--coblocks-spacing--4:2em;--coblocks-spacing--5:2.5em;--coblocks-spacing--6:3em;--coblocks-spacing--7:3.5em;--coblocks-spacing--8:4em;--coblocks-spacing--9:4.5em;--coblocks-spacing--10:7em}.is-style-checkbox li{list-style-type:none!important;padding-left:10px;position:relative}@media(min-width:600px){.is-style-checkbox li{padding-left:12px}}.is-style-checkbox li:before{background-color:currentColor;background-size:cover;content:"";display:inline-block;height:20px;left:-20px;-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);position:absolute;top:6px;transform:scale(.9);width:20px}@media(min-width:600px){.is-style-checkbox li:before{top:8px;transform:0}}.is-style-checkbox li li:before{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+);mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+)}.is-twentynineteen .is-style-checkbox li:before{top:10px}.is-style-none,.is-style-none li{list-style-type:none!important;padding-left:0!important}.is-style-none li:before{content:"​"}
.is-style-circular .wp-block-button__link{border-radius:100px!important}.is-style-3d .wp-block-button__link{box-shadow:inset 0 -3px 0 0 #00000040}.is-style-shadow{z-index:1}.is-style-shadow .wp-block-button__link{box-shadow:0 4px 6px #0000001c,0 1px 3px rgba(0,0,0,.075)}
.components-coblocks-animation-toggle.has-animation{position:relative}.components-coblocks-animation-toggle.has-animation :after{border-color:#0000 #1e1e1e #1e1e1e #0000;border-style:solid;border-width:4px;content:"";display:block;height:8px;position:absolute;right:0;top:1px;transform:rotate(-90deg);width:8px}.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .medium-circle{fill:#727272}.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .small-circle{fill:#c6c6c6}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .large-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .large-circle{animation:bounce .3s ease-in;animation-fill-mode:forwards}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .medium-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .medium-circle{animation:bounce .3s ease-in;animation-delay:.1s;animation-fill-mode:forwards;fill:rgba(var(--wp-admin-theme-color-rgb),.66);position:relative}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .small-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .small-circle{animation:bounce .3s ease-in;animation-delay:.2s;animation-fill-mode:forwards;fill:rgba(var(--wp-admin-theme-color-rgb),.33)}.components-coblocks-animation-dropdown .components-popover__content{border-color:#1e1e1e;box-shadow:none}.components-coblocks-animation-dropdown .components-menu-group+.components-menu-group{border-top-color:#1e1e1e}.components-coblocks-animation-dropdown .components-menu-item__button.components-button.has-icon{padding-right:6px}@keyframes bounce{0%{transform:translate(0)}50%{transform:translateY(-2px)}to{transform:translate(0)}}.coblocks__preview .wp-block{margin:0;max-width:none!important}.coblocks__preview .components-resizable-box__container{width:100%!important}.coblocks__preview .components-tip{margin-top:12px}.coblocks__preview .block-editor-block-preview__content .block-editor-block-list__block{margin-bottom:0;margin-top:0}body:not(.amp) .coblocks-animate{animation-fill-mode:forwards;animation-timing-function:ease-in;opacity:0}body:not(.amp) .coblocks-animate.animate-loop{animation-iteration-count:infinite}body:not(.amp) .coblocks-animate.fadeIn{animation-duration:.75s;animation-name:fadeIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}body:not(.amp) .coblocks-animate.zoomIn{animation-duration:.75s;animation-name:zoomIn}@keyframes zoomIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}body:not(.amp) .coblocks-animate.slideInLeft{animation-duration:.75s;animation-name:slideInLeft}@keyframes slideInLeft{0%{opacity:0;transform:translateX(-5em)}to{opacity:1;transform:translateX(0)}}body:not(.amp) .coblocks-animate.slideInRight{animation-duration:.75s;animation-name:slideInRight}@keyframes slideInRight{0%{opacity:0;transform:translateX(5em)}to{opacity:1;transform:translateX(0)}}body:not(.amp) .coblocks-animate.slideInBottom{animation-duration:.75s;animation-name:slideInBottom}@keyframes slideInBottom{0%{opacity:0;transform:translateY(5em)}to{opacity:1;transform:translateY(0)}}body:not(.amp) .coblocks-animate.clipHorizontal{animation-duration:.75s;animation-name:clipHorizontal}@keyframes clipHorizontal{0%{clip-path:polygon(0 50%,0 100%,0 100%,0 50%,100% 50%,100% 0,100% 0,100% 50%);opacity:0}to{clip-path:polygon(0 50%,0 100%,100% 100%,100% 50%,100% 50%,100% 0,0 0,0 50%);opacity:1}}body:not(.amp) .coblocks-animate.clipVertical{animation-duration:.75s;animation-name:clipVertical}@keyframes clipVertical{0%{clip-path:polygon(50% 0,100% 0,100% 0,50% 0,50% 100%,0 100%,0 100%,50% 100%);opacity:0}to{clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,50% 100%,0 100%,0 0,50% 0);opacity:1}}
div[id*=ays-survey-container].ays-survey-container *{box-sizing:border-box}div[id*=ays-survey-container][data-theme=minimal].ays-survey-container .ays-survey-question:not(.ays-has-error),div[id*=ays-survey-container][data-theme=modern].ays-survey-container .ays-survey-question:not(.ays-has-error){border-right:unset!important}.ays-survey-container[id^=ays-survey-container] .ays-survey-minimal-theme-question .ays-survey-answer-label input[type=checkbox],.ays-survey-container[id^=ays-survey-container] .ays-survey-minimal-theme-question .ays-survey-answer-label input[type=radio]{display:initial!important}.ays-survey-container .ays-survey-section label.ays-survey-answer-label input[type=checkbox],.ays-survey-container .ays-survey-section label.ays-survey-answer-label input[type=radio],.ays-survey-container[id^=ays-survey-container] .ays-survey-minimal-theme-question .ays-survey-answer-label .ays-survey-answer-star-radio input[type=checkbox],.ays-survey-container[id^=ays-survey-container] .ays-survey-minimal-theme-question .ays-survey-answer-label .ays-survey-answer-star-radio input[type=radio],.display_none_important{display:none!important}.ays-survey-container{-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,.37);box-shadow:0 1px 4px 0 rgba(0,0,0,.37);word-wrap:break-word;background-color:transparent;-webkit-box-shadow:none;box-shadow:none;margin-bottom:0;padding-bottom:0;word-wrap:break-word;min-width:250px;max-width:100%!important;position:relative}.ays-survey-container .ays-survey-section,.ays-survey-container .ays-survey-section .ays-survey-display-none,.ays-survey-container .ays-survey-section .ays-survey-loader,.ays-survey-container .ays-survey-section .ays-survey-thank-you-page,.ays-survey-popup-survey-window .ays-survey-popup-close-full-screen,.display_none_not_important,div[id*=ays-survey-container-] div.ays-survey-full-screen-mode .ays-survey-close-full-screen{display:none}.ays-survey-container .ays-survey-section.active-section,.elementor-editor-active .elementor-element .elementor-shortcode .ays-survey-container .ays-survey-section:first-of-type{display:block}.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content a.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content button.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content input.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-simple-button-container .ays-survey-button-content .ays-survey-button{width:auto}.ays-survey-container .ays-survey-section .ays-survey-section-header{margin-top:12px;background-color:#fff;border:1px solid #dadce0;border-radius:8px;margin-bottom:12px;padding:22px 24px 24px;position:relative;border-top:10px solid #ff5722;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.141),0 1px 3px 0 rgba(0,0,0,.122)}.ays-survey-container .ays-survey-section .ays-survey-section-title-row{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:32px;font-weight:400;color:#202124;line-height:135%;max-width:100%;min-width:0}.ays-survey-container .ays-survey-section .ays-survey-title{font-family:'Google Sans',Roboto,Arial,sans-serif;margin-bottom:12px}.ays-survey-container .ays-survey-section .ays-survey-section-desc{font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;color:#202124;margin-top:12px}.ays-survey-container .ays-survey-section .ays_survey_login_form,.ays-survey-container .ays-survey-section.ays-survey-section-start-page .ays-survey-section-header,div[id*=ays-survey-container-] .ays-survey-social-shares{text-align:center}.ays-survey-container .ays-survey-section.ays-survey-section-start-page .ays-survey-section-header .ays-survey-section-title-row{justify-content:center}.ays-survey-container .ays-survey-section .ays-survey-section-questions-count{font-family:Roboto,Arial,sans-serif;font-size:18px;text-align:right;cursor:help;font-weight:600}.ays-survey-container .ays-survey-section .ays-survey-question{-webkit-transition:background-color .2s cubic-bezier(0,0,.2,1);transition:background-color .2s cubic-bezier(0,0,.2,1);background-color:#fff;border:1px solid #dadce0;border-radius:8px;margin-bottom:12px;padding:24px;page-break-inside:avoid;word-wrap:break-word;border-left:5px solid #ff5722;position:relative}.ays-survey-container .ays-survey-title-wrap .ays-survey-cover-photo-title-wrap{padding-left:5px}.ays-survey-container .ays-survey-cover-photo-title-wrap.ays-survey-no-cover-photo{background-image:unset!important}.ays-survey-container .ays-survey-cover-photo-title-wrap{height:150px}.ays-survey-container .ays-survey-section .ays-survey-question-header{display:-webkit-box;display:-webkit-flex;display:flex;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-bottom:16px;-webkit-box-align:start;box-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;max-width:100%;min-width:0;position:relative}.ays-survey-container .ays-survey-section .ays-survey-question-title{font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:16px;letter-spacing:.1px;line-height:1;color:#202124;font-weight:400;width:100%;word-break:break-word;display:block;margin-bottom:10px}.ays-survey-container .ays-survey-section .ays-survey-question-header-content{display:flex;justify-content:space-between;width:100%}.ays-survey-container .ays-survey-section .ays-survey-question-image-container{width:100%;padding:5px 0}.ays-survey-container .ays-survey-section .ays-survey-question-image{max-width:100%;object-position:center center}.ays-survey-container .ays-survey-section .ays-survey-question-required-icon{color:#d93025}.ays-survey-container .ays-survey-section .ays-survey-question-answers{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;align-items:flex-start;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-wrap:wrap;flex-wrap:wrap;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:100%}.ays-survey-container .ays-survey-section .ays-survey-answer{display:-webkit-box;display:-webkit-flex;display:flex;min-height:24px;padding:.5em .5em .5em 0}.ays-survey-container .ays-survey-section .ays-survey-question-type-text-box,.ays-survey-container .ays-survey-section .ays-survey-question[data-type=email] .ays-survey-answer,.ays-survey-container .ays-survey-section .ays-survey-question[data-type=name] .ays-survey-answer,.ays-survey-container .ays-survey-section .ays-survey-question[data-type=number] .ays-survey-answer,.ays-survey-container .ays-survey-section .ays-survey-question[data-type=short_text] .ays-survey-answer,.ays-survey-container .ays-survey-section .ays-survey-question[data-type=text] .ays-survey-answer,.ays-survey-container .ays-survey-title-wrap{width:100%}.ays-survey-container .ays-survey-section .ays-survey-answer::after,.ays-survey-container .ays-survey-section .ays-survey-answer::before,.ays-survey-container .ays-survey-section .ays-survey-question-answers::after,.ays-survey-container .ays-survey-section .ays-survey-question-answers::before{content:none!important}.ays-survey-container .ays-survey-section .ays-survey-answer-label{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;cursor:pointer;outline:unset}.ays-survey-container .ays-survey-section .ays-survey-answer-label-content{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:1;flex-shrink:1;min-width:0}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]~.ays-survey-answer-label-content .ays-survey-answer-icon-content,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]~.ays-survey-answer-label-content .ays-survey-answer-icon-content{-webkit-transition:border-color .2s cubic-bezier(.4,0,.2,1);transition:border-color .2s cubic-bezier(.4,0,.2,1);-webkit-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;outline:0;display:inline-block;-webkit-flex-shrink:0;flex-shrink:0;height:20px;position:relative;vertical-align:middle;width:20px;z-index:0}.ays-survey-container .ays-survey-section .ays-survey-answer-icon-content-1,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-1,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-1{-webkit-animation:.2s forwards agmAnimateSelectOut;animation:.2s forwards agmAnimateSelectOut;cursor:pointer;height:20px;position:relative;width:20px}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2{border:2px solid #5f6368;-webkit-border-radius:50%;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;height:20px;width:20px;position:absolute;bottom:0;left:0;right:0;top:0;margin:0}.ays-survey-container .ays-survey-section .ays-survey-answer-label .ays-survey-answer-icon-ink{position:absolute;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .15s;transition:opacity .15s;background-color:rgba(218,220,224,.2);-webkit-border-radius:100%;border-radius:100%;height:20px;opacity:0;outline:transparent solid .1px;pointer-events:none;width:20px;z-index:-1;bottom:0;left:0;right:0;top:0}.ays-survey-container .ays-survey-section .ays-survey-answer-label:focus .ays-survey-answer-icon-ink,.ays-survey-container .ays-survey-section .ays-survey-answer-label:hover .ays-survey-answer-icon-ink{-webkit-transform:scale(2);transform:scale(2);opacity:1;background-color:rgba(255,87,34,.04)}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-3,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-3{border:5px solid #f40000;-webkit-border-radius:50%;border-radius:50%;left:50%;position:absolute;top:50%;-webkit-transition:transform .28s;transition:transform .28s;-webkit-transform:translateX(-50%) translateY(-50%) scale(0);transform:translateX(-50%) translateY(-50%) scale(0);cursor:pointer;visibility:hidden}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2{border-color:#f40000}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-3,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-3{-webkit-transform:translateX(-50%) translateY(-50%) scale(1);transform:translateX(-50%) translateY(-50%) scale(1);visibility:visible}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]:checked~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-3,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]~.ays-survey-answer-label-content .ays-survey-answer-icon-content .ays-survey-answer-icon-content-2{border-radius:0}.ays-survey-container .ays-survey-section .ays-survey-question-answers.ays-survey-question-answers-grid{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-flex-direction:row;flex-direction:row;width:100%}.ays-survey-container .ays-survey-section .ays-survey-answer.ays-survey-answer-grid{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;max-width:260px;min-height:24px;padding:.5em .5em .5em 0;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;width:45%}.ays-survey-container .ays-survey-section .ays-survey-answer-label.ays-survey-answer-label-grid{flex-wrap:wrap}.ays-survey-container .ays-survey-section .ays-survey-answer-label .ays-survey-answer-image-container{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;-webkit-align-self:flex-start;align-self:flex-start;display:-webkit-box;display:-webkit-flex;display:flex;height:195px;margin:12px 0;line-height:195px;outline-width:0;padding:8px;width:260px;box-shadow:0 1px 2px 0 rgba(60,64,67,.302),0 1px 3px 1px rgba(60,64,67,.149);-webkit-border-radius:4px;border-radius:4px;background-color:#fff;border-color:#ff5722}.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=checkbox]:checked~.ays-survey-answer-image-container,.ays-survey-container .ays-survey-section .ays-survey-answer-label input[type=radio]:checked~.ays-survey-answer-image-container{border-style:solid;border-width:2px;outline-width:0;padding:6px}.ays-survey-container .ays-survey-section .ays-survey-answer-label .ays-survey-answer-image-container img{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;max-height:100%;max-width:100%;min-height:0;min-width:0;vertical-align:middle;object-fit:contain;object-position:center center;width:100%;height:100%}@media screen and (max-width:580px){.ays-survey-container .ays-survey-section .ays-survey-answer.ays-survey-answer-grid{width:100%;margin:0}.ays-survey-container .ays-survey-section .ays-survey-button-content .ays-survey-answer-clear-selection-text{line-height:30px!important}}.ays-survey-container .ays-survey-section .ays-survey-answer-label-content>span,.ays-survey-container .ays-survey-section input.ays-survey-question-input~.ays-survey-input-underline,.ays-survey-container .ays-survey-section input.ays-survey-question-input~.ays-survey-input-underline-animation{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;box-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;color:#202124;min-width:1px}.ays-survey-container .ays-survey-section .ays-survey-answer-label-content>span{margin-left:.75em}.ays-survey-container .ays-survey-section .ays-survey-answer-label.ays-survey-answer-label-other{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;padding-right:20px;width:auto;white-space:nowrap}.ays-survey-container .ays-survey-section .ays-survey-answer .ays-survey-answer-other-text{display:block;width:100%;position:relative;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;min-width:100px;max-width:100%;margin-top:10px}.ays-survey-container .ays-survey-section .ays-survey-answer .ays-survey-answer-other-text input.ays-survey-answer-other-input{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;border:none;display:block;font:400 16px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;margin:0;min-width:0;outline:0;padding:.125em 0;z-index:0}.ays-survey-container .ays-survey-section .ays-survey-question-select.dropdown div.text,.ays-survey-container .ays-survey-section .ays-survey-restricted-content{font-family:'Google Sans',Roboto,Arial,sans-serif}.ays-survey-container .ays-survey-section .ays-survey-question-select.dropdown div.item{font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:16px!important;font-weight:500!important;letter-spacing:.1px;line-height:24px!important;color:#202124!important;word-break:break-word}.ays-survey-container .ays-survey-section .ays-survey-question-select.dropdown div.item img.ays-survey-answer-image{vertical-align:middle;margin-top:0;margin-bottom:0;width:50px;height:50px}.ays-survey-container .ays-survey-section .ays-survey-question-select.dropdown div.text img.ays-survey-answer-image{font-size:initial;line-height:1;height:auto;margin:0 .78571429rem 0 0}.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container,.ays-survey-container .ays-survey-section .ays-survey-simple-button-container{-webkit-border-radius:4px;border-radius:4px;color:#5f6368;cursor:pointer;display:inline-block;overflow:hidden;position:relative;z-index:0;box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.141),0 1px 3px 0 rgba(0,0,0,.122);margin-right:14px;outline:unset}.ays-survey-container .ays-survey-section .ays-survey-simple-button-container{box-shadow:none}.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content,.ays-survey-container .ays-survey-section .ays-survey-simple-button-container .ays-survey-button-content{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content a.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content button.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container .ays-survey-section-button-content input.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-simple-button-container .ays-survey-button-content .ays-survey-button{display:inline-block;margin:0;padding:0 24px;background-color:#fff;color:#f40000;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:36px;text-decoration:none;text-transform:none;min-width:auto;outline:0;transition:background .2s .1s;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-webkit-transition:background .2s .1s;border:0;cursor:pointer;border-radius:0}.ays-survey-container .ays-survey-section .ays-survey-simple-button-container .ays-survey-button-content .ays-survey-button{font-size:12px;padding:0;background-color:unset;line-height:initial}.ays-survey-container .ays-survey-section .ays-survey-simple-button-container:hover .ays-survey-button-content .ays-survey-button{transform:none}.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:focus .ays-survey-section-button-content a.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:focus .ays-survey-section-button-content button.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:focus .ays-survey-section-button-content input.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:hover .ays-survey-section-button-content a.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:hover .ays-survey-section-button-content button.ays-survey-section-button,.ays-survey-container .ays-survey-section .ays-survey-section-buttons .ays-survey-section-button-container:hover .ays-survey-section-button-content input.ays-survey-section-button{background-color:rgba(244,0,0,.04);transform:none}@keyframes agmAnimateSelectIn{0%{height:0;width:0}100%{height:100%;width:100%}}@keyframes agmAnimateSelectOut{0%{height:0;width:0}100%{height:100%;width:100%}}.ays-survey-container .ays-survey-section .ays-survey-input{box-shadow:none!important;border:0!important;outline:0!important;background-image:none!important;margin:0!important}.ays-survey-container .ays-survey-section .ays-survey-input:active,.ays-survey-container .ays-survey-section .ays-survey-input:focus{outline:0!important;box-shadow:none!important;border:0!important;background-image:none!important;margin:0!important}.ays-survey-container .ays-survey-section .ays-survey-input:focus~.ays-survey-input-underline-animation{outline:0!important;box-shadow:none!important;border:0!important;height:2px;background-color:#ff5722;-webkit-animation:.3s cubic-bezier(.4,0,.2,1) quantumWizPaperInputAddUnderline;animation:.3s cubic-bezier(.4,0,.2,1) quantumWizPaperInputAddUnderline;-webkit-transform:scaleX(1);transform:scaleX(1)}.ays-survey-container .ays-survey-section .ays-survey-input-underline{background-color:rgba(0,0,0,.12);height:1px;left:0;margin:0;padding:0;position:absolute;width:100%}.ays-survey-container .ays-survey-section .ays-survey-input-underline-animation{-webkit-transform:scaleX(0);transform:scaleX(0);background-color:#4285f4;height:2px;left:0;margin:0;padding:0;position:absolute}.ays-survey-container .ays-survey-section .ays-survey-remove-default-border,.ays-survey-container .ays-survey-section .ays-survey-remove-default-border:focus{border:0;box-shadow:unset;outline:0}.ays-survey-container .ays-survey-section .ays-survey-question-box{width:60%}.ays-survey-container .ays-survey-date-and-time-answer,.ays-survey-container .ays-survey-section .ays-survey-question-date-box{width:100%!important}.ays-survey-container .ays-survey-section .ays-survey-question-input-box{position:relative}.ays-survey-container .ays-survey-section .ays-survey-question-input{min-height:1.5em;max-width:100%;position:relative;vertical-align:top}.ays-survey-container .ays-survey-section input.ays-survey-question-input{height:40px;text-indent:15px}.ays-survey-container .ays-survey-section input.ays-survey-question-input.ays-survey-question-input~.ays-survey-input-underline,.ays-survey-container .ays-survey-section input.ays-survey-question-input.ays-survey-question-input~.ays-survey-input-underline-animation,.ays-survey-container .ays-survey-section textarea.ays-survey-question-input-textarea.ays-survey-question-input~.ays-survey-input-underline,.ays-survey-container .ays-survey-section textarea.ays-survey-question-input-textarea.ays-survey-question-input~.ays-survey-input-underline-animation{width:calc(100%)}.ays-survey-container .ays-survey-section .ays-survey-question .ays-survey-question-input{width:100%;margin:0;background-color:#f8f9fa!important;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;color:initial}.ays-survey-container .ays-survey-section .ays-survey-question .ays-survey-question-input::-webkit-input-placeholder{color:#757575}.ays-survey-container .ays-survey-section .ays-survey-question.isDisabled .ays-survey-question-input,.ays-survey-container .ays-survey-section .ays-survey-question.isDisabled .ays-survey-question-select.ui.selection.dropdown,.ays-survey-container .ays-survey-section .ays-survey-question:not(.isDisabled):hover .ays-survey-question-input,.ays-survey-container .ays-survey-section .ays-survey-question:not(.isDisabled):hover .ays-survey-question-select.ui.selection.dropdown{background-color:rgba(220,220,220,.8)}.ays-survey-container .ays-survey-section .ays-survey-question.isDisabled .ays-survey-question-select.ui.selection.dropdown .default.text,.ays-survey-container .ays-survey-section .ays-survey-question:not(.isDisabled):hover .ays-survey-question-select.ui.selection.dropdown .default.text{color:#666}.ays-survey-container .ays-survey-section .ays-survey-question .ays-survey-question-select.ui.selection.dropdown{min-width:200px;height:40px}.ays-survey-container .ays-survey-section .ays-survey-question-validation-error,.ays-survey-container .ays-survey-section .ays-survey-votes-count-validation-error{font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:16px;color:#d93025;display:none}.ays-survey-container .ays-survey-section .ays-survey-question.ays-has-error{border-color:#d93025}.ays-survey-container .ays-survey-section .ays-survey-question.ays-has-error .ays-survey-question-validation-error,.ays-survey-container .ays-survey-section .ays-survey-question.ays-has-error .ays-survey-votes-count-validation-error{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex}.ays-survey-container .ays-survey-section .ays-survey-question.ays-has-error .ays-survey-question-validation-error img,.ays-survey-container .ays-survey-section .ays-survey-question.ays-has-error .ays-survey-votes-count-validation-error img{margin-right:12px}.ays-survey-container .ays-survey-section .ays-survey-question-input-textarea{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;background-color:transparent;border:none;-webkit-box-sizing:content-box;box-sizing:content-box;caret-color:#1a73e8;display:block;min-height:24px;outline:0;overflow-y:visible;overflow-x:hidden;padding:16px 0 16px 16px;resize:none;white-space:pre-wrap;word-wrap:break-word;z-index:1}.ays-survey-container .ays-survey-section textarea.ays-survey-question-input-textarea{max-height:1000px;overflow:auto scroll;margin:0;box-sizing:border-box}.ays-survey-container .ays-survey-section input.ays-survey-question-input.ays-survey-question-input::-webkit-inner-spin-button,.ays-survey-container .ays-survey-section input.ays-survey-question-input.ays-survey-question-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.ays-survey-container .ays-survey-section input.ays-survey-question-input.ays-survey-question-input[type=number]{-moz-appearance:textfield}.ays-survey-container .ays-survey-section .ays-survey-question-select-conteiner,.ays-survey-container .ays-survey-section .ays-survey-question-type-select-box{padding:0;width:100%!important}.ays-survey-container .ays-survey-question-box.ays-survey-question-date-time-box .ays-survey-date-time-inner-box{display:flex;flex-wrap:wrap;gap:10px}.ays-survey-container .ays-survey-section .ays-survey-question-select-conteiner .select2-container{display:block;width:100%!important}.ays-survey-container .ays-survey-section .ays-survey-answer-clear-selection-container{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.ays-survey-container .ays-survey-section .ays-survey-visibility-none{visibility:hidden}.ays-survey-container .ays-survey-section .ays-survey-restricted-content p{margin:0}.ays-survey-container .ays-survey-section .ays-survey-loader{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;justify-content:center;align-items:center}.ays-survey-container .ays-survey-section .ays-survey-redirect-timer{text-align:center;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:18px;font-weight:500;letter-spacing:.25px;line-height:36px}@keyframes quantumWizPaperInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes quantumWizPaperInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.ays-survey-container .ays-survey-section .ays_survey_login_form form p{margin-top:5px;margin-bottom:15px}.ays-survey-container .ays-survey-section .ays_survey_login_form label{display:block;cursor:pointer;margin:0}.ays-survey-container .ays-survey-section .ays_survey_login_form .ays-survey-question-input-box{width:300px;margin:0 auto}.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=password],.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=text]{box-shadow:none!important;border:0!important;outline:0!important;min-height:1.5em;position:relative;vertical-align:top;width:100%;margin:0;background-color:#f8f9fa;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=password]:active,.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=password]:focus,.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=text]:active,.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=text]:focus{outline:0!important;box-shadow:none!important;border:0!important}.ays-survey-container .ays-survey-section .ays_survey_login_form .ays-survey-answer-label{width:auto;display:inline-block}.ays-survey-container .ays-survey-section .ays_survey_login_form input[type=submit].ays-survey-section-button{font-size:16px!important;padding:5px 24px!important;background-color:#cfcfcf}.ays-survey-container .ays-survey-section .ays-survey-question .ays-survey-image-logo-url{position:absolute;right:5px;bottom:0}.ays-survey-container .ays-survey-section .ays-survey-question .ays-survey-image-logo-url-img{width:40px;height:40px;object-fit:cover}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn{position:relative;display:inline-block;height:24px;margin:5px 5px 0 0;padding:2px 8px;line-height:1.53;letter-spacing:.04em;vertical-align:top;font-size:12px;font-weight:700;font-family:"Helvetica Neue",Arial,sans-serif;color:#111;background:#e0e0e0;border:1px solid #c7c7c7;border-radius:2px;text-decoration:none;transition:.2s}div[id*=ays-survey-container-] .ays-survey-social-shares a.ays-survey-share-btn:focus{background:#08669c}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-linkedin{background:#0976b4;color:#fff;border-color:#08669c}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-linkedin:focus,div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-linkedin:hover{background:#08669c;border-color:#075683}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-linkedin:active{background:#075683;border-color:#05466b}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-facebook{background:#3b5998;color:#fff;border-color:#344e86}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-facebook:focus,div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-facebook:hover{background:#344e86;border-color:#2d4373}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-facebook:active{background:#2d4373;border-color:#263961}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-twitter{background:#000;color:#fff;border-color:#000}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-twitter:active,div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-twitter:hover,div[id*=ays-survey-container-] .ays-survey-social-shares a.ays-survey-share-btn-twitter:focus{background:#000;border-color:#000}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-vkontakte{background:#486c91;color:#fff;border-color:#4b719a}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-vkontakte:focus,div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-vkontakte:hover{background:#2a6098;border-color:#4b719a}div[id*=ays-survey-container-] .ays-survey-social-shares .ays-survey-share-btn-vkontakte:active{background:#4b719a;border-color:#4b719a}.ays-survey-popup-survey-window .ays-survey-popup-full-screen-mode{height:20px;text-align:right}.ays-survey-popup-survey-window .ays-survey-popup-full-screen-mode a.ays-survey-popup-full-screen-container{cursor:pointer;outline:0;border:none;box-shadow:none;margin:0;padding:0;box-sizing:border-box;text-decoration:none}div[id*=ays-survey-container-] div.ays-survey-full-screen-mode .ays-survey-full-screen-container{cursor:pointer;width:24px;height:24px}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title div.ays-survey-full-screen-mode{display:flex;height:100%;align-items:flex-end;padding:5px}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title{display:flex;align-items:flex-end;justify-content:space-between}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title div.ays-survey-full-screen-mode svg{max-width:none}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title div.ays-survey-full-screen-mode svg.ays-survey-open-full-screen{display:inline}div[id*=ays-survey-container-] .ays-survey-footer-with-live-bar,div[id*=ays-survey-container-] .ays-survey-live-bar-main{display:flex;justify-content:space-between;flex-wrap:wrap}div[id*=ays-survey-container-] .ays-survey-live-bar-wrap{height:12px;width:190px;border-radius:25px;background:#000;margin-top:10px;border:1px solid #000;margin-right:5px}div[id*=ays-survey-container-] .ays-survey-live-bar-fill{height:100%;border-radius:25px}div[id*=ays-survey-container-] .ays-survey-live-bar-main{padding:0 10px}.ays-survey-container .ays-survey-title{font-size:2rem;margin-bottom:12px;display:block;margin-block-start:0.83em;margin-block-end:0.83em;margin-inline-start:0;margin-inline-end:0;font-weight:700}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title span{margin:0 0 6px}div[id*=ays-survey-container-] div.ays-survey-full-screen-and-title.ays-survey-full-screen-and-no-title{justify-content:flex-end}button.ays-survey-links-by-category-link-button{padding:10px 30px;background:#4169e1;border-radius:4px}button.ays-survey-links-by-category-link-button>a.ays-survey-links-by-category-link{color:#fff;text-decoration:none}button.ays-survey-links-by-category-link-button>a.ays-survey-links-by-category-link:hover{text-decoration:underline}button.ays-survey-links-by-category-link-button:disabled{background:#afb0b0}.ays-survey-container .ays-survey-sections .ays-survey-question sup{position:static;padding-left:5px}.ays-survey-popup-survey-window{position:fixed;top:0;left:0;right:0;bottom:0;margin:auto;max-width:100%;max-height:100%;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99999999999;pointer-events:fill;scrollbar-color:#d6d6d6;scrollbar-width:thin;padding:50px;border-radius:10px;box-shadow:0 4.271844863891602px 8.543689727783203px 0 #6061673D}.ays-survey-popup-survey-window .ays-survey-popup-btn-close{display:flex;justify-content:flex-end;margin:4px;cursor:pointer;position:absolute;width:24px;height:24px;top:10px;right:10px;transition:box-shadow 280ms cubic-bezier(.4, 0, .2, 1);z-index:10}.ays-survey-popup-survey-window .ays-survey-popup-btn-close.ays-survey-popup-btn-close-timer{font-weight:700;justify-content:center;align-items:center;font-size:11px;line-height:1}.ays-survey-popup-survey-window .ays-survey-popup-btn-close .ays-survey-popup-btn-close-icon{width:17px;height:17px}.ays-survey-popup-survey-window .ays-survey-popup-content{height:100%;width:100%;overflow-y:auto;padding:0 8px 0 0}.ays-survey-popup-survey-window .ays-survey-popup-content::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:10px;background-color:#f5f5f5}.ays-survey-popup-survey-window .ays-survey-popup-content::-webkit-scrollbar{width:3px;height:3px;background-color:#f5f5f5}.ays-survey-popup-survey-window .ays-survey-popup-content::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#d6d6d6}.ays-survey-popup-trigger-button-conainer-main{position:fixed;text-align:center;font-size:12px;cursor:pointer;background-color:#a8a5a5;color:#fff}.ays-survey-container .ays-survey-answer-label i.ays-survey-star-icon{cursor:pointer;font-size:25px;color:#fc0;font-family:FontAwesome!important;transform-origin:bottom;transform:scale(1);transition:.1s ease-in-out}.ays-survey-container .ays-survey-answer-label i.ays-survey-star-icon.fa-star{transform:scale(1.05)}.ays-survey-container[dir=rtl] .ays-survey-answer-star-list-main .ays-survey-answer-star-list-container .ays-survey-answer-star-list-row .ays-survey-answer-star-list-column.ays-survey-answer-star-list-column-row-header{text-align:right}.ays-survey-container .ays-survey-answer-linear-scale,.ays-survey-container .ays-survey-answer-star{display:-webkit-box;display:-webkit-flex;display:flex;width:100%;overflow-x:auto}.ays-survey-container .ays-survey-answer-linear-scale-radios,.ays-survey-container .ays-survey-answer-star-radios{display:flex;justify-content:center}.ays-survey-container .ays-survey-answer-linear-scale-label,.ays-survey-container .ays-survey-answer-star-label{-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-direction:column;flex-direction:column;text-align:center}.ays-survey-container .ays-survey-answer-linear-scale-radio-label,.ays-survey-container .ays-survey-answer-star-radio-label{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;box-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-height:3em;font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;color:#202124;padding:0 5px}.ays-survey-container .ays-survey-answer-star-radio-label{min-height:0}.ays-survey-container .ays-survey-answer-linear-scale-radio,.ays-survey-container .ays-survey-answer-star-radio{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;box-pack:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-height:3em;word-wrap:break-word}.ays-survey-container .ays-survey-answer-linear-scale label.ays-survey-answer-label,.ays-survey-container .ays-survey-answer-star label.ays-survey-answer-label{width:auto;-webkit-flex-grow:initial;flex-grow:initial;-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-direction:column;flex-direction:column;text-align:center;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:initial;justify-content:initial}.ays-survey-container .ays-survey-question-date-input-box{width:100%;max-width:230px}.ays-survey-container .ays-survey-question-time-input-box{max-width:230px;width:100%}.ays-survey-container .ays-survey-question-input.ays-survey-question-date-input,.ays-survey-container .ays-survey-timepicker{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;background-color:#f8f9fa;border:none;display:block;height:40px;line-height:1;margin:0;min-width:0;outline:0;z-index:0;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.2px;padding:10px;box-sizing:border-box}.survey-form .required {
	color: red;
	font-size: 12px;
}

.survey-form .survey-right {
	display: inline;
	line-height: 2em;
}

.survey-form  option {
	font-size: 12px;
}

.survey-sum {
	padding:  0 5px 0 5px;
	margin:  0 5px 0 5px;
}

.survey-title {
	padding: 10px 0 10px 0;	
}

.question-title {
	background: #333;
	font-weight: bold;
	font-size: 1.4em;
	color: #F0F0F0;
	padding: 10px;
	margin: 10px 0 10px 0;
}

#send h1 {
	padding: 20px 0 20px 0;
}

@media screen and (max-width: 66.5em) { 
	.survey-form  input {
		max-width:200px;
	}
}@charset "UTF-8";:root{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}@media not (prefers-reduced-motion){.components-animate__appear{animation:components-animate__appear-animation .1s cubic-bezier(0,0,.2,1) 0s;animation-fill-mode:forwards}}.components-animate__appear.is-from-top,.components-animate__appear.is-from-top.is-from-left{transform-origin:top left}.components-animate__appear.is-from-top.is-from-right{transform-origin:top right}.components-animate__appear.is-from-bottom,.components-animate__appear.is-from-bottom.is-from-left{transform-origin:bottom left}.components-animate__appear.is-from-bottom.is-from-right{transform-origin:bottom right}@keyframes components-animate__appear-animation{0%{transform:translateY(-2em) scaleY(0) scaleX(0)}to{transform:translateY(0) scaleY(1) scaleX(1)}}@media not (prefers-reduced-motion){.components-animate__slide-in{animation:components-animate__slide-in-animation .1s cubic-bezier(0,0,.2,1);animation-fill-mode:forwards}.components-animate__slide-in.is-from-left{transform:translateX(100%)}.components-animate__slide-in.is-from-right{transform:translateX(-100%)}}@keyframes components-animate__slide-in-animation{to{transform:translateX(0)}}@media not (prefers-reduced-motion){.components-animate__loading{animation:components-animate__loading 1.6s ease-in-out infinite}}@keyframes components-animate__loading{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.components-autocomplete__popover .components-popover__content{min-width:200px;padding:8px}.components-autocomplete__result.components-button{display:flex;height:auto;min-height:36px;text-align:left;width:100%}.components-autocomplete__result.components-button:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-badge{align-items:center;background-color:color-mix(in srgb,#fff 90%,var(--base-color));border-radius:2px;box-sizing:border-box;color:color-mix(in srgb,#000 50%,var(--base-color));display:inline-flex;font-size:12px;font-weight:400;gap:2px;line-height:20px;max-width:100%;min-height:24px;padding:0 8px}.components-badge *,.components-badge :after,.components-badge :before{box-sizing:inherit}.components-badge:where(.is-default){background-color:#f0f0f0;color:#2f2f2f}.components-badge.has-icon{padding-inline-start:4px}.components-badge.is-info{--base-color:#3858e9}.components-badge.is-warning{--base-color:#f0b849}.components-badge.is-error{--base-color:#cc1818}.components-badge.is-success{--base-color:#4ab866}.components-badge__icon{flex-shrink:0}.components-badge__content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.components-button-group{display:inline-block}.components-button-group .components-button{border-radius:0;box-shadow:inset 0 0 0 1px #1e1e1e;color:#1e1e1e;display:inline-flex}.components-button-group .components-button+.components-button{margin-left:-1px}.components-button-group .components-button:first-child{border-radius:2px 0 0 2px}.components-button-group .components-button:last-child{border-radius:0 2px 2px 0}.components-button-group .components-button.is-primary,.components-button-group .components-button:focus{position:relative;z-index:1}.components-button-group .components-button.is-primary{box-shadow:inset 0 0 0 1px #1e1e1e}.components-button{align-items:center;-webkit-appearance:none;background:none;border:0;border-radius:2px;box-sizing:border-box;color:var(--wp-components-color-foreground,#1e1e1e);cursor:pointer;display:inline-flex;font-family:inherit;font-size:13px;height:36px;margin:0;padding:6px 12px;text-decoration:none}@media not (prefers-reduced-motion){.components-button{transition:box-shadow .1s linear}}.components-button.is-next-40px-default-size{height:40px}.components-button:hover:not(:disabled,[aria-disabled=true]),.components-button[aria-expanded=true]{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:3px solid #0000}.components-button.is-primary{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);outline:1px solid #0000;text-decoration:none;text-shadow:none;white-space:nowrap}.components-button.is-primary:hover:not(:disabled){background:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:active:not(:disabled){background:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));border-color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary:disabled,.components-button.is-primary:disabled:active:enabled,.components-button.is-primary[aria-disabled=true],.components-button.is-primary[aria-disabled=true]:active:enabled,.components-button.is-primary[aria-disabled=true]:enabled{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#fff6;outline:none}.components-button.is-primary:disabled:active:enabled:focus:enabled,.components-button.is-primary:disabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:focus:enabled{box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary.is-busy,.components-button.is-primary.is-busy:disabled,.components-button.is-primary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 70%,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 70%);background-size:100px 100%;border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-secondary,.components-button.is-tertiary{outline:1px solid #0000}.components-button.is-secondary:active:not(:disabled),.components-button.is-tertiary:active:not(:disabled){box-shadow:none}.components-button.is-secondary:disabled,.components-button.is-secondary[aria-disabled=true],.components-button.is-secondary[aria-disabled=true]:hover,.components-button.is-tertiary:disabled,.components-button.is-tertiary[aria-disabled=true],.components-button.is-tertiary[aria-disabled=true]:hover{background:#0000;color:#949494;transform:none}.components-button.is-secondary{background:#0000;box-shadow:inset 0 0 0 1px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 0 0 currentColor;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:1px solid #0000;white-space:nowrap}.components-button.is-secondary:hover:not(:disabled,[aria-disabled=true],.is-pressed){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);box-shadow:inset 0 0 0 1px var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-secondary:disabled:not(:focus),.components-button.is-secondary[aria-disabled=true]:hover:not(:focus),.components-button.is-secondary[aria-disabled=true]:not(:focus){box-shadow:inset 0 0 0 1px #ddd}.components-button.is-secondary:focus:not(:disabled){box-shadow:0 0 0 currentColor inset,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-tertiary{background:#0000;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));white-space:nowrap}.components-button.is-tertiary:hover:not(:disabled,[aria-disabled=true]){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 8%,#0000)}p+.components-button.is-tertiary{margin-left:-6px}.components-button.is-tertiary:disabled:not(:focus),.components-button.is-tertiary[aria-disabled=true]:hover:not(:focus),.components-button.is-tertiary[aria-disabled=true]:not(:focus){box-shadow:none;outline:none}.components-button.is-destructive{--wp-components-color-accent:#cc1818;--wp-components-color-accent-darker-10:#9e1313;--wp-components-color-accent-darker-20:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link){color:#cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):hover:not(:disabled,[aria-disabled=true]){color:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):active:not(:disabled,[aria-disabled=true]){background:#ccc}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):disabled,.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link)[aria-disabled=true]{color:#949494}.components-button.is-destructive.is-secondary:hover:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:hover:not(:disabled,[aria-disabled=true]){background:#cc18180a}.components-button.is-destructive.is-secondary:active:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:#cc181814}.components-button.is-link{background:none;border:0;border-radius:0;box-shadow:none;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));height:auto;margin:0;outline:none;padding:0;text-align:left;text-decoration:underline}@media not (prefers-reduced-motion){.components-button.is-link{transition-duration:.05s;transition-property:border,background,color;transition-timing-function:ease-in-out}}.components-button.is-link:focus{border-radius:2px}.components-button.is-link:disabled,.components-button.is-link[aria-disabled=true]{color:#949494}.components-button:not(:disabled,[aria-disabled=true]):active{color:var(--wp-components-color-foreground,#1e1e1e)}.components-button:disabled,.components-button[aria-disabled=true]{color:#949494;cursor:default}.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,#fafafa 33%,#e0e0e0 0,#e0e0e0 70%,#fafafa 0);background-size:100px 100%}@media not (prefers-reduced-motion){.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{animation:components-button__busy-animation 2.5s linear infinite}}.components-button.is-compact{height:32px}.components-button.is-compact.has-icon:not(.has-text){min-width:32px;padding:0}.components-button.is-small{font-size:11px;height:24px;line-height:22px;padding:0 8px}.components-button.is-small.has-icon:not(.has-text){min-width:24px;padding:0}.components-button.has-icon{justify-content:center;min-width:36px;padding:6px}.components-button.has-icon.is-next-40px-default-size{min-width:40px}.components-button.has-icon .dashicon{align-items:center;box-sizing:initial;display:inline-flex;justify-content:center;padding:2px}.components-button.has-icon.has-text{gap:4px;justify-content:start;padding-left:8px;padding-right:12px}.components-button.is-pressed,.components-button.is-pressed:hover{color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:hover:not(:disabled,[aria-disabled=true]),.components-button.is-pressed:not(:disabled,[aria-disabled=true]){background:var(--wp-components-color-foreground,#1e1e1e)}.components-button.is-pressed:disabled,.components-button.is-pressed[aria-disabled=true]{color:#949494}.components-button.is-pressed:disabled:not(.is-primary):not(.is-secondary):not(.is-tertiary),.components-button.is-pressed[aria-disabled=true]:not(.is-primary):not(.is-secondary):not(.is-tertiary){background:#949494;color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-button svg{fill:currentColor;outline:none}@media (forced-colors:active){.components-button svg{fill:CanvasText}}.components-button .components-visually-hidden{height:auto}@keyframes components-button__busy-animation{0%{background-position:200px 0}}.components-checkbox-control{--checkbox-input-size:24px;--checkbox-input-margin:8px}@media (min-width:600px){.components-checkbox-control{--checkbox-input-size:16px}}.components-checkbox-control__label{cursor:pointer;line-height:var(--checkbox-input-size)}.components-checkbox-control__input[type=checkbox]{appearance:none;background:#fff;border:1px solid #1e1e1e;border-radius:2px;box-shadow:0 0 0 #0000;clear:none;color:#1e1e1e;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;height:var(--checkbox-input-size);line-height:normal;line-height:0;margin:0 4px 0 0;outline:0;padding:6px 8px;padding:0!important;text-align:center;transition:none;vertical-align:top;width:var(--checkbox-input-size)}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{font-size:13px;line-height:normal}}.components-checkbox-control__input[type=checkbox]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]::-moz-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{color:#fff;margin:-3px -5px}@media (min-width:782px){.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-4px 0 0 -5px}}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f460";display:inline-block;float:left;font:normal 30px/1 dashicons;vertical-align:middle;width:16px}@media (min-width:782px){.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{float:none;font-size:21px}}.components-checkbox-control__input[type=checkbox]:disabled,.components-checkbox-control__input[type=checkbox][aria-disabled=true]{background:#f0f0f0;border-color:#ddd;cursor:default;opacity:1}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:border-color .1s ease-in-out}}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-checkbox-control__input[type=checkbox]:checked,.components-checkbox-control__input[type=checkbox]:indeterminate{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-checkbox-control__input[type=checkbox]:checked::-ms-check,.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before{content:none}.components-checkbox-control__input-container{aspect-ratio:1;display:inline-block;flex-shrink:0;line-height:1;margin-right:var(--checkbox-input-margin);position:relative;vertical-align:middle;width:var(--checkbox-input-size)}svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:var(--checkbox-input-size);fill:#fff;cursor:pointer;height:var(--checkmark-size);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);-webkit-user-select:none;user-select:none;width:var(--checkmark-size)}@media (min-width:600px){svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:calc(var(--checkbox-input-size) + 4px)}}.components-checkbox-control__help{display:inline-block;margin-inline-start:calc(var(--checkbox-input-size) + var(--checkbox-input-margin))}.components-circular-option-picker{display:inline-block;min-width:188px;width:100%}.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper{display:flex;justify-content:flex-end;margin-top:12px}.components-circular-option-picker .components-circular-option-picker__swatches{display:flex;flex-wrap:wrap;gap:12px;position:relative;z-index:1}.components-circular-option-picker>:not(.components-circular-option-picker__swatches){position:relative;z-index:0}.components-circular-option-picker__option-wrapper{display:inline-block;height:28px;transform:scale(1);vertical-align:top;width:28px}@media not (prefers-reduced-motion){.components-circular-option-picker__option-wrapper{transition:transform .1s ease;will-change:transform}}.components-circular-option-picker__option-wrapper:hover{transform:scale(1.2)}.components-circular-option-picker__option-wrapper>div{height:100%;width:100%}.components-circular-option-picker__option-wrapper:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cpath fill='%23555D65' d='M6 8V6H4v2h2zm2 0V6h2v2H8zm2 8H8v-2h2v2zm2 0v-2h2v2h-2zm0 2v-2h-2v2H8v2h2v-2h2zm2 0v2h-2v-2h2zm2 0h-2v-2h2v2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' d='M18 18v2h-2v-2h2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z' clip-rule='evenodd'/%3E%3C/svg%3E");border-radius:50%;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.components-circular-option-picker__option{aspect-ratio:1;background:#0000;border:none;border-radius:50%;box-shadow:inset 0 0 0 14px;cursor:pointer;display:inline-block;height:100%!important;vertical-align:top}@media not (prefers-reduced-motion){.components-circular-option-picker__option{transition:box-shadow .1s ease}}.components-circular-option-picker__option:hover{box-shadow:inset 0 0 0 14px!important}.components-circular-option-picker__option[aria-pressed=true],.components-circular-option-picker__option[aria-selected=true]{box-shadow:inset 0 0 0 4px;overflow:visible;position:relative;z-index:1}.components-circular-option-picker__option[aria-pressed=true]+svg,.components-circular-option-picker__option[aria-selected=true]+svg{border-radius:50%;left:2px;pointer-events:none;position:absolute;top:2px;z-index:2}.components-circular-option-picker__option:after{border:1px solid #0000;border-radius:50%;bottom:-1px;box-shadow:inset 0 0 0 1px #0003;box-sizing:inherit;content:"";left:-1px;position:absolute;right:-1px;top:-1px}.components-circular-option-picker__option:focus:after{border:2px solid #757575;border-radius:50%;box-shadow:inset 0 0 0 2px #fff;content:"";height:calc(100% + 4px);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:calc(100% + 4px)}.components-circular-option-picker__option.components-button:focus{background-color:initial;box-shadow:inset 0 0 0 14px;outline:none}.components-circular-option-picker__button-action .components-circular-option-picker__option{background:#fff;color:#fff}.components-circular-option-picker__dropdown-link-action{margin-right:16px}.components-circular-option-picker__dropdown-link-action .components-button{line-height:22px}.components-palette-edit__popover-gradient-picker{padding:8px;width:260px}.components-dropdown-menu__menu .components-palette-edit__menu-button{width:100%}.component-color-indicator{background:#fff linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);border-radius:50%;box-shadow:inset 0 0 0 1px #0003;display:inline-block;height:20px;padding:0;width:20px}.components-combobox-control{width:100%}input.components-combobox-control__input[type=text]{border:none;box-shadow:none;font-family:inherit;font-size:16px;line-height:inherit;margin:0;min-height:auto;padding:2px;width:100%}@media (min-width:600px){input.components-combobox-control__input[type=text]{font-size:13px}}input.components-combobox-control__input[type=text]:focus{box-shadow:none;outline:none}.components-combobox-control__suggestions-container{align-items:flex-start;border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:0;width:100%}@media not (prefers-reduced-motion){.components-combobox-control__suggestions-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-combobox-control__suggestions-container{font-size:13px;line-height:normal}}.components-combobox-control__suggestions-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-combobox-control__suggestions-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container::-moz-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container:-ms-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container:focus-within{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-combobox-control__suggestions-container .components-spinner{margin:0}.components-color-palette__custom-color-wrapper{position:relative;z-index:0}.components-color-palette__custom-color-button{background:none;border:none;border-radius:4px 4px 0 0;box-shadow:inset 0 0 0 1px #0003;box-sizing:border-box;cursor:pointer;height:64px;outline:1px solid #0000;position:relative;width:100%}.components-color-palette__custom-color-button:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline-width:2px}.components-color-palette__custom-color-button:after{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,24px 24px;background-size:48px 48px;border-radius:3px 3px 0 0;content:"";inset:1px;position:absolute;z-index:-1}.components-color-palette__custom-color-text-wrapper{border-radius:0 0 4px 4px;box-shadow:inset 0 -1px 0 0 #0003,inset 1px 0 0 0 #0003,inset -1px 0 0 0 #0003;font-size:13px;padding:12px 16px;position:relative}.components-color-palette__custom-color-name{color:var(--wp-components-color-foreground,#1e1e1e);margin:0 1px}.components-color-palette__custom-color-value{color:#757575}.components-color-palette__custom-color-value--is-hex{text-transform:uppercase}.components-color-palette__custom-color-value:empty:after{content:"​";visibility:hidden}.components-custom-gradient-picker__gradient-bar{border-radius:2px;height:48px;position:relative;width:100%;z-index:1}.components-custom-gradient-picker__gradient-bar.has-gradient{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,12px 12px;background-size:24px 24px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__gradient-bar-background{inset:0;position:absolute}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container{margin-left:auto;margin-right:auto;position:relative;width:calc(100% - 48px)}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-dropdown{display:flex;height:16px;position:absolute;top:16px;width:16px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown{background:#fff;border-radius:50%;color:#1e1e1e;height:inherit;min-width:16px!important;padding:2px;position:relative;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown svg{height:100%;width:100%}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button{border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 2px 0 #00000040;height:inherit;outline:2px solid #0000;padding:0;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus{box-shadow:inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff,0 0 2px 0 #00000040;outline:1.5px solid #0000}.components-custom-gradient-picker__remove-control-point-wrapper{padding-bottom:8px}.components-custom-gradient-picker__inserter{direction:ltr}.components-custom-gradient-picker__liner-gradient-indicator{display:inline-block;flex:0 auto;height:20px;width:20px}.components-custom-gradient-picker__ui-line{position:relative;z-index:0}.block-editor-dimension-control .components-base-control__field{align-items:center;display:flex}.block-editor-dimension-control .components-base-control__label{align-items:center;display:flex;margin-bottom:0;margin-right:1em}.block-editor-dimension-control .components-base-control__label .dashicon{margin-right:.5em}.block-editor-dimension-control.is-manual .components-base-control__label{width:10em}body.is-dragging-components-draggable{cursor:move;cursor:grabbing!important}.components-draggable__invisible-drag-image{height:50px;left:-1000px;position:fixed;width:50px}.components-draggable__clone{background:#0000;padding:0;pointer-events:none;position:fixed;z-index:1000000000}.components-drop-zone{border-radius:2px;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0;visibility:hidden;z-index:40}.components-drop-zone.is-active{opacity:1;visibility:visible}.components-drop-zone .components-drop-zone__content{align-items:center;background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));bottom:0;color:#fff;display:flex;height:100%;justify-content:center;left:0;opacity:0;pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:100%;z-index:50}.components-drop-zone .components-drop-zone__content-inner{opacity:0;transform:scale(.9)}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{opacity:1}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{transition:opacity .2s ease-in-out}}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{opacity:1;transform:scale(1)}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{transition:opacity .1s ease-in-out .1s,transform .1s ease-in-out .1s}}.components-drop-zone__content-icon,.components-drop-zone__content-text{display:block}.components-drop-zone__content-icon{fill:currentColor;line-height:0;margin:0 auto 8px;pointer-events:none}.components-drop-zone__content-text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-dropdown{display:inline-block}.components-dropdown__content .components-popover__content{padding:8px}.components-dropdown__content .components-popover__content:has(.components-menu-group){padding:0}.components-dropdown__content .components-popover__content:has(.components-menu-group) .components-dropdown-menu__menu>.components-menu-item__button,.components-dropdown__content .components-popover__content:has(.components-menu-group)>.components-menu-item__button{margin:8px;width:auto}.components-dropdown__content [role=menuitem]{white-space:nowrap}.components-dropdown__content .components-menu-group{padding:8px}.components-dropdown__content .components-menu-group+.components-menu-group{border-top:1px solid #ccc;padding:8px}.components-dropdown__content.is-alternate .components-menu-group+.components-menu-group{border-color:#1e1e1e}.components-dropdown-menu__toggle{vertical-align:top}.components-dropdown-menu__menu{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item,.components-dropdown-menu__menu .components-menu-item{cursor:pointer;outline:none;padding:6px;white-space:nowrap;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,.components-dropdown-menu__menu .components-menu-item.has-separator{margin-top:6px;overflow:visible;position:relative}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,.components-dropdown-menu__menu .components-menu-item.has-separator:before{background-color:#ddd;box-sizing:initial;content:"";display:block;height:1px;left:0;position:absolute;right:0;top:-3px}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,.components-dropdown-menu__menu .components-menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-menu-item.is-active svg{background:#1e1e1e;border-radius:1px;box-shadow:0 0 0 1px #1e1e1e;color:#fff}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,.components-dropdown-menu__menu .components-menu-item.is-icon-only{width:auto}.components-dropdown-menu__menu .components-menu-item__button,.components-dropdown-menu__menu .components-menu-item__button.components-button{height:auto;min-height:40px;padding-left:8px;padding-right:8px;text-align:left}.components-duotone-picker__color-indicator:before{background:#0000}.components-duotone-picker__color-indicator>.components-button,.components-duotone-picker__color-indicator>.components-button.is-pressed:hover:not(:disabled){background:linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);color:#0000}.components-duotone-picker__color-indicator>.components-button:not([aria-disabled=true]):active{color:#0000}.components-color-list-picker,.components-color-list-picker__swatch-button{width:100%}.components-color-list-picker__color-picker{margin:8px 0}.components-color-list-picker__swatch-color{margin:2px}.components-external-link{text-decoration:none}.components-external-link__contents{text-decoration:underline}.components-external-link__icon{font-weight:400;margin-left:.5ch}.components-form-toggle{display:inline-block;height:16px;position:relative}.components-form-toggle .components-form-toggle__track{background-color:#fff;border:1px solid #949494;border-radius:8px;box-sizing:border-box;content:"";display:inline-block;height:16px;overflow:hidden;position:relative;vertical-align:top;width:32px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track{transition:background-color .2s ease,border-color .2s ease}}.components-form-toggle .components-form-toggle__track:after{border-top:16px solid #0000;box-sizing:border-box;content:"";inset:0;opacity:0;position:absolute}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track:after{transition:opacity .2s ease}}.components-form-toggle .components-form-toggle__thumb{background-color:#1e1e1e;border:6px solid #0000;border-radius:50%;box-shadow:0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003;box-sizing:border-box;display:block;height:12px;left:2px;position:absolute;top:2px;width:12px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__thumb{transition:transform .2s ease,background-color .2s ease-out}}.components-form-toggle.is-checked .components-form-toggle__track{background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-toggle.is-checked .components-form-toggle__track:after{opacity:1}.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:2px}.components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(16px)}.components-disabled .components-form-toggle,.components-form-toggle.is-disabled{opacity:.3}.components-form-toggle input.components-form-toggle__input[type=checkbox]{border:none;height:100%;left:0;margin:0;opacity:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked{background:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:before{content:""}.components-form-toggle input.components-form-toggle__input[type=checkbox]:not(:disabled,[aria-disabled=true]){cursor:pointer}.components-form-token-field__input-container{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;cursor:text;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:0;width:100%}@media not (prefers-reduced-motion){.components-form-token-field__input-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-form-token-field__input-container{font-size:13px;line-height:normal}}.components-form-token-field__input-container:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-form-token-field__input-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container::-moz-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container:-ms-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container.is-disabled{background:#ddd;border-color:#ddd}.components-form-token-field__input-container.is-active{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-form-token-field__input-container input[type=text].components-form-token-field__input{background:inherit;border:0;box-shadow:none;color:#1e1e1e;display:inline-block;flex:1;font-family:inherit;font-size:16px;margin-left:4px;max-width:100%;min-height:24px;min-width:50px;padding:0;width:100%}@media (min-width:600px){.components-form-token-field__input-container input[type=text].components-form-token-field__input{font-size:13px}}.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus{box-shadow:none;outline:none}.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input{width:auto}.components-form-token-field__token{color:#1e1e1e;display:flex;font-size:13px;max-width:100%}.components-form-token-field__token.is-success .components-form-token-field__remove-token,.components-form-token-field__token.is-success .components-form-token-field__token-text{background:#4ab866}.components-form-token-field__token.is-error .components-form-token-field__remove-token,.components-form-token-field__token.is-error .components-form-token-field__token-text{background:#cc1818}.components-form-token-field__token.is-validating .components-form-token-field__remove-token,.components-form-token-field__token.is-validating .components-form-token-field__token-text{color:#757575}.components-form-token-field__token.is-borderless{padding:0 24px 0 0;position:relative}.components-form-token-field__token.is-borderless .components-form-token-field__token-text{background:#0000}.components-form-token-field__token.is-borderless:not(.is-disabled) .components-form-token-field__token-text{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-token-field__token.is-borderless .components-form-token-field__remove-token{background:#0000;color:#757575;position:absolute;right:0;top:1px}.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text{color:#4ab866}.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text{color:#cc1818;padding:0 4px 0 6px}.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text{color:#1e1e1e}.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{background:#ddd;display:inline-block;height:auto;min-width:unset}@media not (prefers-reduced-motion){.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{transition:all .2s cubic-bezier(.4,1,.4,1)}}.components-form-token-field__token-text{border-radius:1px 0 0 1px;line-height:24px;overflow:hidden;padding:0 0 0 8px;text-overflow:ellipsis;white-space:nowrap}.components-form-token-field__remove-token.components-button{border-radius:0 1px 1px 0;color:#1e1e1e;line-height:10px;overflow:initial}.components-form-token-field__remove-token.components-button:hover:not(:disabled){color:#1e1e1e}.components-form-token-field__suggestions-list{box-shadow:inset 0 1px 0 0 #949494;flex:1 0 100%;list-style:none;margin:0;max-height:128px;min-width:100%;overflow-y:auto;padding:0}@media not (prefers-reduced-motion){.components-form-token-field__suggestions-list{transition:all .15s ease-in-out}}.components-form-token-field__suggestion{box-sizing:border-box;color:#1e1e1e;display:block;font-size:13px;margin:0;min-height:32px;padding:8px 12px}.components-form-token-field__suggestion.is-selected{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#fff}.components-form-token-field__suggestion[aria-disabled=true]{color:#949494;pointer-events:none}.components-form-token-field__suggestion[aria-disabled=true].is-selected{background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000)}.components-form-token-field__suggestion:not(.is-empty){cursor:pointer}@media (min-width:600px){.components-guide{width:600px}}.components-guide .components-modal__content{margin-top:0;padding:0}.components-guide .components-modal__content:before{content:none}.components-guide .components-modal__header{border-bottom:none;height:60px;padding:0;position:sticky}.components-guide .components-modal__header .components-button{align-self:flex-start;margin:8px 8px 0 0;position:static}.components-guide .components-modal__header .components-button:hover svg{fill:#fff}.components-guide .components-guide__container{display:flex;flex-direction:column;justify-content:space-between;margin-top:-60px;min-height:100%}.components-guide .components-guide__page{display:flex;flex-direction:column;justify-content:center;position:relative}@media (min-width:600px){.components-guide .components-guide__page{min-height:300px}}.components-guide .components-guide__footer{align-content:center;display:flex;height:36px;justify-content:center;margin:0 0 24px;padding:0 32px;position:relative;width:100%}.components-guide .components-guide__page-control{margin:0;text-align:center}.components-guide .components-guide__page-control li{display:inline-block;margin:0}.components-guide .components-guide__page-control .components-button{color:#e0e0e0;margin:-6px 0}.components-guide .components-guide__page-control li[aria-current=step] .components-button{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-modal__frame.components-guide{border:none;max-height:575px;min-width:312px}@media (max-width:600px){.components-modal__frame.components-guide{margin:auto;max-width:calc(100vw - 32px)}}.components-button.components-guide__back-button,.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{position:absolute}.components-button.components-guide__back-button{left:32px}.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{right:32px}[role=region]{position:relative}.is-focusing-regions [role=region]:focus:after,[role=region].interface-interface-skeleton__content:focus-visible:after{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0;z-index:1000000}.is-focusing-regions .editor-post-publish-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-publish-panel,.is-focusing-regions .interface-interface-skeleton__sidebar .editor-layout__toggle-sidebar-panel,.is-focusing-regions [role=region]:focus:after,.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,[role=region].interface-interface-skeleton__content:focus-visible:after{outline-color:var(--wp-admin-theme-color);outline-offset:calc(((-1*var(--wp-admin-border-width-focus))/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2);outline-style:solid;outline-width:calc((var(--wp-admin-border-width-focus)/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2)}.components-menu-group+.components-menu-group{border-top:1px solid #1e1e1e;padding-top:8px}.components-menu-group+.components-menu-group.has-hidden-separator{border-top:none;margin-top:0;padding-top:0}.components-menu-group:has(>div:empty){display:none}.components-menu-group__label{color:#757575;font-size:11px;font-weight:500;margin-bottom:12px;margin-top:4px;padding:0 8px;text-transform:uppercase;white-space:nowrap}.components-menu-item__button,.components-menu-item__button.components-button{width:100%}.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child{box-sizing:initial;padding-right:48px}.components-menu-item__button .components-menu-items__item-icon,.components-menu-item__button.components-button .components-menu-items__item-icon{display:inline-block;flex:0 0 auto}.components-menu-item__button .components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right{margin-left:24px;margin-right:-2px}.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right{margin-left:8px}.components-menu-item__button .block-editor-block-icon,.components-menu-item__button.components-button .block-editor-block-icon{margin-left:-2px;margin-right:8px}.components-menu-item__button.components-button.is-primary,.components-menu-item__button.is-primary{justify-content:center}.components-menu-item__button.components-button.is-primary .components-menu-item__item,.components-menu-item__button.is-primary .components-menu-item__item{margin-right:0}.components-menu-item__button.components-button:disabled.is-tertiary,.components-menu-item__button.components-button[aria-disabled=true].is-tertiary,.components-menu-item__button:disabled.is-tertiary,.components-menu-item__button[aria-disabled=true].is-tertiary{background:none;color:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));opacity:.3}.components-menu-item__info-wrapper{display:flex;flex-direction:column;margin-right:auto}.components-menu-item__info{color:#757575;font-size:12px;margin-top:4px;white-space:normal}.components-menu-item__item{align-items:center;display:inline-flex;margin-right:auto;min-width:160px;white-space:nowrap}.components-menu-item__shortcut{align-self:center;color:currentColor;display:none;margin-left:auto;margin-right:0;padding-left:24px}@media (min-width:480px){.components-menu-item__shortcut{display:inline}}.components-menu-items-choice,.components-menu-items-choice.components-button{height:auto;min-height:40px}.components-menu-items-choice svg,.components-menu-items-choice.components-button svg{margin-right:12px}.components-menu-items-choice.components-button.has-icon,.components-menu-items-choice.has-icon{padding-left:12px}.components-modal__screen-overlay{background-color:#00000059;bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:100000}@keyframes __wp-base-styles-fade-in{0%{opacity:0}to{opacity:1}}@media not (prefers-reduced-motion){.components-modal__screen-overlay{animation:__wp-base-styles-fade-in .08s linear 0s;animation-fill-mode:forwards}}@keyframes __wp-base-styles-fade-out{0%{opacity:1}to{opacity:0}}@media not (prefers-reduced-motion){.components-modal__screen-overlay.is-animating-out{animation:__wp-base-styles-fade-out .08s linear 80ms;animation-fill-mode:forwards}}.components-modal__frame{animation-fill-mode:forwards;animation-name:components-modal__appear-animation;animation-timing-function:cubic-bezier(.29,0,0,1);background:#fff;border-radius:8px 8px 0 0;box-shadow:0 5px 15px #00000014,0 15px 27px #00000012,0 30px 36px #0000000a,0 50px 43px #00000005;box-sizing:border-box;display:flex;margin:40px 0 0;overflow:hidden;width:100%}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}@media not (prefers-reduced-motion){.components-modal__frame{animation-duration:var(--modal-frame-animation-duration)}}.components-modal__screen-overlay.is-animating-out .components-modal__frame{animation-name:components-modal__disappear-animation;animation-timing-function:cubic-bezier(1,0,.2,1)}@media (min-width:600px){.components-modal__frame{border-radius:8px;margin:auto;max-height:calc(100% - 120px);max-width:calc(100% - 32px);min-width:350px;width:auto}}@media (min-width:600px) and (min-width:600px){.components-modal__frame.is-full-screen{height:calc(100% - 32px);max-height:none;width:calc(100% - 32px)}}@media (min-width:600px) and (min-width:782px){.components-modal__frame.is-full-screen{height:calc(100% - 80px);max-width:none;width:calc(100% - 80px)}}@media (min-width:600px){.components-modal__frame.has-size-large,.components-modal__frame.has-size-medium,.components-modal__frame.has-size-small{width:100%}.components-modal__frame.has-size-small{max-width:384px}.components-modal__frame.has-size-medium{max-width:512px}.components-modal__frame.has-size-large{max-width:840px}}@media (min-width:960px){.components-modal__frame{max-height:70%}}@keyframes components-modal__appear-animation{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes components-modal__disappear-animation{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.components-modal__header{align-items:center;border-bottom:1px solid #0000;box-sizing:border-box;display:flex;flex-direction:row;height:72px;justify-content:space-between;left:0;padding:24px 32px 8px;position:absolute;top:0;width:100%;z-index:10}.components-modal__header .components-modal__header-heading{font-size:1.2rem;font-weight:600}.components-modal__header h1{line-height:1;margin:0}.components-modal__content.has-scrolled-content:not(.hide-header) .components-modal__header{border-bottom-color:#ddd}.components-modal__header+p{margin-top:0}.components-modal__header-heading-container{align-items:center;display:flex;flex-direction:row;flex-grow:1;justify-content:left}.components-modal__header-icon-container{display:inline-block}.components-modal__header-icon-container svg{max-height:36px;max-width:36px;padding:8px}.components-modal__content{flex:1;margin-top:72px;overflow:auto;padding:4px 32px 32px}.components-modal__content.hide-header{margin-top:0;padding-top:32px}.components-modal__content.is-scrollable:focus-visible{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:-2px}.components-notice{align-items:center;background-color:#fff;border-left:4px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#1e1e1e;display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:8px 12px}.components-notice.is-dismissible{position:relative}.components-notice.is-success{background-color:#eff9f1;border-left-color:#4ab866}.components-notice.is-warning{background-color:#fef8ee;border-left-color:#f0b849}.components-notice.is-error{background-color:#f4a2a2;border-left-color:#cc1818}.components-notice__content{flex-grow:1;margin:4px 25px 4px 0}.components-notice__actions{display:flex;flex-wrap:wrap}.components-notice__action.components-button{margin-right:8px}.components-notice__action.components-button,.components-notice__action.components-button.is-link{margin-left:12px}.components-notice__action.components-button.is-secondary{vertical-align:initial}.components-notice__dismiss{align-self:flex-start;color:#757575;flex-shrink:0}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{background-color:initial;color:#1e1e1e}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{box-shadow:none}.components-notice-list{box-sizing:border-box;max-width:100vw}.components-notice-list .components-notice__content{line-height:2;margin-bottom:12px;margin-top:12px}.components-notice-list .components-notice__action.components-button{display:block;margin-left:0;margin-top:8px}.components-panel{background:#fff;border:1px solid #e0e0e0}.components-panel>.components-panel__body:first-child,.components-panel>.components-panel__header:first-child{margin-top:-1px}.components-panel>.components-panel__body:last-child,.components-panel>.components-panel__header:last-child{border-bottom-width:0}.components-panel+.components-panel{margin-top:-1px}.components-panel__body{border-bottom:1px solid #e0e0e0;border-top:1px solid #e0e0e0}.components-panel__body h3{margin:0 0 .5em}.components-panel__body.is-opened{padding:16px}.components-panel__header{align-items:center;border-bottom:1px solid #ddd;box-sizing:initial;display:flex;flex-shrink:0;height:47px;justify-content:space-between;padding:0 16px}.components-panel__header h2{color:inherit;font-size:inherit;margin:0}.components-panel__body+.components-panel__body,.components-panel__body+.components-panel__header,.components-panel__header+.components-panel__body,.components-panel__header+.components-panel__header{margin-top:-1px}.components-panel__body>.components-panel__body-title{display:block;font-size:inherit;margin-bottom:0;margin-top:0;padding:0}@media not (prefers-reduced-motion){.components-panel__body>.components-panel__body-title{transition:background .1s ease-in-out}}.components-panel__body.is-opened>.components-panel__body-title{margin:-16px -16px 5px}.components-panel__body>.components-panel__body-title:hover{background:#f0f0f0;border:none}.components-panel__body-toggle.components-button{border:none;box-shadow:none;color:#1e1e1e;font-weight:500;height:auto;outline:none;padding:16px 48px 16px 16px;position:relative;text-align:left;width:100%}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button{transition:background .1s ease-in-out}}.components-panel__body-toggle.components-button:focus{border-radius:0;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-panel__body-toggle.components-button .components-panel__arrow{fill:currentColor;color:#1e1e1e;position:absolute;right:16px;top:50%;transform:translateY(-50%)}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button .components-panel__arrow{transition:color .1s ease-in-out}}body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right{-ms-filter:fliph;filter:FlipH;margin-top:-10px;transform:scaleX(-1)}.components-panel__icon{color:#757575;margin:-2px 0 -2px 6px}.components-panel__body-toggle-icon{margin-right:-5px}.components-panel__color-title{float:left;height:19px}.components-panel__row{align-items:center;display:flex;justify-content:space-between;margin-top:8px;min-height:36px}.components-panel__row select{min-width:0}.components-panel__row label{flex-shrink:0;margin-right:12px;max-width:75%}.components-panel__row:empty,.components-panel__row:first-of-type{margin-top:0}.components-panel .circle-picker{padding-bottom:20px}.components-placeholder.components-placeholder{-moz-font-smoothing:subpixel-antialiased;-webkit-font-smoothing:subpixel-antialiased;align-items:flex-start;background-color:#fff;border-radius:2px;box-shadow:inset 0 0 0 1px #1e1e1e;box-sizing:border-box;color:#1e1e1e;display:flex;flex-direction:column;font-size:13px;gap:16px;margin:0;outline:1px solid #0000;padding:24px;position:relative;text-align:left;width:100%}.components-placeholder__error,.components-placeholder__fieldset,.components-placeholder__instructions,.components-placeholder__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:400;letter-spacing:normal;line-height:normal;text-transform:none}.components-placeholder__label{align-items:center;display:flex;font-weight:600}.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:currentColor;margin-right:4px}@media (forced-colors:active){.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:CanvasText}}.components-placeholder__label:empty{display:none}.components-placeholder__fieldset,.components-placeholder__fieldset form{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:flex-start;width:100%}.components-placeholder__fieldset form p,.components-placeholder__fieldset p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__fieldset.is-column-layout,.components-placeholder__fieldset.is-column-layout form{flex-direction:column}.components-placeholder__input[type=url]{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;flex:1 1 auto;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:6px 8px}@media not (prefers-reduced-motion){.components-placeholder__input[type=url]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-placeholder__input[type=url]{font-size:13px;line-height:normal}}.components-placeholder__input[type=url]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-placeholder__input[type=url]::-webkit-input-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]::-moz-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]:-ms-input-placeholder{color:#1e1e1e9e}.components-placeholder__error{gap:8px;width:100%}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link{margin-left:10px;margin-right:10px}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child{margin-right:0}.components-placeholder.is-medium .components-placeholder__instructions,.components-placeholder.is-small .components-placeholder__instructions{display:none}.components-placeholder.is-medium .components-placeholder__fieldset,.components-placeholder.is-medium .components-placeholder__fieldset form,.components-placeholder.is-small .components-placeholder__fieldset,.components-placeholder.is-small .components-placeholder__fieldset form{flex-direction:column}.components-placeholder.is-medium .components-button,.components-placeholder.is-medium .components-placeholder__fieldset>*,.components-placeholder.is-small .components-button,.components-placeholder.is-small .components-placeholder__fieldset>*{justify-content:center;width:100%}.components-placeholder.is-small{padding:16px}.components-placeholder.has-illustration{-webkit-backdrop-filter:blur(100px);backdrop-filter:blur(100px);backface-visibility:hidden;background-color:initial;border-radius:0;box-shadow:none;color:inherit;display:flex;overflow:hidden}.is-dark-theme .components-placeholder.has-illustration{background-color:#0000001a}.components-placeholder.has-illustration .components-placeholder__fieldset{margin-left:0;margin-right:0}.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{opacity:0;pointer-events:none}@media not (prefers-reduced-motion){.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{transition:opacity .1s linear}}.is-selected>.components-placeholder.has-illustration .components-button,.is-selected>.components-placeholder.has-illustration .components-placeholder__instructions,.is-selected>.components-placeholder.has-illustration .components-placeholder__label{opacity:1;pointer-events:auto}.components-placeholder.has-illustration:before{background:currentColor;bottom:0;content:"";left:0;opacity:.1;pointer-events:none;position:absolute;right:0;top:0}.is-selected .components-placeholder.has-illustration{overflow:auto}.components-placeholder__preview{display:flex;justify-content:center}.components-placeholder__illustration{stroke:currentColor;box-sizing:initial;height:100%;left:50%;opacity:.25;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.components-popover{box-sizing:border-box;will-change:transform;z-index:1000000}.components-popover *,.components-popover :after,.components-popover :before{box-sizing:inherit}.components-popover.is-expanded{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1000000!important}.components-popover__content{background:#fff;border-radius:4px;box-shadow:0 0 0 1px #ccc,0 2px 3px #0000000d,0 4px 5px #0000000a,0 12px 12px #00000008,0 16px 16px #00000005;box-sizing:border-box;width:min-content}.is-alternate .components-popover__content{border-radius:2px;box-shadow:0 0 0 1px #1e1e1e}.is-unstyled .components-popover__content{background:none;border-radius:0;box-shadow:none}.components-popover.is-expanded .components-popover__content{box-shadow:0 -1px 0 0 #ccc;height:calc(100% - 48px);overflow-y:visible;position:static;width:auto}.components-popover.is-expanded.is-alternate .components-popover__content{box-shadow:0 -1px 0 #1e1e1e}.components-popover__header{align-items:center;background:#fff;display:flex;height:48px;justify-content:space-between;padding:0 8px 0 16px}.components-popover__header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.components-popover__close.components-button{z-index:5}.components-popover__arrow{display:flex;height:14px;pointer-events:none;position:absolute;width:14px}.components-popover__arrow:before{background-color:#fff;content:"";height:2px;left:1px;position:absolute;right:1px;top:-1px}.components-popover__arrow.is-top{bottom:-14px!important;transform:rotate(0)}.components-popover__arrow.is-right{left:-14px!important;transform:rotate(90deg)}.components-popover__arrow.is-bottom{top:-14px!important;transform:rotate(180deg)}.components-popover__arrow.is-left{right:-14px!important;transform:rotate(-90deg)}.components-popover__triangle{display:block;flex:1}.components-popover__triangle-bg{fill:#fff}.components-popover__triangle-border{fill:#0000;stroke-width:1px;stroke:#ccc}.is-alternate .components-popover__triangle-border{stroke:#1e1e1e}.components-radio-control{border:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0;padding:0}.components-radio-control__group-wrapper.has-help{margin-block-end:12px}.components-radio-control__option{align-items:center;column-gap:8px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto minmax(0,max-content)}.components-radio-control__input[type=radio]{appearance:none;border:1px solid #1e1e1e;border-radius:2px;border-radius:50%;box-shadow:0 0 0 #0000;cursor:pointer;display:inline-flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;grid-column:1;grid-row:1;height:24px;line-height:normal;margin:0;max-width:24px;min-width:24px;padding:0;position:relative;transition:none;width:24px}@media not (prefers-reduced-motion){.components-radio-control__input[type=radio]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-radio-control__input[type=radio]{font-size:13px;line-height:normal}}.components-radio-control__input[type=radio]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]::-webkit-input-placeholder{color:#1e1e1e9e}.components-radio-control__input[type=radio]::-moz-placeholder{color:#1e1e1e9e}.components-radio-control__input[type=radio]:-ms-input-placeholder{color:#1e1e1e9e}@media (min-width:600px){.components-radio-control__input[type=radio]{height:16px;max-width:16px;min-width:16px;width:16px}}.components-radio-control__input[type=radio]:checked:before{background-color:#fff;border:4px solid #fff;box-sizing:inherit;height:12px;left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:12px}@media (min-width:600px){.components-radio-control__input[type=radio]:checked:before{height:8px;width:8px}}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]:checked{background:var(--wp-admin-theme-color);border:none}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-radio-control__input[type=radio]:checked{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-radio-control__input[type=radio]:checked:before{border-radius:50%;content:""}.components-radio-control__label{cursor:pointer;grid-column:2;grid-row:1;line-height:24px}@media (min-width:600px){.components-radio-control__label{line-height:16px}}.components-radio-control__option-description{grid-column:2;grid-row:2;padding-block-start:4px}.components-radio-control__option-description.components-radio-control__option-description{margin-top:0}.components-resizable-box__handle{display:none;height:23px;width:23px;z-index:2}.components-resizable-box__container.has-show-handle .components-resizable-box__handle{display:block}.components-resizable-box__handle>div{height:100%;outline:none;position:relative;width:100%;z-index:2}.components-resizable-box__container>img{width:inherit}.components-resizable-box__handle:after{background:#fff;border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003;content:"";cursor:inherit;display:block;height:15px;outline:2px solid #0000;position:absolute;right:calc(50% - 8px);top:calc(50% - 8px);width:15px}.components-resizable-box__side-handle:before{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:9999px;content:"";cursor:inherit;display:block;height:3px;opacity:0;position:absolute;right:calc(50% - 1px);top:calc(50% - 1px);width:3px}@media not (prefers-reduced-motion){.components-resizable-box__side-handle:before{transition:transform .1s ease-in;will-change:transform}}.components-resizable-box__corner-handle,.components-resizable-box__side-handle{z-index:2}.components-resizable-box__side-handle.components-resizable-box__handle-bottom,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,.components-resizable-box__side-handle.components-resizable-box__handle-top,.components-resizable-box__side-handle.components-resizable-box__handle-top:before{border-left:0;border-right:0;left:0;width:100%}.components-resizable-box__side-handle.components-resizable-box__handle-left,.components-resizable-box__side-handle.components-resizable-box__handle-left:before,.components-resizable-box__side-handle.components-resizable-box__handle-right,.components-resizable-box__side-handle.components-resizable-box__handle-right:before{border-bottom:0;border-top:0;height:100%;top:0}@media not (prefers-reduced-motion){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:components-resizable-box__top-bottom-animation .1s ease-out 0s;animation-fill-mode:forwards}.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation:components-resizable-box__left-right-animation .1s ease-out 0s;animation-fill-mode:forwards}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:none}}}@keyframes components-resizable-box__top-bottom-animation{0%{opacity:0;transform:scaleX(0)}to{opacity:1;transform:scaleX(1)}}@keyframes components-resizable-box__left-right-animation{0%{opacity:0;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}.components-resizable-box__handle-right{right:-11.5px}.components-resizable-box__handle-left{left:-11.5px}.components-resizable-box__handle-top{top:-11.5px}.components-resizable-box__handle-bottom{bottom:-11.5px}.components-responsive-wrapper{align-items:center;display:flex;justify-content:center;max-width:100%;position:relative}.components-responsive-wrapper__content{display:block;max-width:100%;width:100%}.components-sandbox{overflow:hidden}iframe.components-sandbox{width:100%}body.lockscroll,html.lockscroll{overflow:hidden}.components-select-control__input{-webkit-tap-highlight-color:rgba(0,0,0,0)!important;outline:0}@media (max-width:782px){.components-base-control .components-base-control__field .components-select-control__input{font-size:16px}}.components-snackbar{-webkit-backdrop-filter:blur(16px) saturate(180%);backdrop-filter:blur(16px) saturate(180%);background:#000000d9;border-radius:4px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;box-sizing:border-box;color:#fff;cursor:pointer;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;max-width:600px;padding:12px 20px;pointer-events:auto;width:100%}@media (min-width:600px){.components-snackbar{width:fit-content}}.components-snackbar:focus{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-snackbar.components-snackbar-explicit-dismiss{cursor:default}.components-snackbar .components-snackbar__content-with-icon{padding-left:24px;position:relative}.components-snackbar .components-snackbar__icon{left:-8px;position:absolute;top:-2.9px}.components-snackbar .components-snackbar__dismiss-button{cursor:pointer;margin-left:24px}.components-snackbar__action.components-button{color:#fff;flex-shrink:0;margin-left:32px}.components-snackbar__action.components-button:focus{box-shadow:none;outline:1px dotted #fff}.components-snackbar__action.components-button:hover{color:currentColor;text-decoration:none}.components-snackbar__content{align-items:baseline;display:flex;justify-content:space-between;line-height:1.4}.components-snackbar-list{box-sizing:border-box;pointer-events:none;position:absolute;width:100%;z-index:100000}.components-snackbar-list__notice-container{padding-top:8px;position:relative}.components-tab-panel__tabs{align-items:stretch;display:flex;flex-direction:row}.components-tab-panel__tabs[aria-orientation=vertical]{flex-direction:column}.components-tab-panel__tabs-item{background:#0000;border:none;border-radius:0;box-shadow:none;cursor:pointer;font-weight:500;height:48px!important;margin-left:0;padding:3px 16px;position:relative}.components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:none;outline:none;position:relative}.components-tab-panel__tabs-item:after{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:0;bottom:0;content:"";height:calc(var(--wp-admin-border-width-focus)*0);left:0;pointer-events:none;position:absolute;right:0}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:after{transition:all .1s linear}}.components-tab-panel__tabs-item.is-active:after{height:calc(var(--wp-admin-border-width-focus)*1);outline:2px solid #0000;outline-offset:-1px}.components-tab-panel__tabs-item:before{border-radius:2px;bottom:12px;box-shadow:0 0 0 0 #0000;content:"";left:12px;pointer-events:none;position:absolute;right:12px;top:12px}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:before{transition:all .1s linear}}.components-tab-panel__tabs-item:focus-visible:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-tab-panel__tab-content:focus{box-shadow:none;outline:none}.components-tab-panel__tab-content:focus-visible{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:0}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;height:32px;line-height:normal;margin:0;padding:6px 8px;width:100%}@media not (prefers-reduced-motion){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{font-size:13px;line-height:normal}}.components-text-control__input:focus,.components-text-control__input[type=color]:focus,.components-text-control__input[type=date]:focus,.components-text-control__input[type=datetime-local]:focus,.components-text-control__input[type=datetime]:focus,.components-text-control__input[type=email]:focus,.components-text-control__input[type=month]:focus,.components-text-control__input[type=number]:focus,.components-text-control__input[type=password]:focus,.components-text-control__input[type=tel]:focus,.components-text-control__input[type=text]:focus,.components-text-control__input[type=time]:focus,.components-text-control__input[type=url]:focus,.components-text-control__input[type=week]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-text-control__input::-webkit-input-placeholder,.components-text-control__input[type=color]::-webkit-input-placeholder,.components-text-control__input[type=date]::-webkit-input-placeholder,.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,.components-text-control__input[type=datetime]::-webkit-input-placeholder,.components-text-control__input[type=email]::-webkit-input-placeholder,.components-text-control__input[type=month]::-webkit-input-placeholder,.components-text-control__input[type=number]::-webkit-input-placeholder,.components-text-control__input[type=password]::-webkit-input-placeholder,.components-text-control__input[type=tel]::-webkit-input-placeholder,.components-text-control__input[type=text]::-webkit-input-placeholder,.components-text-control__input[type=time]::-webkit-input-placeholder,.components-text-control__input[type=url]::-webkit-input-placeholder,.components-text-control__input[type=week]::-webkit-input-placeholder{color:#1e1e1e9e}.components-text-control__input::-moz-placeholder,.components-text-control__input[type=color]::-moz-placeholder,.components-text-control__input[type=date]::-moz-placeholder,.components-text-control__input[type=datetime-local]::-moz-placeholder,.components-text-control__input[type=datetime]::-moz-placeholder,.components-text-control__input[type=email]::-moz-placeholder,.components-text-control__input[type=month]::-moz-placeholder,.components-text-control__input[type=number]::-moz-placeholder,.components-text-control__input[type=password]::-moz-placeholder,.components-text-control__input[type=tel]::-moz-placeholder,.components-text-control__input[type=text]::-moz-placeholder,.components-text-control__input[type=time]::-moz-placeholder,.components-text-control__input[type=url]::-moz-placeholder,.components-text-control__input[type=week]::-moz-placeholder{color:#1e1e1e9e}.components-text-control__input:-ms-input-placeholder,.components-text-control__input[type=color]:-ms-input-placeholder,.components-text-control__input[type=date]:-ms-input-placeholder,.components-text-control__input[type=datetime-local]:-ms-input-placeholder,.components-text-control__input[type=datetime]:-ms-input-placeholder,.components-text-control__input[type=email]:-ms-input-placeholder,.components-text-control__input[type=month]:-ms-input-placeholder,.components-text-control__input[type=number]:-ms-input-placeholder,.components-text-control__input[type=password]:-ms-input-placeholder,.components-text-control__input[type=tel]:-ms-input-placeholder,.components-text-control__input[type=text]:-ms-input-placeholder,.components-text-control__input[type=time]:-ms-input-placeholder,.components-text-control__input[type=url]:-ms-input-placeholder,.components-text-control__input[type=week]:-ms-input-placeholder{color:#1e1e1e9e}.components-text-control__input.is-next-40px-default-size,.components-text-control__input[type=color].is-next-40px-default-size,.components-text-control__input[type=date].is-next-40px-default-size,.components-text-control__input[type=datetime-local].is-next-40px-default-size,.components-text-control__input[type=datetime].is-next-40px-default-size,.components-text-control__input[type=email].is-next-40px-default-size,.components-text-control__input[type=month].is-next-40px-default-size,.components-text-control__input[type=number].is-next-40px-default-size,.components-text-control__input[type=password].is-next-40px-default-size,.components-text-control__input[type=tel].is-next-40px-default-size,.components-text-control__input[type=text].is-next-40px-default-size,.components-text-control__input[type=time].is-next-40px-default-size,.components-text-control__input[type=url].is-next-40px-default-size,.components-text-control__input[type=week].is-next-40px-default-size{height:40px;padding-left:12px;padding-right:12px}.components-text-control__input[type=email],.components-text-control__input[type=url]{direction:ltr}.components-tip{color:#757575;display:flex}.components-tip svg{fill:#f0b849;align-self:center;flex-shrink:0;margin-right:16px}.components-tip p{margin:0}.components-toggle-control__label{line-height:16px}.components-toggle-control__label:not(.is-disabled){cursor:pointer}.components-toggle-control__help{display:inline-block;margin-inline-start:40px}.components-accessible-toolbar{border:1px solid #1e1e1e;border-radius:2px;display:inline-flex;flex-shrink:0}.components-accessible-toolbar>.components-toolbar-group:last-child{border-right:none}.components-accessible-toolbar.is-unstyled{border:none}.components-accessible-toolbar.is-unstyled>.components-toolbar-group{border-right:none}.components-accessible-toolbar[aria-orientation=vertical],.components-toolbar[aria-orientation=vertical]{align-items:center;display:flex;flex-direction:column}.components-accessible-toolbar .components-button,.components-toolbar .components-button{height:48px;padding-left:16px;padding-right:16px;position:relative;z-index:1}.components-accessible-toolbar .components-button:focus:not(:disabled),.components-toolbar .components-button:focus:not(:disabled){box-shadow:none;outline:none}.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{border-radius:2px;content:"";display:block;height:32px;left:8px;position:absolute;right:8px;z-index:-1}@media not (prefers-reduced-motion){.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{animation:components-button__appear-animation .1s ease;animation-fill-mode:forwards}}.components-accessible-toolbar .components-button svg,.components-toolbar .components-button svg{margin-left:auto;margin-right:auto;position:relative}.components-accessible-toolbar .components-button.is-pressed,.components-accessible-toolbar .components-button.is-pressed:hover,.components-toolbar .components-button.is-pressed,.components-toolbar .components-button.is-pressed:hover{background:#0000}.components-accessible-toolbar .components-button.is-pressed:before,.components-toolbar .components-button.is-pressed:before{background:#1e1e1e}.components-accessible-toolbar .components-button:focus:before,.components-toolbar .components-button:focus:before{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-accessible-toolbar .components-button.has-icon.has-icon,.components-toolbar .components-button.has-icon.has-icon{min-width:48px;padding-left:8px;padding-right:8px}@keyframes components-button__appear-animation{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.components-toolbar__control.components-button{position:relative}.components-toolbar__control.components-button[data-subscript] svg{padding:5px 10px 5px 0}.components-toolbar__control.components-button[data-subscript]:after{bottom:10px;content:attr(data-subscript);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;line-height:12px;position:absolute;right:8px}.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after{color:#fff}.components-toolbar-group{background-color:#fff;border-right:1px solid #1e1e1e;display:inline-flex;flex-shrink:0;flex-wrap:wrap;line-height:0;min-height:48px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-toolbar-group.components-toolbar-group{border-width:0;margin:0}.components-toolbar-group .components-button.components-button,.components-toolbar-group .components-button.has-icon.has-icon{justify-content:center;min-width:36px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-button.components-button svg,.components-toolbar-group .components-button.has-icon.has-icon svg{min-width:24px}.components-toolbar-group .components-button.components-button:before,.components-toolbar-group .components-button.has-icon.has-icon:before{left:2px;right:2px}.components-toolbar{background-color:#fff;border:1px solid #1e1e1e;display:inline-flex;flex-shrink:0;flex-wrap:wrap;margin:0;min-height:48px}.components-toolbar .components-toolbar.components-toolbar{border-width:0;margin:0}div.components-toolbar>div{display:flex;margin:0}div.components-toolbar>div+div.has-left-divider{margin-left:6px;overflow:visible;position:relative}div.components-toolbar>div+div.has-left-divider:before{background-color:#ddd;box-sizing:initial;content:"";display:inline-block;height:20px;left:-3px;position:absolute;top:8px;width:1px}.components-tooltip{background:#000;border-radius:2px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;color:#f0f0f0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:12px;line-height:1.4;padding:4px 8px;text-align:center;z-index:1000002}.components-tooltip__shortcut{margin-left:8px}#wpadminbar>.godaddy-styles *,.godaddy-styles *{font-family:GD Sherpa,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1.4}#wpadminbar>.godaddy-styles .is-bigger,.godaddy-styles .is-bigger{font-size:1.1em!important;font-weight:500!important}#wpadminbar>.godaddy-styles .components-button,#wpadminbar>.godaddy-styles.components-button,.godaddy-styles .components-button,.godaddy-styles.components-button{border:0;border-radius:6px;box-shadow:none;font-size:1em;height:auto;line-height:1;padding:1.25em;transition:background-color,color,.2s ease-in-out}#wpadminbar>.godaddy-styles .components-button:disabled,#wpadminbar>.godaddy-styles.components-button:disabled,.godaddy-styles .components-button:disabled,.godaddy-styles.components-button:disabled{opacity:.5}#wpadminbar>.godaddy-styles .components-button>svg,#wpadminbar>.godaddy-styles.components-button>svg,.godaddy-styles .components-button>svg,.godaddy-styles.components-button>svg{height:24px;margin-left:.2em;position:relative;right:-5px;top:-1px;transform:scale(.75);width:24px}#wpadminbar>.godaddy-styles .components-button.no-padding,#wpadminbar>.godaddy-styles.components-button.no-padding,.godaddy-styles .components-button.no-padding,.godaddy-styles.components-button.no-padding{padding:0}#wpadminbar>.godaddy-styles .components-button.is-big,#wpadminbar>.godaddy-styles.components-button.is-big,.godaddy-styles .components-button.is-big,.godaddy-styles.components-button.is-big{font-size:1.1em;font-weight:600;padding:1.5em}#wpadminbar>.godaddy-styles .components-button.is-primary,#wpadminbar>.godaddy-styles.components-button.is-primary,.godaddy-styles .components-button.is-primary,.godaddy-styles.components-button.is-primary{background-color:#000;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-primary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:hover:not([disabled]),.godaddy-styles .components-button.is-primary:active:not([disabled]),.godaddy-styles .components-button.is-primary:hover:not([disabled]),.godaddy-styles.components-button.is-primary:active:not([disabled]),.godaddy-styles.components-button.is-primary:hover:not([disabled]){background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-button.is-secondary,#wpadminbar>.godaddy-styles.components-button.is-secondary,.godaddy-styles .components-button.is-secondary,.godaddy-styles.components-button.is-secondary{box-shadow:none;color:#111}#wpadminbar>.godaddy-styles .components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-secondary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:hover:not([disabled]),.godaddy-styles .components-button.is-secondary:active:not([disabled]),.godaddy-styles .components-button.is-secondary:hover:not([disabled]),.godaddy-styles.components-button.is-secondary:active:not([disabled]),.godaddy-styles.components-button.is-secondary:hover:not([disabled]){border:0;box-shadow:none;color:#000}#wpadminbar>.godaddy-styles .components-button.is-tertiary,#wpadminbar>.godaddy-styles.components-button.is-tertiary,.godaddy-styles .components-button.is-tertiary,.godaddy-styles.components-button.is-tertiary{border:1px solid #111;color:#111}#wpadminbar>.godaddy-styles .components-button.is-tertiary:hover,#wpadminbar>.godaddy-styles.components-button.is-tertiary:hover,.godaddy-styles .components-button.is-tertiary:hover,.godaddy-styles.components-button.is-tertiary:hover{background-color:#111;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-link,#wpadminbar>.godaddy-styles.components-button.is-link,.godaddy-styles .components-button.is-link,.godaddy-styles.components-button.is-link{box-shadow:none;color:#00a4a6;padding:0;text-decoration:none}#wpadminbar>.godaddy-styles .components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-link:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:hover:not([disabled]),.godaddy-styles .components-button.is-link:active:not([disabled]),.godaddy-styles .components-button.is-link:hover:not([disabled]),.godaddy-styles.components-button.is-link:active:not([disabled]),.godaddy-styles.components-button.is-link:hover:not([disabled]){color:#111;outline:none}#wpadminbar>.godaddy-styles .components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.has-icon:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:hover:not([disabled]),.godaddy-styles .components-button.has-icon:active:not([disabled]),.godaddy-styles .components-button.has-icon:hover:not([disabled]),.godaddy-styles.components-button.has-icon:active:not([disabled]),.godaddy-styles.components-button.has-icon:hover:not([disabled]){background-color:transparent;color:#00a4a6}#wpadminbar>.godaddy-styles .components-modal__frame,#wpadminbar>.godaddy-styles.components-modal__frame,.godaddy-styles .components-modal__frame,.godaddy-styles.components-modal__frame{border-radius:1rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content,.godaddy-styles .components-modal__frame .components-modal__content,.godaddy-styles.components-modal__frame .components-modal__content{margin-top:0;padding:4.5rem 4.5rem 4.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content:before,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content:before,.godaddy-styles .components-modal__frame .components-modal__content:before,.godaddy-styles.components-modal__frame .components-modal__content:before{margin:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content p:last-child,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content p:last-child,.godaddy-styles .components-modal__frame .components-modal__content p:last-child,.godaddy-styles.components-modal__frame .components-modal__content p:last-child{margin-bottom:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header{border-bottom:0;font-size:2rem;height:unset;margin-bottom:.75em;padding:0;position:relative}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container{margin-right:8px}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading{font-size:2rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon{font-size:1rem;left:auto;padding:.25em;position:absolute;right:-3.5rem;top:-3.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg{margin-left:0;right:0;top:0;transform:scale(1)}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input{margin-bottom:.5em}#wpadminbar>.godaddy-styles .ux-tag,.godaddy-styles .ux-tag{border-radius:4px;color:#000;font-size:.9em;font-weight:700;letter-spacing:.05625rem;line-height:1.5;padding-block:8px;padding-inline:8px;text-transform:uppercase;white-space:nowrap}#wpadminbar>.godaddy-styles .ux-tag-critical,.godaddy-styles .ux-tag-critical{background-color:#fbb}#wpadminbar>.godaddy-styles .ux-tag-highlight,.godaddy-styles .ux-tag-highlight{background-color:#a6fff8}#wpadminbar>.godaddy-styles .ux-tag-info,.godaddy-styles .ux-tag-info{background-color:#d3c1f7}#wpadminbar>.godaddy-styles .ux-tag-internal,.godaddy-styles .ux-tag-internal{background-color:#fbd9ed}#wpadminbar>.godaddy-styles .ux-tag-neutral,.godaddy-styles .ux-tag-neutral{background-color:#ddeaf8}#wpadminbar>.godaddy-styles .ux-tag-passive,.godaddy-styles .ux-tag-passive{background-color:#f4f8fc}#wpadminbar>.godaddy-styles .ux-tag-success,.godaddy-styles .ux-tag-success{background-color:#9fffb8}#wpadminbar>.godaddy-styles .ux-tag-warning,.godaddy-styles .ux-tag-warning{background-color:#ffeea9}#wpadminbar>.godaddy-styles .components-toggle-control,#wpadminbar>.godaddy-styles.components-toggle-control,.godaddy-styles .components-toggle-control,.godaddy-styles.components-toggle-control{align-items:flex-end;display:flex}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles .components-toggle-control__field,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles.components-toggle-control__field,.godaddy-styles .components-toggle-control .components-base-control__field,.godaddy-styles .components-toggle-control__field,.godaddy-styles.components-toggle-control .components-base-control__field,.godaddy-styles.components-toggle-control__field{margin:0}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track{background-color:#f3f6f8}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track{background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__help,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__help,.godaddy-styles .components-toggle-control .components-base-control__help,.godaddy-styles.components-toggle-control .components-base-control__help{margin:0}
/*
Theme Name: Yuga
Theme URI: https://wordpress.com/theme/yuga
Author: Automattic
Author URI: https://automattic.com/
Description: Yuga is a clean and elegant theme. Its sophisticated typography and clean look make it a perfect match for an architecture firm.
Requires at least: 5.8
Tested up to: 5.9
Requires PHP: 7.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
Template: 
Text Domain: yuga
Tags: auto-loading-homepage, block-patterns, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
*/

/*
 * Font smoothing
 */

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

/*
 * Link Details
 */

a {
	cursor: pointer;
	text-decoration-line: none;
}

a:hover:not(.wp-block-button__link),
.wp-block-site-title a:hover,
.wp-block-post-title a:hover,
.wp-block-post-date a:hover {
	text-decoration: underline;
	text-decoration-thickness: 0.05em;
	text-underline-offset: 0.3em;
}

a:active,
.wp-block-site-title a:active,
.wp-block-post-title a:active,
.wp-block-post-date a:active {
	text-decoration-style: solid;
}

.wp-block-navigation .wp-block-navigation-link a:hover,
.wp-block-navigation .wp-block-page-list a:hover,
.wp-block-navigation .wp-block-pages-list__item a:hover {
	text-decoration-line: underline;
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	background-color: var(--wp--preset--color--secondary);
}

/*
 * Search and File Block button styles.
 * Necessary until the following issues are resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/36444
 * https://github.com/WordPress/gutenberg/issues/27760
 */

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--foreground);
	border-color: var(--wp--preset--color--foreground);
	border-radius: 0;
	border-width: 1px;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--typography--font-size--normal);
	padding: 0.9375rem 1.9375rem;
}

/*
 * Comment Form Fields
 */

.wp-block-post-comments input:not([type='submit']),
.wp-block-post-comments textarea {
	border-color: var(--wp--custom--form--border--color);
	color: var(--wp--preset--color--foregound);
}

.wp-block-post-comments .comment-form-author label,
.wp-block-post-comments .comment-form-comment label,
.wp-block-post-comments .comment-form-email label,
.wp-block-post-comments .comment-form-url label {
	font-weight: 500;
	margin-bottom: 0.25rem;
}

/*
 * Alignment styles, borrowed from Twenty Twenty-Two.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-columns.alignfull.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align='full'] > .wp-block-group,
.is-root-container .wp-block[data-align='full'] > .wp-block-columns.has-background,
.is-root-container .wp-block[data-align='full'] > .wp-block-cover {
	padding-left: var(--wp--custom--gap--horizontal);
	padding-right: var(--wp--custom--gap--horizontal);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align='full'] {
	margin-left: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
	margin-right: calc(-1 * var(--wp--custom--gap--horizontal)) !important;
	max-width: unset;
	width: unset;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: auto !important;
	margin-right: auto !important;
	width: inherit;
}

/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	padding-top: var(--wp--custom--gap--horizontal);
	padding-bottom: var(--wp--custom--gap--vertical);
	padding-right: var(--wp--custom--gap--horizontal);
	padding-left: var(--wp--custom--gap--horizontal);
}

/*
 * Needed until https://github.com/WordPress/gutenberg/issues/37035 is fixed.
 */
.wp-block-navigation__responsive-container.is-menu-open ul {
	font-size: var(--wp--preset--font-size--large) !important;
	gap: calc(var(--wp--style--block-gap) / 2) !important;
}

/*
 * Remove the default border from submenu.
 */
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	border: 0;
}

.wp-block-navigation__responsive-container-open {
	border-color: var(--wp--preset--color--foreground);
	border-radius: 3px;
	border-style:  solid;
	border-width:  1px;
	padding: 0.285714286em 0.571428571em !important;
}

/*
 * Needed until https://github.com/WordPress/gutenberg/issues/34196 or something like it.
 */
.wp-block-tag-cloud.is-style-outline a {
	border-radius: 200px;
	padding: 0 1rem;
}

.wp-block-tag-cloud.is-style-outline a:hover {
	color: var(--wp--preset--color--background);
	background-color: var(--wp--preset--color--primary);
}

/*
 * Needed to style Jetpack Contact Form
 */
.wp-block-jetpack-contact-form {
	font-size: var(--wp--preset--font-size--small);
}

.wp-block-jetpack-contact-form input:not([type=submit]):not([type=checkbox]),
.wp-block-jetpack-contact-form select,
.wp-block-jetpack-contact-form textarea {
	background-color: #fff;
	border: 1px solid var(--wp--custom--form--border--color);
	font-family: inherit;
	font-size: 1em;
	padding: calc(0.667em + 2px);
}

.wp-block-jetpack-contact-form .wp-block-jetpack-button button {
	border-width:  1px;
	font-size: var(--wp--preset--font-size--x-small);
	padding: 0.9375rem 1.9375rem;
}

.wp-block-jetpack-contact-form.contact-form label {
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.wp-block-jetpack-contact-form.contact-form label span {
	opacity: 0.7;
}

.wp-block-jetpack-contact-form.contact-form select {
	padding: calc(0.667em + 1px);
}

.jetpack-option__input.jetpack-option__input.jetpack-option__input {
	margin-bottom: 0.25rem;
}

div[id^="contact-form-"] h3 {
	font-size: var(--wp--preset--font-size--normal);
}

.contact-form-submission {
	font-size: var(--wp--preset--font-size--small);
	margin: 0;
	padding: 0;
}

/*
 * Remove the default top margin from footer.
 */
.site-footer-container {
	margin-top: auto;
}
/**
 * Like Button toolbar button, loading text & container styles
 */

/* Master container */
#jp-post-flair {
	padding-top: .5em;
}

/* Overall Sharedaddy block title */
div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
	clear: both;
}

div.sharedaddy h3.sd-title {
	margin: 0 0 1em 0;
	display: inline-block;
	line-height: 1.2;
	font-size: 9pt;
	font-weight: 700;
}

div.sharedaddy h3.sd-title::before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid #dcdcde;
	margin-bottom: 1em;
}


/* Toolbar */
div.jetpack-likes-widget-wrapper {
	width: 100%;
	min-height: 50px;	/* Previous height, 60px */
	position: relative; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
}

div.jetpack-likes-widget-wrapper .sd-link-color {
	font-size: 12px;
}

div.jetpack-comment-likes-widget-wrapper {
	width: 100%;
	position: relative;
	min-height: 31px;
}

div.jetpack-comment-likes-widget-wrapper iframe {
	margin-bottom: 0;
}

#likes-other-gravatars {
	display: none;
	position: absolute;
	padding: 9px 12px 10px 12px;
	background-color: #fff;
	border: solid 1px #dcdcde;
	border-radius: 4px;
	box-shadow: none;
	min-width: 220px;
	max-height: 240px;
	height: auto;
	overflow: auto;
	z-index: 1000;
}

#likes-other-gravatars * {
	line-height: normal;
}

#likes-other-gravatars .likes-text {
	color: #101517;
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 8px;
}

#likes-other-gravatars ul,
#likes-other-gravatars li {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style-type: none;
}

#likes-other-gravatars li::before {
	content: "";
}

#likes-other-gravatars ul.wpl-avatars {
	overflow: auto;
	display: block;
	max-height: 190px;
}

#likes-other-gravatars ul.wpl-avatars li {
	width: 196px;
	height: 28px;
	float: none;
	margin: 0 0 4px 0;
}

#likes-other-gravatars ul.wpl-avatars li a {
	margin: 0 2px 0 0;
	border-bottom: none !important;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

#likes-other-gravatars ul.wpl-avatars li a span {
	font-size: 12px;
	color: #2C3338;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#likes-other-gravatars ul.wpl-avatars li a img {
	background: none;
	border: none;
	border-radius: 50%;
	margin: 0 !important;
	padding: 1px !important;
	position: static;
	box-sizing: border-box;
}

div.sd-box {
	border-top: 1px solid #dcdcde;
	border-top: 1px solid rgba(0,0,0,.13);
}


.jetpack-likes-widget-unloaded .likes-widget-placeholder,
.jetpack-likes-widget-loading .likes-widget-placeholder,
.jetpack-likes-widget-loaded iframe {
	display: block;
}

.jetpack-likes-widget-loaded .likes-widget-placeholder,
.jetpack-likes-widget-unloaded iframe,
.jetpack-likes-widget-loading iframe {
	display: none;
}

.entry-content .post-likes-widget, .post-likes-widget,
.comment-likes-widget {
	margin: 0;
	border-width: 0;
}

/* Loading text */
.post-likes-widget-placeholder,
.comment-likes-widget-placeholder {
	margin: 0;
	border-width: 0;
	position: relative;
}

.comment-likes-widget-placeholder {
	height: 18px;
	position: absolute;
	display: flex;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

.comment-likes-widget-placeholder::before {
	color: #2EA2CC;
	width: 16px;
	height: 16px;
	content: '';
	display: inline-block;
	position: relative;
	top: 3px;
	padding-right: 5px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	// stylelint-disable-next-line function-url-quotes -- quotes are required here. Bug report: https://github.com/stylelint/stylelint/issues/8544
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E");
}

.post-likes-widget-placeholder .button {
	display: none;	/* Let's not show a dummy like button, let's just make a great button experience once it's loaded */
}

.post-likes-widget-placeholder .loading,
.comment-likes-widget-placeholder .loading {
	color: #999;
	font-size: 12px;
}

.comment-likes-widget-placeholder .loading {
	padding-left: 5px;
	margin-top: 4px;
	align-self: center;
	color: #4E4E4E;
}

/* Like Special cases (display on it's own) */
div.sharedaddy.sd-like-enabled .sd-like h3 {
	display: none;
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
	width: 100%;
	float: none;
	position: absolute; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
	top: 0;
}

.comment-likes-widget {
	width: 100%;
}


/* Make ratings block. @todo: make !important unnecessary by removing inline style */
.pd-rating,
.cs-rating {
	display: block !important;
}


/* Hide G+ title */
.sd-gplus .sd-title {
	display: none;
}

@media print {

	.jetpack-likes-widget-wrapper {
		display: none;
	}
}
.elementor-kit-2364{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-2364 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f4b4c9cb85df757ca08c)
 * Config saved to config.json and https://gist.github.com/f4b4c9cb85df757ca08c
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
.wpdevelop article,
.wpdevelop aside,
.wpdevelop details,
.wpdevelop figcaption,
.wpdevelop figure,
.wpdevelop footer,
.wpdevelop header,
.wpdevelop hgroup,
.wpdevelop main,
.wpdevelop menu,
.wpdevelop nav,
.wpdevelop section,
.wpdevelop summary {
  display: block;
}
.wpdevelop audio,
.wpdevelop canvas,
.wpdevelop progress,
.wpdevelop video {
  display: inline-block;
  vertical-align: baseline;
}
.wpdevelop audio:not([controls]) {
  display: none;
  height: 0;
}
.wpdevelop [hidden],
.wpdevelop template {
  display: none;
}
.wpdevelop a {
  background-color: transparent;
}
.wpdevelop a:active,
.wpdevelop a:hover {
  outline: 0;
}
.wpdevelop abbr[title] {
  border-bottom: 1px dotted;
}
.wpdevelop b,
.wpdevelop strong {
  font-weight: bold;
}
.wpdevelop dfn {
  font-style: italic;
}
.wpdevelop h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.wpdevelop mark {
  background: #ff0;
  color: #000;
}
.wpdevelop small {
  font-size: 80%;
}
.wpdevelop sub,
.wpdevelop sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.wpdevelop sup {
  top: -0.5em;
}
.wpdevelop sub {
  bottom: -0.25em;
}
.wpdevelop img {
  border: 0;
}
.wpdevelop svg:not(:root) {
  overflow: hidden;
}
.wpdevelop figure {
  margin: 1em 40px;
}
.wpdevelop hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
.wpdevelop pre {
  overflow: auto;
}
.wpdevelop code,
.wpdevelop kbd,
.wpdevelop pre,
.wpdevelop samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.wpdevelop button,
.wpdevelop input,
.wpdevelop optgroup,
.wpdevelop select,
.wpdevelop textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
.wpdevelop button {
  overflow: visible;
}
.wpdevelop button,
.wpdevelop select {
  text-transform: none;
}
.wpdevelop button,
.wpdevelop html input[type="button"],
.wpdevelop input[type="reset"],
.wpdevelop input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.wpdevelop button[disabled],
.wpdevelop html input[disabled] {
  cursor: default;
}
.wpdevelop button::-moz-focus-inner,
.wpdevelop input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.wpdevelop input {
  line-height: normal;
}
.wpdevelop input[type="checkbox"],
.wpdevelop input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
.wpdevelop input[type="number"]::-webkit-inner-spin-button,
.wpdevelop input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
.wpdevelop input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.wpdevelop input[type="search"]::-webkit-search-cancel-button,
.wpdevelop input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.wpdevelop fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.wpdevelop legend {
  border: 0;
  padding: 0;
}
.wpdevelop textarea {
  overflow: auto;
}
.wpdevelop optgroup {
  font-weight: bold;
}
.wpdevelop table {
  border-collapse: collapse;
  border-spacing: 0;
}
.wpdevelop td,
.wpdevelop th {
  padding: 0;
}
@media print {
  .wpdevelop_print *,
  .wpdevelop_print *:before,
  .wpdevelop_print *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .wpdevelop_print a,
  .wpdevelop_print a:visited {
    text-decoration: underline;
  }
  .wpdevelop_print a[href]:after {
    content: " (" attr(href) ")";
  }
  .wpdevelop_print abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .wpdevelop_print a[href^="#"]:after,
  .wpdevelop_print a[href^="javascript:"]:after {
    content: "";
  }
  .wpdevelop_print pre,
  .wpdevelop_print blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  .wpdevelop_print thead {
    display: table-header-group;
  }
  .wpdevelop_print tr,
  .wpdevelop_print img {
    page-break-inside: avoid;
  }
  .wpdevelop_print img {
    max-width: 100% !important;
  }
  .wpdevelop_print p,
  .wpdevelop_print h2,
  .wpdevelop_print h3 {
    orphans: 3;
    widows: 3;
  }
  .wpdevelop_print h2,
  .wpdevelop_print h3 {
    page-break-after: avoid;
  }
  .wpdevelop_print .navbar {
    display: none;
  }
  .wpdevelop_print .btn > .caret,
  .wpdevelop_print .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .wpdevelop_print .label {
    border: 1px solid #000;
  }
  .wpdevelop_print .table {
    border-collapse: collapse !important;
  }
  .wpdevelop_print .table td,
  .wpdevelop_print .table th {
    background-color: #fff !important;
  }
  .wpdevelop_print .table-bordered th,
  .wpdevelop_print .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
.wpdevelop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wpdevelop *:before,
.wpdevelop *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wpdevelop html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}
.wpdevelop body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
.wpdevelop input,
.wpdevelop button,
.wpdevelop select,
.wpdevelop textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.wpdevelop a {
  color: #337ab7;
  text-decoration: none;
}
.wpdevelop a:hover,
.wpdevelop a:focus {
  color: #23527c;
  text-decoration: underline;
}
.wpdevelop a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.wpdevelop figure {
  margin: 0;
}
.wpdevelop img {
  vertical-align: middle;
}
.wpdevelop .img-responsive,
.wpdevelop .thumbnail > img,
.wpdevelop .thumbnail a > img,
.wpdevelop .carousel-inner > .item > img,
.wpdevelop .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wpdevelop .img-rounded {
  border-radius: 6px;
}
.wpdevelop .img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.wpdevelop .img-circle {
  border-radius: 50%;
}
.wpdevelop hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.wpdevelop .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wpdevelop .sr-only-focusable:active,
.wpdevelop .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.wpdevelop [role="button"] {
  cursor: pointer;
}
.wpdevelop h1,
.wpdevelop h2,
.wpdevelop h3,
.wpdevelop h4,
.wpdevelop h5,
.wpdevelop h6,
.wpdevelop .h1,
.wpdevelop .h2,
.wpdevelop .h3,
.wpdevelop .h4,
.wpdevelop .h5,
.wpdevelop .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.wpdevelop h1 small,
.wpdevelop h2 small,
.wpdevelop h3 small,
.wpdevelop h4 small,
.wpdevelop h5 small,
.wpdevelop h6 small,
.wpdevelop .h1 small,
.wpdevelop .h2 small,
.wpdevelop .h3 small,
.wpdevelop .h4 small,
.wpdevelop .h5 small,
.wpdevelop .h6 small,
.wpdevelop h1 .small,
.wpdevelop h2 .small,
.wpdevelop h3 .small,
.wpdevelop h4 .small,
.wpdevelop h5 .small,
.wpdevelop h6 .small,
.wpdevelop .h1 .small,
.wpdevelop .h2 .small,
.wpdevelop .h3 .small,
.wpdevelop .h4 .small,
.wpdevelop .h5 .small,
.wpdevelop .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
.wpdevelop h1,
.wpdevelop .h1,
.wpdevelop h2,
.wpdevelop .h2,
.wpdevelop h3,
.wpdevelop .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.wpdevelop h1 small,
.wpdevelop .h1 small,
.wpdevelop h2 small,
.wpdevelop .h2 small,
.wpdevelop h3 small,
.wpdevelop .h3 small,
.wpdevelop h1 .small,
.wpdevelop .h1 .small,
.wpdevelop h2 .small,
.wpdevelop .h2 .small,
.wpdevelop h3 .small,
.wpdevelop .h3 .small {
  font-size: 65%;
}
.wpdevelop h4,
.wpdevelop .h4,
.wpdevelop h5,
.wpdevelop .h5,
.wpdevelop h6,
.wpdevelop .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.wpdevelop h4 small,
.wpdevelop .h4 small,
.wpdevelop h5 small,
.wpdevelop .h5 small,
.wpdevelop h6 small,
.wpdevelop .h6 small,
.wpdevelop h4 .small,
.wpdevelop .h4 .small,
.wpdevelop h5 .small,
.wpdevelop .h5 .small,
.wpdevelop h6 .small,
.wpdevelop .h6 .small {
  font-size: 75%;
}
.wpdevelop h1,
.wpdevelop .h1 {
  font-size: 36px;
}
.wpdevelop h2,
.wpdevelop .h2 {
  font-size: 30px;
}
.wpdevelop h3,
.wpdevelop .h3 {
  font-size: 24px;
}
.wpdevelop h4,
.wpdevelop .h4 {
  font-size: 18px;
}
.wpdevelop h5,
.wpdevelop .h5 {
  font-size: 14px;
}
.wpdevelop h6,
.wpdevelop .h6 {
  font-size: 12px;
}
.wpdevelop p {
  margin: 0 0 10px;
}
.wpdevelop .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .wpdevelop .lead {
    font-size: 21px;
  }
}
.wpdevelop small,
.wpdevelop .small {
  font-size: 85%;
}
.wpdevelop mark,
.wpdevelop .mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.wpdevelop .text-left {
  text-align: left;
}
.wpdevelop .text-right {
  text-align: right;
}
.wpdevelop .text-center {
  text-align: center;
}
.wpdevelop .text-justify {
  text-align: justify;
}
.wpdevelop .text-nowrap {
  white-space: nowrap;
}
.wpdevelop .text-lowercase {
  text-transform: lowercase;
}
.wpdevelop .text-uppercase {
  text-transform: uppercase;
}
.wpdevelop .text-capitalize {
  text-transform: capitalize;
}
.wpdevelop .text-muted {
  color: #777777;
}
.wpdevelop .text-primary {
  color: #337ab7;
}
.wpdevelop a.text-primary:hover,
.wpdevelop a.text-primary:focus {
  color: #286090;
}
.wpdevelop .text-success {
  color: #3c763d;
}
.wpdevelop a.text-success:hover,
.wpdevelop a.text-success:focus {
  color: #2b542c;
}
.wpdevelop .text-info {
  color: #31708f;
}
.wpdevelop a.text-info:hover,
.wpdevelop a.text-info:focus {
  color: #245269;
}
.wpdevelop .text-warning {
  color: #8a6d3b;
}
.wpdevelop a.text-warning:hover,
.wpdevelop a.text-warning:focus {
  color: #66512c;
}
.wpdevelop .text-danger {
  color: #a94442;
}
.wpdevelop a.text-danger:hover,
.wpdevelop a.text-danger:focus {
  color: #843534;
}
.wpdevelop .bg-primary {
  color: #fff;
  background-color: #337ab7;
}
.wpdevelop a.bg-primary:hover,
.wpdevelop a.bg-primary:focus {
  background-color: #286090;
}
.wpdevelop .bg-success {
  background-color: #dff0d8;
}
.wpdevelop a.bg-success:hover,
.wpdevelop a.bg-success:focus {
  background-color: #c1e2b3;
}
.wpdevelop .bg-info {
  background-color: #d9edf7;
}
.wpdevelop a.bg-info:hover,
.wpdevelop a.bg-info:focus {
  background-color: #afd9ee;
}
.wpdevelop .bg-warning {
  background-color: #fcf8e3;
}
.wpdevelop a.bg-warning:hover,
.wpdevelop a.bg-warning:focus {
  background-color: #f7ecb5;
}
.wpdevelop .bg-danger {
  background-color: #f2dede;
}
.wpdevelop a.bg-danger:hover,
.wpdevelop a.bg-danger:focus {
  background-color: #e4b9b9;
}
.wpdevelop .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
.wpdevelop ul,
.wpdevelop ol {
  margin-top: 0;
  margin-bottom: 10px;
}
.wpdevelop ul ul,
.wpdevelop ol ul,
.wpdevelop ul ol,
.wpdevelop ol ol {
  margin-bottom: 0;
}
.wpdevelop .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.wpdevelop .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.wpdevelop .list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.wpdevelop dl {
  margin-top: 0;
  margin-bottom: 20px;
}
.wpdevelop dt,
.wpdevelop dd {
  line-height: 1.42857143;
}
.wpdevelop dt {
  font-weight: bold;
}
.wpdevelop dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .wpdevelop .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wpdevelop .dl-horizontal dd {
    margin-left: 180px;
  }
}
.wpdevelop abbr[title],
.wpdevelop abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.wpdevelop .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.wpdevelop blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
.wpdevelop blockquote p:last-child,
.wpdevelop blockquote ul:last-child,
.wpdevelop blockquote ol:last-child {
  margin-bottom: 0;
}
.wpdevelop blockquote footer,
.wpdevelop blockquote small,
.wpdevelop blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
.wpdevelop blockquote footer:before,
.wpdevelop blockquote small:before,
.wpdevelop blockquote .small:before {
  content: '\2014 \00A0';
}
.wpdevelop .blockquote-reverse,
.wpdevelop blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.wpdevelop .blockquote-reverse footer:before,
.wpdevelop blockquote.pull-right footer:before,
.wpdevelop .blockquote-reverse small:before,
.wpdevelop blockquote.pull-right small:before,
.wpdevelop .blockquote-reverse .small:before,
.wpdevelop blockquote.pull-right .small:before {
  content: '';
}
.wpdevelop .blockquote-reverse footer:after,
.wpdevelop blockquote.pull-right footer:after,
.wpdevelop .blockquote-reverse small:after,
.wpdevelop blockquote.pull-right small:after,
.wpdevelop .blockquote-reverse .small:after,
.wpdevelop blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
.wpdevelop address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.wpdevelop code,
.wpdevelop kbd,
.wpdevelop pre,
.wpdevelop samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.wpdevelop code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
.wpdevelop kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.wpdevelop kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpdevelop pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.wpdevelop pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.wpdevelop .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.wpdevelop .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .wpdevelop .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .wpdevelop .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .container {
    width: 1170px;
  }
}
.wpdevelop .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.wpdevelop .row {
  margin-left: -15px;
  margin-right: -15px;
}
.wpdevelop .col-xs-1, .wpdevelop .col-sm-1, .wpdevelop .col-md-1, .wpdevelop .col-lg-1, .wpdevelop .col-xs-2, .wpdevelop .col-sm-2, .wpdevelop .col-md-2, .wpdevelop .col-lg-2, .wpdevelop .col-xs-3, .wpdevelop .col-sm-3, .wpdevelop .col-md-3, .wpdevelop .col-lg-3, .wpdevelop .col-xs-4, .wpdevelop .col-sm-4, .wpdevelop .col-md-4, .wpdevelop .col-lg-4, .wpdevelop .col-xs-5, .wpdevelop .col-sm-5, .wpdevelop .col-md-5, .wpdevelop .col-lg-5, .wpdevelop .col-xs-6, .wpdevelop .col-sm-6, .wpdevelop .col-md-6, .wpdevelop .col-lg-6, .wpdevelop .col-xs-7, .wpdevelop .col-sm-7, .wpdevelop .col-md-7, .wpdevelop .col-lg-7, .wpdevelop .col-xs-8, .wpdevelop .col-sm-8, .wpdevelop .col-md-8, .wpdevelop .col-lg-8, .wpdevelop .col-xs-9, .wpdevelop .col-sm-9, .wpdevelop .col-md-9, .wpdevelop .col-lg-9, .wpdevelop .col-xs-10, .wpdevelop .col-sm-10, .wpdevelop .col-md-10, .wpdevelop .col-lg-10, .wpdevelop .col-xs-11, .wpdevelop .col-sm-11, .wpdevelop .col-md-11, .wpdevelop .col-lg-11, .wpdevelop .col-xs-12, .wpdevelop .col-sm-12, .wpdevelop .col-md-12, .wpdevelop .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.wpdevelop .col-xs-1, .wpdevelop .col-xs-2, .wpdevelop .col-xs-3, .wpdevelop .col-xs-4, .wpdevelop .col-xs-5, .wpdevelop .col-xs-6, .wpdevelop .col-xs-7, .wpdevelop .col-xs-8, .wpdevelop .col-xs-9, .wpdevelop .col-xs-10, .wpdevelop .col-xs-11, .wpdevelop .col-xs-12 {
  float: left;
}
.wpdevelop .col-xs-12 {
  width: 100%;
}
.wpdevelop .col-xs-11 {
  width: 91.66666667%;
}
.wpdevelop .col-xs-10 {
  width: 83.33333333%;
}
.wpdevelop .col-xs-9 {
  width: 75%;
}
.wpdevelop .col-xs-8 {
  width: 66.66666667%;
}
.wpdevelop .col-xs-7 {
  width: 58.33333333%;
}
.wpdevelop .col-xs-6 {
  width: 50%;
}
.wpdevelop .col-xs-5 {
  width: 41.66666667%;
}
.wpdevelop .col-xs-4 {
  width: 33.33333333%;
}
.wpdevelop .col-xs-3 {
  width: 25%;
}
.wpdevelop .col-xs-2 {
  width: 16.66666667%;
}
.wpdevelop .col-xs-1 {
  width: 8.33333333%;
}
.wpdevelop .col-xs-pull-12 {
  right: 100%;
}
.wpdevelop .col-xs-pull-11 {
  right: 91.66666667%;
}
.wpdevelop .col-xs-pull-10 {
  right: 83.33333333%;
}
.wpdevelop .col-xs-pull-9 {
  right: 75%;
}
.wpdevelop .col-xs-pull-8 {
  right: 66.66666667%;
}
.wpdevelop .col-xs-pull-7 {
  right: 58.33333333%;
}
.wpdevelop .col-xs-pull-6 {
  right: 50%;
}
.wpdevelop .col-xs-pull-5 {
  right: 41.66666667%;
}
.wpdevelop .col-xs-pull-4 {
  right: 33.33333333%;
}
.wpdevelop .col-xs-pull-3 {
  right: 25%;
}
.wpdevelop .col-xs-pull-2 {
  right: 16.66666667%;
}
.wpdevelop .col-xs-pull-1 {
  right: 8.33333333%;
}
.wpdevelop .col-xs-pull-0 {
  right: auto;
}
.wpdevelop .col-xs-push-12 {
  left: 100%;
}
.wpdevelop .col-xs-push-11 {
  left: 91.66666667%;
}
.wpdevelop .col-xs-push-10 {
  left: 83.33333333%;
}
.wpdevelop .col-xs-push-9 {
  left: 75%;
}
.wpdevelop .col-xs-push-8 {
  left: 66.66666667%;
}
.wpdevelop .col-xs-push-7 {
  left: 58.33333333%;
}
.wpdevelop .col-xs-push-6 {
  left: 50%;
}
.wpdevelop .col-xs-push-5 {
  left: 41.66666667%;
}
.wpdevelop .col-xs-push-4 {
  left: 33.33333333%;
}
.wpdevelop .col-xs-push-3 {
  left: 25%;
}
.wpdevelop .col-xs-push-2 {
  left: 16.66666667%;
}
.wpdevelop .col-xs-push-1 {
  left: 8.33333333%;
}
.wpdevelop .col-xs-push-0 {
  left: auto;
}
.wpdevelop .col-xs-offset-12 {
  margin-left: 100%;
}
.wpdevelop .col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.wpdevelop .col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.wpdevelop .col-xs-offset-9 {
  margin-left: 75%;
}
.wpdevelop .col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.wpdevelop .col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.wpdevelop .col-xs-offset-6 {
  margin-left: 50%;
}
.wpdevelop .col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.wpdevelop .col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.wpdevelop .col-xs-offset-3 {
  margin-left: 25%;
}
.wpdevelop .col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.wpdevelop .col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.wpdevelop .col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .wpdevelop .col-sm-1, .wpdevelop .col-sm-2, .wpdevelop .col-sm-3, .wpdevelop .col-sm-4, .wpdevelop .col-sm-5, .wpdevelop .col-sm-6, .wpdevelop .col-sm-7, .wpdevelop .col-sm-8, .wpdevelop .col-sm-9, .wpdevelop .col-sm-10, .wpdevelop .col-sm-11, .wpdevelop .col-sm-12 {
    float: left;
  }
  .wpdevelop .col-sm-12 {
    width: 100%;
  }
  .wpdevelop .col-sm-11 {
    width: 91.66666667%;
  }
  .wpdevelop .col-sm-10 {
    width: 83.33333333%;
  }
  .wpdevelop .col-sm-9 {
    width: 75%;
  }
  .wpdevelop .col-sm-8 {
    width: 66.66666667%;
  }
  .wpdevelop .col-sm-7 {
    width: 58.33333333%;
  }
  .wpdevelop .col-sm-6 {
    width: 50%;
  }
  .wpdevelop .col-sm-5 {
    width: 41.66666667%;
  }
  .wpdevelop .col-sm-4 {
    width: 33.33333333%;
  }
  .wpdevelop .col-sm-3 {
    width: 25%;
  }
  .wpdevelop .col-sm-2 {
    width: 16.66666667%;
  }
  .wpdevelop .col-sm-1 {
    width: 8.33333333%;
  }
  .wpdevelop .col-sm-pull-12 {
    right: 100%;
  }
  .wpdevelop .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .wpdevelop .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .wpdevelop .col-sm-pull-9 {
    right: 75%;
  }
  .wpdevelop .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .wpdevelop .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .wpdevelop .col-sm-pull-6 {
    right: 50%;
  }
  .wpdevelop .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .wpdevelop .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .wpdevelop .col-sm-pull-3 {
    right: 25%;
  }
  .wpdevelop .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .wpdevelop .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .wpdevelop .col-sm-pull-0 {
    right: auto;
  }
  .wpdevelop .col-sm-push-12 {
    left: 100%;
  }
  .wpdevelop .col-sm-push-11 {
    left: 91.66666667%;
  }
  .wpdevelop .col-sm-push-10 {
    left: 83.33333333%;
  }
  .wpdevelop .col-sm-push-9 {
    left: 75%;
  }
  .wpdevelop .col-sm-push-8 {
    left: 66.66666667%;
  }
  .wpdevelop .col-sm-push-7 {
    left: 58.33333333%;
  }
  .wpdevelop .col-sm-push-6 {
    left: 50%;
  }
  .wpdevelop .col-sm-push-5 {
    left: 41.66666667%;
  }
  .wpdevelop .col-sm-push-4 {
    left: 33.33333333%;
  }
  .wpdevelop .col-sm-push-3 {
    left: 25%;
  }
  .wpdevelop .col-sm-push-2 {
    left: 16.66666667%;
  }
  .wpdevelop .col-sm-push-1 {
    left: 8.33333333%;
  }
  .wpdevelop .col-sm-push-0 {
    left: auto;
  }
  .wpdevelop .col-sm-offset-12 {
    margin-left: 100%;
  }
  .wpdevelop .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .wpdevelop .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .wpdevelop .col-sm-offset-9 {
    margin-left: 75%;
  }
  .wpdevelop .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .wpdevelop .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .wpdevelop .col-sm-offset-6 {
    margin-left: 50%;
  }
  .wpdevelop .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .wpdevelop .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .wpdevelop .col-sm-offset-3 {
    margin-left: 25%;
  }
  .wpdevelop .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .wpdevelop .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .wpdevelop .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .wpdevelop .col-md-1, .wpdevelop .col-md-2, .wpdevelop .col-md-3, .wpdevelop .col-md-4, .wpdevelop .col-md-5, .wpdevelop .col-md-6, .wpdevelop .col-md-7, .wpdevelop .col-md-8, .wpdevelop .col-md-9, .wpdevelop .col-md-10, .wpdevelop .col-md-11, .wpdevelop .col-md-12 {
    float: left;
  }
  .wpdevelop .col-md-12 {
    width: 100%;
  }
  .wpdevelop .col-md-11 {
    width: 91.66666667%;
  }
  .wpdevelop .col-md-10 {
    width: 83.33333333%;
  }
  .wpdevelop .col-md-9 {
    width: 75%;
  }
  .wpdevelop .col-md-8 {
    width: 66.66666667%;
  }
  .wpdevelop .col-md-7 {
    width: 58.33333333%;
  }
  .wpdevelop .col-md-6 {
    width: 50%;
  }
  .wpdevelop .col-md-5 {
    width: 41.66666667%;
  }
  .wpdevelop .col-md-4 {
    width: 33.33333333%;
  }
  .wpdevelop .col-md-3 {
    width: 25%;
  }
  .wpdevelop .col-md-2 {
    width: 16.66666667%;
  }
  .wpdevelop .col-md-1 {
    width: 8.33333333%;
  }
  .wpdevelop .col-md-pull-12 {
    right: 100%;
  }
  .wpdevelop .col-md-pull-11 {
    right: 91.66666667%;
  }
  .wpdevelop .col-md-pull-10 {
    right: 83.33333333%;
  }
  .wpdevelop .col-md-pull-9 {
    right: 75%;
  }
  .wpdevelop .col-md-pull-8 {
    right: 66.66666667%;
  }
  .wpdevelop .col-md-pull-7 {
    right: 58.33333333%;
  }
  .wpdevelop .col-md-pull-6 {
    right: 50%;
  }
  .wpdevelop .col-md-pull-5 {
    right: 41.66666667%;
  }
  .wpdevelop .col-md-pull-4 {
    right: 33.33333333%;
  }
  .wpdevelop .col-md-pull-3 {
    right: 25%;
  }
  .wpdevelop .col-md-pull-2 {
    right: 16.66666667%;
  }
  .wpdevelop .col-md-pull-1 {
    right: 8.33333333%;
  }
  .wpdevelop .col-md-pull-0 {
    right: auto;
  }
  .wpdevelop .col-md-push-12 {
    left: 100%;
  }
  .wpdevelop .col-md-push-11 {
    left: 91.66666667%;
  }
  .wpdevelop .col-md-push-10 {
    left: 83.33333333%;
  }
  .wpdevelop .col-md-push-9 {
    left: 75%;
  }
  .wpdevelop .col-md-push-8 {
    left: 66.66666667%;
  }
  .wpdevelop .col-md-push-7 {
    left: 58.33333333%;
  }
  .wpdevelop .col-md-push-6 {
    left: 50%;
  }
  .wpdevelop .col-md-push-5 {
    left: 41.66666667%;
  }
  .wpdevelop .col-md-push-4 {
    left: 33.33333333%;
  }
  .wpdevelop .col-md-push-3 {
    left: 25%;
  }
  .wpdevelop .col-md-push-2 {
    left: 16.66666667%;
  }
  .wpdevelop .col-md-push-1 {
    left: 8.33333333%;
  }
  .wpdevelop .col-md-push-0 {
    left: auto;
  }
  .wpdevelop .col-md-offset-12 {
    margin-left: 100%;
  }
  .wpdevelop .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .wpdevelop .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .wpdevelop .col-md-offset-9 {
    margin-left: 75%;
  }
  .wpdevelop .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .wpdevelop .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .wpdevelop .col-md-offset-6 {
    margin-left: 50%;
  }
  .wpdevelop .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .wpdevelop .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .wpdevelop .col-md-offset-3 {
    margin-left: 25%;
  }
  .wpdevelop .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .wpdevelop .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .wpdevelop .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .col-lg-1, .wpdevelop .col-lg-2, .wpdevelop .col-lg-3, .wpdevelop .col-lg-4, .wpdevelop .col-lg-5, .wpdevelop .col-lg-6, .wpdevelop .col-lg-7, .wpdevelop .col-lg-8, .wpdevelop .col-lg-9, .wpdevelop .col-lg-10, .wpdevelop .col-lg-11, .wpdevelop .col-lg-12 {
    float: left;
  }
  .wpdevelop .col-lg-12 {
    width: 100%;
  }
  .wpdevelop .col-lg-11 {
    width: 91.66666667%;
  }
  .wpdevelop .col-lg-10 {
    width: 83.33333333%;
  }
  .wpdevelop .col-lg-9 {
    width: 75%;
  }
  .wpdevelop .col-lg-8 {
    width: 66.66666667%;
  }
  .wpdevelop .col-lg-7 {
    width: 58.33333333%;
  }
  .wpdevelop .col-lg-6 {
    width: 50%;
  }
  .wpdevelop .col-lg-5 {
    width: 41.66666667%;
  }
  .wpdevelop .col-lg-4 {
    width: 33.33333333%;
  }
  .wpdevelop .col-lg-3 {
    width: 25%;
  }
  .wpdevelop .col-lg-2 {
    width: 16.66666667%;
  }
  .wpdevelop .col-lg-1 {
    width: 8.33333333%;
  }
  .wpdevelop .col-lg-pull-12 {
    right: 100%;
  }
  .wpdevelop .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .wpdevelop .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .wpdevelop .col-lg-pull-9 {
    right: 75%;
  }
  .wpdevelop .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .wpdevelop .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .wpdevelop .col-lg-pull-6 {
    right: 50%;
  }
  .wpdevelop .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .wpdevelop .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .wpdevelop .col-lg-pull-3 {
    right: 25%;
  }
  .wpdevelop .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .wpdevelop .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .wpdevelop .col-lg-pull-0 {
    right: auto;
  }
  .wpdevelop .col-lg-push-12 {
    left: 100%;
  }
  .wpdevelop .col-lg-push-11 {
    left: 91.66666667%;
  }
  .wpdevelop .col-lg-push-10 {
    left: 83.33333333%;
  }
  .wpdevelop .col-lg-push-9 {
    left: 75%;
  }
  .wpdevelop .col-lg-push-8 {
    left: 66.66666667%;
  }
  .wpdevelop .col-lg-push-7 {
    left: 58.33333333%;
  }
  .wpdevelop .col-lg-push-6 {
    left: 50%;
  }
  .wpdevelop .col-lg-push-5 {
    left: 41.66666667%;
  }
  .wpdevelop .col-lg-push-4 {
    left: 33.33333333%;
  }
  .wpdevelop .col-lg-push-3 {
    left: 25%;
  }
  .wpdevelop .col-lg-push-2 {
    left: 16.66666667%;
  }
  .wpdevelop .col-lg-push-1 {
    left: 8.33333333%;
  }
  .wpdevelop .col-lg-push-0 {
    left: auto;
  }
  .wpdevelop .col-lg-offset-12 {
    margin-left: 100%;
  }
  .wpdevelop .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .wpdevelop .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .wpdevelop .col-lg-offset-9 {
    margin-left: 75%;
  }
  .wpdevelop .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .wpdevelop .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .wpdevelop .col-lg-offset-6 {
    margin-left: 50%;
  }
  .wpdevelop .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .wpdevelop .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .wpdevelop .col-lg-offset-3 {
    margin-left: 25%;
  }
  .wpdevelop .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .wpdevelop .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .wpdevelop .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.wpdevelop table {
  background-color: transparent;
}
.wpdevelop caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
.wpdevelop th {
  text-align: left;
}
.wpdevelop .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.wpdevelop .table > thead > tr > th,
.wpdevelop .table > tbody > tr > th,
.wpdevelop .table > tfoot > tr > th,
.wpdevelop .table > thead > tr > td,
.wpdevelop .table > tbody > tr > td,
.wpdevelop .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.wpdevelop .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.wpdevelop .table > caption + thead > tr:first-child > th,
.wpdevelop .table > colgroup + thead > tr:first-child > th,
.wpdevelop .table > thead:first-child > tr:first-child > th,
.wpdevelop .table > caption + thead > tr:first-child > td,
.wpdevelop .table > colgroup + thead > tr:first-child > td,
.wpdevelop .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.wpdevelop .table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.wpdevelop .table .table {
  background-color: #ffffff;
}
.wpdevelop .table-condensed > thead > tr > th,
.wpdevelop .table-condensed > tbody > tr > th,
.wpdevelop .table-condensed > tfoot > tr > th,
.wpdevelop .table-condensed > thead > tr > td,
.wpdevelop .table-condensed > tbody > tr > td,
.wpdevelop .table-condensed > tfoot > tr > td {
  padding: 5px;
}
.wpdevelop .table-bordered {
  border: 1px solid #dddddd;
}
.wpdevelop .table-bordered > thead > tr > th,
.wpdevelop .table-bordered > tbody > tr > th,
.wpdevelop .table-bordered > tfoot > tr > th,
.wpdevelop .table-bordered > thead > tr > td,
.wpdevelop .table-bordered > tbody > tr > td,
.wpdevelop .table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.wpdevelop .table-bordered > thead > tr > th,
.wpdevelop .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.wpdevelop .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.wpdevelop .table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.wpdevelop table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
.wpdevelop table td[class*="col-"],
.wpdevelop table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.wpdevelop .table > thead > tr > td.active,
.wpdevelop .table > tbody > tr > td.active,
.wpdevelop .table > tfoot > tr > td.active,
.wpdevelop .table > thead > tr > th.active,
.wpdevelop .table > tbody > tr > th.active,
.wpdevelop .table > tfoot > tr > th.active,
.wpdevelop .table > thead > tr.active > td,
.wpdevelop .table > tbody > tr.active > td,
.wpdevelop .table > tfoot > tr.active > td,
.wpdevelop .table > thead > tr.active > th,
.wpdevelop .table > tbody > tr.active > th,
.wpdevelop .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.wpdevelop .table-hover > tbody > tr > td.active:hover,
.wpdevelop .table-hover > tbody > tr > th.active:hover,
.wpdevelop .table-hover > tbody > tr.active:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .active,
.wpdevelop .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.wpdevelop .table > thead > tr > td.success,
.wpdevelop .table > tbody > tr > td.success,
.wpdevelop .table > tfoot > tr > td.success,
.wpdevelop .table > thead > tr > th.success,
.wpdevelop .table > tbody > tr > th.success,
.wpdevelop .table > tfoot > tr > th.success,
.wpdevelop .table > thead > tr.success > td,
.wpdevelop .table > tbody > tr.success > td,
.wpdevelop .table > tfoot > tr.success > td,
.wpdevelop .table > thead > tr.success > th,
.wpdevelop .table > tbody > tr.success > th,
.wpdevelop .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.wpdevelop .table-hover > tbody > tr > td.success:hover,
.wpdevelop .table-hover > tbody > tr > th.success:hover,
.wpdevelop .table-hover > tbody > tr.success:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .success,
.wpdevelop .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.wpdevelop .table > thead > tr > td.info,
.wpdevelop .table > tbody > tr > td.info,
.wpdevelop .table > tfoot > tr > td.info,
.wpdevelop .table > thead > tr > th.info,
.wpdevelop .table > tbody > tr > th.info,
.wpdevelop .table > tfoot > tr > th.info,
.wpdevelop .table > thead > tr.info > td,
.wpdevelop .table > tbody > tr.info > td,
.wpdevelop .table > tfoot > tr.info > td,
.wpdevelop .table > thead > tr.info > th,
.wpdevelop .table > tbody > tr.info > th,
.wpdevelop .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.wpdevelop .table-hover > tbody > tr > td.info:hover,
.wpdevelop .table-hover > tbody > tr > th.info:hover,
.wpdevelop .table-hover > tbody > tr.info:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .info,
.wpdevelop .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.wpdevelop .table > thead > tr > td.warning,
.wpdevelop .table > tbody > tr > td.warning,
.wpdevelop .table > tfoot > tr > td.warning,
.wpdevelop .table > thead > tr > th.warning,
.wpdevelop .table > tbody > tr > th.warning,
.wpdevelop .table > tfoot > tr > th.warning,
.wpdevelop .table > thead > tr.warning > td,
.wpdevelop .table > tbody > tr.warning > td,
.wpdevelop .table > tfoot > tr.warning > td,
.wpdevelop .table > thead > tr.warning > th,
.wpdevelop .table > tbody > tr.warning > th,
.wpdevelop .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.wpdevelop .table-hover > tbody > tr > td.warning:hover,
.wpdevelop .table-hover > tbody > tr > th.warning:hover,
.wpdevelop .table-hover > tbody > tr.warning:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .warning,
.wpdevelop .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.wpdevelop .table > thead > tr > td.danger,
.wpdevelop .table > tbody > tr > td.danger,
.wpdevelop .table > tfoot > tr > td.danger,
.wpdevelop .table > thead > tr > th.danger,
.wpdevelop .table > tbody > tr > th.danger,
.wpdevelop .table > tfoot > tr > th.danger,
.wpdevelop .table > thead > tr.danger > td,
.wpdevelop .table > tbody > tr.danger > td,
.wpdevelop .table > tfoot > tr.danger > td,
.wpdevelop .table > thead > tr.danger > th,
.wpdevelop .table > tbody > tr.danger > th,
.wpdevelop .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.wpdevelop .table-hover > tbody > tr > td.danger:hover,
.wpdevelop .table-hover > tbody > tr > th.danger:hover,
.wpdevelop .table-hover > tbody > tr.danger:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .danger,
.wpdevelop .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.wpdevelop .table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .wpdevelop .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .wpdevelop .table-responsive > .table {
    margin-bottom: 0;
  }
  .wpdevelop .table-responsive > .table > thead > tr > th,
  .wpdevelop .table-responsive > .table > tbody > tr > th,
  .wpdevelop .table-responsive > .table > tfoot > tr > th,
  .wpdevelop .table-responsive > .table > thead > tr > td,
  .wpdevelop .table-responsive > .table > tbody > tr > td,
  .wpdevelop .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .wpdevelop .table-responsive > .table-bordered {
    border: 0;
  }
  .wpdevelop .table-responsive > .table-bordered > thead > tr > th:first-child,
  .wpdevelop .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .wpdevelop .table-responsive > .table-bordered > thead > tr > td:first-child,
  .wpdevelop .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .wpdevelop .table-responsive > .table-bordered > thead > tr > th:last-child,
  .wpdevelop .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .wpdevelop .table-responsive > .table-bordered > thead > tr > td:last-child,
  .wpdevelop .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .wpdevelop .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .wpdevelop .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .wpdevelop .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
.wpdevelop fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.wpdevelop legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.wpdevelop label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.wpdevelop input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wpdevelop input[type="radio"],
.wpdevelop input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
.wpdevelop input[type="file"] {
  display: block;
}
.wpdevelop input[type="range"] {
  display: block;
  width: 100%;
}
.wpdevelop select[multiple],
.wpdevelop select[size] {
  height: auto;
}
.wpdevelop input[type="file"]:focus,
.wpdevelop input[type="radio"]:focus,
.wpdevelop input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.wpdevelop output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.wpdevelop .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.wpdevelop .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.wpdevelop .form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.wpdevelop .form-control:-ms-input-placeholder {
  color: #999999;
}
.wpdevelop .form-control::-webkit-input-placeholder {
  color: #999999;
}
.wpdevelop .form-control[disabled],
.wpdevelop .form-control[readonly],
.wpdevelop fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.wpdevelop .form-control[disabled],
.wpdevelop fieldset[disabled] .form-control {
  cursor: not-allowed;
}
.wpdevelop textarea.form-control {
  height: auto;
}
.wpdevelop input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .wpdevelop input[type="date"].form-control,
  .wpdevelop input[type="time"].form-control,
  .wpdevelop input[type="datetime-local"].form-control,
  .wpdevelop input[type="month"].form-control {
    line-height: 34px;
  }
  .wpdevelop input[type="date"].input-sm,
  .wpdevelop input[type="time"].input-sm,
  .wpdevelop input[type="datetime-local"].input-sm,
  .wpdevelop input[type="month"].input-sm,
  .wpdevelop .input-group-sm input[type="date"],
  .wpdevelop .input-group-sm input[type="time"],
  .wpdevelop .input-group-sm input[type="datetime-local"],
  .wpdevelop .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  .wpdevelop input[type="date"].input-lg,
  .wpdevelop input[type="time"].input-lg,
  .wpdevelop input[type="datetime-local"].input-lg,
  .wpdevelop input[type="month"].input-lg,
  .wpdevelop .input-group-lg input[type="date"],
  .wpdevelop .input-group-lg input[type="time"],
  .wpdevelop .input-group-lg input[type="datetime-local"],
  .wpdevelop .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.wpdevelop .form-group {
  margin-bottom: 15px;
}
.wpdevelop .radio,
.wpdevelop .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.wpdevelop .radio label,
.wpdevelop .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.wpdevelop .radio input[type="radio"],
.wpdevelop .radio-inline input[type="radio"],
.wpdevelop .checkbox input[type="checkbox"],
.wpdevelop .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.wpdevelop .radio + .radio,
.wpdevelop .checkbox + .checkbox {
  margin-top: -5px;
}
.wpdevelop .radio-inline,
.wpdevelop .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.wpdevelop .radio-inline + .radio-inline,
.wpdevelop .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.wpdevelop input[type="radio"][disabled],
.wpdevelop input[type="checkbox"][disabled],
.wpdevelop input[type="radio"].disabled,
.wpdevelop input[type="checkbox"].disabled,
.wpdevelop fieldset[disabled] input[type="radio"],
.wpdevelop fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.wpdevelop .radio-inline.disabled,
.wpdevelop .checkbox-inline.disabled,
.wpdevelop fieldset[disabled] .radio-inline,
.wpdevelop fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.wpdevelop .radio.disabled label,
.wpdevelop .checkbox.disabled label,
.wpdevelop fieldset[disabled] .radio label,
.wpdevelop fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.wpdevelop .form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.wpdevelop .form-control-static.input-lg,
.wpdevelop .form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.wpdevelop .input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.wpdevelop select.input-sm {
  height: 30px;
  line-height: 30px;
}
.wpdevelop textarea.input-sm,
.wpdevelop select[multiple].input-sm {
  height: auto;
}
.wpdevelop .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.wpdevelop .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.wpdevelop .form-group-sm textarea.form-control,
.wpdevelop .form-group-sm select[multiple].form-control {
  height: auto;
}
.wpdevelop .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.wpdevelop .input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.wpdevelop select.input-lg {
  height: 46px;
  line-height: 46px;
}
.wpdevelop textarea.input-lg,
.wpdevelop select[multiple].input-lg {
  height: auto;
}
.wpdevelop .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.wpdevelop .form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.wpdevelop .form-group-lg textarea.form-control,
.wpdevelop .form-group-lg select[multiple].form-control {
  height: auto;
}
.wpdevelop .form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.wpdevelop .has-feedback {
  position: relative;
}
.wpdevelop .has-feedback .form-control {
  padding-right: 42.5px;
}
.wpdevelop .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.wpdevelop .input-lg + .form-control-feedback,
.wpdevelop .input-group-lg + .form-control-feedback,
.wpdevelop .form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.wpdevelop .input-sm + .form-control-feedback,
.wpdevelop .input-group-sm + .form-control-feedback,
.wpdevelop .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.wpdevelop .has-success .help-block,
.wpdevelop .has-success .control-label,
.wpdevelop .has-success .radio,
.wpdevelop .has-success .checkbox,
.wpdevelop .has-success .radio-inline,
.wpdevelop .has-success .checkbox-inline,
.wpdevelop .has-success.radio label,
.wpdevelop .has-success.checkbox label,
.wpdevelop .has-success.radio-inline label,
.wpdevelop .has-success.checkbox-inline label {
  color: #3c763d;
}
.wpdevelop .has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.wpdevelop .has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.wpdevelop .has-success .form-control-feedback {
  color: #3c763d;
}
.wpdevelop .has-warning .help-block,
.wpdevelop .has-warning .control-label,
.wpdevelop .has-warning .radio,
.wpdevelop .has-warning .checkbox,
.wpdevelop .has-warning .radio-inline,
.wpdevelop .has-warning .checkbox-inline,
.wpdevelop .has-warning.radio label,
.wpdevelop .has-warning.checkbox label,
.wpdevelop .has-warning.radio-inline label,
.wpdevelop .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.wpdevelop .has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.wpdevelop .has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.wpdevelop .has-warning .form-control-feedback {
  color: #8a6d3b;
}
.wpdevelop .has-error .help-block,
.wpdevelop .has-error .control-label,
.wpdevelop .has-error .radio,
.wpdevelop .has-error .checkbox,
.wpdevelop .has-error .radio-inline,
.wpdevelop .has-error .checkbox-inline,
.wpdevelop .has-error.radio label,
.wpdevelop .has-error.checkbox label,
.wpdevelop .has-error.radio-inline label,
.wpdevelop .has-error.checkbox-inline label {
  color: #a94442;
}
.wpdevelop .has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.wpdevelop .has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.wpdevelop .has-error .form-control-feedback {
  color: #a94442;
}
.wpdevelop .has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.wpdevelop .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.wpdevelop .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .wpdevelop .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .wpdevelop .form-inline .form-control-static {
    display: inline-block;
  }
  .wpdevelop .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .wpdevelop .form-inline .input-group .input-group-addon,
  .wpdevelop .form-inline .input-group .input-group-btn,
  .wpdevelop .form-inline .input-group .form-control {
    width: auto;
  }
  .wpdevelop .form-inline .input-group > .form-control {
    width: 100%;
  }
  .wpdevelop .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .form-inline .radio,
  .wpdevelop .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .form-inline .radio label,
  .wpdevelop .form-inline .checkbox label {
    padding-left: 0;
  }
  .wpdevelop .form-inline .radio input[type="radio"],
  .wpdevelop .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .wpdevelop .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.wpdevelop .form-horizontal .radio,
.wpdevelop .form-horizontal .checkbox,
.wpdevelop .form-horizontal .radio-inline,
.wpdevelop .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.wpdevelop .form-horizontal .radio,
.wpdevelop .form-horizontal .checkbox {
  min-height: 27px;
}
.wpdevelop .form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .wpdevelop .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.wpdevelop .form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .wpdevelop .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .wpdevelop .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.wpdevelop .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wpdevelop .btn:focus,
.wpdevelop .btn:active:focus,
.wpdevelop .btn.active:focus,
.wpdevelop .btn.focus,
.wpdevelop .btn:active.focus,
.wpdevelop .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.wpdevelop .btn:hover,
.wpdevelop .btn:focus,
.wpdevelop .btn.focus {
  color: #333333;
  text-decoration: none;
}
.wpdevelop .btn:active,
.wpdevelop .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn.disabled,
.wpdevelop .btn[disabled],
.wpdevelop fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpdevelop a.btn.disabled,
.wpdevelop fieldset[disabled] a.btn {
  pointer-events: none;
}
.wpdevelop .btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.wpdevelop .btn-default:focus,
.wpdevelop .btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.wpdevelop .btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active,
.wpdevelop .open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.wpdevelop .btn-default:active:hover,
.wpdevelop .btn-default.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-default:hover,
.wpdevelop .btn-default:active:focus,
.wpdevelop .btn-default.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-default:focus,
.wpdevelop .btn-default:active.focus,
.wpdevelop .btn-default.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active,
.wpdevelop .open > .dropdown-toggle.btn-default {
  background-image: none;
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop .btn-default.disabled:hover,
.wpdevelop .btn-default[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-default:hover,
.wpdevelop .btn-default.disabled:focus,
.wpdevelop .btn-default[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-default:focus,
.wpdevelop .btn-default.disabled.focus,
.wpdevelop .btn-default[disabled].focus,
.wpdevelop fieldset[disabled] .btn-default.focus,
.wpdevelop .btn-default.disabled:active,
.wpdevelop .btn-default[disabled]:active,
.wpdevelop fieldset[disabled] .btn-default:active,
.wpdevelop .btn-default.disabled.active,
.wpdevelop .btn-default[disabled].active,
.wpdevelop fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc;
}
.wpdevelop .btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
.wpdevelop .btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.wpdevelop .btn-primary:focus,
.wpdevelop .btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.wpdevelop .btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active,
.wpdevelop .open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.wpdevelop .btn-primary:active:hover,
.wpdevelop .btn-primary.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-primary:hover,
.wpdevelop .btn-primary:active:focus,
.wpdevelop .btn-primary.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-primary:focus,
.wpdevelop .btn-primary:active.focus,
.wpdevelop .btn-primary.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active,
.wpdevelop .open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-primary[disabled],
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop .btn-primary.disabled:hover,
.wpdevelop .btn-primary[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-primary:hover,
.wpdevelop .btn-primary.disabled:focus,
.wpdevelop .btn-primary[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-primary:focus,
.wpdevelop .btn-primary.disabled.focus,
.wpdevelop .btn-primary[disabled].focus,
.wpdevelop fieldset[disabled] .btn-primary.focus,
.wpdevelop .btn-primary.disabled:active,
.wpdevelop .btn-primary[disabled]:active,
.wpdevelop fieldset[disabled] .btn-primary:active,
.wpdevelop .btn-primary.disabled.active,
.wpdevelop .btn-primary[disabled].active,
.wpdevelop fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.wpdevelop .btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.wpdevelop .btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.wpdevelop .btn-success:focus,
.wpdevelop .btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625;
}
.wpdevelop .btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active,
.wpdevelop .open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.wpdevelop .btn-success:active:hover,
.wpdevelop .btn-success.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-success:hover,
.wpdevelop .btn-success:active:focus,
.wpdevelop .btn-success.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-success:focus,
.wpdevelop .btn-success:active.focus,
.wpdevelop .btn-success.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active,
.wpdevelop .open > .dropdown-toggle.btn-success {
  background-image: none;
}
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-success[disabled],
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop .btn-success.disabled:hover,
.wpdevelop .btn-success[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-success:hover,
.wpdevelop .btn-success.disabled:focus,
.wpdevelop .btn-success[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-success:focus,
.wpdevelop .btn-success.disabled.focus,
.wpdevelop .btn-success[disabled].focus,
.wpdevelop fieldset[disabled] .btn-success.focus,
.wpdevelop .btn-success.disabled:active,
.wpdevelop .btn-success[disabled]:active,
.wpdevelop fieldset[disabled] .btn-success:active,
.wpdevelop .btn-success.disabled.active,
.wpdevelop .btn-success[disabled].active,
.wpdevelop fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.wpdevelop .btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}
.wpdevelop .btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.wpdevelop .btn-info:focus,
.wpdevelop .btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.wpdevelop .btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active,
.wpdevelop .open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.wpdevelop .btn-info:active:hover,
.wpdevelop .btn-info.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-info:hover,
.wpdevelop .btn-info:active:focus,
.wpdevelop .btn-info.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-info:focus,
.wpdevelop .btn-info:active.focus,
.wpdevelop .btn-info.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active,
.wpdevelop .open > .dropdown-toggle.btn-info {
  background-image: none;
}
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-info[disabled],
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop .btn-info.disabled:hover,
.wpdevelop .btn-info[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-info:hover,
.wpdevelop .btn-info.disabled:focus,
.wpdevelop .btn-info[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-info:focus,
.wpdevelop .btn-info.disabled.focus,
.wpdevelop .btn-info[disabled].focus,
.wpdevelop fieldset[disabled] .btn-info.focus,
.wpdevelop .btn-info.disabled:active,
.wpdevelop .btn-info[disabled]:active,
.wpdevelop fieldset[disabled] .btn-info:active,
.wpdevelop .btn-info.disabled.active,
.wpdevelop .btn-info[disabled].active,
.wpdevelop fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.wpdevelop .btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
.wpdevelop .btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.wpdevelop .btn-warning:focus,
.wpdevelop .btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.wpdevelop .btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active,
.wpdevelop .open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.wpdevelop .btn-warning:active:hover,
.wpdevelop .btn-warning.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-warning:hover,
.wpdevelop .btn-warning:active:focus,
.wpdevelop .btn-warning.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-warning:focus,
.wpdevelop .btn-warning:active.focus,
.wpdevelop .btn-warning.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active,
.wpdevelop .open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-warning[disabled],
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop .btn-warning.disabled:hover,
.wpdevelop .btn-warning[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-warning:hover,
.wpdevelop .btn-warning.disabled:focus,
.wpdevelop .btn-warning[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-warning:focus,
.wpdevelop .btn-warning.disabled.focus,
.wpdevelop .btn-warning[disabled].focus,
.wpdevelop fieldset[disabled] .btn-warning.focus,
.wpdevelop .btn-warning.disabled:active,
.wpdevelop .btn-warning[disabled]:active,
.wpdevelop fieldset[disabled] .btn-warning:active,
.wpdevelop .btn-warning.disabled.active,
.wpdevelop .btn-warning[disabled].active,
.wpdevelop fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.wpdevelop .btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
.wpdevelop .btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.wpdevelop .btn-danger:focus,
.wpdevelop .btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}
.wpdevelop .btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active,
.wpdevelop .open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.wpdevelop .btn-danger:active:hover,
.wpdevelop .btn-danger.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-danger:hover,
.wpdevelop .btn-danger:active:focus,
.wpdevelop .btn-danger.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-danger:focus,
.wpdevelop .btn-danger:active.focus,
.wpdevelop .btn-danger.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active,
.wpdevelop .open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-danger,
.wpdevelop .btn-danger.disabled:hover,
.wpdevelop .btn-danger[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-danger:hover,
.wpdevelop .btn-danger.disabled:focus,
.wpdevelop .btn-danger[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-danger:focus,
.wpdevelop .btn-danger.disabled.focus,
.wpdevelop .btn-danger[disabled].focus,
.wpdevelop fieldset[disabled] .btn-danger.focus,
.wpdevelop .btn-danger.disabled:active,
.wpdevelop .btn-danger[disabled]:active,
.wpdevelop fieldset[disabled] .btn-danger:active,
.wpdevelop .btn-danger.disabled.active,
.wpdevelop .btn-danger[disabled].active,
.wpdevelop fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.wpdevelop .btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}
.wpdevelop .btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.wpdevelop .btn-link,
.wpdevelop .btn-link:active,
.wpdevelop .btn-link.active,
.wpdevelop .btn-link[disabled],
.wpdevelop fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpdevelop .btn-link,
.wpdevelop .btn-link:hover,
.wpdevelop .btn-link:focus,
.wpdevelop .btn-link:active {
  border-color: transparent;
}
.wpdevelop .btn-link:hover,
.wpdevelop .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.wpdevelop .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-link:hover,
.wpdevelop .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.wpdevelop .btn-lg,
.wpdevelop .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.wpdevelop .btn-sm,
.wpdevelop .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.wpdevelop .btn-xs,
.wpdevelop .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.wpdevelop .btn-block {
  display: block;
  width: 100%;
}
.wpdevelop .btn-block + .btn-block {
  margin-top: 5px;
}
.wpdevelop input[type="submit"].btn-block,
.wpdevelop input[type="reset"].btn-block,
.wpdevelop input[type="button"].btn-block {
  width: 100%;
}
.wpdevelop .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.wpdevelop .fade.in {
  opacity: 1;
}
.wpdevelop .collapse {
  display: none;
}
.wpdevelop .collapse.in {
  display: block;
}
.wpdevelop tr.collapse.in {
  display: table-row;
}
.wpdevelop tbody.collapse.in {
  display: table-row-group;
}
.wpdevelop .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.wpdevelop .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.wpdevelop .dropup,
.wpdevelop .dropdown {
  position: relative;
}
.wpdevelop .dropdown-toggle:focus {
  outline: 0;
}
.wpdevelop .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.wpdevelop .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.wpdevelop .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.wpdevelop .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.wpdevelop .dropdown-menu > li > a:hover,
.wpdevelop .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.wpdevelop .dropdown-menu > .active > a,
.wpdevelop .dropdown-menu > .active > a:hover,
.wpdevelop .dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.wpdevelop .dropdown-menu > .disabled > a,
.wpdevelop .dropdown-menu > .disabled > a:hover,
.wpdevelop .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.wpdevelop .dropdown-menu > .disabled > a:hover,
.wpdevelop .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.wpdevelop .open > .dropdown-menu {
  display: block;
}
.wpdevelop .open > a {
  outline: 0;
}
.wpdevelop .dropdown-menu-right {
  left: auto;
  right: 0;
}
.wpdevelop .dropdown-menu-left {
  left: 0;
  right: auto;
}
.wpdevelop .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.wpdevelop .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.wpdevelop .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.wpdevelop .dropup .caret,
.wpdevelop .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.wpdevelop .dropup .dropdown-menu,
.wpdevelop .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .wpdevelop .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.wpdevelop .btn-group,
.wpdevelop .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.wpdevelop .btn-group > .btn,
.wpdevelop .btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.wpdevelop .btn-group > .btn:hover,
.wpdevelop .btn-group-vertical > .btn:hover,
.wpdevelop .btn-group > .btn:focus,
.wpdevelop .btn-group-vertical > .btn:focus,
.wpdevelop .btn-group > .btn:active,
.wpdevelop .btn-group-vertical > .btn:active,
.wpdevelop .btn-group > .btn.active,
.wpdevelop .btn-group-vertical > .btn.active {
  z-index: 2;
}
.wpdevelop .btn-group .btn + .btn,
.wpdevelop .btn-group .btn + .btn-group,
.wpdevelop .btn-group .btn-group + .btn,
.wpdevelop .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.wpdevelop .btn-toolbar {
  margin-left: -5px;
}
.wpdevelop .btn-toolbar .btn,
.wpdevelop .btn-toolbar .btn-group,
.wpdevelop .btn-toolbar .input-group {
  float: left;
}
.wpdevelop .btn-toolbar > .btn,
.wpdevelop .btn-toolbar > .btn-group,
.wpdevelop .btn-toolbar > .input-group {
  margin-left: 5px;
}
.wpdevelop .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.wpdevelop .btn-group > .btn:first-child {
  margin-left: 0;
}
.wpdevelop .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.wpdevelop .btn-group > .btn:last-child:not(:first-child),
.wpdevelop .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .btn-group > .btn-group {
  float: left;
}
.wpdevelop .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.wpdevelop .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.wpdevelop .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.wpdevelop .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .btn-group .dropdown-toggle:active,
.wpdevelop .btn-group.open .dropdown-toggle {
  outline: 0;
}
.wpdevelop .btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.wpdevelop .btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.wpdevelop .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpdevelop .btn .caret {
  margin-left: 0;
}
.wpdevelop .btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.wpdevelop .dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.wpdevelop .btn-group-vertical > .btn,
.wpdevelop .btn-group-vertical > .btn-group,
.wpdevelop .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.wpdevelop .btn-group-vertical > .btn-group > .btn {
  float: none;
}
.wpdevelop .btn-group-vertical > .btn + .btn,
.wpdevelop .btn-group-vertical > .btn + .btn-group,
.wpdevelop .btn-group-vertical > .btn-group + .btn,
.wpdevelop .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.wpdevelop .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.wpdevelop .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.wpdevelop .btn-group-justified > .btn,
.wpdevelop .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.wpdevelop .btn-group-justified > .btn-group .btn {
  width: 100%;
}
.wpdevelop .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
.wpdevelop [data-toggle="buttons"] > .btn input[type="radio"],
.wpdevelop [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.wpdevelop [data-toggle="buttons"] > .btn input[type="checkbox"],
.wpdevelop [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.wpdevelop .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.wpdevelop .input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.wpdevelop .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.wpdevelop .input-group-lg > .form-control,
.wpdevelop .input-group-lg > .input-group-addon,
.wpdevelop .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.wpdevelop select.input-group-lg > .form-control,
.wpdevelop select.input-group-lg > .input-group-addon,
.wpdevelop select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
.wpdevelop textarea.input-group-lg > .form-control,
.wpdevelop textarea.input-group-lg > .input-group-addon,
.wpdevelop textarea.input-group-lg > .input-group-btn > .btn,
.wpdevelop select[multiple].input-group-lg > .form-control,
.wpdevelop select[multiple].input-group-lg > .input-group-addon,
.wpdevelop select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.wpdevelop .input-group-sm > .form-control,
.wpdevelop .input-group-sm > .input-group-addon,
.wpdevelop .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.wpdevelop select.input-group-sm > .form-control,
.wpdevelop select.input-group-sm > .input-group-addon,
.wpdevelop select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
.wpdevelop textarea.input-group-sm > .form-control,
.wpdevelop textarea.input-group-sm > .input-group-addon,
.wpdevelop textarea.input-group-sm > .input-group-btn > .btn,
.wpdevelop select[multiple].input-group-sm > .form-control,
.wpdevelop select[multiple].input-group-sm > .input-group-addon,
.wpdevelop select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.wpdevelop .input-group-addon,
.wpdevelop .input-group-btn,
.wpdevelop .input-group .form-control {
  display: table-cell;
}
.wpdevelop .input-group-addon:not(:first-child):not(:last-child),
.wpdevelop .input-group-btn:not(:first-child):not(:last-child),
.wpdevelop .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.wpdevelop .input-group-addon,
.wpdevelop .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.wpdevelop .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.wpdevelop .input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.wpdevelop .input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.wpdevelop .input-group-addon input[type="radio"],
.wpdevelop .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.wpdevelop .input-group .form-control:first-child,
.wpdevelop .input-group-addon:first-child,
.wpdevelop .input-group-btn:first-child > .btn,
.wpdevelop .input-group-btn:first-child > .btn-group > .btn,
.wpdevelop .input-group-btn:first-child > .dropdown-toggle,
.wpdevelop .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.wpdevelop .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.wpdevelop .input-group-addon:first-child {
  border-right: 0;
}
.wpdevelop .input-group .form-control:last-child,
.wpdevelop .input-group-addon:last-child,
.wpdevelop .input-group-btn:last-child > .btn,
.wpdevelop .input-group-btn:last-child > .btn-group > .btn,
.wpdevelop .input-group-btn:last-child > .dropdown-toggle,
.wpdevelop .input-group-btn:first-child > .btn:not(:first-child),
.wpdevelop .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .input-group-addon:last-child {
  border-left: 0;
}
.wpdevelop .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.wpdevelop .input-group-btn > .btn {
  position: relative;
}
.wpdevelop .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.wpdevelop .input-group-btn > .btn:hover,
.wpdevelop .input-group-btn > .btn:focus,
.wpdevelop .input-group-btn > .btn:active {
  z-index: 2;
}
.wpdevelop .input-group-btn:first-child > .btn,
.wpdevelop .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.wpdevelop .input-group-btn:last-child > .btn,
.wpdevelop .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.wpdevelop .nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.wpdevelop .nav > li {
  position: relative;
  display: block;
}
.wpdevelop .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.wpdevelop .nav > li > a:hover,
.wpdevelop .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.wpdevelop .nav > li.disabled > a {
  color: #777777;
}
.wpdevelop .nav > li.disabled > a:hover,
.wpdevelop .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.wpdevelop .nav .open > a,
.wpdevelop .nav .open > a:hover,
.wpdevelop .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.wpdevelop .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.wpdevelop .nav > li > a > img {
  max-width: none;
}
.wpdevelop .nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.wpdevelop .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.wpdevelop .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.wpdevelop .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.wpdevelop .nav-tabs > li.active > a,
.wpdevelop .nav-tabs > li.active > a:hover,
.wpdevelop .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.wpdevelop .nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.wpdevelop .nav-tabs.nav-justified > li {
  float: none;
}
.wpdevelop .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.wpdevelop .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .wpdevelop .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .wpdevelop .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.wpdevelop .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.wpdevelop .nav-tabs.nav-justified > .active > a,
.wpdevelop .nav-tabs.nav-justified > .active > a:hover,
.wpdevelop .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .wpdevelop .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .wpdevelop .nav-tabs.nav-justified > .active > a,
  .wpdevelop .nav-tabs.nav-justified > .active > a:hover,
  .wpdevelop .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.wpdevelop .nav-pills > li {
  float: left;
}
.wpdevelop .nav-pills > li > a {
  border-radius: 4px;
}
.wpdevelop .nav-pills > li + li {
  margin-left: 2px;
}
.wpdevelop .nav-pills > li.active > a,
.wpdevelop .nav-pills > li.active > a:hover,
.wpdevelop .nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7;
}
.wpdevelop .nav-stacked > li {
  float: none;
}
.wpdevelop .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.wpdevelop .nav-justified {
  width: 100%;
}
.wpdevelop .nav-justified > li {
  float: none;
}
.wpdevelop .nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.wpdevelop .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .wpdevelop .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .wpdevelop .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.wpdevelop .nav-tabs-justified {
  border-bottom: 0;
}
.wpdevelop .nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.wpdevelop .nav-tabs-justified > .active > a,
.wpdevelop .nav-tabs-justified > .active > a:hover,
.wpdevelop .nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .wpdevelop .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .wpdevelop .nav-tabs-justified > .active > a,
  .wpdevelop .nav-tabs-justified > .active > a:hover,
  .wpdevelop .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.wpdevelop .tab-content > .tab-pane {
  display: none;
}
.wpdevelop .tab-content > .active {
  display: block;
}
.wpdevelop .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .wpdevelop .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .wpdevelop .navbar-header {
    float: left;
  }
}
.wpdevelop .navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.wpdevelop .navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .wpdevelop .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .wpdevelop .navbar-collapse.in {
    overflow-y: visible;
  }
  .wpdevelop .navbar-fixed-top .navbar-collapse,
  .wpdevelop .navbar-static-top .navbar-collapse,
  .wpdevelop .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.wpdevelop .navbar-fixed-top .navbar-collapse,
.wpdevelop .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .wpdevelop .navbar-fixed-top .navbar-collapse,
  .wpdevelop .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.wpdevelop .container > .navbar-header,
.wpdevelop .container-fluid > .navbar-header,
.wpdevelop .container > .navbar-collapse,
.wpdevelop .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .wpdevelop .container > .navbar-header,
  .wpdevelop .container-fluid > .navbar-header,
  .wpdevelop .container > .navbar-collapse,
  .wpdevelop .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.wpdevelop .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-static-top {
    border-radius: 0;
  }
}
.wpdevelop .navbar-fixed-top,
.wpdevelop .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-fixed-top,
  .wpdevelop .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.wpdevelop .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.wpdevelop .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.wpdevelop .navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.wpdevelop .navbar-brand:hover,
.wpdevelop .navbar-brand:focus {
  text-decoration: none;
}
.wpdevelop .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .wpdevelop .navbar > .container .navbar-brand,
  .wpdevelop .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.wpdevelop .navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.wpdevelop .navbar-toggle:focus {
  outline: 0;
}
.wpdevelop .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.wpdevelop .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-toggle {
    display: none;
  }
}
.wpdevelop .navbar-nav {
  margin: 7.5px -15px;
}
.wpdevelop .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .wpdevelop .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .wpdevelop .navbar-nav .open .dropdown-menu > li > a,
  .wpdevelop .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .wpdevelop .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .wpdevelop .navbar-nav .open .dropdown-menu > li > a:hover,
  .wpdevelop .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .wpdevelop .navbar-nav {
    float: left;
    margin: 0;
  }
  .wpdevelop .navbar-nav > li {
    float: left;
  }
  .wpdevelop .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.wpdevelop .navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .wpdevelop .navbar-form .form-control-static {
    display: inline-block;
  }
  .wpdevelop .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .wpdevelop .navbar-form .input-group .input-group-addon,
  .wpdevelop .navbar-form .input-group .input-group-btn,
  .wpdevelop .navbar-form .input-group .form-control {
    width: auto;
  }
  .wpdevelop .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .wpdevelop .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .navbar-form .radio,
  .wpdevelop .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .wpdevelop .navbar-form .radio label,
  .wpdevelop .navbar-form .checkbox label {
    padding-left: 0;
  }
  .wpdevelop .navbar-form .radio input[type="radio"],
  .wpdevelop .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .wpdevelop .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .wpdevelop .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .wpdevelop .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .wpdevelop .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.wpdevelop .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.wpdevelop .navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.wpdevelop .navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.wpdevelop .navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.wpdevelop .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .wpdevelop .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .wpdevelop .navbar-left {
    float: left !important;
  }
  .wpdevelop .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .wpdevelop .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.wpdevelop .navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-brand {
  color: #777777;
}
.wpdevelop .navbar-default .navbar-brand:hover,
.wpdevelop .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.wpdevelop .navbar-default .navbar-text {
  color: #777777;
}
.wpdevelop .navbar-default .navbar-nav > li > a {
  color: #777777;
}
.wpdevelop .navbar-default .navbar-nav > li > a:hover,
.wpdevelop .navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}
.wpdevelop .navbar-default .navbar-nav > .active > a,
.wpdevelop .navbar-default .navbar-nav > .active > a:hover,
.wpdevelop .navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-nav > .disabled > a,
.wpdevelop .navbar-default .navbar-nav > .disabled > a:hover,
.wpdevelop .navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.wpdevelop .navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.wpdevelop .navbar-default .navbar-toggle:hover,
.wpdevelop .navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.wpdevelop .navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
.wpdevelop .navbar-default .navbar-collapse,
.wpdevelop .navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-nav > .open > a,
.wpdevelop .navbar-default .navbar-nav > .open > a:hover,
.wpdevelop .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555;
}
@media (max-width: 767px) {
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.wpdevelop .navbar-default .navbar-link {
  color: #777777;
}
.wpdevelop .navbar-default .navbar-link:hover {
  color: #333333;
}
.wpdevelop .navbar-default .btn-link {
  color: #777777;
}
.wpdevelop .navbar-default .btn-link:hover,
.wpdevelop .navbar-default .btn-link:focus {
  color: #333333;
}
.wpdevelop .navbar-default .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .navbar-default .btn-link:hover,
.wpdevelop .navbar-default .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.wpdevelop .navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-brand:hover,
.wpdevelop .navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-nav > li > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-nav > .active > a,
.wpdevelop .navbar-inverse .navbar-nav > .active > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a,
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.wpdevelop .navbar-inverse .navbar-toggle:hover,
.wpdevelop .navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.wpdevelop .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.wpdevelop .navbar-inverse .navbar-collapse,
.wpdevelop .navbar-inverse .navbar-form {
  border-color: #101010;
}
.wpdevelop .navbar-inverse .navbar-nav > .open > a,
.wpdevelop .navbar-inverse .navbar-nav > .open > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff;
}
@media (max-width: 767px) {
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
.wpdevelop .navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.wpdevelop .navbar-inverse .btn-link {
  color: #9d9d9d;
}
.wpdevelop .navbar-inverse .btn-link:hover,
.wpdevelop .navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.wpdevelop .navbar-inverse .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .navbar-inverse .btn-link:hover,
.wpdevelop .navbar-inverse .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}
.wpdevelop .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.wpdevelop .breadcrumb > li {
  display: inline-block;
}
.wpdevelop .breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #cccccc;
}
.wpdevelop .breadcrumb > .active {
  color: #777777;
}
.wpdevelop .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.wpdevelop .pagination > li {
  display: inline;
}
.wpdevelop .pagination > li > a,
.wpdevelop .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.wpdevelop .pagination > li:first-child > a,
.wpdevelop .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.wpdevelop .pagination > li:last-child > a,
.wpdevelop .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.wpdevelop .pagination > li > a:hover,
.wpdevelop .pagination > li > span:hover,
.wpdevelop .pagination > li > a:focus,
.wpdevelop .pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #dddddd;
}
.wpdevelop .pagination > .active > a,
.wpdevelop .pagination > .active > span,
.wpdevelop .pagination > .active > a:hover,
.wpdevelop .pagination > .active > span:hover,
.wpdevelop .pagination > .active > a:focus,
.wpdevelop .pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.wpdevelop .pagination > .disabled > span,
.wpdevelop .pagination > .disabled > span:hover,
.wpdevelop .pagination > .disabled > span:focus,
.wpdevelop .pagination > .disabled > a,
.wpdevelop .pagination > .disabled > a:hover,
.wpdevelop .pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.wpdevelop .pagination-lg > li > a,
.wpdevelop .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.wpdevelop .pagination-lg > li:first-child > a,
.wpdevelop .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.wpdevelop .pagination-lg > li:last-child > a,
.wpdevelop .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.wpdevelop .pagination-sm > li > a,
.wpdevelop .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.wpdevelop .pagination-sm > li:first-child > a,
.wpdevelop .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.wpdevelop .pagination-sm > li:last-child > a,
.wpdevelop .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.wpdevelop .pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.wpdevelop .pager li {
  display: inline;
}
.wpdevelop .pager li > a,
.wpdevelop .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
.wpdevelop .pager li > a:hover,
.wpdevelop .pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.wpdevelop .pager .next > a,
.wpdevelop .pager .next > span {
  float: right;
}
.wpdevelop .pager .previous > a,
.wpdevelop .pager .previous > span {
  float: left;
}
.wpdevelop .pager .disabled > a,
.wpdevelop .pager .disabled > a:hover,
.wpdevelop .pager .disabled > a:focus,
.wpdevelop .pager .disabled > span {
  color: #777777;
  background-color: #ffffff;
  cursor: not-allowed;
}
.wpdevelop .label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.wpdevelop a.label:hover,
.wpdevelop a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.wpdevelop .label:empty {
  display: none;
}
.wpdevelop .btn .label {
  position: relative;
  top: -1px;
}
.wpdevelop .label-default {
  background-color: #777777;
}
.wpdevelop .label-default[href]:hover,
.wpdevelop .label-default[href]:focus {
  background-color: #5e5e5e;
}
.wpdevelop .label-primary {
  background-color: #337ab7;
}
.wpdevelop .label-primary[href]:hover,
.wpdevelop .label-primary[href]:focus {
  background-color: #286090;
}
.wpdevelop .label-success {
  background-color: #5cb85c;
}
.wpdevelop .label-success[href]:hover,
.wpdevelop .label-success[href]:focus {
  background-color: #449d44;
}
.wpdevelop .label-info {
  background-color: #5bc0de;
}
.wpdevelop .label-info[href]:hover,
.wpdevelop .label-info[href]:focus {
  background-color: #31b0d5;
}
.wpdevelop .label-warning {
  background-color: #f0ad4e;
}
.wpdevelop .label-warning[href]:hover,
.wpdevelop .label-warning[href]:focus {
  background-color: #ec971f;
}
.wpdevelop .label-danger {
  background-color: #d9534f;
}
.wpdevelop .label-danger[href]:hover,
.wpdevelop .label-danger[href]:focus {
  background-color: #c9302c;
}
.wpdevelop .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.wpdevelop .badge:empty {
  display: none;
}
.wpdevelop .btn .badge {
  position: relative;
  top: -1px;
}
.wpdevelop .btn-xs .badge,
.wpdevelop .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
.wpdevelop a.badge:hover,
.wpdevelop a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.wpdevelop .list-group-item.active > .badge,
.wpdevelop .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.wpdevelop .list-group-item > .badge {
  float: right;
}
.wpdevelop .list-group-item > .badge + .badge {
  margin-right: 5px;
}
.wpdevelop .nav-pills > li > a > .badge {
  margin-left: 3px;
}
.wpdevelop .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.wpdevelop .jumbotron h1,
.wpdevelop .jumbotron .h1 {
  color: inherit;
}
.wpdevelop .jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.wpdevelop .jumbotron > hr {
  border-top-color: #d5d5d5;
}
.wpdevelop .container .jumbotron,
.wpdevelop .container-fluid .jumbotron {
  border-radius: 6px;
}
.wpdevelop .jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .wpdevelop .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .wpdevelop .container .jumbotron,
  .wpdevelop .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .wpdevelop .jumbotron h1,
  .wpdevelop .jumbotron .h1 {
    font-size: 63px;
  }
}
.wpdevelop .thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.wpdevelop .thumbnail > img,
.wpdevelop .thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
.wpdevelop a.thumbnail:hover,
.wpdevelop a.thumbnail:focus,
.wpdevelop a.thumbnail.active {
  border-color: #337ab7;
}
.wpdevelop .thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.wpdevelop .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.wpdevelop .alert h4 {
  margin-top: 0;
  color: inherit;
}
.wpdevelop .alert .alert-link {
  font-weight: bold;
}
.wpdevelop .alert > p,
.wpdevelop .alert > ul {
  margin-bottom: 0;
}
.wpdevelop .alert > p + p {
  margin-top: 5px;
}
.wpdevelop .alert-dismissable,
.wpdevelop .alert-dismissible {
  padding-right: 35px;
}
.wpdevelop .alert-dismissable .close,
.wpdevelop .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.wpdevelop .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.wpdevelop .alert-success hr {
  border-top-color: #c9e2b3;
}
.wpdevelop .alert-success .alert-link {
  color: #2b542c;
}
.wpdevelop .alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.wpdevelop .alert-info hr {
  border-top-color: #a6e1ec;
}
.wpdevelop .alert-info .alert-link {
  color: #245269;
}
.wpdevelop .alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.wpdevelop .alert-warning hr {
  border-top-color: #f7e1b5;
}
.wpdevelop .alert-warning .alert-link {
  color: #66512c;
}
.wpdevelop .alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.wpdevelop .alert-danger hr {
  border-top-color: #e4b9c0;
}
.wpdevelop .alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.wpdevelop .progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wpdevelop .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.wpdevelop .progress-striped .progress-bar,
.wpdevelop .progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.wpdevelop .progress.active .progress-bar,
.wpdevelop .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.wpdevelop .progress-bar-success {
  background-color: #5cb85c;
}
.wpdevelop .progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-info {
  background-color: #5bc0de;
}
.wpdevelop .progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-warning {
  background-color: #f0ad4e;
}
.wpdevelop .progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-danger {
  background-color: #d9534f;
}
.wpdevelop .progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .media {
  margin-top: 15px;
}
.wpdevelop .media:first-child {
  margin-top: 0;
}
.wpdevelop .media,
.wpdevelop .media-body {
  transform: scale(1); /* Standard Property */
  transform-origin: 0 0;  /* Standard Property */
  overflow: hidden;
}
.wpdevelop .media-body {
  width: 10000px;
}
.wpdevelop .media-object {
  display: block;
}
.wpdevelop .media-object.img-thumbnail {
  max-width: none;
}
.wpdevelop .media-right,
.wpdevelop .media > .pull-right {
  padding-left: 10px;
}
.wpdevelop .media-left,
.wpdevelop .media > .pull-left {
  padding-right: 10px;
}
.wpdevelop .media-left,
.wpdevelop .media-right,
.wpdevelop .media-body {
  display: table-cell;
  vertical-align: top;
}
.wpdevelop .media-middle {
  vertical-align: middle;
}
.wpdevelop .media-bottom {
  vertical-align: bottom;
}
.wpdevelop .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.wpdevelop .media-list {
  padding-left: 0;
  list-style: none;
}
.wpdevelop .list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.wpdevelop .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.wpdevelop .list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.wpdevelop .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.wpdevelop a.list-group-item,
.wpdevelop button.list-group-item {
  color: #555555;
}
.wpdevelop a.list-group-item .list-group-item-heading,
.wpdevelop button.list-group-item .list-group-item-heading {
  color: #333333;
}
.wpdevelop a.list-group-item:hover,
.wpdevelop button.list-group-item:hover,
.wpdevelop a.list-group-item:focus,
.wpdevelop button.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5;
}
.wpdevelop button.list-group-item {
  width: 100%;
  text-align: left;
}
.wpdevelop .list-group-item.disabled,
.wpdevelop .list-group-item.disabled:hover,
.wpdevelop .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.wpdevelop .list-group-item.disabled .list-group-item-heading,
.wpdevelop .list-group-item.disabled:hover .list-group-item-heading,
.wpdevelop .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.wpdevelop .list-group-item.disabled .list-group-item-text,
.wpdevelop .list-group-item.disabled:hover .list-group-item-text,
.wpdevelop .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.wpdevelop .list-group-item.active,
.wpdevelop .list-group-item.active:hover,
.wpdevelop .list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.wpdevelop .list-group-item.active .list-group-item-heading,
.wpdevelop .list-group-item.active:hover .list-group-item-heading,
.wpdevelop .list-group-item.active:focus .list-group-item-heading,
.wpdevelop .list-group-item.active .list-group-item-heading > small,
.wpdevelop .list-group-item.active:hover .list-group-item-heading > small,
.wpdevelop .list-group-item.active:focus .list-group-item-heading > small,
.wpdevelop .list-group-item.active .list-group-item-heading > .small,
.wpdevelop .list-group-item.active:hover .list-group-item-heading > .small,
.wpdevelop .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.wpdevelop .list-group-item.active .list-group-item-text,
.wpdevelop .list-group-item.active:hover .list-group-item-text,
.wpdevelop .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.wpdevelop .list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
.wpdevelop a.list-group-item-success,
.wpdevelop button.list-group-item-success {
  color: #3c763d;
}
.wpdevelop a.list-group-item-success .list-group-item-heading,
.wpdevelop button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
.wpdevelop a.list-group-item-success:hover,
.wpdevelop button.list-group-item-success:hover,
.wpdevelop a.list-group-item-success:focus,
.wpdevelop button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
.wpdevelop a.list-group-item-success.active,
.wpdevelop button.list-group-item-success.active,
.wpdevelop a.list-group-item-success.active:hover,
.wpdevelop button.list-group-item-success.active:hover,
.wpdevelop a.list-group-item-success.active:focus,
.wpdevelop button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.wpdevelop .list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
.wpdevelop a.list-group-item-info,
.wpdevelop button.list-group-item-info {
  color: #31708f;
}
.wpdevelop a.list-group-item-info .list-group-item-heading,
.wpdevelop button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
.wpdevelop a.list-group-item-info:hover,
.wpdevelop button.list-group-item-info:hover,
.wpdevelop a.list-group-item-info:focus,
.wpdevelop button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
.wpdevelop a.list-group-item-info.active,
.wpdevelop button.list-group-item-info.active,
.wpdevelop a.list-group-item-info.active:hover,
.wpdevelop button.list-group-item-info.active:hover,
.wpdevelop a.list-group-item-info.active:focus,
.wpdevelop button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.wpdevelop .list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
.wpdevelop a.list-group-item-warning,
.wpdevelop button.list-group-item-warning {
  color: #8a6d3b;
}
.wpdevelop a.list-group-item-warning .list-group-item-heading,
.wpdevelop button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
.wpdevelop a.list-group-item-warning:hover,
.wpdevelop button.list-group-item-warning:hover,
.wpdevelop a.list-group-item-warning:focus,
.wpdevelop button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
.wpdevelop a.list-group-item-warning.active,
.wpdevelop button.list-group-item-warning.active,
.wpdevelop a.list-group-item-warning.active:hover,
.wpdevelop button.list-group-item-warning.active:hover,
.wpdevelop a.list-group-item-warning.active:focus,
.wpdevelop button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.wpdevelop .list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
.wpdevelop a.list-group-item-danger,
.wpdevelop button.list-group-item-danger {
  color: #a94442;
}
.wpdevelop a.list-group-item-danger .list-group-item-heading,
.wpdevelop button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
.wpdevelop a.list-group-item-danger:hover,
.wpdevelop button.list-group-item-danger:hover,
.wpdevelop a.list-group-item-danger:focus,
.wpdevelop button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
.wpdevelop a.list-group-item-danger.active,
.wpdevelop button.list-group-item-danger.active,
.wpdevelop a.list-group-item-danger.active:hover,
.wpdevelop button.list-group-item-danger.active:hover,
.wpdevelop a.list-group-item-danger.active:focus,
.wpdevelop button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.wpdevelop .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.wpdevelop .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.wpdevelop .panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.wpdevelop .panel-body {
  padding: 15px;
}
.wpdevelop .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.wpdevelop .panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.wpdevelop .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.wpdevelop .panel-title > a,
.wpdevelop .panel-title > small,
.wpdevelop .panel-title > .small,
.wpdevelop .panel-title > small > a,
.wpdevelop .panel-title > .small > a {
  color: inherit;
}
.wpdevelop .panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .list-group,
.wpdevelop .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.wpdevelop .panel > .list-group .list-group-item,
.wpdevelop .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.wpdevelop .panel > .list-group:first-child .list-group-item:first-child,
.wpdevelop .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.wpdevelop .panel > .list-group:last-child .list-group-item:last-child,
.wpdevelop .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.wpdevelop .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.wpdevelop .list-group + .panel-footer {
  border-top-width: 0;
}
.wpdevelop .panel > .table,
.wpdevelop .panel > .table-responsive > .table,
.wpdevelop .panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.wpdevelop .panel > .table caption,
.wpdevelop .panel > .table-responsive > .table caption,
.wpdevelop .panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.wpdevelop .panel > .table:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.wpdevelop .panel > .table:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.wpdevelop .panel > .panel-body + .table,
.wpdevelop .panel > .panel-body + .table-responsive,
.wpdevelop .panel > .table + .panel-body,
.wpdevelop .panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.wpdevelop .panel > .table > tbody:first-child > tr:first-child th,
.wpdevelop .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.wpdevelop .panel > .table-bordered,
.wpdevelop .panel > .table-responsive > .table-bordered {
  border: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.wpdevelop .panel > .table-bordered > tbody > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.wpdevelop .panel > .table-bordered > thead > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.wpdevelop .panel > .table-bordered > tbody > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.wpdevelop .panel > .table-bordered > tbody > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.wpdevelop .panel > .table-bordered > thead > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.wpdevelop .panel > .table-bordered > tbody > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr:first-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.wpdevelop .panel > .table-bordered > tbody > tr:first-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.wpdevelop .panel > .table-bordered > thead > tr:first-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.wpdevelop .panel > .table-bordered > tbody > tr:first-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.wpdevelop .panel > .table-bordered > tbody > tr:last-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.wpdevelop .panel > .table-bordered > tfoot > tr:last-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.wpdevelop .panel > .table-bordered > tbody > tr:last-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.wpdevelop .panel > .table-bordered > tfoot > tr:last-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.wpdevelop .panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.wpdevelop .panel-group {
  margin-bottom: 20px;
}
.wpdevelop .panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.wpdevelop .panel-group .panel + .panel {
  margin-top: 5px;
}
.wpdevelop .panel-group .panel-heading {
  border-bottom: 0;
}
.wpdevelop .panel-group .panel-heading + .panel-collapse > .panel-body,
.wpdevelop .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.wpdevelop .panel-group .panel-footer {
  border-top: 0;
}
.wpdevelop .panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.wpdevelop .panel-default {
  border-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.wpdevelop .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}
.wpdevelop .panel-primary {
  border-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.wpdevelop .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.wpdevelop .panel-success {
  border-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.wpdevelop .panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.wpdevelop .panel-info {
  border-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.wpdevelop .panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.wpdevelop .panel-warning {
  border-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.wpdevelop .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.wpdevelop .panel-danger {
  border-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.wpdevelop .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.wpdevelop .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.wpdevelop .embed-responsive .embed-responsive-item,
.wpdevelop .embed-responsive iframe,
.wpdevelop .embed-responsive embed,
.wpdevelop .embed-responsive object,
.wpdevelop .embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.wpdevelop .embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.wpdevelop .embed-responsive-4by3 {
  padding-bottom: 75%;
}
.wpdevelop .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.wpdevelop .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.wpdevelop .well-lg {
  padding: 24px;
  border-radius: 6px;
}
.wpdevelop .well-sm {
  padding: 9px;
  border-radius: 3px;
}
.wpdevelop .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.wpdevelop .close:hover,
.wpdevelop .close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.wpdevelop button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.wpdevelop .modal-open {
  overflow: hidden;
}
.wpdevelop .modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.wpdevelop .modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.wpdevelop .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.wpdevelop .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.wpdevelop .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.wpdevelop .modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}
.wpdevelop .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.wpdevelop .modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.wpdevelop .modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.wpdevelop .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.wpdevelop .modal-header .close {
  margin-top: -2px;
}
.wpdevelop .modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.wpdevelop .modal-body {
  position: relative;
  padding: 15px;
}
.wpdevelop .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.wpdevelop .modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.wpdevelop .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.wpdevelop .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.wpdevelop .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .wpdevelop .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .wpdevelop .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .wpdevelop .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .wpdevelop .modal-lg {
    width: 900px;
  }
}
.wpdevelop .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.wpdevelop .tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.wpdevelop .tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.wpdevelop .tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.wpdevelop .tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.wpdevelop .tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.wpdevelop .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 4px;
}
.wpdevelop .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.wpdevelop .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.wpdevelop .tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.wpdevelop .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.wpdevelop .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.wpdevelop .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.wpdevelop .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.wpdevelop .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.wpdevelop .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.wpdevelop .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.wpdevelop .popover.top {
  margin-top: -10px;
}
.wpdevelop .popover.right {
  margin-left: 10px;
}
.wpdevelop .popover.bottom {
  margin-top: 10px;
}
.wpdevelop .popover.left {
  margin-left: -10px;
}
.wpdevelop .popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.wpdevelop .popover-content {
  padding: 9px 14px;
}
.wpdevelop .popover > .arrow,
.wpdevelop .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.wpdevelop .popover > .arrow {
  border-width: 11px;
}
.wpdevelop .popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.wpdevelop .popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.wpdevelop .popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.wpdevelop .popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.wpdevelop .popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.wpdevelop .popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.wpdevelop .popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.wpdevelop .popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.wpdevelop .popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.wpdevelop .carousel {
  position: relative;
}
.wpdevelop .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.wpdevelop .carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.wpdevelop .carousel-inner > .item > img,
.wpdevelop .carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .wpdevelop .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .wpdevelop .carousel-inner > .item.next,
  .wpdevelop .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .wpdevelop .carousel-inner > .item.prev,
  .wpdevelop .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .wpdevelop .carousel-inner > .item.next.left,
  .wpdevelop .carousel-inner > .item.prev.right,
  .wpdevelop .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.wpdevelop .carousel-inner > .active,
.wpdevelop .carousel-inner > .next,
.wpdevelop .carousel-inner > .prev {
  display: block;
}
.wpdevelop .carousel-inner > .active {
  left: 0;
}
.wpdevelop .carousel-inner > .next,
.wpdevelop .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.wpdevelop .carousel-inner > .next {
  left: 100%;
}
.wpdevelop .carousel-inner > .prev {
  left: -100%;
}
.wpdevelop .carousel-inner > .next.left,
.wpdevelop .carousel-inner > .prev.right {
  left: 0;
}
.wpdevelop .carousel-inner > .active.left {
  left: -100%;
}
.wpdevelop .carousel-inner > .active.right {
  left: 100%;
}
.wpdevelop .carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.wpdevelop .carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.wpdevelop .carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.wpdevelop .carousel-control:hover,
.wpdevelop .carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .icon-next {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.wpdevelop .carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}

.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.wpdevelop .carousel-control .icon-prev:before {
  content: '\2039';
}
.wpdevelop .carousel-control .icon-next:before {
  content: '\203a';
}
.wpdevelop .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.wpdevelop .carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
}
.wpdevelop .carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.wpdevelop .carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.wpdevelop .carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .wpdevelop .carousel-control .icon-prev,
  .wpdevelop .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .wpdevelop .carousel-control .glyphicon-chevron-left,
  .wpdevelop .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .wpdevelop .carousel-control .icon-next {
    margin-right: -15px;
  }
  .wpdevelop .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .wpdevelop .carousel-indicators {
    bottom: 20px;
  }
}
.wpdevelop .clearfix:before,
.wpdevelop .clearfix:after,
.wpdevelop .dl-horizontal dd:before,
.wpdevelop .dl-horizontal dd:after,
.wpdevelop .container:before,
.wpdevelop .container:after,
.wpdevelop .container-fluid:before,
.wpdevelop .container-fluid:after,
.wpdevelop .row:before,
.wpdevelop .row:after,
.wpdevelop .form-horizontal .form-group:before,
.wpdevelop .form-horizontal .form-group:after,
.wpdevelop .btn-toolbar:before,
.wpdevelop .btn-toolbar:after,
.wpdevelop .btn-group-vertical > .btn-group:before,
.wpdevelop .btn-group-vertical > .btn-group:after,
.wpdevelop .nav:before,
.wpdevelop .nav:after,
.wpdevelop .navbar:before,
.wpdevelop .navbar:after,
.wpdevelop .navbar-header:before,
.wpdevelop .navbar-header:after,
.wpdevelop .navbar-collapse:before,
.wpdevelop .navbar-collapse:after,
.wpdevelop .pager:before,
.wpdevelop .pager:after,
.wpdevelop .panel-body:before,
.wpdevelop .panel-body:after,
.wpdevelop .modal-footer:before,
.wpdevelop .modal-footer:after {
  content: " ";
  display: table;
}
.wpdevelop .clearfix:after,
.wpdevelop .dl-horizontal dd:after,
.wpdevelop .container:after,
.wpdevelop .container-fluid:after,
.wpdevelop .row:after,
.wpdevelop .form-horizontal .form-group:after,
.wpdevelop .btn-toolbar:after,
.wpdevelop .btn-group-vertical > .btn-group:after,
.wpdevelop .nav:after,
.wpdevelop .navbar:after,
.wpdevelop .navbar-header:after,
.wpdevelop .navbar-collapse:after,
.wpdevelop .pager:after,
.wpdevelop .panel-body:after,
.wpdevelop .modal-footer:after {
  clear: both;
}
.wpdevelop .center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wpdevelop .pull-right {
  float: right !important;
}
.wpdevelop .pull-left {
  float: left !important;
}
.wpdevelop .hide {
  display: none !important;
}
.wpdevelop .show {
  display: block !important;
}
.wpdevelop .invisible {
  visibility: hidden;
}
.wpdevelop .text-hide {
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.wpdevelop .hidden {
  display: none !important;
}
.wpdevelop .affix {
  position: fixed;
}
.wpdevelop .visible-xs,
.wpdevelop .visible-sm,
.wpdevelop .visible-md,
.wpdevelop .visible-lg {
  display: none !important;
}
.wpdevelop .visible-xs-block,
.wpdevelop .visible-xs-inline,
.wpdevelop .visible-xs-inline-block,
.wpdevelop .visible-sm-block,
.wpdevelop .visible-sm-inline,
.wpdevelop .visible-sm-inline-block,
.wpdevelop .visible-md-block,
.wpdevelop .visible-md-inline,
.wpdevelop .visible-md-inline-block,
.wpdevelop .visible-lg-block,
.wpdevelop .visible-lg-inline,
.wpdevelop .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .wpdevelop .visible-xs {
    display: block !important;
  }
  .wpdevelop table.visible-xs {
    display: table !important;
  }
  .wpdevelop tr.visible-xs {
    display: table-row !important;
  }
  .wpdevelop th.visible-xs,
  .wpdevelop td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .wpdevelop .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .wpdevelop .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .wpdevelop .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpdevelop .visible-sm {
    display: block !important;
  }
  .wpdevelop table.visible-sm {
    display: table !important;
  }
  .wpdevelop tr.visible-sm {
    display: table-row !important;
  }
  .wpdevelop th.visible-sm,
  .wpdevelop td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpdevelop .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpdevelop .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpdevelop .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpdevelop .visible-md {
    display: block !important;
  }
  .wpdevelop table.visible-md {
    display: table !important;
  }
  .wpdevelop tr.visible-md {
    display: table-row !important;
  }
  .wpdevelop th.visible-md,
  .wpdevelop td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpdevelop .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpdevelop .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpdevelop .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .visible-lg {
    display: block !important;
  }
  .wpdevelop table.visible-lg {
    display: table !important;
  }
  .wpdevelop tr.visible-lg {
    display: table-row !important;
  }
  .wpdevelop th.visible-lg,
  .wpdevelop td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .wpdevelop .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .wpdevelop .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpdevelop .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .wpdevelop .hidden-lg {
    display: none !important;
  }
}
.wpdevelop .visible-print {
  display: none !important;
}
@media print {
  .wpdevelop .visible-print {
    display: block !important;
  }
  .wpdevelop table.visible-print {
    display: table !important;
  }
  .wpdevelop tr.visible-print {
    display: table-row !important;
  }
  .wpdevelop th.visible-print,
  .wpdevelop td.visible-print {
    display: table-cell !important;
  }
}
.wpdevelop .visible-print-block {
  display: none !important;
}
@media print {
  .wpdevelop .visible-print-block {
    display: block !important;
  }
}
.wpdevelop .visible-print-inline {
  display: none !important;
}
@media print {
  .wpdevelop .visible-print-inline {
    display: inline !important;
  }
}
.wpdevelop .visible-print-inline-block {
  display: none !important;
}
@media print {
  .wpdevelop .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .wpdevelop .hidden-print {
    display: none !important;
  }
}
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f4b4c9cb85df757ca08c)
 * Config saved to config.json and https://gist.github.com/f4b4c9cb85df757ca08c
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.wpdevelop .btn-default,
.wpdevelop .btn-primary,
.wpdevelop .btn-success,
.wpdevelop .btn-info,
.wpdevelop .btn-warning,
.wpdevelop .btn-danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-primary:active,
.wpdevelop .btn-success:active,
.wpdevelop .btn-info:active,
.wpdevelop .btn-warning:active,
.wpdevelop .btn-danger:active,
.wpdevelop .btn-default.active,
.wpdevelop .btn-primary.active,
.wpdevelop .btn-success.active,
.wpdevelop .btn-info.active,
.wpdevelop .btn-warning.active,
.wpdevelop .btn-danger.active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop .btn-primary[disabled],
.wpdevelop .btn-success[disabled],
.wpdevelop .btn-info[disabled],
.wpdevelop .btn-warning[disabled],
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop fieldset[disabled] .btn-danger {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpdevelop .btn-default .badge,
.wpdevelop .btn-primary .badge,
.wpdevelop .btn-success .badge,
.wpdevelop .btn-info .badge,
.wpdevelop .btn-warning .badge,
.wpdevelop .btn-danger .badge {
  text-shadow: none;
}
.wpdevelop .btn:active,
.wpdevelop .btn.active {
  background-image: none;
}
.wpdevelop .btn-default {
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0));
  background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  text-shadow: 0 1px 0 #fff;
  border-color: #ccc;
}
.wpdevelop .btn-default:hover,
.wpdevelop .btn-default:focus {
  background-color: #e0e0e0;
  background-position: 0 -15px;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active {
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop .btn-default.disabled:hover,
.wpdevelop .btn-default[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-default:hover,
.wpdevelop .btn-default.disabled:focus,
.wpdevelop .btn-default[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-default:focus,
.wpdevelop .btn-default.disabled.focus,
.wpdevelop .btn-default[disabled].focus,
.wpdevelop fieldset[disabled] .btn-default.focus,
.wpdevelop .btn-default.disabled:active,
.wpdevelop .btn-default[disabled]:active,
.wpdevelop fieldset[disabled] .btn-default:active,
.wpdevelop .btn-default.disabled.active,
.wpdevelop .btn-default[disabled].active,
.wpdevelop fieldset[disabled] .btn-default.active {
  background-color: #e0e0e0;
  background-image: none;
}
.wpdevelop .btn-primary {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
}
.wpdevelop .btn-primary:hover,
.wpdevelop .btn-primary:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active {
  background-color: #265a88;
  border-color: #245580;
}
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-primary[disabled],
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop .btn-primary.disabled:hover,
.wpdevelop .btn-primary[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-primary:hover,
.wpdevelop .btn-primary.disabled:focus,
.wpdevelop .btn-primary[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-primary:focus,
.wpdevelop .btn-primary.disabled.focus,
.wpdevelop .btn-primary[disabled].focus,
.wpdevelop fieldset[disabled] .btn-primary.focus,
.wpdevelop .btn-primary.disabled:active,
.wpdevelop .btn-primary[disabled]:active,
.wpdevelop fieldset[disabled] .btn-primary:active,
.wpdevelop .btn-primary.disabled.active,
.wpdevelop .btn-primary[disabled].active,
.wpdevelop fieldset[disabled] .btn-primary.active {
  background-color: #265a88;
  background-image: none;
}
.wpdevelop .btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}
.wpdevelop .btn-success:hover,
.wpdevelop .btn-success:focus {
  background-color: #419641;
  background-position: 0 -15px;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-success[disabled],
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop .btn-success.disabled:hover,
.wpdevelop .btn-success[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-success:hover,
.wpdevelop .btn-success.disabled:focus,
.wpdevelop .btn-success[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-success:focus,
.wpdevelop .btn-success.disabled.focus,
.wpdevelop .btn-success[disabled].focus,
.wpdevelop fieldset[disabled] .btn-success.focus,
.wpdevelop .btn-success.disabled:active,
.wpdevelop .btn-success[disabled]:active,
.wpdevelop fieldset[disabled] .btn-success:active,
.wpdevelop .btn-success.disabled.active,
.wpdevelop .btn-success[disabled].active,
.wpdevelop fieldset[disabled] .btn-success.active {
  background-color: #419641;
  background-image: none;
}
.wpdevelop .btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}
.wpdevelop .btn-info:hover,
.wpdevelop .btn-info:focus {
  background-color: #2aabd2;
  background-position: 0 -15px;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-info[disabled],
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop .btn-info.disabled:hover,
.wpdevelop .btn-info[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-info:hover,
.wpdevelop .btn-info.disabled:focus,
.wpdevelop .btn-info[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-info:focus,
.wpdevelop .btn-info.disabled.focus,
.wpdevelop .btn-info[disabled].focus,
.wpdevelop fieldset[disabled] .btn-info.focus,
.wpdevelop .btn-info.disabled:active,
.wpdevelop .btn-info[disabled]:active,
.wpdevelop fieldset[disabled] .btn-info:active,
.wpdevelop .btn-info.disabled.active,
.wpdevelop .btn-info[disabled].active,
.wpdevelop fieldset[disabled] .btn-info.active {
  background-color: #2aabd2;
  background-image: none;
}
.wpdevelop .btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}
.wpdevelop .btn-warning:hover,
.wpdevelop .btn-warning:focus {
  background-color: #eb9316;
  background-position: 0 -15px;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-warning[disabled],
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop .btn-warning.disabled:hover,
.wpdevelop .btn-warning[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-warning:hover,
.wpdevelop .btn-warning.disabled:focus,
.wpdevelop .btn-warning[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-warning:focus,
.wpdevelop .btn-warning.disabled.focus,
.wpdevelop .btn-warning[disabled].focus,
.wpdevelop fieldset[disabled] .btn-warning.focus,
.wpdevelop .btn-warning.disabled:active,
.wpdevelop .btn-warning[disabled]:active,
.wpdevelop fieldset[disabled] .btn-warning:active,
.wpdevelop .btn-warning.disabled.active,
.wpdevelop .btn-warning[disabled].active,
.wpdevelop fieldset[disabled] .btn-warning.active {
  background-color: #eb9316;
  background-image: none;
}
.wpdevelop .btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}
.wpdevelop .btn-danger:hover,
.wpdevelop .btn-danger:focus {
  background-color: #c12e2a;
  background-position: 0 -15px;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-danger,
.wpdevelop .btn-danger.disabled:hover,
.wpdevelop .btn-danger[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-danger:hover,
.wpdevelop .btn-danger.disabled:focus,
.wpdevelop .btn-danger[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-danger:focus,
.wpdevelop .btn-danger.disabled.focus,
.wpdevelop .btn-danger[disabled].focus,
.wpdevelop fieldset[disabled] .btn-danger.focus,
.wpdevelop .btn-danger.disabled:active,
.wpdevelop .btn-danger[disabled]:active,
.wpdevelop fieldset[disabled] .btn-danger:active,
.wpdevelop .btn-danger.disabled.active,
.wpdevelop .btn-danger[disabled].active,
.wpdevelop fieldset[disabled] .btn-danger.active {
  background-color: #c12e2a;
  background-image: none;
}
.wpdevelop .thumbnail,
.wpdevelop .img-thumbnail {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.wpdevelop .dropdown-menu > li > a:hover,
.wpdevelop .dropdown-menu > li > a:focus {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-color: #e8e8e8;
}
.wpdevelop .dropdown-menu > .active > a,
.wpdevelop .dropdown-menu > .active > a:hover,
.wpdevelop .dropdown-menu > .active > a:focus {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-color: #2e6da4;
}
.wpdevelop .navbar-default {
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
  background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.wpdevelop .navbar-default .navbar-nav > .open > a,
.wpdevelop .navbar-default .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
  background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
}
.wpdevelop .navbar-brand,
.wpdevelop .navbar-nav > li > a {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.wpdevelop .navbar-inverse {
  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222222));
  background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-radius: 4px;
}
.wpdevelop .navbar-inverse .navbar-nav > .open > a,
.wpdevelop .navbar-inverse .navbar-nav > .active > a {
  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
  background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
.wpdevelop .navbar-inverse .navbar-brand,
.wpdevelop .navbar-inverse .navbar-nav > li > a {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.wpdevelop .navbar-static-top,
.wpdevelop .navbar-fixed-top,
.wpdevelop .navbar-fixed-bottom {
  border-radius: 0;
}
@media (max-width: 767px) {
  .wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a,
  .wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
  .wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  }
}
.wpdevelop .alert {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpdevelop .alert-success {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  border-color: #b2dba1;
}
.wpdevelop .alert-info {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  border-color: #9acfea;
}
.wpdevelop .alert-warning {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  border-color: #f5e79e;
}
.wpdevelop .alert-danger {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  border-color: #dca7a7;
}
.wpdevelop .progress {
  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
  background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
}
.wpdevelop .progress-bar {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
  background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
}
.wpdevelop .progress-bar-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
  background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.wpdevelop .progress-bar-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
  background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.wpdevelop .progress-bar-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.wpdevelop .progress-bar-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
  background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.wpdevelop .progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .list-group {
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.wpdevelop .list-group-item.active,
.wpdevelop .list-group-item.active:hover,
.wpdevelop .list-group-item.active:focus {
  text-shadow: 0 -1px 0 #286090;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
  background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
  border-color: #2b669a;
}
.wpdevelop .list-group-item.active .badge,
.wpdevelop .list-group-item.active:hover .badge,
.wpdevelop .list-group-item.active:focus .badge {
  text-shadow: none;
}
.wpdevelop .panel {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpdevelop .panel-default > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
}
.wpdevelop .panel-primary > .panel-heading {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
}
.wpdevelop .panel-success > .panel-heading {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
  background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
}
.wpdevelop .panel-info > .panel-heading {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
  background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}
.wpdevelop .panel-warning > .panel-heading {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
}
.wpdevelop .panel-danger > .panel-heading {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
  background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
}
.wpdevelop .well {
  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
  background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
  border-color: #dcdcdc;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.tippy-box[data-theme~=wpbc-tippy-popover] {
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 8, 16, .15);
	color: #333;
	box-shadow: 0 4px 14px -2px rgba(0, 8, 16, .08)
}

.tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-backdrop {
	background-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-arrow:after, .tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-svg-arrow:after {
	content: "";
	position: absolute;
	z-index: -1
}

.tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-arrow:after {
	border-color: transparent;
	border-style: solid
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=top] > .tippy-arrow:before {
	border-top-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=top] > .tippy-arrow:after {
	border-top-color: rgba(0, 8, 16, .2);
	border-width: 7px 7px 0;
	top: 17px;
	left: 1px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=top] > .tippy-svg-arrow > svg {
	top: 16px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=top] > .tippy-svg-arrow:after {
	top: 17px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=bottom] > .tippy-arrow:before {
	border-bottom-color: #fff;
	bottom: 16px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=bottom] > .tippy-arrow:after {
	border-bottom-color: rgba(0, 8, 16, .2);
	border-width: 0 7px 7px;
	bottom: 17px;
	left: 1px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=bottom] > .tippy-svg-arrow > svg {
	bottom: 16px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=bottom] > .tippy-svg-arrow:after {
	bottom: 17px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=left] > .tippy-arrow:before {
	border-left-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=left] > .tippy-arrow:after {
	border-left-color: rgba(0, 8, 16, .2);
	border-width: 7px 0 7px 7px;
	left: 17px;
	top: 1px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=left] > .tippy-svg-arrow > svg {
	left: 11px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=left] > .tippy-svg-arrow:after {
	left: 12px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=right] > .tippy-arrow:before {
	border-right-color: #fff;
	right: 16px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=right] > .tippy-arrow:after {
	border-width: 7px 7px 7px 0;
	right: 17px;
	top: 1px;
	border-right-color: rgba(0, 8, 16, .2)
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=right] > .tippy-svg-arrow > svg {
	right: 11px
}

.tippy-box[data-theme~=wpbc-tippy-popover][data-placement^=right] > .tippy-svg-arrow:after {
	right: 12px
}

.tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-svg-arrow {
	fill: #fff
}

.tippy-box[data-theme~=wpbc-tippy-popover] > .tippy-svg-arrow:after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);
	background-size: 16px 6px;
	width: 16px;
	height: 6px
}
/* WPBC Customization.  Above was replaced [data-theme~=light-border] to  [data-theme~=wpbc-tippy-popover]*/
.tippy-box[data-theme~="wpbc-tippy-popover"] {
	border-radius: 0;
	border: none;
	background: none;
}
.tippy-box[data-theme~="wpbc-tippy-popover"] .popover.popover_tippy{
	display:block;
	position:relative;
}
.tippy-box[data-theme~="wpbc-tippy-popover"] .tippy-content{
	padding: 0;
}
/* Arrow Bottom */
.tippy-box[data-theme~="wpbc-tippy-popover"][data-placement^="bottom"] > .tippy-arrow::before {
  border-bottom-color: rgba(129, 129, 129, 0.52);
	/*bottom: 20px;*/
	/*top: -10px;*/
}
.tippy-box[data-theme~="wpbc-tippy-popover"][data-placement^="bottom"] > .tippy-arrow::after {
  border-top-color:transparent;
}
/* Arrow top */
.tippy-box[data-theme~="wpbc-tippy-popover"][data-placement^="top"] > .tippy-arrow::before {
  border-top-color: rgba(129, 129, 129, 0.52);
}
.tippy-box[data-theme~="wpbc-tippy-popover"][data-placement^="top"] > .tippy-arrow::after {
  border-top-color:transparent;
}.wpdevelop div[id^="tippy-"]{
	z-index: 90001 !important;
}
.tippy-box[data-theme~=wpbc-tippy-times] {
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 8, 16, .15);
	color: #333;
	box-shadow: 0 4px 14px -2px rgba(0, 8, 16, .08)
}

.tippy-box[data-theme~=wpbc-tippy-times] > .tippy-backdrop {
	background-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-times] > .tippy-arrow:after, .tippy-box[data-theme~=wpbc-tippy-times] > .tippy-svg-arrow:after {
	content: "";
	position: absolute;
	z-index: -1
}

.tippy-box[data-theme~=wpbc-tippy-times] > .tippy-arrow:after {
	border-color: transparent;
	border-style: solid
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=top] > .tippy-arrow:before {
	border-top-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=top] > .tippy-arrow:after {
	border-top-color: rgba(0, 8, 16, .2);
	border-width: 7px 7px 0;
	top: 17px;
	left: 1px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=top] > .tippy-svg-arrow > svg {
	top: 16px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=top] > .tippy-svg-arrow:after {
	top: 17px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=bottom] > .tippy-arrow:before {
	border-bottom-color: #fff;
	bottom: 16px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=bottom] > .tippy-arrow:after {
	border-bottom-color: rgba(0, 8, 16, .2);
	border-width: 0 7px 7px;
	bottom: 17px;
	left: 1px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=bottom] > .tippy-svg-arrow > svg {
	bottom: 16px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=bottom] > .tippy-svg-arrow:after {
	bottom: 17px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=left] > .tippy-arrow:before {
	border-left-color: #fff
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=left] > .tippy-arrow:after {
	border-left-color: rgba(0, 8, 16, .2);
	border-width: 7px 0 7px 7px;
	left: 17px;
	top: 1px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=left] > .tippy-svg-arrow > svg {
	left: 11px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=left] > .tippy-svg-arrow:after {
	left: 12px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=right] > .tippy-arrow:before {
	border-right-color: #fff;
	right: 16px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=right] > .tippy-arrow:after {
	border-width: 7px 7px 7px 0;
	right: 17px;
	top: 1px;
	border-right-color: rgba(0, 8, 16, .2)
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=right] > .tippy-svg-arrow > svg {
	right: 11px
}

.tippy-box[data-theme~=wpbc-tippy-times][data-placement^=right] > .tippy-svg-arrow:after {
	right: 12px
}

.tippy-box[data-theme~=wpbc-tippy-times] > .tippy-svg-arrow {
	fill: #fff
}

.tippy-box[data-theme~=wpbc-tippy-times] > .tippy-svg-arrow:after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);
	background-size: 16px 6px;
	width: 16px;
	height: 6px
}
/* WPBC Customization.  Above was replaced [data-theme~=light-border] to  [data-theme~=wpbc-tippy-times]*/
.tippy-box[data-theme~="wpbc-tippy-times"] {
	/*border-radius: 0;*/
	/*border: none;*/
	background: #fff;
}
.tippy-box[data-theme~="wpbc-tippy-times"] .popover.popover_tippy{
	display:block;
	position:relative;
}
.tippy-box[data-theme~="wpbc-tippy-times"] .tippy-content{
	padding: 5px 10px;
    font-size: 0.9em;
    line-height: 1.7em;
}
/* Arrow Bottom */
.tippy-box[data-theme~="wpbc-tippy-times"][data-placement^="bottom"] > .tippy-arrow::before {
  border-bottom-color: rgba(129, 129, 129, 0.52);
	/*bottom: 20px;*/
	/*top: -10px;*/
}
.tippy-box[data-theme~="wpbc-tippy-times"][data-placement^="bottom"] > .tippy-arrow::after {
  border-top-color:transparent;
}
/* Arrow top */
.tippy-box[data-theme~="wpbc-tippy-times"][data-placement^="top"] > .tippy-arrow::before {
  border-top-color: rgba(129, 129, 129, 0.52);
  bottom: -9px;
}
.tippy-box[data-theme~="wpbc-tippy-times"][data-placement^="top"] > .tippy-arrow::after {
  border-top-color:transparent;
}
/* Fix conflict issue with  Bootstrap lib */
.popover.popover_tippy {
	border: none;
}
/* Fix for Booking Listing  page max width. */
.toplevel_page_wpbc .tippy-box[data-placement^="top-start"]{
	max-width: 500px !important;
}/* Font Icons: https://fonts.google.com/icons?icon.query=event&icon.style=Filled&icon.set=Material+Icons
   Download:  https://github.com/google/material-design-icons/tree/master/font
   Convertor: https://cloudconvert.com/otf-to-woff2
*/
/* License: Apache License Version 2.0  http://www.apache.org/licenses/LICENSE-2.0.txt */
@font-face {
  font-family: 'wpbc-material-icons';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/plugins/booking.bm.10.5/assets/libs/material-design-icons/./fonts/google-material-design-icons.woff2) format('woff2');
}
.wpbc_icn::before,
[class^="wpbc_icn_"]::before,
[class*=" wpbc_icn_"]::before {
  font-family: 'wpbc-material-icons';
  display: inline-block;
  font-variant: normal;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  vertical-align: -.20125em;
  /* Support for IE. */
  font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
}
.wpbc_icn_10k::before { content: "\e951"; }
.wpbc_icn_10mp::before { content: "\e952"; }
.wpbc_icn_11mp::before { content: "\e953"; }
.wpbc_icn_123::before { content: "\eb8d"; }
.wpbc_icn_12mp::before { content: "\e954"; }
.wpbc_icn_13mp::before { content: "\e955"; }
.wpbc_icn_14mp::before { content: "\e956"; }
.wpbc_icn_15mp::before { content: "\e957"; }
.wpbc_icn_16mp::before { content: "\e958"; }
.wpbc_icn_17mp::before { content: "\e959"; }
.wpbc_icn_18mp::before { content: "\e95a"; }
.wpbc_icn_19mp::before { content: "\e95b"; }
.wpbc_icn_1k::before { content: "\e95c"; }
.wpbc_icn_1k_plus::before { content: "\e95d"; }
.wpbc_icn_1x_mobiledata::before { content: "\efcd"; }
.wpbc_icn_20mp::before { content: "\e95e"; }
.wpbc_icn_21mp::before { content: "\e95f"; }
.wpbc_icn_22mp::before { content: "\e960"; }
.wpbc_icn_23mp::before { content: "\e961"; }
.wpbc_icn_24mp::before { content: "\e962"; }
.wpbc_icn_2k::before { content: "\e963"; }
.wpbc_icn_2k_plus::before { content: "\e964"; }
.wpbc_icn_2mp::before { content: "\e965"; }
.wpbc_icn_30fps::before { content: "\efce"; }
.wpbc_icn_30fps_select::before { content: "\efcf"; }
.wpbc_icn_360::before { content: "\e577"; }
.wpbc_icn_3d_rotation::before { content: "\e84d"; }
.wpbc_icn_3g_mobiledata::before { content: "\efd0"; }
.wpbc_icn_3k::before { content: "\e966"; }
.wpbc_icn_3k_plus::before { content: "\e967"; }
.wpbc_icn_3mp::before { content: "\e968"; }
.wpbc_icn_3p::before { content: "\efd1"; }
.wpbc_icn_4g_mobiledata::before { content: "\efd2"; }
.wpbc_icn_4g_plus_mobiledata::before { content: "\efd3"; }
.wpbc_icn_4k::before { content: "\e072"; }
.wpbc_icn_4k_plus::before { content: "\e969"; }
.wpbc_icn_4mp::before { content: "\e96a"; }
.wpbc_icn_5g::before { content: "\ef38"; }
.wpbc_icn_5k::before { content: "\e96b"; }
.wpbc_icn_5k_plus::before { content: "\e96c"; }
.wpbc_icn_5mp::before { content: "\e96d"; }
.wpbc_icn_60fps::before { content: "\efd4"; }
.wpbc_icn_60fps_select::before { content: "\efd5"; }
.wpbc_icn_6_ft_apart::before { content: "\f21e"; }
.wpbc_icn_6k::before { content: "\e96e"; }
.wpbc_icn_6k_plus::before { content: "\e96f"; }
.wpbc_icn_6mp::before { content: "\e970"; }
.wpbc_icn_7k::before { content: "\e971"; }
.wpbc_icn_7k_plus::before { content: "\e972"; }
.wpbc_icn_7mp::before { content: "\e973"; }
.wpbc_icn_8k::before { content: "\e974"; }
.wpbc_icn_8k_plus::before { content: "\e975"; }
.wpbc_icn_8mp::before { content: "\e976"; }
.wpbc_icn_9k::before { content: "\e977"; }
.wpbc_icn_9k_plus::before { content: "\e978"; }
.wpbc_icn_9mp::before { content: "\e979"; }
.wpbc_icn_abc::before { content: "\eb94"; }
.wpbc_icn_ac_unit::before { content: "\eb3b"; }
.wpbc_icn_access_alarm::before { content: "\e190"; }
.wpbc_icn_access_alarms::before { content: "\e191"; }
.wpbc_icn_access_time::before { content: "\e192"; }
.wpbc_icn_access_time_filled::before { content: "\efd6"; }
.wpbc_icn_accessibility::before { content: "\e84e"; }
.wpbc_icn_accessibility_new::before { content: "\e92c"; }
.wpbc_icn_accessible::before { content: "\e914"; }
.wpbc_icn_accessible_forward::before { content: "\e934"; }
.wpbc_icn_account_balance::before { content: "\e84f"; }
.wpbc_icn_account_balance_wallet::before { content: "\e850"; }
.wpbc_icn_account_box::before { content: "\e851"; }
.wpbc_icn_account_circle::before { content: "\e853"; }
.wpbc_icn_account_tree::before { content: "\e97a"; }
.wpbc_icn_ad_units::before { content: "\ef39"; }
.wpbc_icn_adb::before { content: "\e60e"; }
.wpbc_icn_add::before { content: "\e145"; }
.wpbc_icn_add_a_photo::before { content: "\e439"; }
.wpbc_icn_add_alarm::before { content: "\e193"; }
.wpbc_icn_add_alert::before { content: "\e003"; }
.wpbc_icn_add_box::before { content: "\e146"; }
.wpbc_icn_add_business::before { content: "\e729"; }
.wpbc_icn_add_call::before { content: "\e0e8"; }
.wpbc_icn_add_card::before { content: "\eb86"; }
.wpbc_icn_add_chart::before { content: "\e97b"; }
.wpbc_icn_add_circle::before { content: "\e147"; }
.wpbc_icn_add_circle_outline::before { content: "\e148"; }
.wpbc_icn_add_comment::before { content: "\e266"; }
.wpbc_icn_add_ic_call::before { content: "\e97c"; }
.wpbc_icn_add_link::before { content: "\e178"; }
.wpbc_icn_add_location::before { content: "\e567"; }
.wpbc_icn_add_location_alt::before { content: "\ef3a"; }
.wpbc_icn_add_moderator::before { content: "\e97d"; }
.wpbc_icn_add_photo_alternate::before { content: "\e43e"; }
.wpbc_icn_add_reaction::before { content: "\e1d3"; }
.wpbc_icn_add_road::before { content: "\ef3b"; }
.wpbc_icn_add_shopping_cart::before { content: "\e854"; }
.wpbc_icn_add_task::before { content: "\f23a"; }
.wpbc_icn_add_to_drive::before { content: "\e65c"; }
.wpbc_icn_add_to_home_screen::before { content: "\e1fe"; }
.wpbc_icn_add_to_photos::before { content: "\e39d"; }
.wpbc_icn_add_to_queue::before { content: "\e05c"; }
.wpbc_icn_addchart::before { content: "\ef3c"; }
.wpbc_icn_adf_scanner::before { content: "\eada"; }
.wpbc_icn_adjust::before { content: "\e39e"; }
.wpbc_icn_admin_panel_settings::before { content: "\ef3d"; }
.wpbc_icn_adobe::before { content: "\ea96"; }
.wpbc_icn_ads_click::before { content: "\e762"; }
.wpbc_icn_agriculture::before { content: "\ea79"; }
.wpbc_icn_air::before { content: "\efd8"; }
.wpbc_icn_airline_seat_flat::before { content: "\e630"; }
.wpbc_icn_airline_seat_flat_angled::before { content: "\e631"; }
.wpbc_icn_airline_seat_individual_suite::before { content: "\e632"; }
.wpbc_icn_airline_seat_legroom_extra::before { content: "\e633"; }
.wpbc_icn_airline_seat_legroom_normal::before { content: "\e634"; }
.wpbc_icn_airline_seat_legroom_reduced::before { content: "\e635"; }
.wpbc_icn_airline_seat_recline_extra::before { content: "\e636"; }
.wpbc_icn_airline_seat_recline_normal::before { content: "\e637"; }
.wpbc_icn_airline_stops::before { content: "\e7d0"; }
.wpbc_icn_airlines::before { content: "\e7ca"; }
.wpbc_icn_airplane_ticket::before { content: "\efd9"; }
.wpbc_icn_airplanemode_active::before { content: "\e195"; }
.wpbc_icn_airplanemode_inactive::before { content: "\e194"; }
.wpbc_icn_airplanemode_off::before { content: "\e194"; }
.wpbc_icn_airplanemode_on::before { content: "\e195"; }
.wpbc_icn_airplay::before { content: "\e055"; }
.wpbc_icn_airport_shuttle::before { content: "\eb3c"; }
.wpbc_icn_alarm::before { content: "\e855"; }
.wpbc_icn_alarm_add::before { content: "\e856"; }
.wpbc_icn_alarm_off::before { content: "\e857"; }
.wpbc_icn_alarm_on::before { content: "\e858"; }
.wpbc_icn_album::before { content: "\e019"; }
.wpbc_icn_align_horizontal_center::before { content: "\e00f"; }
.wpbc_icn_align_horizontal_left::before { content: "\e00d"; }
.wpbc_icn_align_horizontal_right::before { content: "\e010"; }
.wpbc_icn_align_vertical_bottom::before { content: "\e015"; }
.wpbc_icn_align_vertical_center::before { content: "\e011"; }
.wpbc_icn_align_vertical_top::before { content: "\e00c"; }
.wpbc_icn_all_inbox::before { content: "\e97f"; }
.wpbc_icn_all_inclusive::before { content: "\eb3d"; }
.wpbc_icn_all_out::before { content: "\e90b"; }
.wpbc_icn_alt_route::before { content: "\f184"; }
.wpbc_icn_alternate_email::before { content: "\e0e6"; }
.wpbc_icn_amp_stories::before { content: "\ea13"; }
.wpbc_icn_analytics::before { content: "\ef3e"; }
.wpbc_icn_anchor::before { content: "\f1cd"; }
.wpbc_icn_android::before { content: "\e859"; }
.wpbc_icn_animation::before { content: "\e71c"; }
.wpbc_icn_announcement::before { content: "\e85a"; }
.wpbc_icn_aod::before { content: "\efda"; }
.wpbc_icn_apartment::before { content: "\ea40"; }
.wpbc_icn_api::before { content: "\f1b7"; }
.wpbc_icn_app_blocking::before { content: "\ef3f"; }
.wpbc_icn_app_registration::before { content: "\ef40"; }
.wpbc_icn_app_settings_alt::before { content: "\ef41"; }
.wpbc_icn_app_shortcut::before { content: "\eae4"; }
.wpbc_icn_apple::before { content: "\ea80"; }
.wpbc_icn_approval::before { content: "\e982"; }
.wpbc_icn_apps::before { content: "\e5c3"; }
.wpbc_icn_apps_outage::before { content: "\e7cc"; }
.wpbc_icn_architecture::before { content: "\ea3b"; }
.wpbc_icn_archive::before { content: "\e149"; }
.wpbc_icn_area_chart::before { content: "\e770"; }
.wpbc_icn_arrow_back::before { content: "\e5c4"; }
.wpbc_icn_arrow_back_ios::before { content: "\e5e0"; }
.wpbc_icn_arrow_back_ios_new::before { content: "\e2ea"; }
.wpbc_icn_arrow_circle_down::before { content: "\f181"; }
.wpbc_icn_arrow_circle_left::before { content: "\eaa7"; }
.wpbc_icn_arrow_circle_right::before { content: "\eaaa"; }
.wpbc_icn_arrow_circle_up::before { content: "\f182"; }
.wpbc_icn_arrow_downward::before { content: "\e5db"; }
.wpbc_icn_arrow_drop_down::before { content: "\e5c5"; }
.wpbc_icn_arrow_drop_down_circle::before { content: "\e5c6"; }
.wpbc_icn_arrow_drop_up::before { content: "\e5c7"; }
.wpbc_icn_arrow_forward::before { content: "\e5c8"; }
.wpbc_icn_arrow_forward_ios::before { content: "\e5e1"; }
.wpbc_icn_arrow_left::before { content: "\e5de"; }
.wpbc_icn_arrow_right::before { content: "\e5df"; }
.wpbc_icn_arrow_right_alt::before { content: "\e941"; }
.wpbc_icn_arrow_upward::before { content: "\e5d8"; }
.wpbc_icn_art_track::before { content: "\e060"; }
.wpbc_icn_article::before { content: "\ef42"; }
.wpbc_icn_aspect_ratio::before { content: "\e85b"; }
.wpbc_icn_assessment::before { content: "\e85c"; }
.wpbc_icn_assignment::before { content: "\e85d"; }
.wpbc_icn_assignment_ind::before { content: "\e85e"; }
.wpbc_icn_assignment_late::before { content: "\e85f"; }
.wpbc_icn_assignment_return::before { content: "\e860"; }
.wpbc_icn_assignment_returned::before { content: "\e861"; }
.wpbc_icn_assignment_turned_in::before { content: "\e862"; }
.wpbc_icn_assistant::before { content: "\e39f"; }
.wpbc_icn_assistant_direction::before { content: "\e988"; }
.wpbc_icn_assistant_navigation::before { content: "\e989"; }
.wpbc_icn_assistant_photo::before { content: "\e3a0"; }
.wpbc_icn_assured_workload::before { content: "\eb6f"; }
.wpbc_icn_atm::before { content: "\e573"; }
.wpbc_icn_attach_email::before { content: "\ea5e"; }
.wpbc_icn_attach_file::before { content: "\e226"; }
.wpbc_icn_attach_money::before { content: "\e227"; }
.wpbc_icn_attachment::before { content: "\e2bc"; }
.wpbc_icn_attractions::before { content: "\ea52"; }
.wpbc_icn_attribution::before { content: "\efdb"; }
.wpbc_icn_audio_file::before { content: "\eb82"; }
.wpbc_icn_audiotrack::before { content: "\e3a1"; }
.wpbc_icn_auto_awesome::before { content: "\e65f"; }
.wpbc_icn_auto_awesome_mosaic::before { content: "\e660"; }
.wpbc_icn_auto_awesome_motion::before { content: "\e661"; }
.wpbc_icn_auto_delete::before { content: "\ea4c"; }
.wpbc_icn_auto_fix_high::before { content: "\e663"; }
.wpbc_icn_auto_fix_normal::before { content: "\e664"; }
.wpbc_icn_auto_fix_off::before { content: "\e665"; }
.wpbc_icn_auto_graph::before { content: "\e4fb"; }
.wpbc_icn_auto_mode::before { content: "\ec20"; }
.wpbc_icn_auto_stories::before { content: "\e666"; }
.wpbc_icn_autofps_select::before { content: "\efdc"; }
.wpbc_icn_autorenew::before { content: "\e863"; }
.wpbc_icn_av_timer::before { content: "\e01b"; }
.wpbc_icn_baby_changing_station::before { content: "\f19b"; }
.wpbc_icn_back_hand::before { content: "\e764"; }
.wpbc_icn_backpack::before { content: "\f19c"; }
.wpbc_icn_backspace::before { content: "\e14a"; }
.wpbc_icn_backup::before { content: "\e864"; }
.wpbc_icn_backup_table::before { content: "\ef43"; }
.wpbc_icn_badge::before { content: "\ea67"; }
.wpbc_icn_bakery_dining::before { content: "\ea53"; }
.wpbc_icn_balance::before { content: "\eaf6"; }
.wpbc_icn_balcony::before { content: "\e58f"; }
.wpbc_icn_ballot::before { content: "\e172"; }
.wpbc_icn_bar_chart::before { content: "\e26b"; }
.wpbc_icn_batch_prediction::before { content: "\f0f5"; }
.wpbc_icn_bathroom::before { content: "\efdd"; }
.wpbc_icn_bathtub::before { content: "\ea41"; }
.wpbc_icn_battery_0_bar::before { content: "\ebdc"; }
.wpbc_icn_battery_1_bar::before { content: "\ebd9"; }
.wpbc_icn_battery_2_bar::before { content: "\ebe0"; }
.wpbc_icn_battery_3_bar::before { content: "\ebdd"; }
.wpbc_icn_battery_4_bar::before { content: "\ebe2"; }
.wpbc_icn_battery_5_bar::before { content: "\ebd4"; }
.wpbc_icn_battery_6_bar::before { content: "\ebd2"; }
.wpbc_icn_battery_alert::before { content: "\e19c"; }
.wpbc_icn_battery_charging_full::before { content: "\e1a3"; }
.wpbc_icn_battery_full::before { content: "\e1a4"; }
.wpbc_icn_battery_saver::before { content: "\efde"; }
.wpbc_icn_battery_std::before { content: "\e1a5"; }
.wpbc_icn_battery_unknown::before { content: "\e1a6"; }
.wpbc_icn_beach_access::before { content: "\eb3e"; }
.wpbc_icn_bed::before { content: "\efdf"; }
.wpbc_icn_bedroom_baby::before { content: "\efe0"; }
.wpbc_icn_bedroom_child::before { content: "\efe1"; }
.wpbc_icn_bedroom_parent::before { content: "\efe2"; }
.wpbc_icn_bedtime::before { content: "\ef44"; }
.wpbc_icn_bedtime_off::before { content: "\eb76"; }
.wpbc_icn_beenhere::before { content: "\e52d"; }
.wpbc_icn_bento::before { content: "\f1f4"; }
.wpbc_icn_bike_scooter::before { content: "\ef45"; }
.wpbc_icn_biotech::before { content: "\ea3a"; }
.wpbc_icn_blender::before { content: "\efe3"; }
.wpbc_icn_blinds::before { content: "\e286"; }
.wpbc_icn_blinds_closed::before { content: "\ec1f"; }
.wpbc_icn_block::before { content: "\e14b"; }
.wpbc_icn_block_flipped::before { content: "\ef46"; }
.wpbc_icn_bloodtype::before { content: "\efe4"; }
.wpbc_icn_bluetooth::before { content: "\e1a7"; }
.wpbc_icn_bluetooth_audio::before { content: "\e60f"; }
.wpbc_icn_bluetooth_connected::before { content: "\e1a8"; }
.wpbc_icn_bluetooth_disabled::before { content: "\e1a9"; }
.wpbc_icn_bluetooth_drive::before { content: "\efe5"; }
.wpbc_icn_bluetooth_searching::before { content: "\e1aa"; }
.wpbc_icn_blur_circular::before { content: "\e3a2"; }
.wpbc_icn_blur_linear::before { content: "\e3a3"; }
.wpbc_icn_blur_off::before { content: "\e3a4"; }
.wpbc_icn_blur_on::before { content: "\e3a5"; }
.wpbc_icn_bolt::before { content: "\ea0b"; }
.wpbc_icn_book::before { content: "\e865"; }
.wpbc_icn_book_online::before { content: "\f217"; }
.wpbc_icn_bookmark::before { content: "\e866"; }
.wpbc_icn_bookmark_add::before { content: "\e598"; }
.wpbc_icn_bookmark_added::before { content: "\e599"; }
.wpbc_icn_bookmark_border::before { content: "\e867"; }
.wpbc_icn_bookmark_outline::before { content: "\e867"; }
.wpbc_icn_bookmark_remove::before { content: "\e59a"; }
.wpbc_icn_bookmarks::before { content: "\e98b"; }
.wpbc_icn_border_all::before { content: "\e228"; }
.wpbc_icn_border_bottom::before { content: "\e229"; }
.wpbc_icn_border_clear::before { content: "\e22a"; }
.wpbc_icn_border_color::before { content: "\e22b"; }
.wpbc_icn_border_horizontal::before { content: "\e22c"; }
.wpbc_icn_border_inner::before { content: "\e22d"; }
.wpbc_icn_border_left::before { content: "\e22e"; }
.wpbc_icn_border_outer::before { content: "\e22f"; }
.wpbc_icn_border_right::before { content: "\e230"; }
.wpbc_icn_border_style::before { content: "\e231"; }
.wpbc_icn_border_top::before { content: "\e232"; }
.wpbc_icn_border_vertical::before { content: "\e233"; }
.wpbc_icn_boy::before { content: "\eb67"; }
.wpbc_icn_branding_watermark::before { content: "\e06b"; }
.wpbc_icn_breakfast_dining::before { content: "\ea54"; }
.wpbc_icn_brightness_1::before { content: "\e3a6"; }
.wpbc_icn_brightness_2::before { content: "\e3a7"; }
.wpbc_icn_brightness_3::before { content: "\e3a8"; }
.wpbc_icn_brightness_4::before { content: "\e3a9"; }
.wpbc_icn_brightness_5::before { content: "\e3aa"; }
.wpbc_icn_brightness_6::before { content: "\e3ab"; }
.wpbc_icn_brightness_7::before { content: "\e3ac"; }
.wpbc_icn_brightness_auto::before { content: "\e1ab"; }
.wpbc_icn_brightness_high::before { content: "\e1ac"; }
.wpbc_icn_brightness_low::before { content: "\e1ad"; }
.wpbc_icn_brightness_medium::before { content: "\e1ae"; }
.wpbc_icn_broken_image::before { content: "\e3ad"; }
.wpbc_icn_browse_gallery::before { content: "\ebd1"; }
.wpbc_icn_browser_not_supported::before { content: "\ef47"; }
.wpbc_icn_browser_updated::before { content: "\e7cf"; }
.wpbc_icn_brunch_dining::before { content: "\ea73"; }
.wpbc_icn_brush::before { content: "\e3ae"; }
.wpbc_icn_bubble_chart::before { content: "\e6dd"; }
.wpbc_icn_bug_report::before { content: "\e868"; }
.wpbc_icn_build::before { content: "\e869"; }
.wpbc_icn_build_circle::before { content: "\ef48"; }
.wpbc_icn_bungalow::before { content: "\e591"; }
.wpbc_icn_burst_mode::before { content: "\e43c"; }
.wpbc_icn_bus_alert::before { content: "\e98f"; }
.wpbc_icn_business::before { content: "\e0af"; }
.wpbc_icn_business_center::before { content: "\eb3f"; }
.wpbc_icn_cabin::before { content: "\e589"; }
.wpbc_icn_cable::before { content: "\efe6"; }
.wpbc_icn_cached::before { content: "\e86a"; }
.wpbc_icn_cake::before { content: "\e7e9"; }
.wpbc_icn_calculate::before { content: "\ea5f"; }
.wpbc_icn_calendar_month::before { content: "\ebcc"; }
.wpbc_icn_calendar_today::before { content: "\e935"; }
.wpbc_icn_calendar_view_day::before { content: "\e936"; }
.wpbc_icn_calendar_view_month::before { content: "\efe7"; }
.wpbc_icn_calendar_view_week::before { content: "\efe8"; }
.wpbc_icn_call::before { content: "\e0b0"; }
.wpbc_icn_call_end::before { content: "\e0b1"; }
.wpbc_icn_call_made::before { content: "\e0b2"; }
.wpbc_icn_call_merge::before { content: "\e0b3"; }
.wpbc_icn_call_missed::before { content: "\e0b4"; }
.wpbc_icn_call_missed_outgoing::before { content: "\e0e4"; }
.wpbc_icn_call_received::before { content: "\e0b5"; }
.wpbc_icn_call_split::before { content: "\e0b6"; }
.wpbc_icn_call_to_action::before { content: "\e06c"; }
.wpbc_icn_camera::before { content: "\e3af"; }
.wpbc_icn_camera_alt::before { content: "\e3b0"; }
.wpbc_icn_camera_enhance::before { content: "\e8fc"; }
.wpbc_icn_camera_front::before { content: "\e3b1"; }
.wpbc_icn_camera_indoor::before { content: "\efe9"; }
.wpbc_icn_camera_outdoor::before { content: "\efea"; }
.wpbc_icn_camera_rear::before { content: "\e3b2"; }
.wpbc_icn_camera_roll::before { content: "\e3b3"; }
.wpbc_icn_cameraswitch::before { content: "\efeb"; }
.wpbc_icn_campaign::before { content: "\ef49"; }
.wpbc_icn_cancel::before { content: "\e5c9"; }
.wpbc_icn_cancel_presentation::before { content: "\e0e9"; }
.wpbc_icn_cancel_schedule_send::before { content: "\ea39"; }
.wpbc_icn_candlestick_chart::before { content: "\ead4"; }
.wpbc_icn_car_crash::before { content: "\ebf2"; }
.wpbc_icn_car_rental::before { content: "\ea55"; }
.wpbc_icn_car_repair::before { content: "\ea56"; }
.wpbc_icn_card_giftcard::before { content: "\e8f6"; }
.wpbc_icn_card_membership::before { content: "\e8f7"; }
.wpbc_icn_card_travel::before { content: "\e8f8"; }
.wpbc_icn_carpenter::before { content: "\f1f8"; }
.wpbc_icn_cases::before { content: "\e992"; }
.wpbc_icn_casino::before { content: "\eb40"; }
.wpbc_icn_cast::before { content: "\e307"; }
.wpbc_icn_cast_connected::before { content: "\e308"; }
.wpbc_icn_cast_for_education::before { content: "\efec"; }
.wpbc_icn_castle::before { content: "\eab1"; }
.wpbc_icn_catching_pokemon::before { content: "\e508"; }
.wpbc_icn_category::before { content: "\e574"; }
.wpbc_icn_celebration::before { content: "\ea65"; }
.wpbc_icn_cell_tower::before { content: "\ebba"; }
.wpbc_icn_cell_wifi::before { content: "\e0ec"; }
.wpbc_icn_center_focus_strong::before { content: "\e3b4"; }
.wpbc_icn_center_focus_weak::before { content: "\e3b5"; }
.wpbc_icn_chair::before { content: "\efed"; }
.wpbc_icn_chair_alt::before { content: "\efee"; }
.wpbc_icn_chalet::before { content: "\e585"; }
.wpbc_icn_change_circle::before { content: "\e2e7"; }
.wpbc_icn_change_history::before { content: "\e86b"; }
.wpbc_icn_charging_station::before { content: "\f19d"; }
.wpbc_icn_chat::before { content: "\e0b7"; }
.wpbc_icn_chat_bubble::before { content: "\e0ca"; }
.wpbc_icn_chat_bubble_outline::before { content: "\e0cb"; }
.wpbc_icn_check::before { content: "\e5ca"; }
.wpbc_icn_check_box::before { content: "\e834"; }
.wpbc_icn_check_box_outline_blank::before { content: "\e835"; }
.wpbc_icn_check_circle::before { content: "\e86c"; }
.wpbc_icn_check_circle_outline::before { content: "\e92d"; }
.wpbc_icn_checklist::before { content: "\e6b1"; }
.wpbc_icn_checklist_rtl::before { content: "\e6b3"; }
.wpbc_icn_checkroom::before { content: "\f19e"; }
.wpbc_icn_chevron_left::before { content: "\e5cb"; }
.wpbc_icn_chevron_right::before { content: "\e5cc"; }
.wpbc_icn_child_care::before { content: "\eb41"; }
.wpbc_icn_child_friendly::before { content: "\eb42"; }
.wpbc_icn_chrome_reader_mode::before { content: "\e86d"; }
.wpbc_icn_church::before { content: "\eaae"; }
.wpbc_icn_circle::before { content: "\ef4a"; }
.wpbc_icn_circle_notifications::before { content: "\e994"; }
.wpbc_icn_class::before { content: "\e86e"; }
.wpbc_icn_clean_hands::before { content: "\f21f"; }
.wpbc_icn_cleaning_services::before { content: "\f0ff"; }
.wpbc_icn_clear::before { content: "\e14c"; }
.wpbc_icn_clear_all::before { content: "\e0b8"; }
.wpbc_icn_close::before { content: "\e5cd"; }
.wpbc_icn_close_fullscreen::before { content: "\f1cf"; }
.wpbc_icn_closed_caption::before { content: "\e01c"; }
.wpbc_icn_closed_caption_disabled::before { content: "\f1dc"; }
.wpbc_icn_closed_caption_off::before { content: "\e996"; }
.wpbc_icn_cloud::before { content: "\e2bd"; }
.wpbc_icn_cloud_circle::before { content: "\e2be"; }
.wpbc_icn_cloud_done::before { content: "\e2bf"; }
.wpbc_icn_cloud_download::before { content: "\e2c0"; }
.wpbc_icn_cloud_off::before { content: "\e2c1"; }
.wpbc_icn_cloud_queue::before { content: "\e2c2"; }
.wpbc_icn_cloud_sync::before { content: "\eb5a"; }
.wpbc_icn_cloud_upload::before { content: "\e2c3"; }
.wpbc_icn_cloudy_snowing::before { content: "\e810"; }
.wpbc_icn_co2::before { content: "\e7b0"; }
.wpbc_icn_co_present::before { content: "\eaf0"; }
.wpbc_icn_code::before { content: "\e86f"; }
.wpbc_icn_code_off::before { content: "\e4f3"; }
.wpbc_icn_coffee::before { content: "\efef"; }
.wpbc_icn_coffee_maker::before { content: "\eff0"; }
.wpbc_icn_collections::before { content: "\e3b6"; }
.wpbc_icn_collections_bookmark::before { content: "\e431"; }
.wpbc_icn_color_lens::before { content: "\e3b7"; }
.wpbc_icn_colorize::before { content: "\e3b8"; }
.wpbc_icn_comment::before { content: "\e0b9"; }
.wpbc_icn_comment_bank::before { content: "\ea4e"; }
.wpbc_icn_comments_disabled::before { content: "\e7a2"; }
.wpbc_icn_commit::before { content: "\eaf5"; }
.wpbc_icn_commute::before { content: "\e940"; }
.wpbc_icn_compare::before { content: "\e3b9"; }
.wpbc_icn_compare_arrows::before { content: "\e915"; }
.wpbc_icn_compass_calibration::before { content: "\e57c"; }
.wpbc_icn_compost::before { content: "\e761"; }
.wpbc_icn_compress::before { content: "\e94d"; }
.wpbc_icn_computer::before { content: "\e30a"; }
.wpbc_icn_confirmation_num::before { content: "\e638"; }
.wpbc_icn_confirmation_number::before { content: "\e638"; }
.wpbc_icn_connect_without_contact::before { content: "\f223"; }
.wpbc_icn_connected_tv::before { content: "\e998"; }
.wpbc_icn_connecting_airports::before { content: "\e7c9"; }
.wpbc_icn_construction::before { content: "\ea3c"; }
.wpbc_icn_contact_mail::before { content: "\e0d0"; }
.wpbc_icn_contact_page::before { content: "\f22e"; }
.wpbc_icn_contact_phone::before { content: "\e0cf"; }
.wpbc_icn_contact_support::before { content: "\e94c"; }
.wpbc_icn_contactless::before { content: "\ea71"; }
.wpbc_icn_contacts::before { content: "\e0ba"; }
.wpbc_icn_content_copy::before { content: "\e14d"; }
.wpbc_icn_content_cut::before { content: "\e14e"; }
.wpbc_icn_content_paste::before { content: "\e14f"; }
.wpbc_icn_content_paste_go::before { content: "\ea8e"; }
.wpbc_icn_content_paste_off::before { content: "\e4f8"; }
.wpbc_icn_content_paste_search::before { content: "\ea9b"; }
.wpbc_icn_contrast::before { content: "\eb37"; }
.wpbc_icn_control_camera::before { content: "\e074"; }
.wpbc_icn_control_point::before { content: "\e3ba"; }
.wpbc_icn_control_point_duplicate::before { content: "\e3bb"; }
.wpbc_icn_cookie::before { content: "\eaac"; }
.wpbc_icn_copy_all::before { content: "\e2ec"; }
.wpbc_icn_copyright::before { content: "\e90c"; }
.wpbc_icn_coronavirus::before { content: "\f221"; }
.wpbc_icn_corporate_fare::before { content: "\f1d0"; }
.wpbc_icn_cottage::before { content: "\e587"; }
.wpbc_icn_countertops::before { content: "\f1f7"; }
.wpbc_icn_create::before { content: "\e150"; }
.wpbc_icn_create_new_folder::before { content: "\e2cc"; }
.wpbc_icn_credit_card::before { content: "\e870"; }
.wpbc_icn_credit_card_off::before { content: "\e4f4"; }
.wpbc_icn_credit_score::before { content: "\eff1"; }
.wpbc_icn_crib::before { content: "\e588"; }
.wpbc_icn_crisis_alert::before { content: "\ebe9"; }
.wpbc_icn_crop::before { content: "\e3be"; }
.wpbc_icn_crop_16_9::before { content: "\e3bc"; }
.wpbc_icn_crop_3_2::before { content: "\e3bd"; }
.wpbc_icn_crop_5_4::before { content: "\e3bf"; }
.wpbc_icn_crop_7_5::before { content: "\e3c0"; }
.wpbc_icn_crop_din::before { content: "\e3c1"; }
.wpbc_icn_crop_free::before { content: "\e3c2"; }
.wpbc_icn_crop_landscape::before { content: "\e3c3"; }
.wpbc_icn_crop_original::before { content: "\e3c4"; }
.wpbc_icn_crop_portrait::before { content: "\e3c5"; }
.wpbc_icn_crop_rotate::before { content: "\e437"; }
.wpbc_icn_crop_square::before { content: "\e3c6"; }
.wpbc_icn_cruelty_free::before { content: "\e799"; }
.wpbc_icn_css::before { content: "\eb93"; }
.wpbc_icn_currency_bitcoin::before { content: "\ebc5"; }
.wpbc_icn_currency_exchange::before { content: "\eb70"; }
.wpbc_icn_currency_franc::before { content: "\eafa"; }
.wpbc_icn_currency_lira::before { content: "\eaef"; }
.wpbc_icn_currency_pound::before { content: "\eaf1"; }
.wpbc_icn_currency_ruble::before { content: "\eaec"; }
.wpbc_icn_currency_rupee::before { content: "\eaf7"; }
.wpbc_icn_currency_yen::before { content: "\eafb"; }
.wpbc_icn_currency_yuan::before { content: "\eaf9"; }
.wpbc_icn_curtains::before { content: "\ec1e"; }
.wpbc_icn_curtains_closed::before { content: "\ec1d"; }
.wpbc_icn_cyclone::before { content: "\ebd5"; }
.wpbc_icn_dangerous::before { content: "\e99a"; }
.wpbc_icn_dark_mode::before { content: "\e51c"; }
.wpbc_icn_dashboard::before { content: "\e871"; }
.wpbc_icn_dashboard_customize::before { content: "\e99b"; }
.wpbc_icn_data_array::before { content: "\ead1"; }
.wpbc_icn_data_exploration::before { content: "\e76f"; }
.wpbc_icn_data_object::before { content: "\ead3"; }
.wpbc_icn_data_saver_off::before { content: "\eff2"; }
.wpbc_icn_data_saver_on::before { content: "\eff3"; }
.wpbc_icn_data_thresholding::before { content: "\eb9f"; }
.wpbc_icn_data_usage::before { content: "\e1af"; }
.wpbc_icn_date_range::before { content: "\e916"; }
.wpbc_icn_deblur::before { content: "\eb77"; }
.wpbc_icn_deck::before { content: "\ea42"; }
.wpbc_icn_dehaze::before { content: "\e3c7"; }
.wpbc_icn_delete::before { content: "\e872"; }
.wpbc_icn_delete_forever::before { content: "\e92b"; }
.wpbc_icn_delete_outline::before { content: "\e92e"; }
.wpbc_icn_delete_sweep::before { content: "\e16c"; }
.wpbc_icn_delivery_dining::before { content: "\ea72"; }
.wpbc_icn_density_large::before { content: "\eba9"; }
.wpbc_icn_density_medium::before { content: "\eb9e"; }
.wpbc_icn_density_small::before { content: "\eba8"; }
.wpbc_icn_departure_board::before { content: "\e576"; }
.wpbc_icn_description::before { content: "\e873"; }
.wpbc_icn_deselect::before { content: "\ebb6"; }
.wpbc_icn_design_services::before { content: "\f10a"; }
.wpbc_icn_desktop_access_disabled::before { content: "\e99d"; }
.wpbc_icn_desktop_mac::before { content: "\e30b"; }
.wpbc_icn_desktop_windows::before { content: "\e30c"; }
.wpbc_icn_details::before { content: "\e3c8"; }
.wpbc_icn_developer_board::before { content: "\e30d"; }
.wpbc_icn_developer_board_off::before { content: "\e4ff"; }
.wpbc_icn_developer_mode::before { content: "\e1b0"; }
.wpbc_icn_device_hub::before { content: "\e335"; }
.wpbc_icn_device_thermostat::before { content: "\e1ff"; }
.wpbc_icn_device_unknown::before { content: "\e339"; }
.wpbc_icn_devices::before { content: "\e1b1"; }
.wpbc_icn_devices_fold::before { content: "\ebde"; }
.wpbc_icn_devices_other::before { content: "\e337"; }
.wpbc_icn_dialer_sip::before { content: "\e0bb"; }
.wpbc_icn_dialpad::before { content: "\e0bc"; }
.wpbc_icn_diamond::before { content: "\ead5"; }
.wpbc_icn_difference::before { content: "\eb7d"; }
.wpbc_icn_dining::before { content: "\eff4"; }
.wpbc_icn_dinner_dining::before { content: "\ea57"; }
.wpbc_icn_directions::before { content: "\e52e"; }
.wpbc_icn_directions_bike::before { content: "\e52f"; }
.wpbc_icn_directions_boat::before { content: "\e532"; }
.wpbc_icn_directions_boat_filled::before { content: "\eff5"; }
.wpbc_icn_directions_bus::before { content: "\e530"; }
.wpbc_icn_directions_bus_filled::before { content: "\eff6"; }
.wpbc_icn_directions_car::before { content: "\e531"; }
.wpbc_icn_directions_car_filled::before { content: "\eff7"; }
.wpbc_icn_directions_ferry::before { content: "\e532"; }
.wpbc_icn_directions_off::before { content: "\f10f"; }
.wpbc_icn_directions_railway::before { content: "\e534"; }
.wpbc_icn_directions_railway_filled::before { content: "\eff8"; }
.wpbc_icn_directions_run::before { content: "\e566"; }
.wpbc_icn_directions_subway::before { content: "\e533"; }
.wpbc_icn_directions_subway_filled::before { content: "\eff9"; }
.wpbc_icn_directions_train::before { content: "\e534"; }
.wpbc_icn_directions_transit::before { content: "\e535"; }
.wpbc_icn_directions_transit_filled::before { content: "\effa"; }
.wpbc_icn_directions_walk::before { content: "\e536"; }
.wpbc_icn_dirty_lens::before { content: "\ef4b"; }
.wpbc_icn_disabled_by_default::before { content: "\f230"; }
.wpbc_icn_disabled_visible::before { content: "\e76e"; }
.wpbc_icn_disc_full::before { content: "\e610"; }
.wpbc_icn_discord::before { content: "\ea6c"; }
.wpbc_icn_discount::before { content: "\ebc9"; }
.wpbc_icn_display_settings::before { content: "\eb97"; }
.wpbc_icn_dnd_forwardslash::before { content: "\e611"; }
.wpbc_icn_dns::before { content: "\e875"; }
.wpbc_icn_do_disturb::before { content: "\f08c"; }
.wpbc_icn_do_disturb_alt::before { content: "\f08d"; }
.wpbc_icn_do_disturb_off::before { content: "\f08e"; }
.wpbc_icn_do_disturb_on::before { content: "\f08f"; }
.wpbc_icn_do_not_disturb::before { content: "\e612"; }
.wpbc_icn_do_not_disturb_alt::before { content: "\e611"; }
.wpbc_icn_do_not_disturb_off::before { content: "\e643"; }
.wpbc_icn_do_not_disturb_on::before { content: "\e644"; }
.wpbc_icn_do_not_disturb_on_total_silence::before { content: "\effb"; }
.wpbc_icn_do_not_step::before { content: "\f19f"; }
.wpbc_icn_do_not_touch::before { content: "\f1b0"; }
.wpbc_icn_dock::before { content: "\e30e"; }
.wpbc_icn_document_scanner::before { content: "\e5fa"; }
.wpbc_icn_domain::before { content: "\e7ee"; }
.wpbc_icn_domain_add::before { content: "\eb62"; }
.wpbc_icn_domain_disabled::before { content: "\e0ef"; }
.wpbc_icn_domain_verification::before { content: "\ef4c"; }
.wpbc_icn_done::before { content: "\e876"; }
.wpbc_icn_done_all::before { content: "\e877"; }
.wpbc_icn_done_outline::before { content: "\e92f"; }
.wpbc_icn_donut_large::before { content: "\e917"; }
.wpbc_icn_donut_small::before { content: "\e918"; }
.wpbc_icn_door_back::before { content: "\effc"; }
.wpbc_icn_door_front::before { content: "\effd"; }
.wpbc_icn_door_sliding::before { content: "\effe"; }
.wpbc_icn_doorbell::before { content: "\efff"; }
.wpbc_icn_double_arrow::before { content: "\ea50"; }
.wpbc_icn_downhill_skiing::before { content: "\e509"; }
.wpbc_icn_download::before { content: "\f090"; }
.wpbc_icn_download_done::before { content: "\f091"; }
.wpbc_icn_download_for_offline::before { content: "\f000"; }
.wpbc_icn_downloading::before { content: "\f001"; }
.wpbc_icn_drafts::before { content: "\e151"; }
.wpbc_icn_drag_handle::before { content: "\e25d"; }
.wpbc_icn_drag_indicator::before { content: "\e945"; }
.wpbc_icn_draw::before { content: "\e746"; }
.wpbc_icn_drive_eta::before { content: "\e613"; }
.wpbc_icn_drive_file_move::before { content: "\e675"; }
.wpbc_icn_drive_file_move_outline::before { content: "\e9a1"; }
.wpbc_icn_drive_file_move_rtl::before { content: "\e76d"; }
.wpbc_icn_drive_file_rename_outline::before { content: "\e9a2"; }
.wpbc_icn_drive_folder_upload::before { content: "\e9a3"; }
.wpbc_icn_dry::before { content: "\f1b3"; }
.wpbc_icn_dry_cleaning::before { content: "\ea58"; }
.wpbc_icn_duo::before { content: "\e9a5"; }
.wpbc_icn_dvr::before { content: "\e1b2"; }
.wpbc_icn_dynamic_feed::before { content: "\ea14"; }
.wpbc_icn_dynamic_form::before { content: "\f1bf"; }
.wpbc_icn_e_mobiledata::before { content: "\f002"; }
.wpbc_icn_earbuds::before { content: "\f003"; }
.wpbc_icn_earbuds_battery::before { content: "\f004"; }
.wpbc_icn_east::before { content: "\f1df"; }
.wpbc_icn_eco::before { content: "\ea35"; }
.wpbc_icn_edgesensor_high::before { content: "\f005"; }
.wpbc_icn_edgesensor_low::before { content: "\f006"; }
.wpbc_icn_edit::before { content: "\e3c9"; }
.wpbc_icn_edit_attributes::before { content: "\e578"; }
.wpbc_icn_edit_calendar::before { content: "\e742"; }
.wpbc_icn_edit_location::before { content: "\e568"; }
.wpbc_icn_edit_location_alt::before { content: "\e1c5"; }
.wpbc_icn_edit_note::before { content: "\e745"; }
.wpbc_icn_edit_notifications::before { content: "\e525"; }
.wpbc_icn_edit_off::before { content: "\e950"; }
.wpbc_icn_edit_road::before { content: "\ef4d"; }
.wpbc_icn_egg::before { content: "\eacc"; }
.wpbc_icn_egg_alt::before { content: "\eac8"; }
.wpbc_icn_eject::before { content: "\e8fb"; }
.wpbc_icn_elderly::before { content: "\f21a"; }
.wpbc_icn_elderly_woman::before { content: "\eb69"; }
.wpbc_icn_electric_bike::before { content: "\eb1b"; }
.wpbc_icn_electric_bolt::before { content: "\ec1c"; }
.wpbc_icn_electric_car::before { content: "\eb1c"; }
.wpbc_icn_electric_meter::before { content: "\ec1b"; }
.wpbc_icn_electric_moped::before { content: "\eb1d"; }
.wpbc_icn_electric_rickshaw::before { content: "\eb1e"; }
.wpbc_icn_electric_scooter::before { content: "\eb1f"; }
.wpbc_icn_electrical_services::before { content: "\f102"; }
.wpbc_icn_elevator::before { content: "\f1a0"; }
.wpbc_icn_email::before { content: "\e0be"; }
.wpbc_icn_emergency::before { content: "\e1eb"; }
.wpbc_icn_emergency_recording::before { content: "\ebf4"; }
.wpbc_icn_emergency_share::before { content: "\ebf6"; }
.wpbc_icn_emoji_emotions::before { content: "\ea22"; }
.wpbc_icn_emoji_events::before { content: "\ea23"; }
.wpbc_icn_emoji_flags::before { content: "\ea1a"; }
.wpbc_icn_emoji_food_beverage::before { content: "\ea1b"; }
.wpbc_icn_emoji_nature::before { content: "\ea1c"; }
.wpbc_icn_emoji_objects::before { content: "\ea24"; }
.wpbc_icn_emoji_people::before { content: "\ea1d"; }
.wpbc_icn_emoji_symbols::before { content: "\ea1e"; }
.wpbc_icn_emoji_transportation::before { content: "\ea1f"; }
.wpbc_icn_energy_savings_leaf::before { content: "\ec1a"; }
.wpbc_icn_engineering::before { content: "\ea3d"; }
.wpbc_icn_enhance_photo_translate::before { content: "\e8fc"; }
.wpbc_icn_enhanced_encryption::before { content: "\e63f"; }
.wpbc_icn_equalizer::before { content: "\e01d"; }
.wpbc_icn_error::before { content: "\e000"; }
.wpbc_icn_error_outline::before { content: "\e001"; }
.wpbc_icn_escalator::before { content: "\f1a1"; }
.wpbc_icn_escalator_warning::before { content: "\f1ac"; }
.wpbc_icn_euro::before { content: "\ea15"; }
.wpbc_icn_euro_symbol::before { content: "\e926"; }
.wpbc_icn_ev_station::before { content: "\e56d"; }
.wpbc_icn_event::before { content: "\e878"; }
.wpbc_icn_event_available::before { content: "\e614"; }
.wpbc_icn_event_busy::before { content: "\e615"; }
.wpbc_icn_event_note::before { content: "\e616"; }
.wpbc_icn_event_repeat::before { content: "\eb7b"; }
.wpbc_icn_event_seat::before { content: "\e903"; }
.wpbc_icn_exit_to_app::before { content: "\e879"; }
.wpbc_icn_expand::before { content: "\e94f"; }
.wpbc_icn_expand_circle_down::before { content: "\e7cd"; }
.wpbc_icn_expand_less::before { content: "\e5ce"; }
.wpbc_icn_expand_more::before { content: "\e5cf"; }
.wpbc_icn_explicit::before { content: "\e01e"; }
.wpbc_icn_explore::before { content: "\e87a"; }
.wpbc_icn_explore_off::before { content: "\e9a8"; }
.wpbc_icn_exposure::before { content: "\e3ca"; }
.wpbc_icn_exposure_minus_1::before { content: "\e3cb"; }
.wpbc_icn_exposure_minus_2::before { content: "\e3cc"; }
.wpbc_icn_exposure_neg_1::before { content: "\e3cb"; }
.wpbc_icn_exposure_neg_2::before { content: "\e3cc"; }
.wpbc_icn_exposure_plus_1::before { content: "\e3cd"; }
.wpbc_icn_exposure_plus_2::before { content: "\e3ce"; }
.wpbc_icn_exposure_zero::before { content: "\e3cf"; }
.wpbc_icn_extension::before { content: "\e87b"; }
.wpbc_icn_extension_off::before { content: "\e4f5"; }
.wpbc_icn_face::before { content: "\e87c"; }
.wpbc_icn_face_retouching_natural::before { content: "\ef4e"; }
.wpbc_icn_face_retouching_off::before { content: "\f007"; }
.wpbc_icn_facebook::before { content: "\f234"; }
.wpbc_icn_fact_check::before { content: "\f0c5"; }
.wpbc_icn_factory::before { content: "\ebbc"; }
.wpbc_icn_family_restroom::before { content: "\f1a2"; }
.wpbc_icn_fast_forward::before { content: "\e01f"; }
.wpbc_icn_fast_rewind::before { content: "\e020"; }
.wpbc_icn_fastfood::before { content: "\e57a"; }
.wpbc_icn_favorite::before { content: "\e87d"; }
.wpbc_icn_favorite_border::before { content: "\e87e"; }
.wpbc_icn_favorite_outline::before { content: "\e87e"; }
.wpbc_icn_fax::before { content: "\ead8"; }
.wpbc_icn_featured_play_list::before { content: "\e06d"; }
.wpbc_icn_featured_video::before { content: "\e06e"; }
.wpbc_icn_feed::before { content: "\f009"; }
.wpbc_icn_feedback::before { content: "\e87f"; }
.wpbc_icn_female::before { content: "\e590"; }
.wpbc_icn_fence::before { content: "\f1f6"; }
.wpbc_icn_festival::before { content: "\ea68"; }
.wpbc_icn_fiber_dvr::before { content: "\e05d"; }
.wpbc_icn_fiber_manual_record::before { content: "\e061"; }
.wpbc_icn_fiber_new::before { content: "\e05e"; }
.wpbc_icn_fiber_pin::before { content: "\e06a"; }
.wpbc_icn_fiber_smart_record::before { content: "\e062"; }
.wpbc_icn_file_copy::before { content: "\e173"; }
.wpbc_icn_file_download::before { content: "\e2c4"; }
.wpbc_icn_file_download_done::before { content: "\e9aa"; }
.wpbc_icn_file_download_off::before { content: "\e4fe"; }
.wpbc_icn_file_open::before { content: "\eaf3"; }
.wpbc_icn_file_present::before { content: "\ea0e"; }
.wpbc_icn_file_upload::before { content: "\e2c6"; }
.wpbc_icn_filter::before { content: "\e3d3"; }
.wpbc_icn_filter_1::before { content: "\e3d0"; }
.wpbc_icn_filter_2::before { content: "\e3d1"; }
.wpbc_icn_filter_3::before { content: "\e3d2"; }
.wpbc_icn_filter_4::before { content: "\e3d4"; }
.wpbc_icn_filter_5::before { content: "\e3d5"; }
.wpbc_icn_filter_6::before { content: "\e3d6"; }
.wpbc_icn_filter_7::before { content: "\e3d7"; }
.wpbc_icn_filter_8::before { content: "\e3d8"; }
.wpbc_icn_filter_9::before { content: "\e3d9"; }
.wpbc_icn_filter_9_plus::before { content: "\e3da"; }
.wpbc_icn_filter_alt::before { content: "\ef4f"; }
.wpbc_icn_filter_alt_off::before { content: "\eb32"; }
.wpbc_icn_filter_b_and_w::before { content: "\e3db"; }
.wpbc_icn_filter_center_focus::before { content: "\e3dc"; }
.wpbc_icn_filter_drama::before { content: "\e3dd"; }
.wpbc_icn_filter_frames::before { content: "\e3de"; }
.wpbc_icn_filter_hdr::before { content: "\e3df"; }
.wpbc_icn_filter_list::before { content: "\e152"; }
.wpbc_icn_filter_list_alt::before { content: "\e94e"; }
.wpbc_icn_filter_list_off::before { content: "\eb57"; }
.wpbc_icn_filter_none::before { content: "\e3e0"; }
.wpbc_icn_filter_tilt_shift::before { content: "\e3e2"; }
.wpbc_icn_filter_vintage::before { content: "\e3e3"; }
.wpbc_icn_find_in_page::before { content: "\e880"; }
.wpbc_icn_find_replace::before { content: "\e881"; }
.wpbc_icn_fingerprint::before { content: "\e90d"; }
.wpbc_icn_fire_extinguisher::before { content: "\f1d8"; }
.wpbc_icn_fire_hydrant::before { content: "\f1a3"; }
.wpbc_icn_fireplace::before { content: "\ea43"; }
.wpbc_icn_first_page::before { content: "\e5dc"; }
.wpbc_icn_fit_screen::before { content: "\ea10"; }
.wpbc_icn_fitbit::before { content: "\e82b"; }
.wpbc_icn_fitness_center::before { content: "\eb43"; }
.wpbc_icn_flag::before { content: "\e153"; }
.wpbc_icn_flag_circle::before { content: "\eaf8"; }
.wpbc_icn_flaky::before { content: "\ef50"; }
.wpbc_icn_flare::before { content: "\e3e4"; }
.wpbc_icn_flash_auto::before { content: "\e3e5"; }
.wpbc_icn_flash_off::before { content: "\e3e6"; }
.wpbc_icn_flash_on::before { content: "\e3e7"; }
.wpbc_icn_flashlight_off::before { content: "\f00a"; }
.wpbc_icn_flashlight_on::before { content: "\f00b"; }
.wpbc_icn_flatware::before { content: "\f00c"; }
.wpbc_icn_flight::before { content: "\e539"; }
.wpbc_icn_flight_class::before { content: "\e7cb"; }
.wpbc_icn_flight_land::before { content: "\e904"; }
.wpbc_icn_flight_takeoff::before { content: "\e905"; }
.wpbc_icn_flip::before { content: "\e3e8"; }
.wpbc_icn_flip_camera_android::before { content: "\ea37"; }
.wpbc_icn_flip_camera_ios::before { content: "\ea38"; }
.wpbc_icn_flip_to_back::before { content: "\e882"; }
.wpbc_icn_flip_to_front::before { content: "\e883"; }
.wpbc_icn_flood::before { content: "\ebe6"; }
.wpbc_icn_flourescent::before { content: "\f00d"; }
.wpbc_icn_flutter_dash::before { content: "\e00b"; }
.wpbc_icn_fmd_bad::before { content: "\f00e"; }
.wpbc_icn_fmd_good::before { content: "\f00f"; }
.wpbc_icn_foggy::before { content: "\e818"; }
.wpbc_icn_folder::before { content: "\e2c7"; }
.wpbc_icn_folder_copy::before { content: "\ebbd"; }
.wpbc_icn_folder_delete::before { content: "\eb34"; }
.wpbc_icn_folder_off::before { content: "\eb83"; }
.wpbc_icn_folder_open::before { content: "\e2c8"; }
.wpbc_icn_folder_shared::before { content: "\e2c9"; }
.wpbc_icn_folder_special::before { content: "\e617"; }
.wpbc_icn_folder_zip::before { content: "\eb2c"; }
.wpbc_icn_follow_the_signs::before { content: "\f222"; }
.wpbc_icn_font_download::before { content: "\e167"; }
.wpbc_icn_font_download_off::before { content: "\e4f9"; }
.wpbc_icn_food_bank::before { content: "\f1f2"; }
.wpbc_icn_forest::before { content: "\ea99"; }
.wpbc_icn_fork_left::before { content: "\eba0"; }
.wpbc_icn_fork_right::before { content: "\ebac"; }
.wpbc_icn_format_align_center::before { content: "\e234"; }
.wpbc_icn_format_align_justify::before { content: "\e235"; }
.wpbc_icn_format_align_left::before { content: "\e236"; }
.wpbc_icn_format_align_right::before { content: "\e237"; }
.wpbc_icn_format_bold::before { content: "\e238"; }
.wpbc_icn_format_clear::before { content: "\e239"; }
.wpbc_icn_format_color_fill::before { content: "\e23a"; }
.wpbc_icn_format_color_reset::before { content: "\e23b"; }
.wpbc_icn_format_color_text::before { content: "\e23c"; }
.wpbc_icn_format_indent_decrease::before { content: "\e23d"; }
.wpbc_icn_format_indent_increase::before { content: "\e23e"; }
.wpbc_icn_format_italic::before { content: "\e23f"; }
.wpbc_icn_format_line_spacing::before { content: "\e240"; }
.wpbc_icn_format_list_bulleted::before { content: "\e241"; }
.wpbc_icn_format_list_numbered::before { content: "\e242"; }
.wpbc_icn_format_list_numbered_rtl::before { content: "\e267"; }
.wpbc_icn_format_overline::before { content: "\eb65"; }
.wpbc_icn_format_paint::before { content: "\e243"; }
.wpbc_icn_format_quote::before { content: "\e244"; }
.wpbc_icn_format_shapes::before { content: "\e25e"; }
.wpbc_icn_format_size::before { content: "\e245"; }
.wpbc_icn_format_strikethrough::before { content: "\e246"; }
.wpbc_icn_format_textdirection_l_to_r::before { content: "\e247"; }
.wpbc_icn_format_textdirection_r_to_l::before { content: "\e248"; }
.wpbc_icn_format_underline::before { content: "\e249"; }
.wpbc_icn_format_underlined::before { content: "\e249"; }
.wpbc_icn_fort::before { content: "\eaad"; }
.wpbc_icn_forum::before { content: "\e0bf"; }
.wpbc_icn_forward::before { content: "\e154"; }
.wpbc_icn_forward_10::before { content: "\e056"; }
.wpbc_icn_forward_30::before { content: "\e057"; }
.wpbc_icn_forward_5::before { content: "\e058"; }
.wpbc_icn_forward_to_inbox::before { content: "\f187"; }
.wpbc_icn_foundation::before { content: "\f200"; }
.wpbc_icn_free_breakfast::before { content: "\eb44"; }
.wpbc_icn_free_cancellation::before { content: "\e748"; }
.wpbc_icn_front_hand::before { content: "\e769"; }
.wpbc_icn_fullscreen::before { content: "\e5d0"; }
.wpbc_icn_fullscreen_exit::before { content: "\e5d1"; }
.wpbc_icn_functions::before { content: "\e24a"; }
.wpbc_icn_g_mobiledata::before { content: "\f010"; }
.wpbc_icn_g_translate::before { content: "\e927"; }
.wpbc_icn_gamepad::before { content: "\e30f"; }
.wpbc_icn_games::before { content: "\e021"; }
.wpbc_icn_garage::before { content: "\f011"; }
.wpbc_icn_gas_meter::before { content: "\ec19"; }
.wpbc_icn_gavel::before { content: "\e90e"; }
.wpbc_icn_generating_tokens::before { content: "\e749"; }
.wpbc_icn_gesture::before { content: "\e155"; }
.wpbc_icn_get_app::before { content: "\e884"; }
.wpbc_icn_gif::before { content: "\e908"; }
.wpbc_icn_gif_box::before { content: "\e7a3"; }
.wpbc_icn_girl::before { content: "\eb68"; }
.wpbc_icn_gite::before { content: "\e58b"; }
.wpbc_icn_goat::before { content: "\10fffd"; }
.wpbc_icn_golf_course::before { content: "\eb45"; }
.wpbc_icn_gpp_bad::before { content: "\f012"; }
.wpbc_icn_gpp_good::before { content: "\f013"; }
.wpbc_icn_gpp_maybe::before { content: "\f014"; }
.wpbc_icn_gps_fixed::before { content: "\e1b3"; }
.wpbc_icn_gps_not_fixed::before { content: "\e1b4"; }
.wpbc_icn_gps_off::before { content: "\e1b5"; }
.wpbc_icn_grade::before { content: "\e885"; }
.wpbc_icn_gradient::before { content: "\e3e9"; }
.wpbc_icn_grading::before { content: "\ea4f"; }
.wpbc_icn_grain::before { content: "\e3ea"; }
.wpbc_icn_graphic_eq::before { content: "\e1b8"; }
.wpbc_icn_grass::before { content: "\f205"; }
.wpbc_icn_grid_3x3::before { content: "\f015"; }
.wpbc_icn_grid_4x4::before { content: "\f016"; }
.wpbc_icn_grid_goldenratio::before { content: "\f017"; }
.wpbc_icn_grid_off::before { content: "\e3eb"; }
.wpbc_icn_grid_on::before { content: "\e3ec"; }
.wpbc_icn_grid_view::before { content: "\e9b0"; }
.wpbc_icn_group::before { content: "\e7ef"; }
.wpbc_icn_group_add::before { content: "\e7f0"; }
.wpbc_icn_group_off::before { content: "\e747"; }
.wpbc_icn_group_remove::before { content: "\e7ad"; }
.wpbc_icn_group_work::before { content: "\e886"; }
.wpbc_icn_groups::before { content: "\f233"; }
.wpbc_icn_h_mobiledata::before { content: "\f018"; }
.wpbc_icn_h_plus_mobiledata::before { content: "\f019"; }
.wpbc_icn_hail::before { content: "\e9b1"; }
.wpbc_icn_handshake::before { content: "\ebcb"; }
.wpbc_icn_handyman::before { content: "\f10b"; }
.wpbc_icn_hardware::before { content: "\ea59"; }
.wpbc_icn_hd::before { content: "\e052"; }
.wpbc_icn_hdr_auto::before { content: "\f01a"; }
.wpbc_icn_hdr_auto_select::before { content: "\f01b"; }
.wpbc_icn_hdr_enhanced_select::before { content: "\ef51"; }
.wpbc_icn_hdr_off::before { content: "\e3ed"; }
.wpbc_icn_hdr_off_select::before { content: "\f01c"; }
.wpbc_icn_hdr_on::before { content: "\e3ee"; }
.wpbc_icn_hdr_on_select::before { content: "\f01d"; }
.wpbc_icn_hdr_plus::before { content: "\f01e"; }
.wpbc_icn_hdr_strong::before { content: "\e3f1"; }
.wpbc_icn_hdr_weak::before { content: "\e3f2"; }
.wpbc_icn_headphones::before { content: "\f01f"; }
.wpbc_icn_headphones_battery::before { content: "\f020"; }
.wpbc_icn_headset::before { content: "\e310"; }
.wpbc_icn_headset_mic::before { content: "\e311"; }
.wpbc_icn_headset_off::before { content: "\e33a"; }
.wpbc_icn_healing::before { content: "\e3f3"; }
.wpbc_icn_health_and_safety::before { content: "\e1d5"; }
.wpbc_icn_hearing::before { content: "\e023"; }
.wpbc_icn_hearing_disabled::before { content: "\f104"; }
.wpbc_icn_heart_broken::before { content: "\eac2"; }
.wpbc_icn_heat_pump::before { content: "\ec18"; }
.wpbc_icn_height::before { content: "\ea16"; }
.wpbc_icn_help::before { content: "\e887"; }
.wpbc_icn_help_center::before { content: "\f1c0"; }
.wpbc_icn_help_outline::before { content: "\e8fd"; }
.wpbc_icn_hevc::before { content: "\f021"; }
.wpbc_icn_hexagon::before { content: "\eb39"; }
.wpbc_icn_hide_image::before { content: "\f022"; }
.wpbc_icn_hide_source::before { content: "\f023"; }
.wpbc_icn_high_quality::before { content: "\e024"; }
.wpbc_icn_highlight::before { content: "\e25f"; }
.wpbc_icn_highlight_alt::before { content: "\ef52"; }
.wpbc_icn_highlight_off::before { content: "\e888"; }
.wpbc_icn_highlight_remove::before { content: "\e888"; }
.wpbc_icn_hiking::before { content: "\e50a"; }
.wpbc_icn_history::before { content: "\e889"; }
.wpbc_icn_history_edu::before { content: "\ea3e"; }
.wpbc_icn_history_toggle_off::before { content: "\f17d"; }
.wpbc_icn_hive::before { content: "\eaa6"; }
.wpbc_icn_hls::before { content: "\eb8a"; }
.wpbc_icn_hls_off::before { content: "\eb8c"; }
.wpbc_icn_holiday_village::before { content: "\e58a"; }
.wpbc_icn_home::before { content: "\e88a"; }
.wpbc_icn_home_filled::before { content: "\e9b2"; }
.wpbc_icn_home_max::before { content: "\f024"; }
.wpbc_icn_home_mini::before { content: "\f025"; }
.wpbc_icn_home_repair_service::before { content: "\f100"; }
.wpbc_icn_home_work::before { content: "\ea09"; }
.wpbc_icn_horizontal_distribute::before { content: "\e014"; }
.wpbc_icn_horizontal_rule::before { content: "\f108"; }
.wpbc_icn_horizontal_split::before { content: "\e947"; }
.wpbc_icn_hot_tub::before { content: "\eb46"; }
.wpbc_icn_hotel::before { content: "\e53a"; }
.wpbc_icn_hotel_class::before { content: "\e743"; }
.wpbc_icn_hourglass_bottom::before { content: "\ea5c"; }
.wpbc_icn_hourglass_disabled::before { content: "\ef53"; }
.wpbc_icn_hourglass_empty::before { content: "\e88b"; }
.wpbc_icn_hourglass_full::before { content: "\e88c"; }
.wpbc_icn_hourglass_top::before { content: "\ea5b"; }
.wpbc_icn_house::before { content: "\ea44"; }
.wpbc_icn_house_siding::before { content: "\f202"; }
.wpbc_icn_houseboat::before { content: "\e584"; }
.wpbc_icn_how_to_reg::before { content: "\e174"; }
.wpbc_icn_how_to_vote::before { content: "\e175"; }
.wpbc_icn_html::before { content: "\eb7e"; }
.wpbc_icn_http::before { content: "\e902"; }
.wpbc_icn_https::before { content: "\e88d"; }
.wpbc_icn_hub::before { content: "\e9f4"; }
.wpbc_icn_hvac::before { content: "\f10e"; }
.wpbc_icn_ice_skating::before { content: "\e50b"; }
.wpbc_icn_icecream::before { content: "\ea69"; }
.wpbc_icn_image::before { content: "\e3f4"; }
.wpbc_icn_image_aspect_ratio::before { content: "\e3f5"; }
.wpbc_icn_image_not_supported::before { content: "\f116"; }
.wpbc_icn_image_search::before { content: "\e43f"; }
.wpbc_icn_imagesearch_roller::before { content: "\e9b4"; }
.wpbc_icn_import_contacts::before { content: "\e0e0"; }
.wpbc_icn_import_export::before { content: "\e0c3"; }
.wpbc_icn_important_devices::before { content: "\e912"; }
.wpbc_icn_inbox::before { content: "\e156"; }
.wpbc_icn_incomplete_circle::before { content: "\e79b"; }
.wpbc_icn_indeterminate_check_box::before { content: "\e909"; }
.wpbc_icn_info::before { content: "\e88e"; }
.wpbc_icn_info_outline::before { content: "\e88f"; }
.wpbc_icn_input::before { content: "\e890"; }
.wpbc_icn_insert_chart::before { content: "\e24b"; }
.wpbc_icn_insert_chart_outlined::before { content: "\e26a"; }
.wpbc_icn_insert_comment::before { content: "\e24c"; }
.wpbc_icn_insert_drive_file::before { content: "\e24d"; }
.wpbc_icn_insert_emoticon::before { content: "\e24e"; }
.wpbc_icn_insert_invitation::before { content: "\e24f"; }
.wpbc_icn_insert_link::before { content: "\e250"; }
.wpbc_icn_insert_page_break::before { content: "\eaca"; }
.wpbc_icn_insert_photo::before { content: "\e251"; }
.wpbc_icn_insights::before { content: "\f092"; }
.wpbc_icn_install_desktop::before { content: "\eb71"; }
.wpbc_icn_install_mobile::before { content: "\eb72"; }
.wpbc_icn_integration_instructions::before { content: "\ef54"; }
.wpbc_icn_interests::before { content: "\e7c8"; }
.wpbc_icn_interpreter_mode::before { content: "\e83b"; }
.wpbc_icn_inventory::before { content: "\e179"; }
.wpbc_icn_inventory_2::before { content: "\e1a1"; }
.wpbc_icn_invert_colors::before { content: "\e891"; }
.wpbc_icn_invert_colors_off::before { content: "\e0c4"; }
.wpbc_icn_invert_colors_on::before { content: "\e891"; }
.wpbc_icn_ios_share::before { content: "\e6b8"; }
.wpbc_icn_iron::before { content: "\e583"; }
.wpbc_icn_iso::before { content: "\e3f6"; }
.wpbc_icn_javascript::before { content: "\eb7c"; }
.wpbc_icn_join_full::before { content: "\eaeb"; }
.wpbc_icn_join_inner::before { content: "\eaf4"; }
.wpbc_icn_join_left::before { content: "\eaf2"; }
.wpbc_icn_join_right::before { content: "\eaea"; }
.wpbc_icn_kayaking::before { content: "\e50c"; }
.wpbc_icn_kebab_dining::before { content: "\e842"; }
.wpbc_icn_key::before { content: "\e73c"; }
.wpbc_icn_key_off::before { content: "\eb84"; }
.wpbc_icn_keyboard::before { content: "\e312"; }
.wpbc_icn_keyboard_alt::before { content: "\f028"; }
.wpbc_icn_keyboard_arrow_down::before { content: "\e313"; }
.wpbc_icn_keyboard_arrow_left::before { content: "\e314"; }
.wpbc_icn_keyboard_arrow_right::before { content: "\e315"; }
.wpbc_icn_keyboard_arrow_up::before { content: "\e316"; }
.wpbc_icn_keyboard_backspace::before { content: "\e317"; }
.wpbc_icn_keyboard_capslock::before { content: "\e318"; }
.wpbc_icn_keyboard_command::before { content: "\eae0"; }
.wpbc_icn_keyboard_command_key::before { content: "\eae7"; }
.wpbc_icn_keyboard_control::before { content: "\e5d3"; }
.wpbc_icn_keyboard_control_key::before { content: "\eae6"; }
.wpbc_icn_keyboard_double_arrow_down::before { content: "\ead0"; }
.wpbc_icn_keyboard_double_arrow_left::before { content: "\eac3"; }
.wpbc_icn_keyboard_double_arrow_right::before { content: "\eac9"; }
.wpbc_icn_keyboard_double_arrow_up::before { content: "\eacf"; }
.wpbc_icn_keyboard_hide::before { content: "\e31a"; }
.wpbc_icn_keyboard_option::before { content: "\eadf"; }
.wpbc_icn_keyboard_option_key::before { content: "\eae8"; }
.wpbc_icn_keyboard_return::before { content: "\e31b"; }
.wpbc_icn_keyboard_tab::before { content: "\e31c"; }
.wpbc_icn_keyboard_voice::before { content: "\e31d"; }
.wpbc_icn_king_bed::before { content: "\ea45"; }
.wpbc_icn_kitchen::before { content: "\eb47"; }
.wpbc_icn_kitesurfing::before { content: "\e50d"; }
.wpbc_icn_label::before { content: "\e892"; }
.wpbc_icn_label_important::before { content: "\e937"; }
.wpbc_icn_label_important_outline::before { content: "\e948"; }
.wpbc_icn_label_off::before { content: "\e9b6"; }
.wpbc_icn_label_outline::before { content: "\e893"; }
.wpbc_icn_lan::before { content: "\eb2f"; }
.wpbc_icn_landscape::before { content: "\e3f7"; }
.wpbc_icn_landslide::before { content: "\ebd7"; }
.wpbc_icn_language::before { content: "\e894"; }
.wpbc_icn_laptop::before { content: "\e31e"; }
.wpbc_icn_laptop_chromebook::before { content: "\e31f"; }
.wpbc_icn_laptop_mac::before { content: "\e320"; }
.wpbc_icn_laptop_windows::before { content: "\e321"; }
.wpbc_icn_last_page::before { content: "\e5dd"; }
.wpbc_icn_launch::before { content: "\e895"; }
.wpbc_icn_layers::before { content: "\e53b"; }
.wpbc_icn_layers_clear::before { content: "\e53c"; }
.wpbc_icn_leaderboard::before { content: "\f20c"; }
.wpbc_icn_leak_add::before { content: "\e3f8"; }
.wpbc_icn_leak_remove::before { content: "\e3f9"; }
.wpbc_icn_leave_bags_at_home::before { content: "\f21b"; }
.wpbc_icn_legend_toggle::before { content: "\f11b"; }
.wpbc_icn_lens::before { content: "\e3fa"; }
.wpbc_icn_lens_blur::before { content: "\f029"; }
.wpbc_icn_library_add::before { content: "\e02e"; }
.wpbc_icn_library_add_check::before { content: "\e9b7"; }
.wpbc_icn_library_books::before { content: "\e02f"; }
.wpbc_icn_library_music::before { content: "\e030"; }
.wpbc_icn_light::before { content: "\f02a"; }
.wpbc_icn_light_mode::before { content: "\e518"; }
.wpbc_icn_lightbulb::before { content: "\e0f0"; }
.wpbc_icn_lightbulb_circle::before { content: "\ebfe"; }
.wpbc_icn_lightbulb_outline::before { content: "\e90f"; }
.wpbc_icn_line_axis::before { content: "\ea9a"; }
.wpbc_icn_line_style::before { content: "\e919"; }
.wpbc_icn_line_weight::before { content: "\e91a"; }
.wpbc_icn_linear_scale::before { content: "\e260"; }
.wpbc_icn_link::before { content: "\e157"; }
.wpbc_icn_link_off::before { content: "\e16f"; }
.wpbc_icn_linked_camera::before { content: "\e438"; }
.wpbc_icn_liquor::before { content: "\ea60"; }
.wpbc_icn_list::before { content: "\e896"; }
.wpbc_icn_list_alt::before { content: "\e0ee"; }
.wpbc_icn_live_help::before { content: "\e0c6"; }
.wpbc_icn_live_tv::before { content: "\e639"; }
.wpbc_icn_living::before { content: "\f02b"; }
.wpbc_icn_local_activity::before { content: "\e53f"; }
.wpbc_icn_local_airport::before { content: "\e53d"; }
.wpbc_icn_local_atm::before { content: "\e53e"; }
.wpbc_icn_local_attraction::before { content: "\e53f"; }
.wpbc_icn_local_bar::before { content: "\e540"; }
.wpbc_icn_local_cafe::before { content: "\e541"; }
.wpbc_icn_local_car_wash::before { content: "\e542"; }
.wpbc_icn_local_convenience_store::before { content: "\e543"; }
.wpbc_icn_local_dining::before { content: "\e556"; }
.wpbc_icn_local_drink::before { content: "\e544"; }
.wpbc_icn_local_fire_department::before { content: "\ef55"; }
.wpbc_icn_local_florist::before { content: "\e545"; }
.wpbc_icn_local_gas_station::before { content: "\e546"; }
.wpbc_icn_local_grocery_store::before { content: "\e547"; }
.wpbc_icn_local_hospital::before { content: "\e548"; }
.wpbc_icn_local_hotel::before { content: "\e549"; }
.wpbc_icn_local_laundry_service::before { content: "\e54a"; }
.wpbc_icn_local_library::before { content: "\e54b"; }
.wpbc_icn_local_mall::before { content: "\e54c"; }
.wpbc_icn_local_movies::before { content: "\e54d"; }
.wpbc_icn_local_offer::before { content: "\e54e"; }
.wpbc_icn_local_parking::before { content: "\e54f"; }
.wpbc_icn_local_pharmacy::before { content: "\e550"; }
.wpbc_icn_local_phone::before { content: "\e551"; }
.wpbc_icn_local_pizza::before { content: "\e552"; }
.wpbc_icn_local_play::before { content: "\e553"; }
.wpbc_icn_local_police::before { content: "\ef56"; }
.wpbc_icn_local_post_office::before { content: "\e554"; }
.wpbc_icn_local_print_shop::before { content: "\e555"; }
.wpbc_icn_local_printshop::before { content: "\e555"; }
.wpbc_icn_local_restaurant::before { content: "\e556"; }
.wpbc_icn_local_see::before { content: "\e557"; }
.wpbc_icn_local_shipping::before { content: "\e558"; }
.wpbc_icn_local_taxi::before { content: "\e559"; }
.wpbc_icn_location_city::before { content: "\e7f1"; }
.wpbc_icn_location_disabled::before { content: "\e1b6"; }
.wpbc_icn_location_history::before { content: "\e55a"; }
.wpbc_icn_location_off::before { content: "\e0c7"; }
.wpbc_icn_location_on::before { content: "\e0c8"; }
.wpbc_icn_location_pin::before { content: "\f1db"; }
.wpbc_icn_location_searching::before { content: "\e1b7"; }
.wpbc_icn_lock::before { content: "\e897"; }
.wpbc_icn_lock_clock::before { content: "\ef57"; }
.wpbc_icn_lock_open::before { content: "\e898"; }
.wpbc_icn_lock_outline::before { content: "\e899"; }
.wpbc_icn_lock_reset::before { content: "\eade"; }
.wpbc_icn_login::before { content: "\ea77"; }
.wpbc_icn_logo_dev::before { content: "\ead6"; }
.wpbc_icn_logout::before { content: "\e9ba"; }
.wpbc_icn_looks::before { content: "\e3fc"; }
.wpbc_icn_looks_3::before { content: "\e3fb"; }
.wpbc_icn_looks_4::before { content: "\e3fd"; }
.wpbc_icn_looks_5::before { content: "\e3fe"; }
.wpbc_icn_looks_6::before { content: "\e3ff"; }
.wpbc_icn_looks_one::before { content: "\e400"; }
.wpbc_icn_looks_two::before { content: "\e401"; }
.wpbc_icn_loop::before { content: "\e028"; }
.wpbc_icn_loupe::before { content: "\e402"; }
.wpbc_icn_low_priority::before { content: "\e16d"; }
.wpbc_icn_loyalty::before { content: "\e89a"; }
.wpbc_icn_lte_mobiledata::before { content: "\f02c"; }
.wpbc_icn_lte_plus_mobiledata::before { content: "\f02d"; }
.wpbc_icn_luggage::before { content: "\f235"; }
.wpbc_icn_lunch_dining::before { content: "\ea61"; }
.wpbc_icn_lyrics::before { content: "\ec0b"; }
.wpbc_icn_mail::before { content: "\e158"; }
.wpbc_icn_mail_lock::before { content: "\ec0a"; }
.wpbc_icn_mail_outline::before { content: "\e0e1"; }
.wpbc_icn_male::before { content: "\e58e"; }
.wpbc_icn_man::before { content: "\e4eb"; }
.wpbc_icn_manage_accounts::before { content: "\f02e"; }
.wpbc_icn_manage_history::before { content: "\ebe7"; }
.wpbc_icn_manage_search::before { content: "\f02f"; }
.wpbc_icn_map::before { content: "\e55b"; }
.wpbc_icn_maps_home_work::before { content: "\f030"; }
.wpbc_icn_maps_ugc::before { content: "\ef58"; }
.wpbc_icn_margin::before { content: "\e9bb"; }
.wpbc_icn_mark_as_unread::before { content: "\e9bc"; }
.wpbc_icn_mark_chat_read::before { content: "\f18b"; }
.wpbc_icn_mark_chat_unread::before { content: "\f189"; }
.wpbc_icn_mark_email_read::before { content: "\f18c"; }
.wpbc_icn_mark_email_unread::before { content: "\f18a"; }
.wpbc_icn_mark_unread_chat_alt::before { content: "\eb9d"; }
.wpbc_icn_markunread::before { content: "\e159"; }
.wpbc_icn_markunread_mailbox::before { content: "\e89b"; }
.wpbc_icn_masks::before { content: "\f218"; }
.wpbc_icn_maximize::before { content: "\e930"; }
.wpbc_icn_media_bluetooth_off::before { content: "\f031"; }
.wpbc_icn_media_bluetooth_on::before { content: "\f032"; }
.wpbc_icn_mediation::before { content: "\efa7"; }
.wpbc_icn_medical_information::before { content: "\ebed"; }
.wpbc_icn_medical_services::before { content: "\f109"; }
.wpbc_icn_medication::before { content: "\f033"; }
.wpbc_icn_medication_liquid::before { content: "\ea87"; }
.wpbc_icn_meeting_room::before { content: "\eb4f"; }
.wpbc_icn_memory::before { content: "\e322"; }
.wpbc_icn_menu::before { content: "\e5d2"; }
.wpbc_icn_menu_book::before { content: "\ea19"; }
.wpbc_icn_menu_open::before { content: "\e9bd"; }
.wpbc_icn_merge::before { content: "\eb98"; }
.wpbc_icn_merge_type::before { content: "\e252"; }
.wpbc_icn_message::before { content: "\e0c9"; }
.wpbc_icn_messenger::before { content: "\e0ca"; }
.wpbc_icn_messenger_outline::before { content: "\e0cb"; }
.wpbc_icn_mic::before { content: "\e029"; }
.wpbc_icn_mic_external_off::before { content: "\ef59"; }
.wpbc_icn_mic_external_on::before { content: "\ef5a"; }
.wpbc_icn_mic_none::before { content: "\e02a"; }
.wpbc_icn_mic_off::before { content: "\e02b"; }
.wpbc_icn_microwave::before { content: "\f204"; }
.wpbc_icn_military_tech::before { content: "\ea3f"; }
.wpbc_icn_minimize::before { content: "\e931"; }
.wpbc_icn_minor_crash::before { content: "\ebf1"; }
.wpbc_icn_miscellaneous_services::before { content: "\f10c"; }
.wpbc_icn_missed_video_call::before { content: "\e073"; }
.wpbc_icn_mms::before { content: "\e618"; }
.wpbc_icn_mobile_friendly::before { content: "\e200"; }
.wpbc_icn_mobile_off::before { content: "\e201"; }
.wpbc_icn_mobile_screen_share::before { content: "\e0e7"; }
.wpbc_icn_mobiledata_off::before { content: "\f034"; }
.wpbc_icn_mode::before { content: "\f097"; }
.wpbc_icn_mode_comment::before { content: "\e253"; }
.wpbc_icn_mode_edit::before { content: "\e254"; }
.wpbc_icn_mode_edit_outline::before { content: "\f035"; }
.wpbc_icn_mode_fan_off::before { content: "\ec17"; }
.wpbc_icn_mode_night::before { content: "\f036"; }
.wpbc_icn_mode_of_travel::before { content: "\e7ce"; }
.wpbc_icn_mode_standby::before { content: "\f037"; }
.wpbc_icn_model_training::before { content: "\f0cf"; }
.wpbc_icn_monetization_on::before { content: "\e263"; }
.wpbc_icn_money::before { content: "\e57d"; }
.wpbc_icn_money_off::before { content: "\e25c"; }
.wpbc_icn_money_off_csred::before { content: "\f038"; }
.wpbc_icn_monitor::before { content: "\ef5b"; }
.wpbc_icn_monitor_heart::before { content: "\eaa2"; }
.wpbc_icn_monitor_weight::before { content: "\f039"; }
.wpbc_icn_monochrome_photos::before { content: "\e403"; }
.wpbc_icn_mood::before { content: "\e7f2"; }
.wpbc_icn_mood_bad::before { content: "\e7f3"; }
.wpbc_icn_moped::before { content: "\eb28"; }
.wpbc_icn_more::before { content: "\e619"; }
.wpbc_icn_more_horiz::before { content: "\e5d3"; }
.wpbc_icn_more_time::before { content: "\ea5d"; }
.wpbc_icn_more_vert::before { content: "\e5d4"; }
.wpbc_icn_mosque::before { content: "\eab2"; }
.wpbc_icn_motion_photos_auto::before { content: "\f03a"; }
.wpbc_icn_motion_photos_off::before { content: "\e9c0"; }
.wpbc_icn_motion_photos_on::before { content: "\e9c1"; }
.wpbc_icn_motion_photos_pause::before { content: "\f227"; }
.wpbc_icn_motion_photos_paused::before { content: "\e9c2"; }
.wpbc_icn_motorcycle::before { content: "\e91b"; }
.wpbc_icn_mouse::before { content: "\e323"; }
.wpbc_icn_move_down::before { content: "\eb61"; }
.wpbc_icn_move_to_inbox::before { content: "\e168"; }
.wpbc_icn_move_up::before { content: "\eb64"; }
.wpbc_icn_movie::before { content: "\e02c"; }
.wpbc_icn_movie_creation::before { content: "\e404"; }
.wpbc_icn_movie_filter::before { content: "\e43a"; }
.wpbc_icn_moving::before { content: "\e501"; }
.wpbc_icn_mp::before { content: "\e9c3"; }
.wpbc_icn_multiline_chart::before { content: "\e6df"; }
.wpbc_icn_multiple_stop::before { content: "\f1b9"; }
.wpbc_icn_multitrack_audio::before { content: "\e1b8"; }
.wpbc_icn_museum::before { content: "\ea36"; }
.wpbc_icn_music_note::before { content: "\e405"; }
.wpbc_icn_music_off::before { content: "\e440"; }
.wpbc_icn_music_video::before { content: "\e063"; }
.wpbc_icn_my_library_add::before { content: "\e02e"; }
.wpbc_icn_my_library_books::before { content: "\e02f"; }
.wpbc_icn_my_library_music::before { content: "\e030"; }
.wpbc_icn_my_location::before { content: "\e55c"; }
.wpbc_icn_nat::before { content: "\ef5c"; }
.wpbc_icn_nature::before { content: "\e406"; }
.wpbc_icn_nature_people::before { content: "\e407"; }
.wpbc_icn_navigate_before::before { content: "\e408"; }
.wpbc_icn_navigate_next::before { content: "\e409"; }
.wpbc_icn_navigation::before { content: "\e55d"; }
.wpbc_icn_near_me::before { content: "\e569"; }
.wpbc_icn_near_me_disabled::before { content: "\f1ef"; }
.wpbc_icn_nearby_error::before { content: "\f03b"; }
.wpbc_icn_nearby_off::before { content: "\f03c"; }
.wpbc_icn_nest_cam_wired_stand::before { content: "\ec16"; }
.wpbc_icn_network_cell::before { content: "\e1b9"; }
.wpbc_icn_network_check::before { content: "\e640"; }
.wpbc_icn_network_locked::before { content: "\e61a"; }
.wpbc_icn_network_ping::before { content: "\ebca"; }
.wpbc_icn_network_wifi::before { content: "\e1ba"; }
.wpbc_icn_network_wifi_1_bar::before { content: "\ebe4"; }
.wpbc_icn_network_wifi_2_bar::before { content: "\ebd6"; }
.wpbc_icn_network_wifi_3_bar::before { content: "\ebe1"; }
.wpbc_icn_new_label::before { content: "\e609"; }
.wpbc_icn_new_releases::before { content: "\e031"; }
.wpbc_icn_newspaper::before { content: "\eb81"; }
.wpbc_icn_next_plan::before { content: "\ef5d"; }
.wpbc_icn_next_week::before { content: "\e16a"; }
.wpbc_icn_nfc::before { content: "\e1bb"; }
.wpbc_icn_night_shelter::before { content: "\f1f1"; }
.wpbc_icn_nightlife::before { content: "\ea62"; }
.wpbc_icn_nightlight::before { content: "\f03d"; }
.wpbc_icn_nightlight_round::before { content: "\ef5e"; }
.wpbc_icn_nights_stay::before { content: "\ea46"; }
.wpbc_icn_no_accounts::before { content: "\f03e"; }
.wpbc_icn_no_backpack::before { content: "\f237"; }
.wpbc_icn_no_cell::before { content: "\f1a4"; }
.wpbc_icn_no_crash::before { content: "\ebf0"; }
.wpbc_icn_no_drinks::before { content: "\f1a5"; }
.wpbc_icn_no_encryption::before { content: "\e641"; }
.wpbc_icn_no_encryption_gmailerrorred::before { content: "\f03f"; }
.wpbc_icn_no_flash::before { content: "\f1a6"; }
.wpbc_icn_no_food::before { content: "\f1a7"; }
.wpbc_icn_no_luggage::before { content: "\f23b"; }
.wpbc_icn_no_meals::before { content: "\f1d6"; }
.wpbc_icn_no_meals_ouline::before { content: "\f229"; }
.wpbc_icn_no_meeting_room::before { content: "\eb4e"; }
.wpbc_icn_no_photography::before { content: "\f1a8"; }
.wpbc_icn_no_sim::before { content: "\e0cc"; }
.wpbc_icn_no_stroller::before { content: "\f1af"; }
.wpbc_icn_no_transfer::before { content: "\f1d5"; }
.wpbc_icn_noise_aware::before { content: "\ebec"; }
.wpbc_icn_noise_control_off::before { content: "\ebf3"; }
.wpbc_icn_nordic_walking::before { content: "\e50e"; }
.wpbc_icn_north::before { content: "\f1e0"; }
.wpbc_icn_north_east::before { content: "\f1e1"; }
.wpbc_icn_north_west::before { content: "\f1e2"; }
.wpbc_icn_not_accessible::before { content: "\f0fe"; }
.wpbc_icn_not_interested::before { content: "\e033"; }
.wpbc_icn_not_listed_location::before { content: "\e575"; }
.wpbc_icn_not_started::before { content: "\f0d1"; }
.wpbc_icn_note::before { content: "\e06f"; }
.wpbc_icn_note_add::before { content: "\e89c"; }
.wpbc_icn_note_alt::before { content: "\f040"; }
.wpbc_icn_notes::before { content: "\e26c"; }
.wpbc_icn_notification_add::before { content: "\e399"; }
.wpbc_icn_notification_important::before { content: "\e004"; }
.wpbc_icn_notifications::before { content: "\e7f4"; }
.wpbc_icn_notifications_active::before { content: "\e7f7"; }
.wpbc_icn_notifications_none::before { content: "\e7f5"; }
.wpbc_icn_notifications_off::before { content: "\e7f6"; }
.wpbc_icn_notifications_on::before { content: "\e7f7"; }
.wpbc_icn_notifications_paused::before { content: "\e7f8"; }
.wpbc_icn_now_wallpaper::before { content: "\e1bc"; }
.wpbc_icn_now_widgets::before { content: "\e1bd"; }
.wpbc_icn_numbers::before { content: "\eac7"; }
.wpbc_icn_offline_bolt::before { content: "\e932"; }
.wpbc_icn_offline_pin::before { content: "\e90a"; }
.wpbc_icn_offline_share::before { content: "\e9c5"; }
.wpbc_icn_oil_barrel::before { content: "\ec15"; }
.wpbc_icn_on_device_training::before { content: "\ebfd"; }
.wpbc_icn_ondemand_video::before { content: "\e63a"; }
.wpbc_icn_online_prediction::before { content: "\f0eb"; }
.wpbc_icn_opacity::before { content: "\e91c"; }
.wpbc_icn_open_in_browser::before { content: "\e89d"; }
.wpbc_icn_open_in_full::before { content: "\f1ce"; }
.wpbc_icn_open_in_new::before { content: "\e89e"; }
.wpbc_icn_open_in_new_off::before { content: "\e4f6"; }
.wpbc_icn_open_with::before { content: "\e89f"; }
.wpbc_icn_other_houses::before { content: "\e58c"; }
.wpbc_icn_outbond::before { content: "\f228"; }
.wpbc_icn_outbound::before { content: "\e1ca"; }
.wpbc_icn_outbox::before { content: "\ef5f"; }
.wpbc_icn_outdoor_grill::before { content: "\ea47"; }
.wpbc_icn_outgoing_mail::before { content: "\f0d2"; }
.wpbc_icn_outlet::before { content: "\f1d4"; }
.wpbc_icn_outlined_flag::before { content: "\e16e"; }
.wpbc_icn_output::before { content: "\ebbe"; }
.wpbc_icn_padding::before { content: "\e9c8"; }
.wpbc_icn_pages::before { content: "\e7f9"; }
.wpbc_icn_pageview::before { content: "\e8a0"; }
.wpbc_icn_paid::before { content: "\f041"; }
.wpbc_icn_palette::before { content: "\e40a"; }
.wpbc_icn_pan_tool::before { content: "\e925"; }
.wpbc_icn_pan_tool_alt::before { content: "\ebb9"; }
.wpbc_icn_panorama::before { content: "\e40b"; }
.wpbc_icn_panorama_fish_eye::before { content: "\e40c"; }
.wpbc_icn_panorama_fisheye::before { content: "\e40c"; }
.wpbc_icn_panorama_horizontal::before { content: "\e40d"; }
.wpbc_icn_panorama_horizontal_select::before { content: "\ef60"; }
.wpbc_icn_panorama_photosphere::before { content: "\e9c9"; }
.wpbc_icn_panorama_photosphere_select::before { content: "\e9ca"; }
.wpbc_icn_panorama_vertical::before { content: "\e40e"; }
.wpbc_icn_panorama_vertical_select::before { content: "\ef61"; }
.wpbc_icn_panorama_wide_angle::before { content: "\e40f"; }
.wpbc_icn_panorama_wide_angle_select::before { content: "\ef62"; }
.wpbc_icn_paragliding::before { content: "\e50f"; }
.wpbc_icn_park::before { content: "\ea63"; }
.wpbc_icn_party_mode::before { content: "\e7fa"; }
.wpbc_icn_password::before { content: "\f042"; }
.wpbc_icn_pattern::before { content: "\f043"; }
.wpbc_icn_pause::before { content: "\e034"; }
.wpbc_icn_pause_circle::before { content: "\e1a2"; }
.wpbc_icn_pause_circle_filled::before { content: "\e035"; }
.wpbc_icn_pause_circle_outline::before { content: "\e036"; }
.wpbc_icn_pause_presentation::before { content: "\e0ea"; }
.wpbc_icn_payment::before { content: "\e8a1"; }
.wpbc_icn_payments::before { content: "\ef63"; }
.wpbc_icn_paypal::before { content: "\ea8d"; }
.wpbc_icn_pedal_bike::before { content: "\eb29"; }
.wpbc_icn_pending::before { content: "\ef64"; }
.wpbc_icn_pending_actions::before { content: "\f1bb"; }
.wpbc_icn_pentagon::before { content: "\eb50"; }
.wpbc_icn_people::before { content: "\e7fb"; }
.wpbc_icn_people_alt::before { content: "\ea21"; }
.wpbc_icn_people_outline::before { content: "\e7fc"; }
.wpbc_icn_percent::before { content: "\eb58"; }
.wpbc_icn_perm_camera_mic::before { content: "\e8a2"; }
.wpbc_icn_perm_contact_cal::before { content: "\e8a3"; }
.wpbc_icn_perm_contact_calendar::before { content: "\e8a3"; }
.wpbc_icn_perm_data_setting::before { content: "\e8a4"; }
.wpbc_icn_perm_device_info::before { content: "\e8a5"; }
.wpbc_icn_perm_device_information::before { content: "\e8a5"; }
.wpbc_icn_perm_identity::before { content: "\e8a6"; }
.wpbc_icn_perm_media::before { content: "\e8a7"; }
.wpbc_icn_perm_phone_msg::before { content: "\e8a8"; }
.wpbc_icn_perm_scan_wifi::before { content: "\e8a9"; }
.wpbc_icn_person::before { content: "\e7fd"; }
.wpbc_icn_person_add::before { content: "\e7fe"; }
.wpbc_icn_person_add_alt::before { content: "\ea4d"; }
.wpbc_icn_person_add_alt_1::before { content: "\ef65"; }
.wpbc_icn_person_add_disabled::before { content: "\e9cb"; }
.wpbc_icn_person_off::before { content: "\e510"; }
.wpbc_icn_person_outline::before { content: "\e7ff"; }
.wpbc_icn_person_pin::before { content: "\e55a"; }
.wpbc_icn_person_pin_circle::before { content: "\e56a"; }
.wpbc_icn_person_remove::before { content: "\ef66"; }
.wpbc_icn_person_remove_alt_1::before { content: "\ef67"; }
.wpbc_icn_person_search::before { content: "\f106"; }
.wpbc_icn_personal_injury::before { content: "\e6da"; }
.wpbc_icn_personal_video::before { content: "\e63b"; }
.wpbc_icn_pest_control::before { content: "\f0fa"; }
.wpbc_icn_pest_control_rodent::before { content: "\f0fd"; }
.wpbc_icn_pets::before { content: "\e91d"; }
.wpbc_icn_phishing::before { content: "\ead7"; }
.wpbc_icn_phone::before { content: "\e0cd"; }
.wpbc_icn_phone_android::before { content: "\e324"; }
.wpbc_icn_phone_bluetooth_speaker::before { content: "\e61b"; }
.wpbc_icn_phone_callback::before { content: "\e649"; }
.wpbc_icn_phone_disabled::before { content: "\e9cc"; }
.wpbc_icn_phone_enabled::before { content: "\e9cd"; }
.wpbc_icn_phone_forwarded::before { content: "\e61c"; }
.wpbc_icn_phone_in_talk::before { content: "\e61d"; }
.wpbc_icn_phone_iphone::before { content: "\e325"; }
.wpbc_icn_phone_locked::before { content: "\e61e"; }
.wpbc_icn_phone_missed::before { content: "\e61f"; }
.wpbc_icn_phone_paused::before { content: "\e620"; }
.wpbc_icn_phonelink::before { content: "\e326"; }
.wpbc_icn_phonelink_erase::before { content: "\e0db"; }
.wpbc_icn_phonelink_lock::before { content: "\e0dc"; }
.wpbc_icn_phonelink_off::before { content: "\e327"; }
.wpbc_icn_phonelink_ring::before { content: "\e0dd"; }
.wpbc_icn_phonelink_setup::before { content: "\e0de"; }
.wpbc_icn_photo::before { content: "\e410"; }
.wpbc_icn_photo_album::before { content: "\e411"; }
.wpbc_icn_photo_camera::before { content: "\e412"; }
.wpbc_icn_photo_camera_back::before { content: "\ef68"; }
.wpbc_icn_photo_camera_front::before { content: "\ef69"; }
.wpbc_icn_photo_filter::before { content: "\e43b"; }
.wpbc_icn_photo_library::before { content: "\e413"; }
.wpbc_icn_photo_size_select_actual::before { content: "\e432"; }
.wpbc_icn_photo_size_select_large::before { content: "\e433"; }
.wpbc_icn_photo_size_select_small::before { content: "\e434"; }
.wpbc_icn_php::before { content: "\eb8f"; }
.wpbc_icn_piano::before { content: "\e521"; }
.wpbc_icn_piano_off::before { content: "\e520"; }
.wpbc_icn_picture_as_pdf::before { content: "\e415"; }
.wpbc_icn_picture_in_picture::before { content: "\e8aa"; }
.wpbc_icn_picture_in_picture_alt::before { content: "\e911"; }
.wpbc_icn_pie_chart::before { content: "\e6c4"; }
.wpbc_icn_pie_chart_outline::before { content: "\f044"; }
.wpbc_icn_pie_chart_outlined::before { content: "\e6c5"; }
.wpbc_icn_pin::before { content: "\f045"; }
.wpbc_icn_pin_drop::before { content: "\e55e"; }
.wpbc_icn_pin_end::before { content: "\e767"; }
.wpbc_icn_pin_invoke::before { content: "\e763"; }
.wpbc_icn_pinch::before { content: "\eb38"; }
.wpbc_icn_pivot_table_chart::before { content: "\e9ce"; }
.wpbc_icn_pix::before { content: "\eaa3"; }
.wpbc_icn_place::before { content: "\e55f"; }
.wpbc_icn_plagiarism::before { content: "\ea5a"; }
.wpbc_icn_play_arrow::before { content: "\e037"; }
.wpbc_icn_play_circle::before { content: "\e1c4"; }
.wpbc_icn_play_circle_fill::before { content: "\e038"; }
.wpbc_icn_play_circle_filled::before { content: "\e038"; }
.wpbc_icn_play_circle_outline::before { content: "\e039"; }
.wpbc_icn_play_disabled::before { content: "\ef6a"; }
.wpbc_icn_play_for_work::before { content: "\e906"; }
.wpbc_icn_play_lesson::before { content: "\f047"; }
.wpbc_icn_playlist_add::before { content: "\e03b"; }
.wpbc_icn_playlist_add_check::before { content: "\e065"; }
.wpbc_icn_playlist_add_check_circle::before { content: "\e7e6"; }
.wpbc_icn_playlist_add_circle::before { content: "\e7e5"; }
.wpbc_icn_playlist_play::before { content: "\e05f"; }
.wpbc_icn_playlist_remove::before { content: "\eb80"; }
.wpbc_icn_plumbing::before { content: "\f107"; }
.wpbc_icn_plus_one::before { content: "\e800"; }
.wpbc_icn_podcasts::before { content: "\f048"; }
.wpbc_icn_point_of_sale::before { content: "\f17e"; }
.wpbc_icn_policy::before { content: "\ea17"; }
.wpbc_icn_poll::before { content: "\e801"; }
.wpbc_icn_polyline::before { content: "\ebbb"; }
.wpbc_icn_polymer::before { content: "\e8ab"; }
.wpbc_icn_pool::before { content: "\eb48"; }
.wpbc_icn_portable_wifi_off::before { content: "\e0ce"; }
.wpbc_icn_portrait::before { content: "\e416"; }
.wpbc_icn_post_add::before { content: "\ea20"; }
.wpbc_icn_power::before { content: "\e63c"; }
.wpbc_icn_power_input::before { content: "\e336"; }
.wpbc_icn_power_off::before { content: "\e646"; }
.wpbc_icn_power_settings_new::before { content: "\e8ac"; }
.wpbc_icn_precision_manufacturing::before { content: "\f049"; }
.wpbc_icn_pregnant_woman::before { content: "\e91e"; }
.wpbc_icn_present_to_all::before { content: "\e0df"; }
.wpbc_icn_preview::before { content: "\f1c5"; }
.wpbc_icn_price_change::before { content: "\f04a"; }
.wpbc_icn_price_check::before { content: "\f04b"; }
.wpbc_icn_print::before { content: "\e8ad"; }
.wpbc_icn_print_disabled::before { content: "\e9cf"; }
.wpbc_icn_priority_high::before { content: "\e645"; }
.wpbc_icn_privacy_tip::before { content: "\f0dc"; }
.wpbc_icn_private_connectivity::before { content: "\e744"; }
.wpbc_icn_production_quantity_limits::before { content: "\e1d1"; }
.wpbc_icn_propane::before { content: "\ec14"; }
.wpbc_icn_propane_tank::before { content: "\ec13"; }
.wpbc_icn_psychology::before { content: "\ea4a"; }
.wpbc_icn_public::before { content: "\e80b"; }
.wpbc_icn_public_off::before { content: "\f1ca"; }
.wpbc_icn_publish::before { content: "\e255"; }
.wpbc_icn_published_with_changes::before { content: "\f232"; }
.wpbc_icn_punch_clock::before { content: "\eaa8"; }
.wpbc_icn_push_pin::before { content: "\f10d"; }
.wpbc_icn_qr_code::before { content: "\ef6b"; }
.wpbc_icn_qr_code_2::before { content: "\e00a"; }
.wpbc_icn_qr_code_scanner::before { content: "\f206"; }
.wpbc_icn_query_builder::before { content: "\e8ae"; }
.wpbc_icn_query_stats::before { content: "\e4fc"; }
.wpbc_icn_question_answer::before { content: "\e8af"; }
.wpbc_icn_question_mark::before { content: "\eb8b"; }
.wpbc_icn_queue::before { content: "\e03c"; }
.wpbc_icn_queue_music::before { content: "\e03d"; }
.wpbc_icn_queue_play_next::before { content: "\e066"; }
.wpbc_icn_quick_contacts_dialer::before { content: "\e0cf"; }
.wpbc_icn_quick_contacts_mail::before { content: "\e0d0"; }
.wpbc_icn_quickreply::before { content: "\ef6c"; }
.wpbc_icn_quiz::before { content: "\f04c"; }
.wpbc_icn_quora::before { content: "\ea98"; }
.wpbc_icn_r_mobiledata::before { content: "\f04d"; }
.wpbc_icn_radar::before { content: "\f04e"; }
.wpbc_icn_radio::before { content: "\e03e"; }
.wpbc_icn_radio_button_checked::before { content: "\e837"; }
.wpbc_icn_radio_button_off::before { content: "\e836"; }
.wpbc_icn_radio_button_on::before { content: "\e837"; }
.wpbc_icn_radio_button_unchecked::before { content: "\e836"; }
.wpbc_icn_railway_alert::before { content: "\e9d1"; }
.wpbc_icn_ramen_dining::before { content: "\ea64"; }
.wpbc_icn_ramp_left::before { content: "\eb9c"; }
.wpbc_icn_ramp_right::before { content: "\eb96"; }
.wpbc_icn_rate_review::before { content: "\e560"; }
.wpbc_icn_raw_off::before { content: "\f04f"; }
.wpbc_icn_raw_on::before { content: "\f050"; }
.wpbc_icn_read_more::before { content: "\ef6d"; }
.wpbc_icn_real_estate_agent::before { content: "\e73a"; }
.wpbc_icn_receipt::before { content: "\e8b0"; }
.wpbc_icn_receipt_long::before { content: "\ef6e"; }
.wpbc_icn_recent_actors::before { content: "\e03f"; }
.wpbc_icn_recommend::before { content: "\e9d2"; }
.wpbc_icn_record_voice_over::before { content: "\e91f"; }
.wpbc_icn_rectangle::before { content: "\eb54"; }
.wpbc_icn_recycling::before { content: "\e760"; }
.wpbc_icn_reddit::before { content: "\eaa0"; }
.wpbc_icn_redeem::before { content: "\e8b1"; }
.wpbc_icn_redo::before { content: "\e15a"; }
.wpbc_icn_reduce_capacity::before { content: "\f21c"; }
.wpbc_icn_refresh::before { content: "\e5d5"; }
.wpbc_icn_remember_me::before { content: "\f051"; }
.wpbc_icn_remove::before { content: "\e15b"; }
.wpbc_icn_remove_circle::before { content: "\e15c"; }
.wpbc_icn_remove_circle_outline::before { content: "\e15d"; }
.wpbc_icn_remove_done::before { content: "\e9d3"; }
.wpbc_icn_remove_from_queue::before { content: "\e067"; }
.wpbc_icn_remove_moderator::before { content: "\e9d4"; }
.wpbc_icn_remove_red_eye::before { content: "\e417"; }
.wpbc_icn_remove_road::before { content: "\ebfc"; }
.wpbc_icn_remove_shopping_cart::before { content: "\e928"; }
.wpbc_icn_reorder::before { content: "\e8fe"; }
.wpbc_icn_repeat::before { content: "\e040"; }
.wpbc_icn_repeat_on::before { content: "\e9d6"; }
.wpbc_icn_repeat_one::before { content: "\e041"; }
.wpbc_icn_repeat_one_on::before { content: "\e9d7"; }
.wpbc_icn_replay::before { content: "\e042"; }
.wpbc_icn_replay_10::before { content: "\e059"; }
.wpbc_icn_replay_30::before { content: "\e05a"; }
.wpbc_icn_replay_5::before { content: "\e05b"; }
.wpbc_icn_replay_circle_filled::before { content: "\e9d8"; }
.wpbc_icn_reply::before { content: "\e15e"; }
.wpbc_icn_reply_all::before { content: "\e15f"; }
.wpbc_icn_report::before { content: "\e160"; }
.wpbc_icn_report_gmailerrorred::before { content: "\f052"; }
.wpbc_icn_report_off::before { content: "\e170"; }
.wpbc_icn_report_problem::before { content: "\e8b2"; }
.wpbc_icn_request_page::before { content: "\f22c"; }
.wpbc_icn_request_quote::before { content: "\f1b6"; }
.wpbc_icn_reset_tv::before { content: "\e9d9"; }
.wpbc_icn_restart_alt::before { content: "\f053"; }
.wpbc_icn_restaurant::before { content: "\e56c"; }
.wpbc_icn_restaurant_menu::before { content: "\e561"; }
.wpbc_icn_restore::before { content: "\e8b3"; }
.wpbc_icn_restore_from_trash::before { content: "\e938"; }
.wpbc_icn_restore_page::before { content: "\e929"; }
.wpbc_icn_reviews::before { content: "\f054"; }
.wpbc_icn_rice_bowl::before { content: "\f1f5"; }
.wpbc_icn_ring_volume::before { content: "\e0d1"; }
.wpbc_icn_rocket::before { content: "\eba5"; }
.wpbc_icn_rocket_launch::before { content: "\eb9b"; }
.wpbc_icn_roller_shades::before { content: "\ec12"; }
.wpbc_icn_roller_shades_closed::before { content: "\ec11"; }
.wpbc_icn_roller_skating::before { content: "\ebcd"; }
.wpbc_icn_roofing::before { content: "\f201"; }
.wpbc_icn_room::before { content: "\e8b4"; }
.wpbc_icn_room_preferences::before { content: "\f1b8"; }
.wpbc_icn_room_service::before { content: "\eb49"; }
.wpbc_icn_rotate_90_degrees_ccw::before { content: "\e418"; }
.wpbc_icn_rotate_90_degrees_cw::before { content: "\eaab"; }
.wpbc_icn_rotate_left::before { content: "\e419"; }
.wpbc_icn_rotate_right::before { content: "\e41a"; }
.wpbc_icn_roundabout_left::before { content: "\eb99"; }
.wpbc_icn_roundabout_right::before { content: "\eba3"; }
.wpbc_icn_rounded_corner::before { content: "\e920"; }
.wpbc_icn_route::before { content: "\eacd"; }
.wpbc_icn_router::before { content: "\e328"; }
.wpbc_icn_rowing::before { content: "\e921"; }
.wpbc_icn_rss_feed::before { content: "\e0e5"; }
.wpbc_icn_rsvp::before { content: "\f055"; }
.wpbc_icn_rtt::before { content: "\e9ad"; }
.wpbc_icn_rule::before { content: "\f1c2"; }
.wpbc_icn_rule_folder::before { content: "\f1c9"; }
.wpbc_icn_run_circle::before { content: "\ef6f"; }
.wpbc_icn_running_with_errors::before { content: "\e51d"; }
.wpbc_icn_rv_hookup::before { content: "\e642"; }
.wpbc_icn_safety_check::before { content: "\ebef"; }
.wpbc_icn_safety_divider::before { content: "\e1cc"; }
.wpbc_icn_sailing::before { content: "\e502"; }
.wpbc_icn_sanitizer::before { content: "\f21d"; }
.wpbc_icn_satellite::before { content: "\e562"; }
.wpbc_icn_satellite_alt::before { content: "\eb3a"; }
.wpbc_icn_save::before { content: "\e161"; }
.wpbc_icn_save_alt::before { content: "\e171"; }
.wpbc_icn_save_as::before { content: "\eb60"; }
.wpbc_icn_saved_search::before { content: "\ea11"; }
.wpbc_icn_savings::before { content: "\e2eb"; }
.wpbc_icn_scale::before { content: "\eb5f"; }
.wpbc_icn_scanner::before { content: "\e329"; }
.wpbc_icn_scatter_plot::before { content: "\e268"; }
.wpbc_icn_schedule::before { content: "\e8b5"; }
.wpbc_icn_schedule_send::before { content: "\ea0a"; }
.wpbc_icn_schema::before { content: "\e4fd"; }
.wpbc_icn_school::before { content: "\e80c"; }
.wpbc_icn_science::before { content: "\ea4b"; }
.wpbc_icn_score::before { content: "\e269"; }
.wpbc_icn_scoreboard::before { content: "\ebd0"; }
.wpbc_icn_screen_lock_landscape::before { content: "\e1be"; }
.wpbc_icn_screen_lock_portrait::before { content: "\e1bf"; }
.wpbc_icn_screen_lock_rotation::before { content: "\e1c0"; }
.wpbc_icn_screen_rotation::before { content: "\e1c1"; }
.wpbc_icn_screen_rotation_alt::before { content: "\ebee"; }
.wpbc_icn_screen_search_desktop::before { content: "\ef70"; }
.wpbc_icn_screen_share::before { content: "\e0e2"; }
.wpbc_icn_screenshot::before { content: "\f056"; }
.wpbc_icn_screenshot_monitor::before { content: "\ec08"; }
.wpbc_icn_scuba_diving::before { content: "\ebce"; }
.wpbc_icn_sd::before { content: "\e9dd"; }
.wpbc_icn_sd_card::before { content: "\e623"; }
.wpbc_icn_sd_card_alert::before { content: "\f057"; }
.wpbc_icn_sd_storage::before { content: "\e1c2"; }
.wpbc_icn_search::before { content: "\e8b6"; }
.wpbc_icn_search_off::before { content: "\ea76"; }
.wpbc_icn_security::before { content: "\e32a"; }
.wpbc_icn_security_update::before { content: "\f058"; }
.wpbc_icn_security_update_good::before { content: "\f059"; }
.wpbc_icn_security_update_warning::before { content: "\f05a"; }
.wpbc_icn_segment::before { content: "\e94b"; }
.wpbc_icn_select_all::before { content: "\e162"; }
.wpbc_icn_self_improvement::before { content: "\ea78"; }
.wpbc_icn_sell::before { content: "\f05b"; }
.wpbc_icn_send::before { content: "\e163"; }
.wpbc_icn_send_and_archive::before { content: "\ea0c"; }
.wpbc_icn_send_time_extension::before { content: "\eadb"; }
.wpbc_icn_send_to_mobile::before { content: "\f05c"; }
.wpbc_icn_sensor_door::before { content: "\f1b5"; }
.wpbc_icn_sensor_occupied::before { content: "\ec10"; }
.wpbc_icn_sensor_window::before { content: "\f1b4"; }
.wpbc_icn_sensors::before { content: "\e51e"; }
.wpbc_icn_sensors_off::before { content: "\e51f"; }
.wpbc_icn_sentiment_dissatisfied::before { content: "\e811"; }
.wpbc_icn_sentiment_neutral::before { content: "\e812"; }
.wpbc_icn_sentiment_satisfied::before { content: "\e813"; }
.wpbc_icn_sentiment_satisfied_alt::before { content: "\e0ed"; }
.wpbc_icn_sentiment_very_dissatisfied::before { content: "\e814"; }
.wpbc_icn_sentiment_very_satisfied::before { content: "\e815"; }
.wpbc_icn_set_meal::before { content: "\f1ea"; }
.wpbc_icn_settings::before { content: "\e8b8"; }
.wpbc_icn_settings_accessibility::before { content: "\f05d"; }
.wpbc_icn_settings_applications::before { content: "\e8b9"; }
.wpbc_icn_settings_backup_restore::before { content: "\e8ba"; }
.wpbc_icn_settings_bluetooth::before { content: "\e8bb"; }
.wpbc_icn_settings_brightness::before { content: "\e8bd"; }
.wpbc_icn_settings_cell::before { content: "\e8bc"; }
.wpbc_icn_settings_display::before { content: "\e8bd"; }
.wpbc_icn_settings_ethernet::before { content: "\e8be"; }
.wpbc_icn_settings_input_antenna::before { content: "\e8bf"; }
.wpbc_icn_settings_input_component::before { content: "\e8c0"; }
.wpbc_icn_settings_input_composite::before { content: "\e8c1"; }
.wpbc_icn_settings_input_hdmi::before { content: "\e8c2"; }
.wpbc_icn_settings_input_svideo::before { content: "\e8c3"; }
.wpbc_icn_settings_overscan::before { content: "\e8c4"; }
.wpbc_icn_settings_phone::before { content: "\e8c5"; }
.wpbc_icn_settings_power::before { content: "\e8c6"; }
.wpbc_icn_settings_remote::before { content: "\e8c7"; }
.wpbc_icn_settings_suggest::before { content: "\f05e"; }
.wpbc_icn_settings_system_daydream::before { content: "\e1c3"; }
.wpbc_icn_settings_voice::before { content: "\e8c8"; }
.wpbc_icn_severe_cold::before { content: "\ebd3"; }
.wpbc_icn_share::before { content: "\e80d"; }
.wpbc_icn_share_arrival_time::before { content: "\e524"; }
.wpbc_icn_share_location::before { content: "\f05f"; }
.wpbc_icn_shield::before { content: "\e9e0"; }
.wpbc_icn_shield_moon::before { content: "\eaa9"; }
.wpbc_icn_shop::before { content: "\e8c9"; }
.wpbc_icn_shop_2::before { content: "\e19e"; }
.wpbc_icn_shop_two::before { content: "\e8ca"; }
.wpbc_icn_shopify::before { content: "\ea9d"; }
.wpbc_icn_shopping_bag::before { content: "\f1cc"; }
.wpbc_icn_shopping_basket::before { content: "\e8cb"; }
.wpbc_icn_shopping_cart::before { content: "\e8cc"; }
.wpbc_icn_shopping_cart_checkout::before { content: "\eb88"; }
.wpbc_icn_short_text::before { content: "\e261"; }
.wpbc_icn_shortcut::before { content: "\f060"; }
.wpbc_icn_show_chart::before { content: "\e6e1"; }
.wpbc_icn_shower::before { content: "\f061"; }
.wpbc_icn_shuffle::before { content: "\e043"; }
.wpbc_icn_shuffle_on::before { content: "\e9e1"; }
.wpbc_icn_shutter_speed::before { content: "\e43d"; }
.wpbc_icn_sick::before { content: "\f220"; }
.wpbc_icn_sign_language::before { content: "\ebe5"; }
.wpbc_icn_signal_cellular_0_bar::before { content: "\f0a8"; }
.wpbc_icn_signal_cellular_4_bar::before { content: "\e1c8"; }
.wpbc_icn_signal_cellular_alt::before { content: "\e202"; }
.wpbc_icn_signal_cellular_alt_1_bar::before { content: "\ebdf"; }
.wpbc_icn_signal_cellular_alt_2_bar::before { content: "\ebe3"; }
.wpbc_icn_signal_cellular_connected_no_internet_0_bar::before { content: "\f0ac"; }
.wpbc_icn_signal_cellular_connected_no_internet_4_bar::before { content: "\e1cd"; }
.wpbc_icn_signal_cellular_no_sim::before { content: "\e1ce"; }
.wpbc_icn_signal_cellular_nodata::before { content: "\f062"; }
.wpbc_icn_signal_cellular_null::before { content: "\e1cf"; }
.wpbc_icn_signal_cellular_off::before { content: "\e1d0"; }
.wpbc_icn_signal_wifi_0_bar::before { content: "\f0b0"; }
.wpbc_icn_signal_wifi_4_bar::before { content: "\e1d8"; }
.wpbc_icn_signal_wifi_4_bar_lock::before { content: "\e1d9"; }
.wpbc_icn_signal_wifi_bad::before { content: "\f063"; }
.wpbc_icn_signal_wifi_connected_no_internet_4::before { content: "\f064"; }
.wpbc_icn_signal_wifi_off::before { content: "\e1da"; }
.wpbc_icn_signal_wifi_statusbar_4_bar::before { content: "\f065"; }
.wpbc_icn_signal_wifi_statusbar_connected_no_internet_4::before { content: "\f066"; }
.wpbc_icn_signal_wifi_statusbar_null::before { content: "\f067"; }
.wpbc_icn_signpost::before { content: "\eb91"; }
.wpbc_icn_sim_card::before { content: "\e32b"; }
.wpbc_icn_sim_card_alert::before { content: "\e624"; }
.wpbc_icn_sim_card_download::before { content: "\f068"; }
.wpbc_icn_single_bed::before { content: "\ea48"; }
.wpbc_icn_sip::before { content: "\f069"; }
.wpbc_icn_skateboarding::before { content: "\e511"; }
.wpbc_icn_skip_next::before { content: "\e044"; }
.wpbc_icn_skip_previous::before { content: "\e045"; }
.wpbc_icn_sledding::before { content: "\e512"; }
.wpbc_icn_slideshow::before { content: "\e41b"; }
.wpbc_icn_slow_motion_video::before { content: "\e068"; }
.wpbc_icn_smart_button::before { content: "\f1c1"; }
.wpbc_icn_smart_display::before { content: "\f06a"; }
.wpbc_icn_smart_screen::before { content: "\f06b"; }
.wpbc_icn_smart_toy::before { content: "\f06c"; }
.wpbc_icn_smartphone::before { content: "\e32c"; }
.wpbc_icn_smoke_free::before { content: "\eb4a"; }
.wpbc_icn_smoking_rooms::before { content: "\eb4b"; }
.wpbc_icn_sms::before { content: "\e625"; }
.wpbc_icn_sms_failed::before { content: "\e626"; }
.wpbc_icn_snapchat::before { content: "\ea6e"; }
.wpbc_icn_snippet_folder::before { content: "\f1c7"; }
.wpbc_icn_snooze::before { content: "\e046"; }
.wpbc_icn_snowboarding::before { content: "\e513"; }
.wpbc_icn_snowing::before { content: "\e80f"; }
.wpbc_icn_snowmobile::before { content: "\e503"; }
.wpbc_icn_snowshoeing::before { content: "\e514"; }
.wpbc_icn_soap::before { content: "\f1b2"; }
.wpbc_icn_social_distance::before { content: "\e1cb"; }
.wpbc_icn_solar_power::before { content: "\ec0f"; }
.wpbc_icn_sort::before { content: "\e164"; }
.wpbc_icn_sort_by_alpha::before { content: "\e053"; }
.wpbc_icn_sos::before { content: "\ebf7"; }
.wpbc_icn_soup_kitchen::before { content: "\e7d3"; }
.wpbc_icn_source::before { content: "\f1c4"; }
.wpbc_icn_south::before { content: "\f1e3"; }
.wpbc_icn_south_america::before { content: "\e7e4"; }
.wpbc_icn_south_east::before { content: "\f1e4"; }
.wpbc_icn_south_west::before { content: "\f1e5"; }
.wpbc_icn_spa::before { content: "\eb4c"; }
.wpbc_icn_space_bar::before { content: "\e256"; }
.wpbc_icn_space_dashboard::before { content: "\e66b"; }
.wpbc_icn_spatial_audio::before { content: "\ebeb"; }
.wpbc_icn_spatial_audio_off::before { content: "\ebe8"; }
.wpbc_icn_spatial_tracking::before { content: "\ebea"; }
.wpbc_icn_speaker::before { content: "\e32d"; }
.wpbc_icn_speaker_group::before { content: "\e32e"; }
.wpbc_icn_speaker_notes::before { content: "\e8cd"; }
.wpbc_icn_speaker_notes_off::before { content: "\e92a"; }
.wpbc_icn_speaker_phone::before { content: "\e0d2"; }
.wpbc_icn_speed::before { content: "\e9e4"; }
.wpbc_icn_spellcheck::before { content: "\e8ce"; }
.wpbc_icn_splitscreen::before { content: "\f06d"; }
.wpbc_icn_spoke::before { content: "\e9a7"; }
.wpbc_icn_sports::before { content: "\ea30"; }
.wpbc_icn_sports_bar::before { content: "\f1f3"; }
.wpbc_icn_sports_baseball::before { content: "\ea51"; }
.wpbc_icn_sports_basketball::before { content: "\ea26"; }
.wpbc_icn_sports_cricket::before { content: "\ea27"; }
.wpbc_icn_sports_esports::before { content: "\ea28"; }
.wpbc_icn_sports_football::before { content: "\ea29"; }
.wpbc_icn_sports_golf::before { content: "\ea2a"; }
.wpbc_icn_sports_gymnastics::before { content: "\ebc4"; }
.wpbc_icn_sports_handball::before { content: "\ea33"; }
.wpbc_icn_sports_hockey::before { content: "\ea2b"; }
.wpbc_icn_sports_kabaddi::before { content: "\ea34"; }
.wpbc_icn_sports_martial_arts::before { content: "\eae9"; }
.wpbc_icn_sports_mma::before { content: "\ea2c"; }
.wpbc_icn_sports_motorsports::before { content: "\ea2d"; }
.wpbc_icn_sports_rugby::before { content: "\ea2e"; }
.wpbc_icn_sports_score::before { content: "\f06e"; }
.wpbc_icn_sports_soccer::before { content: "\ea2f"; }
.wpbc_icn_sports_tennis::before { content: "\ea32"; }
.wpbc_icn_sports_volleyball::before { content: "\ea31"; }
.wpbc_icn_square::before { content: "\eb36"; }
.wpbc_icn_square_foot::before { content: "\ea49"; }
.wpbc_icn_ssid_chart::before { content: "\eb66"; }
.wpbc_icn_stacked_bar_chart::before { content: "\e9e6"; }
.wpbc_icn_stacked_line_chart::before { content: "\f22b"; }
.wpbc_icn_stadium::before { content: "\eb90"; }
.wpbc_icn_stairs::before { content: "\f1a9"; }
.wpbc_icn_star::before { content: "\e838"; }
.wpbc_icn_star_border::before { content: "\e83a"; }
.wpbc_icn_star_border_purple500::before { content: "\f099"; }
.wpbc_icn_star_half::before { content: "\e839"; }
.wpbc_icn_star_outline::before { content: "\f06f"; }
.wpbc_icn_star_purple500::before { content: "\f09a"; }
.wpbc_icn_star_rate::before { content: "\f0ec"; }
.wpbc_icn_stars::before { content: "\e8d0"; }
.wpbc_icn_start::before { content: "\e089"; }
.wpbc_icn_stay_current_landscape::before { content: "\e0d3"; }
.wpbc_icn_stay_current_portrait::before { content: "\e0d4"; }
.wpbc_icn_stay_primary_landscape::before { content: "\e0d5"; }
.wpbc_icn_stay_primary_portrait::before { content: "\e0d6"; }
.wpbc_icn_sticky_note_2::before { content: "\f1fc"; }
.wpbc_icn_stop::before { content: "\e047"; }
.wpbc_icn_stop_circle::before { content: "\ef71"; }
.wpbc_icn_stop_screen_share::before { content: "\e0e3"; }
.wpbc_icn_storage::before { content: "\e1db"; }
.wpbc_icn_store::before { content: "\e8d1"; }
.wpbc_icn_store_mall_directory::before { content: "\e563"; }
.wpbc_icn_storefront::before { content: "\ea12"; }
.wpbc_icn_storm::before { content: "\f070"; }
.wpbc_icn_straight::before { content: "\eb95"; }
.wpbc_icn_straighten::before { content: "\e41c"; }
.wpbc_icn_stream::before { content: "\e9e9"; }
.wpbc_icn_streetview::before { content: "\e56e"; }
.wpbc_icn_strikethrough_s::before { content: "\e257"; }
.wpbc_icn_stroller::before { content: "\f1ae"; }
.wpbc_icn_style::before { content: "\e41d"; }
.wpbc_icn_subdirectory_arrow_left::before { content: "\e5d9"; }
.wpbc_icn_subdirectory_arrow_right::before { content: "\e5da"; }
.wpbc_icn_subject::before { content: "\e8d2"; }
.wpbc_icn_subscript::before { content: "\f111"; }
.wpbc_icn_subscriptions::before { content: "\e064"; }
.wpbc_icn_subtitles::before { content: "\e048"; }
.wpbc_icn_subtitles_off::before { content: "\ef72"; }
.wpbc_icn_subway::before { content: "\e56f"; }
.wpbc_icn_summarize::before { content: "\f071"; }
.wpbc_icn_sunny::before { content: "\e81a"; }
.wpbc_icn_sunny_snowing::before { content: "\e819"; }
.wpbc_icn_superscript::before { content: "\f112"; }
.wpbc_icn_supervised_user_circle::before { content: "\e939"; }
.wpbc_icn_supervisor_account::before { content: "\e8d3"; }
.wpbc_icn_support::before { content: "\ef73"; }
.wpbc_icn_support_agent::before { content: "\f0e2"; }
.wpbc_icn_surfing::before { content: "\e515"; }
.wpbc_icn_surround_sound::before { content: "\e049"; }
.wpbc_icn_swap_calls::before { content: "\e0d7"; }
.wpbc_icn_swap_horiz::before { content: "\e8d4"; }
.wpbc_icn_swap_horizontal_circle::before { content: "\e933"; }
.wpbc_icn_swap_vert::before { content: "\e8d5"; }
.wpbc_icn_swap_vert_circle::before { content: "\e8d6"; }
.wpbc_icn_swap_vertical_circle::before { content: "\e8d6"; }
.wpbc_icn_swipe::before { content: "\e9ec"; }
.wpbc_icn_swipe_down::before { content: "\eb53"; }
.wpbc_icn_swipe_down_alt::before { content: "\eb30"; }
.wpbc_icn_swipe_left::before { content: "\eb59"; }
.wpbc_icn_swipe_left_alt::before { content: "\eb33"; }
.wpbc_icn_swipe_right::before { content: "\eb52"; }
.wpbc_icn_swipe_right_alt::before { content: "\eb56"; }
.wpbc_icn_swipe_up::before { content: "\eb2e"; }
.wpbc_icn_swipe_up_alt::before { content: "\eb35"; }
.wpbc_icn_swipe_vertical::before { content: "\eb51"; }
.wpbc_icn_switch_access_shortcut::before { content: "\e7e1"; }
.wpbc_icn_switch_access_shortcut_add::before { content: "\e7e2"; }
.wpbc_icn_switch_account::before { content: "\e9ed"; }
.wpbc_icn_switch_camera::before { content: "\e41e"; }
.wpbc_icn_switch_left::before { content: "\f1d1"; }
.wpbc_icn_switch_right::before { content: "\f1d2"; }
.wpbc_icn_switch_video::before { content: "\e41f"; }
.wpbc_icn_synagogue::before { content: "\eab0"; }
.wpbc_icn_sync::before { content: "\e627"; }
.wpbc_icn_sync_alt::before { content: "\ea18"; }
.wpbc_icn_sync_disabled::before { content: "\e628"; }
.wpbc_icn_sync_lock::before { content: "\eaee"; }
.wpbc_icn_sync_problem::before { content: "\e629"; }
.wpbc_icn_system_security_update::before { content: "\f072"; }
.wpbc_icn_system_security_update_good::before { content: "\f073"; }
.wpbc_icn_system_security_update_warning::before { content: "\f074"; }
.wpbc_icn_system_update::before { content: "\e62a"; }
.wpbc_icn_system_update_alt::before { content: "\e8d7"; }
.wpbc_icn_system_update_tv::before { content: "\e8d7"; }
.wpbc_icn_tab::before { content: "\e8d8"; }
.wpbc_icn_tab_unselected::before { content: "\e8d9"; }
.wpbc_icn_table_bar::before { content: "\ead2"; }
.wpbc_icn_table_chart::before { content: "\e265"; }
.wpbc_icn_table_restaurant::before { content: "\eac6"; }
.wpbc_icn_table_rows::before { content: "\f101"; }
.wpbc_icn_table_view::before { content: "\f1be"; }
.wpbc_icn_tablet::before { content: "\e32f"; }
.wpbc_icn_tablet_android::before { content: "\e330"; }
.wpbc_icn_tablet_mac::before { content: "\e331"; }
.wpbc_icn_tag::before { content: "\e9ef"; }
.wpbc_icn_tag_faces::before { content: "\e420"; }
.wpbc_icn_takeout_dining::before { content: "\ea74"; }
.wpbc_icn_tap_and_play::before { content: "\e62b"; }
.wpbc_icn_tapas::before { content: "\f1e9"; }
.wpbc_icn_task::before { content: "\f075"; }
.wpbc_icn_task_alt::before { content: "\e2e6"; }
.wpbc_icn_taxi_alert::before { content: "\ef74"; }
.wpbc_icn_telegram::before { content: "\ea6b"; }
.wpbc_icn_temple_buddhist::before { content: "\eab3"; }
.wpbc_icn_temple_hindu::before { content: "\eaaf"; }
.wpbc_icn_terminal::before { content: "\eb8e"; }
.wpbc_icn_terrain::before { content: "\e564"; }
.wpbc_icn_text_decrease::before { content: "\eadd"; }
.wpbc_icn_text_fields::before { content: "\e262"; }
.wpbc_icn_text_format::before { content: "\e165"; }
.wpbc_icn_text_increase::before { content: "\eae2"; }
.wpbc_icn_text_rotate_up::before { content: "\e93a"; }
.wpbc_icn_text_rotate_vertical::before { content: "\e93b"; }
.wpbc_icn_text_rotation_angledown::before { content: "\e93c"; }
.wpbc_icn_text_rotation_angleup::before { content: "\e93d"; }
.wpbc_icn_text_rotation_down::before { content: "\e93e"; }
.wpbc_icn_text_rotation_none::before { content: "\e93f"; }
.wpbc_icn_text_snippet::before { content: "\f1c6"; }
.wpbc_icn_textsms::before { content: "\e0d8"; }
.wpbc_icn_texture::before { content: "\e421"; }
.wpbc_icn_theater_comedy::before { content: "\ea66"; }
.wpbc_icn_theaters::before { content: "\e8da"; }
.wpbc_icn_thermostat::before { content: "\f076"; }
.wpbc_icn_thermostat_auto::before { content: "\f077"; }
.wpbc_icn_thumb_down::before { content: "\e8db"; }
.wpbc_icn_thumb_down_alt::before { content: "\e816"; }
.wpbc_icn_thumb_down_off_alt::before { content: "\e9f2"; }
.wpbc_icn_thumb_up::before { content: "\e8dc"; }
.wpbc_icn_thumb_up_alt::before { content: "\e817"; }
.wpbc_icn_thumb_up_off_alt::before { content: "\e9f3"; }
.wpbc_icn_thumbs_up_down::before { content: "\e8dd"; }
.wpbc_icn_thunderstorm::before { content: "\ebdb"; }
.wpbc_icn_tiktok::before { content: "\ea7e"; }
.wpbc_icn_time_to_leave::before { content: "\e62c"; }
.wpbc_icn_timelapse::before { content: "\e422"; }
.wpbc_icn_timeline::before { content: "\e922"; }
.wpbc_icn_timer::before { content: "\e425"; }
.wpbc_icn_timer_10::before { content: "\e423"; }
.wpbc_icn_timer_10_select::before { content: "\f07a"; }
.wpbc_icn_timer_3::before { content: "\e424"; }
.wpbc_icn_timer_3_select::before { content: "\f07b"; }
.wpbc_icn_timer_off::before { content: "\e426"; }
.wpbc_icn_tips_and_updates::before { content: "\e79a"; }
.wpbc_icn_tire_repair::before { content: "\ebc8"; }
.wpbc_icn_title::before { content: "\e264"; }
.wpbc_icn_toc::before { content: "\e8de"; }
.wpbc_icn_today::before { content: "\e8df"; }
.wpbc_icn_toggle_off::before { content: "\e9f5"; }
.wpbc_icn_toggle_on::before { content: "\e9f6"; }
.wpbc_icn_token::before { content: "\ea25"; }
.wpbc_icn_toll::before { content: "\e8e0"; }
.wpbc_icn_tonality::before { content: "\e427"; }
.wpbc_icn_topic::before { content: "\f1c8"; }
.wpbc_icn_tornado::before { content: "\e199"; }
.wpbc_icn_touch_app::before { content: "\e913"; }
.wpbc_icn_tour::before { content: "\ef75"; }
.wpbc_icn_toys::before { content: "\e332"; }
.wpbc_icn_track_changes::before { content: "\e8e1"; }
.wpbc_icn_traffic::before { content: "\e565"; }
.wpbc_icn_train::before { content: "\e570"; }
.wpbc_icn_tram::before { content: "\e571"; }
.wpbc_icn_transfer_within_a_station::before { content: "\e572"; }
.wpbc_icn_transform::before { content: "\e428"; }
.wpbc_icn_transgender::before { content: "\e58d"; }
.wpbc_icn_transit_enterexit::before { content: "\e579"; }
.wpbc_icn_translate::before { content: "\e8e2"; }
.wpbc_icn_travel_explore::before { content: "\e2db"; }
.wpbc_icn_trending_down::before { content: "\e8e3"; }
.wpbc_icn_trending_flat::before { content: "\e8e4"; }
.wpbc_icn_trending_neutral::before { content: "\e8e4"; }
.wpbc_icn_trending_up::before { content: "\e8e5"; }
.wpbc_icn_trip_origin::before { content: "\e57b"; }
.wpbc_icn_troubleshoot::before { content: "\e1d2"; }
.wpbc_icn_try::before { content: "\f07c"; }
.wpbc_icn_tsunami::before { content: "\ebd8"; }
.wpbc_icn_tty::before { content: "\f1aa"; }
.wpbc_icn_tune::before { content: "\e429"; }
.wpbc_icn_tungsten::before { content: "\f07d"; }
.wpbc_icn_turn_left::before { content: "\eba6"; }
.wpbc_icn_turn_right::before { content: "\ebab"; }
.wpbc_icn_turn_sharp_left::before { content: "\eba7"; }
.wpbc_icn_turn_sharp_right::before { content: "\ebaa"; }
.wpbc_icn_turn_slight_left::before { content: "\eba4"; }
.wpbc_icn_turn_slight_right::before { content: "\eb9a"; }
.wpbc_icn_turned_in::before { content: "\e8e6"; }
.wpbc_icn_turned_in_not::before { content: "\e8e7"; }
.wpbc_icn_tv::before { content: "\e333"; }
.wpbc_icn_tv_off::before { content: "\e647"; }
.wpbc_icn_two_wheeler::before { content: "\e9f9"; }
.wpbc_icn_u_turn_left::before { content: "\eba1"; }
.wpbc_icn_u_turn_right::before { content: "\eba2"; }
.wpbc_icn_umbrella::before { content: "\f1ad"; }
.wpbc_icn_unarchive::before { content: "\e169"; }
.wpbc_icn_undo::before { content: "\e166"; }
.wpbc_icn_unfold_less::before { content: "\e5d6"; }
.wpbc_icn_unfold_more::before { content: "\e5d7"; }
.wpbc_icn_unpublished::before { content: "\f236"; }
.wpbc_icn_unsubscribe::before { content: "\e0eb"; }
.wpbc_icn_upcoming::before { content: "\f07e"; }
.wpbc_icn_update::before { content: "\e923"; }
.wpbc_icn_update_disabled::before { content: "\e075"; }
.wpbc_icn_upgrade::before { content: "\f0fb"; }
.wpbc_icn_upload::before { content: "\f09b"; }
.wpbc_icn_upload_file::before { content: "\e9fc"; }
.wpbc_icn_usb::before { content: "\e1e0"; }
.wpbc_icn_usb_off::before { content: "\e4fa"; }
.wpbc_icn_vaccines::before { content: "\e138"; }
.wpbc_icn_vape_free::before { content: "\ebc6"; }
.wpbc_icn_vaping_rooms::before { content: "\ebcf"; }
.wpbc_icn_verified::before { content: "\ef76"; }
.wpbc_icn_verified_user::before { content: "\e8e8"; }
.wpbc_icn_vertical_align_bottom::before { content: "\e258"; }
.wpbc_icn_vertical_align_center::before { content: "\e259"; }
.wpbc_icn_vertical_align_top::before { content: "\e25a"; }
.wpbc_icn_vertical_distribute::before { content: "\e076"; }
.wpbc_icn_vertical_shades::before { content: "\ec0e"; }
.wpbc_icn_vertical_shades_closed::before { content: "\ec0d"; }
.wpbc_icn_vertical_split::before { content: "\e949"; }
.wpbc_icn_vibration::before { content: "\e62d"; }
.wpbc_icn_video_call::before { content: "\e070"; }
.wpbc_icn_video_camera_back::before { content: "\f07f"; }
.wpbc_icn_video_camera_front::before { content: "\f080"; }
.wpbc_icn_video_collection::before { content: "\e04a"; }
.wpbc_icn_video_file::before { content: "\eb87"; }
.wpbc_icn_video_label::before { content: "\e071"; }
.wpbc_icn_video_library::before { content: "\e04a"; }
.wpbc_icn_video_settings::before { content: "\ea75"; }
.wpbc_icn_video_stable::before { content: "\f081"; }
.wpbc_icn_videocam::before { content: "\e04b"; }
.wpbc_icn_videocam_off::before { content: "\e04c"; }
.wpbc_icn_videogame_asset::before { content: "\e338"; }
.wpbc_icn_videogame_asset_off::before { content: "\e500"; }
.wpbc_icn_view_agenda::before { content: "\e8e9"; }
.wpbc_icn_view_array::before { content: "\e8ea"; }
.wpbc_icn_view_carousel::before { content: "\e8eb"; }
.wpbc_icn_view_column::before { content: "\e8ec"; }
.wpbc_icn_view_comfortable::before { content: "\e42a"; }
.wpbc_icn_view_comfy::before { content: "\e42a"; }
.wpbc_icn_view_comfy_alt::before { content: "\eb73"; }
.wpbc_icn_view_compact::before { content: "\e42b"; }
.wpbc_icn_view_compact_alt::before { content: "\eb74"; }
.wpbc_icn_view_cozy::before { content: "\eb75"; }
.wpbc_icn_view_day::before { content: "\e8ed"; }
.wpbc_icn_view_headline::before { content: "\e8ee"; }
.wpbc_icn_view_in_ar::before { content: "\e9fe"; }
.wpbc_icn_view_kanban::before { content: "\eb7f"; }
.wpbc_icn_view_list::before { content: "\e8ef"; }
.wpbc_icn_view_module::before { content: "\e8f0"; }
.wpbc_icn_view_quilt::before { content: "\e8f1"; }
.wpbc_icn_view_sidebar::before { content: "\f114"; }
.wpbc_icn_view_stream::before { content: "\e8f2"; }
.wpbc_icn_view_timeline::before { content: "\eb85"; }
.wpbc_icn_view_week::before { content: "\e8f3"; }
.wpbc_icn_vignette::before { content: "\e435"; }
.wpbc_icn_villa::before { content: "\e586"; }
.wpbc_icn_visibility::before { content: "\e8f4"; }
.wpbc_icn_visibility_off::before { content: "\e8f5"; }
.wpbc_icn_voice_chat::before { content: "\e62e"; }
.wpbc_icn_voice_over_off::before { content: "\e94a"; }
.wpbc_icn_voicemail::before { content: "\e0d9"; }
.wpbc_icn_volcano::before { content: "\ebda"; }
.wpbc_icn_volume_down::before { content: "\e04d"; }
.wpbc_icn_volume_down_alt::before { content: "\e79c"; }
.wpbc_icn_volume_mute::before { content: "\e04e"; }
.wpbc_icn_volume_off::before { content: "\e04f"; }
.wpbc_icn_volume_up::before { content: "\e050"; }
.wpbc_icn_volunteer_activism::before { content: "\ea70"; }
.wpbc_icn_vpn_key::before { content: "\e0da"; }
.wpbc_icn_vpn_key_off::before { content: "\eb7a"; }
.wpbc_icn_vpn_lock::before { content: "\e62f"; }
.wpbc_icn_vrpano::before { content: "\f082"; }
.wpbc_icn_wallet_giftcard::before { content: "\e8f6"; }
.wpbc_icn_wallet_membership::before { content: "\e8f7"; }
.wpbc_icn_wallet_travel::before { content: "\e8f8"; }
.wpbc_icn_wallpaper::before { content: "\e1bc"; }
.wpbc_icn_warehouse::before { content: "\ebb8"; }
.wpbc_icn_warning::before { content: "\e002"; }
.wpbc_icn_warning_amber::before { content: "\f083"; }
.wpbc_icn_wash::before { content: "\f1b1"; }
.wpbc_icn_watch::before { content: "\e334"; }
.wpbc_icn_watch_later::before { content: "\e924"; }
.wpbc_icn_watch_off::before { content: "\eae3"; }
.wpbc_icn_water::before { content: "\f084"; }
.wpbc_icn_water_damage::before { content: "\f203"; }
.wpbc_icn_water_drop::before { content: "\e798"; }
.wpbc_icn_waterfall_chart::before { content: "\ea00"; }
.wpbc_icn_waves::before { content: "\e176"; }
.wpbc_icn_waving_hand::before { content: "\e766"; }
.wpbc_icn_wb_auto::before { content: "\e42c"; }
.wpbc_icn_wb_cloudy::before { content: "\e42d"; }
.wpbc_icn_wb_incandescent::before { content: "\e42e"; }
.wpbc_icn_wb_iridescent::before { content: "\e436"; }
.wpbc_icn_wb_shade::before { content: "\ea01"; }
.wpbc_icn_wb_sunny::before { content: "\e430"; }
.wpbc_icn_wb_twighlight::before { content: "\ea02"; }
.wpbc_icn_wb_twilight::before { content: "\e1c6"; }
.wpbc_icn_wc::before { content: "\e63d"; }
.wpbc_icn_web::before { content: "\e051"; }
.wpbc_icn_web_asset::before { content: "\e069"; }
.wpbc_icn_web_asset_off::before { content: "\e4f7"; }
.wpbc_icn_web_stories::before { content: "\e595"; }
.wpbc_icn_webhook::before { content: "\eb92"; }
.wpbc_icn_wechat::before { content: "\ea81"; }
.wpbc_icn_weekend::before { content: "\e16b"; }
.wpbc_icn_west::before { content: "\f1e6"; }
.wpbc_icn_whatsapp::before { content: "\ea9c"; }
.wpbc_icn_whatshot::before { content: "\e80e"; }
.wpbc_icn_wheelchair_pickup::before { content: "\f1ab"; }
.wpbc_icn_where_to_vote::before { content: "\e177"; }
.wpbc_icn_widgets::before { content: "\e1bd"; }
.wpbc_icn_wifi::before { content: "\e63e"; }
.wpbc_icn_wifi_1_bar::before { content: "\e4ca"; }
.wpbc_icn_wifi_2_bar::before { content: "\e4d9"; }
.wpbc_icn_wifi_calling::before { content: "\ef77"; }
.wpbc_icn_wifi_calling_3::before { content: "\f085"; }
.wpbc_icn_wifi_channel::before { content: "\eb6a"; }
.wpbc_icn_wifi_find::before { content: "\eb31"; }
.wpbc_icn_wifi_lock::before { content: "\e1e1"; }
.wpbc_icn_wifi_off::before { content: "\e648"; }
.wpbc_icn_wifi_password::before { content: "\eb6b"; }
.wpbc_icn_wifi_protected_setup::before { content: "\f0fc"; }
.wpbc_icn_wifi_tethering::before { content: "\e1e2"; }
.wpbc_icn_wifi_tethering_error::before { content: "\ead9"; }
.wpbc_icn_wifi_tethering_error_rounded::before { content: "\f086"; }
.wpbc_icn_wifi_tethering_off::before { content: "\f087"; }
.wpbc_icn_wind_power::before { content: "\ec0c"; }
.wpbc_icn_window::before { content: "\f088"; }
.wpbc_icn_wine_bar::before { content: "\f1e8"; }
.wpbc_icn_woman::before { content: "\e13e"; }
.wpbc_icn_woo_commerce::before { content: "\ea6d"; }
.wpbc_icn_wordpress::before { content: "\ea9f"; }
.wpbc_icn_work::before { content: "\e8f9"; }
.wpbc_icn_work_history::before { content: "\ec09"; }
.wpbc_icn_work_off::before { content: "\e942"; }
.wpbc_icn_work_outline::before { content: "\e943"; }
.wpbc_icn_workspace_premium::before { content: "\e7af"; }
.wpbc_icn_workspaces::before { content: "\e1a0"; }
.wpbc_icn_workspaces_filled::before { content: "\ea0d"; }
.wpbc_icn_workspaces_outline::before { content: "\ea0f"; }
.wpbc_icn_wrap_text::before { content: "\e25b"; }
.wpbc_icn_wrong_location::before { content: "\ef78"; }
.wpbc_icn_wysiwyg::before { content: "\f1c3"; }
.wpbc_icn_yard::before { content: "\f089"; }
.wpbc_icn_youtube_searched_for::before { content: "\e8fa"; }
.wpbc_icn_zoom_in::before { content: "\e8ff"; }
.wpbc_icn_zoom_in_map::before { content: "\eb2d"; }
.wpbc_icn_zoom_out::before { content: "\e900"; }
.wpbc_icn_zoom_out_map::before { content: "\e56b"; }
/* == L O A D E R ===================================================================================================   //FixIn: 10.0.0.25 */

/* == Blur calendar == */
.wpbc_calendar_blur_small{
    filter: blur(0.7px);
    pointer-events: none;
    user-select: none;
}
.wpbc_calendar_blur{
    filter: blur(1.2px);
    pointer-events: none;
    user-select: none;
}
.wpbc_spins_loader_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    z-index: 1000;
}

/* == Loader Standard == */
.wpbc_spins_loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #2d6281;
    -webkit-animation: wpbc_spin_r 2s linear infinite;      /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 2s linear infinite;              /* Chrome, Firefox 16+, IE 10+, Opera */
}
.wpbc_spins_loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #73983c;
    -webkit-animation: wpbc_spin_r 3s linear infinite;      /* Chrome, Opera 15+, Safari 5+ */
      animation: wpbc_spin_r 3s linear infinite;            /* Chrome, Firefox 16+, IE 10+, Opera */
}
.wpbc_spins_loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #af2e2e;
    -webkit-animation: wpbc_spin_r 1.5s linear infinite;    /* Chrome, Opera 15+, Safari 5+ */
      animation: wpbc_spin_r 1.5s linear infinite;          /* Chrome, Firefox 16+, IE 10+, Opera */
}

/* == Loader mini == */
.wpbc_spins_loader_mini {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #2d6281;
    -webkit-animation: wpbc_spin_r 1.1s linear infinite;    /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 1.1s linear infinite;            /* Chrome, Firefox 16+, IE 10+, Opera */
}
.wpbc_spins_loader_mini:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #73983c;
    -webkit-animation: wpbc_spin_r 1.75s linear infinite;   /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 1.75s linear infinite;           /* Chrome, Firefox 16+, IE 10+, Opera */
}
.wpbc_spins_loader_mini:after {
     content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #af2e2e;
    -webkit-animation: wpbc_spin_r 1.85s linear infinite;   /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 1.85s linear infinite;           /* Chrome, Firefox 16+, IE 10+, Opera */
}

.wpbc_one_spin_loader_mini {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-radius: 50%;
    border: 2px solid #2d6281;
    border-top-color: transparent !important;
    -webkit-animation: wpbc_spin_r 1.1s linear infinite;    /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 1.1s linear infinite;            /* Chrome, Firefox 16+, IE 10+, Opera */
}

.wpbc_one_spin_loader_micro {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    border: 2px solid #2d6281;
    border-top-color: transparent !important;
    -webkit-animation: wpbc_spin_r 0.8s linear infinite;    /* Chrome, Opera 15+, Safari 5+ */
    animation: wpbc_spin_r 0.8s linear infinite;            /* Chrome, Firefox 16+, IE 10+, Opera */
}
/* == Spin animation (clockwise and apposite) == */
@-webkit-keyframes wpbc_spin_r {
    0%   {
        -webkit-transform: rotate(0deg);         /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);            /* IE 9 */
        transform: rotate(0deg);                /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);      /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);          /* IE 9 */
        transform: rotate(360deg);              /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes wpbc_spin_r {
    0%   {
        -webkit-transform: rotate(0deg);         /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);            /* IE 9 */
        transform: rotate(0deg);                /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);      /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);          /* IE 9 */
        transform: rotate(360deg);              /* Firefox 16+, IE 10+, Opera */
    }
}

@-webkit-keyframes wpbc_spin_l {
    100%   {
        -webkit-transform: rotate(0deg);        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);            /* IE 9 */
        transform: rotate(0deg);                /* Firefox 16+, IE 10+, Opera */
    }
    0% {
        -webkit-transform: rotate(-360deg);     /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(-360deg);         /* IE 9 */
        transform: rotate(-360deg);             /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes wpbc_spin_l {
    0%   {
        -webkit-transform: rotate(0deg);        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);            /* IE 9 */
        transform: rotate(0deg);                /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(-360deg);     /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(-360deg);         /* IE 9 */
        transform: rotate(-360deg);             /* Firefox 16+, IE 10+, Opera */
    }
}


/* Loading message 	//FixIn: 10.0.0.25 */
.wpbc_spins_loading_container{
	text-align: center;
	font-size: 14px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	height: 90px;
	text-shadow: none;
}
.wpbc_spins_loading_container .wpbc_booking_form_spin_loader{
	position: relative;
}
.wpbc_spins_loading_container span {
	padding: 0;
	margin: 0 0 0 35px;
    font-size: 15px;
}/**
 * @version 1.0
 * @package: Booking Calendar
 * @category: Front-End
 * @author wpdevelop
 *
 * @web-site https://wpbookingcalendar.com/
 * @email info@wpbookingcalendar.com 
 * 
 * @modified 2023-11-11
 */
:root {
    --wpbc_form-button-light-size-height: 43px;
}
.booking_form * ,
.bk_calendar_frame *{
  /*! -webkit-box-sizing: border-box; */
  /*! -moz-box-sizing: border-box; */
  /*! box-sizing: border-box; */
}
/* Booking form structure   //FixIn: 8.0.1.5  */
.wpbc_booking_form_structure {

}
.wpbc_booking_form_structure .wpbc_structure_calendar {

}
.wpbc_booking_form_structure .wpbc_structure_form {

}
/* form_center - in Free version */
.wpbc_booking_form_structure.wpbc_form_center,
.wpbc_booking_form_structure.wpbc_form_center > .wpbc__form__div{         /* FixIn: 8.8.3.10  */
    display:flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
}
.wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_calendar,
.wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_form {
    flex: 1 1 auto;
    margin-bottom: 1em;
}
    /* FixIn: 9.8.12.1  - fix sizing in "booking form  center" template" */
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_calendar,
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_form {
        width: auto;
        width: Min(350px, 100%);
    }
    .wpbc_booking_form_structure.wpbc_form_center .wpdev-form-control-wrap {
        display:flex;
    }
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_times_selector ,
    .wpbc_booking_form_structure.wpbc_form_center .wpbc-form-element-checkbox {
        max-width: 24em;
        justify-content:  flex-start;
    }
@media (max-width: 782px) {
    /*.wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_form,
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_calendar {
        margin:0;
        width: 100%;
    }*/
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_calendar .wpbc_change_over_triangle {
        width:100%;
    }
    .wpbc_booking_form_structure.wpbc_form_center .wpbc_times_selector ,
    .wpbc_booking_form_structure.wpbc_form_center .wpbc-form-element-checkbox {
        max-width: 100%;
    }
}
/* form_dark */
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form label{
    color:#ddd;
}
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form input[type="text"],
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form textarea,
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form select{
    color:#000;
}
/* form_right //FixIn: 9.6.1.3 */
.wpbc_booking_form_structure.wpbc_form_right {
	width:100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_calendar {
    margin-right:20px;
    flex: 1 1 auto;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form {
    /*float:left;*/
    margin-top:-20px;
    flex: 1 1 300px;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
/*  FixIn: 9.6.2.6 */
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form  > * {
    margin: 15px 0;
    flex: 0 1 100%;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form  .form-group.wpbc-form-element-rangetime,
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form  .form-group.wpbc-form-element-textarea,
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form  .form-group:last-child{
    flex: 1 1 auto;
    width:100%;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form  .form-group.wpbc-form-element-textarea textarea{
    width:90%;
}
/* form footer */
.wpbc_booking_form_footer {
	clear:both;
	width:100%;
}
/* Booking form General structure */
form.booking_form {
    text-align: left;
}
.booking_form .booking_form_div {
    margin-left: auto;
    margin-right: auto;
}
.booking_form .form-group {
    margin:15px 0px;
}
/* -- Booking resource selection ------------------------------------------------------------------------------------ */
.resource_selection_div{
    margin:40px 0;
}
.resource_selection_div select{
    margin:0 1em;
}
/* TEXT, SELECT, TEXTAREA *****************************************************/
.booking_form_div textarea,
.booking_form_div input[type="text"],
.booking_form_div select {
    border-color: #DFDFDF;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    vertical-align: baseline;
}
/*.resource_selection_div select,                                                       !* FixIn: 7.2.0.2 *!*/
/*.booking_form_div select,                                                       !* FixIn: 7.2.0.2 *!*/
/*.booking_form_div textarea,*/
/*.booking_form_div input[type="text"] {*/
/*    box-sizing: content-box;*/
/*    -mox-box-sizing: content-box;*/
/*    -webkit-box-sizing: content-box;*/
/*    height:28px;*/
/*    padding:2px 8px;    */
/*}*/
/* Height */
/*.booking_form_div textarea,  */
/*.booking_form_div select[multiple], */
/*.booking_form_div select[size]{*/
/*    height:auto;*/
/*}*/

/* Width */

/*
.booking_form .form-group .controls select,
.booking_form select,
.booking_form textarea,
.booking_form input[type="text"]{
    width:250px;
}
 */

/* Time inputs at the form */
.booking_form input.wpdev-validates-as-time {
    width: 50px;
}
.booking_form input[type="button"],
.booking_form input[type="submit"] {
    width:auto;
    vertical-align: middle;
}

.booking_form .wpdev-checkbox .wpdev-list-item,
.booking_form .wpdev-radio .wpdev-list-item {
    margin-right: 0.5em;
}
div.wpbc_container.wpbc_form .booking_form .wpdev-radio .wpdev-list-item input,
div.wpbc_container.wpbc_form .booking_form .wpdev-checkbox .wpdev-list-item input{
    /*margin-top: 3px;*/
}
/* Checkbox, Radio *
.booking_form .wpdev-checkbox .wpdev-list-item,
.booking_form .wpdev-radio    .wpdev-list-item{
    padding: 0 0.5em 0 0;
    vertical-align: bottom;
}
.booking_form .wpdev-checkbox .wpdev-list-item input[type="checkbox"],
.booking_form .wpdev-radio    .wpdev-list-item input[type="checkbox"] {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
.booking_form .wpdev-checkbox .wpdev-list-item input[type="radio"],
.booking_form .wpdev-radio    .wpdev-list-item input[type="radio"] {
    margin: 1px 0 0;
    padding: 0;
    vertical-align: middle;
}
*/
/* Inline element in a row  2023-11-17   //FixIn: 9.8.8.1  *
.wpbc_container_booking_form .wpbc__field .wpbc_row_inline  .wpdev-list-item input[type="radio"]{
    vertical-align: baseline;
}
*/
/* FixIn: 9.6.2.5 */
.booking_form input[type="text"]:focus,
.booking_form input[type="password"]:focus,
.booking_form input[type="color"]:focus,
.booking_form input[type="date"]:focus,
.booking_form input[type="datetime"]:focus,
.booking_form input[type="datetime-local"]:focus,
.booking_form input[type="email"]:focus,
.booking_form input[type="month"]:focus,
.booking_form input[type="number"]:focus,
.booking_form input[type="search"]:focus,
.booking_form input[type="tel"]:focus,
.booking_form input[type="time"]:focus,
.booking_form input[type="url"]:focus,
.booking_form input[type="week"]:focus,
.booking_form input[type="checkbox"]:focus,
.booking_form input[type="radio"]:focus,
.booking_form select:focus,
.booking_form textarea:focus{
    box-shadow: 0 0 2px #2d7eff;
    /*! border: 2px solid #567cb8; */
    outline: none;
    border-color: #567cb8;
}
/*
.booking_form label.wpdev-list-item-label,
.booking_form label.wpdev-list-item-label:hover {
    display: inline;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 400;
}*/
/* Disabled option in selectbox */
.booking_form_div select option.booked,
.booking_form_div select option:disabled{
   color:#ddd;
}
/* Visitors selection -  small selectboxes */
.booking_form_div select.col-md-1 {
    float: none;
    padding: 2px 8px;
    min-width: 4em;
}

/* Booking Form Buttons *******************************************************/
.wpbc-payment-form .btn,
.wpbc-payment-form .button,
.booking_form_div .btn,
.booking_form_div .button,
.booking_form_div .submit,
.booking_form_div .button-secondary {
    -moz-background-clip: border;
    -moz-background-inline-policy: continuous;
    -moz-background-origin: padding;
    background: #f7f7f7 none repeat scroll 0 0;
    border-color: #ccc;
    box-shadow: 0 1px 0 #eee;
    color: #555;
    vertical-align: top;
    white-space: normal;
}
.booking_form_div .submit,
.booking_form_div .button,
.booking_form_div .button-primary,
.booking_form_div .button-secondary,
.booking_form_div .button-highlighted,
.booking_form_div #postcustomstuff .submit input {
    -moz-border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-box-sizing: content-box;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 11px !important;
    line-height: 16px;
    padding: 2px 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0px;
    float: right;
}
/* Fix Overwrite issue by theme */
.booking_form_div input.btn-primary:hover {
    background: #0044CC !important;
}
/* Pointer */
.booking_form_div input[type="button"]:hover,
.wpbc-payment-form input[type="button"]:hover {
    cursor: pointer !important;
}
/* not allowed if disabled */
.booking_form_div input[type="button"]:disabled:hover,
.wpbc-payment-form input[type="button"]:disabled:hover {
    cursor: not-allowed !important;
}

/* CAPTCHA ********************************************************************/
.wpbc_text_captcha_container{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.wpbc_container_booking_form .booking_form_div img.captcha_img {
    vertical-align: middle;
    box-shadow: none;
    margin-left: 1em;
    align-self: center;
}
.wpbc_container_booking_form .booking_form_div .captachinput {
    width: 120px;
    flex: 0 1 10em;
    margin: 0;
}

.booking_form_div hr {
    margin: 6px 0 12px;
    border: none;
    color: transparent;
    background: #eee;
    height: 1.2px;
    box-shadow: none;
}

/* Widget container */
.widget_wpdev_booking {
    width:100%;
    float:left;
    margin:5px 0px;
}
.widget_wpdev_booking .booking_form input[type="radio"],
.widget_wpdev_booking .booking_form input[type="checkbox"] {
    width:auto;
}

/* Each field in the booking form has this wrap */
.wpdev-form-control-wrap{
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    /*width: auto;*/
    margin: 0.25em 0;

    max-width: Min(30em, 100%);
    max-width: 100%;
    width: 340px;
    min-width: Min(8em, 100%);
}
@media (max-width: 782px) {
    .wpdev-form-control-wrap {
        display: flex;
        width: 100%;
    }
    .wpdev-form-control-wrap.wpbc_wrap_checkbox {
        display: inline-flex;
        width: auto;  /* Otherwise incorrectly showing checkboxes on new line:  "Fee: [checkbox fee '']" */
    }
}
/* Wrap  of options in checkboxes / radio  buttons*/
.wpdev-form-control-wrap .wpdev-radio,
.wpdev-form-control-wrap .wpdev-checkbox {
    line-height:100%;
}
.wpdev-form-control-wrap .wpdev-list-item {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    line-height:100%;

    /*align-items: first baseline;*/
    line-height: 1.5;

    /* FixIn: 10.3.0.3 */
    line-height: 2;
    display: inline-block;
}
    /* For checkboxes Aligning correctly. */
    .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item {
        flex-flow: row nowrap;
    }
    .wpbc_container_booking_form .wpbc__row .wpbc_row_inline .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item label,            /* //FixIn: 9.8.8.1 */
    .wpbc_container_booking_form .wpbc__row .wpbc_row_inline .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item label:hover,      /* //FixIn: 9.8.8.1 */
    .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item label,
    .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item label:hover{
        display: inline-block;
    }
    .wpbc_wrap_checkbox.wpdev-form-control-wrap .wpdev-list-item label *{
        vertical-align: baseline;
    }
.wpdev-form-control-wrap .wpdev-list-item > * {
    margin: auto;
}
.wpdev-form-control-wrap .wpdev-list-item label.wpdev-list-item-label{
    margin-top: 0;
    align-self: center;
}
div.wpbc_container.wpbc_form .wpdev-form-control-wrap .wpdev-list-item input[type="checkbox"],
div.wpbc_container.wpbc_form .wpdev-form-control-wrap .wpdev-list-item input[type="radio"]{
    /*margin-top: 3px;*/
    margin-right: 0.5em;
    /* FixIn: 10.3.0.3 */
    margin: 0 0.1em;
    vertical-align: middle;
}
div.wpbc_container.wpbc_form .wpdev-form-control-wrap .wpdev-list-item input[type="checkbox"]{
    margin-top: -2px;
}
/*
.wpdev-form-control-wrap.wpbc_wrap_checkbox .wpdev-list-item > *,
.wpdev-form-control-wrap.wpbc_wrap_checkbox .wpdev-list-item > *:hover {
    margin: auto;
    display: inline-block;
}
 */
/* = Old Messages =================================================================================================== */
/* Under calendar */
.widget_wpdev_booking .booking_form .wpdev-help-message.wpdev-element-message {
    font-size: 0.85em;
    margin: 10px 4px 4px !important;
}
/* Under fields */
.widget_wpdev_booking .booking_form .wpdev-form-control-wrap .wpdev-help-message {
    font-size: 0.85em;
    margin: 2px 8px 2px 0 !important;
}
/* Messages in Ajax request after making booking  *****************************/
.submiting_content {
    border: 1px solid #5C5;
    font-size: 15px;
    font-weight: 600;
    height: 45px;
    margin: 15px auto;
    padding: 15px 10px;
    text-align: center;

    width: 80%;
    line-height: 1.5em;
    padding: 10px 10% 14px !important;
}
/* Error Message    FixIn: 8.7.11.10  */
.wpdevelop .alert-danger{
    background-image: none;
    background-color: #fff;
    border-radius: 0 2px 2px 0;
    border-width:1px;
    border-left:4px solid #c23b3b;
}
/* Warning Messages  //FixIn: 9.6.2.4    */
.wpdev-help-message.alert.alert-warning,
.wpdev-help-message .alert.alert-warning {
    color: #916c34;

    background: #fff;
    box-shadow: 0 0px 3px #e0e0e0;
    border: 1px solid #ded1bc;
    border-left: 3px solid #e09118;
    border-radius: 2px;

    margin: 2px 2px 2px 0px;
    padding: 0.5em 1em;

    vertical-align: top;
    font-size: 0.9rem;
    line-height: 1.4rem;
    opacity: 1;
}

.booking_form .wpdev-checkbox .wpdev-help-message.alert.alert-warning {
    line-height: inherit !important;
}
.wpdev-help-message.wpdev-element-message {
    padding :5px 5px 4px;
    margin: 10px 2px;
    vertical-align: middle;
    display:inline-block;
}
/* Thank you Messages   //FixIn: 9.6.2.3 */
.submiting_content.wpdev-help-message.alert.alert-warning.alert-success {
  border: 1px solid #d5d5d5;
  border-left: 5px solid #88b706;
  background: #fff;
  box-shadow: 0 1px 10px #ddd;
  color: #707070;
  padding: 11px 10px !important;
  margin: auto;
  height: auto;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 2em !important;
  width: 94%;
}
.form_bk_messages {
    display: none;
    float: left;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #9DA;
    padding: 3px 10px;
    margin: 2px 5px;
    background: #FEF9ED;
    color: #555;
    margin: 15px auto;
    padding: 5px 10px;
    text-align: center;
    width: 100%;
    clear: both;
}

/* ================================================================================================================== */
/*  New Messages Style  --------------------------------------------------------------------------------------------- */
/* ================================================================================================================== */
/* Messages near form fields - left / right side  ------------------------------------------------------------------- */
.wpbc_front_end__message_container_right,
.wpbc_front_end__message_container_left {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 1em;
}
.wpbc__field .wpbc_front_end__message_container_right,
.wpbc__field .wpbc_front_end__message_container_left{
    margin: 10px 1em 10px 0;
}
.wpbc_front_end__message_container_right .wpbc_front_end__message,
.wpbc_front_end__message_container_left .wpbc_front_end__message{
    flex: 0 1 auto;
    margin: 0;
    line-height: 1.8em;
    border-radius: 2px;
}
/* Do not display icons in messages near fields */
.wpbc_front_end__message_container_right .wpbc_front_end__message .menu_icon,
.wpbc_front_end__message_container_left .wpbc_front_end__message .menu_icon{
    display:none;
}
.wpbc_front_end__message_container_right .wpbc_front_end__message.wpbc_fe_message_warning,
.wpbc_front_end__message_container_left .wpbc_front_end__message.wpbc_fe_message_warning {
    border-color: #ded1bc;
    border-left-color: #e09118;
    color: #916c34;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);


    border: none;
    padding: 1px 20px 1px 0px;
    color: var(--wpbc_form-label-error-color);
    text-shadow: none;
    box-shadow: none;
}
.wpbc_front_end__message_container_right .wpbc_front_end__message.wpbc_fe_message_error,
.wpbc_front_end__message_container_left .wpbc_front_end__message.wpbc_fe_message_error {
    border-color: #dca7a7;
    border-left-color: #c23b3b;
    color: #a94442;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* Full row messages ------------------------------------------------------------------------------------------------ */
.wpbc_front_end__message {
    /*background: #ffffff;*/
    border-left: 4px solid #fff;
                                /*box-shadow: 0 1px 1px 0 rgba(192, 192, 192, 0.55);*/
    margin: 10px 0;
    padding: 1px 20px 1px 10px;
    line-height: 2.5em;
    text-align:left;
    border-top: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
}
.wpbc_fe_message_error.wpbc_front_end__message {
    background: #ffffff;
}
/* Icon */
.wpbc_front_end__message i.menu_icon {
    margin: 0 0.5em 0 0;
}
/* Standard messages - where LEFT border has different color */
.wpbc_front_end__message.wpbc_fe_message_info {
    border-left-color: #00a0d2;
}
.wpbc_front_end__message.wpbc_fe_message_success {
    border-left-color: #46b450;
}
.wpbc_front_end__message.wpbc_fe_message_warning {
    border-left-color: #e09118;
}
.wpbc_front_end__message.wpbc_fe_message_error {
    border-left-color: #c23b3b;
}
/* Alt messages - where border also has different color */
                    .wpbc_front_end__message.wpbc_fe_message_info i.menu_icon { color: #0084ad; }
.wpbc_fe_message_alt.wpbc_front_end__message.wpbc_fe_message_info {
    border: 2px solid #00a0d2;
    background: #fff;
    border-left: 4px solid #00a0d2;
    box-shadow: 0 0 4px #cfcfcf;
}
                    .wpbc_front_end__message.wpbc_fe_message_success i.menu_icon { color: #00810b; }
.wpbc_fe_message_alt.wpbc_front_end__message.wpbc_fe_message_success {
    border: 2px solid #00950d;
    background: #fff;
    border-left: 4px solid #00950d;
    box-shadow: 0 0 4px #cfcfcf;
}
                    .wpbc_front_end__message.wpbc_fe_message_warning i.menu_icon { color: #c17400; }
.wpbc_fe_message_alt.wpbc_front_end__message.wpbc_fe_message_warning {
    border: 2px solid #c17400;
    background: #fff;
    border-left: 4px solid #e09118;
    box-shadow: 0 0 4px #cfcfcf;
}
                    .wpbc_front_end__message.wpbc_fe_message_error i.menu_icon { color: #af5050; }
.wpbc_fe_message_alt.wpbc_front_end__message.wpbc_fe_message_error {
    border: 2px solid #af5050;
    background: #fff;
    border-left: 4px solid #af5050;
    box-shadow: 0 0 4px #cfcfcf;
}
/* ================================================================================================================== */

/* Booked Times Title in tooltip */
.wpbc_booked_times_word {
    font-weight: 600;
}
/* Garbage */
.booking_form_garbage {
    display:none;
}
/* Help block */
.wpdevelop .booking_form .help-block {
    margin-bottom: 0;
    margin-top: 0;
}
/* Admin bar count */
#wp-admin-bar-booking_options a span#booking-count {
    background: none repeat scroll 0 0 #EEE;
    border-radius: 10px 10px 10px 10px;
    color: #333;
    display: inline;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    text-shadow: none;
}
#wp-admin-bar-booking_options a:hover span#booking-count {
    background: none repeat scroll 0 0 #FFF;
    color: #000;
}

/* Pop Over Styles ************************************************************/
.wpdevelop.popover {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  box-shadow: none;
  width: auto !important;
  z-index: 2147483647 !important;

}
.wpdevelop.popover.top .arrow {
    border-top: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.bottom .arrow {
    border-bottom: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.left .arrow {
    border-left: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.right .arrow {
    border-right: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop .popover-inner {
    background: none repeat scroll 0 0 rgba(140, 140, 140, 0.8);
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 3px;
    width: 150px;
    color: #111;
}
.wpdevelop .popover-inner .popover-title {
    background-color: #FFF;
    border-bottom: 0px solid #EEE;
    border-radius: 3px 3px 0 0;
    line-height: 1;
    padding: 0px; /*9px 15px;*/
    font-size: 13px;
}
.wpdevelop .popover-inner .popover-content {
    background-clip: padding-box;
    background-color: #FFF;
    border-radius: 0 0 3px 3px;
    padding: 14px;
}
.wpdevelop .popover-content,
.wpdevelop .popover-content p,
.wpdevelop .popover-content ul,
.wpdevelop .popover-content ol {
    color: #111;
}

/*  In Calendar Tooltip   ***********************************************/
.wpbc_calendar_tooltip_booking_details {
    font-weight:normal !important;
    font-size:11px !important;
}
/*  Rotate Icons  for Loading   ***********************************************/
.wpbc_animation_pause:before,
.wpbc_animation_pause {
    animation-play-state: paused !important;
}
.wpbc_icn_autorenew::before,
.wpbc_spin,
.wpbc_spin:before {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.wpbc_rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.wpbc_rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.wpbc_rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.wpbc_flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.wpbc_flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* Mobile *********************************************************************/
@media (max-width: 782px) {
    .wpdevelop input[type="text"],
    .wpdevelop select{
        font-size: 1.1em;
        height: 36px;                                                           /* FixIn: 7.2.0.2 */
        padding: 4px 8px;
    }
    /*  //FixIn: 8.0.1.5 */
	.wpbc_booking_form_structure.wpbc_form_right,
	.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_calendar,
	.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form {
		width: 100%;
		float: none;
		margin-right: 0px;
	}
}

/* Booking form CSS for more clear showing hints //FixIn: 8.7.3.5 */
.booking_form .form-hints-dev {
    margin:1em 0;
    border-bottom: 1px solid #eee;
}
.booking_form .form-hints-dev .dates-hints-dev {
    padding: 2px 4px;
    font-size: 85%;
    color:#c7254e;
    background-color:#f9f2f4;
    border-radius: 2px;
}

/* ================================================================================================================== */
/*  ==  DEPRECATED  SECTION  ==                                                                                       */
/* ================================================================================================================== */
/* Different Forms  S T R U C T U R E   *******************************************************************************/
/* Booking Form - 2 columns width times   //FixIn: 9.5.5.3 */
                .wpbc_row {
                    display: flex;
                    flex-flow: row wrap;
                    justify-content: flex-start;
                    align-items: flex-start;
                    margin-top: 1em;
                }
                .wpbc_col {
                    flex: 0 1 1px;
                    margin-right: 4.1em;
                }
                .wpbc_col.wpbc_cal {
                    flex: 1 1 50%;
                    margin:1em 0;
                }
                @media (max-width: 782px) {
                    .wpbc_col {
                        flex: 0 1 auto;
                        margin-right: 0;
                        min-width: 100%;
                    }
                }
                .wpbc_col.wpbc_times {
                    flex: 1 1 50%;
                    margin: 1em 0;
                }
                .wpbc_col.wpbc_cal > *,
                .wpbc_col.wpbc_times > * {
                    width:93%;
                }
/* Booking Form - 2 columns   //FixIn: 8.7.7.15 */
                .wpbc_form_columns {
                    width: 99%;
                    margin-top:1em;
                }
                .wpbc_form_columns .wpbc_form_row {
                    display: flex;
                    flex-flow: row wrap;
                    justify-content: space-between;
                }
                .wpbc_form_columns .wpbc_form_field {
                    flex: 1 1 14em;

                    display: flex;
                    flex-flow: row wrap;
                    justify-content: flex-start;
                    align-items: flex-start;
                    align-content: flex-start;
                    padding: 0 3% 0 0;
                    margin: 0.7em 0;
                }
                .wpbc_form_field.wpbc_cal_field {
                    display: block;
                }
                .wpbc_form_field.wpbc_cal_field > * {
                    max-width:95%;
                }
                    .wpbc_form_field.wpbc_cal_field .bk_calendar_frame {
                        margin:-0.75em 0 0;
                    }
                @media (max-width: 782px) {
                    .wpbc_form_columns .wpbc_form_field {
                        flex: 1 1 100%
                    }
                }
                .wpbc_form_columns .wpbc_form_field label,
                .wpbc_form_columns .wpbc_form_field label:hover {
                    flex: 0 1 auto;
                    margin-right: 2em;
                    display: flex;
                    flex-flow: column nowrap;
                    justify-content: center;
                    font-weight: 600;
                    /*width: 200px;*/
                    /*margin-top: 1em;*/
                }
                .wpbc_form_columns .wpbc_form_field .wpdev-form-control-wrap {
                    width: 100%;
                }
                .booking_form .wpbc_form_columns .form-group .controls select,
                .booking_form .wpbc_form_columns select,
                .booking_form .wpbc_form_columns input[type="text"] {
                    width: 95%;
                }
                .booking_form .wpbc_form_columns textarea {
                    width: 98%;
                }
/* Different Forms */
/* Booking Form - 3 columns   //FixIn: 8.8.2.6 */
.wpbc_form_columns_general .wpbc_form_row_general {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.wpbc_form_columns_general .wpbc_form_field_general{
    flex: 0 1 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: baseline;
    padding: 0 2% 0 0;
}
.wpbc_form_columns_general .wpbc_form_field_general:nth-child(1){
    min-width: 341px;
    flex: 0 1 auto;
}
@media (max-width: 782px) {
    .wpbc_change_over_triangle {
        width:100%;
    }
    .wpbc_form_columns_general .wpbc_form_field_general:nth-child(1),
    .wpbc_form_columns_general .wpbc_form_field_general:nth-child(2){
        min-width: 100%;
        flex: 1 1 auto;
        margin-bottom: 2em;
    }
}
.wpbc_form_columns_general .wpbc_form_field_general:nth-child(2){
    flex: 1 1 0;
    padding: 0;
    /*margin-top: -2.5em;*/
}
.wpbc_debug {
    /*float: left;*/
    margin-right: 2em;
}
.wpbc_debug:last-of-type{
    float:none;
}


/* ================================================================================================================== */
/* == Version: 9.8 ==                                                                                                 */
/* ================================================================================================================== */

/**
 * .wpbc_form_columns   ->  erased
 * .wpbc_form_row       -> .wpbc__row
 * .wpbc_form_field     -> .wpbc__field
 * .wpbc_cal_field      -> .wpbc__cal
 * ?
 * .wpbc_times          -> .wpbc__times
 * .wpbc_col            -> .wpbc__field
 * ?? wpbc_form_row_general
 */
/* ------------------------------------------------------------------------------------------------------------------ */
/* == Templates  of  Booking Forms  -  R O W S  ==                                                                                 */
/* ------------------------------------------------------------------------------------------------------------------ */
    .wpbc_container_booking_form .bk_calendar_frame,
    .wpbc_container_booking_form .block_hints {
        margin-bottom: 5px;
    }
    .wpbc_container_booking_form .wpbc_calendar_wraper {
        margin-bottom: 10px;
    }
    /*@media (max-width: 782px) {*/
    /*@media (max-width: 400px) {*/
    /*    .wpbc_container_booking_form .bk_calendar_frame {*/
    /*        width: 100% !important;*/
    /*        max-width: 100% !important;*/
    /*    }*/
    /*}*/
    .wpbc_container_booking_form {
        width: 99%;
        margin-top:1em;
    }
    .wpbc_container_booking_form .wpbc__row {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
        width:100%;
    }
    .wpbc_container_booking_form .wpbc__field:not(.wpbc__cal) {
        flex: 1 1 14em;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: normal;
        padding: 0 3% 0 0;
        margin: 0.7em 0;
    }
    .wpbc_container_booking_form .wpbc__field:first-child{
        padding-left:0;
    }
    .wpbc_container_booking_form .wpbc__field:last-child{
        padding-right:0;
    }
    .wpbc_container_booking_form .wpbc__field .wpbc_calendar_wraper {
        width:100%;
    }
    @media (max-width: 782px) {
        .wpbc_container_booking_form .wpbc__field:not(.wpbc__cal) {
            flex: 1 1 100%;
            padding: 0;
        }
    }
    .wpbc_container_booking_form .wpbc__spacer{
        flex:0 1 auto;
        padding:0;
        margin: 0;
    }
    .wpbc__field.wpbc__cal {
        /*! display: block; */
    }
    .wpbc__field.wpbc__cal > * {
        max-width:100%;
    }
    .wpbc__field .bk_calendar_frame {
        margin-top: calc(0.25em + 8px);
    }
    .wpbc__field.wpbc__cal .bk_calendar_frame {
        margin:-0.75em 0 0;
    }
    .wpbc_container_booking_form .wpbc__field label,
    .wpbc_container_booking_form .wpbc__field label:hover {
        flex: 0 1 auto;
        /*margin-right: 2em;*/
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        font-weight: 600;
    }
    .wpbc_container_booking_form .wpbc__field .wpdev-form-control-wrap {
        width: 100%;
    }
    .wpbc_container_booking_form .wpbc__field .wpdev-form-control-wrap.wpbc_wrap_radio,
    .wpbc_container_booking_form .wpbc__field .wpdev-form-control-wrap.wpbc_wrap_checkbox  {
        align-self: center;
    }
    .wpbc_container_booking_form .wpbc__field .form-group .controls select,
    .wpbc_container_booking_form .wpbc__field select,
    .wpbc_container_booking_form .wpbc__field input[type="text"] {
        width: 100%;
    }
    .wpbc_container_booking_form .wpbc__field textarea,
    .wpbc_container_booking_form textarea {
        width: 100%;
    }
    /* Inline element in a row  2023-11-17   //FixIn: 9.8.8.1  */
    .wpbc_row_inline {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        flex: 1 1 auto;
    }
    .wpbc_container_booking_form .wpbc__row .wpbc_row_inline label {
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .wpbc_container_booking_form .wpbc__row .wpbc_row_inline       .wpdev-form-control-wrap,
    .wpbc_container_booking_form .wpbc__row .wpbc_row_inline label .wpdev-form-control-wrap {
        width: auto;
        margin: 0 5px;
    }
/* ------------------------------------------------------------------------------------------------------------------ */
/* == Calendar Next to Form ==                                                                                        */
/* ------------------------------------------------------------------------------------------------------------------ */
.wpbc_sections {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.wpbc_section_50 {
    flex: 1 1 48%;
    margin-bottom: 2em;
}
.wpbc_section_spacer {
    flex: 1 1 2%;
}
.wpbc_section_100 {
    flex: 0 1 96%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1em;
}
    .wpbc_section_100 span,
    .wpbc_section_100 p,
    .wpbc_section_100 .wpdev-form-control-wrap {
        flex: 1 1 100%;
    }
    .wpbc_section_100 .wpdev-form-control-wrap {
         display:flex;
    }
    .wpbc_container_booking_form .wpbc_section_100 textarea {
        flex: 1 1 100%;
    }
/* ------------------------------------------------------------------------------------------------------------------ */
/* ==  Booking Form Fields  Size  ==                                                                                  */
/* ------------------------------------------------------------------------------------------------------------------ */
.wpbc_container_booking_form p{
    padding: 0.25em 0;
}
    /* == W i d t h == */
    .wpbc_container_booking_form select,
    .wpbc_container_booking_form input[type="text"],
    .wpbc_container_booking_form textarea{
        max-width: 100%;
        max-width: Min(30em, 100%);
        width: 340px;
        min-width: Min(8em, 100%);
    }

/* ------------------------------------------------------------------------------------------------------------------ */
/* ==  Booking Form Simple  ==   New Layout                                                                           */
/* ------------------------------------------------------------------------------------------------------------------ */
/* Admin  panel  at  WP Booking Calendar > Settings > Booking Form page */
.wpbc_center_preview .bk_calendar_frame,
.wpbc_center_preview .wpbc__form__div .bk_calendar_frame *{
    font-size: 14px;
}
.wpbc_center_preview ,
.wpbc_center_preview .wpbc__form__div *{
    font-size:16px;
}
/* WP Booking Calendar > Add Booking page */
    .add_booking_page_content,
    .add_booking_page_content p{
        font-size:15px;
        line-height: 2;
    }
    #wpbc-new-admin-page .booking_form_div div:not(.wpbc_cal_container){
        /*font-size:15px;*/
    }
    #wpbc-new-admin-page .wpbc_container.wpbc_form input.wpbc_button_light {
        font-size: 1.15em;
        line-height: 100%;
        min-height: var(--wpbc_form-button-light-size-height);
    }
    #wpbc-new-admin-page .booking_form_div div.bk_calendar_frame div   {
        /*font-size:13px;*/
    }
    #wpbc-new-admin-page .datepick-inline .datepick-days-cell div.date-content-bottom,
    #wpbc-new-admin-page .datepick-inline .datepick-days-cell div.date-content-top{
        /*font-size: 0.7em;*/
    }

.booking_form_div .wpbc_times_selector div,
.booking_form_div div:not(.bk_calendar_frame )  {
    /*font-size:15px;*/
}
.booking_form_div div.bk_calendar_frame div   {
    /*font-size:13px;*/
}
.datepick-inline .datepick-days-cell div.date-content-bottom,
.datepick-inline .datepick-days-cell div.date-content-top{
    font-size: 0.7em;
}

.wpbc_booking_form_simple .wpbc__form__div{
    width:100%;
}
.wpbc_container_booking_form  .wpbc_booking_form_simple .wpbc__field label{
    flex: 1 1 100%;
    line-height: 2.5;
}
/* Warning message for required field */
.wpbc_booking_form_simple .wpbc_front_end__message_container_right {
    margin: 10px 0;
}
/* //FixIn: 10.0.0.27  */
@media (max-width: 670px) {
    div .wpbc_ideal_payment_table tr td{
        display:block
    }
    div .wpbc_container_booking_form select,
    div .wpbc_container_booking_form input[type="text"],
    div .wpbc_container_booking_form textarea{
        max-width: 98%;
        width: 98%;
        border:1px solid;
    }
}
/* In case we use columns,  then max width 100% */
.wpbc_container_booking_form .wpbc__field select,
.wpbc_container_booking_form .wpbc__field input[type="text"],
.wpbc_container_booking_form .wpbc__field textarea {
    max-width: 100%;
}
/* Exception  for Booking Calendar Free (CENTER and Next  to  Calendar forms)*/
/* FixIn: 9.8.13.3
.wpbc_container_booking_form :is(.wpbc_form_center, .wpbc_form_right) textarea,
.wpbc_container_booking_form :is(.wpbc_form_center, .wpbc_form_right) select,
*/
.wpbc_container_booking_form :is(.wpbc_form_center, .wpbc_form_right) input[type="text"]{
    /*width: Min(340px, 100%);*/
}
.wpbc_container_booking_form :is(.wpbc_form_center, .wpbc_form_right) textarea,
.wpbc_container_booking_form :is(.wpbc_form_center, .wpbc_form_right) select {
    /*min-width: Min(340px, 100%);*/
    /*width: 340px;*/
}
.wpbc_container.wpbc_container_booking_form textarea[cols*="0"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="1"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="2"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="3"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="4"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="5"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="6"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="7"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="8"],
.wpbc_container.wpbc_container_booking_form textarea[cols*="9"]{
   width:auto;
}
/* == H e i g h t == */
.resource_selection_div select,
.wpbc_container.wpbc_container_booking_form select/*,
.wpbc_container.wpbc_container_booking_form input[type="text"],
.wpbc_container.wpbc_container_booking_form textarea */{
    height:auto;
    font-size: 1rem;
    line-height: 2.4em;
    padding: 0 0.5em;
}
.resource_selection_div select/*,
.wpbc_container.wpbc_container_booking_form select{
    height: 2.4em;
}
.wpbc_container.wpbc_container_booking_form select[multiple],
.wpbc_container.wpbc_container_booking_form select[size]*/{
    min-height: 2.4em;
    height: auto;
}
.resource_selection_div select option/*,
.wpbc_container.wpbc_container_booking_form select option*/{
    line-height: 2.4em;
    padding: 0.5em 0.5em;
    outline: none;
}
/*
.wpbc_container.wpbc_container_booking_form textarea{
    height:9.7em;
}*/
.wpbc_container.wpbc_container_booking_form textarea[rows*="0"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="1"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="2"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="3"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="4"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="5"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="6"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="7"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="8"],
.wpbc_container.wpbc_container_booking_form textarea[rows*="9"]{
   height: auto;
}





/* //FixIn: 10.0.0.25 */
/* ================================================================================================================== */
/* == THANK_YOU - SECTION ==                                                                                          */
/* ================================================================================================================== */
.wpbc_ty_hide{
    display: none !important;
}
.wpbc_after_booking_thank_you_section{
    display: flex;
    flex-flow:column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 65rem;
    margin: auto;
}
.wpbc_after_booking_thank_you_section * {
    text-shadow: none;
}
/* Thank you - message */
.wpbc_after_booking_thank_you_section .wpbc_ty__message {
    flex: 1 1 auto;
    padding: 0;
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 400;
}
/* Thank you - Container with  shadow */
.wpbc_after_booking_thank_you_section .wpbc_ty__container,
.wpbc_after_booking_thank_you_section .wpbc_ty__container * {
    color: #444;
}
/* Fix color issue for iFrame of PayPal */
.wpbc_after_booking_thank_you_section .wpbc_ty__container iframe {
    color: transparent;
}
.wpbc_after_booking_thank_you_section .wpbc_ty__container {
    flex: 1 1 100%;

    display: flex;
    flex-flow:column wrap;
    justify-content: flex-start;
    align-items: flex-start;

    /*! box-shadow: 0 1px 10px #ddd; */
    /*! box-shadow: 0 0px 3px #e0e0e0; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 6px 0px;
    /*! border: 1px solid #d5d5d5; */
    border: 1px solid rgb(204, 204, 204);
    /*! border-left: 5px solid #88b706; */

    border-radius: 2px;
    background: #FFF;
    color: #707070;

    padding: 10px 15px;
    box-sizing: border-box;
    margin: auto;

    font-size: 1rem;
    font-weight: 400;
    line-height: 2.2em;
    text-align: left;

    max-width: 100%;
    width: 100%;
}
/* Header with  booking ID */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__header{
    flex: 1 1 100%;

    border-left: 5px solid #88b706;
    padding: 5px 20px;
    font-size: 18px;
    width: 100%;
    margin-left: -10px;
    line-height: 36px;
    font-weight: 400;
}
/* Confirmation content,  like booking details and resource description */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content{
    flex: 1 1 100%;
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-flow:row wrap;
    justify-content: space-between;
    align-items: flex-start;
    word-break: normal;
    hyphens: none;
}
/* Content  section with  100% column */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text{
    flex: 1 1 100%;
    word-break: break-word;
    padding:10px 0px;
    border-top: 1px solid #efefef;
}
    /* 2 columns */
    .wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text.wpbc_cols_2{
        /*flex: 0 1 48%;*/
        flex: 1 1 22em;
        width: 48%;
        margin-right: 1%;
    }
    @media (max-width: 670px) {
        .wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text.wpbc_cols_2{
            flex: 1 1 100%;
        }
    }
/* Header of the section,  like "Personal information"  |  'Booking details' */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text .wpbc_ty__section_header{
    font-size: 18px;
    line-height: 2em;
    margin-bottom:1.2em;
}
/* H4 header in section  */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text h4{
    font-size: 18px;
    line-height: 1.8em;
}
/* Dates section */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text .wpbc_ty__section_text_dates{

}
/* Times section */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text .wpbc_ty__section_text_times{

}
/* Costs section */
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text .wpbc_ty__section_text_costs{
    text-align: right;
    padding: 0 2em;
}

    /* Discount coupon code in cost hint - align vertically  with  smaller font */
    .coupon_description_wrapper{
        font-size: 0.7em;
        font-weight: 400;
        margin-left: 0.8em;
        display: inline-flex;
          flex-flow: row wrap;
          justify-content: flex-start;
          align-items: center;
    }
    .wpbc_after_booking_thank_you_section .coupon_description_wrapper {
        font-size: 1em;
    }

/* Gateways Section ***************************************************************************************************/
.wpbc_after_booking_thank_you_section .wpbc_ty__container .wpbc_ty__content .wpbc_ty__content_text.wpbc_ty__content_gateways{
    flex: 1 1 100%;
    display: flex;
    flex-flow:row wrap;
    justify-content: center;
            justify-content: space-around;
    align-items: flex-start;
    border-top: 0 solid #efefef;
}


/* ================================================================================================================== */
/* == Payment Gateway ==                                                                                              */
/* ================================================================================================================== */
.wpbc_ty__content_gateways .wpbc_ty__gateway {
    flex: 1 1 100%;
            flex: 1 1 100%;
    margin-bottom: 1em;
            margin: 0 5px 1em;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway.wpbc_col_auto_width{
        /*max-width: 286px;*/
        flex: 1 1 auto;
            flex: 0 1 auto;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway .wpbc-payment-form {
        /*flex:1 1 100%;*/
        /*max-width: 95%;*/
        flex:0 1 auto;
        min-width: 260px;

    display:flex;
    flex-flow:row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway  .wpbc-payment-form form{
    flex:1 1 100%;
    display:flex;
    flex-flow:column wrap;
    justify-content: flex-start;
    align-items: center;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway  .wpbc-payment-form .wpbc_button_gw{
    flex:1 1 100%;
    display:flex;
    flex-flow:column wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.wpbc_paypal_fee{
        font-size: 0.68em;
        vertical-align: text-top;
        line-height: 1em;
        margin: 7px 0px;
}
/* ================================================================================================================== */
/* == Buttons ==                                                                                                      */
/* ================================================================================================================== */
.wpbc_container.wpbc_form input.wpbc_button_light,
.wpbc_container.wpbc_form input.wpbc_button_light:focus,
.wpbc_container.wpbc_form input.wpbc_button_light:hover,
.wpbc_container .wpbc_button_light,
.wpbc_container .wpbc_button_light:focus,
.wpbc_container .wpbc_button_light:hover,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:focus,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:hover{
  font-size: clamp(1em, 1em + ((1vw - 0.2em) * 0.208), 1.125em);
  border: 2px solid #eeeeeeb5;
  box-shadow: 0 2px 10px 2px #ffffff54;
  background: #fdfdfd;
  color: #444444e0;
  border-radius: 0.375em;
  padding: 0 2.2em;
  line-height: calc( var(--wpbc_form-button-light-size-height) - 2px );
  text-decoration: none;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: var(--wpbc_form-button-light-size-height);
  box-sizing: border-box;
  text-shadow: none;
}
.wpbc_container.wpbc_form input.wpbc_button_light:focus,
.wpbc_container.wpbc_form input.wpbc_button_light:hover,
.wpbc_container .wpbc_button_light:focus,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:focus,
.wpbc_container .wpbc_button_light:hover,
.wpbc_container.wpbc_container_booking_form .wpbc_button_light:hover {
    border: 2px solid rgb(77, 145, 205);
    /*box-shadow: 0 5px 10px #f0f0f8;*/
    /*background: rgb(255 255 255);*/
    /*color: #5f5f5f;*/
}
/* ================================================================================================================== */
/* Stripe */
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_stripe {
    background: 90% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/stripe.svg), #fff;
    background-color: rgb(77, 77, 77);
    padding-right: 130px;
    border: 2px solid rgb(77, 77, 77);
    color: #fff;
}
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_stripe:focus,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_stripe:hover
{
    border: 2px solid #5f5f5f;
    background-color: #5f5f5f;
}
/* ================================================================================================================== */
/* PayPal Yellow */
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_yellow,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white
{
    background: 90% 50% / 30% 50% no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_commerce.svg), transparent;
    padding-right: 115px;
    background-color: #ffc439 !important;
    border: 2px solid #ffc439 !important;
    color: #2C2E2F;
    box-shadow: none;

    text-indent:-9999px;
    background: 50% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_commerce.svg), #ffc439 !important;
    min-width: 175px;
}
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_yellow:focus,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_yellow:hover,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver:focus,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver:hover,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white:focus,
.wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white:hover
{
    background-color: #f2ba36;
    border-color: #f2ba36;
    box-shadow: 0 5px 10px #f0f0f8;
    color: #5f5f5f;
}
    /* PayPal Blue */
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_blue,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black {
        background: 90% 50% / 30% 50% no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_white_full.svg), transparent;
        padding-right: 115px;
        background-color: #009cde !important;
        border: 2px solid #009cde !important;
        color: #fff;
        box-shadow: none;

        text-indent:-9999px;
        background: 50% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_white_full.svg), #009cde !important;
        min-width: 175px;
    }
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_blue:focus,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_blue:hover,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black:focus,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black:hover {
        background-color: #33b0e5;
        border-color: #33b0e5;
        box-shadow: 0 5px 10px #f0f0f8;
        color: #fff;
    }
    /* PayPal Silver (based on Yellow) */
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver {
        background-color: #eee !important;
        border: 2px solid #eee !important;
        background: 50% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_commerce.svg), #eee !important;
    }
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver:focus,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_silver:hover {
        background-color: #e2e2e2 !important;
        border-color: #e2e2e2 !important;
    }
    /* PayPal White (based on Yellow) */
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white {
        background-color: #fff !important;
        border: 1px solid #2C2E2F !important;
        background: 50% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_commerce.svg), #fff !important;
    }
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white:focus,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_white:hover {
        background-color: #fff !important;
        border-color: #2C2E2F !important;
    }
    /* PayPal Block (based on Blue) */
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black {
        background-color: #2c2e2f !important;
        border: 2px solid #2c2e2f !important;
        background: 50% 50% / 80px auto no-repeat url(/wp-content/plugins/booking.bm.10.5/css/../inc/assets/paypal_white_full.svg), #2c2e2f !important;
    }
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black:focus,
    .wpbc_container .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_black:hover {
        background-color: #565859 !important;
        border-color: #565859 !important;
    }
/* ================================================================================================================== */
/* == PayPal Standard Checkout Container ==                                                                           */
/* ================================================================================================================== */
.wpbc_ty__content_gateways .wpbc_ty__gateway .wpbc-payment-form.paypal_std_co_div{
    text-align:left;
    clear:both;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway .wpbc-payment-form.paypal_std_co_div .wpbc_paypal_fee{
    text-align:center;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway .wpbc-payment-form.paypal_std_co_div .wpbc_paypal_std_co{
    padding:0 2px;
    flex: 1 1 auto;
}
.wpbc_ty__content_gateways .wpbc_ty__gateway .wpbc-payment-form.paypal_std_co_div .wpbc_paypal_std_co #wpbc_paypal_std_co_button_container{

}
/* ================================================================================================================== */
/* == Dark Theme 1 ==                                                                                                 */
/* ================================================================================================================== */

.wpbc_theme_dark_1 .wpbc_front_end__message{
    border-top: 1px solid rgb(0, 0, 0) !important;
    border-right: 1px solid rgb(0, 0, 0) !important;
    border-bottom: 1px solid rgb(0, 0, 0) !important;
    background: #626262;
    color: #5f5f5f;
    box-shadow: 0 0px 3px #3b3b3b;
    color:#fff !important;

    border-top: 0px solid rgb(0, 0, 0) !important;
    border-right: 0px solid rgb(0, 0, 0) !important;
    border-bottom: 0px solid rgb(0, 0, 0) !important;
    background: transparent;
    color: #f74748 !important;
}
.wpbc_theme_dark_1 .wpbc_front_end__message.wpbc_fe_message_error {
  border-left-color: #c23b3b;
  background: #595959 !important;
  color: #b9b9b9 !important;
}
/* ================================================================================================================== */
/* == THANK_YOU - SECTION  - Dark Theme 1 ==                                                                                          */
/* ================================================================================================================== */
.wpbc_theme_dark_1 .wpbc_after_booking_thank_you_section .wpbc_ty__message{
    color: #cdcdcd;
}
.wpbc_theme_dark_1 .wpbc_after_booking_thank_you_section .wpbc_ty__container * {
    color: #fff;
}
.wpbc_theme_dark_1 .wpbc_after_booking_thank_you_section .wpbc_ty__container{
    border: 1px solid rgb(0, 0, 0);
    background: #626262;
    color: #5f5f5f;
    box-shadow: 0 0px 3px #3b3b3b;
}
/* Payment Buttons ----------------------------------------------------------- */
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light {
  box-shadow: 0 1px 5px #424242;
  border: 2px solid #525252;
  background-color: #4d4d4d;
  color: #fff;
}
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light:focus,
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light:hover
{
  box-shadow: 0 1px 5px #424242;
  border: 2px solid #5f5f5f;
  background-color: #5c5c5c;
  color: #fff;
}
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_yellow:focus,
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_paypal_yellow:hover
{
    box-shadow: 0 5px 10px #424242;
}
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_stripe:focus,
.wpbc_theme_dark_1.wpbc_container.wpbc_form .wpbc_button_light.wpbc_button_gw.wpbc_button_gw_stripe:hover
{
    background-color:#4d4d4d;
    border-color:#4d4d4d;
}
/* Booking form  elements ----------------------------------------------------------- */
.wpbc_theme_dark_1 p,
.wpbc_theme_dark_1 label{
    color: #989898;
}
.wpbc_theme_dark_1.wpbc_container select,
.wpbc_theme_dark_1.wpbc_container textarea,
.wpbc_theme_dark_1.wpbc_container input{
    color:#444;
}
/* ================================================================================================================== */
/* ==  Capacity Hints tooltips  ==                                                                                    */
/* ================================================================================================================== */
.capacity_hint {
    align-self: baseline;
    margin: 0;
}
.capacity_hint .wpbc_chint__full_day_bookings,
.capacity_hint.wpbc_chin_newline {
    flex: 1 1 100%;
    /*margin: 0.5em 0;*/
}
.wpbc_capacity_hint_container {
    display: flex;
    flex-flow:column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width:100%;
    /*font-size:0.85em;*/
    /*line-height: 2em;*/
}
.booking_form_div .wpbc__form__div .wpbc_capacity_hint_container *,
.booking_form_div .wpbc__form__div .wpbc_capacity_hint_container {
    font-size:0.94em;
    line-height: 1.78;
}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container{
    flex: 1 1 auto;
    display: flex;
    flex-flow:row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width:100%;
}
    .wpbc_chin_newline .wpbc_capacity_hint_container .wpbc_chint__datetime_container{
        /*margin:0.25em 0;*/
    }
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__date_container{
    flex:1 1 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__date_container .wpbc_chint__date{
    font-weight: 600;
    flex: 0 1 auto;
}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__date_container .wpbc_chint__date_divider{
    flex: 1 1 auto;
    display: none;
}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container{
    flex:0 1 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 1em;
}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container .wpbc_chint__timeslot{

}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container .wpbc_chint__timeslot_divider{

}
.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container .wpbc_chint__availability{
    font-weight: 600;
    padding-left:0.5em;
}
.wpbc_chint__availability{
   color:#890;
}
.availability_num_0{
    color: #dc3400;
}
.availability_num_1,
.availability_num_2 {
    color: #dc7100;
}
.availability_num_3,
.availability_num_4,
.availability_num_5{
    color: currentColor;
}
.wpbc_selected_timeslot {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: dashed;
}
    /* Full day CSS for [capacity_hint] */
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container{
        margin: 0;
        line-height: unset;
        font-size: 0.85em;

        flex-flow: row wrap;
    }
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container .wpbc_chint__datetime_container {
        flex: 0 1 auto;
        flex-flow: row nowrap;
        width: auto;
    }
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__date_container {
        flex: 0 1 auto;
        flex-flow: row nowrap;
    }
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__date_container .wpbc_chint__date_divider {
        flex: 0 1 auto;
        display: block;
    }
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container .wpbc_chint__timeslot {
        display: none;
    }
    .wpbc_chint__full_day_bookings.wpbc_capacity_hint_container .wpbc_chint__datetime_container .wpbc_chint__time_container .wpbc_chint__timeslot_divider {
        display: none;
    }

.wpbc_message_in_live_demo {
  background: #ffffff;
  box-shadow: 0 1px 7px #c8c8c86e;
  text-align: left;
  border-left: 4px solid #9580aa;
  border-top: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  margin: 10px 0;
  line-height: 2;
  padding: 5px 20px;
  font-size: 1em;
  color: #444;
  border-radius: 8px;
}
.wpbc_wizard_step_hidden {
    display:none;
}:root {
  --wpbc_form-field-border-radius: 3px;
  --wpbc_form-field-border-style: solid;
  --wpbc_form-field-border-size: 1px;
  --wpbc_form-field-background-color: #ffffff;
  --wpbc_form-field-border-color: rgba(0, 0, 0, 0.25);
  --wpbc_form-field-border-color-spare: rgba(0, 0, 0, 0.25);
  --wpbc_form-field-text-color: rgba(0, 0, 0, 0.7);
  --wpbc_form-field-disabled-color: rgba(0, 0, 0, 0.2);
  --wpbc_form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --wpbc_form-field-menu-color: #ffffff;
  --wpbc_form-label-color: rgba(0, 0, 0, 0.85);
  --wpbc_form-label-sublabel-color: rgba(0, 0, 0, 0.55);
  --wpbc_form-label-error-color: #d63637;
  --wpbc_form-button-border-radius: 3px;
  --wpbc_form-button-border-style: none;
  --wpbc_form-button-border-size: 1px;
  --wpbc_form-button-background-color: #066aab;
  --wpbc_form-button-background-color-alt: #066aab;
  --wpbc_form-button-border-color: #066aab;
  --wpbc_form-button-text-color: #ffffff;
  --wpbc_form-button-text-color-alt: #fff;
  --wpbc_form-page-break-color: #066aab;
  --wpbc_form-background-image: none;
  --wpbc_form-background-position: center center;
  --wpbc_form-background-repeat: no-repeat;
  --wpbc_form-background-size: cover;
  --wpbc_form-background-width: 100px;
  --wpbc_form-background-height: 100px;
  --wpbc_form-background-color: rgba(0, 0, 0, 0);
  --wpbc_form-background-url: none;
  --wpbc_form-container-padding: 0px;
  --wpbc_form-container-border-style: none;
  --wpbc_form-container-border-width: 1px;
  --wpbc_form-container-border-color: #000000;
  --wpbc_form-container-border-radius: 3px;
  --wpbc_form-field-size-input-height: 43px;
  --wpbc_form-field-size-input-spacing: 15px;
  --wpbc_form-field-size-font-size: 16px;
  --wpbc_form-field-size-line-height: 19px;
  --wpbc_form-field-size-padding-h: 14px;
  --wpbc_form-field-size-checkbox-size: 16px;
  --wpbc_form-field-size-sublabel-spacing: 5px;
  --wpbc_form-field-size-icon-size: 1;
  --wpbc_form-label-size-font-size: 16px;
  --wpbc_form-label-size-line-height: 19px;
  --wpbc_form-label-size-sublabel-font-size: 14px;
  --wpbc_form-label-size-sublabel-line-height: 17px;
  --wpbc_form-button-size-font-size: 17px;
  --wpbc_form-button-size-height: 41px;
  --wpbc_form-button-size-padding-h: 15px;
  --wpbc_form-button-size-margin-top: 10px;
  --wpbc_form-container-shadow-size-box-shadow: none;
  --wpbc_form-marging-between-several-checkbox-radio: 30px;
  --wpbc_form-padding-between-label-checkbox-radio: 8px
}
div.wpbc_container.wpbc_form button,
div.wpbc_container.wpbc_form input,
div.wpbc_container.wpbc_form label,
div.wpbc_container.wpbc_form select,
div.wpbc_container.wpbc_form textarea {
  margin: 0;
  border: 0;
  padding: 0;
  vertical-align: middle;
  background: 0 0;
  height: auto;
  box-sizing: border-box
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date],
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local],
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime],
.wp-core-ui div.wpbc_container.wpbc_form input[type=email],
.wp-core-ui div.wpbc_container.wpbc_form input[type=month],
.wp-core-ui div.wpbc_container.wpbc_form input[type=number],
.wp-core-ui div.wpbc_container.wpbc_form input[type=password],
.wp-core-ui div.wpbc_container.wpbc_form input[type=range],
.wp-core-ui div.wpbc_container.wpbc_form input[type=search],
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel],
.wp-core-ui div.wpbc_container.wpbc_form input[type=text],
.wp-core-ui div.wpbc_container.wpbc_form input[type=time],
.wp-core-ui div.wpbc_container.wpbc_form input[type=url],
.wp-core-ui div.wpbc_container.wpbc_form input[type=week],
.wp-core-ui div.wpbc_container.wpbc_form select,
.wp-core-ui div.wpbc_container.wpbc_form textarea,
div.wpbc_container.wpbc_form input[type=date],
div.wpbc_container.wpbc_form input[type=datetime-local],
div.wpbc_container.wpbc_form input[type=datetime],
div.wpbc_container.wpbc_form input[type=email],
div.wpbc_container.wpbc_form input[type=month],
div.wpbc_container.wpbc_form input[type=number],
div.wpbc_container.wpbc_form input[type=password],
div.wpbc_container.wpbc_form input[type=range],
div.wpbc_container.wpbc_form input[type=search],
div.wpbc_container.wpbc_form input[type=tel],
div.wpbc_container.wpbc_form input[type=text],
div.wpbc_container.wpbc_form input[type=time],
div.wpbc_container.wpbc_form input[type=url],
div.wpbc_container.wpbc_form input[type=week],
div.wpbc_container.wpbc_form select,
div.wpbc_container.wpbc_form textarea {
  background-color: var(--wpbc_form-field-background-color);
  background-clip: padding-box;
  border-radius: var(--wpbc_form-field-border-radius);
  color: var(--wpbc_form-field-text-color);
  border-width: var(--wpbc_form-field-border-size);
  border-style: var(--wpbc_form-field-border-style);
  border-color: var(--wpbc_form-field-border-color);
  padding: 0 var(--wpbc_form-field-size-padding-h);
  font-size: var(--wpbc_form-field-size-font-size);
  line-height: 100%;
  box-shadow: none;
  transition: border .15s,box-shadow .15s
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=email]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=month]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=password]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=range]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=search]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=text]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=time]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=url]:focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=week]:focus,
.wp-core-ui div.wpbc_container.wpbc_form select:focus,
.wp-core-ui div.wpbc_container.wpbc_form textarea:focus,
div.wpbc_container.wpbc_form input[type=date]:focus,
div.wpbc_container.wpbc_form input[type=datetime-local]:focus,
div.wpbc_container.wpbc_form input[type=datetime]:focus,
div.wpbc_container.wpbc_form input[type=email]:focus,
div.wpbc_container.wpbc_form input[type=month]:focus,
div.wpbc_container.wpbc_form input[type=number]:focus,
div.wpbc_container.wpbc_form input[type=password]:focus,
div.wpbc_container.wpbc_form input[type=range]:focus,
div.wpbc_container.wpbc_form input[type=search]:focus,
div.wpbc_container.wpbc_form input[type=tel]:focus,
div.wpbc_container.wpbc_form input[type=text]:focus,
div.wpbc_container.wpbc_form input[type=time]:focus,
div.wpbc_container.wpbc_form input[type=url]:focus,
div.wpbc_container.wpbc_form input[type=week]:focus,
div.wpbc_container.wpbc_form select:focus,
div.wpbc_container.wpbc_form textarea:focus {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-button-background-color);
  box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15);
  outline: 0
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=email]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=month]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=password]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=range]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=search]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=text]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=time]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=url]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form input[type=week]:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form select:focus:invalid,
.wp-core-ui div.wpbc_container.wpbc_form textarea:focus:invalid,
div.wpbc_container.wpbc_form input[type=date]:focus:invalid,
div.wpbc_container.wpbc_form input[type=datetime-local]:focus:invalid,
div.wpbc_container.wpbc_form input[type=datetime]:focus:invalid,
div.wpbc_container.wpbc_form input[type=email]:focus:invalid,
div.wpbc_container.wpbc_form input[type=month]:focus:invalid,
div.wpbc_container.wpbc_form input[type=number]:focus:invalid,
div.wpbc_container.wpbc_form input[type=password]:focus:invalid,
div.wpbc_container.wpbc_form input[type=range]:focus:invalid,
div.wpbc_container.wpbc_form input[type=search]:focus:invalid,
div.wpbc_container.wpbc_form input[type=tel]:focus:invalid,
div.wpbc_container.wpbc_form input[type=text]:focus:invalid,
div.wpbc_container.wpbc_form input[type=time]:focus:invalid,
div.wpbc_container.wpbc_form input[type=url]:focus:invalid,
div.wpbc_container.wpbc_form input[type=week]:focus:invalid,
div.wpbc_container.wpbc_form select:focus:invalid,
div.wpbc_container.wpbc_form textarea:focus:invalid {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-button-background-color);
  box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15);
  outline: 0;
  color: var(--wpbc_form-field-text-color)
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=email]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=month]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=password]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=range]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=search]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=text]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=time]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=url]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=week]::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form select::-webkit-input-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form textarea::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=date]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=datetime-local]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=datetime]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=email]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=month]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=number]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=password]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=range]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=search]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=tel]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=text]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=time]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=url]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form input[type=week]::-webkit-input-placeholder,
div.wpbc_container.wpbc_form select::-webkit-input-placeholder,
div.wpbc_container.wpbc_form textarea::-webkit-input-placeholder {
  color: var(--wpbc_form-field-text-color);
  opacity: .5;
  pointer-events: none
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=email]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=month]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=password]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=range]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=search]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=text]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=time]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=url]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=week]::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form select::-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form textarea::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=date]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=datetime-local]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=datetime]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=email]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=month]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=number]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=password]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=range]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=search]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=tel]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=text]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=time]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=url]::-moz-placeholder,
div.wpbc_container.wpbc_form input[type=week]::-moz-placeholder,
div.wpbc_container.wpbc_form select::-moz-placeholder,
div.wpbc_container.wpbc_form textarea::-moz-placeholder {
  color: var(--wpbc_form-field-text-color);
  opacity: .5;
  pointer-events: none
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=date]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime-local]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=datetime]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=email]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=month]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=password]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=range]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=search]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=tel]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=text]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=time]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=url]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form input[type=week]:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form select:-moz-placeholder,
.wp-core-ui div.wpbc_container.wpbc_form textarea:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=date]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=datetime-local]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=datetime]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=email]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=month]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=number]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=password]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=range]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=search]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=tel]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=text]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=time]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=url]:-moz-placeholder,
div.wpbc_container.wpbc_form input[type=week]:-moz-placeholder,
div.wpbc_container.wpbc_form select:-moz-placeholder,
div.wpbc_container.wpbc_form textarea:-moz-placeholder {
  color: var(--wpbc_form-field-text-color);
  opacity: .5;
  pointer-events: none
}
.wp-core-ui div.wpbc_container.wpbc_form textarea,
div.wpbc_container.wpbc_form textarea {
  width: 100%;
  line-height: 1.3;
  min-height: var(--wpbc_form-field-size-input-height);
  padding: var(--wpbc_form-field-size-padding-h);
  resize: vertical
}
.wp-core-ui div.wpbc_container.wpbc_form input,
.wp-core-ui div.wpbc_container.wpbc_form select,
div.wpbc_container.wpbc_form input,
div.wpbc_container.wpbc_form select {
  height: var(--wpbc_form-field-size-input-height)
}
.wp-core-ui div.wpbc_container.wpbc_form select,
div.wpbc_container.wpbc_form select {
  appearance: none;
  display: block;
  max-width: 100%;
  width: 100%;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
  line-height: unset;
  padding-block: 0;
  padding-inline-end: 24px;
  padding-inline-start: 12px;
  min-height: var(--wpbc_form-field-size-input-height);
  vertical-align: middle;
  cursor: pointer
}
.wp-core-ui div.wpbc_container.wpbc_form select,
.wp-core-ui div.wpbc_container.wpbc_form select:disabled,
div.wpbc_container.wpbc_form select,
div.wpbc_container.wpbc_form select:disabled {
  background-image: var(--wpbc_form-select-bg-img),none;
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) 50%,calc(100% - 12px) 50%;
  background-size: 16px 12px
}
.rtl .wp-core-ui div.wpbc_container.wpbc_form select,
.rtl .wp-core-ui div.wpbc_container.wpbc_form select:disabled,
.rtl div.wpbc_container.wpbc_form select,
.rtl div.wpbc_container.wpbc_form select:disabled {
  background-position: 12px 50%,17px 50%
}
.wp-core-ui div.wpbc_container.wpbc_form select > option,
div.wpbc_container.wpbc_form select > option {
  color: var(--wpbc_form-field-text-color)
}
.wp-core-ui div.wpbc_container.wpbc_form select > option.placeholder,
.wp-core-ui div.wpbc_container.wpbc_form select > option[disabled],
div.wpbc_container.wpbc_form select > option.placeholder,
div.wpbc_container.wpbc_form select > option[disabled] {
  color: var(--wpbc_form-field-disabled-color);
  opacity: .5
}
.wp-core-ui div.wpbc_container.wpbc_form select:not([multiple]) > option,
div.wpbc_container.wpbc_form select:not([multiple]) > option {
  background: var(--wpbc_form-field-menu-color)
}
.wp-core-ui div.wpbc_container.wpbc_form select:not([multiple]) > option:not(.placeholder):checked,
div.wpbc_container.wpbc_form select:not([multiple]) > option:not(.placeholder):checked {
  font-weight: 700
}
.wp-core-ui div.wpbc_container.wpbc_form select[multiple],
div.wpbc_container.wpbc_form select[multiple] {
  height: auto;
  overflow-y: scroll;
  background-image: none
}
.wp-core-ui div.wpbc_container.wpbc_form select[multiple] > option:not(.placeholder):checked,
div.wpbc_container.wpbc_form select[multiple] > option:not(.placeholder):checked {
  background: var(--wpbc_form-button-background-color);
  color: var(--wpbc_form-button-text-color-alt,var(--wpbc_form-button-text-color))
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]:read-only,
div.wpbc_container.wpbc_form input[type=number]:read-only {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield
}
.wp-core-ui div.wpbc_container.wpbc_form input[type=number]:read-only::-webkit-inner-spin-button,
div.wpbc_container.wpbc_form input[type=number]:read-only::-webkit-inner-spin-button {
  visibility: hidden
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light),
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light),
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light),
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light) {
  height: var(--wpbc_form-button-size-height);
  background-color: var(--wpbc_form-button-background-color-alt,var(--wpbc_form-button-background-color));
  border-radius: var(--wpbc_form-button-border-radius);
  border-style: var(--wpbc_form-button-border-style);
  border-color: var(--wpbc_form-button-border-color);
  border-width: var(--wpbc_form-button-border-size);
  box-shadow: none;
  color: var(--wpbc_form-button-text-color);
  padding: 0 var(--wpbc_form-button-size-padding-h);
  font-family: inherit;
  font-weight: 500;
  font-size: var(--wpbc_form-button-size-font-size);
  line-height: 100%;
  cursor: pointer;
  transition: .15s ease-in-out;
  position: relative;
  text-decoration: none
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):not(:hover):not(:active),
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):not(:hover):not(:active),
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):not(:hover):not(:active),
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):not(:hover):not(:active) {
  background-color: var(--wpbc_form-button-background-color-alt,var(--wpbc_form-button-background-color));
  color: var(--wpbc_form-button-text-color)
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):active,
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):hover,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):active,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):hover,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):active,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):hover,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):active,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):hover {
  background: linear-gradient(0deg,rgba(0,0,0,.2),rgba(0,0,0,.2)),var(--wpbc_form-button-background-color-alt,var(--wpbc_form-button-background-color))
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):focus,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):focus,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):focus,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):focus {
  outline: 0
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):focus:after,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):focus:after,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):focus:after,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):focus:after {
  content: "";
  position: absolute;
  border: 2px solid var(--wpbc_form-button-background-color);
  border-radius: calc(var(--wpbc_form-button-border-radius) + 2px);
  top: calc(-4px - var(--wpbc_form-button-border-size,1px));
  right: calc(-4px - var(--wpbc_form-button-border-size,1px));
  bottom: calc(-4px - var(--wpbc_form-button-border-size,1px));
  left: calc(-4px - var(--wpbc_form-button-border-size,1px))
}
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):disabled,
.wp-core-ui div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):disabled:hover,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):disabled,
.wp-core-ui div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):disabled:hover,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):disabled,
div.wpbc_container.wpbc_form button[type=submit]:not(.wpbc_button_light):disabled:hover,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):disabled,
div.wpbc_container.wpbc_form input[type=submit]:not(.wpbc_button_light):disabled:hover {
  background-color: var(--wpbc_form-button-background-color-alt,var(--wpbc_form-button-background-color));
  cursor: default
}
div.wpbc_container.wpbc_form input[type=checkbox],
div.wpbc_container.wpbc_form input[type=radio] {
  position: relative;
  display: inline-block;
  background: 0 0;
  height: calc(var(--wpbc_form-field-size-checkbox-size) - 2px + calc(var(--wpbc_form-field-border-size,1px) * 2));
  width: calc(var(--wpbc_form-field-size-checkbox-size) - 2px + calc(var(--wpbc_form-field-border-size,1px) * 2));
  margin: 0 0 0 2px;
  border: none;
  box-shadow: none;
  vertical-align: middle;
  opacity: 1;
  appearance: none
}
div.wpbc_container.wpbc_form input[type=checkbox]:after,
div.wpbc_container.wpbc_form input[type=checkbox]:before,
div.wpbc_container.wpbc_form input[type=radio]:after,
div.wpbc_container.wpbc_form input[type=radio]:before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: var(--wpbc_form-field-size-checkbox-size);
  height: var(--wpbc_form-field-size-checkbox-size);
  box-sizing: content-box;
  cursor: pointer
}
div.wpbc_container.wpbc_form input[type=checkbox]:before,
div.wpbc_container.wpbc_form input[type=radio]:before {
  border-width: var(--wpbc_form-field-border-size);
  border-style: var(--wpbc_form-field-border-style);
  border-color: var(--wpbc_form-field-border-color);
  background-color: var(--wpbc_form-field-background-color);
  background-clip: padding-box;
  background-image: none;
  border-radius: 3px
}
div.wpbc_container.wpbc_form .wpdev-list-item > input[type=checkbox] + .wpdev-list-item-label,
div.wpbc_container.wpbc_form .wpdev-list-item > input[type=radio] + .wpdev-list-item-label,
div.wpbc_container.wpbc_form input[type=checkbox] + label,
div.wpbc_container.wpbc_form input[type=radio] + label {
  display: inline;
  position: relative;
  padding-inline-start: var(--wpbc_form-padding-between-label-checkbox-radio);
  font-size: var(--wpbc_form-label-size-font-size);
  vertical-align: middle
}
div.wpbc_container.wpbc_form input[type=checkbox] + label,
div.wpbc_container.wpbc_form input[type=radio] + label {
  cursor: pointer
}
div.wpbc_container.wpbc_form .wpdev-list-item > .wpdev-list-item-label:first-child {
  display: inline;
  position: relative;
  padding-inline-end: var(--wpbc_form-padding-between-label-checkbox-radio);
  font-size: var(--wpbc_form-label-size-font-size);
  vertical-align: middle
}
div.wpbc_container.wpbc_form .wpdev-list-item > label.wpdev-list-item-label:first-child {
  cursor: pointer
}
div.wpbc_container.wpbc_form .wpdev-list-item > .wpdev-list-item-label > input[type=checkbox],
div.wpbc_container.wpbc_form .wpdev-list-item > .wpdev-list-item-label > input[type=radio] {
  margin-left: var(--wpbc_form-padding-between-label-checkbox-radio);
  margin-right: var(--wpbc_form-padding-between-label-checkbox-radio)
}
div.wpbc_container.wpbc_form .wpdev-checkbox .wpdev-list-item,
div.wpbc_container.wpbc_form .wpdev-radio .wpdev-list-item {
  margin-right: var(--wpbc_form-marging-between-several-checkbox-radio)
}
div.wpbc_container.wpbc_form .wpdev-checkbox .wpdev-list-item:last-child,
div.wpbc_container.wpbc_form .wpdev-radio .wpdev-list-item:last-child {
  margin-right: 0
}
.rtl div.wpbc_container.wpbc_form .wpdev-checkbox .wpdev-list-item,
.rtl div.wpbc_container.wpbc_form .wpdev-radio .wpdev-list-item {
  margin-left: var(--wpbc_form-marging-between-several-checkbox-radio)
}
.rtl div.wpbc_container.wpbc_form .wpdev-checkbox .wpdev-list-item:first-child,
.rtl div.wpbc_container.wpbc_form .wpdev-radio .wpdev-list-item:first-child {
  margin-left: 0
}
div.wpbc_container.wpbc_form input[type=checkbox]:checked:before,
div.wpbc_container.wpbc_form input[type=radio]:checked:before {
  margin: 0;
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-button-background-color);
  box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15);
  outline: 0
}
div.wpbc_container.wpbc_form input[type=checkbox]:focus,
div.wpbc_container.wpbc_form input[type=radio]:focus {
  outline: 0
}
div.wpbc_container.wpbc_form input[type=checkbox]:focus:before,
div.wpbc_container.wpbc_form input[type=radio]:focus:before {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-button-background-color);
  box-shadow: 0 0 0 1.2px var(--wpbc_form-button-background-color),0 1px 2px rgba(0,0,0,.15);
  outline: 0
}
div.wpbc_container.wpbc_form input[type=checkbox]:checked:after {
  border-top: none;
  border-right: none;
  height: calc(var(--wpbc_form-field-size-checkbox-size) * .6);
  border-left: 4px solid var(--wpbc_form-button-background-color);
  border-bottom: 4px solid var(--wpbc_form-button-background-color);
  background-color: transparent;
  -ms-transform: translate(0,1px) scale(.5) rotate(-45deg);
  transform: translate(0,1px) scale(.5) rotate(-45deg);
  left: calc(-4px + var(--wpbc_form-field-border-size,1px));
  top: calc(-1px + var(--wpbc_form-field-border-size,1px))
}
div.wpbc_container.wpbc_form input[type=radio],
div.wpbc_container.wpbc_form input[type=radio]:before {
  border-radius: 50%
}
div.wpbc_container.wpbc_form input[type=radio]:checked:after {
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: var(--wpbc_form-button-background-color);
  -ms-transform: scale(.5);
  transform: scale(.5);
  -moz-transform: scale(.47);
  left: calc(-3px + var(--wpbc_form-field-border-size,1px));
  top: calc(-1px + var(--wpbc_form-field-border-size,1px))
}
div.wpbc_container.wpbc_form.wpbc_container_booking_form label.wpbc_form_field_error,
div.wpbc_container.wpbc_form.wpbc_container_booking_form span.wpbc_form_field_error {
  font-weight: 400;
  font-size: var(--wpbc_form-label-size-sublabel-font-size);
  line-height: var(--wpbc_form-label-size-sublabel-line-height);
  margin-top: var(--wpbc_form-field-size-input-spacing);
  color: var(--wpbc_form-label-error-color);
  padding: 0 0 0 5px;
  position: relative
}
div.wpbc_container.wpbc_form.wpbc_container_booking_form input.wpbc_form_field_error,
div.wpbc_container.wpbc_form.wpbc_container_booking_form select.wpbc_form_field_error,
div.wpbc_container.wpbc_form.wpbc_container_booking_form textarea.wpbc_form_field_error {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-label-error-color)
}
div.wpbc_container.wpbc_form.wpbc_container_booking_form input.wpbc_form_field_error:hover,
div.wpbc_container.wpbc_form.wpbc_container_booking_form select.wpbc_form_field_error:hover,
div.wpbc_container.wpbc_form.wpbc_container_booking_form textarea.wpbc_form_field_error:hover {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-label-error-color);
  box-shadow: 0 0 2px 0 var(--wpbc_form-label-error-color)
}
div.wpbc_container.wpbc_form.wpbc_container_booking_form input.wpbc_form_field_error:focus,
div.wpbc_container.wpbc_form.wpbc_container_booking_form select.wpbc_form_field_error:focus,
div.wpbc_container.wpbc_form.wpbc_container_booking_form textarea.wpbc_form_field_error:focus {
  border-width: var(--wpbc_form-field-border-size);
  border-style: solid;
  border-color: var(--wpbc_form-label-error-color);
  box-shadow: 0 0 0 1.2px var(--wpbc_form-label-error-color)
}
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=checkbox].wpbc_form_field_error,
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=checkbox].wpbc_form_field_error:focus,
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=checkbox].wpbc_form_field_error:hover,
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=radio].wpbc_form_field_error,
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=radio].wpbc_form_field_error:focus,
div.wpbc_container.wpbc_form.wpbc_container_booking_form input[type=radio].wpbc_form_field_error:hover {
  border: none;
  box-shadow: none
}/**
 * @version 2.0
 * @package: Booking Calendar Responsive CSS
 * @category: Front-End
 * @author wpdevelop
 *
 * @web-site https://wpbookingcalendar.com/
 * @email info@wpbookingcalendar.com
 *
 * @modified 2023-11-11
 */

/*******************************************************************************/
/*  Calendar structure:                                                         */
/*******************************************************************************/
/* WIDTH: of calendar - its FULL width of Month(s) ROW (its NOT only one month)  */
/*
 .bk_calendar_frame.cal_month_num_1.months_num_in_row_1
    .hasDatepick
        .datepick-inline
            .calendar-links
            .datepick-one-month
            .datepick-one-month , ...

*/
/* SIZE: Set width of calendar with several months */           /* FixIn: 9.7.3.4 */
/* FixIn: Standard entire calendar WIDTH ============================================================================ */
.wpbc_no_custom_width.bk_calendar_frame { width: 100%; min-width:201px; }
.wpbc_no_custom_width.cal_month_num_1 {   max-width: 341px; }
.wpbc_no_custom_width.cal_month_num_2 {   max-width: 682px; }
.wpbc_no_custom_width.cal_month_num_3 {   max-width: 1023px; }
.wpbc_no_custom_width.cal_month_num_4 {   max-width: 1364px; }
.wpbc_no_custom_width.cal_month_num_5 {   max-width: 1705px; }
.wpbc_no_custom_width.cal_month_num_6 {   max-width: 2046px; }
.wpbc_no_custom_width.cal_month_num_7 {   max-width: 2387px; }
.wpbc_no_custom_width.cal_month_num_8 {   max-width: 2728px; }
.wpbc_no_custom_width.cal_month_num_9 {   max-width: 3069px; }
.wpbc_no_custom_width.cal_month_num_10 {  max-width: 3410px; }
.wpbc_no_custom_width.cal_month_num_11 {  max-width: 3751px; }
.wpbc_no_custom_width.cal_month_num_12 {  max-width: 4092px; }
/* FixIn: Override width, if defined number of Months in a ROW ====================================================== */
.wpbc_no_custom_width.months_num_in_row_1 {  max-width: 341px;  }
.wpbc_no_custom_width.months_num_in_row_2 {  max-width: 682px; }
.wpbc_no_custom_width.months_num_in_row_3 {  max-width: 1023px; }
.wpbc_no_custom_width.months_num_in_row_4 {  max-width: 1364px; }
.wpbc_no_custom_width.months_num_in_row_5 {  max-width: 1705px; }
.wpbc_no_custom_width.months_num_in_row_6 {  max-width: 2046px; }
/* FixIn: 9.8.12.1  - Min. WIDTH of all parent calendar tags ======================================================== */
    .booking_form_div,
    .wpbc_booking_form_structure,
    .wpbc_structure_calendar,
    .wpbc_calendar_wraper,
    .wpbc_no_custom_width.bk_calendar_frame {
        /*min-width: 173px;*/
        /*min-width: Min(244px, 100%);*/
    }
    .wpbc_calendar_wraper{
        min-width: 341px;
        min-width: Min(341px, 100%);
    }
/* FixIn: 9.8.3.1  - Min. WIDTH of calendar One Month, before Wrap to next ROW ====================================== */
.bk_calendar_frame .datepick-inline,
.bk_calendar_frame .datepick-one-month {
    width: 100%;
}
.bk_calendar_frame .datepick-inline {
    min-width: 173px;
    min-width: Min(244px, 100%);
}
.bk_calendar_frame .datepick-one-month {
    min-width: 169px;
    min-width: Min(240px, 100%);
}
/* For small devices always set to full width screen */
@media (max-width: 400px) {
    .bk_calendar_frame .datepick-inline{
        min-width: 100%;
        min-width: Max(100%, 201px);
    }
    .bk_calendar_frame .datepick-one-month{
        min-width: 100%;
        min-width: Max(100%, 195px);
    }
}

/* FixIn:   Your Customizations:   Min. width of One Month in Calendar, before it start Wrap to next ROW ============ */
/*
 Example of CSS for      280px:       previously  defined as:  Min(240px, 100%);

 .bk_calendar_frame .datepick-inline {    min-width: Min(284px, 100%); }
 .bk_calendar_frame .datepick-one-month { min-width: Min(280px, 100%); }

*/

/* FixIn: 9.8.4.1  -  container calendar font for small sections  =================================================== */
/* @container(){...}:            Mini Calendar @container queries       - Change calendar font size, on very narrow sections

@CONTAINER()

    Example:    container:  wpbc_c__datepick-one-month / inline-size;

    Docs:       container:  name / container-type;                      ->          https://www.w3.org/TR/css-contain-3/#container-type   ,  https://www.w3.org/TR/css-contain-3/#container-queries

                    'inline-size' - inline-size - Refers to the physical width  (horizontal dimension) in horizontal modes, and to the physical height (vertical dimension)   in vertical modes.
                    'size'        - block size  - Refers to the physical height (vertical dimension)   in horizontal modes, and to the physical width  (horizontal dimension) in vertical modes.
                    'normal'      - default     - NOT_A_CONTAINER_SIZE_QUERIES, it is query container STYLE queries.

CLAMP()

    Calculator: https://www.marcbacon.com/tools/clamp-calculator/
    Example:
            From 85px - 140px of container. Fonts: 9px - 12px. CLAMP: https://www.marcbacon.com/tools/clamp-calculator/    vw == cqi ( https://www.w3.org/TR/css-contain-3/#container-lengths )
            font-size: clamp(0.563rem, 0.273rem + 5.455cqi, 0.75rem);
*/
    .datepick-one-month {
        container:  wpbc_c__datepick-one-month / inline-size;
    }
    /* For less than 140px of calendar month */
    @container wpbc_c__datepick-one-month (inline-size < 140px) {
        /* Month Table */
        div.datepick-one-month table.datepick.wpbc_calendar *{
            font-size: clamp(0.375rem, -0.205rem + 10.909cqi, 0.75rem);
        }
    }
    .datepick-inline {
        container:  wpbc_c__datepick-inline / inline-size;
    }
    /* For less than 140px of calendar month */
    @container wpbc_c__datepick-inline (inline-size < 140px) {
        /* Month Titles */
        div.datepick-one-month .datepick-header{
            /* From 85px - 140px of container. Fonts: 9px - 12px. CLAMP: https://www.marcbacon.com/tools/clamp-calculator/    vw == cqi ( https://www.w3.org/TR/css-contain-3/#container-lengths )  */
            font-size: clamp(0.563rem, 0.273rem + 5.455cqi, 0.75rem);
        }
        /* Prior | Next Links */
        .calendar-links * {
            font-size: clamp(0.438rem, -0.045rem + 9.091cqi, 0.75rem);
        }
    }

/* ================================================================================================================== */

/* ROWS for Calendar Months :: ------------------- 1 to 12 months with combination of showing several months in a row */
.bk_calendar_frame.months_num_in_row_1 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.datepick-one-month {                                           /* General */
  flex: 1 1 100%;
}
.bk_calendar_frame.months_num_in_row_2 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.cal_month_num_2 .datepick-one-month {                          /* General */
  flex: 1 1 50%;
}
.bk_calendar_frame.months_num_in_row_3 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.cal_month_num_3 .datepick-one-month {                          /* General */
  flex: 1 1 33.333333333333333%;
}
.bk_calendar_frame.months_num_in_row_4 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.cal_month_num_4 .datepick-one-month {                          /* General */
  flex: 1 1 25%;
}
.bk_calendar_frame.months_num_in_row_5 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.cal_month_num_5 .datepick-one-month {                          /* General */
  flex: 1 1 20%;
}
.bk_calendar_frame.months_num_in_row_6 .datepick-one-month,     /* Specific number of months in a row. Please check more in FAQ.*/
.cal_month_num_6 .datepick-one-month {                          /* General */
  flex: 1 1 16.6666666666666%;
}
.cal_month_num_7 .datepick-one-month {
  flex: 1 1 14.28571429%;
}
.cal_month_num_8 .datepick-one-month {
  flex: 1 1 12.5%;
}
.cal_month_num_9 .datepick-one-month {
  flex: 1 1 11.11111111%;
}
.cal_month_num_10 .datepick-one-month {
  flex: 1 1 10%;
}
.cal_month_num_11 .datepick-one-month {
  flex: 1 1 9.0909090909090909%;
}
.cal_month_num_12 .datepick-one-month {
  flex: 1 1 8.333333333333333%;
}
/* ------------------------------------------------------------------------------------------------------------------ */
.bk_calendar_frame {                                                                                                    /* FixIn: 9.3.1.4   */
	position: relative;
}
.datepick-inline {
    width:100%;                                    /* Override the width of the calendar, which  is set datepicker JS */        /* FixIn: 9.7.3.4 */
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	padding: 1px;                                  /* Outer padding in calendar. */
    z-index: 10000;
}
.datepick-inline .datepick-one-month {
    padding: 2px;                                  /* Padding between months.    */
    box-sizing: border-box;                                                                                             /*  FixIn: 9.6.1.6 */
}
/* HEIGHT: of    C E L L S   */
.datepick-inline .datepick-title-row th,
.datepick-inline .datepick-days-cell{
    height: 48px;
}
    @media (max-width: 400px) {
        div.datepick-inline table .datepick-title-row th,
        div.datepick-inline table .datepick-days-cell{
            height: 40px !important;
        }
    }
    /* HEIGHT: of    C E L L S  in POPUP calendar */
    #datepick-div.datepick-inline .datepick-title-row th,
    #datepick-div.datepick-inline .datepick-days-cell{
        height: 35px;
    }

/*******************************************************************************/
/*  S T R U C T U R E    &    S i z e s ****************************************/
/*******************************************************************************/
/*RESET: Width, margin, padding */
div.check-out-div, 
div.check-in-div, 
div.date-content-top, 
div.date-content-bottom{
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;        
}

/* RESET: Font sizes, padding, margin */
.datepick-inline .datepick,                                        /* Month table */
.datepick-inline .datepick-header,                                 /* Month header */
.datepick-inline .datepick-header span,                            /* Header span */
.datepick-inline .calendar-links,                                  /* Prev Next months */
.datepick-inline .calendar-links a,                                /* Prev Next links */
.datepick-inline .datepick-days-cell,                              /* Date cell */
.datepick-inline .datepick-days-cell a,                            /* Active date cell */
.datepick-inline .datepick-days-cell div,                          /* Cehck in/out */
.datepick-inline .datepick-title-row,                              /* Week row */
.datepick-inline .datepick-title-row th {                          /* Week cell */    
    padding: 0;
    margin:  0;
    font-size:12px;
    border: 0 none;
    vertical-align: baseline;    
}
.datepick-inline .datepick,                                        /* Month table */
.datepick-inline .datepick-days-cell,                              /* Date cell */
.datepick-inline .datepick-days-cell a,                            /* Active date cell */
.datepick-inline .datepick-days-cell div,                          /* Cehck in/out */
.datepick-inline .datepick-title-row,                              /* Week row */
.datepick-inline .datepick-title-row th {                          /* Week cell */
    line-height: 1.4;
}
#content .datepick-days-cell,                                       /* Reset the padding in TD and TH elements of calendar to prevent conflict  with  some WP themes */
#content .datepick-title-row th{
    padding: 0;
    margin:  0;
}
/* RESET: width to 100% */
.datepick-inline .datepick,
.datepick-inline .datepick-header{
    width:100%;
}

/* STRUCTURE: Previous & Next month links */                                                                            /* FixIn: 9.3.1.4   */
.datepick-inline .calendar-links{
	display:flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	width:100%;
	height:40px;
	margin-bottom: -40px;
}
.datepick-inline .calendar-links .datepick-prev,
.datepick-inline .calendar-links .datepick-next {
	flex: 1 1 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	align-items: flex-start;
    margin: 0 4px;
	line-height: 2em;
}
.datepick-inline .calendar-links .datepick-next{
    text-align: right;
	align-items: flex-end
}
.datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a{
	font-size: 2em;
	line-height: 2px;
	position:absolute;
	z-index:9999;
}
.datepick-inline .datepick-header {
	line-height: 40px;
	padding: 0;
}
.datepick-inline .datepick-header span{
	/*font-size: 1.15em;*/
	/*line-height: 1.2em;*/
    font-size: 15px;                /* FixIn: 9.8.12.1 */
    line-height: 2em;
}
/* Week Titles height */
div.datepick-inline .datepick-title-row th{
    height: auto !important;
    line-height: 2.18182;
}
/* Links: NO UNDERLINE, Cursor - Pointer */
.datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a,
.datepick-inline .calendar-links .datepick-prev a:hover,
.datepick-inline .calendar-links .datepick-next a:hover,
.datepick-inline .datepick-days-cell, 
.datepick-inline .datepick-days-cell.timespartly.date_approved, 
.datepick-inline .datepick-days-cell.timespartly.date2approve, 
.datepick-inline .datepick-days-cell a, 
.datepick-inline .datepick-days-cell a:hover,                                   /* FixIn: 5.4.5.9 */                            
.block_hints .block_free a, 
.block_hints .block_free a:hover, 
.block_hints .block_time a, 
.block_hints .block_time a:hover {
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;                                                           /* FixIn: 5.4.5.9 */
    outline: none;                                                              /* FixIn: 9.3.1.4   */
    text-shadow: none;                                                          /* FixIn: 9.3.1.4   */
}
.datepick-inline .datepick-days-cell.datepick-unselectable,                     /* Default cursor for the unvailbale dates */
.datepick-inline .datepick-days-cell.datepick-unselectable a, 
.datepick-inline .datepick-days-cell.datepick-unselectable a:hover, 
.datepick-inline .datepick-days-cell.date_approved,
.datepick-inline .datepick-days-cell.date2approve{
    cursor: default;
}
/* ALIGN: Header */
.datepick-inline .datepick-header{
    text-align: center;
    position: relative;
}
/* ALIGN: Cells and set standard width */
.datepick-inline .datepick-title-row th,
.datepick-inline .datepick-days-cell{
    text-align: center;
    vertical-align: middle;
    width: 14.28571429%;  
    overflow: hidden;
}
/* Fix to  show calendar day cell borders with  correct thickness */
.datepick-inline .datepick-days-cell{
    overflow: visible;
}
.datepick-inline .datepick-days-cell a,
.datepick-inline .datepick-days-cell span{                                      /* FixIn: 6.0.1.2 */
    position:relative;
    z-index: 99;
}


/*******************************************************************************/
/*    Check In / Out Times      ************************************************/
/*******************************************************************************/
.block_hints .block_check_in_out.check_in_time,                                                 /* Item  for the LEGEND */
.datepick-inline .timespartly.check_in_time,                                                    /* If we are using the Check in/out time, so hide the CLOCK icon */
.datepick-inline .timespartly.check_out_time {
    background-image: none;
}
/* Backgrounds */
.block_hints .block_check_in_out.check_in_time div.check-in-div,                                /* Item  for the LEGEND */
.block_hints .block_check_in_out.check_out_time div.check-out-div,                              /* Item  for the LEGEND */
td.timespartly.check_in_time div.check-in-div,                                                  /* Define the check in/out time BACKGROUND */
td.timespartly.check_out_time div.check-out-div {                                 
    border: 0px none;
    float: left;
    height: 200%;
    margin-bottom: -400%;
    position: relative;
    top: -50%;
    vertical-align: bottom;
    width: 20%;
    z-index: 0;
}
/*FixIn: 7.0.1.19  Beta Feature not tested enough! Support: Chrome 36.0+, MS IE 10.0+, Firefox 16.0+, Safari 9.0+, Opera 23.0+ */
.block_hints .block_check_in_out.check_in_time a,                               /* Item  for the LEGEND */
.block_hints .block_check_in_out.check_out_time a,                              /* Item  for the LEGEND */
td.timespartly.check_in_time a,                                                 /* Define the check in/out time BACKGROUND */
td.timespartly.check_out_time a {
    text-shadow:none;                                                     
}
.block_hints .block_check_in_out.check_in_time em {                             /* FixIn: 7.0.1.37 Correct positioning of text in legend */
    position: relative;
    font-style: normal;
    text-shadow: none;
}
/* Shift days numbers to  the left | right for showing them in triangles */
/*
.block_hints .block_check_in_out.check_out_time a,
td.timespartly.check_out_time a {
    margin-left: -50%;
}
.block_hints .block_check_in_out.check_in_time a,  
td.timespartly.check_in_time a{                    
    margin-right: -50%;
}*/
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_in_time div.check-in-div,                              /* Item  for the LEGEND */
.wpbc_change_over_triangle td.timespartly.check_in_time div.check-in-div {                                /* Define the check in/out time BACKGRUND */
    height: 300%;
    margin-bottom: -400%;    
    top: -50%;    
    width: 100% !important;   
    transform: rotate(45deg) translate(-100%,-10%)
}
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_in_time div.check-in-div {
    transform: rotate(45deg) translate(-85%,-10%)
}
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_out_time div.check-out-div,                            /* Item  for the LEGEND */
.wpbc_change_over_triangle td.timespartly.check_out_time div.check-out-div { 
    height: 300%;
    margin-bottom: -400%;    
    top: -50%;    
    width: 100% !important;   
    transform: rotate(-135deg) translate(0,10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_in_time div.check-in-div,                              /* Item  for the LEGEND */
.wpbc_change_over_triangle2 td.timespartly.check_in_time div.check-in-div {                                /* Define the check in/out time BACKGRUND */
    height: 300%;
    margin-bottom: -400%;    
    top: -50%;    
    width: 100% !important;   
    transform: rotate(-45deg) translate(0,-10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_in_time div.check-in-div {
    transform: rotate(-45deg) translate(-15%,-10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_out_time div.check-out-div,                            /* Item  for the LEGEND */
.wpbc_change_over_triangle2 td.timespartly.check_out_time div.check-out-div { 
    height: 300%;
    margin-bottom: -400%;    
    top: -50%;    
    width: 100% !important;   
    transform: rotate(135deg) translate(-100%,10%);
}
/*FixIn: 7.0.1.19 */
.block_hints .block_check_in_out.check_out_time div.check-out-div,                          /* Item  for the LEGEND */
td.timespartly.check_out_time div.check-out-div {                                           /* Define the check out position */
    float: right;
}

td.timespartly.check_in_time.check_out_time div.check-in-div,                               /* If we are have Together the check  in and check  out times, so  this date is booked.*/
td.timespartly.check_in_time.check_out_time div.check-out-div {
    display: none;
}

/* HIDE check  in/out elements, when: CELL OVER | DATE SELECTED | CHECK IN Date Selected */
/*.datepick-inline .datepick .datepick-unselectable.check_in_time div.check-in-div,
.datepick-inline .datepick .datepick-unselectable.check_out_time div.check-out-div,*/       /*FixIn: 7.0.1.19 */
.datepick-inline .datepick .datepick-days-cell-over.check_in_time div.check-in-div,
.datepick-inline .datepick .datepick-days-cell-over.check_out_time div.check-out-div,
.datepick-inline .datepick .datepick-current-day.check_in_time div.check-in-div,
.datepick-inline .datepick .datepick-current-day.check_out_time div.check-out-div{
    display: none;
    visibility: hidden;
}
/* Check In Pending & Check Out Approved ||  Check Out Pending & Check In Approved || dates     //FixIn: 6.0.1.2   */ 
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div, 
td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
    display: block;
    visibility: visible;
    width: 50%;
    float: left;    
}
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
    float: right;
}
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve span,    
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div {   
    cursor: default;
}

/*******************************************************************************/
/* Set correct FONT of unselectable elements, when the check in date is selected */
/*******************************************************************************/
.datepick-inline .datepick .datepick-unselectable.check_in_time.date_approved,  
.datepick-inline .datepick .datepick-unselectable.check_out_time.date_approved, 
.datepick-inline .datepick .datepick-unselectable.check_in_time.date2approve,
.datepick-inline .datepick .datepick-unselectable.check_out_time.date2approve {
/*    background-color: transparent;*/                                          /*FixIn: 7.0.1.19 */
/*    font-weight: 400;*/                                                       /*FixIn: 9.5.0.2 */
}

/*******************************************************************************/
/*     W I D G E T            **************************************************/
/*******************************************************************************/
/* Set HEIGHT of the CELLs in the Widget */
.widget_wpdev_booking .hasDatepick .datepick-inline .datepick-title-row th,
.widget_wpdev_booking .hasDatepick .datepick-inline .datepick-days-cell{
    height: 48px;
}
/* Set calendar WIDTH and MARGIN in Widget */
.widget_wpdev_booking .bk_calendar_frame{
    margin: 0 2%;
    width: 96% !important;
    max-width: 96% !important;                                              /* //FixIn: 9.6.2.1  */
    min-width: 96% !important;
}
.widget_wpdev_booking .wpbc__row .bk_calendar_frame,
.widget_wpdev_booking .wpbc__field .bk_calendar_frame{
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}
/* LEGEND items show in 2 rows in Widget */
.widget_wpdev_booking .wpdev_hint_with_text{
    float: left;
    margin: 0;
    width: 50% !important;
}
/* Set the WIDTH and MARGIN of the form FIELDS in Widget */
.widget_wpdev_booking input,
.widget_wpdev_booking select,
.widget_wpdev_booking textarea,
.widget_wpdev_booking .wpdevelop input,
.widget_wpdev_booking .wpdevelop select,
.widget_wpdev_booking .wpdevelop textarea,
div#datepick-div input,
div#datepick-div select,
div#datepick-div textarea {
    width: 96%;
    margin: auto;
}
/* SELECT BUTTON and CHECKBOX fields have the Auto Width in Widget */
/*.widget_wpdev_booking select,*/
.widget_wpdev_booking input[type=button],
.widget_wpdev_booking input[type=checkbox]{
    width:auto;
}

/*******************************************************************************/
/* Legend of days, which is shown under calendar *******************************/
/*******************************************************************************/
/* Full Legend Frame */
.block_hints {
    display:flex;
    flex-flow:row wrap;
    justify-content:flex-start;
    align-items:flex-start;
}
/* Date CELL with TEXT description */
.block_hints .wpdev_hint_with_text {
    flex: 0 0 auto;

    display:flex;
    flex-flow:row nowrap;                   /* FixIn: 9.5.0.3  */
    justify-content:flex-start;
    align-items:center;
    max-width: 100%;                        /* FixIn: 9.5.0.3  */
    margin: 7px 15px 7px 0;
}
/* Vertical orientation of Legend items */
.block_hints_vertical.block_hints .wpdev_hint_with_text {
    flex: 0 0 100%;
}
/* Legend cell boxes and text */
.block_hints .wpdev_hint_with_text > * {
    flex: 0 1 auto;
}
/* Text Labels of Legend */
.block_hints .wpdev_hint_with_text .block_text {
    margin-left:5px;
}
/* Dates CELL of Legend */
.block_check_in_out,
.block_pending,
.block_time,
.block_booked,
.block_free {
    /*float: left;*/
    width: 30px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #FEA;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}
/* Font size for the TEXT in CELLa of Legend */
.block_pending a,
.block_time a,
.block_booked a,
.block_free a,
.block_pending,
.block_time,
.block_booked,
.block_free ,
.wpdev_hint_with_text .block_check_in_out {
    font-size: 13px;
    font-weight: 400;
}
/* Clear Line */
.wpdev_clear_hint{ 
    height:1px; 
    width:100%;
    clear:both; 
}
/* Day Rates. Additional info at  the top  and bottom  of the day cell. */
.datepick-inline .datepick-days-cell div.date-content-bottom,
.datepick-inline .datepick-days-cell div.date-content-top {
    font-size:0.7em;
    font-style: normal;
    line-height: 0.72em;
    text-align: center;
    padding:0;
    width:100%;
    text-shadow:none;
    position: relative;
}
/*******************************************************************************/
/* Responsive Design For Mobile Devices ****************************************/
/*******************************************************************************/
@media (max-width: 782px) {
    div.bk_calendar_frame:not(.cal_month_num_1) { /* Define the width of calendar to the 100% of the device screen*/ /* //FixIn: 9.6.2.1  */
        width: 100% !important;
        max-width: 100% !important;
    }
}
@media (max-width: 400px) {
    div.bk_calendar_frame.cal_month_num_1 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .datepick-inline .datepick-one-month { /* Show Only 1 month in a row */
        width:100%;
    }
}

/*@media (max-width: 782px) {*/
/*    .booking_form_div input[type="text"],*/
/*    .booking_form_div select,*/
/*    .booking_form_div textarea {*/
/*        width: 100% !important;*/
/*        min-width: 100% !important;*/
/*    }*/
/*}*/

/*******************************************************************************/
/*     T I M E   S L O T S        AS       D.O.T.S         //FixIn: 8.9.4.13   */
/*******************************************************************************/
.datepick-inline .datepick-days-cell .date-cell-content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100%;
}
.datepick-inline .datepick-days-cell .date-cell-content .date-content-top,
.datepick-inline .datepick-days-cell .date-cell-content .date-content-bottom {
    flex: 1 1 35%;
    line-height: normal;
}
.datepick-inline .datepick-days-cell .date-cell-content a,
.datepick-inline .datepick-days-cell .date-cell-content span {
    flex: 1 1 30%;
}
.datepick-inline .timespartly .date-content-top{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
}
.datepick-inline .timespartly .date-content-top .wpbc_time_dots{
    flex: 1 1 1px;
    font-size: 20px;

    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
}
/*******************************************************************************/
/*  CHECK IN / OUT      as          P.O.L.Y.G.O.N.S        //FixIn: 8.9.4.13   */
/*******************************************************************************/
/* Table Day Cell div boundary element */
.datepick-inline td.datepick-days-cell .wpbc-cell-box {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
.wpbc-cell-box .wpbc-diagonal-el {
    display: none;                      /* Do not visible by  default ! */
    position:absolute;                  /* Important to  have parent element with       "position: relative;"     !!! */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.wpbc-cell-box .wpbc-diagonal-el svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Show Vertical Lines */
.wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(1){
    display: none;
}
.wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(2){
    display: block;
}
/* Show Diagonal Lines */
.wpbc_change_over_triangle .wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(1){
    display: block;
}
.wpbc_change_over_triangle .wpbc-cell-box .wpbc-diagonal-el svg polygon:nth-child(2){
    display: none;
}
/* *** Fill diagonal COLOR for   check in/out items   in calendar skins:    .wpbc-cell-box .wpbc-diagonal-el svg polygon{...}  */
/* Show CO item only when we are have check  in / out  */
.datepick-inline td.datepick-days-cell.check_in_time  .wpbc-cell-box .wpbc-diagonal-el,
.datepick-inline td.datepick-days-cell.check_out_time .wpbc-cell-box .wpbc-diagonal-el {
    display: block;
}
/* Hide Times DOTs, when we are have "check  in / out" Activated  */
.datepick-inline td.datepick-days-cell.check_in_time  .wpbc-cell-box .date-content-top,
.datepick-inline td.datepick-days-cell.check_out_time .wpbc-cell-box .date-content-top {
    visibility: hidden;
}
/*  When "C e l l   O V E R"  -- hide diagonal   */
.datepick-inline .datepick td.datepick-days-cell.datepick-days-cell-over  .wpbc-cell-box .wpbc-diagonal-el{
    display: none;
}
/* S E L E C T E D   Dates */
.datepick-inline .datepick-one-month .datepick td.datepick-days-cell.datepick-current-day  .wpbc-cell-box .wpbc-diagonal-el{
    display: none;
}
.check-in-div, .check-out-div {
    display: none !important;
}
/**                                                                                                                     // FixIn:9.3.1.8
* Fix border width  issue in Chrome browser
* https://stackoverflow.com/questions/71674803/html-tables-has-a-weird-bold-horizontal-line-due-to-border-collapse-property/71703247#71703247
*/
div.datepick-inline table.datepick {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Chrome, Safari, AND NOW ALSO the Edge Browser and Firefox - it's for mobile devices: */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    div.datepick-inline table.datepick,
    div.datepick-inline table.datepick th,
    div.datepick-inline table.datepick td {
         border-width: 0.69px;
    }
}
/* Chrome 29+ */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    div.datepick-inline table.datepick,
    div.datepick-inline table.datepick th,
    div.datepick-inline table.datepick td {
         border-width: 0.01px;
    }
}
/* iOS */
@supports (-webkit-touch-callout: none) {
    div.datepick-inline table.datepick,
    div.datepick-inline table.datepick th,
    div.datepick-inline table.datepick td {
         border-width: 0.68px;
    }
}
/* Chrome 22-28 *
@media screen and(-webkit-min-device-pixel-ratio:0) {
  div.datepick-inline table.datepick {-chrome-:only(;
     border-width: 0.01px;
  );}
  div.datepick-inline table.datepick th {-chrome-:only(;
     border-width: 0.01px;
  );}
  div.datepick-inline table.datepick td {-chrome-:only(;
     border-width: 0.01px;
  );}
}
*/


/* ================================================================================================================== */
/* Tooltips Content for calendar  *********************************************************************************** */
/* ================================================================================================================== */

/*  T o o l t i p  :: General Structure */
.wpbc_tooltip_section.tooltip__times ,
.wpbc_tooltip_section {
    border-top:1px solid #eee;
    margin: 7px 0 0;
    padding: 5px 0 0;
    font-size: 12px;
}
.wpbc_tooltip_section:first-child{
    border:none;
    margin-top:1px;
}
/* Description Word */
.wpbc_tooltip_section .wpbc_tooltip_title{
    font-weight: 600;
}
/* Container of resource(s) */
.wpbc_tooltip_section .wpbc_tooltip_resource_container{
}
/* Resource Name */
.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_header.tooltip_items_count_2,
.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_header{
    font-weight: 600;
}
/* Option Value */
.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_item{
    font-size:0.9em;
}
/*  T o o l t i p  :: Details */
.tooltip__booking_details.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_item{
    margin-left:20px;
}
.tooltip__booking_details.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_item.tooltip_booked_time {
    font-weight: 600;
    font-size:0.85em;
}
/*  T o o l t i p  :: Cost  --  show in 1 row for  */
.tooltip__day_cost.wpbc_tooltip_section .wpbc_tooltip_title,
.tooltip__day_cost.wpbc_tooltip_section .wpbc_tooltip_resource_container,
.tooltip__day_cost.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_item {
    display: inline;
}
/*  T o o l t i p  :: Availability  --  show in 1 row */
.tooltip__availability.wpbc_tooltip_section .wpbc_tooltip_title,
.tooltip__availability.wpbc_tooltip_section .wpbc_tooltip_resource_container,
.tooltip__availability.wpbc_tooltip_section .wpbc_tooltip_resource_container .wpbc_tooltip_item {
    display:inline;
}
/* ================================================================================================================== */
/* End Tooltips Content ********************************************************************************************* */
/* ================================================================================================================== */
.block_hints.datepick .wpdev_hint_with_text .wpbc_calendar_legend_table_width_height {
    width: 30px !important;
    height: 30px;
    border: 0;
    box-shadow: none;
    float: left;
    min-width: 30px;
    padding: 0;
}
.block_hints.datepick .wpdev_hint_with_text .wpbc_calendar_legend_table_width_height .wpbc_calendar_legend_day_cell_height {
    height:30px !important;
}/*******************************************************************************/
/*  Traditionsl   -   C O L O R    S K I N          ****************************/
/*******************************************************************************/
/* For better compatibility, please change here only folowing properties:      */
/* 
*        background , background-color, background-repeat, background-image,  background-repeat, background-position
*        border
*        box-shadow, -moz-box-shadow, -webkit-box-shadow
*        border-radius, -moz-border-radius, -webkit-border-radius
*        color
*        font-weight
*        text-shadow
*        text-transform
*
*/

/* Full Calendar Frame */
.datepick-inline {
	background: #f1f0f0;										/* FixIn: 9.3.1.4 */
	border: 1px solid #f3f3f3;
	box-shadow: 0 0 1px #101010;
	-moz-box-shadow: 0 0 1px #101010;
	-webkit-box-shadow: 0 0 1px #101010;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
/* Background of one calendar month */
.datepick-inline .datepick{
  background:  #686868;
}
/* Previous & Next links  and TITLE BACKGROUND */
.datepick-inline .calendar-links {
    border-bottom:none;										/* FixIn: 9.3.1.4 */
    background: transparent;
}
/* Prev - Next Text */
.datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a,
.datepick-inline .calendar-links .datepick-prev a:hover,
.datepick-inline .calendar-links .datepick-next a:hover{
	color: #5f5f5f;											/* FixIn: 9.3.1.4 */
	text-shadow: none;
	font-weight: 600;
}
/* Month Titles */
.datepick-inline .datepick-header {
	color: #5f5f5f;											/* FixIn: 9.3.1.4 */
	font-weight: 600;
	text-shadow: none;
}
/* Week Titles */
div.datepick-inline .datepick-title-row th{
    border: 1px solid #999;     
    color: #aaa;
    font-weight: 600;    
    text-transform: uppercase;    
}
/* Cell border*/
.block_hints .block_free, .block_hints .block_time, .block_hints .block_booked, .block_hints .block_pending, .block_hints .block_check_in_out, 
.datepick-inline .datepick-days-cell{
    border: 1px solid #999;
    color:#aaa;
}
/******************************************************************************** FixIn: 9.5.0.2 */
/*  New Stripes - Unavailable Cells - for  Booking > Availability page  ********/
/*******************************************************************************/
/* Stripes */
.wpbc_ajx_availability_container .datepick-inline .datepick {
    background: repeating-linear-gradient( 135deg, #717171, #717171 4px, #777 4px, #777 8px );
}
/* Unselectable dates  &  headers - calendar empty cells */
.wpbc_ajx_availability_container .datepick-inline  th,
.wpbc_ajx_availability_container .datepick-inline .datepick-days-cell.datepick-unselectable{
    background: #686868;                                   										   /* Here the same color as at line #36 for  "Full Calendar Frame":   .datepick-inline { ... }  */
}
/* It is all unavailable dates */
.wpbc_ajx_availability_container .datepick-inline .date_user_unavailable,
.wpbc_ajx_availability_container .datepick-inline .before_after_unavailable,		/* "Before/After" unavailable days from	 Settings General page in "Availability" section */
.wpbc_ajx_availability_container .datepick-inline .weekdays_unavailable, 			/* "Weekdays" unavailable  from	 Settings General page in "Availability" section */
.wpbc_ajx_availability_container .datepick-inline .season_unavailable				/* "SEASON" unavailable dates  defined at  Booking > Resources > Availability page */
{
   background: #fff;
}
/* It is all unavailable RESOURCE dates defined at Booking > Availability page */
.wpbc_ajx_availability_container .resource_unavailable:not(.datepick-unselectable) {
    background: transparent;
    color:#fff;
}
/* Unavailable SELECTABLE days for Booking > Availability page */
.block_hints .datepick-inline .datepick-days-cell.date_user_unavailable a,
.datepick-inline .datepick-days-cell.date_user_unavailable:not(.datepick-unselectable) a{
	color:#999;
}
/* Unselectable dates - hide check in/out */
.wpbc_ajx_availability_container .datepick-inline td.datepick-days-cell.check_in_time.datepick-unselectable .wpbc-cell-box .wpbc-diagonal-el,
.wpbc_ajx_availability_container .datepick-inline td.datepick-days-cell.check_out_time.datepick-unselectable .wpbc-cell-box .wpbc-diagonal-el{
	display: none;
}
/*********************************************************************************/
/* U N S E L E C T A B L E    -   Usually when we select 1st date with range dates selection mode, previous dates become unselectable. */
div.wpbc_ajx_availability_container .datepick-inline .datepick-unselectable,
.datepick-inline .datepick-unselectable{
  color: #ddd;
  text-shadow: 0 0px 0 #ddd;
}
.datepick-inline .datepick-unselectable span{                                                        /*  //FixIn: 8.9.4.13 */
    text-shadow: none;
}
/******************************************************************************** FixIn End: 9.5.0.2 */

/*******************************************************************************/
/*  Dates Cells       **********************************************************/
/*******************************************************************************/

/* A V A I L A B L E - BACKGROUND */
.block_hints .block_free,
.block_hints .block_time, 
.block_hints .block_check_in_out div.check-in-div,                             /* Item  for the LEGEND */
.block_hints .block_check_in_out div.check-out-div,                             /* Item  for the LEGEND */
.datepick-inline .date_available,
.datepick-inline .timespartly.check_in_time div.check-in-div,                   /* Define the COLOR fot the check  in / out times the same as available*/
.datepick-inline .timespartly.check_out_time div.check-out-div {
  background: none repeat scroll 0 0 #333;
}
/* A V A I L A B L E  - Text A */
.block_hints .block_free a,
.block_hints .block_time, 
.datepick-inline .date_available a{
    color: #ddd;
    font-weight: 600;
    text-shadow: 0 -1px 0 #000;
}
/*******************************************************************************/

/* T I M E   S L O T S */
.block_hints .block_time, 
.datepick-inline .timespartly{
  /*background-image: url(/wp-content/plugins/booking.bm.10.5/css/skins/../../assets/img/clock_fill.png);*/                                                     /*  //FixIn: 8.9.4.13 */
  background-repeat: no-repeat;
  background-position:100% 100%; 
}
/*******************************************************************************/

/* A P P R O V E D  - BACKGROUND */
.block_hints .date_approved.block_check_in_out, 
.block_hints .block_booked, 
.datepick-inline .date_approved,
/* A P P R O V E D  - BACKGROUND for Check In Pending & Check Out Approved ||  Check Out Pending & Check In Approved   Dates    //FixIn: 6.0.1.2 */
td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
    background-color: #853;
}
/* A P P R O V E D  -  T E X T /including partially booked - timeslots/ */
.block_hints .date_approved.block_check_in_out,  
.block_hints .block_booked, 
.datepick-inline .date_approved,   
.block_hints .block_booked a, 
.datepick-inline .date_approved a{
    color: #d93;
    font-weight: 600;
    text-shadow: 0 -1px 0 #793300;
}
/* CHECK IN and CHECK OUT  Borders for the approved cells - the COLOR have to be the SAME as BACKGROUND of this cell*/
.block_hints .date_approved.block_check_in_out div.check-in-div,                /* Item  for the LEGEND */
.datepick-inline .date_approved.timespartly.check_in_time div.check-in-div{
    border-right: 1px dotted #853;
}
.block_hints .date_approved.block_check_in_out div.check-out-div,               /* Item  for the LEGEND */
.datepick-inline .date_approved.timespartly.check_out_time div.check-out-div{
    border-left: 1px dotted #853;
}
/*******************************************************************************/

/* P E N D I N G  - BACKGROUND */
.block_hints .date2approve.block_check_in_out, 
.block_hints .block_pending, 
.datepick-inline .date2approve, 
/* P E N D I N G  - BACKGROUND for Check In Approved & Check Out Pending ||  Check Out Approved & Check In Pending    Dates     //FixIn: 6.0.1.2  */
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div {    
  background-color: #da3;
}
/* P E N D I N G  -  T E X T /including partially booked - timeslots/ */
.block_hints .date2approve.block_check_in_out, 
.block_hints .block_pending, 
.datepick-inline .date2approve, 
.block_hints .block_pending a, 
.datepick-inline .date2approve a {
    color: #850;
    font-weight: 600;
    text-shadow: 0 1px 0 #FFAA00;
}
/* CHECK IN and CHECK OUT  Borders for the approved cells - the COLOR have to be the SAME as BACKGROUND of this cell*/
.block_hints .date2approve.block_check_in_out div.check-in-div,                 /* Item  for the LEGEND */
.datepick-inline .date2approve.timespartly.check_in_time div.check-in-div{
    border-right: 1px dotted #da3;
}
.block_hints .date2approve.block_check_in_out div.check-out-div,                /* Item  for the LEGEND */
.datepick-inline .date2approve.timespartly.check_out_time div.check-out-div{
    border-left: 1px dotted #da3;
}
/*******************************************************************************/

/* S E L E C T E D   Dates - Background */
.datepick-inline .datepick-one-month .datepick .datepick-current-day {
  background-color: #707099;
}
/* S E L E C T E D   Dates - Text color */
.datepick-inline .datepick-one-month .datepick .datepick-current-day .wpbc_time_dots,                               /*  //FixIn: 8.9.4.13 */
.datepick-inline .datepick-one-month .datepick .datepick-current-day a{
    color: #ededff;
    text-shadow: 0 -1px 0 #339;
}
/*******************************************************************************/

/* C e l l   O V E R   Dates - Background */
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.datepick-days-cell-over,
.datepick-inline .datepick .datepick-days-cell-over{
    background:#79A;
}
/* C e l l   O V E R   Dates - Text color */
.datepick-inline  .datepick-one-month .datepick .datepick-days-cell-over .wpbc_time_dots,                                                /*  //FixIn: 8.9.4.13 */
.datepick-inline  .datepick-one-month .datepick td.datepick-days-cell-over a:hover,
.datepick-inline  .datepick-one-month .datepick td.datepick-days-cell-over a{
    color: #eee;
    text-shadow: none;
}
/*******************************************************************************/
/* FixIn: 6.0.1.2 */
/* Text style for Check In Approved & Check Out Pending ||  Check Out Approved & Check In Pending || Check In Pending & Check Out Approved ||  Check Out Pending & Check In Approved   */
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved span {    
    font-weight: 600;
    text-shadow: none;
}

/* Show partially (time-slots) booked days with Background color as for available days ********************************/
/** //FixIn: 8.2.1.27   Updated 2018-07-04   ****/
/* Color as in this section A V A I L A B L E - BACKGROUND */
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock {
    background-color: #333;
}
/* Same as in this Section above --- A V A I L A B L E  - Text A  */
.wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.date_available a {
    color: #ddd;
    font-weight: 600;
    text-shadow: 0 -1px 0 #000;
}
/*  Same as in this Section above --- S E L E C T E D   Dates - Text color */
.wpbc_timeslot_day_bg_as_available .datepick-inline .datepick-one-month .datepick .times_clock.date_available.datepick-current-day a{
    color: #ededff;
    text-shadow: 0 -1px 0 #339;
}
/*   Same as in this Section above --- A V A I L A B L E  and UNSELECTABLE - Text */
.wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
  color: #aaa;                                                               /* This style for the uvailbale date, when we are select the dates */
  text-shadow: none;                                                 /* This style for the unavailable date, when we are select the dates */
}
.datepick-inline .date_available span {
    text-shadow: none;
}

/*******************************************************************************/
/*  CHECK IN / OUT      as          P.O.L.Y.G.O.N.S        //FixIn: 8.9.4.13   */
/*******************************************************************************/
/* Fill diagonal check  in/out items with AVAILABLE background color */
.wpbc-cell-box .wpbc-diagonal-el svg polygon{
    fill: #333;
}
/* Firstly we define background of the day cells background as available */
.datepick-inline td.datepick-days-cell.check_in_time,
.datepick-inline td.datepick-days-cell.check_out_time {
    background-color: #333;
}
/* Pending */
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date2approve     .wpbc-cell-box .wpbc-co-in svg polygon,     /* Check In  */
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date2approve   .wpbc-cell-box .wpbc-co-out svg polygon     /* Check Out */
{
    fill: #da3;
}
/* Approved */
.datepick-inline td.datepick-days-cell.check_in_time.check_in_time_date_approved    .wpbc-cell-box .wpbc-co-in svg polygon,     /* Check In  */
.datepick-inline td.datepick-days-cell.check_out_time.check_out_time_date_approved  .wpbc-cell-box .wpbc-co-out svg polygon     /* Check Out */
{
    fill: #853;
}
/* C e l l   O V E R   Dates */
.datepick-inline td.datepick-days-cell.check_in_time.datepick-days-cell-over,
.datepick-inline td.datepick-days-cell.check_out_time.datepick-days-cell-over {
    background-color: #79A;
}:root {
  --wpbc_timeline-row-height: 37px;
  --wpbc_timeline-matrix-row-header-height: 58px;
  --wpbc_timeline-single-row-header-height: 40px;
  --wpbc_timeline-booking-pending-color: #ffd86c;
  --wpbc_timeline-past-booking-pending-color: #fff3d2;
  --wpbc_timeline-booking-pending-border-color: #e49c2d;
  --wpbc_timeline-booking-approved-color: #5A71A1;
  --wpbc_timeline-past-booking-approved-color: #8591aa;
  --wpbc_timeline-booking-approved-border-color: #4B5E85;
  --wpbc_timeline-new-month-border-color: transparent
}
.flex_tl_table {
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  box-sizing: border-box
}
.wpbc_timeline_client_border .flex_tl_table {
  box-shadow: 0 2px 5px #00000014;
  border: 1px solid #e7e7e7
}
.flex_tl_table .flex_tl_table_header,
.flex_tl_table .flex_tl_table_row_bookings,
.flex_tl_table .flex_tl_table_titles {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1 {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 0;
  word-wrap: break-word;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: center;
  justify-content: center
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: center;
  justify-content: center
}
@media (max-width:782px) {
  .flex_tl_table .flex_tl_table_header,
  .flex_tl_table .flex_tl_table_row_bookings,
  .flex_tl_table .flex_tl_table_titles {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
  }
  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1,
  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2,
  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 {
    width: 100%;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 7px 0 0
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_title {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  word-break: break-word;
  min-width: 0;
  color: #777
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-align: center
}
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num {
  font-size: 10px;
  font-weight: 400;
  display: none
}
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week,
.flex_tl_single_resource .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
  font-size: 14px
}
.flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num {
  display: none
}
.flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
  font-size: 14px
}
.flex_tl_single_resource.flex_frame_view_days_num_365 .flex_tl_table_titles {
  visibility: hidden;
  height: 5px
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
  height: 3em;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  overflow: hidden
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month.flex_tl_dates_bar .flex_tl_day_cell {
  border: none
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month .flex_tl_day_cell .in_cell_month_year {
  overflow: visible;
  word-wrap: normal;
  white-space: nowrap
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container,
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-align: center;
  align-items: center
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: left
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
  text-align: right;
  padding: 0 1em
}
@media (max-width:782px) {
  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: left;
    padding: 0 1em
  }
  .flex_timeline_frame .popover {
    width: 98%;
    max-width: 98%
  }
}
.flex_tl_row_height,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
  min-height: var(--wpbc_timeline-row-height)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_bookings {
  margin-top: calc(-1 * var(--wpbc_timeline-row-height))
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles {
  margin-top: calc(-1 * var(--wpbc_timeline-row-height));
  overflow: hidden
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day .in_cell_time_hour {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
.flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates {
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  word-wrap: normal;
  white-space: nowrap
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.pending_booking {
  border-bottom: 1px dashed #555
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking {
  border-bottom: 1px dashed #ccc;
  background-color: #78a
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id:last-child {
  border-bottom: none
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:active,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:hover {
  position: relative;
  cursor: default;
  outline: 0;
  box-shadow: none
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a .in_cell_date_booking_pipeline_a_sizer {
  width: 100%;
  height: 100%
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title {
  overflow: visible;
  white-space: nowrap;
  word-wrap: initial;
  padding: 0 .5em;
  margin-left: 4px;
  margin-top: 4px;
  z-index: 1
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell {
  border: none
}
.flex_tl_table,
.hidden_items {
  display: none
}
.flex_timeline_frame .popover {
  border: 2px solid #555;
  font-size: 12px;
  max-width: 299px;
  max-height: 425px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-gutter: unset
}
hr.wpbc_tl_popover_booking_separator {
  margin-bottom: 0
}
.wpbc-listing-collumn.field-system-info {
  font-size: 9px;
  font-style: normal;
  line-height: 1.2em;
  text-shadow: none;
  white-space: nowrap;
  padding: 2px 0 0 5px;
  text-align: right;
  color: #777
}
.flex_timeline_frame .popover .popover-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  min-height: 2.5em;
  margin: 0;
  padding: 5px 30px 5px 6px;
  border-radius: 5px 5px 0 0;
  background-color: #fcfcfc
}
.flex_timeline_frame .popover .popover-title .popover-title-id {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
  padding: 0 12px 0 5px;
  border: 0;
  vertical-align: baseline
}
.flex_timeline_frame .popover .popover-title .popover-title-buttons {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 2px 0
}
.flex_timeline_frame .popover .popover-title .popover-title-buttons a,
.flex_timeline_frame .popover .popover-title .popover-title-buttons a:focus,
.flex_timeline_frame .popover .popover-title .popover-title-buttons a:hover {
  -ms-flex: none;
  flex: none;
  box-sizing: border-box;
  margin: 0 5px 0 0;
  padding: 0 10px 1px;
  font-size: 13px;
  height: 28px;
  line-height: 28px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  color: #555;
  border-radius: 3px;
  border: 1px solid #aaa0;
  box-shadow: none;
  outline: 0;
  background: 0 0!important
}
.flex_timeline_frame .popover .popover-title .popover-title-buttons a:hover {
  background: #fafafa;
  border: 1px solid #eee!important;
  color: #23282d
}
.flex_timeline_frame .popover .popover-title .popover-title-buttons .wpbc-buttons-separator {
  margin-right: 1.5em
}
.flex_timeline_frame .popover .popover-close,
.flex_timeline_frame .popover .popover-close:hover {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  line-height: 1.5em;
  padding: 5px
}
.flex_timeline_frame .popover .popover-close a,
.flex_timeline_frame .popover .popover-close a:active,
.flex_timeline_frame .popover .popover-close a:focus,
.flex_timeline_frame .popover .popover-close a:hover {
  text-decoration: none;
  border-style: none;
  outline: 0;
  color: #444;
  background: 0 0;
  padding: 0 5px
}
.flex_timeline_frame .popover.bottom > .arrow::after {
  border-bottom-color: transparent
}
.popover-content .flex-popover-content-data {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.popover-content .flex-popover-content-data .flex-popover-bars,
.popover-content .wpbc-popover-content-data .booking-dates,
.popover-content .wpbc-popover-content-data .booking-labels,
.popover-content .wpbc-popover-content-data .wpbc-popover-booking-data,
.popover-content .wpbc-popover-content-data .wpbc-popover-booking-notes,
.popover-content .wpbc-popover-content-data .wpbc-popover-cost-bar {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}
.popover-content .flex-popover-content-data .flex-popover-bars {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-labels-bar {
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  clear: both
}
.popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-cost-bar {
  -ms-flex: none;
  flex: none;
  padding: .3em 0;
  margin: 0
}
.popover-content .flex-popover-content-data .flex-popover-labels-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.popover-content .flex-popover-content-data .flex-popover-labels-bar .flex-label {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 0
}
.popover-content .flex-popover-content-data .flex-label {
  border: 0;
  border-radius: 3px;
  text-shadow: none;
  box-shadow: 0 0 1px #ddd;
  font-weight: 400;
  font-size: 95%;
  line-height: 1.7em;
  padding: .2em .8em;
  background-color: #5bc0de;
  color: #fff;
  text-align: center;
  vertical-align: baseline;
  margin: .15em .75em .5em 0;
  word-wrap: break-word;
  word-wrap: anywhere;
  white-space: pre-wrap
}
.popover-content .flex-popover-content-data .flex-label .label-prefix {
  font-size: 70%;
  font-weight: 400
}
.popover-content .flex-popover-content-data .flex-label.flex-label-id {
  background: #888
}
.popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-pending {
  background: #ffbb45
}
.popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-approved {
  background: #9be
}
.popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-success {
  background: #468847
}
.popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-unknown {
  background: #999
}
.popover-content .flex-popover-content-data .flex-label.flex-label-trash {
  background: #d94a48
}
.popover-content .flex-popover-content-data .flex-label.flex-label-resource {
  text-align: left
}
.popover-content .flex-popover-content-data .flex-label.flex-label-cost {
  background: 0 0;
  font-weight: 600;
  color: #333;
  box-shadow: none;
  padding: 0;
  margin: 0
}
.popover-content .flex-popover-content-data .flex-popover-booking-data {
  margin: 1em 0;
  text-align: left;
  font-size: 1.05em;
  line-height: 1.8em;
  color: #333;
  max-width: 100%;
  word-wrap: break-word;
  word-wrap: anywhere
}
.popover-content .flex-popover-content-data .flex-popover-booking-data span.fieldvalue {
  background: 0 0;
  padding: 2px;
  border-radius: 1px;
  margin: 0 .5em 0 0;
  word-break: initial;
  word-wrap: break-word
}
.popover-content .flex-popover-content-data .flex-popover-booking-data label {
  font-weight: 600;
  vertical-align: baseline
}
.popover-content .flex-popover-content-data .flex-popover-booking-data * {
  vertical-align: baseline;
  line-height: 2em
}
.popover-content .flex-popover-content-data .wpbc-popover-booking-notes {
  margin: 0 0 1em;
  max-width: 100%;
  word-break: break-word
}
.popover-content .flex-popover-content-data .flex-label-dates {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start
}
.popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 103%;
  padding: .1em .7em;
  margin: 0 0 .2em;
  background: #ffbb45
}
.popover-content .flex-popover-content-data .flex-label-dates .date_tire {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0 .2em;
  font-size: 175%;
  line-height: 1em
}
.popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date .field-booking-time {
  font-size: .7em;
  font-weight: 400;
  color: #23282d
}
.popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date.approved {
  background: #9be
}
.popover-content .wpbc_tl_popover_booking_separator {
  margin: 20px 0;
  border-top: 1px solid #ddd;
  box-shadow: 0 1px 1px #f9f9f9
}
.flex_tl_table {
  background: #fff;
  border: 0 solid #ddd;
  box-shadow: 0 0 0 #eef;
  font-size: 12px;
  border-radius: 4px 4px 0 0;
  color: #777
}
.flex_tl_table .flex_tl_table_header {
  background: 0 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 15px;
  font-weight: 600;
  color: #606060;
  text-shadow: none;
  line-height: 3em;
  height: 3em;
  overflow: hidden;
  padding-left: 1em;
  border-radius: 4px 4px 0 0
}
.wpbc_timeline_front_end .flex_tl_table .flex_tl_table_header {
  padding: 0 2px
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 {
  font-weight: 600;
  padding: 8px;
  line-height: 1.42857143em
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 {
  text-align: center
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev {
  font-size: 22px;
  font-weight: 600;
  line-height: 12px;
  color: #777
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a:hover,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a:hover {
  text-decoration: none;
  color: #757575;
  cursor: pointer
}
.flex_tl_table .flex_tl_table_row_bookings {
  border-top: 1px solid #ddd
}
.flex_tl_table .flex_tl_table_row_bookings:nth-of-type(2n+1) {
  background-color: #fff
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1 {
  font-weight: 600;
  padding: 0 0 0 4px;
  line-height: 1.42857143em;
  box-shadow: none
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_row_height {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1 {
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title {
  padding-left: 8px;
  font-size: .95em
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a {
  border-bottom: 0 dashed;
  color: #789;
  text-shadow: none;
  margin: 0 0 0 2px;
  box-shadow: none;
  outline: 0;
  text-decoration: none
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a:active,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a:focus,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a:hover {
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.parent {
  font-weight: 600
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.child {
  margin-left: 20px
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar,
.flex_tl_single_resource .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month,
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
  display: none
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
  display: none
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 18px;
  text-align: center
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
  border-left: 1px solid #eee
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.new_month,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_matrix_resources .flex_tl_day_cell.new_month {
  border-left: 1px solid #c32
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_date_container {
  border-left: 2px solid var(--wpbc_timeline-new-month-border-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 .in_cell_date_container_show_dates,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 .in_cell_date_container_show_dates,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 a,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 a {
  color: #c32;
  background: #fff
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a:hover {
  color: #789;
  text-decoration: none
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year {
  color: #c32;
  font-size: .85em;
  font-weight: 600;
  padding: 0 .5em
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  min-height: 12px;
  font-size: .8em;
  font-weight: 600
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday7,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday7 {
  color: #bd7f78
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
  border-left: 1px solid #f1f1f1;
  color: #555;
  font-weight: 400;
  font-size: 10px;
  text-shadow: none
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_time_hour:first-child .in_cell_date_container {
  border-left: 2px solid var(--wpbc_timeline-new-month-border-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month.exist_booking_in_cell .in_cell_time_hour:first-child .in_cell_date_container {
  border-left: 1px solid var(--wpbc_timeline-new-month-border-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings.in_cell_date_container_has_several_bookings .booking_id {
  margin-top: .2px;
  margin-bottom: .3px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings.in_cell_date_container_has_several_bookings .booking_id:first-child {
  margin-top: 2px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings.in_cell_date_container_has_several_bookings .booking_id:last-child {
  margin-bottom: 3px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings.in_cell_date_container_has_several_bookings .booking_id.start_new_booking {
  border-radius: 0
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking {
  border-radius: 5px 0 0 5px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.start_new_booking {
  border-color: #616f8b
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.past_date {
  background-color: #f0cf77
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.past_date {
  background-color: #9099aa;
  background-color: var(--wpbc_timeline-past-booking-approved-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking.booking_trash {
  border-left: 2px solid #901c1a
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_trash {
  background-color: #db6f6d
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day {
  border-left: 1px solid #090
}
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day,
.flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day {
  border-left: none
}
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time,
.flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time {
  border-left: 1px solid #77ce0f
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id a {
  font-size: 7px;
  font-weight: 600;
  color: #fff;
  cursor: pointer
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title {
  background: #777;
  color: #fff;
  border-left: 2px solid #555;
  cursor: pointer;
  border-radius: 3px;
  font-size: 10px
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title.several_bookings_in_cell {
  font-weight: 600;
  background: #fdab36;
  color: #455366;
  border-left: 2px solid #dd8b16
}
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
.flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  font-size: .8em;
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 2px
}
.wpbc_calendar_overview__header {
  position: relative;
  width: 100%
}
.wpbc_calendar_overview__header .nav-tabs {
  box-shadow: 0 3px 8px #eaeaea;
  border-bottom: 1px solid #e3e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center
}
.wpbc_calendar_overview__header .wpbc_calendar_overview__navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  margin: 4px 5px 4px auto
}
.wpbc_calendar_overview__container {
  padding: 0 1px;
  margin-top: 0;
  border: 1px solid #d5d5d5;
  background: #fff;
  font-size: 13px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 8px #dadada;
  margin-bottom: 25px
}
.wpbc_page_tab__vm_calendar #toolbar_booking_listing.wpbc_timeline_toolbar_container {
  margin: -21px 0 0!important;
  position: relative;
  box-shadow: 0 4px 8px #e4e4e4
}
.wpbc_timeline_toolbar_container .wpdvlp-sub-tabs {
  border-radius: 0 0 2px 2px
}
.wpbc_page_tab__vm_calendar #toolbar_booking_listing.wpbc_timeline_toolbar_container .wpdvlp-sub-tabs {
  padding-bottom: 1px
}
.wpbc_calendar_overview__container .flex_tl_table {
  border-radius: 0;
  border-top: none;
  font-size: 13px
}
.wpbc_timeline_toolbar_structure {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center
}
.wpbc_timeline_toolbar_structure > * {
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 15px
}
.wpbc_timeline_toolbar_structure > :last-child {
  margin-left: auto;
  margin-right: 0
}
.wpbc_toolbar_search_by_id_bookings {
  -ms-flex-item-align: end;
  align-self: flex-end
}
@media (max-width:501px) {
  .wpbc_toolbar_search_by_id_bookings {
    display: none
  }
}
.flex_tl__scrolling_sections {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow-y: auto;
  scrollbar-width: thin
}
.flex_tl__scrolling_sections .flex_tl__scrolling_section1 {
  width: 220px;
  overflow-x: auto;
  scrollbar-width: thin;
  box-shadow: 0 0 10px 1px #00000025;
  z-index: 1;
  padding: 0
}
.flex_tl__scrolling_sections .flex_tl__scrolling_section1 > div {
  -ms-flex: 0 1 180px;
  flex: 0 1 180px
}
.flex_tl__scrolling_sections .flex_tl__scrolling_section2 {
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  overflow-x: auto;
  scrollbar-width: thin
}
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 900px
}
.flex_tl_single_resource.flex_frame_view_days_num_90 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 350px
}
.flex_tl_single_resource.flex_frame_view_days_num_365 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 1400px
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 900px
}
.flex_tl_matrix_resources.flex_frame_view_days_num_7 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 300px
}
.flex_tl_matrix_resources.flex_frame_view_days_num_30 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 1400px
}
.flex_tl_matrix_resources.flex_frame_view_days_num_60 .flex_tl__scrolling_sections .flex_tl__scrolling_section2 .flex_tl_row_max_width {
  min-width: 2800px
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 {
  height: var(--wpbc_timeline-single-row-header-height);
  overflow: hidden
}
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 {
  height: var(--wpbc_timeline-matrix-row-header-height)
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  align-items: stretch
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 > div,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 > div {
  -ms-flex: 1 1 100%;
  flex: 1 1 100%
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id {
  margin-left: -1px;
  margin-top: 2px;
  margin-bottom: 3px;
  opacity: .8;
  background: none;
  background-color: var(--wpbc_timeline-booking-pending-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking {
  border-left: 2px solid #df8d18
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking {
  background-color: var(--wpbc_timeline-booking-approved-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.past_date {
  background-color: var(--wpbc_timeline-past-booking-pending-color)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_change_over {
  border: none;
  height: calc(100% - 5px);
  position: absolute;
  width: calc(100% + 1px);
  margin: 2px -1px 0
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_check_in {
  background: linear-gradient(to bottom right,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-pending-border-color) 50%,var(--wpbc_timeline-booking-pending-border-color) 52%,var(--wpbc_timeline-booking-pending-color) 52%,var(--wpbc_timeline-booking-pending-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_check_out {
  background: linear-gradient(to top left,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-pending-color) 50%,var(--wpbc_timeline-booking-pending-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.booking_check_in {
  background: linear-gradient(to bottom right,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-approved-border-color) 50%,var(--wpbc_timeline-booking-approved-border-color) 52%,var(--wpbc_timeline-booking-approved-color) 52%,var(--wpbc_timeline-booking-approved-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.booking_check_out {
  background: linear-gradient(to top left,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-approved-color) 50%,var(--wpbc_timeline-booking-approved-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_check_in.past_date {
  background: linear-gradient(to bottom right,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-pending-border-color) 50%,var(--wpbc_timeline-booking-pending-border-color) 52%,var(--wpbc_timeline-past-booking-pending-color) 52%,var(--wpbc_timeline-past-booking-pending-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_check_out.past_date {
  background: linear-gradient(to top left,#fff0 0,#fff0 50%,var(--wpbc_timeline-past-booking-pending-color) 50%,var(--wpbc_timeline-past-booking-pending-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.booking_check_in.past_date {
  background: linear-gradient(to bottom right,#fff0 0,#fff0 50%,var(--wpbc_timeline-booking-approved-border-color) 50%,var(--wpbc_timeline-booking-approved-border-color) 52%,var(--wpbc_timeline-past-booking-approved-color) 52%,var(--wpbc_timeline-past-booking-approved-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.booking_check_out.past_date {
  background: linear-gradient(to top left,#fff0 0,#fff0 50%,var(--wpbc_timeline-past-booking-approved-color) 50%,var(--wpbc_timeline-past-booking-approved-color) 100%)
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title:active,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title:focus,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title:hover {
  outline: 0;
  box-shadow: 0 0 0 2px #a6bbe5;
  box-shadow: 0 0 4px -1px #000;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
  text-decoration-thickness: 0;
  text-underline-offset: 2px
}
.wp-core-ui .wpbc_page .wpbc_calendar_overview__navigation .wpbc_button_no_background {
  background: 0 0;
  border: none!important;
  box-shadow: none!important;
  line-height: 2.5
}
.wp-core-ui .wpbc_page .wpbc_calendar_overview__navigation .wpbc_button_no_background .menu_icon:before {
  font-size: 19px
}/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedy1zzpj.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwed81zzpj.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedc1zzpj.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedg1zzpj.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedq1zzpj.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedu1zzpj.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grweds1zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedy1zzpj.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwed81zzpj.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedc1zzpj.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedg1zzpj.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedq1zzpj.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedu1zzpj.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grweds1zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedy1zzpj.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwed81zzpj.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedc1zzpj.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedg1zzpj.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedq1zzpj.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedu1zzpj.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grweds1zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedy1zzpj.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwed81zzpj.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedc1zzpj.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedg1zzpj.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedq1zzpj.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedu1zzpj.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grweds1zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedy1zzpj.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwed81zzpj.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedc1zzpj.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedg1zzpj.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedq1zzpj.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grwedu1zzpj.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgwmqsnjdsmc35jdf1k5grweds1zw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr4sdktyw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5grxsdktyw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr5sdktyw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr2sdktyw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr6sdktyw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr7sdktyw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr1sdk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr4sdktyw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5grxsdktyw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr5sdktyw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr2sdktyw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr6sdktyw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr7sdktyw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr1sdk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr4sdktyw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5grxsdktyw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr5sdktyw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr2sdktyw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr6sdktyw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr7sdktyw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr1sdk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr4sdktyw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5grxsdktyw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr5sdktyw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr2sdktyw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr6sdktyw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr7sdktyw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr1sdk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr4sdktyw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5grxsdktyw.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr5sdktyw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr2sdktyw.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr6sdktyw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr7sdktyw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/ebgaramond-slgumqsnjdsmc35jdf1k5gr1sdk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://3dbaking.net/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
