/**handles:booked-tooltipster,booked-tooltipster-theme,booked-animations,booked-css,contact-form-7,esg-plugin-settings,tp-fontello,wpml-legacy-dropdown-0,wpml-menu-item-0,branda-cookie-notice-front**/
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px; 
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 1px;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	opacity:0;
	-webkit-transform: translate3d(0,5px,0);
	-moz-transform: translate3d(0,5px,0);
	-o-transform: translate3d(0,5px,0);
	-ms-transform: translate3d(0,5px,0);
	transform: translate3d(0,5px,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	opacity:1;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.tooltipster-light{border-radius:3px;border:1px solid #ddd;-moz-box-shadow:0 1px 2px rgba(0,0,0,.1);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1);box-shadow:0 1px 2px rgba(0,0,0,.1);background:#fff;color:#888}.tooltipster-light .tooltipster-content{font-family:Arial,sans-serif;font-size:14px;line-height:16px;padding:8px 10px}
@keyframes booked-flyin{0%{opacity:0;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes booked-flyin{0%{opacity:0;-webkit-transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1)}}@-moz-keyframes booked-flyin{0%{opacity:0;-moz-transform:scale(.9)}100%{opacity:1;-moz-transform:scale(1)}}@-ms-keyframes booked-flyin{0%{opacity:0;-ms-transform:scale(.9)}100%{opacity:1;-ms-transform:scale(1)}}@-o-keyframes booked-flyin{0%{opacity:0;-o-transform:scale(.9)}100%{opacity:1;-o-transform:scale(1)}}@keyframes booked-popflyin{0%{opacity:0;transform:scale(.95)}50%{opacity:1;transform:scale(1.01)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes booked-popflyin{0%{opacity:0;-webkit-transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.01)}100%{opacity:1;-webkit-transform:scale(1)}}@-moz-keyframes booked-popflyin{0%{opacity:0;-moz-transform:scale(.95)}50%{opacity:1;-moz-transform:scale(1.01)}100%{opacity:1;-moz-transform:scale(1)}}@-ms-keyframes booked-popflyin{0%{opacity:0;-ms-transform:scale(.95)}50%{opacity:1;-ms-transform:scale(1.01)}100%{opacity:1;-ms-transform:scale(1)}}@-o-keyframes booked-popflyin{0%{opacity:0;-o-transform:scale(.95)}50%{opacity:1;-o-transform:scale(1.01)}100%{opacity:1;-o-transform:scale(1)}}@keyframes booked-flyout{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.9)}}@-webkit-keyframes booked-flyout{0%{opacity:1;-webkit-transform:scale(1)}100%{opacity:0;-webkit-transform:scale(.9)}}@-moz-keyframes booked-flyout{0%{opacity:1;-moz-transform:scale(1)}100%{opacity:0;-moz-transform:scale(.9)}}@-ms-keyframes booked-flyout{0%{opacity:1;-ms-transform:scale(1)}100%{opacity:0;-ms-transform:scale(.9)}}@-o-keyframes booked-flyout{0%{opacity:1;-o-transform:scale(1)}100%{opacity:0;-o-transform:scale(.9)}}@keyframes booked-popdown{0%{opacity:0;transform:translateY(-5px)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes booked-popdown{0%{opacity:0;-webkit-transform:translateY(-5px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes booked-popdown{0%{opacity:0;-moz-transform:translateY(-5px)}100%{opacity:1;-moz-transform:translateY(0)}}@-ms-keyframes booked-popdown{0%{opacity:0;-ms-transform:translateY(-5px)}100%{opacity:1;-ms-transform:translateY(0)}}@-o-keyframes booked-popdown{0%{opacity:0;-o-transform:translateY(-5px)}100%{opacity:1;-o-transform:translateY(0)}}@keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@-moz-keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@-ms-keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@-o-keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}@-webkit-keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}@-moz-keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}@-ms-keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}@-o-keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}
@charset "UTF-8";@keyframes booked-flyin{0%{opacity:0;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}@keyframes booked-popflyin{0%{opacity:0;transform:scale(.95)}50%{opacity:1;transform:scale(1.01)}100%{opacity:1;transform:scale(1)}}@keyframes booked-flyout{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.9)}}@keyframes booked-popdown{0%{opacity:0;transform:translateY(-5px)}100%{opacity:1;transform:translateY(0)}}@keyframes booked-fadein{0%{opacity:0}100%{opacity:1}}@keyframes booked-fadeout{0%{opacity:1}100%{opacity:9}}body #booked-profile-page button,body #booked-profile-page input[type=submit],body .booked-calendar button,body .booked-calendar input[type=submit],body .booked-list-view button,body .booked-list-view input[type=submit],body .booked-modal button,body .booked-modal input[type=submit]{-webkit-appearance:none;height:auto;font-size:13px;border-radius:3px;display:inline-block;padding:9px 12px 10px;background:#eee;color:#333;line-height:1;text-shadow:none;box-shadow:none;border:1px solid #ccc}body #booked-profile-page button:hover,body #booked-profile-page input[type=submit]:hover,body .booked-calendar button:hover,body .booked-calendar input[type=submit]:hover,body .booked-list-view button:hover,body .booked-list-view input[type=submit]:hover,body .booked-modal button:hover,body .booked-modal input[type=submit]:hover{background:#ddd;color:#000;height:auto;text-shadow:none;box-shadow:none;border:1px solid #ccc}body #booked-profile-page button.bb-small,body #booked-profile-page input[type=submit].bb-small,body .booked-calendar button.bb-small,body .booked-calendar input[type=submit].bb-small,body .booked-list-view button.bb-small,body .booked-list-view input[type=submit].bb-small,body .booked-modal button.bb-small,body .booked-modal input[type=submit].bb-small{line-height:24px;padding:0 8px;cursor:pointer}body #booked-profile-page button.button-primary,body #booked-profile-page input[type=submit].button-primary,body .booked-calendar button.button-primary,body .booked-calendar input[type=submit].button-primary,body .booked-list-view button.button-primary,body .booked-list-view input[type=submit].button-primary,body .booked-modal button.button-primary,body .booked-modal input[type=submit].button-primary{-webkit-appearance:none;height:auto;color:#fff;border-width:1px;border-style:solid}body #booked-profile-page button.button-primary:hover,body #booked-profile-page input[type=submit].button-primary:hover,body .booked-calendar button.button-primary:hover,body .booked-calendar input[type=submit].button-primary:hover,body .booked-list-view button.button-primary:hover,body .booked-list-view input[type=submit].button-primary:hover,body .booked-modal button.button-primary:hover,body .booked-modal input[type=submit].button-primary:hover{color:#fff;height:auto;border:1px solid}body #booked-profile-page button.cancel,body #booked-profile-page input[type=submit].cancel,body .booked-calendar button.cancel,body .booked-calendar input[type=submit].cancel,body .booked-list-view button.cancel,body .booked-list-view input[type=submit].cancel,body .booked-modal button.cancel,body .booked-modal input[type=submit].cancel{background:#eee!important;color:#333!important}body #booked-profile-page button.cancel:hover,body #booked-profile-page input[type=submit].cancel:hover,body .booked-calendar button.cancel:hover,body .booked-calendar input[type=submit].cancel:hover,body .booked-list-view button.cancel:hover,body .booked-list-view input[type=submit].cancel:hover,body .booked-modal button.cancel:hover,body .booked-modal input[type=submit].cancel:hover{background:#ddd!important;color:#000!important}body .booked-calendar-wrap{margin:0 0 30px}body .widget_booked_calendar .booked-calendar-wrap{margin:0}body .calendarSavingState{font-size:17px;display:none}body #wp-admin-bar-booked .ab-icon:before{content:"";top:1px}body.booked-noScroll{width:100%;overflow:hidden;position:relative}body div.booked-calendar-wrap div.booked-calendar{border-radius:10px;overflow:hidden;box-sizing:border-box;margin:0;padding:0;background:#f1f1f1;border-spacing:0;box-shadow:0 2px 2px rgba(0,0,0,.075);width:100%}body div.booked-calendar-wrap div.booked-calendar .bc-head{color:#fff;text-transform:uppercase}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row{display:flex}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col{font-weight:400;position:relative;width:14.285%;border-width:1px;border-style:solid;line-height:1}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName{letter-spacing:.03rem;font-size:1.05rem;line-height:1rem;height:1.05rem;display:inline-block}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName a{font-size:.8rem;position:relative;top:-.05rem;padding-left:8px;text-decoration:none;text-transform:none;color:#fff;color:rgba(255,255,255,.5)}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .monthName a:hover{color:rgba(255,255,255,.75)}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left,body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right{color:#fff!important;position:absolute;font-size:1.3rem;top:50%;margin-top:-.65rem}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left{left:20px}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-left:hover{left:19px}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right{right:20px}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row .bc-col .page-right:hover{right:19px}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.days{color:#fff;text-transform:uppercase}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.days .bc-col{font-weight:600;text-align:center;padding:9px 0 10px;font-size:11px;letter-spacing:.03rem}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.top{height:auto}body div.booked-calendar-wrap div.booked-calendar .bc-head .bc-row.top .bc-col{padding:1.1rem 0;width:100%;display:flex;align-items:center;justify-content:center}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row{display:flex}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col{width:100%;font-weight:400;text-align:center;overflow:hidden;position:relative;font-size:20px;color:#333;padding:0!important;margin:0!important;border-right:1px solid #eee}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:last-child{border-right:none}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col ::before{content:"";float:left;padding-top:100%}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .date{position:relative;background:#fff;display:block;width:100%;height:100%}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .date .number{position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;display:inline-block;border-radius:30px;width:50px;height:50px;line-height:49px}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:hover .date{cursor:pointer;background:#fafafa}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col:hover .date span{color:#fff}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur:hover .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.blur:hover .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date:hover .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-date:hover .date span{cursor:not-allowed;background:#f5f5f5!important;color:#ccc!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .booked:hover .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col .booked:hover .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.booked .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.booked .date span{cursor:not-allowed;background:#fff9f8!important;color:#ffa790!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month .date,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month .date{background:#fafafa}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month .date span{color:#ccc}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.next-month:hover .date span,body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.prev-month:hover .date span{color:#fff}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active{background:#ddd;border-bottom-color:#ddd}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active .date{background:#ddd;color:#555}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active .date .number{border:none;background:#fff;color:#000}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active:hover .date{background:#ddd}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.active:hover .date span{background:#fff}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today .date{color:#000}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today .date span{box-shadow:inset 0 0 0 2px #31afea;color:#000!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.prev-date .date span{color:#ccc!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today:hover .date{color:#000!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today:hover .date span{background:#31afea!important;color:#fff!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.active:hover .date span{background:#fff!important;color:#000!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.week .bc-col.today.prev-date:hover .date span{background:0 0!important;color:#ccc!important}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock{color:#fff;background:#ddd}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock .bc-col{width:100%;padding:2%;color:#fff;border-bottom-color:#ddd}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading{position:relative}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading .booked-spinner{position:absolute}body div.booked-calendar-wrap div.booked-calendar .bc-body .bc-row.entryBlock.booked-loading .bc-col{height:132px}body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked .date,body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked .date span,body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date,body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date span{cursor:pointer}body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked:hover .date span{color:#fff!important}body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date,body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date:hover{background:#ddd!important;color:#555!important}body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date span,body div.booked-calendar-wrap div.booked-calendar.booked-pa-active .bc-row.week .bc-col.booked.active .date span:hover{background:#fff!important;color:#555!important}body div.booked-calendar-wrap.small div.booked-calendar .bc-head .bc-row .bc-col .monthName{font-size:.9rem;font-weight:800;line-height:1.1rem;height:1.1rem}body div.booked-calendar-wrap.small div.booked-calendar .bc-head .bc-row .bc-col .monthName .backToMonth{font-weight:500;letter-spacing:0}body div.booked-calendar-wrap.small div.booked-calendar .bc-body .bc-row.week .bc-col .date .number{margin:-18px 0 0 -18px;font-size:16px;line-height:35px!important;width:36px;height:36px}body .booked-appt-list{font-size:15px;line-height:1.7;color:#000;background:#fff;transform:scale(.95);padding:30px 35px 10px;display:none;box-shadow:0 2px 2px rgba(0,0,0,.1);border-radius:5px}body .booked-appt-list.shown{transform:scale(1)}body .booked-appt-list h2{text-align:center;color:#555;font-size:20px;margin:0 0 30px;line-height:1.4}body .booked-appt-list h2.booked-no-prev{text-align:left}body .booked-appt-list p{color:#888;font-weight:400;margin:0 0 20px}body .booked-appt-list .timeslot{display:flex;box-sizing:border-box;line-height:1.8;color:#888;border-top:1px solid #ddd}body .booked-appt-list .timeslot.faded{opacity:.25}body .booked-appt-list .timeslot:hover{background:#f9f9f9}body .booked-appt-list .timeslot:last-child{margin:0 0 10px}body .booked-appt-list .timeslot .timeslot-title{margin:0 0 10px 0;display:block;color:#4dc574}body .booked-appt-list .timeslot .timeslot-time{height:71px;display:flex;align-items:flex-start;justify-content:center;flex-direction:column;padding:0 0 0 15px;box-sizing:border-box;line-height:1;width:60%;font-weight:600;color:#555;font-size:16px}body .booked-appt-list .timeslot .timeslot-time i.fa-solid{color:#555}body .booked-appt-list .timeslot .timeslot-people{display:flex;align-items:center;justify-content:flex-end;height:71px;width:40%;padding:0 16px 0 0;box-sizing:border-box}body .booked-appt-list .timeslot .timeslot-people button{color:#fff}body .booked-appt-list .timeslot .timeslot-people button .button-timeslot,body .booked-appt-list .timeslot .timeslot-people button .spots-available{display:none}body .booked-appt-list .timeslot .spots-available{font-weight:400;text-transform:uppercase;font-size:.7rem;display:block;line-height:1;color:#aaa;padding-top:8px}body .booked-appt-list .timeslot .spots-available.empty{color:#aaa}body .booked-appt-list .timeslot a{font-weight:600;text-decoration:none}body .booked-appt-list .timeslot.has-title .timeslot-time{height:auto;min-height:71px}body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time{min-height:auto}body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-title{margin:0}body .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-range{display:none}body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-time{height:60px}body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-people{height:60px;padding-top:13px;padding-right:0}body .booked-appt-list .timeslot.has-title.timeslot-count-hidden .timeslot-time{padding-top:22px}body div.booked-calendar-wrap.booked-list-view .booked-appt-list{box-shadow:none;padding:0;margin:0 0 30px;display:block}body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header{display:flex;justify-content:space-between;align-items:center;margin:0 0 20px}body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header h2{margin:0}body div.booked-calendar-wrap.booked-list-view .booked-appt-list .booked-appt-list-header .booked-list-view-nav>*{margin:0 0 0 10px}body div.booked-calendar-wrap.small{max-width:600px;margin-left:auto;margin-right:auto}body div.booked-calendar-wrap.small .booked-appt-list{padding:30px 35px 30px}body div.booked-calendar-wrap.small .booked-appt-list h2{margin:0 0 20px}body div.booked-calendar-wrap.small .booked-appt-list h2>span:first-child{display:none}body div.booked-calendar-wrap.small .booked-appt-list .timeslot{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:5px 0;margin:0;border:none}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-title{height:auto;margin:0;display:block;color:#4dc574}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-time{display:none}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people{height:auto;justify-content:center;width:100%;padding:0}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button{width:100%;line-height:1.4}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-text,body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-timeslot{font-weight:700}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .spots-available{color:#fff;opacity:.75;padding:8px 0 4px}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-text{display:none}body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .button-timeslot,body div.booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button.button .spots-available{display:block}body .booked-form{padding-top:5px}body .booked-form .field{margin:5px 0 7px}body .booked-form .field.booked-text-content{margin-bottom:0;margin-top:20px}body .booked-form .field.booked-text-content :last-child{margin-bottom:0}body .booked-form .field:after{content:"";display:table;clear:both}body .booked-form input[type=checkbox],body .booked-form input[type=radio]{position:relative;top:2px}body .booked-form .field input[type=email],body .booked-form .field input[type=password],body .booked-form .field input[type=tel],body .booked-form .field input[type=text],body .booked-form .field select,body .booked-form .field textarea{background:#fff;border:1px solid #ccc;box-sizing:border-box;margin:0 1.5% 0 0;width:49.2%;float:left}body .booked-form .field input:last-child{margin-right:0}body .booked-form .field input[type=email],body .booked-form .field input[type=password],body .booked-form .field input[type=tel],body .booked-form .field input[type=text],body .booked-form .field textarea{font-size:13px;padding:7px 10px;color:#aaa;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}body .booked-form .field input.hasContent,body .booked-form .field textarea{color:#555}body .booked-form .field input.large,body .booked-form .field select.large{width:100%;margin-right:1px;width:99.8%}body .booked-form .spacer{padding:5px 0 0 0;margin:0;display:block}body .booked-form .spacer.big{padding:25px 0 0}body .booked-form hr{border:none;border-top:1px solid #ddd;padding:10px 0 0 0;margin:20px 0 0 0}body .booked-form .condition-block{display:none}body .booked-form .condition-block.default{display:block}body .booked-form button,body .booked-form input[type=submit]{float:left;margin:0 10px 0 0}body .booked-form .field label{cursor:pointer}body .booked-form .field label.field-label{cursor:default;display:block;font-weight:700;padding:10px 0 8px;margin:0}body .booked-form .field textarea{height:100px;width:100%;box-sizing:border-box;line-height:1.6}body .booked-form .field .checkbox-radio-block{display:block;padding:0 0 3px 10px}body .booked-form .field .checkbox-radio-block label{font-size:13px;display:inline-block;padding-left:7px;margin:0;position:relative;top:3px}body .booked-form .cf-block{margin:0 0 25px}body .booked-form .cf-block select{font-size:13px;width:100%;height:33px;margin-right:0;padding:0 10px;float:none}body .booked-form .cf-block ol,body .booked-form .cf-block ul{margin-left:30px}body .booked-form .required-asterisk{color:#e35656;margin:-1px 0 0 7px}body .booked-form #ajaxlogin{width:100%}body .booked-form #ajaxlogin p.status{display:none;padding:15px 0 0;margin:0;font-size:15px;color:#888}body .booked-form #newAppointmentForm p.status{display:none;padding:0 0 20px;margin:0;font-size:15px;color:#888}body img.captcha-image{position:relative;top:5px;left:5px}body #booked-page-form p.captcha,body .booked-modal .bm-window p.captcha{margin:-5px 0 15px}body .booked-form .field p.field-small-p{font-size:14px;margin:-5px 0 5px}body .booked-form input[type=submit].button:disabled{background:#ddd!important;border-color:#ddd!important;color:#aaa!important;cursor:not-allowed}body .booked-form .booked-appointments{background:#fff;padding:10px 16px 13px;margin:0 0 15px;box-shadow:0 1px 3px rgba(0,0,0,.15);-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}body .booked-form .booked-appointment-details{margin:0 0 10px;padding:0 0 7px;border-bottom:1px solid #ddd}body .booked-form .booked-appointment-details:last-child{margin:0;padding:0;border:none}body .booked-form .booked-appointment-details.has-error{color:#e35656}#customerChoices{display:block;text-align:left;background:#fff;padding:20px 0 23px;text-align:center;margin:-26px -36px 15px;border-bottom:1px solid #ddd}#customerChoices .field{display:inline-block}#customerChoices .field .checkbox-radio-block{padding-left:0}#customerChoices .field{margin:0 20px 0 0}#customerChoices .field:last-child{margin:0}#customerChoices .field .checkbox-radio-block label{font-weight:400;font-size:15px}#ajaxforgot{display:none}body .booked-modal{margin-top:-84px;min-height:168px;position:fixed;z-index:9999999;top:50%;right:0;bottom:0;left:0}body .booked-modal hr{border-top:1px solid #ddd;background:0 0}body .booked-modal .bm-overlay{animation:booked-fadein .2s;-webkit-animation:booked-fadein .2s;-moz-animation:booked-fadein .2s;-ms-animation:booked-fadein 0.2s;-o-animation:booked-fadein .2s;-webkit-backface-visibility:hidden;position:fixed;background:#000;background:rgba(0,0,0,.65);top:0;right:0;bottom:0;left:0}body .booked-modal .bm-window{animation:booked-flyin .2s;-webkit-animation:booked-flyin .2s;-moz-animation:booked-flyin .2s;-ms-animation:booked-flyin 0.2s;-o-animation:booked-flyin .2s;-webkit-backface-visibility:hidden;padding:43px 0 25px;width:450px;position:relative;margin:0 auto;background:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 60px rgba(0,0,0,.5);-webkit-box-shadow:1px 1px 60px rgba(0,0,0,.5);box-shadow:1px 1px 60px rgba(0,0,0,.5)}body .booked-modal.bm-loading .bm-window{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}body .booked-modal.bm-closing .bm-overlay{animation:booked-fadeout .2s;-webkit-animation:booked-fadeout .2s;-moz-animation:booked-fadeout .2s;-ms-animation:booked-fadeout 0.2s;-o-animation:booked-fadeout .2s;-webkit-backface-visibility:hidden}body .booked-modal.bm-closing .bm-window{animation:booked-flyout .2s;-webkit-animation:booked-flyout .2s;-moz-animation:booked-flyout .2s;-ms-animation:booked-flyout 0.2s;-o-animation:booked-flyout .2s;-webkit-backface-visibility:hidden}body .booked-modal .bm-window{background:#f5f5f5;max-height:100px;z-index:2000000000}body .booked-modal .bm-window p{margin:0 0 15px;font-size:15px}body .booked-modal .bm-window p small{display:block;margin:0 0 15px;text-transform:uppercase;font-size:13px;font-weight:600}body .booked-modal .bm-window p.appointment-title{font-weight:600;margin-bottom:0}body .booked-modal .bm-window p.calendar-name{font-weight:600;margin-bottom:0}body .booked-modal .bm-window p.appointment-info{font-size:15px;margin:0;line-height:1.7}body .booked-modal .bm-window p strong{font-size:13px;text-transform:uppercase;display:inline-block;padding-right:3px;font-weight:600}body .booked-modal .bm-window a{text-decoration:none}body .booked-modal .bm-window .close{line-height:1;color:#fff;color:rgba(255,255,255,.5);font-size:20px;position:absolute;top:11px;right:14px}body .booked-modal .bm-window .close:hover{color:#fff}body .booked-modal .bm-window p i.fa-solid.far-clock{font-size:18px;position:relative;top:1px}body .booked-modal .bm-window p.booked-calendar-name{font-weight:600;font-size:15px}body .booked-modal .bm-window .booked-scrollable{max-height:100px;padding:25px 30px;overflow-y:auto;overflow-x:hidden;background:#f5f5f5;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-sizing:content-box}body .booked-modal .bm-window p.booked-title-bar{box-sizing:border-box;font-size:13px;position:absolute;top:0;left:0;line-height:1;width:100%;color:#fff;border-radius:4px 4px 0 0;padding:15px 30px 15px 15px}body .booked-modal .bm-window p.booked-title-bar small{margin:0}body .booked-modal .bm-window .booked-scrollable{-webkit-overflow-scrolling:touch}body .booked-modal .bm-window .booked-scrollable>*{-webkit-transform:translateZ(0);-webkit-transform:translate3d(0,0,0)}body .booked-calendarSwitcher{box-sizing:border-box;display:inline-block;margin:0 0 0 15px;padding:8px 10px 9px 12px;color:#fff;border-radius:10px 10px 0 0;position:relative}body .booked-calendarSwitcher::before{position:absolute;top:12px;right:15px;color:#fff;font:var(--fa-font-solid);content:""}body .booked-calendarSwitcher>p{display:flex;align-items:center}body .booked-calendarSwitcher>p i.fa-solid{font-size:14px;margin:0 10px 0 0;position:relative;color:#fff}body .booked-calendarSwitcher>p select{padding-left:0;height:24px;position:relative;cursor:pointer;background:0 0;font-size:14px;min-width:200px;border:none;color:#fff;-webkit-appearance:none}body #booked-page-form .booked-form-wrap{padding:10px 0}body #booked-page-form input[type=submit]{margin:0}body #booked-page-form input[type=email],body #booked-page-form input[type=password],body #booked-page-form input[type=text],body #booked-page-form textarea{margin:7px 0 0 0;border-width:1px;border-style:solid;padding:10px 12px;width:100%;-moz-box-sizing:border-box;box-sizing:border-box}body #booked-page-form input:disabled,body #booked-page-form textarea:disabled{background:#f9f9f9;color:#bbb;border:1px dotted #ccc}body #booked-page-form input[type=file]:disabled{background:#fff;border:none}body #booked-page-form label .not-bold{font-weight:400;color:#ccc;padding:0 0 0 5px}body #booked-page-form p{margin:0 0 15px}body #booked-page-form .login-submit{margin:0}body #profile-edit #booked-page-form{border-top:1px solid #ddd;padding-top:20px}body #profile-edit #booked-page-form input[type=file]{display:inline-block;padding:0}body #profile-edit #booked-page-form label{font-weight:600}body #profile-edit #booked-page-form p.form-email,body #profile-edit #booked-page-form p.form-nickname,body #profile-edit #booked-page-form p.form-url{float:left;width:100%;margin:0 0 25px}body #profile-edit #booked-page-form p.form-password{float:left;width:48%;margin:0 4% 25px 0}body #profile-edit #booked-page-form p.form-password.last{margin:0 0 25px}body #profile-edit #booked-page-form p.form-avatar,body #profile-edit #booked-page-form p.form-submit,body #profile-edit #booked-page-form p.form-textarea{float:none;width:100%;margin:0 0 25px}body #profile-edit #booked-page-form p.form-submit{margin:0 0 5px}body #profile-edit #booked-page-form .hint-p{font-size:12px;color:#aaa;padding-top:5px;display:block;font-style:italic}#profile-forgot label,#profile-register label,body #profile-login label{font-weight:600}body .booked-upload-wrap,body .booked-upload-wrap input{background:#f5f5f5;border:1px solid #ddd;display:block;height:35px;width:100%;cursor:pointer;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative}body .booked-upload-wrap{width:100%;margin:10px 0 4px}body #booked-submit-recipe-form .booked-upload-wrap{width:100%;margin:0}body .booked-upload-wrap:hover{background:#eee}body .booked-upload-wrap span{color:#888;font-size:13px;text-align:center;height:24px;width:100%;position:absolute;left:0;top:50%;margin-top:-12px;display:block;z-index:1}body .booked-upload-wrap input{z-index:2;opacity:0}body .booked-upload-wrap.hasFile{background:#f9f9f9;border:1px solid #ccc;color:#666}body #booked-submit-recipe-form .booked-upload-wrap.hasFile{width:100%}body .booked-upload-wrap.hasFile span{color:#000}body .booked-custom-error{display:none;margin:0 0 20px;padding:5px 10px;background:#fff0f0;border:1px solid #e3c3c3;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}body .booked-custom-error.not-hidden{display:block}body #booked-plugin-page p.booked-form-notice{border:1px solid #e6db55;border-radius:3px;background-color:#fffbcc;margin:0 0 35px;padding:10px 15px}.booked-list-date-picker-wrap{width:100%;position:absolute;text-align:center;top:30px;left:0}#ui-datepicker-div.booked_custom_date_picker{animation:booked-popflyin .15s;-webkit-animation:booked-popflyin .15s;-moz-animation:booked-popflyin .15s;-ms-animation:booked-popflyin 0.15s;-o-animation:booked-popflyin .15s;background:#fff;margin-top:37px;margin-left:-107px;width:230px;border:1px solid #d5d5d5;padding:8px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 1px 4px rgba(0,0,0,.15);z-index:9999!important}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header{position:relative;color:#fff}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next,#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev{cursor:pointer;top:10px;font-size:16px;position:absolute;display:inline-block;font:var(--fa-font-solid);text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0,0);color:#fff}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next .ui-icon,#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev .ui-icon{display:none}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev{left:10px}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next{right:10px}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header{display:flex;align-items:center;justify-content:space-between}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-title{display:block;width:100%;font-size:12px;font-weight:700;text-transform:uppercase;padding:9px 0;text-align:center}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:hover,#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:hover{opacity:.7}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:before{content:""}#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:before{content:""}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar{width:100%;border-collapse:collapse}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead,#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th{font-size:11px;font-weight:400;color:#fff}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th{width:14.285%;text-align:center;padding:0;margin:0;border:none;border-collapse:collapse}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody{border-top:8px solid #fff}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody,#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td{font-size:12px;font-weight:400;background:#fff;color:#888}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td{text-align:center;padding:0}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a{display:block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;line-height:33px;text-decoration:none;color:#333}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a:hover{background:#eee}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td span{display:block;line-height:33px}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-unselectable span{color:#ddd}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-week-end a{color:#888}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a{color:#fff}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover{color:#fff}#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active,#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active:hover{color:#fff}body #booked-page-form,body #booked-page-form input[type=email],body #booked-page-form input[type=password],body #booked-page-form input[type=text],body #booked-page-form textarea{border-color:#ccc;color:#888;line-height:1.5;font-size:13px}body .booked-calendar-wrap{-webkit-transition:height .15s ease-out;-moz-transition:height .15s ease-out;-o-transition:height .15s ease-out;transition:height .15s ease-out}body .booked-appt-list .timeslot,body .booked-appt-list .timeslot .timeslot-people,body .booked-appt-list .timeslot .timeslot-time,body .booked-calendar td .count,body .booked-calendar thead th a,body .booked-list-view a.booked_list_date_picker_trigger{transition:all .1s ease-out}body .booked-calendar td .date,body .booked-calendar td .date span{transition:background .15s ease-out,color .15s ease-out}body .booked-list-view .booked-appt-list{transition:opacity .2s ease-out}body .booked-appt-list{transition:transform .4s ease-in-out}.booked-tabs{overflow:hidden}.booked-tabs .booked-tabs-nav{margin-bottom:20px}.booked-tabs .booked-tabs-nav span{display:inline-block;padding:0 5px;border:1px solid #ccc;background:#eee;color:#000;font-size:12px;line-height:30px;text-transform:uppercase;cursor:pointer;box-sizing:border-box}.booked-tabs .booked-tabs-nav span.active,.booked-tabs .booked-tabs-nav span:hover{background:#ddd;color:#fff}.booked-tabs .booked-tabs-cnt>div{display:none}.booked-tabs .booked-tabs-cnt>div.active{display:block}body #booked-profile-page{position:relative;margin-bottom:30px}body #booked-profile-page .booked-profile-header{display:flex;border:1px solid #ddd;border-radius:10px 10px 0 0;padding:15px;position:relative}body #booked-profile-page .booked-profile-header .booked-logout-button{text-decoration:none;font-size:.9rem;position:relative;top:-1px;color:rgba(255,255,255,.5)}body #booked-profile-page .booked-profile-header .booked-logout-button:hover{color:#fff}body #booked-profile-page .booked-user-avatar{width:35px;height:35px;position:relative;top:0;left:0;float:left;display:inline-block}body #booked-profile-page .booked-user-avatar img{width:100%;height:auto;display:block;margin:0;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px}body #booked-profile-page .booked-info{display:flex;width:100%}body #booked-profile-page .booked-user *{margin:0;padding:0;line-height:1.6}body #booked-profile-page .booked-user h3{color:#fff;margin:0;padding:4px 0 4px 12px;display:inline-block;font-size:1.25rem!important;letter-spacing:.03rem!important}body #booked-profile-page .booked-counts{float:right;width:25%;margin-left:5%;color:#fff}body #booked-profile-page .booked-counts span{display:block;text-align:right;font-size:12px;line-height:2.1}body #booked-profile-page .booked-counts i.fa-solid{padding-right:10px}body #booked-profile-page .booked-tabs{display:flex;border-width:1px;border-style:solid;border-top:0;border-bottom:0;list-style:none;margin:0!important;padding:0!important}body #booked-profile-page .booked-tabs li{margin:0!important;padding:0!important}body #booked-profile-page .booked-tabs li a{display:flex;align-items:center;height:auto!important;font-size:14px;border-right-width:1px;border-right-style:solid;display:flex;text-decoration:none;padding:0 15px;line-height:40px;background:rgba(0,0,0,.15);color:#fff;border:none}body #booked-profile-page .booked-tabs li a i.fa-solid{padding-right:10px}body #booked-profile-page .booked-tabs li a:hover{background:rgba(0,0,0,.25);color:#fff}body #booked-profile-page .booked-tabs li a .counter{margin:0 0 0 5px;line-height:1px;display:none;justify-content:center;align-items:center;font-size:11px;font-weight:800;width:auto;padding:0 5px;min-width:20px;height:20px;border-radius:10px;background:#fff;color:#fff}body #booked-profile-page .booked-tabs li.active a{color:#fff}body #booked-profile-page .booked-tabs li.active a:hover{color:#fff}body #booked-profile-page .booked-tabs li.active a .counter{background:#fff;color:#000}body #booked-profile-page .booked-tabs li.edit-button{float:right}body #booked-profile-page .booked-tab-content{border-radius:0 0 10px 10px;display:none;padding:30px 35px 30px 35px;border-width:1px;border-style:solid;border-top:none;border-color:#ddd;background:#fff}body #booked-profile-page .booked-tabs.login{border-top-width:1px;border-top-style:solid}body #booked-profile-page p.booked-no-margin{color:#888;margin:0}body #booked-profile-page .booked-show-cf{outline:0;font-weight:600;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;transition:all .1s ease-out}body #booked-profile-page .booked-show-cf.booked-cf-active{color:#000}body #booked-profile-page .cf-meta-values-hidden{animation:booked-popdown .2s;-webkit-animation:booked-popdown .2s;-moz-animation:booked-popdown .2s;-ms-animation:booked-popdown 0.2s;-o-animation:booked-popdown .2s;display:none;border-left:3px solid #ddd;margin:10px 0 0 0;padding:0 0 0 20px}body #booked-profile-page .cf-meta-values-hidden p{margin:0 0 10px;font-size:14px;font-weight:400;line-height:1.5}body #booked-profile-page .cf-meta-values-hidden p:last-child{margin-bottom:0}body #booked-profile-page .cf-meta-values-hidden p strong{font-weight:600}body #booked-profile-page .result-section.table-layout{margin:0}body #booked-profile-page .result-section.table-layout .table-box{border:none}body #booked-profile-page .result-section.table-layout .table-box .table-body .table-row{min-height:115px}body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title{font-weight:400;font-size:15px;line-height:1.6}body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title p{margin:0;padding:10px 0 0 0;font-size:12px}body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title small{display:block;padding-top:5px}body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title a{font-weight:600}body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title .booked-review p{font-size:14px;line-height:1.7}body #booked-profile-page .result-section.table-layout .table-box .table-head-row{background:0 0!important}body #booked-profile-page .result-section.table-layout .table-box .table-cell{padding:20px 0}body #booked-profile-page .result-section.table-layout .table-box .cell-title{position:relative;width:55%;padding-right:25px}body #booked-profile-page .result-section.table-layout .table-box .cell-title .compact-img img{width:65px;height:auto;position:absolute;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;top:26px;left:0}body #booked-profile-page .result-section.table-layout .table-box .cell-title .cell-title-wrap{padding-left:85px}body #booked-profile-page .result-section.table-layout .table-box .cell-rating{width:20%}body #booked-profile-page .result-section.table-layout .table-box .cell-time{width:25%}body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews{width:100%;padding-right:0}body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews .rating{margin-top:10px}body #booked-profile-page p.booked-form-notice{border:1px solid #e6db55;border-radius:3px;background-color:#fffbcc;margin:0 0 35px;padding:10px 15px}body #booked-profile-page .booked-profile-appt-list{box-sizing:border-box}body #booked-profile-page .booked-profile-appt-list .appt-block{color:#888;line-height:23px;padding:20px 0 25px;border-top:1px solid #ddd;display:block}body #booked-profile-page .booked-profile-appt-list .appt-block>i.fa-solid{width:23px;color:#333}body #booked-profile-page .booked-profile-appt-list .appt-block:last-child{padding-bottom:0}body #booked-profile-page .booked-profile-appt-list .appt-block .status-block{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:12px;text-transform:uppercase;font-weight:700;float:right;padding:0 12px 1px;line-height:33px;margin:6px 0 0 0;background:#ccc;color:#fff}body #booked-profile-page .booked-profile-appt-list .appt-block button{float:right;margin:6px 0 0 0}body #booked-profile-page .booked-profile-appt-list .appt-block .cancel{color:#aaa;font-size:12px;padding-left:10px;border:1px solid #ddd;background:#f5f5f5;color:#aaa}body #booked-profile-page .booked-profile-appt-list .appt-block .cancel:hover{background:#eee;color:#888;border-color:#ccc}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons{float:right;display:flex}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>a,body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>button{margin:0 0 0 .5rem}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>a.delete,body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>button.delete{display:inline-block;padding:10px;width:45px;text-align:center;color:#aaa;border:2px solid #ddd;border-radius:5px}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>a.delete:hover,body #booked-profile-page .booked-profile-appt-list .appt-block .booked-fea-buttons>button.delete:hover{color:#000;border:2px solid #888}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons{display:flex;padding:15px 0 0 0}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a{text-decoration:none;display:inline-block;padding:.5rem .75rem;margin:0 7px 0 0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;line-height:1rem;font-size:.9rem;font-weight:400;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;transition:all .1s ease-out}body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a:hover{text-decoration:none}body #booked-profile-page .booked-profile-appt-list .appt-block.approved{color:#000}body #booked-profile-page .booked-profile-appt-list .calendar-name{padding:0 0 5px}body #booked-profile-page #profile-edit{box-sizing:border-box}body #booked-profile-page h4{margin:0 0 20px;padding:0;font-size:19px;font-weight:600}body #booked-profile-page .appt-block .booked-cal-buttons{display:flex}body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button{font-size:.9rem;line-height:1rem;font-weight:400;letter-spacing:.03rem;padding:.5rem .65rem .5rem 40px}body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .addeventatc_dropdown{padding:0}body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .copyx{display:none}body #booked-profile-page .appt-block .booked-cal-buttons .google-cal-button .addeventatc_icon{top:.35rem}body #booked-profile-page .appt-block .booked-cal-buttons a{display:inline-block;margin:0 .5rem 0 0}body #booked-profile-page .appt-block .booked-cal-buttons>span{display:inline-block;margin:0 .5rem 0 0}body #booked-profile-page .appt-block .booked-cal-buttons>div{display:inline-block;margin:0 .5rem 0 0}@media screen and (max-width:1200px){body .booked-list-view .booked-appt-list h2{text-align:left;margin:0 0 20px}body .booked-list-view .booked-appt-list h2.booked-no-prev{text-align:left}body .booked-list-view .booked-list-view-nav{display:block;height:26px;margin:-5px 0 30px;position:static;text-align:left}body .booked-list-view .booked-list-view-nav .booked-list-view-date-next,body .booked-list-view .booked-list-view-nav .booked-list-view-date-prev{margin:0 6px 5px 0;position:relative;display:inline-block;top:0;right:0}body .booked-list-view .booked-list-view-nav .booked-list-view-date-next{float:right;margin:0 0 5px}}@media screen and (max-width:1100px){body .booked-calendar td .count{padding:5px 0;font-size:9px}body .booked-calendar td .date .number{width:30px;height:30px;line-height:30px;font-size:14px}}@media screen and (max-width:860px){body #booked-profile-page .booked-profile-appt-list{float:none;width:100%;margin:0 0 30px}body #booked-profile-page #profile-edit{float:none;width:100%;margin:0}body #booked-profile-page .booked-profile-appt-list .appt-block .status-block{float:right;margin:6px 0 0 0}}@media screen and (max-width:720px){body .booked-calendar-wrap .booked-calendar thead th{font-size:1rem;padding:1.15rem 0!important;height:1rem}body .booked-calendar-wrap .booked-calendar thead tr.days th{font-size:.7rem;padding:.5rem 0!important;height:auto}body .booked-calendar-wrap .booked-calendar td{font-size:13px}body .booked-calendar-wrap .booked-calendar thead th .page-left,body .booked-calendar-wrap .booked-calendar thead th .page-right{font-size:1rem;margin-top:-.5rem}body .booked-calendar-wrap .booked-calendar thead th .page-left:hover{left:19px}body .booked-calendar-wrap .booked-calendar thead th .page-right:hover{right:19px}body .booked-calendar-wrap .booked-calendar th .monthName{height:auto;display:inline-block}body .booked-calendar-wrap .booked-calendar th .monthName a{top:-2px;font-size:10px}body .booked-calendar-wrap .booked-calendar td .count{display:none}body .booked-calendar-wrap .booked-calendar td .date{height:100%}body .booked-calendar-wrap .booked-calendar td .date .number{border:none;display:block;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;transform:scale(1);width:100%;height:100%;vertical-align:middle}body .booked-calendar-wrap .booked-calendar td.blur .date,body .booked-calendar-wrap .booked-calendar td.blur:hover .date{cursor:default;background:#eee;color:#ccc}body .booked-calendar-wrap .booked-calendar td.booked .date,body .booked-calendar-wrap .booked-calendar td.booked:hover .date{cursor:default;background:#ffe4df;color:#f15934}body .booked-calendar-wrap .booked-calendar td.today .date{background:#e3f2f9;color:#555}body .booked-calendar-wrap .booked-calendar td.today:hover .date{background:#eff7fb;color:#555}body .booked-calendar-wrap .booked-calendar td:hover .date{background:#f9f9f9;cursor:pointer;color:#000}body .booked-calendar-wrap .booked-calendar tr.week td.active .date .number{border:none;transform:scale(1.5);background:0 0;color:#000}body .booked-calendar-wrap .booked-calendar tr.entryBlock td{padding:5%}body .booked-calendar-wrap .booked-calendar .booked-appt-list{max-height:300px;overflow-y:auto;overflow-x:hidden;padding:15px 20px 10px}body .booked-calendar-wrap.small .booked-calendar .booked-appt-list{max-height:300px}body .booked-calendar .booked-appt-list h2{text-align:center;margin:5px 0 20px;font-size:15px;letter-spacing:.03em}body .booked-calendar .booked-appt-list h2 span{display:none}body .booked-calendar .booked-appt-list .timeslot{border-top:0;margin:0}body .booked-calendar .booked-appt-list .timeslot .timeslot-count,body .booked-calendar .booked-appt-list .timeslot .timeslot-time{display:none}body .booked-calendar .booked-appt-list .timeslot button .spots-available,body .booked-calendar-wrap .booked-appt-list .timeslot button .spots-available{display:block}body .booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title,body .booked-calendar-wrap .booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title{display:block}body .booked-calendar .booked-appt-list .timeslot .timeslot-people,body .booked-calendar .booked-appt-list .timeslot .timeslot-people:hover,body .booked-calendar .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people,body .booked-calendar .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people:hover{width:100%;padding:0;height:auto}body .booked-calendar .booked-appt-list .timeslot .timeslot-people button{white-space:normal;float:none;margin:0;width:100%;text-align:center;padding:7px 0;line-height:1.5}body .booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-timeslot{display:block;font-weight:600;font-size:13px}body .booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-text{display:none}body .booked-calendar-wrap .booked-calendar td.prev-date .date,body .booked-calendar-wrap .booked-calendar td.prev-date:hover .date{cursor:default;background:#f9f9f9;color:#bbb}body .booked-calendar-wrap .booked-calendar td.blur .date,body .booked-calendar-wrap .booked-calendar td.blur:hover .date{cursor:default;background:#eee;color:#ddd}body .booked-calendar-wrap .booked-calendar td.booked .date,body .booked-calendar-wrap .booked-calendar td.booked:hover .date{cursor:default;background:#ffeae7;color:#f0b1a1}body .booked-calendar-wrap .booked-calendar tr.week td.active .date,body .booked-calendar-wrap .booked-calendar tr.week td.active:hover .date{background:#ddd}body #booked-profile-page .result-section.table-layout{padding:10px 0}body #booked-profile-page .result-section.table-layout .table-box .cell-title .compact-img img{top:46px;left:12px}body #booked-profile-page .booked-tabs li,body #booked-profile-page .booked-tabs li.edit-button{display:block;float:none}body #booked-profile-page .booked-tabs li a,body #booked-profile-page .booked-tabs li.edit-button a{border-left:none;border-right:none}body .booked-modal{padding:0;margin:0!important;top:0}body .booked-modal .bm-window,body .booked-modal .bm-window p.booked-title-bar{border-radius:0!important}body .booked-modal .bm-window{width:100%;padding:43px 0 0;box-sizing:border-box;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}body .booked-modal .bm-window .booked-scrollable{padding:30px 35px}body .booked-modal .bm-overlay{background:rgba(0,0,0,.8)}body .booked-modal .bm-window p.name b{display:block}body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot,body .booked-list-view .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot{display:none}}@media screen and (max-width:600px){body.booked-noScroll{position:fixed;height:100%}body .booked-modal input[type=submit]{margin:0 10px 10px 0;float:none}body .booked-modal .button{width:100%;float:none}body .booked-calendarSwitcher{width:100%;display:block;padding:8px 5px}body .booked-calendarSwitcher i.fa-solid{display:none}body .booked-calendarSwitcher select{width:100%}body .booked-calendar td .date .number{font-size:12px}body #booked-profile-page .booked-profile-appt-list .appt-block .status-block{display:block;float:none;margin:0 0 10px}body #profile-edit #booked-page-form p.form-email,body #profile-edit #booked-page-form p.form-nickname,body #profile-edit #booked-page-form p.form-password,body #profile-edit #booked-page-form p.form-url{float:none;width:100%}body .booked-modal #customerChoices .field{display:block;float:none;margin:5px 0}}@media screen and (max-width:450px){body .booked-list-view .booked-appt-list h2 strong{display:block;margin:0 auto}body .booked-list-view .booked-appt-list h2 span:last-child{display:none}body .booked-list-view .booked-appt-list .timeslot{border-top:0;margin:0 0 10px}body .booked-list-view .booked-appt-list .timeslot .timeslot-count,body .booked-list-view .booked-appt-list .timeslot .timeslot-time{display:none}body .booked-list-view .booked-appt-list .timeslot .timeslot-people{width:100%;padding:0;height:auto}body .booked-list-view .booked-appt-list .timeslot .timeslot-people button{float:none;margin:0;width:100%;text-align:center;padding:7px 0;line-height:1.5}body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-timeslot{display:block;font-weight:600;font-size:13px}body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-text{display:none}body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button .timeslot-mobile-title{display:block}body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people{height:auto;padding:0}}
.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;width:1px;margin:-1px;padding:0;border:0;word-wrap:normal!important}.wpcf7 form .wpcf7-response-output{margin:2em .5em 1em;padding:.2em 1em;border:2px solid #00a0d2}.wpcf7 form.init .wpcf7-response-output,.wpcf7 form.resetting .wpcf7-response-output,.wpcf7 form.submitting .wpcf7-response-output{display:none}.wpcf7 form.sent .wpcf7-response-output{border-color:#46b450}.wpcf7 form.aborted .wpcf7-response-output,.wpcf7 form.failed .wpcf7-response-output{border-color:#dc3232}.wpcf7 form.spam .wpcf7-response-output{border-color:#f56e28}.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.payment-required .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output{border-color:#ffb900}.wpcf7-form-control-wrap{position:relative}.wpcf7-not-valid-tip{color:#dc3232;font-size:1em;font-weight:400;display:block}.use-floating-validation-tip .wpcf7-not-valid-tip{position:relative;top:-2ex;left:1em;z-index:100;border:1px solid #dc3232;background:#fff;padding:.2em .8em;width:24em}.wpcf7-list-item{display:inline-block;margin:0 0 0 1em}.wpcf7-list-item-label::after,.wpcf7-list-item-label::before{content:" "}.wpcf7-spinner{visibility:hidden;display:inline-block;background-color:#23282d;opacity:.75;width:24px;height:24px;border:none;border-radius:100%;padding:0;margin:0 24px;position:relative}form.submitting .wpcf7-spinner{visibility:visible}.wpcf7-spinner::before{content:'';position:absolute;background-color:#fbfbfc;top:4px;left:4px;width:6px;height:6px;border:none;border-radius:100%;transform-origin:8px 8px;animation-name:spin;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite}@media (prefers-reduced-motion:reduce){.wpcf7-spinner::before{animation-name:blink;animation-duration:2s}}@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes blink{from{opacity:0}50%{opacity:1}to{opacity:0}}.wpcf7 input[type=file]{cursor:pointer}.wpcf7 input[type=file]:disabled{cursor:default}.wpcf7 .wpcf7-submit:disabled{cursor:not-allowed}.wpcf7 input[type=email],.wpcf7 input[type=tel],.wpcf7 input[type=url]{direction:ltr}.wpcf7-reflection>output{display:list-item;list-style:none}.wpcf7-reflection>output[hidden]{display:none}
.esg-line-height-0{line-height:0}.esg-text-left{text-align:left}.esg-text-right{text-align:right}.esg-text-center{text-align:center}.esg-font-normal{font-style:normal}.esg-font-italic{font-style:italic}.esg-display-none{display:none}.esg-display-block{display:block}.esg-display-inline-block{display:inline-block}.esg-display-inline{display:inline}.esg-display-none-i{display:none!important}.esg-display-block-i{display:block!important}.esg-display-inline-block-i{display:inline-block!important}.esg-display-inline-i{display:inline!important}.esg-hidden{visibility:hidden}.esg-visible{visibility:visible}.esg-p-absolute{position:absolute}.esg-p-relative{position:relative}.esg-margin-0{margin:0}.esg-margin-t-0{margin-top:0}.esg-margin-b-0{margin-bottom:0}.esg-margin-l-0{margin-left:0}.esg-margin-r-0{margin-right:0}.esg-margin-5{margin:5px}.esg-margin-t-5{margin-top:5px}.esg-margin-b-5{margin-bottom:5px}.esg-margin-l-5{margin-left:5px}.esg-margin-r-5{margin-right:5px}.esg-margin-10{margin:10px}.esg-margin-t-10{margin-top:10px}.esg-margin-b-10{margin-bottom:10px}.esg-margin-l-10{margin-left:10px}.esg-margin-r-10{margin-right:10px}.esg-margin-15{margin:15px}.esg-margin-t-15{margin-top:15px}.esg-margin-b-15{margin-bottom:15px}.esg-margin-l-15{margin-left:15px}.esg-margin-r-15{margin-right:15px}.esg-padding-0{padding:0}.esg-padding-t-0{padding-top:0}.esg-padding-b-0{padding-bottom:0}.esg-padding-l-0{padding-left:0}.esg-padding-r-0{padding-right:0}.esg-padding-15{padding:15px}.esg-padding-t-15{padding-top:15px}.esg-padding-b-15{padding-bottom:15px}.esg-padding-l-15{padding-left:15px}.esg-padding-r-15{padding-right:15px}.esg-f-left{float:left!important}.esg-f-right{float:right!important}.esg-f-none{float:none!important}.esg-color-black{color:#000}.esg-color-white{color:#fff}.esg-color-red{color:red}.esg-color-green{color:green}.esg-color-blue{color:#00f}.esg-w100-hauto{width:100%;height:auto}.esg-fullscreen-forcer{position:relative;left:0;top:0;width:100%;height:auto}.esg-iframe{position:absolute;top:0;left:0;display:none}.esg-clearfix:after,.esg-clearfix:before{content:" ";display:table}.esg-clearfix:after{clear:both}.esg-starring{line-height:25px;display:inline-block}.esg-starring .star-rating{float:none}.esg-starring .star-rating{color:#ffc321!important}.esg-starring .star-rating,.esg-starring-page .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1em;font-size:1em;width:5.4em;font-family:star}.esg-starring .star-rating:before,.esg-starring-page .star-rating:before{content:"\73\73\73\73\73";color:#e0dadf;float:left;top:0;left:0;position:absolute}.esg-starring .star-rating span,.esg-starring star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.esg-starring .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.esg-starring .star-rating{color:#ffc321!important}.lazyloadcover{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%}.esg-lazyblur{background-repeat:no-repeat;filter:blur(25px);-webkit-filter:blur(25px);-moz-filter:blur(25px);background-size:cover;background-position:center center;width:100%;height:100%;top:0;left:0;overflow:hidden}.esg-media-poster{width:100%;height:100%;position:absolute;top:0;left:0;background-size:cover;background-position:center center;z-index:10;opacity:0}.esg-video-active .esg-media-poster{z-index:0}.esg-vimeo-frame{background:#000}.esg-grid .no-filter-message{position:absolute;bottom:0;left:0;width:100%;text-align:center;pointer-events:none;visibility:hidden;opacity:0;transition:all .2s ease}.esg-grid .esg-loadmore-wrapper+.no-filter-message{position:relative;display:block;text-align:center}.esg-grid.show-message .no-filter-message{transition-duration:1s;visibility:visible;opacity:1}.esg-hover-image{display:none}.esg-media-poster .esg-hover-image{display:block;width:inherit;height:inherit;background-size:inherit;background-position:inherit;visibility:hidden;opacity:0}.esg-starring .star-rating,.esg-starring-page .star-rating{line-height:1em;font-size:1em;font-family:star}.esg-grid{width:100%;max-width:100%;font-family:'Open Sans',sans-serif;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}@-moz-document url-prefix(){.esg-grid{transform:none!important}}.esg-grid .mainul,.esg-grid .mainul>li{list-style:none;margin:0;padding:0;transform-style:flat!important}.esg-grid *{-webkit-font-smoothing:antialiased;font-smoothing:antialiased}.esg-grid li,.esg-grid ul{list-style:none;margin:0;padding:0;transform-style:flat!important}.esg-overflowtrick{position:relative;width:100%;height:auto;overflow:hidden;padding:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;z-index:1}.esg-overflowtrick+.esg-filters:not(.esg-navbutton-solo-left):not(.esg-navbutton-solo-right){z-index:0!important}.esg-container{position:relative;width:100%;height:auto}.esg-container>ul,.esg-overflowtrick>ul{width:100%;max-width:100%;height:0;position:relative;overflow:visible}.esg-grid li{border:0 solid transparent;outline:0 solid transparent;visibility:hidden;display:none}.esg-grid a{border:none;text-decoration:none}.esg-grid a:focus,.esg-grid a:hover{text-decoration:none;border:none}.esg-clear{clear:both;height:5px!important;background:0 0!important}.eg-clearfix,.esg-clear-no-height{clear:both;height:0!important;background:0 0!important}.esg-line-break{height:5px;visibility:hidden}.esg-divide-5{width:100%;height:5px}.esg-divide-15{width:100%;height:15px}.esg-divide-20{width:100%;height:20px}.esg-divide-22{width:100%;height:22px}.esg-divide-30{width:100%;height:30px}.esg-click-to-play-video{cursor:pointer}.esg-entry-media iframe{-webkit-transform-style:flat;-webkit-transform:translateZ(1000px);border:0}.esg-container .tp-esg-item{position:absolute;top:0;left:0}.esg-container .tp-esg-item{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.esg-container .tp-esg-item .blackoverlay{width:100%;height:100%;position:absolute;background:#000;top:0;left:0}.tp-esg-item{z-index:5}.tp-esg-item.itemonotherpage{z-index:0;display:none}.esg-entry-cover{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;border:0 solid transparent;outline:0 solid transparent}.eec{display:block;width:auto;height:auto;position:absolute!important;font-size:20px;text-align:center}.esg-entry-cover>.eec{z-index:2;pointer-events:none}.esg-entry-cover>.eec>*{pointer-events:all}.esg-tc{top:0;left:0;width:100%}.esg-lc{top:0;left:0;height:100%}.esg-cc{top:0;left:0;width:100%;vertical-align:middle}.esg-rc{top:0;right:0;height:100%}.esg-bc{bottom:0;left:0;width:100%}.esg-tc .ess-tb-cell{text-align:center;vertical-align:top}.esg-lc .ess-tb-cell{text-align:left;vertical-align:middle}.esg-rc .ess-tb-cell{text-align:right;vertical-align:middle}.esg-blc .ess-tb-cell{text-align:left;vertical-align:bottom}.esg-bc .ess-tb-cell{text-align:center;vertical-align:bottom}.esg-brc .ess-tb-cell{text-align:right;vertical-align:bottom}.esg-bc .leftalign{text-align:left}.esg-entry-media{position:relative;border:0 solid transparent;outline:0 solid transparent;overflow:hidden}.esg-entry-media{width:100%}.esg-entry-media img{width:100%;height:auto;max-width:none!important;min-width:none!important}.esg-layout-masonry .esg-entry-media img{line-height:0;vertical-align:bottom;display:inline-block}.esg-layout-even .esg-entry-media img{display:none}.esg-media-cover-wrapper{position:relative;width:100%;backface-visibility:hidden}.esg-layout-even .esg-media-cover-wrapper{height:100%}.esg-entry-media-wrapper{z-index:0}.esg-entry-media-wrapper-even{width:100%;height:100%;overflow:hidden;position:relative}.esg-entry-media-wrapper-not-even{overflow:hidden;position:relative}.esg-entry-media-wrapper .esg-video-frame{background:#000}.esg-entry-media-wrapper-item-layout{width:100%;height:100%;position:absolute;overflow:hidden}.esg-entry-cover .esg-overlay{position:absolute;top:0;left:0;width:100%;height:100%;border:0 solid transparent;outline:0 solid transparent}.esg-layout-even .esg-entry-content{display:none}.esg-entry-content{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-backface-visibility:hidden}.esg-filters,.esg-pagination,.navigationbuttons{position:relative;z-index:50;-webkit-backface-visibility:hidden}.esg-grid .esg-pagination{z-index:100;-webkit-backface-visibility:hidden}.esg-nav-by-shortcode .esg-sortbutton-order .tp-desc,.esg-nav-by-shortcode .esg-sortbutton-order.eg-icon-down-open.tp-asc,.esg-sortbutton-order .tp-desc,.esg-sortbutton-order.eg-icon-down-open.tp-asc{text-align:center}.esg-nav-by-shortcode{position:relative;display:inline-block;vertical-align:top;text-align:center}.esg-nav-by-shortcode .esg-navbutton-solo-left,.esg-nav-by-shortcode .esg-navbutton-solo-right{position:relative;left:auto;right:auto;top:auto;bottom:auto}.esg-nav-by-shortcode .esg-filter-wrapper{visibility:visible}.esg-singlefilters .esg-filter-checked{display:none;-webkit-backface-visibility:hidden}.esg-filter-wrapper{display:inline-block}.esg-sortbutton-wrapper{display:inline-block}.esg-cartbutton-wrapper{display:inline-block}.esg-filter-wrapper.dropdownstyle{min-width:100px;cursor:pointer;position:relative;z-index:1500;-webkit-backface-visibility:hidden;-webkit-transform:translateZ(1px);transform:translateZ(1px)}.esg-filter-wrapper.dropdownstyle.esg-skin-preview{z-index:1570;visibility:visible}.esg-filter-wrapper.dropdownstyle .esg-filterbutton{display:block;margin-right:0;margin-bottom:5px}.esg-filter-wrapper.dropdownstyle .esg-filter-checked{margin-right:5px;margin-left:0}.esg-dropdown-wrapper{display:none;position:absolute;padding:20px;top:100%;backface-visibility:hidden;transform:translateZ(10px)}.esg-selected-filterbutton{color:#999;margin-right:5px;cursor:pointer;padding:0 15px 0 10px;line-height:20px;font-size:12px;font-weight:600;font-family:"Open Sans",sans-serif;display:inline-block;background:rgba(0,0,0,0);margin-bottom:5px;width:100%}.esg-selected-filterbutton.hovered{color:#444}.esg-selected-filterbutton .eg-icon-down-open{display:inline-block;vertical-align:top;width:29px;line-height:inherit;font-size:9px;font-weight:700;color:#999;background:rgba(0,0,0,0);text-align:center}.esg-sortbutton-order.tp-desc{transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.esg-sorting-select{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;-moz-opacity:0.0;-khtml-opacity:0.0;opacity:0;-webkit-appearance:menulist-button}.esg-filters.esg-navbutton-solo-left{position:absolute;left:0;top:50%;z-index:800}.esg-filters.esg-navbutton-solo-right{position:absolute;right:0;top:50%;z-index:800}.esg-navigationbutton.esg-left,.esg-navigationbutton.esg-right{margin-left:0!important;margin-right:0!important;-webkit-transform-style:flat;-webkit-transform:translateZ(5000px)}.eg-leftright-container{float:left;width:310px;margin-right:20px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.eg-leftright-container.dark{background:#1e1e1e}.eg-leftright-container .pagination{position:absolute;bottom:0}.eg-leftright-container .esg-filters{padding:30px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.eg-leftright-container .esg-filterbutton{display:block;margin:0 0 5px 0}.eg-leftright-container .esg-filter-wrapper{display:block;margin-right:0}.eg-ajaxtarget-container{position:relative;width:100%;height:auto}.eg-ajaxanimwrapper{position:relative;overflow:hidden}.tp-esg-item .add_to_cart_button.loading:before{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:url(https://podolomed.de/podata/plugins/essential-grid/public/assets/images/ajax-loader.gif) center no-repeat rgba(255,255,255,.65)}.esg-loader{top:50%;left:50%;z-index:10000;position:absolute}.infinityscollavailable.esg-loader{position:relative;top:auto;left:50%;margin-top:25px!important;margin-bottom:25px!important}.esg-loader.spinner0{width:40px;height:40px;background:url(https://podolomed.de/podata/plugins/essential-grid/public/assets/images/loader.gif) no-repeat center center;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);margin-left:-20px;-webkit-animation:esg-rotateplane 1.2s infinite ease-in-out;animation:esg-rotateplane 1.2s infinite ease-in-out;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.esg-loader.spinner1{width:40px;height:40px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);margin-left:-20px;-webkit-animation:esg-rotateplane 1.2s infinite ease-in-out;animation:esg-rotateplane 1.2s infinite ease-in-out;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.esg-loader.spinner5{background:url(https://podolomed.de/podata/plugins/essential-grid/public/assets/images/loader.gif) no-repeat 10px 10px;background-color:#fff;margin:-22px -22px;width:44px;height:44px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}@-webkit-keyframes esg-rotateplane{0%{-webkit-transform:perspective(120px)}50%{-webkit-transform:perspective(120px) rotateY(180deg)}100%{-webkit-transform:perspective(120px) rotateY(180deg) rotateX(180deg)}}@keyframes esg-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0);-webkit-transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0);-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.esg-loader.spinner2{width:40px;height:40px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;-webkit-animation:esg-scaleout 1s infinite ease-in-out;animation:esg-scaleout 1s infinite ease-in-out}@-webkit-keyframes esg-scaleout{0%{-webkit-transform:scale(0)}100%{-webkit-transform:scale(1);opacity:0}}@keyframes esg-scaleout{0%{transform:scale(0);-webkit-transform:scale(0)}100%{transform:scale(1);-webkit-transform:scale(1);opacity:0}}.esg-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.eg-search-wrapper .esg-loader.spinner3{margin-top:-30px!important}.simple-dark .eg-search-wrapper .esg-loader.spinner3,.simple-light .eg-search-wrapper .esg-loader.spinner3{margin-top:-25px!important}.text-dark .eg-search-wrapper .esg-loader.spinner3,.text-light .eg-search-wrapper .esg-loader.spinner3{margin-top:-22px!important}.esg-loader.spinner3 .bounce1,.esg-loader.spinner3 .bounce2,.esg-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;-webkit-animation:esg-bouncedelay 1.4s infinite ease-in-out;animation:esg-bouncedelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.esg-loader.spinner3 .bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.esg-loader.spinner3 .bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes esg-bouncedelay{0%,100%,80%{-webkit-transform:scale(0)}40%{-webkit-transform:scale(1)}}@keyframes esg-bouncedelay{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}.esg-loader.spinner4{margin:0 0 0 -20px;width:40px;height:40px;text-align:center;-webkit-animation:esg-rotate 2s infinite linear;animation:esg-rotate 2s infinite linear}.esg-loader.spinner4 .dot1,.esg-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;-webkit-animation:esg-bounce 2s infinite ease-in-out;animation:esg-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15);-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.esg-loader.spinner4 .dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes esg-rotate{100%{-webkit-transform:rotate(360deg)}}@keyframes esg-rotate{100%{transform:rotate(360deg);-webkit-transform:rotate(360deg)}}@-webkit-keyframes esg-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes esg-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}[class*=" eg-icon-"]:before,[class^=eg-icon-]:before{font-family:eg-font;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}[class*=" fa-icon-"]:before,[class^=fa-icon-]:before{font-family:FontAwesome;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.esg-grid [class*=" pe-7s-"]:before,.esg-grid [class^=pe-7s-]:before{font-family:Pe-icon-7-stroke;display:inline-block;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.esg-cartbutton a,.esg-filter-wrapper .esg-filterbutton:last-child,.esg-selected-filterbutton{margin-right:0!important}.esg-singlefilters .esg-filter-checked{display:none!important}.eg-ajaxclicklistener{cursor:pointer}.eg-ajax-video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.eg-ajax-video-container.widevideo{padding-bottom:50%}.eg-ajax-video-container embed,.eg-ajax-video-container iframe,.eg-ajax-video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.forcenotvisible{visibility:hidden!important}.forcenotdisplay{display:none!important}.eg-search-input,input.eg-search-input[type=text]{display:inline-block}.eg-search-clean,.eg-search-submit{display:inline-block;width:auto;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;text-align:center;vertical-align:top}.eg-search-clean,.eg-search-submit{cursor:pointer}.eg-search-wrapper{vertical-align:top;line-height:40px}input.eg-search-input[type=text]{font-family:"Open Sans",sans-serif;outline:0!important;margin:0 0 5px!important;padding:8px 15px;vertical-align:top;box-sizing:border-box}.eg-ajax-closer-wrapper{display:block;z-index:51000;position:relative}.eg-ajax-navbt{cursor:pointer;display:inline-block;margin-right:5px}.eg-acp-inner.eg-acp-br .eg-ajax-closer.eg-ajax-navbt,.eg-acp-inner.eg-acp-tr .eg-ajax-closer.eg-ajax-navbt{margin-right:0}.eg-ajax-closer-wrapper.eg-acp-bl,.eg-ajax-closer-wrapper.eg-acp-tl{text-align:left}.eg-ajax-closer-wrapper.eg-acp-br,.eg-ajax-closer-wrapper.eg-acp-tr{text-align:right}.eg-ajax-closer-wrapper.eg-acp-b,.eg-ajax-closer-wrapper.eg-acp-t{text-align:center}.eg-ajax-closer-wrapper.eg-acp-t,.eg-ajax-closer-wrapper.eg-acp-tl,.eg-ajax-closer-wrapper.eg-acp-tr{margin-bottom:5px}.eg-ajax-closer-wrapper.eg-acp-b,.eg-ajax-closer-wrapper.eg-acp-bl,.eg-ajax-closer-wrapper.eg-acp-br{margin-top:5px}.eg-acp-inner{display:block;position:absolute;z-index:50;margin:5px}.eg-acp-inner.eg-acp-t,.eg-acp-inner.eg-acp-tl,.eg-acp-inner.eg-acp-tr{top:0}.eg-acp-inner.eg-acp-b,.eg-acp-inner.eg-acp-bl,.eg-acp-inner.eg-acp-br{bottom:0}.eg-acp-inner.eg-acp-bl,.eg-acp-inner.eg-acp-tl{left:0}.eg-acp-inner.eg-acp-br,.eg-acp-inner.eg-acp-tr{right:0}.eg-acp-inner.eg-acp-b,.eg-acp-inner.eg-acp-t{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);-moz-transform:translateX(-50%)}.eg-ajax-navbt{line-height:21px;background:#000;background:rgba(0,0,0,.75);color:#fff;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;text-transform:uppercase;padding:1px 1px 0 0;font-size:11px;font-weight:400}.eg-ajax-closer.eg-ajax-navbt{padding:1px 5px 1px 3px;vertical-align:top}.eg-acp-light .eg-ajax-navbt{background:#e5e5e5;color:#000}.eg-ajax-closer.eg-ajax-navbt i{font-size:13px}.eg-ajax-navbt i{font-size:16px}.eg-ajax-closer-wrapper.eg-acp-type1{margin:0}.eg-acp-type1 .eg-ajax-navbt{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0px;padding:10px;margin:0}.eg-acp-type1 .eg-ajax-navbt i{font-size:20px}.eg-acp-type1 .eg-ajax-navbt{width:40px;height:40px;text-align:center;vertical-align:medium!important;line-height:40px;padding:0}.eg-acp-type1 .eg-ajax-closer.eg-ajax-navbt{vertical-align:top;font-size:24px;font-weight:300;font-family:sans-serif;height:auto;line-height:28px;padding:8px 0 4px}span.eg-el-amount:before{content:"("}span.eg-el-amount:after{content:")"}span.eg-el-amount{margin-left:10px}.esg-dropdown-wrapper span.eg-el-amount{margin-left:5px}.esg-split-content .esg-entry-cover,.esg-split-content .esg-entry-media-wrapper{width:50%!important}.esg-split-content .esg-media-cover-wrapper:after{content:"";display:table;clear:both}.esg-split-right .esg-entry-cover,.esg-split-right .esg-entry-media-wrapper{float:right}.esg-split-left .esg-entry-cover,.esg-split-left .esg-entry-media-wrapper{float:left}.esg-split-content .esg-entry-media{height:100%!important}.esg-split-content .esg-entry-cover{position:relative!important}.esg-split-content .esg-entry-content{clear:both}.grayscale{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.esg-revealed .esg-itm-anime:not(.esg-anime-blur) .esg-overflowtrick{overflow:visible!important}.esg-revealed .esg-itm-anime .tp-esg-item{-webkit-mask-image:none!important}.esg-revealed .esg-itm-anime .tp-esg-item:hover{z-index:9999!important;transform:none!important}.esg-revealed .esg-anime-item:before{position:absolute;top:0;left:0;width:100%;height:100%;content:""}.eg-invisiblebutton{box-shadow:none!important;height:inherit!important;display:block!important;font-size:0}.esg-media-cover-wrapper>.eg-invisiblebutton{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.esg-entry-cover>.eg-invisiblebutton{position:relative;z-index:1}.esg-lb-dummy{max-width:none!important;box-shadow:none!important;position:absolute;display:none}@media screen and (max-width:736px){.eg-lightbox-post-content-inner>div{width:100%!important;float:none!important}.eg-lightbox-post-content-inner .esg-post-featured-img{padding:30px 0!important}}.esgbox-stage .esgbox-slide>:not(.esgbox-share){margin:0;padding:0}.esgbox-stage .esgbox-slide>.esgbox-loading{margin-top:-30px;margin-left:-30px}.esgbox-toolbar .esgbox-button{transition:background .2s ease-out}.esgbox-toolbar .esgbox-button:active,.esgbox-toolbar .esgbox-button:focus,.esgbox-toolbar .esgbox-button:visited{background:rgba(30,30,30,.6)}.esgbox-toolbar .esgbox-button:hover{background:#000}.esgbox-navigation .esgbox-button:before{transition:background .2s ease-out}.esgbox-navigation .esgbox-button:active:before,.esgbox-navigation .esgbox-button:focus:before,.esgbox-navigation .esgbox-button:visited:before,.esgbox-navigation .esgbox-button[disabled]:hover:before,.esgbox-toolbar .esgbox-button[disabled]:hover{background:rgba(0,0,0,.6)}.esgbox-navigation .esgbox-button:hover:before{background:rgba(0,0,0,.6)}.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_left,.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_right{display:none!important}.esgbox-single .esgbox-button--arrow_left,.esgbox-single .esgbox-button--arrow_right{display:none!important}.esgbox-slide--video iframe{width:100%!important;height:100%!important;max-width:100%;max-height:100%}.esg-four-by-three .esgbox-slide--video iframe{width:800px;height:600px}.esgbox-container .esgbox-button--arrow_left:focus,.esgbox-container .esgbox-button--arrow_left:hover,.esgbox-container .esgbox-button--arrow_right:focus,.esgbox-container .esgbox-button--arrow_right:hover{background:rgba(0,0,0,.6)}.esg-filter-wrapper{visibility:hidden}#eg-elements-container-grid-wrap.eg-startheight{height:351px}.esg-mobile-filter-button{display:none}.esg-filter-wrapper.dropdownstyle .esg-mobile-filter-button{display:inline-block}.esg-mobile-filter-wrap{visibility:visible}.esg-mobile-filter-wrap .esg-dropdown-wrapper{display:none!important;visibility:hidden!important}.eg-esgblankskin-wrapper *{visibility:hidden!important}.eg-item-in-focus{z-index:999!important}.esg-cover-overflow{overflow:hidden}.esg-transition[data-transition^=esg-collapse]{overflow:hidden}.esg-transition[data-transition^=esg-collapse]:after,.esg-transition[data-transition^=esg-collapse]:before{position:absolute;content:""}.esg-transition[data-transition^=esg-collapsevertical]:after,.esg-transition[data-transition^=esg-collapsevertical]:before{width:100%;height:0%;left:0}.esg-transition[data-transition^=esg-collapsevertical]:before{top:0}.esg-transition[data-transition^=esg-collapsevertical]:after{bottom:0}.esg-transition[data-transition=esg-collapseverticalout]:after,.esg-transition[data-transition=esg-collapseverticalout]:before{height:50%}.esg-transition[data-transition^=esg-collapsehorizontal]:after,.esg-transition[data-transition^=esg-collapsehorizontal]:before{width:0%;height:100%;top:0}.esg-transition[data-transition^=esg-collapsehorizontal]:before{left:0}.esg-transition[data-transition^=esg-collapsehorizontal]:after{right:0}.esg-transition[data-transition=esg-collapsehorizontalout]:before{width:50%}.esg-transition[data-transition=esg-collapsehorizontalout]:after{width:50%}.esg-hovered .esg-transition[data-transition=esg-collapsevertical]:after,.esg-hovered .esg-transition[data-transition=esg-collapsevertical]:before{height:50%}.esg-hovered .esg-transition[data-transition=esg-collapseverticalout]:after,.esg-hovered .esg-transition[data-transition=esg-collapseverticalout]:before{height:0}.esg-hovered .esg-transition[data-transition=esg-collapsehorizontal]:after,.esg-hovered .esg-transition[data-transition=esg-collapsehorizontal]:before{width:50%}.esg-hovered .esg-transition[data-transition=esg-collapsehorizontalout]:after,.esg-hovered .esg-transition[data-transition=esg-collapsehorizontalout]:before{width:0}.esg-transition[data-transition^=esg-line]:after{content:"";position:absolute;width:70%;height:70%;top:15%;left:15%;background-size:100% 100%;background-repeat:no-repeat;background-position:center center}.esg-transition[data-transition=esg-linediagonal]:after,.esg-transition[data-transition=esg-linehorizontal]:after,.esg-transition[data-transition=esg-linevertical]:after{transform:scale(0)}.esg-hovered .esg-transition[data-transition^=esg-line]:after{transform:scale(1)}.esg-hovered .esg-transition[data-transition=esg-linediagonalout]:after,.esg-hovered .esg-transition[data-transition=esg-linehorizontalout]:after,.esg-hovered .esg-transition[data-transition=esg-lineverticalout]:after{transform:scale(0)}.esg-transition[data-transition^=esg-spiral]:after{content:"";position:absolute;top:50%;left:50%;width:100%;height:100%;box-sizing:border-box;padding-bottom:100%;background-size:contain;background-repeat:no-repeat;transform-origin:center;transform:translate(-50%,-50%) rotate(0) scale(0)}.esg-transition[data-transition=esg-spiralzoomout]:after{transform:translate(-50%,-50%) rotate(-300deg) scale(3)}.esg-hovered .esg-transition[data-transition=esg-spiralzoom]:after{transform:translate(-50%,-50%) rotate(-300deg) scale(3)}.esg-hovered .esg-transition[data-transition=esg-spiralzoomout]:after{transform:translate(-50%,-50%) rotate(0) scale(0)}.esg-transition[data-transition^=esg-circlezoom]:after,.esg-transition[data-transition^=esg-circlezoom]:before{content:"";position:absolute;width:150%;height:150%;padding-bottom:150%;top:50%;left:50%;transform:translate(-50%,-50%) scale(0,0);border-radius:50%;box-sizing:border-box}.esg-transition[data-transition=esg-circlezoomout]:after,.esg-transition[data-transition=esg-circlezoomout]:before{transform:translate(-50%,-50%) scale(1,1)}.esg-hovered .esg-transition[data-transition=esg-circlezoom]:after,.esg-hovered .esg-transition[data-transition=esg-circlezoom]:before{transform:translate(-50%,-50%) scale(1,1)}.esg-hovered .esg-transition[data-transition=esg-circlezoomout]:after,.esg-hovered .esg-transition[data-transition=esg-circlezoomout]:before{transform:translate(-50%,-50%) scale(0,0)}.esg-transition[data-transition^=esg-line]:before,.esg-transition[data-transition^=esg-spiral]:before{content:"";position:absolute;width:100%;height:100%;top:0;left:0;opacity:0}.esg-transition[data-transition=esg-linediagonalout]:before,.esg-transition[data-transition=esg-linehorizontalout]:before,.esg-transition[data-transition=esg-lineverticalout]:before,.esg-transition[data-transition=esg-spiralzoomout]:before{opacity:1}.esg-hovered .esg-transition[data-transition=esg-spiralzoom]:before,.esg-hovered .esg-transition[data-transition^=esg-line]:before{opacity:1}.esg-hovered .esg-transition[data-transition=esg-linediagonalout]:before,.esg-hovered .esg-transition[data-transition=esg-linehorizontalout]:before,.esg-hovered .esg-transition[data-transition=esg-lineverticalout]:before,.esg-hovered .esg-transition[data-transition=esg-spiralzoomout]:before{opacity:0}.esg-overlay.esg-cover-blend-multiply{mix-blend-mode:multiply}.esg-overlay.esg-cover-blend-screen{mix-blend-mode:screen}.esg-overlay.esg-cover-blend-overlay{mix-blend-mode:overlay}.esg-overlay.esg-cover-blend-darken{mix-blend-mode:darken}.esg-overlay.esg-cover-blend-lighten{mix-blend-mode:lighten}.esg-overlay.esg-cover-blend-color-dodge{mix-blend-mode:color-dodge}.esg-overlay.esg-cover-blend-color-burn{mix-blend-mode:color-burn}.esg-overlay.esg-cover-blend-hard-light{mix-blend-mode:hard-light}.esg-overlay.esg-cover-blend-soft-light{mix-blend-mode:soft-light}.esg-overlay.esg-cover-blend-difference{mix-blend-mode:difference}.esg-overlay.esg-cover-blend-exclusion{mix-blend-mode:exclusion}.esg-overlay.esg-cover-blend-hue{mix-blend-mode:hue}.esg-overlay.esg-cover-blend-saturation{mix-blend-mode:saturation}.esg-overlay.esg-cover-blend-color{mix-blend-mode:color}.esg-overlay.esg-cover-blend-luminosity{mix-blend-mode:luminosity}.source_type_stream .esg-filter-wrapper{display:none!important}[class*=" pe-7s-"]:before{font-family:Pe-icon-7-stroke}#esg_search_wrapper{height:auto;left:0;opacity:0;position:absolute;top:0;width:100%;z-index:20000}#esg_search_wrapper .esg-filter-wrapper,#esg_search_wrapper .esg-pagination{margin-left:0!important}#esg_big_search_wrapper{padding-top:0;position:relative}#esg_big_search_wrapper .bigsearchfield{-moz-border-bottom-colors:none!important;-moz-border-left-colors:none!important;-moz-border-right-colors:none!important;-moz-border-top-colors:none!important;background:none repeat scroll 0 0 rgba(255,255,255,0)!important;border:none!important;border-bottom:2px solid #333!important;color:#333!important;font-size:40px!important;font-weight:700;line-height:40px!important;padding:0!important;position:relative;width:100%;z-index:10;height:50px!important;border-radius:0!important;-webkit-border-radius:0!important;-moz-border-radius:0!important}#esg_big_search_wrapper::-ms-clear{display:none}#esg_big_search_wrapper .bigsearchfield::-ms-clear{display:none}#esg_big_search_fake_txt{background:none repeat scroll 0 0 rgba(255,255,255,0)!important;border:medium none!important;color:#333!important;font-size:40px!important;font-weight:700;line-height:40px!important;padding:0!important;position:absolute!important;top:7px!important;width:100%;z-index:5;height:50px!important}.esg_big_search_close{color:#333;cursor:pointer;font-size:40px;font-weight:400;position:absolute;right:30px;top:50px;z-index:20}.esg_searchresult_title{color:#333;font-size:11px;font-weight:700;letter-spacing:1px;margin-top:30px;text-transform:uppercase}#esg_search_bg{background:none repeat scroll 0 0 rgba(255,255,255,.85);height:100%;left:0;position:fixed;top:0;width:100%;z-index:19999}.esg_searchcontainer{box-sizing:border-box;padding:40px;position:relative;width:100%}.esg_searchresult{color:#333;font-size:17px;font-weight:600;line-height:26px}#esg_big_search_wrapper.dark .bigsearchfield{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;border-bottom:2px solid #fff!important;color:#fff!important}.dark #esg_big_search_fake_txt{background:none repeat scroll 0 0 rgba(0,0,0,0)!important;color:#fff!important}.dark .esg_big_search_close{color:#fff}.dark .esg_searchresult_title{color:#fff}#esg_search_bg.dark{background:none repeat scroll 0 0 rgba(0,0,0,.85)}.dark .esg_searchresult{color:#fff}
@font-face{font-family:eg-font;src:url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.eot?40874225');src:url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.eot?40874225#iefix') format('embedded-opentype'),url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.woff2?40874225') format('woff2'),url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.woff?40874225') format('woff'),url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.ttf?40874225') format('truetype'),url('https://podolomed.de/podata/plugins/essential-grid/public/assets/font/fontello/fonts/egfont.svg?40874225#egfont') format('svg');font-weight:400;font-style:normal}.eg-icon-picture:before{content:'\e800'}.eg-icon-trash:before{content:'\e801'}.eg-icon-search:before{content:'\e802'}.eg-icon-picture-1:before{content:'\e803'}.eg-icon-layers-alt:before{content:'\e804'}.eg-icon-video:before{content:'\e805'}.eg-icon-arrows-ccw:before{content:'\e806'}.eg-icon-magic:before{content:'\e807'}.eg-icon-ccw:before{content:'\e808'}.eg-icon-doc:before{content:'\e809'}.eg-icon-cancel:before{content:'\e80a'}.eg-icon-export:before{content:'\e80b'}.eg-icon-list-add:before{content:'\e80c'}.eg-icon-ok:before{content:'\e80d'}.eg-icon-link:before{content:'\e80e'}.eg-icon-info-circled:before{content:'\e80f'}.eg-icon-check:before{content:'\e810'}.eg-icon-ok-1:before{content:'\e811'}.eg-icon-basket:before{content:'\e812'}.eg-icon-folder:before{content:'\e813'}.eg-icon-shuffle:before{content:'\e814'}.eg-icon-tools:before{content:'\e815'}.eg-icon-resize-full:before{content:'\e816'}.eg-icon-left-dir:before{content:'\e817'}.eg-icon-right-dir:before{content:'\e818'}.eg-icon-left-open:before{content:'\e819'}.eg-icon-right-open:before{content:'\e81a'}.eg-icon-monitor:before{content:'\e81b'}.eg-icon-droplet:before{content:'\e81c'}.eg-icon-angle-right:before{content:'\e81d'}.eg-icon-right-big:before{content:'\e81e'}.eg-icon-left-big:before{content:'\e81f'}.eg-icon-angle-left:before{content:'\e820'}.eg-icon-back-in-time:before{content:'\e821'}.eg-icon-left-open-mini:before{content:'\e822'}.eg-icon-right-open-mini:before{content:'\e823'}.eg-icon-left-open-big:before{content:'\e824'}.eg-icon-right-open-big:before{content:'\e825'}.eg-icon-right:before{content:'\e826'}.eg-icon-arrow-combo:before{content:'\e827'}.eg-icon-popup:before{content:'\e828'}.eg-icon-palette:before{content:'\e829'}.eg-icon-left-open-1:before{content:'\e82a'}.eg-icon-right-open-1:before{content:'\e82b'}.eg-icon-left-open-2:before{content:'\e82c'}.eg-icon-right-open-2:before{content:'\e82d'}.eg-icon-left-open-outline:before{content:'\e82e'}.eg-icon-right-open-outline:before{content:'\e82f'}.eg-icon-menu:before{content:'\e830'}.eg-icon-pencil-1:before{content:'\e831'}.eg-icon-cog:before{content:'\e832'}.eg-icon-login:before{content:'\e833'}.eg-icon-logout:before{content:'\e834'}.eg-icon-up-hand:before{content:'\e835'}.eg-icon-left:before{content:'\e836'}.eg-icon-gamepad:before{content:'\e837'}.eg-icon-down-dir:before{content:'\e838'}.eg-icon-up-dir:before{content:'\e839'}.eg-icon-equalizer:before{content:'\e83a'}.eg-icon-down-open:before{content:'\e83b'}.eg-icon-th-large:before{content:'\e83c'}.eg-icon-th:before{content:'\e83d'}.eg-icon-folder-1:before{content:'\e83e'}.eg-icon-unlink:before{content:'\e83f'}.eg-icon-link-ext:before{content:'\e840'}.eg-icon-eye:before{content:'\e841'}.eg-icon-eye-off:before{content:'\e842'}.eg-icon-home:before{content:'\e843'}.eg-icon-info:before{content:'\e844'}.eg-icon-resize-full-alt:before{content:'\e845'}.eg-icon-move:before{content:'\e846'}.eg-icon-cog-alt:before{content:'\e847'}.eg-icon-wrench:before{content:'\e848'}.eg-icon-shuffle-1:before{content:'\e849'}.eg-icon-ajust:before{content:'\e84a'}.eg-icon-tint:before{content:'\e84b'}.eg-icon-align-left:before{content:'\e84c'}.eg-icon-align-center:before{content:'\e84d'}.eg-icon-align-right:before{content:'\e84e'}.eg-icon-text-height:before{content:'\e84f'}.eg-icon-text-width:before{content:'\e850'}.eg-icon-font:before{content:'\e851'}.eg-icon-bold:before{content:'\e852'}.eg-icon-chart-bar:before{content:'\e853'}.eg-icon-sort-name-up:before{content:'\e854'}.eg-icon-italic:before{content:'\e855'}.eg-icon-lock:before{content:'\e856'}.eg-icon-lock-open:before{content:'\e857'}.eg-icon-music:before{content:'\e858'}.eg-icon-videocam:before{content:'\e859'}.eg-icon-camera:before{content:'\e85a'}.eg-icon-camera-alt:before{content:'\e85b'}.eg-icon-tag:before{content:'\e85c'}.eg-icon-desktop:before{content:'\e85d'}.eg-icon-laptop:before{content:'\e85e'}.eg-icon-tablet:before{content:'\e85f'}.eg-icon-mobile:before{content:'\e860'}.eg-icon-align-justify:before{content:'\e861'}.eg-icon-color-adjust:before{content:'\e862'}.eg-icon-sort-alt-up:before{content:'\e863'}.eg-icon-sort-alt-down:before{content:'\e864'}.eg-icon-sort-name-down:before{content:'\e865'}.eg-icon-indent-left:before{content:'\e866'}.eg-icon-indent-right:before{content:'\e867'}.eg-icon-mail:before{content:'\e868'}.eg-icon-mail-alt:before{content:'\e869'}.eg-icon-heart:before{content:'\e86a'}.eg-icon-heart-empty:before{content:'\e86b'}.eg-icon-star:before{content:'\e86c'}.eg-icon-star-empty:before{content:'\e86d'}.eg-icon-plus:before{content:'\e86e'}.eg-icon-minus:before{content:'\e86f'}.eg-icon-minus-circled:before{content:'\e870'}.eg-icon-minus-squared:before{content:'\e871'}.eg-icon-minus-squared-alt:before{content:'\e872'}.eg-icon-export-1:before{content:'\e873'}.eg-icon-forward:before{content:'\e874'}.eg-icon-plus-squared:before{content:'\e875'}.eg-icon-plus-circled:before{content:'\e876'}.eg-icon-ok-circled2:before{content:'\e877'}.eg-icon-ok-squared:before{content:'\e878'}.eg-icon-user:before{content:'\e879'}.eg-icon-male:before{content:'\e87a'}.eg-icon-female:before{content:'\e87b'}.eg-icon-basket-1:before{content:'\e87c'}.eg-icon-calendar:before{content:'\e87d'}.eg-icon-calendar-empty:before{content:'\e87e'}.eg-icon-phone:before{content:'\e87f'}.eg-icon-rss:before{content:'\e880'}.eg-icon-rss-squared:before{content:'\e881'}.eg-icon-folder-open-empty:before{content:'\e882'}.eg-icon-folder-open:before{content:'\e883'}.eg-icon-doc-inv:before{content:'\e884'}.eg-icon-doc-text:before{content:'\e885'}.eg-icon-print:before{content:'\e886'}.eg-icon-thumbs-up:before{content:'\e887'}.eg-icon-thumbs-up-alt:before{content:'\e888'}.eg-icon-upload:before{content:'\e889'}.eg-icon-download:before{content:'\e88a'}.eg-icon-lightbulb:before{content:'\e88b'}.eg-icon-play:before{content:'\e88c'}.eg-icon-pause:before{content:'\e88d'}.eg-icon-play-circled:before{content:'\e88e'}.eg-icon-stop:before{content:'\e88f'}.eg-icon-fast-fw:before{content:'\e890'}.eg-icon-ccw-1:before{content:'\e891'}.eg-icon-angle-double-left:before{content:'\e892'}.eg-icon-angle-double-right:before{content:'\e893'}.eg-icon-flight:before{content:'\e894'}.eg-icon-sort:before{content:'\e895'}.eg-icon-coffee:before{content:'\e896'}.eg-icon-food:before{content:'\e897'}.eg-icon-medkit:before{content:'\e898'}.eg-icon-puzzle:before{content:'\e899'}.eg-icon-apple:before{content:'\e89a'}.eg-icon-facebook:before{content:'\e89b'}.eg-icon-gplus:before{content:'\e89c'}.eg-icon-vimeo-squared:before{content:'\e89d'}.eg-icon-youtube-squared:before{content:'\e89e'}.eg-icon-youtube:before{content:'\e89f'}.eg-icon-tumblr:before{content:'\e8a0'}.eg-icon-twitter:before{content:'\e8a1'}.eg-icon-twitter-squared:before{content:'\e8a2'}.eg-icon-level-down:before{content:'\e8a3'}.eg-icon-level-up:before{content:'\e8a4'}.eg-icon-back:before{content:'\e8a5'}.eg-icon-reply:before{content:'\e8a6'}.eg-icon-forward-1:before{content:'\e8a7'}.eg-icon-reply-1:before{content:'\e8a8'}.eg-icon-thumbs-up-1:before{content:'\e8a9'}.eg-icon-thumbs-down:before{content:'\e8aa'}.eg-icon-download-1:before{content:'\e8ab'}.eg-icon-upload-1:before{content:'\e8ac'}.eg-icon-paper-plane:before{content:'\e8ad'}.eg-icon-brush:before{content:'\e8ae'}.eg-icon-key:before{content:'\e8af'}.eg-icon-clipboard:before{content:'\e8b0'}.eg-icon-megaphone:before{content:'\e8b1'}.eg-icon-flickr:before{content:'\e8b2'}.eg-icon-github:before{content:'\e8b3'}.eg-icon-github-circled:before{content:'\e8b4'}.eg-icon-flickr-circled:before{content:'\e8b5'}.eg-icon-vimeo:before{content:'\e8b6'}.eg-icon-vimeo-circled:before{content:'\e8b7'}.eg-icon-twitter-1:before{content:'\e8b8'}.eg-icon-twitter-circled:before{content:'\e8b9'}.eg-icon-facebook-1:before{content:'\e8ba'}.eg-icon-facebook-circled:before{content:'\e8bb'}.eg-icon-facebook-squared:before{content:'\e8bc'}.eg-icon-gplus-1:before{content:'\e8bd'}.eg-icon-gplus-circled:before{content:'\e8be'}.eg-icon-pinterest:before{content:'\e8bf'}.eg-icon-pinterest-circled:before{content:'\e8c0'}.eg-icon-tumblr-1:before{content:'\e8c1'}.eg-icon-tumblr-circled:before{content:'\e8c2'}.eg-icon-linkedin:before{content:'\e8c3'}.eg-icon-linkedin-circled:before{content:'\e8c4'}.eg-icon-dribbble:before{content:'\e8c5'}.eg-icon-dribbble-circled:before{content:'\e8c6'}.eg-icon-picasa:before{content:'\e8c7'}.eg-icon-rss-1:before{content:'\e8c8'}.eg-icon-cw:before{content:'\e8c9'}.eg-icon-soundcloud:before{content:'\e8ca'}.eg-icon-gplus-squared:before{content:'\f0d4'}.eg-icon-gplus-2:before{content:'\f0d5'}.eg-icon-youtube-play:before{content:'\f16a'}.eg-icon-instagram:before{content:'\f16d'}.eg-icon-telegram:before{content:'\f2c6'}
.wpml-ls-legacy-dropdown{width:15.5em;max-width:100%}.wpml-ls-legacy-dropdown>ul{position:relative;padding:0;margin:0!important;list-style-type:none}.wpml-ls-legacy-dropdown .wpml-ls-current-language:focus .wpml-ls-sub-menu,.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover .wpml-ls-sub-menu{visibility:visible}.wpml-ls-legacy-dropdown .wpml-ls-item{padding:0;margin:0;list-style-type:none}.wpml-ls-legacy-dropdown a{display:block;text-decoration:none;color:#444;border:1px solid #cdcdcd;background-color:#fff;padding:5px 10px;line-height:1}.wpml-ls-legacy-dropdown a span{vertical-align:middle}.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{position:relative;padding-right:calc(10px + 1.4em)}.rtl .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{padding-right:10px;padding-left:calc(10px + 1.4em)}.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{content:"";vertical-align:middle;display:inline-block;border:.35em solid transparent;border-top:.5em solid;position:absolute;right:10px;top:calc(50% - .175em)}.rtl .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{right:auto;left:10px}.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,.wpml-ls-legacy-dropdown a:focus,.wpml-ls-legacy-dropdown a:hover{color:#000;background:#eee}.wpml-ls-legacy-dropdown .wpml-ls-sub-menu{visibility:hidden;position:absolute;top:100%;right:0;left:0;border-top:1px solid #cdcdcd;padding:0;margin:0;list-style-type:none;z-index:101}.wpml-ls-legacy-dropdown .wpml-ls-sub-menu a{border-width:0 1px 1px}.wpml-ls-legacy-dropdown .wpml-ls-flag{display:inline;vertical-align:middle}.wpml-ls-legacy-dropdown .wpml-ls-flag+span{margin-left:.4em}.rtl .wpml-ls-legacy-dropdown .wpml-ls-flag+span{margin-left:0;margin-right:.4em}
.wpml-ls-menu-item .wpml-ls-flag{display:inline;vertical-align:baseline}.wpml-ls-menu-item .wpml-ls-flag+span{margin-left:.3em}.rtl .wpml-ls-menu-item .wpml-ls-flag+span{margin-left:0;margin-right:.3em}ul .wpml-ls-menu-item a{display:flex;align-items:center}
#branda-cookie-notice{display:block;position:fixed;min-width:100%;height:auto;z-index:100000;font-size:13px;left:0;text-align:center}#branda-cookie-notice.ub-position-top{top:0}#branda-cookie-notice.ub-position-top .cookie-notice-revoke-container{top:0;bottom:auto}#branda-cookie-notice.ub-position-bottom{bottom:0}#branda-cookie-notice .cookie-notice-container{max-width:1200px;margin:0 auto}#branda-cookie-notice .cookie-notice-container .branda-cn-container{display:flex;align-items:baseline;justify-content:center;padding:10px 0}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column{display:block;padding:10px 5px;line-height:1}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column:first-child{padding-left:2em}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column:last-child{padding-right:2em}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column:not(:first-child){align-self:center}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column a.ub-cn-set-cookie{padding:5px 10px;margin:0;white-space:nowrap;text-decoration:none;display:inline}#branda-cookie-notice .cookie-notice-container .branda-cn-container .branda-cn-column a.ub-cn-privacy-policy{word-break:keep-all}#branda-cookie-notice .cookie-notice-revoke-container{position:absolute;bottom:0;width:100%;z-index:1;visibility:hidden}.admin-bar #ub-cookie-notice.ub-position-top{top:32px}@media screen and (max-width:782px){.admin-bar #ub-cookie-notice.ub-position-top{top:46px}}@media screen and (max-width:600px){.admin-bar #ub-cookie-notice.ub-position-top{top:0}}