
.tml {
	font-size: 1em;
}

.tml * {
	box-sizing: border-box;
}

.tml .tml-field-wrap {
	margin-bottom: 1em;
}

.tml .tml-label {
	display: block;
	margin: .5em 0;
}

.tml .tml-checkbox+.tml-label {
	display: inline;
}

.tml .tml-field {
	width: 100%;
}

.tml .tml-description {
	display: block;
	font-size: .85em;
	font-style: italic;
	margin: .5em 0;
}

.tml .tml-errors, .tml .tml-messages {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tml .tml-action-confirmaction .success, .tml .tml-error, .tml .tml-message, .tml .tml-success {
	border-left: 4px solid #00a0d2;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, .1);
	display: block;
	margin: 0 0 1em;
	padding: .75em;
}

.tml .tml-error {
	border-left-color: #dc3232;
}

.tml .tml-action-confirmaction .success, .tml .tml-success {
	border-left-color: #46b450;
}

#pass-strength-result {
	background-color: #eee;
	border: 1px solid #ddd;
	color: #23282d;
	font-weight: 700;
	opacity: 0;
	margin-bottom: 1em;
	padding: .5em;
}

#pass-strength-result.strong {
	background-color: #c1e1b9;
	border-color: #83c373;
	opacity: 1;
}

#pass-strength-result.good {
	background-color: #ffe399;
	border-color: #ffc733;
	opacity: 1;
}

#pass-strength-result.bad {
	background-color: #fbc5a9;
	border-color: #f78b53;
	opacity: 1;
}

#pass-strength-result.short {
	background-color: #f1adad;
	border-color: #e35b5b;
	opacity: 1;
}

@keyframes ppress-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

.ppress-hint-wrap[class*=hint--] {
	position: relative;
	display: inline-block;
}

.ppress-hint-wrap[class*=hint--]:after, .ppress-hint-wrap[class*=hint--]:before {
	position: absolute;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	visibility: hidden;
	opacity: 0;
	z-index: 1000000;
	pointer-events: none;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

.ppress-hint-wrap[class*=hint--]:before {
	content: "";
	background: 0 0;
	border: 6px solid transparent;
	z-index: 1000001;
}

.ppress-hint-wrap[class*=hint--]:hover:after, .ppress-hint-wrap[class*=hint--]:hover:before {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: .1s;
	-moz-transition-delay: .1s;
	transition-delay: .1s;
}

.ppress-hint-wrap[class*=hint--]:after {
	background: #383838;
	color: #fff;
	padding: 8px 10px;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 12px;
	white-space: nowrap;
	text-shadow: 0 -1px 0 #000;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .3);
}

.ppress-hint-wrap[class*=hint--][aria-label]:after {
	content: attr(aria-label);
}

.ppress-hint-wrap[class*=hint--][data-hint]:after {
	content: attr(data-hint);
}

.ppress-hint-wrap[aria-label=""]:after, .ppress-hint-wrap[aria-label=""]:before, [data-hint=""]:after, [data-hint=""]:before {
	display: none !important;
}

.ppress-hint-wrap.hint--top-left:before, .ppress-hint-wrap.hint--top-right:before, .ppress-hint-wrap.hint--top:before {
	border-top-color: #383838;
}

.ppress-hint-wrap.hint--bottom-left:before, .ppress-hint-wrap.hint--bottom-right:before, .ppress-hint-wrap.hint--bottom:before {
	border-bottom-color: #383838;
}

.ppress-hint-wrap.hint--top:after, .ppress-hint-wrap.hint--top:before {
	bottom: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--top:before {
	margin-bottom: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--top:after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ppress-hint-wrap.hint--top:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--top:hover:after {
	-webkit-transform: translateX(-50%) translateY(-8px);
	-moz-transform: translateX(-50%) translateY(-8px);
	transform: translateX(-50%) translateY(-8px);
}

.ppress-hint-wrap.hint--bottom:after, .ppress-hint-wrap.hint--bottom:before {
	top: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--bottom:before {
	margin-top: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--bottom:after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ppress-hint-wrap.hint--bottom:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--bottom:hover:after {
	-webkit-transform: translateX(-50%) translateY(8px);
	-moz-transform: translateX(-50%) translateY(8px);
	transform: translateX(-50%) translateY(8px);
}

.ppress-hint-wrap.hint--right:before {
	border-right-color: #383838;
	margin-left: -11px;
	margin-bottom: -6px;
}

.ppress-hint-wrap.hint--right:after {
	margin-bottom: -14px;
	left: 100%;
	bottom: 50%;
}

.ppress-hint-wrap.hint--right:before {
	left: 100%;
	bottom: 50%;
}

.ppress-hint-wrap.hint--right:hover:after, .ppress-hint-wrap.hint--right:hover:before {
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
	transform: translateX(8px);
}

.ppress-hint-wrap.hint--left:before {
	border-left-color: #383838;
	margin-right: -11px;
	margin-bottom: -6px;
}

.ppress-hint-wrap.hint--left:after {
	margin-bottom: -14px;
	right: 100%;
	bottom: 50%;
}

.ppress-hint-wrap.hint--left:before {
	right: 100%;
	bottom: 50%;
}

.ppress-hint-wrap.hint--left:hover:after, .ppress-hint-wrap.hint--left:hover:before {
	-webkit-transform: translateX(-8px);
	-moz-transform: translateX(-8px);
	transform: translateX(-8px);
}

.ppress-hint-wrap.hint--top-left:after, .ppress-hint-wrap.hint--top-left:before {
	bottom: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--top-left:before {
	margin-bottom: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--top-left:after {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	margin-left: 12px;
}

.ppress-hint-wrap.hint--top-left:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--top-left:hover:after {
	-webkit-transform: translateX(-100%) translateY(-8px);
	-moz-transform: translateX(-100%) translateY(-8px);
	transform: translateX(-100%) translateY(-8px);
}

.ppress-hint-wrap.hint--top-right:after, .ppress-hint-wrap.hint--top-right:before {
	bottom: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--top-right:before {
	margin-bottom: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--top-right:after {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	margin-left: -12px;
}

.ppress-hint-wrap.hint--top-right:hover:after, .ppress-hint-wrap.hint--top-right:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--bottom-left:after, .ppress-hint-wrap.hint--bottom-left:before {
	top: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--bottom-left:before {
	margin-top: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--bottom-left:after {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	margin-left: 12px;
}

.ppress-hint-wrap.hint--bottom-left:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--bottom-left:hover:after {
	-webkit-transform: translateX(-100%) translateY(8px);
	-moz-transform: translateX(-100%) translateY(8px);
	transform: translateX(-100%) translateY(8px);
}

.ppress-hint-wrap.hint--bottom-right:after, .ppress-hint-wrap.hint--bottom-right:before {
	top: 100%;
	left: 50%;
}

.ppress-hint-wrap.hint--bottom-right:before {
	margin-top: -11px;
	left: calc(50% - 6px);
}

.ppress-hint-wrap.hint--bottom-right:after {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	margin-left: -12px;
}

.ppress-hint-wrap.hint--bottom-right:hover:after, .ppress-hint-wrap.hint--bottom-right:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--large:after, .ppress-hint-wrap.hint--medium:after, .ppress-hint-wrap.hint--small:after {
	white-space: normal;
	line-height: 1.4em;
	word-wrap: break-word;
}

.ppress-hint-wrap.hint--small:after {
	width: 80px;
}

.ppress-hint-wrap.hint--medium:after {
	width: 150px;
}

.ppress-hint-wrap.hint--large:after {
	width: 300px;
}

.ppress-hint-wrap.hint--error:after {
	background-color: #b34e4d;
	text-shadow: 0 -1px 0 #592726;
}

.ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--top-left:before, .ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--top-right:before, .ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--top:before {
	border-top-color: #b34e4d;
}

.ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--bottom-left:before, .ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--bottom-right:before, .ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--bottom:before {
	border-bottom-color: #b34e4d;
}

.ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--left:before {
	border-left-color: #b34e4d;
}

.ppress-hint-wrap.hint--error.ppress-hint-wrap.hint--right:before {
	border-right-color: #b34e4d;
}

.ppress-hint-wrap.hint--warning:after {
	background-color: #c09854;
	text-shadow: 0 -1px 0 #6c5328;
}

.ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--top-left:before, .ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--top-right:before, .ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--top:before {
	border-top-color: #c09854;
}

.ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--bottom-left:before, .ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--bottom-right:before, .ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--bottom:before {
	border-bottom-color: #c09854;
}

.ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--left:before {
	border-left-color: #c09854;
}

.ppress-hint-wrap.hint--warning.ppress-hint-wrap.hint--right:before {
	border-right-color: #c09854;
}

.ppress-hint-wrap.hint--info:after {
	background-color: #3986ac;
	text-shadow: 0 -1px 0 #1a3c4d;
}

.ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--top-left:before, .ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--top-right:before, .ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--top:before {
	border-top-color: #3986ac;
}

.ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--bottom-left:before, .ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--bottom-right:before, .ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--bottom:before {
	border-bottom-color: #3986ac;
}

.ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--left:before {
	border-left-color: #3986ac;
}

.ppress-hint-wrap.hint--info.ppress-hint-wrap.hint--right:before {
	border-right-color: #3986ac;
}

.ppress-hint-wrap.hint--success:after {
	background-color: #458746;
	text-shadow: 0 -1px 0 #1a321a;
}

.ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--top-left:before, .ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--top-right:before, .ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--top:before {
	border-top-color: #458746;
}

.ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--bottom-left:before, .ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--bottom-right:before, .ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--bottom:before {
	border-bottom-color: #458746;
}

.ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--left:before {
	border-left-color: #458746;
}

.ppress-hint-wrap.hint--success.ppress-hint-wrap.hint--right:before {
	border-right-color: #458746;
}

.ppress-hint-wrap.hint--always:after, .ppress-hint-wrap.hint--always:before {
	opacity: 1;
	visibility: visible;
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top:after {
	-webkit-transform: translateX(-50%) translateY(-8px);
	-moz-transform: translateX(-50%) translateY(-8px);
	transform: translateX(-50%) translateY(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top-left:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top-left:after {
	-webkit-transform: translateX(-100%) translateY(-8px);
	-moz-transform: translateX(-100%) translateY(-8px);
	transform: translateX(-100%) translateY(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top-right:after, .ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--top-right:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom:after {
	-webkit-transform: translateX(-50%) translateY(8px);
	-moz-transform: translateX(-50%) translateY(8px);
	transform: translateX(-50%) translateY(8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom-left:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom-left:after {
	-webkit-transform: translateX(-100%) translateY(8px);
	-moz-transform: translateX(-100%) translateY(8px);
	transform: translateX(-100%) translateY(8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom-right:after, .ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--bottom-right:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--left:after, .ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--left:before {
	-webkit-transform: translateX(-8px);
	-moz-transform: translateX(-8px);
	transform: translateX(-8px);
}

.ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--right:after, .ppress-hint-wrap.hint--always.ppress-hint-wrap.hint--right:before {
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
	transform: translateX(8px);
}

.ppress-hint-wrap.hint--rounded:after {
	border-radius: 4px;
}

.ppress-hint-wrap.hint--no-animate:after, .ppress-hint-wrap.hint--no-animate:before {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s;
}

.ppress-hint-wrap.hint--bounce:after, .ppress-hint-wrap.hint--bounce:before {
	-webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
	-moz-transition: opacity .3s ease, visibility .3s ease, -moz-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
	transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
}

.ppress-hint-wrap.hint--no-shadow:after, .ppress-hint-wrap.hint--no-shadow:before {
	text-shadow: initial;
	box-shadow: initial;
}

.ppress-checkout__form * {
	--ppress-heading-fs: 22px;
	--ppress-body-fs: 16px;
	--ppress-btn-color: #2563eb;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: var(--ppress-body-fs);
}

.ppress-checkout__form {
	margin: 1px auto 10px;
	max-width: 100%;
	width: 100%;
	line-height: 20px;
	position: relative;
}

.ppress-checkout__form p {
	margin: 0 0 5px;
	padding: 0;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__social_login_wrap {
	padding: 5px;
}

.ppress-checkout__form, .ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__login_form_wrap {
	display: flex;
	flex-wrap: wrap;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__logged_in_text_wrap {
	margin: 5px 0 10px;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__logged_in_text_wrap .ppress-main-checkout-form__block__item {
	border-radius: 6px;
	background-color: #eff6ff;
	padding: 14px 16px;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__logged_in_text_wrap .ppress-main-checkout-form__block__item a, .ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__logged_in_text_wrap .ppress-main-checkout-form__block__item p {
	font-size: 14px;
	margin: 0;
	line-height: 20px;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__login_form_wrap .ppress-main-checkout-form__block__item {
	margin-bottom: 5px;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__login_form_wrap .ppress-main-checkout-form__block__item:last-of-type {
	margin-bottom: 15px;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__login_form_wrap .ppress-main-checkout-form__block__item.ppress-login-submit-btn p {
	padding: 0;
	margin: 10px 0;
}

.ppress-checkout__form .ppress-checkout-section.ppress-checkout_side_section {
	width: 35%;
	order: 2;
}

.ppress-checkout__form .ppress-checkout-section.ppress-checkout_main {
	width: 65%;
	order: 1;
	padding: 0 30px 0 0;
}

.ppress-checkout__form .ppress-checkout_order_summary {
	border: 1px solid #e5e7eb;
	border-radius: 5px;
}

.ppress-checkout__form .ppress-checkout_order_summary__plan_name {
	padding: 10px 20px;
	font-size: var(--ppress-body-fs);
	font-weight: 700;
	border-bottom: 1px solid #e4e4e4;
}

.ppress-checkout__form .ppress-checkout_order_summary__plan_price {
	font-weight: 500;
	font-size: 14px;
}

.ppress-checkout__form .ppress-checkout_order_summary__bottom_details * {
	font-size: var(--ppress-body-fs);
}

.ppress-checkout__form .ppress-checkout_order_summary__bottom_details .checkout_order_summary__fee_structure__item dd a {
	font-size: 14px;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

.ppress-checkout__form .checkout_order_summary__fee_structure__item dt .checkout_order_summary__fee_structure__item__trial_term {
	display: block;
	background: unset;
	margin-left: 0;
	font-weight: 600;
	padding-left: 0;
}

.ppress-checkout__form .ppress-checkout_order_summary__bottom_details {
	padding: 10px 20px;
}

.ppress-checkout__form .ppress-checkout_order_summary__plan_description {
	padding: 20px;
	border-bottom: 1px solid #e5e7eb;
	line-height: 1.7;
	font-size: var(--ppress-body-fs);
}

.ppress-checkout__form .checkout_order_summary__fee_structure__item {
	display: flex;
	flex-wrap: nowrap;
	padding: 5px 0;
	font-size: var(--ppress-body-fs);
}

.ppress-checkout__form .checkout_order_summary__fee_structure__item dt {
	width: 60%;
	text-align: left;
}

.ppress-checkout__form .checkout_order_summary__fee_structure__item dd {
	width: 40%;
	text-align: right;
}

.ppress-checkout__form .checkout_order_summary__fee_structure__item dt span {
	color: #4b5563;
	background-color: #e5e7eb;
	margin-left: 5px;
	border-radius: 9999px;
	letter-spacing: .35px;
	padding: 2px 6px;
	font-size: 12px;
}

.ppress-checkout__form .ppress-main-checkout-form__block fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__block__fieldset {
	border: 0;
	margin: 10px 0 0;
	padding: 20px 0 0;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__block__fieldset:first-of-type {
	border: 0;
	margin-top: 10px;
	padding-top: 0;
}

.ppress-checkout__form .ppress-main-checkout-form__block legend {
	border: 0;
	color: #000;
	font-size: var(--ppress-heading-fs);
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 15px;
	padding: 0 5px;
	width: 100%;
	background: 0 0;
	position: static;
}

.ppress-checkout__form .ppress-main-checkout-form__block legend span {
	font-size: var(--ppress-heading-fs);
}

.ppress-checkout__form .ppress-main-checkout-form__block a.ppress-checkout-show-login-form, .ppress-checkout__form a.ppress-checkout-show-login-form {
	cursor: pointer;
	float: right;
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	vertical-align: baseline;
}

.ppress-checkout__form .ppress-checkout_order_summary__discount {
	margin: 0 0 5px;
}

.ppress-checkout__form .ppress-checkout_order_summary__discount p {
	font-size: 14px;
}

.ppress-checkout__form .ppress-checkout__link {
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	line-height: 35px;
	margin: 10px 0;
	padding: 0;
	text-decoration: none;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__block__item {
	width: calc(100% - 5px);
	display: inline-block;
	padding: 5px;
	margin-bottom: 15px;
}

.ppress-checkout__form .ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__login_form_wrap .ppress-main-checkout-form__block__item {
	margin-bottom: 10px;
}

.ppress-checkout-form__payment_method__content_wrap .ppress-main-checkout-form__block__item:first-of-type {
	margin-top: 15px;
}

.ppress-checkout__form .ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__item:last-of-type {
	margin-bottom: 0;
}

.ppress-checkout__form .ppress-required {
	color: #ef4444;
}

.ppress-checkout__form .ppress-main-checkout-form__block__item.ppress-co-half {
	width: calc(50% - 5px);
}

.ppress-checkout__form .ppress-main-checkout-form__block__item.ppress-two-third {
	width: calc(66.6666666667% - 5px);
}

.ppress-checkout__form .ppress-main-checkout-form__block__item.ppress-one-third {
	width: calc(33.3333333333% - 5px);
}

.ppress-checkout__form .ppress-main-checkout-form__block__item.ppress-expiry-date {
	width: calc(40% - 5px);
}

.ppress-checkout__form .ppress-main-checkout-form__block__item.ppress-cc-cvc {
	width: calc(60% - 5px);
}

.ppress-checkout__form .press-main-checkout-form__block__item__cc_expiry_date {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ppress-checkout__form .press-main-checkout-form__block__item__cc_expiry_date select {
	width: calc(50% - 5px) !important;
	margin: 0 5px 0 0;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4MjgzNGQzMC03MmY4LTRkM2MtYTU4NC1lNzMzZDE1YjU2NzYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzJGMzNGODgwRkI5MTFFN0E3NzQ5QUE3QTdEMENEQjEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzJGMzNGODcwRkI5MTFFN0E3NzQ5QUE3QTdEMENEQjEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMzAzN2MxMy01N2VhLTRiN2UtYjg3Yi04OGZhODk2NDYzZTgiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDplMTI0MmMzNy1mZTljLTExNzktYWE3NC1kYzYxZWJhMDdhNDAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7ItaH1AAABFklEQVR42uzZuw3CMBAG4NhiAFiDAsahp0sqJOaghQ5mIkgwBmwQzlJAoLz8OCe29Z90urMb65MfjUVVVVkKIbNEAhBAAAEEEEAAoZjdyseG6olyEanhSZmL8npXzTzyDXnJRI6XVIhdApCdXK2XF2qKiBGFMojPiO5KTuUYIUI9VJn4nY0M80U0IBFh/hCtkAgwDUQnJGBMK6IXEiCmEzEICQjTi9CCBIAZRGhDJsRoIYwgE2C0EcaQETFGCCvICBhjhDXEI8YK4QTxgLFGOEMYMU4IFggDxhnBBnHAsCBYIRYYNgQ7xADDivAC0cCwI7xBejBeEF4hNWZL5VAP94Q4+1pL4FcXEEAAAQQQQAABxFu8BRgA2gaBhwO0rwAAAAAASUVORK5CYII=");
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}

.ppress-checkout__form .press-main-checkout-form__block__item__cc_expiry_date select.nitro-lazy {
	background-image: none !important;
}

.ppress-checkout__form .press-main-checkout-form__block__item__cc_expiry_date select:last-of-type {
	margin-right: 0;
}

.ppress-checkout__form label.checkout_order_summary__discount__label {
	width: 100%;
	line-height: 20px;
}

.ppress-checkout__form .checkout_order_summary__discount__field_wrap {
	margin-bottom: 20px;
}

.ppress-checkout__form .ppress-checkout-section .ppress-checkout-form__place_order_wrap {
	margin: 20px 0 10px;
}

.ppress-checkout__form .ppress-checkout-section #ppress-paypal-button-element {
	margin: 16px 0 0;
}

.ppress-checkout__form .ppress-checkout-section #ppress-stripe-card-element, .ppress-checkout__form .ppress-checkout-section input:not([type=checkbox]):not([type=radio]), .ppress-checkout__form .ppress-checkout-section select, .ppress-checkout__form .ppress-checkout-section textarea {
	width: 100%;
	background-color: #fff;
	border: 1px solid #d1d5db;
	padding: 8px 12px;
	line-height: 20px;
	border-radius: 6px;
	box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, .05);
	height: auto;
}

.ppress-checkout__form .ppress-checkout-section #ppress-stripe-card-element {
	padding-top: 10px;
	padding-bottom: 10px;
}

.ppress-checkout__form .ppress-checkout-section textarea {
	min-height: 100px;
}

.ppress-checkout__form .ppress-checkout-section.ppress-checkout_main input[type=submit] {
	padding: 12px 16px;
	border-color: transparent;
	background: var(--ppress-btn-color);
	background-color: var(--ppress-btn-color);
	color: #fff;
	box-shadow: none;
	font-weight: 500;
	text-align: center;
	-webkit-appearance: none;
	width: 100%;
	height: auto;
	display: block;
}

.ppress-checkout__form .ppress-checkout-section.ppress-checkout_main input[type=submit]:disabled {
	opacity: .65;
}

.ppress-checkout__form .ppress-checkout-section input[type=checkbox], .ppress-checkout__form .ppress-checkout-section input[type=radio] {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #d1d5db;
	height: 16px;
	width: 16px;
	color: #4f46e5;
	padding: 0 5px;
	margin: 0;
}

.ppress-checkout__form .ppress-checkout-section input[type=radio] {
	border-radius: 100%;
}

.ppress-checkout__form .ppress-checkout-section input[type=checkbox] {
	border-radius: 0;
	cursor: pointer;
}

.ppress-checkout__form .ppress-checkout-section #ppress-stripe-card-element:focus, .ppress-checkout__form .ppress-checkout-section input:not([type=checkbox]):not([type=radio]):focus, .ppress-checkout__form .ppress-checkout-section textarea:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 0 #fff, 0 0 0 calc(1px + 0px) var(--ppress-btn-color), 0 0 rgba(0, 0, 0, 0);
	border-color: #2563eb;
}

.ppress-checkout__form .ppress-checkout-section input[type=submit]:hover {
	filter: brightness(85%);
}

.ppress-checkout__form .ppress-checkout-section label {
	font-weight: 500;
	display: block;
	line-height: 25px;
	vertical-align: baseline;
}

.ppress-checkout__form .ppress-checkout-section .pp-checkbox-wrap label, .ppress-checkout__form .ppress-checkout-section .pp-radio-wrap label {
	display: inline-block;
}

.ppress-checkout__form .ppress-checkout-section .pp-checkbox-wrap .ppress-checkout-field__input, .ppress-checkout__form .ppress-checkout-section .pp-radio-wrap .ppress-checkout-field__input {
	margin-right: 5px;
}

.ppress-checkout__form .checkout_order_summary__discount__field_wrap input[type=text].checkout_order_summary__discount__input {
	width: 68%;
	display: inline-block;
}

.ppress-checkout__form .ppress-checkout-section input[type=submit].ppress-apply-discount-btn {
	width: 25%;
	margin-left: 10px;
	border: 0;
	border-radius: 6px;
	padding: 8px 15px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	display: inline-block;
	color: #4b5563;
	background-color: #d1d5db;
}

.ppress-checkout__form .ppress-checkout_charge_details {
	padding: 10px 20px;
}

.ppress-checkout__form .ppress-checkout_charge_details span {
	font-weight: 700;
}

.ppress-checkout__form .ppress-checkout-form__payment_methods_wrap {
	border: 1px solid #ddd;
	border-radius: 5px;
	line-height: 1;
	list-style: none;
	overflow: visible;
	padding: 0;
	margin: 5px 0 0;
}

.ppress-checkout__form .ppress-checkout-form__payment_method {
	border-top: 1px solid #ddd;
	padding: 0;
}

.ppress-checkout__form .ppress-checkout-form__payment_method:first-of-type {
	border-top: none;
	border-bottom: none;
}

.ppress-checkout__form .ppress-checkout-form__payment_method__title_wrap {
	background: #fff;
	margin: 0;
	padding: 16px 8px;
}

.ppress-checkout__form .ppress-checkout-form__payment_method__title_wrap:first-of-type {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.ppress-checkout__form .ppress-checkout-form__payment_method:last-of-type .ppress-checkout-form__payment_method__content_wrap, .ppress-checkout__form .ppress-checkout-form__payment_method:last-of-type .ppress-checkout-form__payment_method__title_wrap {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.ppress-checkout__form .ppress-checkout-section .ppress-checkout-form__payment_method__title_wrap label {
	display: inline-block;
	padding-left: 5px;
	padding-top: 2px;
	position: relative;
	cursor: pointer;
	width: calc(100% - 30px);
	line-height: 1;
	margin: 0;
}

.ppress-checkout__form .ppress-checkout-form__payment_method__icons {
	position: absolute;
	right: 20px;
	top: -5px;
}

.ppress-checkout__form .ppress-checkout-form__payment_method__icons img, .ppress-checkout__form .ppress-checkout-form__payment_method__icons svg {
	max-height: 22px;
}

.ppress-checkout__form .ppress-checkout-form__payment_method .ppress-checkout-form__payment_method__content_wrap p {
	padding: 0 5px;
	font-size: 14px;
	line-height: 1.25;
	margin: 0 !important;
}

.ppress-checkout__form .ppress-checkout-form__payment_method .ppress-checkout-form__payment_method__content_wrap {
	background: #f4f4f4;
	border-top: 1px solid #ddd;
	margin: 0 !important;
	padding: 20px 10px;
	display: none;
}

.ppress-checkout__form .ppress-checkout-form__payment_method .ppress-checkout-form__payment_method__title_wrap input[type=radio] {
	vertical-align: bottom;
}

.ppress-checkout__form .ppress-checkout-form__payment_method.ppress-active .ppress-checkout-form__payment_method__content_wrap {
	display: block;
}

.pp-form-wrapper.ppress-default-profile .pp-user-post-item h3.pp-post-item-head, .ppress-checkout__form .ppress-checkout-form__payment_method__content_wrap label {
	line-height: 20px;
}

.ppress-checkout__form .ppress-checkout-form__payment_method__content_wrap .ppress-checkout-form__payment_method__heading {
	padding: 10px 5px;
	margin: 15px 0;
	font-size: var(--ppress-body-fs);
	font-weight: 700;
	border-bottom: 1px solid #e4e4e4;
}

.ppress-checkout__form .ppress-checkout-form__before_button_wrap, .ppress-checkout__form .ppress-checkout-form__terms_condition_wrap {
	margin: 0;
	border: 0;
	padding: 40px 0 0;
}

.ppress-checkout__form .ppress-checkout-form__terms_condition_wrap+.ppress-checkout-form__before_button_wrap {
	padding-top: 0;
}

.ppress-checkout__form .ppress-checkout-form__before_button_wrap .ppress-checkout-form__before_button__checkbox__label span, .ppress-checkout__form .ppress-checkout-form__terms_condition_wrap .ppress-checkout-form__terms_condition__checkbox__label span {
	vertical-align: middle;
}

.ppress-checkout__form .ppress-checkout-form__terms_condition__content {
	border: 1px solid #e5e7eb;
	padding: 20px;
	max-height: 200px;
	overflow: auto;
	border-radius: 6px;
	display: none;
	margin: 0 0 20px;
}

.ppress-checkout__form .ppress-checkout-form__before_button__checkbox_wrap, .ppress-checkout__form .ppress-checkout-form__terms_condition__checkbox_wrap {
	margin: 0 0 20px;
}

.ppress-checkout__form .ppress-checkout__form__preloader {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(250, 250, 250, .9);
	z-index: 99995;
}

.ppress-checkout__form .ppress-checkout__form__spinner {
	display: block;
	width: 85px;
	height: 85px;
	top: 40%;
	right: 50%;
	text-align: center;
	margin: auto;
	position: fixed;
}

.ppress-checkout__form .ppress-checkout__form__spinner:after {
	content: " ";
	display: block;
	width: 70px;
	height: 70px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #212529;
	border-color: #212529 transparent;
	animation: ppress-dual-ring 1.2s linear infinite;
}

.ppress-checkout__form .ppress-alert, .ppress-checkout__form .ppress-checkout-alert {
	width: 100%;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 10px 0;
}

.ppress-checkout__form .ppress-alert ul, .ppress-checkout__form .ppress-checkout-alert ul {
	margin: 0 0 0 16px;
	padding: 0;
	list-style-type: disc;
}

.ppress-checkout__form .ppress-alert li, .ppress-checkout__form .ppress-checkout-alert li {
	font-size: var(--ppress-body-fs);
	font-weight: 400;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 22px;
}

.ppress-checkout__form .ppress-alert li strong, .ppress-checkout__form .ppress-alert p, .ppress-checkout__form .ppress-checkout-alert li strong, .ppress-checkout__form .ppress-checkout-alert p {
	font-size: var(--ppress-body-fs);
	margin: 0 !important;
	padding: 0 !important;
	line-height: 22px;
}

.ppress-checkout__form .ppress-alert li strong, .ppress-checkout__form .ppress-checkout-alert li strong {
	font-weight: 700;
}

.ppress-checkout__form .ppress-alert.ppress-error, .ppress-checkout__form .ppress-checkout-alert.ppress-error {
	background-color: #fef2f2;
	color: #b91c1c;
}

.ppress-checkout__form .ppress-alert.ppress-success, .ppress-checkout__form .ppress-checkout-alert.ppress-success {
	background-color: #ecfdf5;
	color: #065f46;
}

.ppress-alert.ppress-warning, .ppress-checkout-alert.ppress-warning {
	border-left: 4px solid #facc15;
	border-radius: 0;
	background-color: #fefce8;
	color: #a16207;
}

.ppress-checkout__form .ppress-alert p, .ppress-checkout__form .ppress-checkout-alert p {
	font-weight: 500;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .pp-form-field-description, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .ppress-hint-tooltip, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-standard .ppress-hint-tooltip, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .pp-form-field-description, .ppress-checkout__form .ppress-checkout_order_summary #ppress-checkout-coupon-code-wrap {
	display: none;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector_label {
	display: flex !important;
	padding: 24px;
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	cursor: pointer;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__span_wrap {
	display: flex;
	align-items: center;
	padding-left: 10px;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__span {
	display: flex;
	font-size: 1rem;
	line-height: 20px;
	flex-direction: column;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__title {
	font-weight: 500;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__price_wrap {
	display: flex;
	margin-top: 0;
	font-size: 1rem;
	line-height: 20px;
	margin-left: auto;
	order: 2;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__price_amount {
	font-weight: 500;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector__price_duration {
	margin-left: 4px;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector_label:not(:first-child) {
	margin-top: 16px;
	margin-bottom: 0;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector_label input[type=radio] {
	height: auto !important;
}

.ppress-main-checkout-form__block__fieldset .ppress-main-checkout-form__block__group_selector_label:has(input[type=radio]:checked) {
	border-width: 2.5px;
}

.ppress-checkout__form.ppressui340 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui340 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui500 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui500 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui768 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui768 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui800 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui800 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui960 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui960 .ppress-checkout-section.ppress-checkout_side_section {
	width: 100%;
}

.ppress-checkout__form.ppressui340 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui500 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui768 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui800 .ppress-checkout-section.ppress-checkout_side_section, .ppress-checkout__form.ppressui960 .ppress-checkout-section.ppress-checkout_side_section {
	order: 1;
	margin-bottom: 15px;
}

.ppress-checkout__form.ppressui340 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui500 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui768 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui800 .ppress-checkout-section.ppress-checkout_main, .ppress-checkout__form.ppressui960 .ppress-checkout-section.ppress-checkout_main {
	order: 2;
	padding-right: 0;
}

.ppress-checkout__form.ppressui340 .ppress-main-checkout-form__block .ppress-main-checkout-form__block__item, .ppress-checkout__form.ppressui500 .ppress-main-checkout-form__block .ppress-main-checkout-form__block__item, .ppress-checkout__form.ppressui768 .ppress-main-checkout-form__block .ppress-main-checkout-form__block__item {
	width: 100%;
}

.profilepress-myaccount-orders-subs, .profilepress-myaccount-orders-subs * {
	font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.profilepress-myaccount-orders-subs .ppress-my-account-order-sub-wrap {
	box-shadow: transparent 0 0 0 0, transparent 0 0 0 0, rgba(0, 0, 0, .05) 0 1px 2px 0;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	margin-top: 16px;
}

.ppress-details-table p:first-child, .profilepress-myaccount-orders-subs .ppress-my-account-order-sub-wrap:first-child {
	margin-top: 0;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-body-content-header p {
	margin-bottom: 8px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header-wrap {
	padding: 16px;
	border-color: #e5e7eb;
	display: grid;
	column-gap: 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid #e5e7eb;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details {
	display: grid;
	column-gap: 16px;
	margin: 0;
	font-size: 14px;
	line-height: 20px;
	grid-template-columns: auto auto auto;
	grid-column: span 2/span 2;
}

.profilepress-myaccount-orders-subs .ppress-my-account-order-sub-header--actions a:not(a:first-child) {
	margin-left: 8px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details dt {
	margin: 0;
	font-weight: 500;
	font-size: 14px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details dd {
	margin: 4px 0 0;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--actions {
	justify-content: flex-end;
	display: flex;
	grid-column: span 2/span 2;
	align-items: center;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--actions a, .profilepress-myaccount-orders-subs a.ppress-myac-action {
	box-shadow: transparent 0 0 0 0, transparent 0 0 0 0, rgba(0, 0, 0, .05) 0 1px 2px 0;
	font-weight: 500;
	font-size: 14px;
	padding: 6px 8px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	justify-content: center;
	display: flex;
	align-items: center;
	text-decoration: inherit;
}

.profilepress-myaccount-orders-subs a.ppress-myac-action {
	display: inline-block;
	margin-right: 5px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-body-content {
	padding: 16px;
	align-items: flex-start;
	flex: 1 1 0%;
	font-size: 14px;
	line-height: 20px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-body-content-header {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-product-name {
	font-weight: 500;
	font-size: 14px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap p.ppress-my-account-order-sub-product-price {
	margin-top: 0 !important;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-body-content p {
	margin: 8px 0 0;
	display: block;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-body-wrap {
	display: flex;
	align-items: flex-start;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details dd span {
	border-radius: 6px;
	color: #1f2937;
	background-color: #f3f4f6;
	padding: 4px 8px;
	margin: 0;
	font-weight: 500;
	font-size: 12px;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .active span, .profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .completed span, .profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .trialling span {
	background-color: #dcfce7;
	color: #166534;
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .cancelled span, .profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .expired span, .profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--details .refunded span {
	background-color: #fee2e2;
	color: #991b1b;
}

.profilepress-myaccount-orders-subs .ppress-myac-pagination-wrap {
	padding: 10px 0;
	text-align: right;
}

.profilepress-myaccount-orders-subs .ppress-myac-pagination-wrap .page-numbers {
	border: 1px solid #d1d5db;
	padding: 8px 16px;
	font-size: 14px;
	line-height: 20px;
}

.profilepress-myaccount-orders-subs .ppress-myac-pagination-wrap .page-numbers.current {
	background-color: #eeeeec;
	color: #6b7280;
}

.profilepress-myaccount-orders-subs .ppress-myac-pagination-wrap .ppress-material-icons {
	vertical-align: middle;
	margin: 0;
}

table.ppress-details-table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
	box-shadow: transparent 0 0 0 0, transparent 0 0 0 0, rgba(0, 0, 0, .05) 0 1px 2px 0;
}

.ppress-details-table thead {
	background-color: #f9fafb;
}

.ppress-details-table thead tr th {
	padding: 14px 12px;
	text-align: left;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	background-color: #f9fafb;
}

.ppress-details-table thead th, .ppress-details-table tr td {
	padding: 16px;
	border: 1px solid #e5e7eb;
}

.ppress-details-table thead th {
	text-align: left;
	background: #e5e7eb;
	vertical-align: bottom;
}

.ppress-details-table-wrap .ppress-details-table tr:nth-of-type(odd) {
	background-color: #f9fafb;
}

.ppress-details-table tr td:first-child {
	font-weight: 700;
}

.ppress-details-table td:last-child {
	width: 70%;
}

.ppress-details-table p {
	margin: 5px 0 0;
}

.ppress-details-table .ppress-billing-title {
	font-weight: 500;
}

.ppress-details-table .ppress-sub-info {
	color: #4b5563;
	background-color: #e5e7eb;
	margin-left: 5px;
	border-radius: 9999px;
	padding: 4px 8px;
	font-size: 14px;
}

#profilepress-myaccount-wrapper .ppmyac-icons, .pp-form-field-wrap .pp-form-material-icons, .ppress-material-icons {
	font-family: "Material Icons" !important;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "liga";
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
	display: inline-block !important;
}

.pp-tab-widget-avatar img {
	display: block;
	border-radius: 50%;
	height: 190px;
	margin: 0 auto 10px !important;
	padding: 2px;
	text-align: center;
	width: 190px;
	float: none !important;
}

.pp-user-panel {
	border-radius: 6px;
	text-align: center;
}

.pp-user-panel-title {
	font-size: 20px;
	margin: 0;
}

.pp-user-panel p {
	font-size: 15px;
	margin-bottom: 23px;
}

.pp-tabbed-btn {
	border: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	border-radius: 4px;
	padding: 10px 15px;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
	transition: border .25s linear, color .25s linear, background-color .25s linear;
}

.pp-tabbed-btn-inverse {
	color: #fff !important;
	background-color: #34495e;
}

.pp-password-reset-handler-wrap .pp-reset-password-form {
	padding: 40px;
	max-width: 500px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.pp-password-reset-handler-wrap .pp-reset-password-form h3 {
	color: #444;
	font-weight: 300;
	margin: 0 auto 40px;
}

.pp-password-reset-handler-wrap .pp-reset-password-form label {
	color: #444;
	font-size: 15px;
}

.pp-password-reset-handler-wrap .pp-reset-password-form label .req {
	margin: 2px;
	color: red;
}

.pp-password-reset-handler-wrap .pp-reset-password-form label.active .req {
	opacity: 0;
}

.pp-password-reset-handler-wrap .pp-reset-password-form input {
	font-size: 22px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: auto;
	padding: 5px 10px;
	background: 0 0;
	margin-bottom: 40px;
	border: 1px solid #a0b3b0;
	border-radius: 0;
	-webkit-transition: border-color .25s ease, box-shadow .25s ease;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.pp-password-reset-handler-wrap .pp-reset-password-form input:focus {
	outline: 0;
	border-color: #1ab188;
}

.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button {
	border: 0;
	outline: 0;
	border-radius: 0;
	padding: 15px 0;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	background: #1ab188;
	color: #fff;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-appearance: none;
	text-shadow: none;
	box-shadow: none;
}

.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button:focus, .pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button:hover {
	background: #179b77;
}

.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button-block {
	display: block;
	width: 100%;
}

.pp-password-reset-handler-wrap .profilepress-reset-status {
	margin-left: 40px;
	max-width: 420px;
}

#pp-pass-strength-result {
	background-color: #eee;
	border: 1px solid #ddd;
	color: #23282d;
	padding: 3px 5px;
	text-align: center;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pp-pass-strength-result.short {
	background-color: #f1adad;
	border-color: #e35b5b;
	opacity: 1;
}

#pp-pass-strength-result.bad {
	background-color: #fbc5a9;
	border-color: #f78b53;
	opacity: 1;
}

#pp-pass-strength-result.good {
	background-color: #ffe399;
	border-color: #ffc733;
	opacity: 1;
}

#pp-pass-strength-result.strong {
	background-color: #c1e1b9;
	border-color: #83c373;
	opacity: 1;
}

.pp-form-wrapper .pp-form-label-wrap .pp-form-required-label {
	color: red;
	font-weight: 400;
}

.pp-form-wrapper input[type=checkbox], .pp-form-wrapper input[type=radio] {
	cursor: pointer;
}

.pp-form-wrapper p {
	margin: 0 0 5px !important;
	padding: 0 !important;
}

.pp-form-wrapper input[type=datetime], .pp-form-wrapper input[type=email], .pp-form-wrapper input[type=number], .pp-form-wrapper input[type=password], .pp-form-wrapper input[type=search], .pp-form-wrapper input[type=tel], .pp-form-wrapper input[type=text], .pp-form-wrapper input[type=url], .pp-form-wrapper select, .pp-form-wrapper textarea {
	-webkit-appearance: none;
	width: 100%;
	background: #fff;
	border: 1px solid #dedee5;
	padding: 13px 15px;
	outline: 0;
	line-height: 1;
}

.pp-form-wrapper select {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/frontend/arrow-down.png") !important;
	background-position: right 20px center !important;
	background-repeat: no-repeat !important;
	background-size: 10px auto !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.pp-form-wrapper select.nitro-lazy {
	background-image: none !important;
}

.pp-form-wrapper .pp-form-label-wrap {
	margin: 0 0 4px;
	padding: 0;
}

.pp-form-wrapper .pp-form-label {
	font-size: 14px;
	text-transform: none;
	text-align: left;
	font-weight: 400;
	font-style: normal;
	float: none;
	line-height: 1.3;
	margin: 0;
	padding: 0;
	width: auto;
	display: inline;
	cursor: pointer;
}

.pp-form-wrapper .pp-checkbox-wrap, .pp-form-wrapper .pp-radio-wrap {
	display: block;
	text-align: left;
	line-height: normal;
	margin: 5px 0;
	padding: 0;
}

.pp-form-wrapper .pp-checkbox-wrap label, .pp-form-wrapper .pp-radio-wrap label {
	margin-left: 5px;
}

.pp-form-wrapper input[type=checkbox], .pp-form-wrapper input[type=radio] {
	border: 1px solid #ccc;
	background-color: #fff;
	width: 14px !important;
	height: 14px !important;
	display: inline-block;
	vertical-align: baseline;
}

.pp-form-wrapper .ppress-pf-profile-connect {
	padding: 5px 0 10px;
}

.pp-form-wrapper a.ppress-pf-social-icon {
	width: 100%;
	height: 100%;
	display: inline;
}

.pp-form-wrapper .ppress-pf-social-icon svg {
	vertical-align: middle;
	width: 40px;
	height: 40px;
}

.pp-form-wrapper .ppress-pf-social-icon.dpf-github svg, .pp-form-wrapper .ppress-pf-social-icon.dpf-instagram svg, .pp-form-wrapper .ppress-pf-social-icon.dpf-pinterest svg {
	padding: 3px;
}

a.pp-button-social-login:focus {
	outline-color: transparent;
}

a.pp-button-social-login:focus .ppsc, a.pp-button-social-login:hover .ppsc {
	background-color: rgba(255, 255, 255, .75);
}

a.pp-button-social-login:visited {
	color: #fff;
}

a.pp-button-social-login, a.pp-button-social-login .ppsc {
	display: inline-block;
	font-size: 100%;
	height: 2.5em;
	padding: 0;
}

a.pp-button-social-login {
	position: relative;
	vertical-align: middle;
	line-height: 2.5em;
	font-family: inherit;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	border: 1px solid #333;
	color: #fff !important;
	background: #333;
	margin: 6px 0;
	border-radius: 2px;
	box-sizing: content-box;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	text-decoration: none !important;
	min-width: 220px;
}

a.pp-button-social-login .ppsc {
	font-style: normal;
	font-weight: 400;
	text-decoration: none;
	text-transform: none;
	vertical-align: top;
	text-align: center;
	width: 2.5em;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 1.8em 1.8em;
	border-top-left-radius: 1px;
	border-bottom-left-radius: 1px;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	position: absolute;
	left: 0;
	margin: 0;
}

a.pp-button-social-login span.ppsc-text {
	margin-left: 40px;
	padding: .5em;
	color: #fff !important;
}

a.pp-button-social-login .ppsc-google {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/google.svg");
}

a.pp-button-social-login .ppsc-google.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login.pp-button-social-login-google {
	background: #4285f4;
	border-color: #4285f4;
}

a.pp-button-social-login.pp-button-social-login-facebook {
	background: #3b5998;
	border-color: #3b5998;
}

a.pp-button-social-login.pp-button-social-login-twitter {
	background: #000;
	border-color: #000;
}

a.pp-button-social-login.pp-button-social-login-linkedin {
	background: #0077b5;
	border-color: #0077b5;
}

a.pp-button-social-login.pp-button-social-login-microsoft {
	background: #404040;
	border-color: #404040;
}

a.pp-button-social-login.pp-button-social-login-amazon {
	background: #f9991d;
	border-color: #f9991d;
}

a.pp-button-social-login.pp-button-social-login-vk {
	background: #4a76a8;
	border-color: #4a76a8;
}

a.pp-button-social-login.pp-button-social-login-wordpresscom {
	background: #0675c4;
	border-color: #0675c4;
}

a.pp-button-social-login.pp-button-social-login-yahoo {
	background: #430297;
	border-color: #430297;
}

a.pp-button-social-login.pp-button-social-login-github {
	background: #24292e;
	border-color: #24292e;
}

a.pp-button-social-login .ppsc-vk {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/vk-fa.svg");
}

a.pp-button-social-login .ppsc-vk.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-microsoft {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/microsoft.svg");
}

a.pp-button-social-login .ppsc-microsoft.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-amazon {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/amazon.svg");
}

a.pp-button-social-login .ppsc-amazon.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-yahoo {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/yahoo.svg");
}

a.pp-button-social-login .ppsc-yahoo.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-wordpresscom {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/wpcom.svg");
}

a.pp-button-social-login .ppsc-wordpresscom.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-facebook {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/facebook.svg");
}

a.pp-button-social-login .ppsc-facebook.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-twitter {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/x.svg");
}

a.pp-button-social-login .ppsc-twitter.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-linkedin {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/linkedin.svg");
}

a.pp-button-social-login .ppsc-linkedin.nitro-lazy {
	background-image: none !important;
}

a.pp-button-social-login .ppsc-github {
	background-image: url("https://www.agencycreative.com/nitropack_static/YyGiRaOALPBqxiIyLdicalJciKUKiXAv/assets/images/optimized/rev-36a2a54/www.agencycreative.com/wp-content/plugins/wp-user-avatar/assets/images/social-login/github-fa.svg");
}

a.pp-button-social-login .ppsc-github.nitro-lazy {
	background-image: none !important;
}

#profilepress-myaccount-wrapper, #profilepress-myaccount-wrapper *, #profilepress-myaccount-wrapper ::after, #profilepress-myaccount-wrapper ::before, .pp-form-container *, .pp-form-container .pp-form-wrapper, .pp-form-container .pp-form-wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap span.select2-selection.select2-selection--multiple, html .pp-form-container .select2 input.select2-search__field {
	border: 0 !important;
}

.pp-form-container form input[type=submit] {
	-webkit-appearance: none !important;
	cursor: pointer;
	text-shadow: none;
}

.pp-form-container form {
	margin: 0;
	padding: 0;
	background-color: transparent;
}

.woocommerce .woocommerce-MyAccount-content .pp-form-container {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.pp-form-container form input, .pp-form-container form select, .pp-form-container form textarea {
	outline: 0;
	background-image: none;
	height: auto;
	float: none;
	position: static;
	box-shadow: none;
	text-shadow: none;
	text-transform: none;
	text-decoration: none;
	resize: vertical;
}

.pp-form-container form input.nitro-lazy, .pp-form-container form select.nitro-lazy, .pp-form-container form textarea.nitro-lazy {
	background-image: none !important;
}

.pp-form-container form p {
	margin: 0 0 .5em;
}

.pp-form-container form input[type=submit]:focus {
	outline: 0;
}

.pp-form-container .pp-user-avatar {
	border-radius: 50% !important;
	display: block !important;
	margin: 0 auto 10px !important;
	text-align: center !important;
}

.pp-form-container img.pp-user-cover-image {
	width: 100% !important;
	height: auto !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox], #profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
	border: 1px solid #7e8993 !important;
	border-radius: 4px !important;
	background: #fff !important;
	color: #555 !important;
	clear: none !important;
	cursor: pointer !important;
	display: inline-block !important;
	line-height: 0 !important;
	margin: 0 !important;
	outline: 0 !important;
	padding: 0 !important;
	text-align: center !important;
	vertical-align: middle !important;
	-webkit-appearance: none !important;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1) !important;
	transition: .05s border-color ease-in-out !important;
	width: 16px !important;
	height: 16px !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
	border-radius: 50% !important;
}

.pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
	border-radius: 4px !important;
}

.pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
	border-radius: 50% !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox]:checked::before {
	content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E") !important;
	margin: -3px 0 0 -4px !important;
	width: 20px !important;
	height: 20px !important;
	position: static;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio]:checked::before {
	content: "";
	border-radius: 50% !important;
	margin: 3px !important;
	background-color: #000 !important;
	line-height: 1.14285714 !important;
	width: 8px !important;
	height: 8px !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox]:checked::before, #profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio]:checked::before {
	float: left !important;
	display: inline-block !important;
	vertical-align: middle !important;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch, .pp-form-container .pp-form-wrapper.ppBuildScratch * {
	font-family: "Merriweather", sans-serif;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .ppbs-headline {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 1em;
	margin-top: 0;
	text-align: center;
	margin-right: 6.387%;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch h1, .pp-form-container .pp-form-wrapper.ppBuildScratch h2, .pp-form-container .pp-form-wrapper.ppBuildScratch h3, .pp-form-container .pp-form-wrapper.ppBuildScratch h4 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 1em;
	margin-top: 1em;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch input:disabled {
	opacity: .5;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch {
	max-width: 100%;
	width: 100%;
	padding: 6% 0 6% 6%;
	background: #fff;
	color: #222;
	font-size: 14px;
	position: relative;
	box-shadow: 0 0 0 .5px rgba(0, 20, 40, .1), 0 2px 8px 0 rgba(50, 55, 90, .2);
	border-radius: 3px;
	margin: 0 auto;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppf-remove-frame {
	box-shadow: none;
	border-radius: 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap {
	padding: 0 6.387% 4% 0;
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	padding: 0 6.387% 0 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .pp-form-label-wrap {
	margin: 0 0 5px;
	padding: 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .pp-form-field-input-textarea-wrap .pp-form-field:focus~.pp-form-field-description {
	display: block;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .ppress-hint-tooltip {
	display: inline;
	font-weight: 400;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .ppress-hint-tooltip .pp-form-material-icons {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 110%;
	display: inline;
	vertical-align: top;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside {
	position: relative;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside .pp-form-label-wrap {
	position: absolute;
	top: 5px;
	left: 15px;
	z-index: 2;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap.fld-inside .pp-form-label-wrap {
	left: 0 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
	padding-top: 18px;
	padding-bottom: 2px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
	padding-top: 23px;
	padding-bottom: 7px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
	padding-top: 30px;
	padding-bottom: 10px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fw-half {
	width: 50%;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fw-third {
	width: 33.3333333333%;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea {
	border: 1px solid #dbdbdb;
	font-size: 14px;
	padding: 10px 15px;
	-webkit-transition: all .35s;
	transition: all .35s;
	background: #fff;
	color: #69717a;
	width: 100%;
	border-radius: 0;
	line-height: 1.3;
	min-height: 40px;
	display: inline-block;
	margin: 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea {
	height: 100px;
	overflow: auto;
}

.pp-form-field-wrap .pp-form-material-icons {
	width: 24px;
	height: 24px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: text;
	margin: 8px 12px 0 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-right .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-right .pp-form-field-wrap.field-has-icon textarea {
	padding-right: 40px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap.field-has-icon textarea {
	padding-left: 40px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap.field-has-icon textarea {
	padding-left: 30px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap.field-has-icon textarea {
	padding-right: 30px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap .pp-form-material-icons {
	left: 0;
	margin-left: 12px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap .pp-form-material-icons {
	left: 0 !important;
	margin-left: 0 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap .pp-form-material-icons {
	margin-right: 0 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap .pp-form-material-icons {
	margin-top: 10px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap .pp-form-material-icons {
	margin-top: 18px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .has-password-visibility-icon .pp-form-material-icons {
	cursor: pointer;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap textarea {
	border-radius: 25px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap textarea {
	border-radius: 6px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap .select2.select2-container, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap textarea {
	border: 0 !important;
	border-bottom: 1px solid #dbdbdb !important;
	padding-left: 0 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap input[type=text]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap select:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap textarea:focus {
	border-top: 0 !important;
	border-right: 0 !important;
	border-left: 0 !important;
	box-shadow: none !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap .select2-selection, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap textarea {
	border: 0 !important;
	background: #f7f7f7 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap select {
	padding-top: 15px;
	padding-bottom: 15px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap textarea {
	height: 150px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap select {
	padding-top: 20px;
	padding-bottom: 20px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap textarea {
	height: 200px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap input[type=text]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap select:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea:focus {
	border: 1px solid #999;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .pp-form-label-wrap .pp-form-label, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .ppform-remember-label {
	font-style: normal;
	background-color: transparent;
	display: block;
	font-weight: 700;
	font-size: 14px;
	float: none;
	line-height: 1.3;
	margin: 0;
	padding: 0;
	color: #444;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .ppform-remember-label {
	display: inline-block;
}

.pp-field-user-avatar-picture-wrap .pp-profile-avatar-overlay ins, .pp-field-user-cover-image-wrap .pp-cover-image-overlay ins, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppf-hide-asterisk .pp-form-required-label {
	display: none;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit] {
	background: #000;
	border: 0;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	padding: 15px 10px;
	transition: .15s ease-in-out;
	width: auto;
	min-width: 110px;
	text-align: center;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-submit-button-wrap input[type=submit], .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-submit-button-wrap input[type=submit] {
	padding-top: 20px;
	padding-bottom: 20px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbl-pill .pp-form-submit-button-wrap input[type=submit] {
	border-radius: 25px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbl-round .pp-form-submit-button-wrap input[type=submit] {
	border-radius: 6px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit]:hover {
	background-color: #ededed;
	color: #000;
	text-decoration: none;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkbox-wrap, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-radio-wrap {
	margin: 0 0 5px;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkboxes-container, .ppressmd-new-dropdown ul {
	margin: 0;
	padding: 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkbox-wrap:last-of-type, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-radio-wrap:last-of-type {
	margin-bottom: 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-description {
	font-size: 12px;
	font-weight: 400;
	color: #666;
	line-height: 1.3;
	text-align: left;
	margin: 4px 0 0;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-wide .pp-form-submit-button-wrap input[type=submit] {
	width: 100%;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width .pp-form-submit-button-wrap {
	margin-top: 4%;
	margin-bottom: 4%;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width .pp-form-submit-button-wrap input[type=submit] {
	width: 100% !important;
	position: absolute !important;
	bottom: 0 !important;
	right: 0 !important;
	left: 0 !important;
	display: block;
	border-top-right-radius: 0 !important;
	border-top-left-radius: 0 !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width.ppsbl-pill {
	border-bottom-right-radius: 25px !important;
	border-bottom-left-radius: 25px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width.ppsbl-round {
	border-bottom-right-radius: 6px !important;
	border-bottom-left-radius: 6px !important;
}

.pp-form-container .pp-form-wrapper.ppBuildScratch a.pp-button-social-login:last-of-type {
	margin-bottom: 1.5em !important;
}

#profilepress-myaccount-wrapper {
	font-size: 16px;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
}

#profilepress-myaccount-wrapper .ppmyac-dashboard-item {
	text-decoration: none !important;
	position: relative;
	display: block;
	padding: .75em 1.25em;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .125);
	width: 100%;
	text-align: inherit;
	box-shadow: none;
}

#profilepress-myaccount-wrapper .ppmyac-dashboard-item.isactive {
	z-index: 2;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

#profilepress-myaccount-wrapper .ppmyac-dashboard-item:first-child {
	border-top-left-radius: .25em;
	border-top-right-radius: .25em;
}

#profilepress-myaccount-wrapper .ppmyac-dashboard-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: .25em;
	border-bottom-left-radius: .25em;
}

#profilepress-myaccount-wrapper .ppmyac-icons {
	margin-right: .5em;
	vertical-align: text-bottom;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width:576px) {
	#profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content {
	position: relative;
	width: 100%;
	padding-top: 30px;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width:576px) {
	#profilepress-myaccount-wrapper .profilepress-myaccount-content {
		flex: 0 0 75%;
		max-width: 75%;
	}
}

#profilepress-myaccount-wrapper .profilepress-myaccount-avatar-wrap {
	text-align: center;
	margin-bottom: 20px;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-avatar-wrap .profilepress-myaccount-avatar img.pp-user-avatar {
	margin: 0 !important;
	position: static !important;
	float: none !important;
	display: inline-block;
	-moz-border-radius: 999px;
	-webkit-border-radius: 999px;
	border-radius: 999px;
	width: 120px;
	height: 120px;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-nav a:focus {
	outline: 0;
	text-shadow: none;
	box-shadow: none;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content h2, #profilepress-myaccount-wrapper .profilepress-myaccount-content h3 {
	margin-top: 0 !important;
	margin-bottom: 1em !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	font-size: 2em !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content h3 {
	font-weight: 500 !important;
	font-size: 1.2em !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenus-wrap {
	margin-bottom: 2em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-wrap {
	display: inline;
	padding-right: 1em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-item {
	color: inherit;
	padding: 0 0 10px;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-item.ppsubmenu-active {
	border-bottom: 3px solid #6c757d;
}

.profilepress-myaccount-alert, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status {
	position: relative;
	padding: .75em 1.25em !important;
	margin-bottom: 1em !important;
	border: 1px solid transparent !important;
	border-radius: .25em;
}

.profilepress-myaccount-alert.pp-alert-danger, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.profilepress-myaccount-alert.pp-alert-success, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status.success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field {
	margin-top: .5em;
	margin-bottom: 1em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-cover-image-empty {
	min-height: 250px;
	background-color: #eee;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap {
	padding: .75em;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .125);
	margin-bottom: 0;
	border-radius: .25em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap img {
	width: 100%;
	height: auto;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-email-notifications-wrap .profilepress-myaccount-form-field {
	margin-top: .5em;
	margin-bottom: .5em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-email-notifications-wrap {
	margin-bottom: 2em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field label {
	margin-bottom: .2em;
	font-weight: 500;
	display: block;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field input[type=checkbox]+label, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field input[type=radio]+label {
	display: inline;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-control:not([type=radio]):not([type=checkbox]), #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]), #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap select, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap textarea {
	display: block;
	width: 100%;
	height: calc(1.5em + .75em + 2px);
	padding: .375em .75em;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25em;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	overflow: visible;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap textarea {
	height: auto !important;
	min-height: 100px !important;
	resize: vertical !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input.profilepress-myaccount-form-control:focus, #profilepress-myaccount-wrapper .profilepress-myaccount-content select.profilepress-myaccount-form-control:focus, #profilepress-myaccount-wrapper .profilepress-myaccount-content textarea.profilepress-myaccount-form-control:focus {
	background-color: #fff;
	border-color: #bbb;
	outline: 0;
	box-shadow: none;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit] {
	display: inline-block;
	cursor: pointer;
	width: auto;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit]:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	text-decoration: none;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file {
	position: relative;
	display: inline-block;
	width: 100%;
	height: calc(1.5em + .75em + 2px);
	margin-bottom: 0;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-input {
	position: relative;
	z-index: 2;
	width: 100%;
	height: calc(1.5em + .75em + 2px);
	margin: 0;
	opacity: 0;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: calc(1.5em + .75em + 2px);
	padding: .375em .75em;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label::after {
	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
	bottom: 0;
	z-index: 3;
	display: block;
	height: calc(1.5em + .75em);
	padding: .375em .75em;
	line-height: 1.5;
	color: #495057;
	content: "Browse";
	background-color: #e9ecef;
	border-left: inherit;
	border-radius: 0 .25em .25em 0;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-input~.ppmyac-custom-file-label[data-browse]::after {
	content: attr(data-browse);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field .pp-checkbox-wrap label.pp-form-label, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field .pp-radio-wrap label.pp-form-label {
	display: inline-block;
	margin: 0 0 0 .3819820591em;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-avatar-wrap {
	display: flex;
	flex-direction: column;
	margin: 1em 0 0;
	padding-left: 0;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-avatar {
	position: relative;
	padding: .75em 1.25em;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .125);
	margin-bottom: 0;
	border-radius: .25em;
	justify-content: space-between !important;
	display: flex !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .pp-user-avatar {
	width: 70px;
	height: 70px;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .ppmyac-remove-avatar {
	margin-bottom: .5em !important;
	margin-top: .5em !important;
	padding: .25em .5em;
	font-size: .875em;
	line-height: 1.5;
	border-radius: .2em;
	color: #fff;
	height: 35px;
	background-color: #6c757d;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	text-shadow: none;
	cursor: pointer;
	user-select: none;
	border: 1px solid #6c757d;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap .ppmyac-remove-avatar {
	margin-top: .75em !important;
	margin-bottom: 0 !important;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input.profilepress-myaccount-form-control::-webkit-file-upload-button {
	background: #fff;
	border-radius: 6px;
	font-size: 14px;
	border: 1px solid #ddd;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .select2-selection {
	border-radius: .25em;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
}

.ppress-2fa-setup-wrap .ppmyac-2fa-recovery-codes-wrap {
	width: 250px;
	text-align: center;
}

.pp-form-container .pp-field-user-avatar-picture-wrap {
	width: 250px;
	height: auto;
	margin: auto;
	position: relative;
}

.pp-form-container .pp-field-user-cover-image-wrap {
	margin: auto;
	position: relative;
}

.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay-wrap, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	text-align: center;
	box-sizing: border-box;
	padding: 0;
	color: #fff;
	text-shadow: 0 1px #666;
	line-height: 21px;
	font-size: 16px;
	height: 100%;
	width: 100%;
	border-radius: 50%;
}

.pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap {
	border-radius: 0;
}

.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay {
	display: table;
	height: 100%;
	width: 100%;
}

.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay ins, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay ins {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	text-decoration: none !important;
	background: 0 0 !important;
	color: #fff !important;
	border-bottom: none !important;
}

.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay-wrap .pp-profile-avatar-overlay .pp-form-material-icons, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap .pp-cover-image-overlay .pp-form-material-icons {
	font-size: 35px !important;
	display: block !important;
	position: static !important;
	right: auto !important;
	top: auto !important;
	color: #fff !important;
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	cursor: pointer;
}

html .select2.select2-container .select2-selection.select2-selection--multiple input.select2-search__field {
	border: 0 !important;
	height: auto !important;
}

.select2.select2-container .select2-selection.select2-selection--multiple input.select2-search__field {
	border: 0 !important;
	box-shadow: none !important;
}

.select2.select2-container .select2-selection.select2-selection--multiple li.select2-selection__choice {
	height: auto;
	line-height: normal;
}

.pp-form-wrapper.pp-member-directory {
	opacity: 0;
}

.pp-form-wrapper.ppress-default-profile {
	max-width: 1000px;
	width: 100%;
	box-sizing: border-box;
	font-size: 15px;
	color: #666;
	margin-bottom: 30px;
	opacity: 0;
}

.pp-form-wrapper.ppress-default-profile * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.pp-form-wrapper.ppress-default-profile a, .pp-form-wrapper.ppress-default-profile a:hover {
	text-decoration: none !important;
}

.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover {
	background-color: #eee;
	box-sizing: border-box;
	position: relative;
}

.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover-e {
	text-align: center;
	overflow: hidden;
}

.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover-e img {
	width: 100%;
	display: block;
	overflow: hidden;
	border-radius: 0;
	margin: 0;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-header {
	position: relative;
	padding: 0 0 25px;
	border-bottom: solid 2px #eee;
	min-height: 85px;
	box-sizing: content-box;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon {
	position: absolute;
	top: 15px;
	right: 0;
	vertical-align: middle;
	font-size: 30px;
	height: 30px;
	line-height: 30px;
	z-index: 66;
	margin-right: 10px;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon .ppress-dpf-edit-a .ppress-material-icons {
	font-size: 30px;
}

.pp-form-wrapper.ppress-default-profile a.ppress-dpf-edit-a {
	color: #aaa;
	text-decoration: none;
	border-bottom: 0;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon a:hover, .pp-form-wrapper.ppress-default-profile a.ppress-dpf-edit-a.active {
	color: #007bff;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-photo {
	float: left;
	position: absolute;
	margin: 0 0 0 30px;
	box-sizing: border-box;
	width: 200px;
	height: 200px;
}

.pp-form-wrapper.ppress-default-profile.ppdf-nocover .ppress-dpf-profile-photo {
	position: relative;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-photo img {
	width: 100%;
	height: auto;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	display: block;
	overflow: hidden;
	margin: 0;
	box-shadow: none;
	background: #fff;
	border: 5px solid #fff;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-meta {
	padding-right: 30px;
	-ms-word-break: break-all;
	word-break: break-word;
	word-wrap: break-word;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-main-meta {
	padding: 10px 0 0;
	color: #999;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-name {
	font-size: 24px;
	font-weight: 700;
	margin-right: 30px;
	color: #555;
	line-height: 1.7em;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-clear {
	clear: both;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta span {
	margin: 0 5px;
	font-size: 14px;
	display: inline-block;
	line-height: .1;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta span:first-child {
	margin: 0 5px 0 0;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta-text {
	margin: 5px 0 0;
	line-height: 1.4em;
	font-size: 13px;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav {
	padding: 10px;
	background: #444;
	text-align: center;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 10px 6px 28px;
	display: block;
	float: left;
	border-radius: 4px;
	margin-left: 5px;
	position: relative;
	border-bottom: 0;
	text-decoration: none !important;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item a:hover {
	background: #555;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item .ppress-material-icons {
	font-size: 18px;
	height: 18px;
	line-height: 1.5;
	position: absolute;
	display: block;
	left: 10px;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item span.ppress-dpf-nav-title {
	padding-left: 5px;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item.ppress-dpf-active a {
	background: #007bff;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body {
	max-width: 600px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin: auto;
}

.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item, .pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note {
	text-align: center;
	padding-top: 20px;
	color: #666;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note .ppress-material-icons {
	display: inline-block;
	font-size: 70px;
	height: 70px;
	line-height: 70px;
}

.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item span, .pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note span {
	margin-top: 10px;
	display: block;
	font-size: 16px;
	color: #888;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note a {
	border: 0 !important;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body-items {
	margin: 0 0 30px;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body-item {
	position: relative;
	padding: 15px 0 0;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-item-label {
	display: block;
	margin: 0 0 8px;
	border-bottom: solid 2px #eee;
	padding-bottom: 4px;
	font-size: 15px;
	line-height: 22px;
	font-weight: 700;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-field-label-icon {
	float: left;
	margin: 0 8px 0 0;
	height: 22px;
	line-height: 18px;
	display: inline-block;
	width: 24px;
	text-align: center;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-field-label-icon i {
	font-size: 22px;
	position: relative;
	top: 1px;
}

.pp-form-wrapper.ppress-default-profile .ppdf-nocover .ppress-dpf-profile-photo {
	float: none;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.pp-form-wrapper.ppress-default-profile .ppdf-nocover .ppress-dpf-profile-meta {
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav {
	padding: 0 !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item a, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item a {
	margin-left: 0 !important;
	border-radius: 0 !important;
}

.ppress-dpf-profile-nav-item.ppressui340 .ppress-dpf-profile-body {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
	position: static !important;
	top: auto !important;
	left: auto !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-profile-meta {
	text-align: center !important;
	padding: 0 !important;
	margin-top: -30px !important;
}

.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
	padding-top: 0 !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-name {
	float: none !important;
	margin-right: 0 !important;
	font-size: 18px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-meta-text {
	padding: 0 20px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-photo {
	position: relative !important;
	width: 100px !important;
	height: 100px !important;
	margin: 0 auto !important;
	float: none !important;
	left: auto !important;
	text-align: center !important;
	top: -40px !important;
}

.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
	width: 120px !important;
	height: 120px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-nav-title {
	font-size: 12px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item .ppress-material-icons, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item i {
	display: block !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	height: 20px !important;
	line-height: 20px !important;
}

.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
	margin-top: 0 !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav {
	padding: 0 !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item i {
	font-size: 22px !important;
	height: 22px !important;
	line-height: 22px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-profile-body {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.ppress-default-profile.ppressui500.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
	position: static !important;
	top: auto !important;
	left: auto !important;
	width: 120px !important;
	height: 120px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-profile-photo {
	position: relative !important;
	width: 100px !important;
	height: 100px !important;
	margin: 0 auto !important;
	float: none !important;
	display: block !important;
	top: -40px !important;
	left: 0 !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-profile-meta {
	text-align: center !important;
	padding: 0 !important;
	margin-top: -30px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-name {
	float: none !important;
	margin-right: 0 !important;
	font-size: 21px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-meta-text {
	padding-top: 10px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-meta {
	padding: 0 20px !important;
	display: block !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-nav-title {
	font-size: 12px !important;
}

.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item .ppress-material-icons {
	display: block !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	height: 20px !important;
	line-height: 20px !important;
}

.ppress-default-profile.ppressui500.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
	margin-top: 0 !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav {
	padding: 0 !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav-item a {
	padding: 10px 20px !important;
	margin-left: 0 !important;
	border-radius: 0 !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-profile-photo {
	width: 140px !important;
	height: 140px !important;
	top: -70px !important;
}

.ppress-default-profile.ppressui800.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
	top: auto !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-header .ppress-dpf-meta-text {
	padding-top: 10px !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-nav-title {
	font-size: 12px !important;
}

.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav-item .ppress-material-icons {
	display: block !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	font-size: 20px !important;
	height: 20px !important;
	line-height: 20px !important;
}

.ppress-default-profile.ppressui960 .ppress-dpf-profile-photo {
	width: 140px !important;
	height: 140px !important;
	top: -70px !important;
}

.ppress-default-profile.ppressui960.ppdf-nocover .ppress-dpf-profile-meta {
	margin-top: -50px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item a, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item a {
	padding: 5px 11px !important;
	font-size: 12px !important;
}

.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item .ppress-material-icons, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item .ppress-material-icons {
	font-size: 14px !important;
}

.ppress-default-profile.ppressui340 span.ppress-dpf-nav-title, .ppress-default-profile.ppressui500 span.ppress-dpf-nav-title {
	font-size: 10px !important;
}

.pp-form-wrapper.ppress-default-profile ul.pp-user-post-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pp-form-wrapper.ppress-default-profile li.pp-user-post-item {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.pp-form-wrapper.ppress-default-profile .pp-user-post-item a, .pp-form-wrapper.ppress-default-profile .pp-user-post-item h3 {
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	text-decoration: none;
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-more-post-wrap {
	text-align: center;
	padding-top: 30px;
}

.pp-form-wrapper.ppress-default-profile a.ppress-dpf-more-post-btn {
	font-size: 15px;
	border: 0;
	display: block;
	width: 100%;
	line-height: 1em;
	padding: 15px;
	text-decoration: none;
	text-align: center;
	text-transform: none;
	font-weight: 400;
	transition: .25s;
	border-radius: 4px;
	-webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
	box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
	max-width: 250px;
	margin: 0 auto;
	color: #fff;
	background: #007bff;
}

.pp-form-wrapper.ppress-default-profile .pp-user-comment-item {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.pp-form-wrapper.ppress-default-profile .pp-user-comment-item-link a {
	color: inherit;
}

.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item+.ppress-dpf-more-post-wrap {
	display: none;
}

.pp-member-directory .ppressmd-member-directory-header.ppressmd-form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: nowrap;
	width: 100%;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row:not(.ppressmd-member-directory-filters-bar) {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	flex-wrap: nowrap;
	margin: 0 0 10px;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-member-directory-search-row {
	justify-content: flex-end;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	width: 60%;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label {
	flex: 1;
	margin: 0 10px 0 0;
	min-width: 90px;
	max-width: 85%;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line {
	-webkit-appearance: textfield;
	width: 100%;
	padding: 0 12px !important;
	display: block !important;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	outline: 0 !important;
	cursor: text !important;
	font-size: 15px !important;
	height: 40px !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	margin: 0 !important;
	position: static;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line .ppressmd-do-search {
	min-width: 15%;
	width: auto;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	flex-wrap: nowrap;
	flex: 5;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting .ppressmd-member-directory-sorting-a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	flex-wrap: nowrap;
	position: relative;
	cursor: pointer;
}

.pp-member-directory .ppressmd-member-directory-header a {
	text-decoration: none;
	border-bottom: none;
	box-shadow: none;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppress-material-icons {
	display: inline;
	vertical-align: middle;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: baseline;
	flex-wrap: nowrap;
	flex: 2;
	text-align: right;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	flex-wrap: nowrap;
	cursor: pointer;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a a {
	margin: 0 5px 0 0;
}

.ppressmd-member-directory-header:not(.ppmd-filters-expand) .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a .ppress-up {
	display: none;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search.ppressmd-search-invisible, .ppressmd-member-directory-header.ppmd-filters-expand .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a .ppress-down {
	display: none;
}

.ppressmd-new-dropdown {
	font-size: 16px;
	margin: 0;
	position: absolute;
	height: auto;
	background: #fff;
	z-index: 10;
	display: none;
	border: 1px solid #ddd;
	box-shadow: 0 7px 14px 0 rgba(50, 50, 93, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
	-webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}

.ppressmd-new-dropdown ul li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting .ppressmd-member-directory-sorting-a .ppressmd-new-dropdown {
	top: 24px;
	width: 200px;
	left: -12px;
}

.ppressmd-new-dropdown ul li a {
	display: block;
	padding: 8px 12px;
	line-height: 1;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-member-directory-filters-bar {
	padding: 0 0 10px;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-header-row-invisible {
	margin: 0;
}

.ppressmd-member-directory-header.ppmd-filters-expand .ppressmd-member-directory-header-row .ppressmd-search.ppressmd-search-invisible {
	display: grid;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search {
	margin: 0;
	width: 100%;
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	grid-auto-rows: minmax(max-content, auto);
	-ms-grid-template-rows: auto 1fr;
	-ms-grid-template-columns: repeat(3, 1fr);
	-ms-grid-gap: 10px;
	-ms-grid-auto-rows: minmax(max-content, auto);
	align-items: center;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	flex-wrap: nowrap;
	width: 100%;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input {
	width: 100%;
	padding: 10px 30px;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input:not(.select2-search__field), .pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection {
	background-color: transparent;
	border: 1px solid #ddd !important;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppress-material-icons, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input, .pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection__rendered {
	color: #666;
	background-color: transparent;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row input[type=search]:focus {
	border: 1px solid #bbb !important;
}

.pp-member-directory .ppressmd-member-directory-header .ppressmd-button {
	border: 0 !important;
	display: block;
	width: 100%;
	line-height: 1em !important;
	padding: 16px 20px !important;
	text-decoration: none !important;
	text-align: center;
	text-transform: none !important;
	font-weight: 400 !important;
	overflow: hidden;
	position: relative;
	transition: .25s;
	box-sizing: border-box;
	-moz-border-radius: 4px !important;
	-webkit-border-radius: 4px !important;
	border-radius: 4px !important;
	box-shadow: none;
	vertical-align: middle !important;
	height: auto !important;
	cursor: pointer !important;
	text-shadow: none;
	font-family: inherit;
	outline: 0 !important;
	margin: 0;
	-webkit-appearance: none;
}

.pp-member-directory .ppressmd-members-total-wrap {
	text-align: center;
	margin: 0 0 10px;
}

.pp-member-directory .ppressmd-members-total {
	font-size: 20px;
	font-weight: 300;
}

.pp-member-directory .ppressmd-member-directory-header .select2.select2-container {
	width: 100% !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-search.select2-search--inline .select2-search__field {
	width: auto !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection {
	display: block !important;
	height: 40px;
	padding: 0 0 0 12px !important;
	overflow: hidden !important;
	position: relative !important;
	white-space: nowrap !important;
	line-height: 35px !important;
	font-size: 15px !important;
	text-align: left !important;
	text-decoration: none !important;
	-moz-border-radius: 2px !important;
	-webkit-border-radius: 2px !important;
	border-radius: 2px !important;
	background-clip: padding-box !important;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: 0 0 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection .select2-selection__arrow {
	display: inline-block !important;
	width: 34px !important;
	height: 100% !important;
	position: absolute !important;
	right: 0 !important;
	top: 0 !important;
	-moz-border-radius: 0 2px 2px 0 !important;
	-webkit-border-radius: 0 2px 2px 0 !important;
	border-radius: 0 2px 2px 0 !important;
	background-clip: padding-box !important;
	text-align: center !important;
	background: 0 0 !important;
	border-left: 0 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container.select2-container--open .select2-dropdown {
	border: 1px solid #ddd;
	border-top: 0;
	border-radius: 0;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container.select2-container--open .select2-dropdown .select2-results li {
	list-style: none;
	display: list-item;
	background-image: none;
	font-size: 15px;
	margin: 5px !important;
	color: #666 !important;
	padding: 3px 7px 4px !important;
	cursor: pointer;
	min-height: 1em !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container.select2-container--open .select2-dropdown .select2-results li.nitro-lazy {
	background-image: none !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection.select2-selection--multiple {
	height: auto !important;
	line-height: .8 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 0 !important;
	line-height: 37px;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	line-height: 37px;
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding-left: 0 !important;
	padding-right: 30px;
	width: 100%;
	font-size: 13px;
}

.pp-member-directory .ppressmd-member-directory-header .select2-results li.select2-results__option.select2-results__option--highlighted {
	background: 0 0 !important;
	background: #f4f4f4 !important;
	color: #666 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
	right: 10px;
	margin: 0 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear {
	right: 10px;
	font-size: 30px;
	margin: 0 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear, .pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__arrow b, .pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
	color: #888 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear {
	position: absolute;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__choice {
	padding: 3px 3px 3px 5px;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container .select2-search.select2-search--inline>input {
	border: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
	overflow-x: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	box-sizing: border-box;
}

.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
	font-size: 20px !important;
}

.pp-member-directory .ppmd-pagination-wrap {
	font-size: 16px;
	width: 100%;
	margin: 0 auto 10px;
	padding: 0;
	text-align: center;
}

.pp-member-directory .ppmd-pagination-wrap .page-numbers {
	display: inline-block;
	width: auto;
	height: 34px;
	line-height: 34px;
	transition: all .2s linear;
	padding: 0 14px;
	color: #666;
	font-weight: 400;
}

.pp-member-directory .ppmd-pagination-wrap .page-numbers.current {
	background: #007bff;
	color: #fff;
}

.pp-member-directory .ppmd-pagination-wrap .page-numbers .ppress-material-icons {
	vertical-align: middle;
}

.ppress-paywall-message-wrap {
	position: relative;
	width: 100%;
	margin: -5em auto 2em;
	padding: 6em 0 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5) .5em, #fff 5.5em, #fff 100%);
}

.ppress-paywall-message {
	box-shadow: 0 0 .5em .25em rgba(0, 0, 0, .125);
	padding: 1.375em;
	border: 6px solid #fff;
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;
	background-color: #f4f4f4;
	color: #333;
}

.ppress-paywall-message p:last-child {
	margin-bottom: 0 !important;
}

p:has(+.ppress-paywall-message-wrap) {
	margin-bottom: 0;
}

.ppress-main-container {
	width: 100%;
}

.ppress-container-div {
	margin: 3em 0;
	padding: 3em;
	background-color: #fff;
	width: 100%;
	text-align: center;
}

@-webkit-keyframes fpFadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fpFadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.flatpickr-calendar {
	background: 0 0;
	background: #fff;
	opacity: 0;
	display: none;
	text-align: center;
	visibility: hidden;
	padding: 0;
	-webkit-animation: none;
	animation: none;
	direction: ltr;
	border: 0;
	font-size: 14px;
	line-height: 24px;
	border-radius: 5px;
	position: absolute;
	width: 307.875px;
	box-sizing: border-box;
	touch-action: manipulation;
	box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, .08);
}

.flatpickr-calendar.inline, .flatpickr-calendar.open {
	opacity: 1;
	max-height: 640px;
	visibility: visible;
}

.flatpickr-calendar.open {
	display: inline-block;
	z-index: 99999;
}

.flatpickr-calendar.animate.open {
	-webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
	animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
}

.flatpickr-calendar.inline {
	display: block;
	position: relative;
	top: 2px;
}

.flatpickr-calendar.static {
	position: absolute;
	top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
	z-index: 999;
	display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
	box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
	box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasTime .dayContainer, .flatpickr-calendar .hasWeeks .dayContainer {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
	border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
	height: 40px;
	border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
	height: auto;
}

.flatpickr-calendar:after, .flatpickr-calendar:before {
	position: absolute;
	display: block;
	pointer-events: none;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	left: 22px;
}

.flatpickr-calendar.arrowRight:after, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.rightMost:before {
	left: auto;
	right: 22px;
}

.flatpickr-calendar.arrowCenter:after, .flatpickr-calendar.arrowCenter:before {
	left: 50%;
	right: 50%;
}

.flatpickr-calendar:before {
	border-width: 5px;
	margin: 0 -5px;
}

.flatpickr-calendar:after {
	border-width: 4px;
	margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:after, .flatpickr-calendar.arrowTop:before {
	bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
	border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
	border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:after, .flatpickr-calendar.arrowBottom:before {
	top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
	border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
	border-top-color: #fff;
}

.flatpickr-calendar:focus, .flatpickr-current-month input.cur-year:focus {
	outline: 0;
}

.flatpickr-wrapper {
	position: relative;
	display: inline-block;
}

.flatpickr-months {
	display: flex;
}

.flatpickr-months .flatpickr-month, .flatpickr-months .flatpickr-next-month, .flatpickr-months .flatpickr-prev-month {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 34px;
	color: rgba(0, 0, 0, .9);
	fill: rgba(0, 0, 0, .9);
}

.flatpickr-months .flatpickr-month {
	background: 0 0;
	line-height: 1;
	text-align: center;
	position: relative;
	overflow: hidden;
	flex: 1;
}

.flatpickr-months .flatpickr-next-month, .flatpickr-months .flatpickr-prev-month {
	text-decoration: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	padding: 10px;
	z-index: 3;
}

.flatpickr-months .flatpickr-next-month.flatpickr-disabled, .flatpickr-months .flatpickr-prev-month.flatpickr-disabled {
	display: none;
}

.flatpickr-months .flatpickr-next-month i, .flatpickr-months .flatpickr-prev-month i, .numInputWrapper {
	position: relative;
}

.flatpickr-months .flatpickr-next-month.flatpickr-prev-month, .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
	left: 0;
}

.flatpickr-months .flatpickr-next-month.flatpickr-next-month, .flatpickr-months .flatpickr-prev-month.flatpickr-next-month {
	right: 0;
}

.flatpickr-months .flatpickr-next-month:hover, .flatpickr-months .flatpickr-prev-month:hover {
	color: #959ea9;
}

.flatpickr-months .flatpickr-next-month:hover svg, .flatpickr-months .flatpickr-prev-month:hover svg {
	fill: #f64747;
}

.flatpickr-months .flatpickr-next-month svg, .flatpickr-months .flatpickr-prev-month svg {
	width: 14px;
	height: 14px;
}

.flatpickr-months .flatpickr-next-month svg path, .flatpickr-months .flatpickr-prev-month svg path {
	transition: fill .1s;
	fill: inherit;
}

.numInputWrapper {
	height: auto;
}

.numInputWrapper input, .numInputWrapper span {
	display: inline-block;
}

.numInputWrapper input {
	width: 100%;
}

.numInputWrapper input::-ms-clear {
	display: none;
}

.numInputWrapper input::-webkit-inner-spin-button, .numInputWrapper input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.numInputWrapper span {
	position: absolute;
	right: 0;
	width: 14px;
	padding: 0 4px 0 2px;
	height: 50%;
	line-height: 50%;
	opacity: 0;
	cursor: pointer;
	border: 1px solid rgba(57, 57, 57, .15);
	box-sizing: border-box;
}

.numInputWrapper span:hover {
	background: rgba(0, 0, 0, .1);
}

.numInputWrapper span:active {
	background: rgba(0, 0, 0, .2);
}

.numInputWrapper span:after {
	display: block;
	content: "";
	position: absolute;
}

.numInputWrapper span.arrowUp {
	top: 0;
	border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(57, 57, 57, .6);
	top: 26%;
}

.numInputWrapper span.arrowDown {
	top: 50%;
}

.numInputWrapper span.arrowDown:after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid rgba(57, 57, 57, .6);
	top: 40%;
}

.numInputWrapper span svg {
	width: inherit;
	height: auto;
}

.numInputWrapper span svg path {
	fill: rgba(0, 0, 0, .5);
}

.flatpickr-current-month span.cur-month:hover, .numInputWrapper:hover {
	background: rgba(0, 0, 0, .05);
}

.numInputWrapper:hover span {
	opacity: 1;
}

.flatpickr-current-month {
	font-size: 135%;
	font-weight: 300;
	color: inherit;
	position: absolute;
	width: 75%;
	left: 12.5%;
	padding: 7.48px 0 0;
	line-height: 1;
	height: 34px;
	display: inline-block;
	text-align: center;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
	font-family: inherit;
	font-weight: 700;
	color: inherit;
	display: inline-block;
	margin-left: .5ch;
	padding: 0;
}

.flatpickr-current-month .numInputWrapper {
	width: 6ch;
	width: 7ch \0;
	display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
	border-bottom-color: rgba(0, 0, 0, .9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
	border-top-color: rgba(0, 0, 0, .9);
}

.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year {
	background: 0 0;
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: 300;
	height: auto;
	line-height: inherit;
	padding: 0 0 0 .5ch;
	vertical-align: initial;
}

.flatpickr-current-month input.cur-year {
	cursor: text;
	margin: 0;
	display: inline-block;
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
	font-size: 100%;
	color: rgba(0, 0, 0, .5);
	background: 0 0;
	pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
	appearance: menulist;
	cursor: pointer;
	margin: -1px 0 0;
	outline: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-webkit-appearance: menulist;
	-moz-appearance: menulist;
	width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:active, .flatpickr-current-month .flatpickr-monthDropdown-months:focus {
	outline: 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
	background: rgba(0, 0, 0, .05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
	background-color: transparent;
	outline: 0;
	padding: 0;
}

.flatpickr-weekdays {
	background: 0 0;
	text-align: center;
	overflow: hidden;
	width: 100%;
	display: flex;
	align-items: center;
	height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
	display: flex;
	flex: 1;
}

span.flatpickr-weekday {
	cursor: default;
	font-size: 90%;
	background: 0 0;
	color: rgba(0, 0, 0, .54);
	line-height: 1;
	margin: 0;
	text-align: center;
	display: block;
	flex: 1;
	font-weight: bolder;
}

.flatpickr-weeks {
	padding: 1px 0 0;
}

.flatpickr-days {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	width: 307.875px;
}

.flatpickr-days:focus {
	outline: 0;
}

.dayContainer, .flatpickr-day {
	box-sizing: border-box;
	display: inline-block;
}

.dayContainer {
	padding: 0;
	outline: 0;
	text-align: left;
	width: 307.875px;
	min-width: 307.875px;
	max-width: 307.875px;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-around;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.dayContainer+.dayContainer {
	box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
	background: 0 0;
	border: 1px solid transparent;
	border-radius: 150px;
	color: #393939;
	cursor: pointer;
	font-weight: 400;
	width: 14.2857143%;
	flex-basis: 14.2857143%;
	max-width: 39px;
	height: 39px;
	line-height: 39px;
	margin: 0;
	position: relative;
	justify-content: center;
	text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day.nextMonthDay:focus, .flatpickr-day.nextMonthDay:hover, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.today.inRange, .flatpickr-day:focus, .flatpickr-day:hover {
	cursor: pointer;
	outline: 0;
	background: #e6e6e6;
	border-color: #e6e6e6;
}

.flatpickr-day.today {
	border-color: #959ea9;
}

.flatpickr-day.today:focus, .flatpickr-day.today:hover {
	border-color: #959ea9;
	background: #959ea9;
	color: #fff;
}

.flatpickr-day.endRange, .flatpickr-day.endRange.inRange, .flatpickr-day.endRange.nextMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.endRange:focus, .flatpickr-day.endRange:hover, .flatpickr-day.selected, .flatpickr-day.selected.inRange, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.selected:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange, .flatpickr-day.startRange.inRange, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.startRange:focus, .flatpickr-day.startRange:hover {
	background: #569ff7;
	box-shadow: none;
	color: #fff;
	border-color: #569ff7;
}

.flatpickr-day.endRange.startRange, .flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange {
	border-radius: 50px 0 0 50px;
}

.flatpickr-day.endRange.endRange, .flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange {
	border-radius: 0 50px 50px 0;
}

.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)), .flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)) {
	box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.endRange.startRange.endRange, .flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange {
	border-radius: 50px;
}

.flatpickr-day.inRange {
	border-radius: 0;
	box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
	background: 0 0;
	border-color: transparent;
}

.flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.nextMonthDay, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.prevMonthDay {
	color: rgba(57, 57, 57, .3);
	background: 0 0;
	border-color: transparent;
	cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
	cursor: not-allowed;
	color: rgba(57, 57, 57, .1);
}

.flatpickr-day.week.selected {
	border-radius: 0;
	box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
	visibility: hidden;
}

.rangeMode .flatpickr-day {
	margin-top: 1px;
}

.flatpickr-weekwrapper {
	float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
	padding: 0 12px;
	box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
	float: none;
	width: 100%;
	line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
	display: block;
	width: 100%;
	max-width: none;
	color: rgba(57, 57, 57, .3);
	background: 0 0;
	cursor: default;
	border: 0;
}

.flatpickr-innerContainer {
	display: block;
	display: flex;
	box-sizing: border-box;
	overflow: hidden;
}

.flatpickr-rContainer {
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
}

.flatpickr-time, .flatpickr-time input {
	text-align: center;
	box-sizing: border-box;
}

.flatpickr-time {
	outline: 0;
	display: block;
	display: flex;
	height: 0;
	line-height: 40px;
	max-height: 40px;
	overflow: hidden;
}

.flatpickr-time:after {
	content: "";
	display: table;
	clear: both;
}

.flatpickr-time .numInputWrapper {
	flex: 1;
	width: 40%;
	height: 40px;
	float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
	border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
	border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
	width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
	width: 49%;
}

.flatpickr-time input {
	background: 0 0;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	height: inherit;
	line-height: inherit;
	color: #393939;
	font-size: 14px;
	position: relative;
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
	font-weight: 700;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
	font-weight: 400;
}

.flatpickr-time input:focus {
	outline: 0;
	border: 0;
}

.flatpickr-time .flatpickr-am-pm, .flatpickr-time .flatpickr-time-separator {
	height: inherit;
	float: left;
	line-height: inherit;
	color: #393939;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	align-self: center;
}

.flatpickr-time .flatpickr-time-separator {
	font-weight: 700;
	width: 2%;
}

.flatpickr-time .flatpickr-am-pm {
	outline: 0;
	width: 18%;
	cursor: pointer;
	text-align: center;
	font-weight: 400;
}

.flatpickr-time .flatpickr-am-pm:focus, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time input:hover {
	background: #eee;
}

.flatpickr-input[readonly] {
	cursor: pointer;
}

.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
}

.select2-container .select2-selection--single {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	height: 28px;
	user-select: none;
	-webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
	position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px;
}

.select2-container .select2-selection--multiple {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	user-select: none;
	-webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline-block;
	overflow: hidden;
	padding-left: 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select2-container .select2-search--inline {
	float: left;
}

.select2-container .select2-search--inline .select2-search__field {
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.select2-dropdown {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
}

.select2-results {
	display: block;
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select2-results__option {
	padding: 6px;
	user-select: none;
	-webkit-user-select: none;
}

.select2-results__option[aria-selected] {
	cursor: pointer;
}

.select2-container--open .select2-dropdown {
	left: 0;
}

.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-search--dropdown {
	display: block;
	padding: 4px;
}

.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
	display: none;
}

.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0);
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
	display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0 5px;
	width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
	list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	margin-top: 5px;
	margin-right: 10px;
	padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #999;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
	float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: solid black 1px;
	outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #eee;
	cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: transparent;
	border: none;
	outline: 0;
	box-shadow: none;
	-webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
	padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
	color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
	padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -1em;
	padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -2em;
	padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -3em;
	padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -4em;
	padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -5em;
	padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #5897fb;
	color: white;
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
	border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
	background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-right: 1px solid #aaa;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left: 1px;
	right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: transparent;
	border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
	background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
	background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
	background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
	list-style: none;
	margin: 0;
	padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
	display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
	color: #888;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	float: right;
	margin-left: 5px;
	margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	box-shadow: none;
}

.select2-container--classic .select2-dropdown {
	background-color: #fff;
	border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
	border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
	border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
	padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
	color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
	background-color: #3875d7;
	color: #fff;
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb;
}

.cmplz-video.cmplz-iframe-styles {
	background-color: transparent;
}

.cmplz-video.cmplz-hidden {
	visibility: hidden !important;
}

.cmplz-blocked-content-notice {
	display: none;
}

.cmplz-placeholder-parent {
	height: inherit;
}

.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice, .cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice, .cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice, .cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice {
	display: block;
}

.cmplz-blocked-content-container, .cmplz-wp-video {
	animation-name: cmplz-fadein;
	animation-duration: 600ms;
	background: #fff;
	border: 0;
	border-radius: 3px;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, .5), 0 1px 10px 0 rgba(0, 0, 0, .15);
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	height: inherit;
	position: relative;
}

.cmplz-blocked-content-container.gmw-map-cover, .cmplz-wp-video.gmw-map-cover {
	max-height: 100%;
	position: absolute;
}

.cmplz-blocked-content-container.cmplz-video-placeholder, .cmplz-wp-video.cmplz-video-placeholder {
	padding-bottom: initial;
}

.cmplz-blocked-content-container iframe, .cmplz-wp-video iframe {
	visibility: hidden;
	max-height: 100%;
	border: 0 !important;
}

.cmplz-blocked-content-container .cmplz-custom-accept-btn, .cmplz-wp-video .cmplz-custom-accept-btn {
	white-space: normal;
	text-transform: initial;
	cursor: pointer;
	position: absolute !important;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 200px;
	font-size: 14px;
	padding: 10px;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	text-align: center;
	z-index: 98;
	line-height: 23px;
}

.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus, .cmplz-wp-video .cmplz-custom-accept-btn:focus {
	border: 1px dotted #cecece;
}

.cmplz-blocked-content-container .cmplz-blocked-content-notice, .cmplz-wp-video .cmplz-blocked-content-notice {
	white-space: normal;
	text-transform: initial;
	position: absolute !important;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 300px;
	font-size: 14px;
	padding: 10px;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	text-align: center;
	z-index: 98;
	line-height: 23px;
}

.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links, .cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links {
	display: block;
	margin-bottom: 10px;
}

.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a, .cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a {
	color: #fff;
}

.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body, .cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body {
	display: block;
}

.cmplz-blocked-content-container div div {
	display: none;
}

.cmplz-wp-video .cmplz-placeholder-element {
	width: 100%;
	height: inherit;
}

@keyframes cmplz-fadein {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

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

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

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin-block-start: .5rem;
	margin-block-end: 1rem;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.2;
	color: inherit;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-block-start: 0;
	margin-block-end: .9rem;
}

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

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

a {
	background-color: transparent;
	text-decoration: none;
	color: #c36;
}

a:active, a:hover {
	color: #336;
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

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

b, strong {
	font-weight: bolder;
}

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

small {
	font-size: 80%;
}

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

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

img {
	border-style: none;
	height: auto;
	max-width: 100%;
}

details {
	display: block;
}

summary {
	display: list-item;
}

figcaption {
	font-size: 16px;
	color: #333;
	line-height: 1.4;
	font-style: italic;
	font-weight: 400;
}

[hidden], template {
	display: none;
}

@media print {
	*, :after, :before {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	
	a, a:visited {
		text-decoration: underline;
	}
	
	a[href]:after {
		content: " (" attr(href) ")";
	}
	
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	
	a[href^="#"]:after, a[href^="javascript:"]:after {
		content: "";
	}
	
	pre {
		white-space: pre-wrap !important;
	}
	
	blockquote, pre {
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		border: 1px solid #ccc;
	}
	
	thead {
		display: table-header-group;
	}
	
	img, tr {
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}
	
	h2, h3, p {
		orphans: 3;
		widows: 3;
	}
	
	h2, h3 {
		-moz-column-break-after: avoid;
		break-after: avoid;
	}
}

label {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}

input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
	width: 100%;
	border: 1px solid #666;
	border-radius: 3px;
	padding: .5rem 1rem;
	transition: all .3s;
}

input[type=date]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, select:focus, textarea:focus {
	border-color: #333;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

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

[type=button], [type=submit], button {
	display: inline-block;
	font-weight: 400;
	color: #c36;
	text-align: center;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid #c36;
	padding: .5rem 1rem;
	font-size: 1rem;
	border-radius: 3px;
	transition: all .3s;
}

[type=button]:focus:not(:focus-visible), [type=submit]:focus:not(:focus-visible), button:focus:not(:focus-visible) {
	outline: none;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
	color: #fff;
	background-color: #c36;
	text-decoration: none;
}

[type=button]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
	cursor: pointer;
}

fieldset {
	padding: .35em .75em .625em;
}

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

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
	resize: vertical;
}

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

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

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

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

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

select {
	display: block;
}

table {
	background-color: transparent;
	width: 100%;
	margin-block-end: 15px;
	font-size: .9em;
	border-spacing: 0;
	border-collapse: collapse;
}

table td, table th {
	padding: 15px;
	line-height: 1.5;
	vertical-align: top;
	border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}

table th {
	font-weight: 700;
}

table tfoot th, table thead th {
	font-size: 1em;
}

table caption+thead tr:first-child td, table caption+thead tr:first-child th, table colgroup+thead tr:first-child td, table colgroup+thead tr:first-child th, table thead:first-child tr:first-child td, table thead:first-child tr:first-child th {
	border-block-start: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
	background-color: hsla(0, 0%, 50.2%, .0705882353);
}

table tbody tr:hover>td, table tbody tr:hover>th {
	background-color: hsla(0, 0%, 50.2%, .1019607843);
}

table tbody+tbody {
	border-block-start: 2px solid hsla(0, 0%, 50.2%, .5019607843);
}

@media (max-width:767px) {
	table table {
		font-size: .8em;
	}
	
	table table td, table table th {
		padding: 7px;
		line-height: 1.3;
	}
	
	table table th {
		font-weight: 400;
	}
}

dd, dl, dt, li, ol, ul {
	margin-block-start: 0;
	margin-block-end: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

@charset "UTF-8";

.comments-area a, .page-content a {
	text-decoration: underline;
}

.alignright {
	float: right;
	margin-left: 1rem;
}

.alignleft {
	float: left;
	margin-right: 1rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin-inline: auto;
}

.alignwide {
	margin-inline: -80px;
}

.alignfull {
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
}

.alignfull, .alignfull img {
	width: 100vw;
}

.wp-caption {
	margin-block-end: 1.25rem;
	max-width: 100%;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	display: block;
	margin-inline: auto;
}

.wp-caption-text {
	margin: 0;
}

.gallery-caption {
	display: block;
	font-size: .8125rem;
	line-height: 1.5;
	margin: 0;
	padding: .75rem;
}

.pagination {
	display: flex;
	justify-content: space-between;
	margin: 20px auto;
}

.sticky {
	position: relative;
	display: block;
}

.bypostauthor {
	font-size: inherit;
}

.hide {
	display: none !important;
}

.post-password-form p {
	width: 100%;
	display: flex;
	align-items: flex-end;
}

.post-password-form [type=submit] {
	margin-inline-start: 3px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #333;
	display: block;
	font-size: 1rem;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 12px 24px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.post .entry-title a {
	text-decoration: none;
}

.post .wp-post-image {
	width: 100%;
	max-height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (max-width:991px) {
	.post .wp-post-image {
		max-height: 400px;
	}
}

@media (max-width:575px) {
	.post .wp-post-image {
		max-height: 300px;
	}
}

#comments .comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .9em;
}

#comments .comment, #comments .pingback {
	position: relative;
}

#comments .comment .comment-body, #comments .pingback .comment-body {
	display: flex;
	flex-direction: column;
	padding-block-start: 30px;
	padding-block-end: 30px;
	padding-inline-start: 60px;
	padding-inline-end: 0;
	border-block-end: 1px solid #ccc;
}

#comments .comment .avatar, #comments .pingback .avatar {
	position: absolute;
	left: 0;
	border-radius: 50%;
	margin-inline-end: 10px;
}

body.rtl #comments .comment .avatar, body.rtl #comments .pingback .avatar, html[dir=rtl] #comments .comment .avatar, html[dir=rtl] #comments .pingback .avatar {
	left: auto;
	right: 0;
}

#comments .comment-meta {
	display: flex;
	justify-content: space-between;
	margin-block-end: .9rem;
}

#comments .comment-metadata, #comments .reply {
	font-size: 11px;
	line-height: 1;
}

#comments .children {
	position: relative;
	list-style: none;
	margin: 0;
	padding-inline-start: 30px;
}

#comments .children li:last-child {
	padding-block-end: 0;
}

#comments ol.comment-list .children:before {
	display: inline-block;
	font-size: 1em;
	font-weight: 400;
	line-height: 100%;
	content: "↪";
	position: absolute;
	top: 45px;
	left: 0;
	width: auto;
}

body.rtl #comments ol.comment-list .children:before, html[dir=rtl] #comments ol.comment-list .children:before {
	content: "↩";
	left: auto;
	right: 0;
}

@media (min-width:768px) {
	#comments .comment-author, #comments .comment-metadata {
		line-height: 1;
	}
}

@media (max-width:767px) {
	#comments .comment .comment-body {
		padding: 30px 0;
	}
	
	#comments .children {
		padding-inline-start: 20px;
	}
	
	#comments .comment .avatar {
		position: inherit;
		float: left;
	}
	
	body.rtl #comments .comment .avatar, html[dir=rtl] #comments .comment .avatar {
		float: right;
	}
}

.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
	margin-inline-start: auto;
	margin-inline-end: auto;
	width: 100%;
}

@media (max-width:575px) {
	.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
		padding-inline-start: 10px;
		padding-inline-end: 10px;
	}
}

@media (min-width:576px) {
	.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
		max-width: 500px;
	}
	
	.site-footer.footer-full-width .footer-inner, .site-header.header-full-width .header-inner {
		max-width: 100%;
	}
}

@media (min-width:768px) {
	.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
		max-width: 600px;
	}
	
	.site-footer.footer-full-width, .site-header.header-full-width {
		max-width: 100%;
	}
}

@media (min-width:992px) {
	.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
		max-width: 800px;
	}
	
	.site-footer.footer-full-width, .site-header.header-full-width {
		max-width: 100%;
	}
}

@media (min-width:1200px) {
	.page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
		max-width: 1140px;
	}
	
	.site-footer.footer-full-width, .site-header.header-full-width {
		max-width: 100%;
	}
}

.site-header+.elementor {
	min-height: calc(100vh - 320px);
}

@charset "UTF-8";

.site-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-block-start: 1rem;
	padding-block-end: 1rem;
	position: relative;
}

.site-header .site-title {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.site-header .site-branding {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .5rem;
}

.site-header .header-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.site-header .header-inner .custom-logo-link {
	display: block;
}

.site-header .header-inner .site-branding .site-description, .site-header .header-inner .site-branding .site-title {
	margin: 0;
}

.site-header .header-inner .site-branding .site-logo img {
	display: block;
}

.site-header .header-inner .site-branding.show-logo .site-title, .site-header .header-inner .site-branding.show-title .site-logo {
	display: none !important;
}

.site-header.header-inverted .header-inner {
	flex-direction: row-reverse;
}

.site-header.header-inverted .header-inner .site-branding {
	text-align: end;
}

.site-header.header-stacked .header-inner {
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.site-footer {
	padding-block-start: 1rem;
	padding-block-end: 1rem;
	position: relative;
}

.site-footer .site-title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.site-footer .site-branding {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .5rem;
}

.site-footer .footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.site-footer .footer-inner .custom-logo-link {
	display: block;
}

.site-footer .footer-inner .site-branding .site-description, .site-footer .footer-inner .site-branding .site-title {
	margin: 0;
}

.site-footer .footer-inner .site-branding .site-logo img {
	display: block;
}

.site-footer .footer-inner .site-branding.show-logo .site-title, .site-footer .footer-inner .site-branding.show-title .site-logo {
	display: none !important;
}

.site-footer .footer-inner .copyright {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.site-footer .footer-inner .copyright p {
	margin: 0;
}

.site-footer.footer-inverted .footer-inner {
	flex-direction: row-reverse;
}

.site-footer.footer-inverted .footer-inner .site-branding {
	text-align: end;
}

.site-footer.footer-stacked .footer-inner {
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.site-footer.footer-stacked .footer-inner .site-branding .site-title {
	text-align: center;
}

.site-footer.footer-stacked .footer-inner .site-navigation .menu {
	padding: 0;
}

@media (max-width:576px) {
	.site-footer:not(.footer-stacked) .footer-inner .copyright, .site-footer:not(.footer-stacked) .footer-inner .site-branding, .site-footer:not(.footer-stacked) .footer-inner .site-navigation {
		display: block;
		text-align: center;
		width: 100%;
		max-width: none;
	}
	
	.site-footer .footer-inner .site-navigation ul.menu {
		justify-content: center;
	}
	
	.site-footer .footer-inner .site-navigation ul.menu li {
		display: inline-block;
	}
}

.site-header.header-stacked .site-navigation-toggle-holder {
	justify-content: center;
	max-width: 100%;
}

.site-header.menu-layout-dropdown .site-navigation {
	display: none;
}

.site-navigation-toggle-holder {
	display: flex;
	align-items: center;
	padding: 8px 15px;
}

.site-navigation-toggle-holder .site-navigation-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5rem;
	cursor: pointer;
	border: 0 solid;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, .05);
	color: #494c4f;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon {
	display: block;
	width: 1.25rem;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:after, .site-navigation-toggle-holder .site-navigation-toggle-icon:before {
	content: "";
	background-color: currentColor;
	display: block;
	height: 3px;
	transition: all .2s ease-in-out;
	border-radius: 3px;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:before {
	box-shadow: 0 .35rem 0 currentColor;
	margin-block-end: .5rem;
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:before {
	box-shadow: none;
	transform: translateY(.35rem) rotate(45deg);
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:after {
	transform: translateY(-.35rem) rotate(-45deg);
}

.site-navigation {
	display: flex;
	align-items: center;
}

.site-navigation ul.menu, .site-navigation ul.menu ul {
	list-style-type: none;
	padding: 0;
}

.site-navigation ul.menu {
	display: flex;
	flex-wrap: wrap;
}

.site-navigation ul.menu li {
	position: relative;
	display: flex;
}

.site-navigation ul.menu li a {
	display: block;
	padding: 8px 15px;
}

.site-navigation ul.menu li.menu-item-has-children {
	padding-inline-end: 15px;
}

.site-navigation ul.menu li.menu-item-has-children:after {
	display: flex;
	content: "▾";
	font-size: 1.5em;
	justify-content: center;
	align-items: center;
	color: #666;
	text-decoration: none;
}

.site-navigation ul.menu li.menu-item-has-children:focus-within>ul {
	display: block;
}

.site-navigation ul.menu li ul {
	background: #fff;
	display: none;
	min-width: 150px;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 100%;
}

.site-navigation ul.menu li ul li {
	border-block-end: #eee 1px solid;
}

.site-navigation ul.menu li ul li:last-child {
	border-block-end: none;
}

.site-navigation ul.menu li ul li.menu-item-has-children a {
	flex-grow: 1;
}

.site-navigation ul.menu li ul li.menu-item-has-children:after {
	transform: translateY(-50%) rotate(-90deg);
}

.site-navigation ul.menu li ul ul {
	left: 100%;
	top: 0;
}

.site-navigation ul.menu li:hover>ul {
	display: block;
}

footer .site-navigation ul.menu li ul {
	top: auto;
	bottom: 100%;
}

footer .site-navigation ul.menu li ul ul {
	bottom: 0;
}

footer .site-navigation ul.menu a {
	padding: 5px 15px;
}

.site-navigation-dropdown {
	margin-block-start: 10px;
	transition: max-height .3s, transform .3s;
	transform-origin: top;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
}

.site-navigation-toggle-holder:not(.elementor-active)+.site-navigation-dropdown {
	transform: scaleY(0);
	max-height: 0;
}

.site-navigation-toggle-holder.elementor-active+.site-navigation-dropdown {
	transform: scaleY(1);
	max-height: 100vh;
}

.site-navigation-dropdown ul {
	padding: 0;
}

.site-navigation-dropdown ul.menu {
	position: absolute;
	width: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
}

.site-navigation-dropdown ul.menu li {
	display: block;
	width: 100%;
	position: relative;
}

.site-navigation-dropdown ul.menu li a {
	display: block;
	padding: 20px;
	background: #fff;
	color: #55595c;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .1019607843);
}

.site-navigation-dropdown ul.menu li.current-menu-item a {
	color: #fff;
	background: #55595c;
}

.site-navigation-dropdown ul.menu>li li {
	transition: max-height .3s, transform .3s;
	transform-origin: top;
	transform: scaleY(0);
	max-height: 0;
}

.site-navigation-dropdown ul.menu li.elementor-active>ul>li {
	transform: scaleY(1);
	max-height: 100vh;
}

@media (max-width:576px) {
	.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
		display: none !important;
	}
}

@media (min-width:768px) {
	.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
		display: none !important;
	}
}

@media (min-width:576px) and (max-width:767px) {
	.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
		display: none !important;
	}
}

@media (min-width:992px) {
	.site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
		display: none !important;
	}
}

@media (max-width:992px) {
	.site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation {
		display: none !important;
	}
}

.site-header.menu-dropdown-none:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
	display: none !important;
}

/*! elementor - v3.28.0 - 01-04-2025 */
.elementor-hidden {
	display: none;
}

.elementor-visibility-hidden {
	visibility: hidden;
}

.elementor-screen-only, .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: -10000em;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.elementor-clearfix:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	width: 0;
}

.e-logo-wrapper {
	background: var(--e-a-bg-logo);
	border-radius: 50%;
	display: inline-block;
	line-height: 1;
	padding: .75em;
}

.e-logo-wrapper i {
	color: var(--e-a-color-logo);
	font-size: 1em;
}

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

.elementor a {
	box-shadow: none;
	text-decoration: none;
}

.elementor hr {
	background-color: transparent;
	margin: 0;
}

.elementor img {
	border: none;
	border-radius: 0;
	box-shadow: none;
	height: auto;
	max-width: 100%;
}

.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure {
	margin: 0;
}

.elementor embed, .elementor iframe, .elementor object, .elementor video {
	border: none;
	line-height: 1;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

.elementor .elementor-background, .elementor .elementor-background-holder, .elementor .elementor-background-video-container {
	direction: ltr;
	inset: 0;
	overflow: hidden;
	position: absolute;
	z-index: 0;
}

.elementor .elementor-background-video-container {
	pointer-events: none;
	transition: opacity 1s;
}

.elementor .elementor-background-video-container.elementor-loading {
	opacity: 0;
}

.elementor .elementor-background-video-embed {
	max-width: none;
}

.elementor .elementor-background-video, .elementor .elementor-background-video-embed, .elementor .elementor-background-video-hosted {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.elementor .elementor-background-video {
	max-width: none;
}

.elementor .elementor-background-video-hosted {
	-o-object-fit: cover;
	object-fit: cover;
}

.elementor .elementor-background-overlay {
	inset: 0;
	position: absolute;
}

.elementor .elementor-background-slideshow {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.elementor .elementor-background-slideshow__slide__image {
	background-position: 50%;
	background-size: cover;
	height: 100%;
	width: 100%;
}

.e-con-inner>.elementor-element.elementor-absolute, .e-con>.elementor-element.elementor-absolute, .elementor-widget-wrap>.elementor-element.elementor-absolute {
	position: absolute;
}

.e-con-inner>.elementor-element.elementor-fixed, .e-con>.elementor-element.elementor-fixed, .elementor-widget-wrap>.elementor-element.elementor-fixed {
	position: fixed;
}

.elementor-widget-wrap .elementor-element.elementor-widget__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget__width-initial {
	max-width: 100%;
}

@media (max-width:1024px) {
	.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial {
		max-width: 100%;
	}
}

@media (max-width:767px) {
	.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial {
		max-width: 100%;
	}
}

.elementor-element {
	--flex-direction: initial;
	--flex-wrap: initial;
	--justify-content: initial;
	--align-items: initial;
	--align-content: initial;
	--gap: initial;
	--flex-basis: initial;
	--flex-grow: initial;
	--flex-shrink: initial;
	--order: initial;
	--align-self: initial;
	align-self: var(--align-self);
	flex-basis: var(--flex-basis);
	flex-grow: var(--flex-grow);
	flex-shrink: var(--flex-shrink);
	order: var(--order);
}

.elementor-element.elementor-absolute, .elementor-element.elementor-fixed {
	z-index: 1;
}

.elementor-element:where(.e-con-full, .elementor-widget) {
	align-content: var(--align-content);
	align-items: var(--align-items);
	flex-direction: var(--flex-direction);
	flex-wrap: var(--flex-wrap);
	gap: var(--row-gap) var(--column-gap);
	justify-content: var(--justify-content);
}

.elementor-invisible {
	visibility: hidden;
}

.elementor-align-center {
	text-align: center;
}

.elementor-align-right {
	text-align: right;
}

.elementor-align-left {
	text-align: left;
}

.elementor-align-center .elementor-button, .elementor-align-left .elementor-button, .elementor-align-right .elementor-button {
	width: auto;
}

.elementor-align-justify .elementor-button {
	width: 100%;
}

.elementor-custom-embed-play {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.elementor-custom-embed-play i {
	color: #fff;
	font-size: 100px;
	text-shadow: 1px 0 6px rgba(0, 0, 0, .3);
}

.elementor-custom-embed-play svg {
	height: 100px;
	width: 100px;
	fill: #fff;
	filter: drop-shadow(1px 0 6px rgba(0, 0, 0, .3));
}

.elementor-custom-embed-play i, .elementor-custom-embed-play svg {
	opacity: .8;
	transition: all .5s;
}

.elementor-custom-embed-play.elementor-playing i {
	font-family: eicons;
}

.elementor-custom-embed-play.elementor-playing i:before {
	content: "";
}

.elementor-custom-embed-play.elementor-playing i, .elementor-custom-embed-play.elementor-playing svg {
	animation: eicon-spin 2s linear infinite;
}

.elementor-tag {
	display: inline-flex;
}

.elementor-ken-burns {
	transition-duration: 10s;
	transition-property: transform;
	transition-timing-function: linear;
}

.elementor-ken-burns--out {
	transform: scale(1.3);
}

.elementor-ken-burns--active {
	transition-duration: 20s;
}

.elementor-ken-burns--active.elementor-ken-burns--out {
	transform: scale(1);
}

.elementor-ken-burns--active.elementor-ken-burns--in {
	transform: scale(1.3);
}

@media (min-width:-1) {
	.elementor-widescreen-align-center {
		text-align: center;
	}
	
	.elementor-widescreen-align-right {
		text-align: right;
	}
	
	.elementor-widescreen-align-left {
		text-align: left;
	}
	
	.elementor-widescreen-align-center .elementor-button, .elementor-widescreen-align-left .elementor-button, .elementor-widescreen-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-widescreen-align-justify .elementor-button {
		width: 100%;
	}
}

@media (max-width:-1) {
	.elementor-laptop-align-center {
		text-align: center;
	}
	
	.elementor-laptop-align-right {
		text-align: right;
	}
	
	.elementor-laptop-align-left {
		text-align: left;
	}
	
	.elementor-laptop-align-center .elementor-button, .elementor-laptop-align-left .elementor-button, .elementor-laptop-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-laptop-align-justify .elementor-button {
		width: 100%;
	}
	
	.elementor-tablet_extra-align-center {
		text-align: center;
	}
	
	.elementor-tablet_extra-align-right {
		text-align: right;
	}
	
	.elementor-tablet_extra-align-left {
		text-align: left;
	}
	
	.elementor-tablet_extra-align-center .elementor-button, .elementor-tablet_extra-align-left .elementor-button, .elementor-tablet_extra-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-tablet_extra-align-justify .elementor-button {
		width: 100%;
	}
}

@media (max-width:1024px) {
	.elementor-tablet-align-center {
		text-align: center;
	}
	
	.elementor-tablet-align-right {
		text-align: right;
	}
	
	.elementor-tablet-align-left {
		text-align: left;
	}
	
	.elementor-tablet-align-center .elementor-button, .elementor-tablet-align-left .elementor-button, .elementor-tablet-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-tablet-align-justify .elementor-button {
		width: 100%;
	}
}

@media (max-width:-1) {
	.elementor-mobile_extra-align-center {
		text-align: center;
	}
	
	.elementor-mobile_extra-align-right {
		text-align: right;
	}
	
	.elementor-mobile_extra-align-left {
		text-align: left;
	}
	
	.elementor-mobile_extra-align-center .elementor-button, .elementor-mobile_extra-align-left .elementor-button, .elementor-mobile_extra-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-mobile_extra-align-justify .elementor-button {
		width: 100%;
	}
}

@media (max-width:767px) {
	.elementor-mobile-align-center {
		text-align: center;
	}
	
	.elementor-mobile-align-right {
		text-align: right;
	}
	
	.elementor-mobile-align-left {
		text-align: left;
	}
	
	.elementor-mobile-align-center .elementor-button, .elementor-mobile-align-left .elementor-button, .elementor-mobile-align-right .elementor-button {
		width: auto;
	}
	
	.elementor-mobile-align-justify .elementor-button {
		width: 100%;
	}
}

:root {
	--page-title-display: block;
}

.elementor-page-title, h1.entry-title {
	display: var(--page-title-display);
}

@keyframes eicon-spin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(359deg);
	}
}

.eicon-animation-spin {
	animation: eicon-spin 2s linear infinite;
}

.elementor-section {
	position: relative;
}

.elementor-section .elementor-container {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

@media (max-width:1024px) {
	.elementor-section .elementor-container {
		flex-wrap: wrap;
	}
}

.elementor-section.elementor-section-boxed>.elementor-container {
	max-width: 1140px;
}

.elementor-section.elementor-section-stretched {
	position: relative;
	width: 100%;
}

.elementor-section.elementor-section-items-top>.elementor-container {
	align-items: flex-start;
}

.elementor-section.elementor-section-items-middle>.elementor-container {
	align-items: center;
}

.elementor-section.elementor-section-items-bottom>.elementor-container {
	align-items: flex-end;
}

@media (min-width:768px) {
	.elementor-section.elementor-section-height-full {
		height: 100vh;
	}
	
	.elementor-section.elementor-section-height-full>.elementor-container {
		height: 100%;
	}
}

.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap {
	align-items: flex-start;
}

.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap {
	align-items: center;
}

.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap {
	align-items: flex-end;
}

.elementor-widget-wrap {
	align-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
}

.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
	display: flex;
}

.elementor-widget-wrap>.elementor-element {
	width: 100%;
}

.elementor-widget-wrap.e-swiper-container {
	width: calc(100% - ( var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px) ));
}

.elementor-widget {
	position: relative;
}

.elementor-widget:not(:last-child) {
	margin-bottom: var(--kit-widget-spacing, 20px);
}

.elementor-widget:not(:last-child).elementor-absolute, .elementor-widget:not(:last-child).elementor-widget__width-auto, .elementor-widget:not(:last-child).elementor-widget__width-initial {
	margin-bottom: 0;
}

.elementor-column {
	display: flex;
	min-height: 1px;
	position: relative;
}

.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated {
	padding: 5px;
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
	padding: 10px;
}

.elementor-column-gap-extended>.elementor-column>.elementor-element-populated {
	padding: 15px;
}

.elementor-column-gap-wide>.elementor-column>.elementor-element-populated {
	padding: 20px;
}

.elementor-column-gap-wider>.elementor-column>.elementor-element-populated {
	padding: 30px;
}

.elementor-inner-section .elementor-column-gap-no .elementor-element-populated {
	padding: 0;
}

@media (min-width:768px) {
	.elementor-column.elementor-col-10, .elementor-column[data-col="10"] {
		width: 10%;
	}
	
	.elementor-column.elementor-col-11, .elementor-column[data-col="11"] {
		width: 11.111%;
	}
	
	.elementor-column.elementor-col-12, .elementor-column[data-col="12"] {
		width: 12.5%;
	}
	
	.elementor-column.elementor-col-14, .elementor-column[data-col="14"] {
		width: 14.285%;
	}
	
	.elementor-column.elementor-col-16, .elementor-column[data-col="16"] {
		width: 16.666%;
	}
	
	.elementor-column.elementor-col-20, .elementor-column[data-col="20"] {
		width: 20%;
	}
	
	.elementor-column.elementor-col-25, .elementor-column[data-col="25"] {
		width: 25%;
	}
	
	.elementor-column.elementor-col-30, .elementor-column[data-col="30"] {
		width: 30%;
	}
	
	.elementor-column.elementor-col-33, .elementor-column[data-col="33"] {
		width: 33.333%;
	}
	
	.elementor-column.elementor-col-40, .elementor-column[data-col="40"] {
		width: 40%;
	}
	
	.elementor-column.elementor-col-50, .elementor-column[data-col="50"] {
		width: 50%;
	}
	
	.elementor-column.elementor-col-60, .elementor-column[data-col="60"] {
		width: 60%;
	}
	
	.elementor-column.elementor-col-66, .elementor-column[data-col="66"] {
		width: 66.666%;
	}
	
	.elementor-column.elementor-col-70, .elementor-column[data-col="70"] {
		width: 70%;
	}
	
	.elementor-column.elementor-col-75, .elementor-column[data-col="75"] {
		width: 75%;
	}
	
	.elementor-column.elementor-col-80, .elementor-column[data-col="80"] {
		width: 80%;
	}
	
	.elementor-column.elementor-col-83, .elementor-column[data-col="83"] {
		width: 83.333%;
	}
	
	.elementor-column.elementor-col-90, .elementor-column[data-col="90"] {
		width: 90%;
	}
	
	.elementor-column.elementor-col-100, .elementor-column[data-col="100"] {
		width: 100%;
	}
}

@media (max-width:479px) {
	.elementor-column.elementor-xs-10 {
		width: 10%;
	}
	
	.elementor-column.elementor-xs-11 {
		width: 11.111%;
	}
	
	.elementor-column.elementor-xs-12 {
		width: 12.5%;
	}
	
	.elementor-column.elementor-xs-14 {
		width: 14.285%;
	}
	
	.elementor-column.elementor-xs-16 {
		width: 16.666%;
	}
	
	.elementor-column.elementor-xs-20 {
		width: 20%;
	}
	
	.elementor-column.elementor-xs-25 {
		width: 25%;
	}
	
	.elementor-column.elementor-xs-30 {
		width: 30%;
	}
	
	.elementor-column.elementor-xs-33 {
		width: 33.333%;
	}
	
	.elementor-column.elementor-xs-40 {
		width: 40%;
	}
	
	.elementor-column.elementor-xs-50 {
		width: 50%;
	}
	
	.elementor-column.elementor-xs-60 {
		width: 60%;
	}
	
	.elementor-column.elementor-xs-66 {
		width: 66.666%;
	}
	
	.elementor-column.elementor-xs-70 {
		width: 70%;
	}
	
	.elementor-column.elementor-xs-75 {
		width: 75%;
	}
	
	.elementor-column.elementor-xs-80 {
		width: 80%;
	}
	
	.elementor-column.elementor-xs-83 {
		width: 83.333%;
	}
	
	.elementor-column.elementor-xs-90 {
		width: 90%;
	}
	
	.elementor-column.elementor-xs-100 {
		width: 100%;
	}
}

@media (max-width:767px) {
	.elementor-column.elementor-sm-10 {
		width: 10%;
	}
	
	.elementor-column.elementor-sm-11 {
		width: 11.111%;
	}
	
	.elementor-column.elementor-sm-12 {
		width: 12.5%;
	}
	
	.elementor-column.elementor-sm-14 {
		width: 14.285%;
	}
	
	.elementor-column.elementor-sm-16 {
		width: 16.666%;
	}
	
	.elementor-column.elementor-sm-20 {
		width: 20%;
	}
	
	.elementor-column.elementor-sm-25 {
		width: 25%;
	}
	
	.elementor-column.elementor-sm-30 {
		width: 30%;
	}
	
	.elementor-column.elementor-sm-33 {
		width: 33.333%;
	}
	
	.elementor-column.elementor-sm-40 {
		width: 40%;
	}
	
	.elementor-column.elementor-sm-50 {
		width: 50%;
	}
	
	.elementor-column.elementor-sm-60 {
		width: 60%;
	}
	
	.elementor-column.elementor-sm-66 {
		width: 66.666%;
	}
	
	.elementor-column.elementor-sm-70 {
		width: 70%;
	}
	
	.elementor-column.elementor-sm-75 {
		width: 75%;
	}
	
	.elementor-column.elementor-sm-80 {
		width: 80%;
	}
	
	.elementor-column.elementor-sm-83 {
		width: 83.333%;
	}
	
	.elementor-column.elementor-sm-90 {
		width: 90%;
	}
	
	.elementor-column.elementor-sm-100 {
		width: 100%;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	.elementor-column.elementor-md-10 {
		width: 10%;
	}
	
	.elementor-column.elementor-md-11 {
		width: 11.111%;
	}
	
	.elementor-column.elementor-md-12 {
		width: 12.5%;
	}
	
	.elementor-column.elementor-md-14 {
		width: 14.285%;
	}
	
	.elementor-column.elementor-md-16 {
		width: 16.666%;
	}
	
	.elementor-column.elementor-md-20 {
		width: 20%;
	}
	
	.elementor-column.elementor-md-25 {
		width: 25%;
	}
	
	.elementor-column.elementor-md-30 {
		width: 30%;
	}
	
	.elementor-column.elementor-md-33 {
		width: 33.333%;
	}
	
	.elementor-column.elementor-md-40 {
		width: 40%;
	}
	
	.elementor-column.elementor-md-50 {
		width: 50%;
	}
	
	.elementor-column.elementor-md-60 {
		width: 60%;
	}
	
	.elementor-column.elementor-md-66 {
		width: 66.666%;
	}
	
	.elementor-column.elementor-md-70 {
		width: 70%;
	}
	
	.elementor-column.elementor-md-75 {
		width: 75%;
	}
	
	.elementor-column.elementor-md-80 {
		width: 80%;
	}
	
	.elementor-column.elementor-md-83 {
		width: 83.333%;
	}
	
	.elementor-column.elementor-md-90 {
		width: 90%;
	}
	
	.elementor-column.elementor-md-100 {
		width: 100%;
	}
}

@media (min-width:-1) {
	.elementor-reverse-widescreen>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-widescreen>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:1025px) and (max-width:-1) {
	.elementor-reverse-laptop>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:-1) and (max-width:-1) {
	.elementor-reverse-laptop>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-laptop>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:1025px) and (max-width:-1) {
	.elementor-reverse-laptop>.elementor-container>:first-child, .elementor-reverse-laptop>.elementor-container>:nth-child(10), .elementor-reverse-laptop>.elementor-container>:nth-child(2), .elementor-reverse-laptop>.elementor-container>:nth-child(3), .elementor-reverse-laptop>.elementor-container>:nth-child(4), .elementor-reverse-laptop>.elementor-container>:nth-child(5), .elementor-reverse-laptop>.elementor-container>:nth-child(6), .elementor-reverse-laptop>.elementor-container>:nth-child(7), .elementor-reverse-laptop>.elementor-container>:nth-child(8), .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
		order: 0;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	.elementor-reverse-tablet>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:-1) and (max-width:1024px) {
	.elementor-reverse-tablet>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-tablet>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (min-width:768px) and (max-width:-1) {
	.elementor-reverse-tablet>.elementor-container>:first-child, .elementor-reverse-tablet>.elementor-container>:nth-child(10), .elementor-reverse-tablet>.elementor-container>:nth-child(2), .elementor-reverse-tablet>.elementor-container>:nth-child(3), .elementor-reverse-tablet>.elementor-container>:nth-child(4), .elementor-reverse-tablet>.elementor-container>:nth-child(5), .elementor-reverse-tablet>.elementor-container>:nth-child(6), .elementor-reverse-tablet>.elementor-container>:nth-child(7), .elementor-reverse-tablet>.elementor-container>:nth-child(8), .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
		order: 0;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10) {
		order: 1;
	}
}

@media (max-width:767px) {
	.elementor-reverse-mobile>.elementor-container>:first-child {
		order: 10;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(2) {
		order: 9;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(3) {
		order: 8;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(4) {
		order: 7;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(5) {
		order: 6;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(6) {
		order: 5;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(7) {
		order: 4;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(8) {
		order: 3;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(9) {
		order: 2;
	}
	
	.elementor-reverse-mobile>.elementor-container>:nth-child(10) {
		order: 1;
	}
	
	.elementor-column {
		width: 100%;
	}
}

.elementor-grid {
	display: grid;
	grid-column-gap: var(--grid-column-gap);
	grid-row-gap: var(--grid-row-gap);
}

.elementor-grid .elementor-grid-item {
	min-width: 0;
}

.elementor-grid-0 .elementor-grid {
	display: inline-block;
	margin-bottom: calc(-1 * var(--grid-row-gap));
	width: 100%;
	word-spacing: var(--grid-column-gap);
}

.elementor-grid-0 .elementor-grid .elementor-grid-item {
	display: inline-block;
	margin-bottom: var(--grid-row-gap);
	word-break: break-word;
}

.elementor-grid-1 .elementor-grid {
	grid-template-columns: repeat(1, 1fr);
}

.elementor-grid-2 .elementor-grid {
	grid-template-columns: repeat(2, 1fr);
}

.elementor-grid-3 .elementor-grid {
	grid-template-columns: repeat(3, 1fr);
}

.elementor-grid-4 .elementor-grid {
	grid-template-columns: repeat(4, 1fr);
}

.elementor-grid-5 .elementor-grid {
	grid-template-columns: repeat(5, 1fr);
}

.elementor-grid-6 .elementor-grid {
	grid-template-columns: repeat(6, 1fr);
}

.elementor-grid-7 .elementor-grid {
	grid-template-columns: repeat(7, 1fr);
}

.elementor-grid-8 .elementor-grid {
	grid-template-columns: repeat(8, 1fr);
}

.elementor-grid-9 .elementor-grid {
	grid-template-columns: repeat(9, 1fr);
}

.elementor-grid-10 .elementor-grid {
	grid-template-columns: repeat(10, 1fr);
}

.elementor-grid-11 .elementor-grid {
	grid-template-columns: repeat(11, 1fr);
}

.elementor-grid-12 .elementor-grid {
	grid-template-columns: repeat(12, 1fr);
}

@media (min-width:-1) {
	.elementor-grid-widescreen-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-widescreen-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-widescreen-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-widescreen-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-widescreen-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-widescreen-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-widescreen-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-widescreen-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-widescreen-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-widescreen-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-widescreen-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-widescreen-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-widescreen-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
}

@media (max-width:-1) {
	.elementor-grid-laptop-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-laptop-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-laptop-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-laptop-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-laptop-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-laptop-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-laptop-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-laptop-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-laptop-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-laptop-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-laptop-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-laptop-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-laptop-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
	
	.elementor-grid-tablet_extra-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-tablet_extra-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-tablet_extra-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-tablet_extra-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-tablet_extra-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-tablet_extra-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-tablet_extra-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-tablet_extra-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-tablet_extra-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-tablet_extra-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-tablet_extra-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-tablet_extra-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-tablet_extra-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
}

@media (max-width:1024px) {
	.elementor-grid-tablet-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-tablet-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-tablet-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-tablet-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-tablet-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-tablet-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-tablet-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-tablet-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-tablet-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-tablet-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-tablet-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-tablet-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-tablet-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
}

@media (max-width:-1) {
	.elementor-grid-mobile_extra-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-mobile_extra-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-mobile_extra-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-mobile_extra-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-mobile_extra-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-mobile_extra-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-mobile_extra-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-mobile_extra-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-mobile_extra-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-mobile_extra-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-mobile_extra-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-mobile_extra-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-mobile_extra-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
}

@media (max-width:767px) {
	.elementor-grid-mobile-0 .elementor-grid {
		display: inline-block;
		margin-bottom: calc(-1 * var(--grid-row-gap));
		width: 100%;
		word-spacing: var(--grid-column-gap);
	}
	
	.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item {
		display: inline-block;
		margin-bottom: var(--grid-row-gap);
		word-break: break-word;
	}
	
	.elementor-grid-mobile-1 .elementor-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.elementor-grid-mobile-2 .elementor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.elementor-grid-mobile-3 .elementor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.elementor-grid-mobile-4 .elementor-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.elementor-grid-mobile-5 .elementor-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.elementor-grid-mobile-6 .elementor-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	
	.elementor-grid-mobile-7 .elementor-grid {
		grid-template-columns: repeat(7, 1fr);
	}
	
	.elementor-grid-mobile-8 .elementor-grid {
		grid-template-columns: repeat(8, 1fr);
	}
	
	.elementor-grid-mobile-9 .elementor-grid {
		grid-template-columns: repeat(9, 1fr);
	}
	
	.elementor-grid-mobile-10 .elementor-grid {
		grid-template-columns: repeat(10, 1fr);
	}
	
	.elementor-grid-mobile-11 .elementor-grid {
		grid-template-columns: repeat(11, 1fr);
	}
	
	.elementor-grid-mobile-12 .elementor-grid {
		grid-template-columns: repeat(12, 1fr);
	}
}

@media (min-width:1025px) {
	#elementor-device-mode:after {
		content: "desktop";
	}
}

@media (min-width:-1) {
	#elementor-device-mode:after {
		content: "widescreen";
	}
}

@media (max-width:-1) {
	#elementor-device-mode:after {
		content: "laptop";
		content: "tablet_extra";
	}
}

@media (max-width:1024px) {
	#elementor-device-mode:after {
		content: "tablet";
	}
}

@media (max-width:-1) {
	#elementor-device-mode:after {
		content: "mobile_extra";
	}
}

@media (max-width:767px) {
	#elementor-device-mode:after {
		content: "mobile";
	}
}

@media (prefers-reduced-motion:no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

.e-con {
	--border-radius: 0;
	--border-top-width: 0px;
	--border-right-width: 0px;
	--border-bottom-width: 0px;
	--border-left-width: 0px;
	--border-style: initial;
	--border-color: initial;
	--container-widget-width: 100%;
	--container-widget-height: initial;
	--container-widget-flex-grow: 0;
	--container-widget-align-self: initial;
	--content-width: min(100%, var(--container-max-width, 1140px));
	--width: 100%;
	--min-height: initial;
	--height: auto;
	--text-align: initial;
	--margin-top: 0px;
	--margin-right: 0px;
	--margin-bottom: 0px;
	--margin-left: 0px;
	--padding-top: var(--container-default-padding-top, 10px);
	--padding-right: var(--container-default-padding-right, 10px);
	--padding-bottom: var(--container-default-padding-bottom, 10px);
	--padding-left: var(--container-default-padding-left, 10px);
	--position: relative;
	--z-index: revert;
	--overflow: visible;
	--gap: var(--widgets-spacing, 20px);
	--row-gap: var(--widgets-spacing-row, 20px);
	--column-gap: var(--widgets-spacing-column, 20px);
	--overlay-mix-blend-mode: initial;
	--overlay-opacity: 1;
	--overlay-transition: .3s;
	--e-con-grid-template-columns: repeat(3, 1fr);
	--e-con-grid-template-rows: repeat(2, 1fr);
	border-radius: var(--border-radius);
	height: var(--height);
	min-height: var(--min-height);
	min-width: 0;
	overflow: var(--overflow);
	position: var(--position);
	transition: background var(--background-transition, .3s), border var(--border-transition, .3s), box-shadow var(--border-transition, .3s), transform var(--e-con-transform-transition-duration, .4s);
	width: var(--width);
	z-index: var(--z-index);
	--flex-wrap-mobile: wrap;
	margin-block-end: var(--margin-block-end);
	margin-block-start: var(--margin-block-start);
	margin-inline-end: var(--margin-inline-end);
	margin-inline-start: var(--margin-inline-start);
	padding-inline-end: var(--padding-inline-end);
	padding-inline-start: var(--padding-inline-start);
	--margin-block-start: var(--margin-top);
	--margin-block-end: var(--margin-bottom);
	--margin-inline-start: var(--margin-left);
	--margin-inline-end: var(--margin-right);
	--padding-inline-start: var(--padding-left);
	--padding-inline-end: var(--padding-right);
	--padding-block-start: var(--padding-top);
	--padding-block-end: var(--padding-bottom);
	--border-block-start-width: var(--border-top-width);
	--border-block-end-width: var(--border-bottom-width);
	--border-inline-start-width: var(--border-left-width);
	--border-inline-end-width: var(--border-right-width);
}

body.rtl .e-con {
	--padding-inline-start: var(--padding-right);
	--padding-inline-end: var(--padding-left);
	--margin-inline-start: var(--margin-right);
	--margin-inline-end: var(--margin-left);
	--border-inline-start-width: var(--border-right-width);
	--border-inline-end-width: var(--border-left-width);
}

.e-con.e-flex {
	--flex-direction: column;
	--flex-basis: auto;
	--flex-grow: 0;
	--flex-shrink: 1;
	flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis);
}

.e-con-full, .e-con>.e-con-inner {
	padding-block-end: var(--padding-block-end);
	padding-block-start: var(--padding-block-start);
	text-align: var(--text-align);
}

.e-con-full.e-flex, .e-con.e-flex>.e-con-inner {
	flex-direction: var(--flex-direction);
}

.e-con, .e-con>.e-con-inner {
	display: var(--display);
}

.e-con.e-grid {
	--grid-justify-content: start;
	--grid-align-content: start;
	--grid-auto-flow: row;
}

.e-con.e-grid, .e-con.e-grid>.e-con-inner {
	align-content: var(--grid-align-content);
	align-items: var(--align-items);
	grid-auto-flow: var(--grid-auto-flow);
	grid-template-columns: var(--e-con-grid-template-columns);
	grid-template-rows: var(--e-con-grid-template-rows);
	justify-content: var(--grid-justify-content);
	justify-items: var(--justify-items);
}

.e-con-boxed.e-flex {
	align-content: normal;
	align-items: normal;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: normal;
}

.e-con-boxed.e-grid {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	justify-items: legacy;
}

.e-con-boxed {
	gap: initial;
	text-align: initial;
}

.e-con.e-flex>.e-con-inner {
	align-content: var(--align-content);
	align-items: var(--align-items);
	align-self: auto;
	flex-basis: auto;
	flex-grow: 1;
	flex-shrink: 1;
	flex-wrap: var(--flex-wrap);
	justify-content: var(--justify-content);
}

.e-con.e-grid>.e-con-inner {
	align-items: var(--align-items);
	justify-items: var(--justify-items);
}

.e-con>.e-con-inner {
	gap: var(--row-gap) var(--column-gap);
	height: 100%;
	margin: 0 auto;
	max-width: var(--content-width);
	padding-inline-end: 0;
	padding-inline-start: 0;
	width: 100%;
}

:is(.elementor-section-wrap, [data-elementor-id])>.e-con {
	--margin-left: auto;
	--margin-right: auto;
	max-width: min(100%, var(--width));
}

.e-con .elementor-widget.elementor-widget {
	margin-block-end: 0;
}

.e-con:before, .e-con>.elementor-background-slideshow:before, .e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before, :is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
	border-block-end-width: var(--border-block-end-width);
	border-block-start-width: var(--border-block-start-width);
	border-color: var(--border-color);
	border-inline-end-width: var(--border-inline-end-width);
	border-inline-start-width: var(--border-inline-start-width);
	border-radius: var(--border-radius);
	border-style: var(--border-style);
	content: var(--background-overlay);
	display: block;
	height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%);
	left: calc(0px - var(--border-left-width));
	mix-blend-mode: var(--overlay-mix-blend-mode);
	opacity: var(--overlay-opacity);
	position: absolute;
	top: calc(0px - var(--border-top-width));
	transition: var(--overlay-transition, .3s);
	width: max(100% + var(--border-left-width) + var(--border-right-width), 100%);
}

.e-con:before {
	transition: background var(--overlay-transition, .3s), border-radius var(--border-transition, .3s), opacity var(--overlay-transition, .3s);
}

.e-con>.elementor-background-slideshow, :is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container {
	border-block-end-width: var(--border-block-end-width);
	border-block-start-width: var(--border-block-start-width);
	border-color: var(--border-color);
	border-inline-end-width: var(--border-inline-end-width);
	border-inline-start-width: var(--border-inline-start-width);
	border-radius: var(--border-radius);
	border-style: var(--border-style);
	height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%);
	left: calc(0px - var(--border-left-width));
	top: calc(0px - var(--border-top-width));
	width: max(100% + var(--border-left-width) + var(--border-right-width), 100%);
}

@media (max-width:767px) {
	:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile {
		display: none;
	}
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
	z-index: 1;
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-slideshow:before {
	z-index: 2;
}

.e-con .elementor-widget {
	min-width: 0;
}

.e-con .elementor-widget-empty, .e-con .elementor-widget-google_maps, .e-con .elementor-widget-video, .e-con .elementor-widget.e-widget-swiper {
	width: 100%;
}

.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container, .e-con>.elementor-widget>.elementor-widget-container {
	height: 100%;
}

.e-con.e-con>.e-con-inner>.elementor-widget, .elementor.elementor .e-con>.elementor-widget {
	max-width: 100%;
}

.e-con .elementor-widget:not(:last-child) {
	--kit-widget-spacing: 0px;
}

@media (max-width:767px) {
	.e-con.e-flex {
		--width: 100%;
		--flex-wrap: var(--flex-wrap-mobile);
	}
	
	.e-con.e-flex .elementor-widget-archive-posts {
		width: 100%;
	}
}

.elementor-form-fields-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea {
	flex-basis: 100%;
	max-width: 100%;
}

.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper, .elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input {
	flex-grow: 1;
}

.elementor-field-group {
	align-items: center;
	flex-wrap: wrap;
}

.elementor-field-group.elementor-field-type-submit {
	align-items: flex-end;
}

.elementor-field-group .elementor-field-textual {
	background-color: transparent;
	border: 1px solid #69727d;
	color: #1f2124;
	flex-grow: 1;
	max-width: 100%;
	vertical-align: middle;
	width: 100%;
}

.elementor-field-group .elementor-field-textual:focus {
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
	outline: 0;
}

.elementor-field-group .elementor-field-textual::-moz-placeholder {
	color: inherit;
	font-family: inherit;
	opacity: .6;
}

.elementor-field-group .elementor-field-textual::placeholder {
	color: inherit;
	font-family: inherit;
	opacity: .6;
}

.elementor-field-group .elementor-select-wrapper {
	display: flex;
	position: relative;
	width: 100%;
}

.elementor-field-group .elementor-select-wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
	flex-basis: 100%;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	padding-inline-end: 20px;
	text-transform: inherit;
}

.elementor-field-group .elementor-select-wrapper:before {
	content: "";
	font-family: eicons;
	font-size: 15px;
	pointer-events: none;
	position: absolute;
	right: 10px;
	text-shadow: 0 0 3px rgba(0, 0, 0, .3);
	top: 50%;
	transform: translateY(-50%);
}

.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before {
	content: "";
}

.elementor-field-subgroup {
	display: flex;
	flex-wrap: wrap;
}

.elementor-field-subgroup .elementor-field-option label {
	display: inline-block;
}

.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option {
	padding-inline-end: 10px;
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
	flex-basis: 100%;
}

.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label, .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label, .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
	display: inline;
}

.elementor-field-label {
	cursor: pointer;
}

.elementor-mark-required .elementor-field-label:after {
	color: red;
	content: "*";
	padding-inline-start: .2em;
}

.elementor-field-textual {
	border-radius: 3px;
	font-size: 15px;
	line-height: 1.4;
	min-height: 40px;
	padding: 5px 14px;
}

.elementor-field-textual.elementor-size-xs {
	border-radius: 2px;
	font-size: 13px;
	min-height: 33px;
	padding: 4px 12px;
}

.elementor-field-textual.elementor-size-md {
	border-radius: 4px;
	font-size: 16px;
	min-height: 47px;
	padding: 6px 16px;
}

.elementor-field-textual.elementor-size-lg {
	border-radius: 5px;
	font-size: 18px;
	min-height: 59px;
	padding: 7px 20px;
}

.elementor-field-textual.elementor-size-xl {
	border-radius: 6px;
	font-size: 20px;
	min-height: 72px;
	padding: 8px 24px;
}

.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
	flex-basis: 100%;
}

.elementor-button-align-stretch .e-form__buttons__wrapper {
	flex-basis: 50%;
	flex-grow: 1;
}

.elementor-button-align-stretch .e-form__buttons__wrapper__button {
	flex-basis: 100%;
}

.elementor-button-align-center .e-form__buttons, .elementor-button-align-center .elementor-field-type-submit {
	justify-content: center;
}

.elementor-button-align-start .e-form__buttons, .elementor-button-align-start .elementor-field-type-submit {
	justify-content: flex-start;
}

.elementor-button-align-end .e-form__buttons, .elementor-button-align-end .elementor-field-type-submit {
	justify-content: flex-end;
}

.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
	flex-basis: auto;
}

.elementor-button-align-center .e-form__buttons__wrapper, .elementor-button-align-end .e-form__buttons__wrapper, .elementor-button-align-start .e-form__buttons__wrapper {
	flex-grow: 0;
}

.elementor-button-align-center .e-form__buttons__wrapper, .elementor-button-align-center .e-form__buttons__wrapper__button, .elementor-button-align-end .e-form__buttons__wrapper, .elementor-button-align-end .e-form__buttons__wrapper__button, .elementor-button-align-start .e-form__buttons__wrapper, .elementor-button-align-start .e-form__buttons__wrapper__button {
	flex-basis: auto;
}

@media screen and (max-width:1024px) {
	.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
		flex-basis: 100%;
	}
	
	.elementor-tablet-button-align-stretch .e-form__buttons__wrapper {
		flex-basis: 50%;
		flex-grow: 1;
	}
	
	.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button {
		flex-basis: 100%;
	}
	
	.elementor-tablet-button-align-center .e-form__buttons, .elementor-tablet-button-align-center .elementor-field-type-submit {
		justify-content: center;
	}
	
	.elementor-tablet-button-align-start .e-form__buttons, .elementor-tablet-button-align-start .elementor-field-type-submit {
		justify-content: flex-start;
	}
	
	.elementor-tablet-button-align-end .e-form__buttons, .elementor-tablet-button-align-end .elementor-field-type-submit {
		justify-content: flex-end;
	}
	
	.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
		flex-basis: auto;
	}
	
	.elementor-tablet-button-align-center .e-form__buttons__wrapper, .elementor-tablet-button-align-end .e-form__buttons__wrapper, .elementor-tablet-button-align-start .e-form__buttons__wrapper {
		flex-grow: 0;
	}
	
	.elementor-tablet-button-align-center .e-form__buttons__wrapper, .elementor-tablet-button-align-center .e-form__buttons__wrapper__button, .elementor-tablet-button-align-end .e-form__buttons__wrapper, .elementor-tablet-button-align-end .e-form__buttons__wrapper__button, .elementor-tablet-button-align-start .e-form__buttons__wrapper, .elementor-tablet-button-align-start .e-form__buttons__wrapper__button {
		flex-basis: auto;
	}
}

@media screen and (max-width:767px) {
	.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
		flex-basis: 100%;
	}
	
	.elementor-mobile-button-align-stretch .e-form__buttons__wrapper {
		flex-basis: 50%;
		flex-grow: 1;
	}
	
	.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button {
		flex-basis: 100%;
	}
	
	.elementor-mobile-button-align-center .e-form__buttons, .elementor-mobile-button-align-center .elementor-field-type-submit {
		justify-content: center;
	}
	
	.elementor-mobile-button-align-start .e-form__buttons, .elementor-mobile-button-align-start .elementor-field-type-submit {
		justify-content: flex-start;
	}
	
	.elementor-mobile-button-align-end .e-form__buttons, .elementor-mobile-button-align-end .elementor-field-type-submit {
		justify-content: flex-end;
	}
	
	.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
		flex-basis: auto;
	}
	
	.elementor-mobile-button-align-center .e-form__buttons__wrapper, .elementor-mobile-button-align-end .e-form__buttons__wrapper, .elementor-mobile-button-align-start .e-form__buttons__wrapper {
		flex-grow: 0;
	}
	
	.elementor-mobile-button-align-center .e-form__buttons__wrapper, .elementor-mobile-button-align-center .e-form__buttons__wrapper__button, .elementor-mobile-button-align-end .e-form__buttons__wrapper, .elementor-mobile-button-align-end .e-form__buttons__wrapper__button, .elementor-mobile-button-align-start .e-form__buttons__wrapper, .elementor-mobile-button-align-start .e-form__buttons__wrapper__button {
		flex-basis: auto;
	}
}

.elementor-error .elementor-field {
	border-color: #d9534f;
}

.elementor-error .help-inline {
	color: #d9534f;
	font-size: .9em;
}

.elementor-message {
	font-size: 1em;
	line-height: 1;
	margin: 10px 0;
}

.elementor-message:before {
	content: "";
	display: inline-block;
	font-family: eicons;
	font-style: normal;
	font-weight: 400;
	margin-inline-end: 5px;
	vertical-align: middle;
}

.elementor-message.elementor-message-danger {
	color: #d9534f;
}

.elementor-message.elementor-message-danger:before {
	content: "";
}

.elementor-message.form-message-success {
	color: #5cb85c;
}

.elementor-form .elementor-button {
	border: none;
	padding-block-end: 0;
	padding-block-start: 0;
}

.elementor-form .elementor-button-content-wrapper, .elementor-form .elementor-button>span {
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: center;
}

.elementor-form .elementor-button.elementor-size-xs {
	min-height: 33px;
}

.elementor-form .elementor-button.elementor-size-sm {
	min-height: 40px;
}

.elementor-form .elementor-button.elementor-size-md {
	min-height: 47px;
}

.elementor-form .elementor-button.elementor-size-lg {
	min-height: 59px;
}

.elementor-form .elementor-button.elementor-size-xl {
	min-height: 72px;
}

.elementor-element .elementor-widget-container, .elementor-element:not(:has(.elementor-widget-container)) {
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.elementor-heading-title {
	line-height: 1;
	margin: 0;
	padding: 0;
}

.elementor-button {
	background-color: #69727d;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	line-height: 1;
	padding: 12px 24px;
	fill: #fff;
	text-align: center;
	transition: all .3s;
}

.elementor-button:focus, .elementor-button:hover, .elementor-button:visited {
	color: #fff;
}

.elementor-button-content-wrapper {
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: center;
}

.elementor-button-icon {
	align-items: center;
	display: flex;
}

.elementor-button-icon svg {
	height: auto;
	width: 1em;
}

.elementor-button-icon .e-font-icon-svg {
	height: 1em;
}

.elementor-button-text {
	display: inline-block;
}

.elementor-button.elementor-size-xs {
	border-radius: 2px;
	font-size: 13px;
	padding: 10px 20px;
}

.elementor-button.elementor-size-md {
	border-radius: 4px;
	font-size: 16px;
	padding: 15px 30px;
}

.elementor-button.elementor-size-lg {
	border-radius: 5px;
	font-size: 18px;
	padding: 20px 40px;
}

.elementor-button.elementor-size-xl {
	border-radius: 6px;
	font-size: 20px;
	padding: 25px 50px;
}

.elementor-button span {
	text-decoration: inherit;
}

.elementor-element.elementor-button-info .elementor-button {
	background-color: #5bc0de;
}

.elementor-element.elementor-button-success .elementor-button {
	background-color: #5cb85c;
}

.elementor-element.elementor-button-warning .elementor-button {
	background-color: #f0ad4e;
}

.elementor-element.elementor-button-danger .elementor-button {
	background-color: #d9534f;
}

.elementor-widget-button .elementor-button .elementor-button-info {
	background-color: #5bc0de;
}

.elementor-widget-button .elementor-button .elementor-button-success {
	background-color: #5cb85c;
}

.elementor-widget-button .elementor-button .elementor-button-warning {
	background-color: #f0ad4e;
}

.elementor-widget-button .elementor-button .elementor-button-danger {
	background-color: #d9534f;
}

.elementor-view-stacked .elementor-icon {
	background-color: #69727d;
	color: #fff;
	padding: .5em;
	fill: #fff;
}

.elementor-view-framed .elementor-icon {
	background-color: transparent;
	border: 3px solid #69727d;
	color: #69727d;
	padding: .5em;
}

.elementor-icon {
	color: #69727d;
	display: inline-block;
	font-size: 50px;
	line-height: 1;
	text-align: center;
	transition: all .3s;
}

.elementor-icon:hover {
	color: #69727d;
}

.elementor-icon i, .elementor-icon svg {
	display: block;
	height: 1em;
	position: relative;
	width: 1em;
}

.elementor-icon i:before, .elementor-icon svg:before {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.elementor-icon i.fad {
	width: auto;
}

.elementor-shape-square .elementor-icon {
	border-radius: 0;
}

.elementor-shape-rounded .elementor-icon {
	border-radius: 10%;
}

.elementor-shape-circle .elementor-icon {
	border-radius: 50%;
}

.e-transform .elementor-widget-container, .e-transform:not(:has(.elementor-widget-container)) {
	transform: perspective(var(--e-transform-perspective, 0)) rotate(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0)) rotateY(var(--e-transform-rotateY, 0)) translate(var(--e-transform-translate, 0)) translateX(var(--e-transform-translateX, 0)) translateY(var(--e-transform-translateY, 0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0));
	transform-origin: var(--e-transform-origin-y) var(--e-transform-origin-x);
}

.e-con.e-transform {
	transform: perspective(var(--e-con-transform-perspective, 0)) rotate(var(--e-con-transform-rotateZ, 0)) rotateX(var(--e-con-transform-rotateX, 0)) rotateY(var(--e-con-transform-rotateY, 0)) translate(var(--e-con-transform-translate, 0)) translateX(var(--e-con-transform-translateX, 0)) translateY(var(--e-con-transform-translateY, 0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX, 0)) skewY(var(--e-con-transform-skewY, 0));
	transform-origin: var(--e-con-transform-origin-y) var(--e-con-transform-origin-x);
}

.animated {
	animation-duration: 1.25s;
}

.animated.animated-slow {
	animation-duration: 2s;
}

.animated.animated-fast {
	animation-duration: .75s;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.reverse {
	animation-direction: reverse;
	animation-fill-mode: forwards;
}

@media (prefers-reduced-motion:reduce) {
	.animated {
		animation: none;
	}
}

@media (max-width:767px) {
	.elementor .elementor-hidden-mobile, .elementor .elementor-hidden-phone {
		display: none;
	}
}

@media (min-width:-1) and (max-width:-1) {
	.elementor .elementor-hidden-mobile_extra {
		display: none;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	.elementor .elementor-hidden-tablet {
		display: none;
	}
}

@media (min-width:-1) and (max-width:-1) {
	.elementor .elementor-hidden-laptop, .elementor .elementor-hidden-tablet_extra {
		display: none;
	}
}

@media (min-width:1025px) and (max-width:99999px) {
	.elementor .elementor-hidden-desktop {
		display: none;
	}
}

@media (min-width:-1) {
	.elementor .elementor-hidden-widescreen {
		display: none;
	}
}
/* End Custom Fonts CSS */

.elementor-kit-16328 {
	--e-global-color-primary: #fff;
	--e-global-color-secondary: #000;
	--e-global-color-text: #fff;
	--e-global-color-accent: #f89a42;
	--e-global-typography-primary-font-family: "Roboto";
	--e-global-typography-primary-font-weight: 300;
	--e-global-typography-secondary-font-family: "Roboto Slab";
	--e-global-typography-secondary-font-weight: 300;
	--e-global-typography-text-font-family: "Roboto";
	--e-global-typography-text-font-weight: 400;
	--e-global-typography-accent-font-family: "Roboto";
	--e-global-typography-accent-font-weight: 500;
	background-color: #000;
	color: #fff;
	font-family: "Roboto", Sans-serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 25px;
}

.elementor-kit-16328 e-page-transition {
	background-color: #ffbc7d;
}

.elementor-kit-16328 a {
	color: var(--e-global-color-accent);
}

.elementor-kit-16328 a:hover {
	color: #f89a42;
}

.elementor-kit-16328 h1 {
	color: #fff;
	font-family: "Neptune", Sans-serif;
	font-size: 95px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1em;
	letter-spacing: -.32px;
}

.elementor-kit-16328 h2 {
	color: #fff;
	font-family: "Neptune", Sans-serif;
	font-size: 75px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 80px;
	letter-spacing: -.32px;
}

.elementor-kit-16328 h3 {
	color: #fff;
	font-family: "Roboto", Sans-serif;
	font-size: 45px;
	font-weight: 300;
}

.elementor-kit-16328 h4 {
	font-family: "Roboto", Sans-serif;
	font-weight: 300;
}

.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1140px;
}

.e-con {
	--container-max-width: 1140px;
}

.elementor-widget:not(:last-child) {
	margin-block-end: 20px;
}

.elementor-element {
	--widgets-spacing: 20px 20px;
	--widgets-spacing-row: 20px;
	--widgets-spacing-column: 20px;
}

.site-header .site-branding {
	flex-direction: column;
	align-items: stretch;
}

.site-header {
	padding-inline-end: 0px;
	padding-inline-start: 0px;
}

.site-footer .site-branding {
	flex-direction: column;
	align-items: stretch;
}

@media (max-width:1024px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 1024px;
	}
	
	.e-con {
		--container-max-width: 1024px;
	}
}

@media (max-width:767px) {
	.elementor-kit-16328 {
		--e-global-typography-text-font-size: 17px;
		--e-global-typography-text-line-height: 25px;
	}
	
	.elementor-kit-16328 h1 {
		font-size: 37px;
		line-height: 1em;
	}
	
	.elementor-kit-16328 h2 {
		font-size: 34px;
	}
	
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 767px;
	}
	
	.e-con {
		--container-max-width: 767px;
	}
}

.extensions-for-elementor-form.custom-sucess-message {
	display: none;
}

/*! elementor - v3.28.0 - 01-04-2025 */
.elementor-widget-image {
	text-align: center;
}

.elementor-widget-image a {
	display: inline-block;
}

.elementor-widget-image a img[src$=".svg"] {
	width: 48px;
}

.elementor-widget-image img {
	display: inline-block;
	vertical-align: middle;
}

.elementor-sticky--active {
	z-index: 99;
}

.elementor-sticky__spacer .e-n-menu .e-n-menu-content {
	display: none;
}

.e-con.elementor-sticky--active {
	z-index: var(--z-index, 99);
}

/*! elementor-pro - v3.28.0 - 30-03-2025 */
@charset "UTF-8";

.site-main .menu-navigation-container {
	overflow: visible;
}

.elementor-item:after, .elementor-item:before {
	display: block;
	position: absolute;
	transition: .3s;
	transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	opacity: 0;
}

.elementor-item-active:after, .elementor-item-active:before, .elementor-item.highlighted:after, .elementor-item.highlighted:before, .elementor-item:focus:after, .elementor-item:focus:before, .elementor-item:hover:after, .elementor-item:hover:before {
	transform: scale(1);
}

.e--pointer-double-line .elementor-item:after, .e--pointer-double-line .elementor-item:before, .e--pointer-overline .elementor-item:after, .e--pointer-overline .elementor-item:before, .e--pointer-underline .elementor-item:after, .e--pointer-underline .elementor-item:before {
	background-color: #3f444b;
	height: 3px;
	left: 0;
	width: 100%;
	z-index: 2;
}

.e--pointer-double-line.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-double-line.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-overline.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-overline.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-underline.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-underline.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	height: 0;
	left: 50%;
	width: 0;
}

.e--pointer-double-line.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-overline.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-underline.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	top: 10px;
}

.e--pointer-double-line.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-overline.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-underline.e--animation-drop-out .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after {
	bottom: 10px;
}

.e--pointer-double-line.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-overline.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-underline.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	top: -10px;
}

.e--pointer-double-line.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-overline.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-underline.e--animation-drop-in .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after {
	bottom: -10px;
}

.e--pointer-double-line.e--animation-none, .e--pointer-double-line.e--animation-none .elementor-item, .e--pointer-double-line.e--animation-none .elementor-item:after, .e--pointer-double-line.e--animation-none .elementor-item:before, .e--pointer-double-line.e--animation-none .elementor-item:focus, .e--pointer-double-line.e--animation-none .elementor-item:hover, .e--pointer-double-line.e--animation-none:after, .e--pointer-double-line.e--animation-none:before, .e--pointer-double-line.e--animation-none:focus, .e--pointer-double-line.e--animation-none:hover, .e--pointer-overline.e--animation-none, .e--pointer-overline.e--animation-none .elementor-item, .e--pointer-overline.e--animation-none .elementor-item:after, .e--pointer-overline.e--animation-none .elementor-item:before, .e--pointer-overline.e--animation-none .elementor-item:focus, .e--pointer-overline.e--animation-none .elementor-item:hover, .e--pointer-overline.e--animation-none:after, .e--pointer-overline.e--animation-none:before, .e--pointer-overline.e--animation-none:focus, .e--pointer-overline.e--animation-none:hover, .e--pointer-underline.e--animation-none, .e--pointer-underline.e--animation-none .elementor-item, .e--pointer-underline.e--animation-none .elementor-item:after, .e--pointer-underline.e--animation-none .elementor-item:before, .e--pointer-underline.e--animation-none .elementor-item:focus, .e--pointer-underline.e--animation-none .elementor-item:hover, .e--pointer-underline.e--animation-none:after, .e--pointer-underline.e--animation-none:before, .e--pointer-underline.e--animation-none:focus, .e--pointer-underline.e--animation-none:hover {
	transition-duration: 0s;
}

.e--pointer-double-line .elementor-item:before, .e--pointer-overline .elementor-item:before {
	content: "";
	top: 0;
}

.e--pointer-double-line.e--animation-slide .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before, .e--pointer-overline.e--animation-slide .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	left: -20px;
	width: 10px;
}

.e--pointer-double-line .elementor-item:after, .e--pointer-underline .elementor-item:after {
	bottom: 0;
	content: "";
}

.e--pointer-double-line.e--animation-slide .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after, .e--pointer-underline.e--animation-slide .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after {
	inset-inline-start: 100%;
	width: 10px;
}

.e--pointer-framed .elementor-item:after, .e--pointer-framed .elementor-item:before {
	background: transparent;
	border: 3px solid #3f444b;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

.e--pointer-framed .elementor-item:before {
	content: "";
}

.e--pointer-framed.e--animation-grow .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	transform: scale(.75);
}

.e--pointer-framed.e--animation-shrink .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	transform: scale(1.25);
}

.e--pointer-framed.e--animation-grow .elementor-item:before, .e--pointer-framed.e--animation-shrink .elementor-item:before {
	transition: opacity .2s, transform .4s;
}

.e--pointer-framed.e--animation-draw .elementor-item:after, .e--pointer-framed.e--animation-draw .elementor-item:before {
	height: 3px;
	width: 3px;
}

.e--pointer-framed.e--animation-draw .elementor-item:before {
	border-width: 0 0 3px 3px;
	transition: width .1s .2s, height .1s .3s, opacity .12s .22s;
}

.e--pointer-framed.e--animation-draw .elementor-item:after {
	border-width: 3px 3px 0 0;
	bottom: 0;
	content: "";
	left: auto;
	right: 0;
	top: auto;
	transition: width .1s, height .1s .1s, opacity .02s .18s;
}

.e--pointer-framed.e--animation-draw .elementor-item-active:after, .e--pointer-framed.e--animation-draw .elementor-item-active:before, .e--pointer-framed.e--animation-draw .elementor-item.highlighted:after, .e--pointer-framed.e--animation-draw .elementor-item.highlighted:before, .e--pointer-framed.e--animation-draw .elementor-item:focus:after, .e--pointer-framed.e--animation-draw .elementor-item:focus:before, .e--pointer-framed.e--animation-draw .elementor-item:hover:after, .e--pointer-framed.e--animation-draw .elementor-item:hover:before {
	height: 100%;
	width: 100%;
}

.e--pointer-framed.e--animation-draw .elementor-item-active:before, .e--pointer-framed.e--animation-draw .elementor-item.highlighted:before, .e--pointer-framed.e--animation-draw .elementor-item:focus:before, .e--pointer-framed.e--animation-draw .elementor-item:hover:before {
	transition: opacity .02s, height .1s, width .1s .1s;
}

.e--pointer-framed.e--animation-draw .elementor-item-active:after, .e--pointer-framed.e--animation-draw .elementor-item.highlighted:after, .e--pointer-framed.e--animation-draw .elementor-item:focus:after, .e--pointer-framed.e--animation-draw .elementor-item:hover:after {
	transition: opacity .02s .2s, height .1s .2s, width .1s .3s;
}

.e--pointer-framed.e--animation-corners .elementor-item:after, .e--pointer-framed.e--animation-corners .elementor-item:before {
	height: 3px;
	width: 3px;
}

.e--pointer-framed.e--animation-corners .elementor-item:before {
	border-width: 3px 0 0 3px;
}

.e--pointer-framed.e--animation-corners .elementor-item:after {
	border-width: 0 3px 3px 0;
	bottom: 0;
	content: "";
	left: auto;
	right: 0;
	top: auto;
}

.e--pointer-framed.e--animation-corners .elementor-item-active:after, .e--pointer-framed.e--animation-corners .elementor-item-active:before, .e--pointer-framed.e--animation-corners .elementor-item.highlighted:after, .e--pointer-framed.e--animation-corners .elementor-item.highlighted:before, .e--pointer-framed.e--animation-corners .elementor-item:focus:after, .e--pointer-framed.e--animation-corners .elementor-item:focus:before, .e--pointer-framed.e--animation-corners .elementor-item:hover:after, .e--pointer-framed.e--animation-corners .elementor-item:hover:before {
	height: 100%;
	transition: opacity 2ms, width .4s, height .4s;
	width: 100%;
}

.e--pointer-framed.e--animation-none, .e--pointer-framed.e--animation-none .elementor-item, .e--pointer-framed.e--animation-none .elementor-item:after, .e--pointer-framed.e--animation-none .elementor-item:before, .e--pointer-framed.e--animation-none .elementor-item:focus, .e--pointer-framed.e--animation-none .elementor-item:hover, .e--pointer-framed.e--animation-none:after, .e--pointer-framed.e--animation-none:before, .e--pointer-framed.e--animation-none:focus, .e--pointer-framed.e--animation-none:hover {
	transition-duration: 0s;
}

.e--pointer-background .elementor-item:after, .e--pointer-background .elementor-item:before {
	content: "";
	transition: .3s;
}

.e--pointer-background .elementor-item:before {
	background: #3f444b;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}

.e--pointer-background .elementor-item-active, .e--pointer-background .elementor-item.highlighted, .e--pointer-background .elementor-item:focus, .e--pointer-background .elementor-item:hover {
	color: #fff;
}

.e--pointer-background.e--animation-grow .elementor-item:before {
	transform: scale(.5);
}

.e--pointer-background.e--animation-grow .elementor-item-active:before, .e--pointer-background.e--animation-grow .elementor-item.highlighted:before, .e--pointer-background.e--animation-grow .elementor-item:focus:before, .e--pointer-background.e--animation-grow .elementor-item:hover:before {
	opacity: 1;
	transform: scale(1);
}

.e--pointer-background.e--animation-shrink .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	transform: scale(1.2);
	transition: .3s;
}

.e--pointer-background.e--animation-shrink .elementor-item-active:before, .e--pointer-background.e--animation-shrink .elementor-item.highlighted:before, .e--pointer-background.e--animation-shrink .elementor-item:focus:before, .e--pointer-background.e--animation-shrink .elementor-item:hover:before {
	transition: opacity .15s, transform .4s;
}

.e--pointer-background.e--animation-sweep-left .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	left: 100%;
}

.e--pointer-background.e--animation-sweep-right .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	right: 100%;
}

.e--pointer-background.e--animation-sweep-up .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	top: 100%;
}

.e--pointer-background.e--animation-sweep-down .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	bottom: 100%;
}

.e--pointer-background.e--animation-shutter-out-vertical .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	bottom: 50%;
	top: 50%;
}

.e--pointer-background.e--animation-shutter-out-horizontal .elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before {
	left: 50%;
	right: 50%;
}

.e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:after, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item:after {
	background: #3f444b;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}

.e--pointer-background.e--animation-shutter-in-vertical .elementor-item:before {
	bottom: 100%;
	top: 0;
}

.e--pointer-background.e--animation-shutter-in-vertical .elementor-item:after {
	bottom: 0;
	top: 100%;
}

.e--pointer-background.e--animation-shutter-in-vertical .elementor-item-active:before, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item.highlighted:before, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item:focus:before, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item:hover:before {
	bottom: 50%;
}

.e--pointer-background.e--animation-shutter-in-vertical .elementor-item-active:after, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item.highlighted:after, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item:focus:after, .e--pointer-background.e--animation-shutter-in-vertical .elementor-item:hover:after {
	top: 50%;
}

.e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:before {
	left: 100%;
	right: 0;
}

.e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:after {
	left: 0;
	right: 100%;
}

.e--pointer-background.e--animation-shutter-in-horizontal .elementor-item-active:before, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item.highlighted:before, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:focus:before, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:hover:before {
	left: 50%;
}

.e--pointer-background.e--animation-shutter-in-horizontal .elementor-item-active:after, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item.highlighted:after, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:focus:after, .e--pointer-background.e--animation-shutter-in-horizontal .elementor-item:hover:after {
	right: 50%;
}

.e--pointer-background.e--animation-none, .e--pointer-background.e--animation-none .elementor-item, .e--pointer-background.e--animation-none .elementor-item:after, .e--pointer-background.e--animation-none .elementor-item:before, .e--pointer-background.e--animation-none .elementor-item:focus, .e--pointer-background.e--animation-none .elementor-item:hover, .e--pointer-background.e--animation-none:after, .e--pointer-background.e--animation-none:before, .e--pointer-background.e--animation-none:focus, .e--pointer-background.e--animation-none:hover {
	transition-duration: 0s;
}

.e--pointer-text.e--animation-skew .elementor-item:focus, .e--pointer-text.e--animation-skew .elementor-item:hover {
	transform: skew(-8deg);
}

.e--pointer-text.e--animation-grow .elementor-item:focus, .e--pointer-text.e--animation-grow .elementor-item:hover {
	transform: scale(1.2);
}

.e--pointer-text.e--animation-shrink .elementor-item:focus, .e--pointer-text.e--animation-shrink .elementor-item:hover {
	transform: scale(.8);
}

.e--pointer-text.e--animation-float .elementor-item:focus, .e--pointer-text.e--animation-float .elementor-item:hover {
	transform: translateY(-8px);
}

.e--pointer-text.e--animation-sink .elementor-item:focus, .e--pointer-text.e--animation-sink .elementor-item:hover {
	transform: translateY(8px);
}

.e--pointer-text.e--animation-rotate .elementor-item:focus, .e--pointer-text.e--animation-rotate .elementor-item:hover {
	transform: rotate(6deg);
}

.e--pointer-text.e--animation-none, .e--pointer-text.e--animation-none .elementor-item, .e--pointer-text.e--animation-none .elementor-item:after, .e--pointer-text.e--animation-none .elementor-item:before, .e--pointer-text.e--animation-none .elementor-item:focus, .e--pointer-text.e--animation-none .elementor-item:hover, .e--pointer-text.e--animation-none:after, .e--pointer-text.e--animation-none:before, .e--pointer-text.e--animation-none:focus, .e--pointer-text.e--animation-none:hover {
	transition-duration: 0s;
}

.elementor-nav-menu--main .elementor-nav-menu a {
	transition: .4s;
}

.elementor-nav-menu--main .elementor-nav-menu a, .elementor-nav-menu--main .elementor-nav-menu a.highlighted, .elementor-nav-menu--main .elementor-nav-menu a:focus, .elementor-nav-menu--main .elementor-nav-menu a:hover {
	padding: 13px 20px;
}

.elementor-nav-menu--main .elementor-nav-menu a.current {
	background: #1f2124;
	color: #fff;
}

.elementor-nav-menu--main .elementor-nav-menu a.disabled {
	background: #3f444b;
	color: #88909b;
}

.elementor-nav-menu--main .elementor-nav-menu ul {
	border-style: solid;
	border-width: 0;
	padding: 0;
	position: absolute;
	width: 12em;
}

.elementor-nav-menu--main .elementor-nav-menu span.scroll-down, .elementor-nav-menu--main .elementor-nav-menu span.scroll-up {
	background: #fff;
	display: none;
	height: 20px;
	overflow: hidden;
	position: absolute;
	visibility: hidden;
}

.elementor-nav-menu--main .elementor-nav-menu span.scroll-down-arrow, .elementor-nav-menu--main .elementor-nav-menu span.scroll-up-arrow {
	border: 8px dashed transparent;
	border-bottom: 8px solid #33373d;
	height: 0;
	left: 50%;
	margin-inline-start: -8px;
	overflow: hidden;
	position: absolute;
	top: -2px;
	width: 0;
}

.elementor-nav-menu--main .elementor-nav-menu span.scroll-down-arrow {
	border-color: #33373d transparent transparent;
	border-style: solid dashed dashed;
	top: 6px;
}

.elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow .e-font-icon-svg, .elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow i {
	transform: rotate(-90deg);
}

.elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow .e-font-icon-svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.elementor-nav-menu--layout-horizontal {
	display: flex;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu {
	display: flex;
	flex-wrap: wrap;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu a {
	flex-grow: 1;
	white-space: nowrap;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li {
	display: flex;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li ul, .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li>.scroll-down {
	top: 100% !important;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>a {
	margin-inline-start: var(--e-nav-menu-horizontal-menu-item-margin);
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>.scroll-down, .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>.scroll-up, .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>ul {
	left: var(--e-nav-menu-horizontal-menu-item-margin) !important;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:last-child)>a {
	margin-inline-end: var(--e-nav-menu-horizontal-menu-item-margin);
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:last-child):after {
	align-self: center;
	border-color: var(--e-nav-menu-divider-color, #000);
	border-left-style: var(--e-nav-menu-divider-style, solid);
	border-left-width: var(--e-nav-menu-divider-width, 2px);
	content: var(--e-nav-menu-divider-content, none);
	height: var(--e-nav-menu-divider-height, 35%);
}

.elementor-nav-menu__align-right .elementor-nav-menu {
	justify-content: flex-end;
	margin-left: auto;
}

.elementor-nav-menu__align-right .elementor-nav-menu--layout-vertical>ul>li>a {
	justify-content: flex-end;
}

.elementor-nav-menu__align-left .elementor-nav-menu {
	justify-content: flex-start;
	margin-right: auto;
}

.elementor-nav-menu__align-left .elementor-nav-menu--layout-vertical>ul>li>a {
	justify-content: flex-start;
}

.elementor-nav-menu__align-start .elementor-nav-menu {
	justify-content: flex-start;
	margin-inline-end: auto;
}

.elementor-nav-menu__align-start .elementor-nav-menu--layout-vertical>ul>li>a {
	justify-content: flex-start;
}

.elementor-nav-menu__align-end .elementor-nav-menu {
	justify-content: flex-end;
	margin-inline-start: auto;
}

.elementor-nav-menu__align-end .elementor-nav-menu--layout-vertical>ul>li>a {
	justify-content: flex-end;
}

.elementor-nav-menu__align-center .elementor-nav-menu {
	justify-content: center;
	margin-inline-end: auto;
	margin-inline-start: auto;
}

.elementor-nav-menu__align-center .elementor-nav-menu--layout-vertical>ul>li>a {
	justify-content: center;
}

.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu {
	width: 100%;
}

.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li {
	flex-grow: 1;
}

.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li>a {
	justify-content: center;
}

.elementor-widget-nav-menu:not(.elementor-nav-menu--toggle) .elementor-menu-toggle {
	display: none;
}

.elementor-widget-nav-menu .elementor-widget-container, .elementor-widget-nav-menu:not(:has(.elementor-widget-container)):not([class*=elementor-hidden-]) {
	display: flex;
	flex-direction: column;
}

.elementor-nav-menu {
	position: relative;
	z-index: 2;
}

.elementor-nav-menu:after {
	clear: both;
	content: " ";
	display: block;
	font: 0/0 serif;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

.elementor-nav-menu, .elementor-nav-menu li, .elementor-nav-menu ul {
	display: block;
	line-height: normal;
	list-style: none;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.elementor-nav-menu ul {
	display: none;
}

.elementor-nav-menu ul ul a, .elementor-nav-menu ul ul a:active, .elementor-nav-menu ul ul a:focus, .elementor-nav-menu ul ul a:hover {
	border-left: 16px solid transparent;
}

.elementor-nav-menu ul ul ul a, .elementor-nav-menu ul ul ul a:active, .elementor-nav-menu ul ul ul a:focus, .elementor-nav-menu ul ul ul a:hover {
	border-left: 24px solid transparent;
}

.elementor-nav-menu ul ul ul ul a, .elementor-nav-menu ul ul ul ul a:active, .elementor-nav-menu ul ul ul ul a:focus, .elementor-nav-menu ul ul ul ul a:hover {
	border-left: 32px solid transparent;
}

.elementor-nav-menu ul ul ul ul ul a, .elementor-nav-menu ul ul ul ul ul a:active, .elementor-nav-menu ul ul ul ul ul a:focus, .elementor-nav-menu ul ul ul ul ul a:hover {
	border-left: 40px solid transparent;
}

.elementor-nav-menu a, .elementor-nav-menu li {
	position: relative;
}

.elementor-nav-menu li {
	border-width: 0;
}

.elementor-nav-menu a {
	align-items: center;
	display: flex;
}

.elementor-nav-menu a, .elementor-nav-menu a:focus, .elementor-nav-menu a:hover {
	line-height: 20px;
	padding: 10px 20px;
}

.elementor-nav-menu a.current {
	background: #1f2124;
	color: #fff;
}

.elementor-nav-menu a.disabled {
	color: #88909b;
	cursor: not-allowed;
}

.elementor-nav-menu .e-plus-icon:before {
	content: "+";
}

.elementor-nav-menu .sub-arrow {
	align-items: center;
	display: flex;
	line-height: 1;
	margin-block-end: -10px;
	margin-block-start: -10px;
	padding: 10px;
	padding-inline-end: 0;
}

.elementor-nav-menu .sub-arrow i {
	pointer-events: none;
}

.elementor-nav-menu .sub-arrow .fa.fa-chevron-down, .elementor-nav-menu .sub-arrow .fas.fa-chevron-down {
	font-size: .7em;
}

.elementor-nav-menu .sub-arrow .e-font-icon-svg {
	height: 1em;
	width: 1em;
}

.elementor-nav-menu .sub-arrow .e-font-icon-svg.fa-svg-chevron-down {
	height: .7em;
	width: .7em;
}

.elementor-nav-menu--dropdown .elementor-item.elementor-item-active, .elementor-nav-menu--dropdown .elementor-item.highlighted, .elementor-nav-menu--dropdown .elementor-item:focus, .elementor-nav-menu--dropdown .elementor-item:hover, .elementor-sub-item.elementor-item-active, .elementor-sub-item.highlighted, .elementor-sub-item:focus, .elementor-sub-item:hover {
	background-color: #3f444b;
	color: #fff;
}

.elementor-menu-toggle {
	align-items: center;
	background-color: rgba(0, 0, 0, .05);
	border: 0 solid;
	border-radius: 3px;
	color: #33373d;
	cursor: pointer;
	display: flex;
	font-size: var(--nav-menu-icon-size, 22px);
	justify-content: center;
	padding: .25em;
}

.elementor-menu-toggle.elementor-active .elementor-menu-toggle__icon--open, .elementor-menu-toggle:not(.elementor-active) .elementor-menu-toggle__icon--close {
	display: none;
}

.elementor-menu-toggle .e-font-icon-svg {
	fill: #33373d;
	height: 1em;
	width: 1em;
}

.elementor-menu-toggle svg {
	height: auto;
	width: 1em;
	fill: var(--nav-menu-icon-color, currentColor);
}

span.elementor-menu-toggle__icon--close, span.elementor-menu-toggle__icon--open {
	line-height: 1;
}

.elementor-nav-menu--dropdown {
	background-color: #fff;
	font-size: 13px;
}

.elementor-nav-menu--dropdown-none .elementor-menu-toggle, .elementor-nav-menu--dropdown-none .elementor-nav-menu--dropdown {
	display: none;
}

.elementor-nav-menu--dropdown.elementor-nav-menu__container {
	margin-top: 10px;
	overflow-x: hidden;
	overflow-y: auto;
	transform-origin: top;
	transition: max-height .3s, transform .3s;
}

.elementor-nav-menu--dropdown.elementor-nav-menu__container .elementor-sub-item {
	font-size: .85em;
}

.elementor-nav-menu--dropdown a {
	color: #33373d;
}

.elementor-nav-menu--dropdown a.current {
	background: #1f2124;
	color: #fff;
}

.elementor-nav-menu--dropdown a.disabled {
	color: #b3b3b3;
}

ul.elementor-nav-menu--dropdown a, ul.elementor-nav-menu--dropdown a:focus, ul.elementor-nav-menu--dropdown a:hover {
	border-inline-start: 8px solid transparent;
	text-shadow: none;
}

.elementor-nav-menu__text-align-center .elementor-nav-menu--dropdown .elementor-nav-menu a {
	justify-content: center;
}

.elementor-nav-menu--toggle {
	--menu-height: 100vh;
}

.elementor-nav-menu--toggle .elementor-menu-toggle:not(.elementor-active)+.elementor-nav-menu__container {
	max-height: 0;
	overflow: hidden;
	transform: scaleY(0);
}

.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active+.elementor-nav-menu__container {
	animation: hide-scroll .3s backwards;
	max-height: var(--menu-height);
	transform: scaleY(1);
}

.elementor-nav-menu--stretch .elementor-nav-menu__container.elementor-nav-menu--dropdown {
	position: absolute;
	z-index: 9997;
}

@media (max-width:767px) {
	.elementor-nav-menu--dropdown-mobile .elementor-nav-menu--main {
		display: none;
	}
}

@media (min-width:768px) {
	.elementor-nav-menu--dropdown-mobile .elementor-menu-toggle, .elementor-nav-menu--dropdown-mobile .elementor-nav-menu--dropdown {
		display: none;
	}
	
	.elementor-nav-menu--dropdown-mobile nav.elementor-nav-menu--dropdown.elementor-nav-menu__container {
		overflow-y: hidden;
	}
}

@media (max-width:-1) {
	.elementor-nav-menu--dropdown-mobile_extra .elementor-nav-menu--main {
		display: none;
	}
}

@media (min-width:-1) {
	.elementor-nav-menu--dropdown-mobile_extra .elementor-menu-toggle, .elementor-nav-menu--dropdown-mobile_extra .elementor-nav-menu--dropdown {
		display: none;
	}
	
	.elementor-nav-menu--dropdown-mobile_extra nav.elementor-nav-menu--dropdown.elementor-nav-menu__container {
		overflow-y: hidden;
	}
}

@media (max-width:1024px) {
	.elementor-nav-menu--dropdown-tablet .elementor-nav-menu--main {
		display: none;
	}
}

@media (min-width:1025px) {
	.elementor-nav-menu--dropdown-tablet .elementor-menu-toggle, .elementor-nav-menu--dropdown-tablet .elementor-nav-menu--dropdown {
		display: none;
	}
	
	.elementor-nav-menu--dropdown-tablet nav.elementor-nav-menu--dropdown.elementor-nav-menu__container {
		overflow-y: hidden;
	}
}

@media (max-width:-1) {
	.elementor-nav-menu--dropdown-tablet_extra .elementor-nav-menu--main {
		display: none;
	}
}

@media (min-width:-1) {
	.elementor-nav-menu--dropdown-tablet_extra .elementor-menu-toggle, .elementor-nav-menu--dropdown-tablet_extra .elementor-nav-menu--dropdown {
		display: none;
	}
	
	.elementor-nav-menu--dropdown-tablet_extra nav.elementor-nav-menu--dropdown.elementor-nav-menu__container {
		overflow-y: hidden;
	}
}

@keyframes hide-scroll {
	0%, to {
		overflow: hidden;
	}
}

/*! elementor - v3.28.0 - 01-04-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-small {
	font-size: 15px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-medium {
	font-size: 19px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-large {
	font-size: 29px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xl {
	font-size: 39px;
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
	font-size: 59px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}
/* End Custom Fonts CSS */

.elementor-16346 .elementor-element.elementor-element-7e7d291 {
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
	margin-top: 0px;
	margin-bottom: 0px;
}

.elementor-16346 .elementor-element.elementor-element-7e7d291 > .elementor-background-overlay {
	transition: background .3s, border-radius .3s, opacity .3s;
}

.elementor-16346 .elementor-element.elementor-element-4a46d7b > .elementor-element-populated {
	padding: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-280f226 {
	padding: 190px 0px 100px 0px;
}

.elementor-widget-heading .elementor-heading-title {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
}

.elementor-16346 .elementor-element.elementor-element-19757a5 {
	text-align: center;
}

.elementor-16346 .elementor-element.elementor-element-19757a5 .elementor-heading-title {
	font-family: "Neptune", Sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}

.elementor-16346 .elementor-element.elementor-element-a8e90cd {
	padding: 0px 40px 0px 40px;
}

.elementor-widget-image .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16346 .elementor-element.elementor-element-5cc09ce > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-5cc09ce > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-5cc09ce img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-9ab019c > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-9ab019c > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-9ab019c img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-e01649a {
	margin-top: 0px;
	margin-bottom: -20px;
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-baff16d > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-33eedf9 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-24afb29 {
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-5a40498 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-5a40498 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-5a40498 img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-583b549 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-583b549 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-583b549 img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-88ee5bb {
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-ae8f84a > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-ae8f84a img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-c502016 {
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
	margin-top: 0px;
	margin-bottom: 0px;
}

.elementor-16346 .elementor-element.elementor-element-c502016 > .elementor-background-overlay {
	transition: background .3s, border-radius .3s, opacity .3s;
}

.elementor-16346 .elementor-element.elementor-element-a3595e1 > .elementor-element-populated {
	padding: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-f8b9040 {
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-7c7cdcd > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-7c7cdcd > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-7c7cdcd img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-3087e77 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-3087e77 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-3087e77 img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-04d3946 {
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-75196d0 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-d2ea66e {
	padding: 0px 40px 0px 40px;
}

.elementor-16346 .elementor-element.elementor-element-194ab9b > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-194ab9b > .elementor-widget-container {
	margin: 0px 0px 0px -1px;
}

.elementor-16346 .elementor-element.elementor-element-194ab9b img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-58f6fd3 > .elementor-widget-container:hover {
	--e-transform-scale: 1.05;
}

.elementor-16346 .elementor-element.elementor-element-58f6fd3 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-58f6fd3 img {
	width: 100%;
}

.elementor-16346 .elementor-element.elementor-element-e15d340 > .elementor-container > .elementor-column > .elementor-widget-wrap {
	align-content: center;
	align-items: center;
}

.elementor-16346 .elementor-element.elementor-element-e15d340 > .elementor-container {
	max-width: 950px;
}

.elementor-16346 .elementor-element.elementor-element-e15d340 {
	overflow: hidden;
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
	padding: 55px 0px 10px 0px;
}

.elementor-16346 .elementor-element.elementor-element-e15d340 > .elementor-background-overlay {
	transition: background .3s, border-radius .3s, opacity .3s;
}

.elementor-bc-flex-widget .elementor-16346 .elementor-element.elementor-element-194d76c.elementor-column .elementor-widget-wrap {
	align-items: center;
}

.elementor-16346 .elementor-element.elementor-element-194d76c.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated {
	align-content: center;
	align-items: center;
}

.elementor-16346 .elementor-element.elementor-element-194d76c > .elementor-element-populated {
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.elementor-16346 .elementor-element.elementor-element-194d76c > .elementor-element-populated > .elementor-background-overlay {
	transition: background .3s, border-radius .3s, opacity .3s;
}

.elementor-16346 .elementor-element.elementor-element-2ac8e3a > .elementor-widget-container {
	margin: 55px 0px 35px 0px;
	padding: 0px 0px 0px 0px;
}

.elementor-16346 .elementor-element.elementor-element-2ac8e3a {
	text-align: center;
}

.elementor-16346 .elementor-element.elementor-element-2ac8e3a img {
	height: 102px;
	object-fit: contain;
	object-position: center center;
}

@media (max-width:1024px) {
	.elementor-16346 .elementor-element.elementor-element-2ac8e3a > .elementor-widget-container {
		margin: 35px 0px 35px 0px;
	}
}

@media (max-width:767px) {
	.elementor-16346 .elementor-element.elementor-element-7e7d291 {
		margin-top: 40px;
		margin-bottom: 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-280f226 {
		padding: 80px 30px 30px 30px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-82ffb68 > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-1ea6efb > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-e01649a {
		margin-top: 0px;
		margin-bottom: 0px;
		padding: 0px 35px 0px 35px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-a3a1486 > .elementor-element-populated {
		padding: 15px 10px 15px 10px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-135e42b > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-68eed74 > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-583b549 > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-6f3b30b > .elementor-element-populated {
		padding: 15px 5px 0px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-c502016 {
		margin-top: 15px;
		margin-bottom: 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-ef0a6b3 > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-72c830b > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-3087e77 > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-04d3946 {
		padding: 0px 35px 0px 35px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-f57fb9c > .elementor-element-populated {
		padding: 10px 10px 15px 10px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-163d16a > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-d93703a > .elementor-element-populated {
		padding: 15px 5px 15px 5px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-58f6fd3 > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-e15d340 {
		padding: 50px 0px 0px 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-194d76c > .elementor-element-populated {
		margin: 0px 0px 0px 0px;
		--e-column-margin-right: 0px;
		--e-column-margin-left: 0px;
		padding: 0px 0px 0px 0px;
	}
	
	.elementor-16346 .elementor-element.elementor-element-2ac8e3a img {
		height: 103px;
	}
}

/* Start custom CSS for column, class: .elementor-element-194d76c */
.u-flex-column {
	display: flex;
	align-items: center;
}

.elementor-16071 .elementor-element.elementor-element-ff45272 > .elementor-container > .elementor-column > .elementor-widget-wrap {
	align-content: center;
	align-items: center;
}

.elementor-16071 .elementor-element.elementor-element-ff45272 {
	z-index: 99;
}

.elementor-widget-theme-site-logo .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16071 .elementor-element.elementor-element-948e82f > .elementor-widget-container {
	margin: 10px 0px 0px 40px;
}

.elementor-16071 .elementor-element.elementor-element-948e82f {
	text-align: left;
}

.elementor-16071 .elementor-element.elementor-element-948e82f img {
	max-width: 247px;
}

.elementor-widget-image .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16071 .elementor-element.elementor-element-c7e433a > .elementor-widget-container {
	margin: 10px 0px 20px 40px;
}

.elementor-16071 .elementor-element.elementor-element-c7e433a {
	text-align: left;
}

.elementor-16071 .elementor-element.elementor-element-c7e433a img {
	max-width: 52px;
}

.elementor-16071 .elementor-element.elementor-element-a2edf32 > .elementor-widget-container {
	margin: 10px 0px 0px 40px;
}

.elementor-16071 .elementor-element.elementor-element-a2edf32 {
	text-align: center;
}

.elementor-16071 .elementor-element.elementor-element-a2edf32 img {
	max-width: 51px;
}

.elementor-widget-nav-menu .elementor-nav-menu .elementor-item {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
}

.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item {
	color: var(--e-global-color-text);
	fill: var(--e-global-color-text);
}

.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:hover, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.elementor-item-active, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.highlighted, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:focus {
	color: var(--e-global-color-accent);
	fill: var(--e-global-color-accent);
}

.elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before, .elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
	background-color: var(--e-global-color-accent);
}

.elementor-widget-nav-menu .e--pointer-framed .elementor-item:before, .elementor-widget-nav-menu .e--pointer-framed .elementor-item:after {
	border-color: var(--e-global-color-accent);
}

.elementor-widget-nav-menu {
	--e-nav-menu-divider-color: var(--e-global-color-text);
}

.elementor-widget-nav-menu .elementor-nav-menu--dropdown .elementor-item, .elementor-widget-nav-menu .elementor-nav-menu--dropdown  .elementor-sub-item {
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
	font-weight: var(--e-global-typography-accent-font-weight);
}

.elementor-16071 .elementor-element.elementor-element-071b797 > .elementor-widget-container {
	margin: 0px 30px 0px 0px;
}

.elementor-16071 .elementor-element.elementor-element-071b797 {
	z-index: 99;
	--nav-menu-icon-size: 35px;
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-menu-toggle {
	margin-left: auto;
	background-color: rgba(255, 255, 255, 0);
	border-width: 0px;
	border-radius: 0px;
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-menu-toggle {
	color: #fff;
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown {
	background-color: #000;
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a:hover, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a.elementor-item-active, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a.highlighted, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-menu-toggle:hover {
	color: #f89a42;
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a:hover, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a.elementor-item-active, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a.highlighted {
	background-color: rgba(2, 1, 1, 0);
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown a.elementor-item-active {
	color: #f89a42;
	background-color: rgba(2, 1, 1, 0);
}

.elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown .elementor-item, .elementor-16071 .elementor-element.elementor-element-071b797 .elementor-nav-menu--dropdown  .elementor-sub-item {
	font-family: "Roboto", Sans-serif;
	font-size: 38px;
	font-weight: 300;
}

.elementor-16071 .elementor-element.elementor-element-071b797 div.elementor-menu-toggle {
	color: #fff;
}

.elementor-16071 .elementor-element.elementor-element-071b797 div.elementor-menu-toggle svg {
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-071b797 div.elementor-menu-toggle:hover {
	color: #fff;
}

.elementor-16071 .elementor-element.elementor-element-071b797 div.elementor-menu-toggle:hover svg {
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d {
	z-index: 99;
	--nav-menu-icon-size: 35px;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-menu-toggle {
	margin-left: auto;
	background-color: rgba(255, 255, 255, 0);
	border-width: 0px;
	border-radius: 0px;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-menu-toggle {
	color: #fff;
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown {
	background-color: #000;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a:hover, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a.elementor-item-active, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a.highlighted, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-menu-toggle:hover {
	color: #f89a42;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a:hover, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a.elementor-item-active, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a.highlighted {
	background-color: rgba(2, 1, 1, 0);
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown a.elementor-item-active {
	color: #f89a42;
	background-color: rgba(2, 1, 1, 0);
}

.elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown .elementor-item, .elementor-16071 .elementor-element.elementor-element-c8df95d .elementor-nav-menu--dropdown  .elementor-sub-item {
	font-family: "Roboto", Sans-serif;
	font-size: 45px;
	font-weight: 300;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d div.elementor-menu-toggle {
	color: #fff;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d div.elementor-menu-toggle svg {
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d div.elementor-menu-toggle:hover {
	color: #fff;
}

.elementor-16071 .elementor-element.elementor-element-c8df95d div.elementor-menu-toggle:hover svg {
	fill: #fff;
}

.elementor-16071 .elementor-element.elementor-element-625cd9c:not(.elementor-motion-effects-element-type-background), .elementor-16071 .elementor-element.elementor-element-625cd9c > .elementor-motion-effects-container > .elementor-motion-effects-layer {
	background-color: #000;
}

.elementor-16071 .elementor-element.elementor-element-625cd9c {
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.elementor-16071 .elementor-element.elementor-element-625cd9c > .elementor-background-overlay {
	transition: background .3s, border-radius .3s, opacity .3s;
}

.elementor-theme-builder-content-area {
	height: 400px;
}

.elementor-location-header:before, .elementor-location-footer:before {
	content: "";
	display: table;
	clear: both;
}

@media (min-width:768px) {
	.elementor-16071 .elementor-element.elementor-element-7f9e4a7 {
		width: 20%;
	}
	
	.elementor-16071 .elementor-element.elementor-element-537ba54 {
		width: 2%;
	}
	
	.elementor-16071 .elementor-element.elementor-element-0001731 {
		width: 77.332%;
	}
}

@media (max-width:1024px) and (min-width:768px) {
	.elementor-16071 .elementor-element.elementor-element-0001731 {
		width: 76%;
	}
}

@media (max-width:767px) {
	.elementor-16071 .elementor-element.elementor-element-7f9e4a7 {
		width: 60%;
	}
	
	.elementor-16071 .elementor-element.elementor-element-948e82f > .elementor-widget-container {
		margin: 10px 0px 0px 25px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-948e82f img {
		max-width: 200px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-c7e433a > .elementor-widget-container {
		margin: 10px 0px 20px 25px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-c7e433a {
		text-align: left;
	}
	
	.elementor-16071 .elementor-element.elementor-element-c7e433a img {
		max-width: 42px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-537ba54 {
		width: 20%;
	}
	
	.elementor-bc-flex-widget .elementor-16071 .elementor-element.elementor-element-537ba54.elementor-column .elementor-widget-wrap {
		align-items: center;
	}
	
	.elementor-16071 .elementor-element.elementor-element-537ba54.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated {
		align-content: center;
		align-items: center;
	}
	
	.elementor-16071 .elementor-element.elementor-element-537ba54 > .elementor-element-populated {
		margin: 0px 0px 0px 0px;
		--e-column-margin-right: 0px;
		--e-column-margin-left: 0px;
		padding: 0px 0px 0px 0px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-a2edf32 > .elementor-widget-container {
		margin: 10px 0px 9px 35px;
		padding: 5px 5px 5px 5px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-a2edf32 {
		text-align: right;
	}
	
	.elementor-16071 .elementor-element.elementor-element-a2edf32 img {
		max-width: 50px;
		height: 26px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-0001731 {
		width: 20%;
	}
	
	.elementor-16071 .elementor-element.elementor-element-071b797 > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
	}
	
	.elementor-16071 .elementor-element.elementor-element-c8df95d > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
	}
}
/* End custom CSS */

.elementor-16108 .elementor-element.elementor-element-c3db681 > .elementor-container {
	max-width: 1200px;
}

.elementor-16108 .elementor-element.elementor-element-c3db681 {
	overflow: hidden;
}

.elementor-widget-image .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16108 .elementor-element.elementor-element-d5cc808 {
	text-align: left;
}

.elementor-16108 .elementor-element.elementor-element-d5cc808 img {
	max-width: 203px;
}

.elementor-widget-nav-menu .elementor-nav-menu .elementor-item {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
}

.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item {
	color: var(--e-global-color-text);
	fill: var(--e-global-color-text);
}

.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:hover, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.elementor-item-active, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.highlighted, .elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:focus {
	color: var(--e-global-color-accent);
	fill: var(--e-global-color-accent);
}

.elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before, .elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
	background-color: var(--e-global-color-accent);
}

.elementor-widget-nav-menu .e--pointer-framed .elementor-item:before, .elementor-widget-nav-menu .e--pointer-framed .elementor-item:after {
	border-color: var(--e-global-color-accent);
}

.elementor-widget-nav-menu {
	--e-nav-menu-divider-color: var(--e-global-color-text);
}

.elementor-widget-nav-menu .elementor-nav-menu--dropdown .elementor-item, .elementor-widget-nav-menu .elementor-nav-menu--dropdown  .elementor-sub-item {
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
	font-weight: var(--e-global-typography-accent-font-weight);
}

.elementor-16108 .elementor-element.elementor-element-33678b7 {
	z-index: 0;
	--e-nav-menu-horizontal-menu-item-margin: calc(10px / 2);
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu .elementor-item {
	font-family: "Roboto", Sans-serif;
	font-size: 45px;
	font-weight: 300;
	line-height: 1em;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item:hover, .elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item.elementor-item-active, .elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item.highlighted, .elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item:focus {
	color: #f89a42;
	fill: #f89a42;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item.elementor-item-active {
	color: #f89a42;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main .elementor-item {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--main:not(.elementor-nav-menu--layout-horizontal) .elementor-nav-menu > li:not(:last-child) {
	margin-bottom: 10px;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--dropdown .elementor-item, .elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--dropdown  .elementor-sub-item {
	font-family: "Roboto", Sans-serif;
	font-weight: 500;
}

.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu--dropdown a {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.elementor-widget-text-editor {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
	color: var(--e-global-color-text);
}

.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap {
	background-color: var(--e-global-color-primary);
}

.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap {
	color: var(--e-global-color-primary);
	border-color: var(--e-global-color-primary);
}

.elementor-16108 .elementor-element.elementor-element-9bfe5dc {
	column-gap: 0px;
	font-family: "Roboto", Sans-serif;
	font-weight: 400;
	color: #fff;
}

.elementor-16108 .elementor-element.elementor-element-2f4138c {
	font-family: "Roboto", Sans-serif;
	font-weight: 400;
	color: #fff;
}

.elementor-16108 .elementor-element.elementor-element-ce5212b > .elementor-container {
	max-width: 1200px;
}

.elementor-16108 .elementor-element.elementor-element-ce5212b {
	padding: 50px 0px 75px 0px;
}

.elementor-widget-heading .elementor-heading-title {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
}

.elementor-16108 .elementor-element.elementor-element-4eaa962 .elementor-heading-title {
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 25px;
}

.elementor-16108 .elementor-element.elementor-element-2e28a76 .elementor-heading-title {
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 25px;
}

.elementor-16108 .elementor-element.elementor-element-1f11e5c .elementor-heading-title {
	font-family: "Roboto", Sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 25px;
}

.elementor-theme-builder-content-area {
	height: 400px;
}

.elementor-location-header:before, .elementor-location-footer:before {
	content: "";
	display: table;
	clear: both;
}

@media (max-width:1024px) {
	.elementor-16108 .elementor-element.elementor-element-c3db681 {
		padding: 0px 10px 0px 10px;
		z-index: 0;
	}
	
	.elementor-16108 .elementor-element.elementor-element-d5cc808 img {
		max-width: 170px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu .elementor-item {
		font-size: 35px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-ce5212b {
		padding: 40px 10px 65px 10px;
	}
}

@media (max-width:767px) {
	.elementor-16108 .elementor-element.elementor-element-c3db681 {
		padding: 0px 27px 0px 27px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-07d4aec > .elementor-element-populated {
		margin: 20px 0px 0px 0px;
		--e-column-margin-right: 0px;
		--e-column-margin-left: 0px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-33678b7 .elementor-nav-menu .elementor-item {
		font-size: 45px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-9bfe5dc > .elementor-widget-container {
		padding: 0px 8px 0px 8px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-2f4138c > .elementor-widget-container {
		padding: 0px 8px 0px 8px;
	}
	
	.elementor-16108 .elementor-element.elementor-element-ce5212b {
		padding: 20px 35px 25px 35px;
	}
}

@media (min-width:768px) {
	.elementor-16108 .elementor-element.elementor-element-ca00e0d {
		width: 30%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-07d4aec {
		width: 35%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-7b49df5 {
		width: 24.98%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-7f324de {
		width: 10%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-e2b53d3 {
		width: 18.831%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-43843d4 {
		width: 10.746%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-a32f26e {
		width: 70.423%;
	}
}

@media (max-width:1024px) and (min-width:768px) {
	.elementor-16108 .elementor-element.elementor-element-ca00e0d {
		width: 27%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-07d4aec {
		width: 26%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-7b49df5 {
		width: 34%;
	}
	
	.elementor-16108 .elementor-element.elementor-element-7f324de {
		width: 13%;
	}
}

/* Start custom CSS for text-editor, class: .elementor-element-2f4138c */
.u-social-txt ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.u-social-txt a {
	color: #fff;
	font-weight: 400;
}

/*  Elementor Custom Skin    */

/*  https://www.dudaster.com */
.swiper-container.swiper-initialized .ecs-posts {
	overflow: visible;
}

.ecs-post-loop .elementor-page-title {
	display: block;
}

.ecs-loop-preview {
	height: 100%;
	width: 100%;
	background: lightgray;
	border: solid 1px gray;
	padding: 5px;
}

.ecs-loop-preview h3 {
	font-size: 16px;
	font-weight: 500;
}

.ecs-loop-preview span {
	font-size: 12px;
}

.ecs-loop-preview .ecs-image-holder {
	width: 100%;
	line-height: 113px;
	background-color: #808080;
	font-size: 45px;
	text-align: center;
	vertical-align: middle;
	font-weight: 900;
	color: #929191;
}

.ecs-link-wrapper {
	cursor: pointer;
}

.elementor-widget-ele-loop-item, .elementor-widget-ele-loop-item > .elementor-widget-container, .elementor-element-edit-mode.elementor-widget-ele-loop-item, .elementor-element-edit-mode.elementor-widget-ele-loop-item > .elementor-widget-container {
	height: 100%;
}

/* Fix for Elementor 3.4 */
.elementor-widget-posts .ecs-posts .elementor-button-wrapper {
	margin-top: 0;
}

/* Fix astra css issues */
.ecs-post-loop .ast-article-single {
	background-color: none;
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.ecs-post-loop.ast-article-post {
	width: 100%;
}

/* fix storeforent css issues*/
.theme-storefront.elementor-editor-active #primary.content-area {
	float: none;
}

/* Lazy Load Animations */
.elementor-editor-active .ecs-lazyload a, .elementor-editor-preview .ecs-lazyload a {
	display: none;
}

.animation-hidden .ecs-lazy-load-animation {
	height: 0;
	visibility: hidden;
}

/* loading bar progresion */

/*
<div class="barload-wrapper  ecs-lazy-load-animation"><div class="barload-border ecs-ll-brcolor"><div class="barload-whitespace"><div class="barload-line ecs-ll-bgcolor"></div></div></div></div>
*/
.barload-wrapper {
	width: 195px;
	height: 1em;
	position: relative;
	display: inline-block;
	font-size: 16px;
	padding: 10px;
}

.barload-border {
	border: 3px solid #222;
	height: 100%;
	width: 100%;
	position: relative;
	top: -50%;
	padding: 4px 3px;
}

.barload-whitespace {
	overflow: hidden;
	overflow: hidden;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.barload-line {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #000;
	animation: barload-slide 2.75s steps(40) infinite;
	-o-animation: barload-slide 2.75s steps(40) infinite;
	-ms-animation: barload-slide 2.75s steps(40) infinite;
	-webkit-animation: barload-slide 2.75s steps(40) infinite;
	-moz-animation: barload-slide 2.75s steps(40) infinite;
}

@keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-o-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-ms-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-webkit-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-moz-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

/* four ball moving from left to right*/

/*
<div class="ballsload-container ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div>
*/
.barload-wrapper, .barload-wrapper * {
	box-sizing: content-box;
}

.ballsload-container {
	font-size: 16px;
	padding: 10px;
	position: relative;
}

.ballsload-container div {
	width: 1em;
	height: 1em;
	position: absolute;
	background-color: #000;
	top: 0;
	border-radius: 50%;
}

.ballsload-container div:nth-child(1) {
	animation: ballsload-move 2.3s infinite cubic-bezier(.2, .64, .81, .23);
	-o-animation: ballsload-move 2.3s infinite cubic-bezier(.2, .64, .81, .23);
	-ms-animation: ballsload-move 2.3s infinite cubic-bezier(.2, .64, .81, .23);
	-webkit-animation: ballsload-move 2.3s infinite cubic-bezier(.2, .64, .81, .23);
	-moz-animation: ballsload-move 2.3s infinite cubic-bezier(.2, .64, .81, .23);
}

.ballsload-container div:nth-child(2) {
	animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-o-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-ms-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-webkit-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-moz-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(.2, .64, .81, .23);
}

.ballsload-container div:nth-child(3) {
	animation: ballsload-move 2.3s 345ms infinite cubic-bezier(.2, .64, .81, .23);
	-o-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(.2, .64, .81, .23);
	-ms-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(.2, .64, .81, .23);
	-webkit-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(.2, .64, .81, .23);
	-moz-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(.2, .64, .81, .23);
}

.ballsload-container div:nth-child(4) {
	animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-o-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-ms-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-webkit-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(.2, .64, .81, .23);
	-moz-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(.2, .64, .81, .23);
}

@keyframes ballsload-move {
	0% {
		left: 0%;
	}
	
	100% {
		left: 100%;
	}
}

@-o-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	
	100% {
		left: 100%;
	}
}

@-ms-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	
	100% {
		left: 100%;
	}
}

@-webkit-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	
	100% {
		left: 100%;
	}
}

@-moz-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	
	100% {
		left: 100%;
	}
}

/* one ball sliding left to right */

/*
<div id="movingBallG" class="ecs-lazy-load-animation"><div class="movingBallLineG  ecs-ll-bgcolor"></div><div id="movingBallG_1" class="movingBallG ecs-ll-bgcolor"></div></div>
*/
#movingBallG {
	position: relative;
	width: 250px;
	height: 19px;
	display: inline-block;
	font-size: 16px;
}

.movingBallLineG {
	position: absolute;
	left: 0px;
	top: .5em;
	height: .25em;
	width: 250px;
	background-color: #000;
}

.movingBallG {
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.188em;
	height: 1.188em;
	border-radius: 100px;
	-o-border-radius: 100px;
	-ms-border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	animation-name: bounce_movingBallG;
	-o-animation-name: bounce_movingBallG;
	-ms-animation-name: bounce_movingBallG;
	-webkit-animation-name: bounce_movingBallG;
	-moz-animation-name: bounce_movingBallG;
	animation-duration: 1.5s;
	-o-animation-duration: 1.5s;
	-ms-animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-direction: normal;
	-o-animation-direction: normal;
	-ms-animation-direction: normal;
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
}

@keyframes bounce_movingBallG {
	0% {
		left: 0px;
	}
	
	50% {
		left: 230px;
	}
	
	100% {
		left: 0px;
	}
}

@-o-keyframes bounce_movingBallG {
	0% {
		left: 0px;
	}
	
	50% {
		left: 230px;
	}
	
	100% {
		left: 0px;
	}
}

@-ms-keyframes bounce_movingBallG {
	0% {
		left: 0px;
	}
	
	50% {
		left: 230px;
	}
	
	100% {
		left: 0px;
	}
}

@-webkit-keyframes bounce_movingBallG {
	0% {
		left: 0px;
	}
	
	50% {
		left: 230px;
	}
	
	100% {
		left: 0px;
	}
}

@-moz-keyframes bounce_movingBallG {
	0% {
		left: 0px;
	}
	
	50% {
		left: 230px;
	}
	
	100% {
		left: 0px;
	}
}

/* loading 3 dots moving form left to write */

/* 
<div class="lds-ellipsis ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div> 
*/
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 8em;
	height: 1em;
	font-size: 13px;
}

.lds-ellipsis div {
	position: absolute;
	top: 0px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background: #000;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
	left: 1em;
	animation: lds-ellipsis1 .6s infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 1em;
	animation: lds-ellipsis2 .6s infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 4em;
	animation: lds-ellipsis2 .6s infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 7em;
	animation: lds-ellipsis3 .6s infinite;
}

@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	
	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	
	100% {
		transform: translate(3em, 0);
	}
}
/* End custom CSS */

.elementor-widget-theme-post-featured-image .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16243 .elementor-element.elementor-element-1415a87 {
	--e-transform-transition-duration: 499ms;
}

.elementor-16243 .elementor-element.elementor-element-1415a87 > .elementor-widget-container {
	transition: background .3s;
}

.elementor-16243 .elementor-element.elementor-element-1415a87 img {
	transition-duration: 1s;
}

.elementor-16243 .elementor-element.elementor-element-a00491a {
	margin-top: 0px;
	margin-bottom: 70px;
	padding: 15px 0px 0px 0px;
}

.elementor-16243 .elementor-element.elementor-element-9a75c4f > .elementor-element-populated {
	border-style: solid;
	border-width: 0px 1px 0px 0px;
	border-color: #4a4a4a;
	padding: 10px 0px 10px 10px;
}

.elementor-widget-image .widget-image-caption {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16243 .elementor-element.elementor-element-257017c > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16243 .elementor-element.elementor-element-257017c img {
	max-width: 16px;
}

.elementor-16243 .elementor-element.elementor-element-b750f60 {
	--grid-side-margin: 5px;
	--grid-column-gap: 5px;
	--grid-row-gap: 10px;
	--grid-bottom-margin: 10px;
	--e-share-buttons-primary-color: #4a4a4a;
}

.elementor-16243 .elementor-element.elementor-element-b750f60 .elementor-share-btn {
	font-size: calc(1px * 10);
}

.elementor-16243 .elementor-element.elementor-element-b750f60 .elementor-share-btn__icon {
	--e-share-buttons-icon-size: 25px;
}

.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after {
	border-color: var(--e-global-color-text);
}

.elementor-widget-post-info .elementor-icon-list-icon i {
	color: var(--e-global-color-primary);
}

.elementor-widget-post-info .elementor-icon-list-icon svg {
	fill: var(--e-global-color-primary);
}

.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a {
	color: var(--e-global-color-secondary);
}

.elementor-widget-post-info .elementor-icon-list-item {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
	padding: 22px 0px 0px 0px;
	border-style: solid;
	border-width: 1px 0px 0px 0px;
	border-color: #4a4a4a;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child) {
	padding-bottom: calc(0px / 2);
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child) {
	margin-top: calc(0px / 2);
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item {
	margin-right: calc(0px / 2);
	margin-left: calc(0px / 2);
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items.elementor-inline-items {
	margin-right: calc(-0px / 2);
	margin-left: calc(-0px / 2);
}

body.rtl .elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
	left: calc(-0px / 2);
}

body:not(.rtl) .elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
	right: calc(-0px / 2);
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-item:not(:last-child):after {
	content: "";
	height: 6px;
	border-color: #e90d0d;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child):after {
	border-top-style: solid;
	border-top-width: 8px;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after {
	border-left-style: solid;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-inline-items .elementor-icon-list-item:not(:last-child):after {
	border-left-width: 8px;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-icon i {
	color: rgba(0, 0, 0, 0);
	font-size: 20px;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-icon svg {
	fill: rgba(0, 0, 0, 0);
	--e-icon-list-icon-size: 20px;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-icon {
	width: 20px;
}

.elementor-16243 .elementor-element.elementor-element-2ae98c9 .elementor-icon-list-item {
	font-family: "Roboto", Sans-serif;
	font-size: 12px;
	font-weight: 300;
}

.elementor-16243 .elementor-element.elementor-element-83acf78 > .elementor-element-populated {
	padding: 20px 10px 0px 30px;
}

.elementor-widget-theme-post-title .elementor-heading-title {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
}

.elementor-16243 .elementor-element.elementor-element-ec16c32 > .elementor-widget-container {
	margin: 0px 0px 0px 0px;
}

.elementor-16243 .elementor-element.elementor-element-ec16c32 .elementor-heading-title {
	font-family: "Roboto", Sans-serif;
	font-size: 29px;
	font-weight: 400;
	color: #fff;
}

.elementor-widget-theme-post-excerpt .elementor-widget-container {
	color: var(--e-global-color-text);
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-weight: var(--e-global-typography-text-font-weight);
}

.elementor-16243 .elementor-element.elementor-element-394c757 > .elementor-widget-container {
	margin: 0px 0px -20px 0px;
}

.elementor-16243 .elementor-element.elementor-element-394c757 .elementor-widget-container {
	font-family: "Roboto", Sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
}

.elementor-widget-heading .elementor-heading-title {
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
}

.elementor-16243 .elementor-element.elementor-element-a2463ba > .elementor-widget-container {
	margin: 15px 0px -45px 0px;
	padding: 0px 0px 0px 0px;
}

.elementor-16243 .elementor-element.elementor-element-a2463ba .elementor-heading-title {
	font-family: "Roboto", Sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1em;
	color: #f89a42;
}

@media (max-width:1024px) {
	.elementor-16243 .elementor-element.elementor-element-b750f60 {
		--grid-side-margin: 5px;
		--grid-column-gap: 5px;
		--grid-row-gap: 10px;
		--grid-bottom-margin: 10px;
	}
	
	.elementor-16243 .elementor-element.elementor-element-83acf78 > .elementor-element-populated {
		padding: 15px 10px 0px 20px;
	}
}

@media (min-width:768px) {
	.elementor-16243 .elementor-element.elementor-element-9a75c4f {
		width: 9%;
	}
	
	.elementor-16243 .elementor-element.elementor-element-83acf78 {
		width: 90.665%;
	}
}

@media (max-width:1024px) and (min-width:768px) {
	.elementor-16243 .elementor-element.elementor-element-9a75c4f {
		width: 10%;
	}
	
	.elementor-16243 .elementor-element.elementor-element-83acf78 {
		width: 90%;
	}
}

@media (max-width:767px) {
	.elementor-16243 .elementor-element.elementor-element-9a75c4f {
		width: 15%;
	}
	
	.elementor-16243 .elementor-element.elementor-element-b750f60 {
		--grid-side-margin: 5px;
		--grid-column-gap: 5px;
		--grid-row-gap: 10px;
		--grid-bottom-margin: 10px;
	}
	
	.elementor-16243 .elementor-element.elementor-element-83acf78 {
		width: 85%;
	}
	
	.elementor-16243 .elementor-element.elementor-element-83acf78 > .elementor-element-populated {
		padding: 10px 10px 10px 20px;
	}
}

/* Start custom CSS for theme-post-featured-image, class: .elementor-element-1415a87 */
.c-blog-img {
	overflow: hidden;
}

/* End custom CSS */

/* Start custom CSS for column, class: .elementor-element-9a75c4f */
.c-blog-share-col div, .c-blog-share-col {
	position: static !important;
}
