:root {
	--ap-ink: #141923;
	--ap-muted: #657084;
	--ap-orange: #ef4d1d;
	--ap-orange-dark: #c83a12;
	--ap-orange-soft: #fff1eb;
	--ap-green: #0d9f56;
	--ap-line: #e7eaf0;
	--ap-paper: #ffffff;
	--ap-canvas: #f6f7f9;
	--ap-shadow: 0 18px 50px rgba(20, 25, 35, .09);
}

/* One dependable header on every page. */
.site-header {
	position: relative;
	z-index: 50;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid rgba(20, 25, 35, .08);
	box-shadow: 0 8px 28px rgba(20, 25, 35, .05);
}

.header-navbar {
	min-height: 86px;
}

.header-navbar__menu > ul > li > a {
	font-weight: 700;
	letter-spacing: -.01em;
}

.header-navbar__menu > ul > li.current-menu-item > a,
.header-navbar__menu > ul > li > a:hover {
	color: var(--ap-orange);
}

/* Modern commercial/editorial shell for every ordinary WordPress page. */
.ap-standard-page {
	position: relative;
	margin: 0 auto 64px;
	padding-top: 34px;
}

.ap-standard-page__hero {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
	gap: 38px;
	align-items: end;
	margin-bottom: 28px;
	padding: clamp(30px, 5vw, 62px);
	border-radius: 28px;
	background:
		radial-gradient(circle at 90% 5%, rgba(239, 77, 29, .32), transparent 34%),
		linear-gradient(135deg, #141923 0%, #242b38 100%);
	color: #fff;
	box-shadow: var(--ap-shadow);
}

.ap-standard-page__hero::after {
	content: "";
	position: absolute;
	right: -65px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border: 34px solid rgba(255, 255, 255, .06);
	border-radius: 50%;
}

.ap-standard-page__eyebrow {
	margin: 0 0 14px;
	color: #ff9f7c;
	font-size: .78rem;
	font-weight: 850;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.ap-standard-page__hero h1 {
	position: relative;
	z-index: 1;
	max-width: 850px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 5vw, 4.4rem);
	line-height: .98;
	letter-spacing: -.055em;
}

.ap-standard-page__summary {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	line-height: 1.7;
}

.ap-standard-page__content {
	max-width: 1050px;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 54px);
	border: 1px solid var(--ap-line);
	border-radius: 24px;
	background: var(--ap-paper);
	box-shadow: 0 12px 36px rgba(20, 25, 35, .06);
	color: #343c4b;
	font-size: 1.02rem;
	line-height: 1.78;
}

.ap-standard-page__content > :first-child {
	margin-top: 0;
}

.ap-standard-page__content h2,
.ap-standard-page__content h3 {
	color: var(--ap-ink);
	letter-spacing: -.025em;
}

.ap-standard-page__content h2 {
	margin-top: 2.2em;
	padding-top: .2em;
	font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.ap-standard-page__content a {
	color: var(--ap-orange-dark);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ap-standard-page__content img {
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(20, 25, 35, .10);
}

.ap-standard-page__content input:not([type="checkbox"]):not([type="radio"]),
.ap-standard-page__content textarea,
.ap-standard-page__content select {
	min-height: 48px;
	border: 1px solid #d8dde6;
	border-radius: 12px;
	background: #fff;
}

.ap-standard-page__content button,
.ap-standard-page__content .button,
.ap-standard-page__content input[type="submit"] {
	border-radius: 999px;
	background: var(--ap-orange);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 8px 22px rgba(239, 77, 29, .22);
}

.ap-standard-page__cta {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	max-width: 1050px;
	margin: 24px auto 0;
	padding: 22px 26px;
	border-radius: 18px;
	background: var(--ap-orange-soft);
	border: 1px solid #ffd4c5;
}

.ap-standard-page__cta strong {
	color: var(--ap-ink);
	font-size: 1.05rem;
}

.ap-standard-page__cta a {
	flex: 0 0 auto;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--ap-orange);
	color: #fff;
	font-weight: 800;
}

/* Cohesive custom illustrations for the newest marketplace categories. */
.hp-listing-category__image .ap-category-art {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	transition: transform .3s ease;
}

.hp-listing-category:hover .ap-category-art {
	transform: scale(1.025);
}

/* Trust information within every listing card. */
.ap-budget-24h {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 12px 0 4px;
	padding: 10px 12px;
	border: 1px solid #bfead2;
	border-radius: 12px;
	background: #effbf4;
	color: #087c43;
}

.ap-budget-24h svg {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ap-budget-24h span {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.ap-budget-24h strong {
	font-size: .78rem;
	line-height: 1.25;
}

.ap-budget-24h small {
	color: #4c7b63;
	font-size: .66rem;
	line-height: 1.25;
}

.hp-listing__attribute--instagram {
	width: 100% !important;
	margin-top: 10px !important;
	overflow: visible !important;
	font-size: inherit !important;
}

.hp-listing__attribute--instagram > span {
	display: contents !important;
}

.ap-instagram-button,
.ap-instagram-gate {
	display: flex !important;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	padding: 10px 12px !important;
	border: 0 !important;
	border-radius: 13px !important;
	text-decoration: none !important;
	box-sizing: border-box;
}

.ap-instagram-button {
	background: linear-gradient(115deg, #6d28d9 0%, #d62976 54%, #f77737 100%) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(190, 36, 114, .20);
}

.ap-instagram-button:hover {
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(190, 36, 114, .28);
}

.ap-instagram-button svg,
.ap-instagram-gate svg {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ap-instagram-button span,
.ap-instagram-gate span {
	display: grid !important;
	gap: 1px;
	min-width: 0;
	padding: 0 !important;
	background: transparent !important;
	color: inherit !important;
	text-align: left;
}

.ap-instagram-button strong,
.ap-instagram-gate strong {
	font-size: .8rem;
	line-height: 1.2;
}

.ap-instagram-button small,
.ap-instagram-gate small {
	overflow: hidden;
	font-size: .66rem;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ap-instagram-button b {
	margin-left: auto;
	font-size: 1rem;
}

.ap-instagram-gate {
	flex-wrap: wrap;
	background: #fff5f1 !important;
	border: 1px solid #ffd8ca !important;
	color: #8e3418 !important;
}

.ap-instagram-gate > a {
	margin-left: auto;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	color: var(--ap-orange-dark) !important;
	font-size: .7rem;
	font-weight: 850 !important;
	white-space: nowrap;
}

.ap-featured-carousel .hp-listing__footer {
	display: none;
}

.ap-featured-carousel .hp-listing__content {
	display: flex;
	flex-direction: column;
}

/* Polished search, archive and 404 views. */
.ap-content-index {
	margin-bottom: 72px;
}

.ap-content-index__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: 28px;
}

.ap-content-card {
	overflow: hidden;
	border: 1px solid var(--ap-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(15, 23, 42, .07);
}

.ap-content-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.ap-content-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ap-content-card__body {
	padding: 23px;
}

.ap-content-card h2 {
	margin: 0 0 10px;
	font-size: 1.3rem;
	line-height: 1.25;
}

.ap-content-card p {
	color: var(--ap-muted);
	line-height: 1.6;
}

.ap-content-card__link,
.ap-not-found__actions a {
	color: var(--ap-orange-dark);
	font-weight: 850;
}

.ap-content-search {
	display: flex;
	gap: 10px;
	margin: 26px 0;
	padding: 9px;
	border: 1px solid var(--ap-line);
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
}

.ap-content-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	box-shadow: none;
}

.ap-content-search button {
	padding: 12px 22px;
	border: 0;
	border-radius: 12px;
	background: var(--ap-orange);
	color: #fff;
	font-weight: 850;
}

.ap-not-found__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 24px;
}

/* Official social profiles. */
.ap-site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 14px;
}

.ap-site-footer__socials .ap-site-footer__social {
	margin: 0;
}

.ap-site-footer__social + .ap-site-footer__social {
	margin-left: 9px;
}

/* WPConsent: compact, readable and consistent with the brand. */
#wpconsent-banner,
.wpconsent-banner,
.wpconsent_banner,
.wpconsent-consent-banner {
	overflow: hidden !important;
	border: 1px solid rgba(239, 77, 29, .24) !important;
	border-radius: 20px !important;
	background: rgba(255, 255, 255, .98) !important;
	box-shadow: 0 22px 70px rgba(20, 25, 35, .22) !important;
	color: var(--ap-ink) !important;
}

#wpconsent-banner button,
#wpconsent-banner .button,
.wpconsent-banner button,
.wpconsent_banner button,
.wpconsent-consent-banner button {
	min-height: 42px !important;
	padding: 10px 17px !important;
	border-radius: 999px !important;
	font-weight: 800 !important;
}

#wpconsent-accept-all {
	background: var(--ap-orange) !important;
	border-color: var(--ap-orange) !important;
	color: #fff !important;
}

#wpconsent-cancel-all {
	background: #fff5f1 !important;
	border-color: #ffd8ca !important;
	color: var(--ap-orange-dark) !important;
}

#wpconsent-preferences-all {
	background: #fff !important;
	border-color: var(--ap-line) !important;
	color: var(--ap-ink) !important;
}

@media (max-width: 780px) {
	.ap-content-index__grid {
		grid-template-columns: 1fr;
	}

	.ap-content-search {
		align-items: stretch;
		flex-direction: column;
	}

	.ap-content-search button {
		width: 100%;
	}
	.header-navbar {
		min-height: 70px;
	}

	.ap-standard-page {
		padding-top: 16px;
		margin-bottom: 38px;
	}

	.ap-standard-page__hero {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 28px 22px;
		border-radius: 20px;
	}

	.ap-standard-page__hero h1 {
		font-size: clamp(2rem, 11vw, 3.15rem);
	}

	.ap-standard-page__content {
		padding: 23px 18px;
		border-radius: 18px;
	}

	.ap-standard-page__cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.ap-instagram-gate > a {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}

	.ap-featured-carousel .hp-listing__content {
		padding-bottom: 18px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ap-instagram-button {
		transition: none !important;
	}
}

/* Professional Founder: one compact badge, rendered by HivePress. */
.hp-listing--founder.hp-listing--view-block .hp-listing__header::before,
.hp-listing--founder.hp-listing--view-block .hp-listing__header::after,
body.ap-founder-listing .hp-listing--view-page .hp-listing__title::before {
	content: none !important;
	display: none !important;
}

.hp-listing .ap-founder-badge,
body.ap-founder-listing .ap-founder-badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	box-sizing: border-box !important;
	width: auto !important;
	height: 26px !important;
	min-width: 0 !important;
	max-width: 100% !important;
	min-height: 26px !important;
	max-height: 26px !important;
	margin: 0 0 9px !important;
	padding: 0 9px !important;
	position: static !important;
	inset: auto !important;
	transform: none !important;
	overflow: hidden !important;
	border: 1px solid #efc16a !important;
	border-radius: 999px !important;
	background: #fff8e8 !important;
	box-shadow: none !important;
	color: #874016 !important;
	font-family: inherit !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .04em !important;
	line-height: 1 !important;
	text-align: left !important;
	text-transform: uppercase !important;
	vertical-align: middle !important;
}

.hp-listing .ap-founder-badge .ap-founder-badge__icon,
body.ap-founder-listing .ap-founder-badge .ap-founder-badge__icon {
	display: block !important;
	flex: 0 0 16px !important;
	box-sizing: border-box !important;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	margin: 0 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
	overflow: visible !important;
	fill: var(--ap-orange) !important;
	stroke: #fff !important;
	stroke-width: 1.8 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.hp-listing .ap-founder-badge > span,
body.ap-founder-listing .ap-founder-badge > span {
	display: block !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: transparent !important;
	color: inherit !important;
	font: inherit !important;
	line-height: 1 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.hp-listing--view-block .hp-listing__content > .ap-founder-badge {
	align-self: flex-start !important;
}

body.ap-founder-listing .hp-listing--view-page > .hp-page__content > .ap-founder-badge {
	margin-bottom: 12px !important;
}

@media (max-width: 767px) {
	.hp-listing .ap-founder-badge,
	body.ap-founder-listing .ap-founder-badge {
		height: 24px !important;
		min-height: 24px !important;
		max-height: 24px !important;
		padding: 0 8px !important;
		font-size: 9px !important;
	}

	.hp-listing .ap-founder-badge .ap-founder-badge__icon,
	body.ap-founder-listing .ap-founder-badge .ap-founder-badge__icon {
		flex-basis: 14px !important;
		width: 14px !important;
		height: 14px !important;
		min-width: 14px !important;
		min-height: 14px !important;
		max-width: 14px !important;
		max-height: 14px !important;
	}
}
/* AcheiPatos: guided, low-friction account registration. */

/* Clear confirmation after a successful account request. */
.hp-form--user-register.ap-registration-complete .ap-registration-intro,
.hp-form--user-register.ap-registration-complete .hp-form__fields,
.hp-form--user-register.ap-registration-complete .hp-form__footer {
	display: none !important;
}

.hp-form--user-register.ap-registration-complete .hp-form__messages {
	display: block !important;
	margin: 0 !important;
}

.ap-registration-success {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 19px;
	border: 1px solid #a9dfbf;
	border-radius: 16px;
	background: #effbf4;
	color: #17633b;
	box-shadow: 0 12px 30px rgba(13, 159, 86, .10);
}

.ap-registration-success svg {
	flex: 0 0 27px;
	width: 27px;
	height: 27px;
	fill: #0d9f56;
}

.ap-registration-success span {
	display: grid;
	gap: 5px;
	font-size: .78rem;
	line-height: 1.5;
}

.ap-registration-success strong {
	color: #075c32;
	font-size: .94rem;
}
#user_register_modal {
	width: min(700px, calc(100vw - 24px));
	max-width: 700px;
	border-radius: 24px;
}

#user_register_modal .hp-modal__title {
	margin-bottom: 8px;
	color: #141923;
	font-size: clamp(1.45rem, 4vw, 2rem);
	letter-spacing: -.035em;
	text-align: center;
}

#user_register_modal .hp-form--user-register,
.hp-form--user-register.ap-registration-form {
	max-width: none;
}

.ap-registration-intro {
	margin: 4px 0 24px;
	padding: clamp(16px, 4vw, 24px);
	border: 1px solid #e7eaf0;
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0, rgba(239, 77, 29, .13), transparent 34%),
		linear-gradient(145deg, #fff 0%, #fbfcfd 100%);
	box-shadow: 0 14px 38px rgba(20, 25, 35, .07);
}

.ap-registration-intro__eyebrow {
	margin: 0 0 6px;
	color: #ef4d1d;
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ap-registration-intro h4 {
	margin: 0;
	color: #141923;
	font-size: clamp(1.15rem, 3vw, 1.45rem);
	line-height: 1.2;
	letter-spacing: -.025em;
}

.ap-registration-intro__copy {
	margin: 8px 0 0;
	color: #657084;
	font-size: .92rem;
	line-height: 1.55;
}

.ap-registration-switch {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	margin-top: 18px;
}

.ap-registration-switch button {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	min-width: 0;
	padding: 11px;
	border: 1px solid #dfe3e9;
	border-radius: 13px;
	background: #fff;
	color: #303846;
	text-align: left;
	box-shadow: none;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.ap-registration-switch button:hover {
	border-color: #ef4d1d;
	transform: translateY(-1px);
}

.ap-registration-switch button[aria-selected="true"] {
	border-color: #ef4d1d;
	background: #fff1eb;
	color: #b93610;
	box-shadow: inset 0 0 0 1px rgba(239, 77, 29, .12);
}

.ap-registration-switch__number {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 10px;
	background: #f1f3f6;
	color: #657084;
	font-size: .76rem;
	font-weight: 850;
}

.ap-registration-switch button[aria-selected="true"] .ap-registration-switch__number {
	background: #ef4d1d;
	color: #fff;
}

.ap-registration-switch strong,
.ap-registration-switch small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ap-registration-switch strong {
	font-size: .86rem;
	line-height: 1.25;
	white-space: nowrap;
}

.ap-registration-switch small {
	margin-top: 2px;
	color: #657084;
	font-size: .7rem;
	line-height: 1.25;
}

.ap-registration-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
	margin: 17px 0 0;
	padding: 0;
	list-style: none;
}

.ap-registration-steps li {
	position: relative;
	padding-top: 10px;
	border-top: 3px solid #dfe3e9;
	color: #657084;
	font-size: .7rem;
	font-weight: 750;
	line-height: 1.3;
}

.ap-registration-steps li:first-child {
	border-color: #ef4d1d;
	color: #141923;
}

.hp-form--user-register .hp-form__field {
	margin-bottom: 17px;
}

.hp-form--user-register .hp-form__label {
	margin-bottom: 7px;
	color: #303846;
	font-size: .87rem;
	font-weight: 800;
}

.hp-form--user-register input[type="email"],
.hp-form--user-register input[type="password"] {
	min-height: 52px;
	border: 1px solid #d9dee6;
	border-radius: 12px;
	background: #fff;
	color: #141923;
	font-size: 1rem;
}

.hp-form--user-register input[type="email"]:focus,
.hp-form--user-register input[type="password"]:focus {
	border-color: #ef4d1d;
	box-shadow: 0 0 0 4px rgba(239, 77, 29, .1);
}

.ap-field-example {
	display: block;
	margin-top: 7px;
	color: #70798a;
	font-size: .76rem;
	line-height: 1.45;
}

.ap-registration-confirmation {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	margin: 5px 0 16px;
	padding: 12px;
	border: 1px solid #f7ccbD;
	border-radius: 13px;
	background: #fff8f5;
	color: #384152;
	font-size: .78rem;
	line-height: 1.42;
}

.ap-registration-confirmation svg {
	width: 38px;
	height: 38px;
	padding: 9px;
	border-radius: 11px;
	background: #ef4d1d;
	fill: #fff;
}

.ap-registration-confirmation strong {
	display: block;
	margin-bottom: 2px;
	color: #141923;
	font-size: .81rem;
}

.hp-form--user-register .hp-form__button {
	width: 100%;
	min-height: 52px;
	border-radius: 13px;
	background: #ef4d1d;
	font-weight: 850;
	box-shadow: 0 10px 24px rgba(239, 77, 29, .22);
}

.hp-form--user-register .hp-form__button:hover {
	background: #c83a12;
}

.hp-form--user-register .hp-form__actions {
	margin-top: 13px;
	text-align: center;
}

.hp-form--user-register .hp-form__field--checkbox {
	padding: 10px 12px;
	border-radius: 11px;
	background: #f7f8fa;
}

.hp-form--user-register .hp-form__field--checkbox span {
	color: #596476;
	font-size: .78rem;
	line-height: 1.45;
}

.ap-registration-professional .ap-registration-intro {
	background:
		radial-gradient(circle at 100% 0, rgba(239, 77, 29, .16), transparent 38%),
		linear-gradient(145deg, #fff 0%, #fff8f5 100%);
}

@media (max-width: 520px) {
	#user_register_modal {
		width: calc(100vw - 16px);
		padding-right: 17px;
		padding-left: 17px;
		border-radius: 19px;
	}

	.ap-registration-intro {
		margin-bottom: 18px;
		padding: 14px;
		border-radius: 16px;
	}

	.ap-registration-switch {
		gap: 7px;
	}

	.ap-registration-switch button {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 7px;
		padding: 9px 7px;
	}

	.ap-registration-switch__number {
		width: 28px;
		height: 28px;
		border-radius: 8px;
	}

	.ap-registration-switch strong {
		font-size: .74rem;
	}

	.ap-registration-switch small {
		font-size: .63rem;
	}

	.ap-registration-steps li {
		font-size: .63rem;
	}

	.hp-form--user-register input[type="email"],
	.hp-form--user-register input[type="password"],
	.hp-form--user-register .hp-form__button {
		min-height: 49px;
	}
}
@font-face{font-family:wp-social-reviews;font-style:normal;font-weight:400;src:url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/fonts/wp-social-reviews.eot?a057defcb36f1bbf8e9fc232061b7076);src:url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/fonts/wp-social-reviews.eot?a057defcb36f1bbf8e9fc232061b7076) format("embedded-opentype"),url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/fonts/wp-social-reviews.woff?fd48dc29ab485fcfe5ca85901224a277) format("woff"),url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/fonts/wp-social-reviews.ttf?6e589d66903e0605686e919345084153) format("truetype"),url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/fonts/wp-social-reviews.svg?ab9710c0f945516f82de196e87cca574) format("svg")}.wpsr_content [data-icon]:before{content:attr(data-icon)}.wpsr_content [class*=" icon-"]:before,.wpsr_content [class^=icon-]:before,.wpsr_content [data-icon]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:wp-social-reviews!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1;text-transform:none!important}.wpsr_content .icon-quote-right:before{content:"a"}.wpsr_content .icon-angle-right:before{content:"b"}.wpsr_content .icon-angle-left:before{content:"c"}.wpsr_content .icon-arrow-circle-o-right:before{content:"d"}.wpsr_content .icon-arrow-circle-o-left:before{content:"e"}.wpsr_content .icon-arrow-right:before{content:"f"}.wpsr_content .icon-arrow-left:before{content:"g"}.wpsr_content .icon-arrow-circle-right:before{content:"h"}.wpsr_content .icon-arrow-circle-left:before{content:"i"}.wpsr_content .icon-chevron-right:before{content:"j"}.wpsr_content .icon-chevron-left:before{content:"k"}.wpsr_content .icon-long-arrow-right:before{content:"l"}.wpsr_content .icon-long-arrow-left:before{content:"m"}.wpsr_content .icon-map-marker:before{content:"n"}.wpsr_content .icon-link:before{content:"o"}.wpsr_content .icon-calendar:before{content:"p"}.wpsr_content .icon-instagram:before{content:"q"}.wpsr_content .icon-facebook-square:before{content:"r"}.wpsr_content .icon-picture-o:before{content:"t"}.wpsr_content .icon-video-camera:before{content:"s"}.wpsr_content .icon-ban:before{content:"u"}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-prev-next,.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev-next{background-color:#000;border-radius:50%;cursor:pointer;height:40px;margin-top:-25px;position:absolute;text-transform:none;top:50%;transition:all .2s ease;width:40px;z-index:2}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination{bottom:0!important;left:0;right:0}@media screen and (max-width:767px){.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination{bottom:auto!important}}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination span{background-color:#000;border-radius:50%;height:10px;margin:0 5px;opacity:.2;transition:.4s;width:10px}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span:focus,.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span:hover,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination span:focus,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination span:hover{opacity:1}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span:hover,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination span:hover{transform:scale(1.3)}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span.swiper-pagination-bullet-active,.wpsr-swiper-carousel-wrapper .wpsr-swiper-pagination span.swiper-pagination-bullet-active{opacity:1;transform:scale(1.3)}.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev-next:after{font-size:14px}.wpsr-swiper-carousel-wrapper .wpsr-swiper-next{right:-20px}@media screen and (max-width:767px){.wpsr-swiper-carousel-wrapper .wpsr-swiper-next{right:-10px}}.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev{left:-20px}@media screen and (max-width:767px){.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev{left:-10px}}.wpsr-swiper-carousel-wrapper .wpsr-swiper-next,.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev{background-color:#fff;background-image:none;box-shadow:0 0 16px 0 #0003;color:#909090}.wpsr-swiper-carousel-wrapper .wpsr-swiper-next:after,.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev:after{font-size:16px}.wpsr-swiper-carousel-wrapper .wpsr-swiper-next:focus,.wpsr-swiper-carousel-wrapper .wpsr-swiper-next:hover,.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev:focus,.wpsr-swiper-carousel-wrapper .wpsr-swiper-prev:hover{background-color:#fff;box-shadow:0 0 16px 0 #0000004d}.wpsr-reviews-wrapper .wpsr-fixed-height .wpsr-row{margin-left:-5px;margin-right:-5px}@media screen and (max-width:767px){.wpsr-reviews-wrapper .wpsr-fixed-height .wpsr-row{margin-left:0;margin-right:0}}.wpsr-reviews-wrapper .wpsr-reviews-slider{padding-left:10px;padding-right:10px;padding-top:30px}@media screen and (max-width:767px){.wpsr-reviews-wrapper .wpsr-reviews-slider{padding-left:5px;padding-right:5px}}.wpsr-reviews-slider-wrapper-inner{margin-left:-10px;margin-right:-10px;position:relative}@media screen and (max-width:767px){.wpsr-reviews-slider-wrapper-inner{margin-left:0;margin-right:0}.wpsr-reviews-slider-wrapper-inner .wpsr-review-template{margin-bottom:0}}.wpsr-twitter-carousel .wpsr-twitter-wrapper-inner,.wpsr-youtube-slider-activate .wpsr-yt-feed-wrapper-inner{position:relative}@media screen and (max-width:767px){.wpsr-youtube-slider-activate .wpsr-yt-feed-wrapper-inner .wpsr-yt-video{margin-bottom:0}}.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-item{margin-bottom:30px}.wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-item{height:auto;margin-bottom:30px}.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-wrapper-inner .wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-wrapper-inner,.wpsr-instagram-slider-activate .wpsr-ig-feed-wrapper-inner{position:relative}@media screen and (max-width:1024px){.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-wrapper-inner .wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-wrapper-inner .wpsr-swiper-pagination,.wpsr-instagram-slider-activate .wpsr-ig-feed-wrapper-inner .wpsr-swiper-pagination{bottom:-5px!important}}@media screen and (max-width:767px){.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-wrapper-inner .wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-wrapper-inner .wpsr-swiper-pagination,.wpsr-instagram-slider-activate .wpsr-ig-feed-wrapper-inner .wpsr-swiper-pagination{bottom:auto!important}.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-wrapper-inner .wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-wrapper-inner .wpsr-fb-feed-item,.wpsr-facebook-feed-slider-activate .wpsr-fb-feed-wrapper-inner .wpsr-tiktok-feed-slider-activate .wpsr-tiktok-feed-wrapper-inner .wpsr-ig-post,.wpsr-instagram-slider-activate .wpsr-ig-feed-wrapper-inner .wpsr-fb-feed-item,.wpsr-instagram-slider-activate .wpsr-ig-feed-wrapper-inner .wpsr-ig-post{margin-bottom:0}}.wpsr-fb-feed-wrapper .swiper-wrapper,.wpsr-ig-feed-wrapper .swiper-wrapper,.wpsr-reviews-slider .swiper-wrapper,.wpsr-twitter-feed-wrapper .swiper-wrapper,.wpsr-yt-feed-wrapper .swiper-wrapper{margin-bottom:10px}.wpsr-fb-feed-wrapper .swiper-wrapper .swiper-slide,.wpsr-ig-feed-wrapper .swiper-wrapper .swiper-slide,.wpsr-reviews-slider .swiper-wrapper .swiper-slide,.wpsr-twitter-feed-wrapper .swiper-wrapper .swiper-slide,.wpsr-yt-feed-wrapper .swiper-wrapper .swiper-slide{overflow:inherit!important}.wpsr-fb-feed-wrapper .swiper-wrapper .swiper-slide:focus,.wpsr-ig-feed-wrapper .swiper-wrapper .swiper-slide:focus,.wpsr-reviews-slider .swiper-wrapper .swiper-slide:focus,.wpsr-twitter-feed-wrapper .swiper-wrapper .swiper-slide:focus,.wpsr-yt-feed-wrapper .swiper-wrapper .swiper-slide:focus{outline:2px solid #000}.wpsr-twitter-feed-wrapper .swiper-wrapper .wpsr-twitter-tweet{margin-bottom:0}.wpsr-twitter-feed-wrapper.wpsr-twitter-carousel .wpsr-twitter-footer{margin-top:30px}.wpsr-twitter-feed-wrapper.wpsr-twitter-carousel .wpsr-swiper-pagination{bottom:inherit!important}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-prev{left:5px}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-next{right:5px}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span{background-color:#fff;opacity:.4}.wpsr-feed-popup-carousel-wrapper .wpsr-swiper-pagination span.swiper-pagination-bullet-active{opacity:1}.elementor-widget-container .wpsr-feed-wrap .swiper-button-next,.elementor-widget-container .wpsr-feed-wrap .swiper-button-prev{align-items:center;cursor:pointer;display:flex;justify-content:center;margin-top:calc(0px - var(--swiper-navigation-size)/2);position:absolute;top:50%;z-index:10}.elementor-widget-container .wpsr-feed-wrap .swiper-button-next:after,.elementor-widget-container .wpsr-feed-wrap .swiper-button-prev:after{font-family:wp-social-reviews;font-size:26px;font-variant:normal;letter-spacing:0;line-height:1;text-transform:none!important;text-transform:none}.elementor-widget-container .wpsr-feed-wrap .swiper-button-prev:after,.elementor-widget-container .wpsr-feed-wrap .swiper-container-rtl .swiper-button-next:after{content:"c"}.elementor-widget-container .wpsr-feed-wrap .swiper-button-next:after,.elementor-widget-container .wpsr-feed-wrap .swiper-container-rtl .swiper-button-prev:after{content:"b"}.wpsr_content .swiper-container:not(.swiper-container-initialized)>.swiper-wrapper,.wpsr_content .swiper:not(.swiper-initialized)>.swiper-wrapper{overflow:unset}.wpsr-feed-wrap *,.wpsr-feed-wrap :after,.wpsr-feed-wrap :before{box-sizing:border-box}.wpsr_content{display:block;width:100%}.wpsr-feed-popup-active{overflow:hidden}.wpsr-error,.wpsr-success{display:block;padding:10px 0}.wpsr-success{color:green}.wpsr-error{color:red}.wpsr_frontend_errors{background-color:#ffecc3;border-radius:6px;margin:15px;padding:20px;text-align:center}.wpsr_frontend_errors span{word-break:break-all}.wpsr_frontend_errors a{color:red;font-weight:700;margin-left:5px;text-decoration:underline}.wpsr-notification{left:0;margin:0 auto;right:0;top:35px!important}.oxy-instagram-widget.wpsr-oxy-element,.oxy-reviews-widget.wpsr-oxy-element,.oxy-twitter-widget.wpsr-oxy-element,.oxy-youtube-widget.wpsr-oxy-element{max-width:100%}.wpsr-display-excerpt,.wpsr-review-fullcontent{display:none}.wpsr-display-content{display:block}.wpsr_pagination{margin-top:20px;text-align:right}.wpsr-equal-height{min-height:500px}.wpsr-show{display:block}.wpsr-hide{display:none}.wpsr-mb-10{margin-bottom:10px}.wpsr-mb-20{margin-bottom:20px!important}.wpsr-mb-30{margin-bottom:30px}.wpsr-mt-20{margin-top:20px!important}.wpsr-mt-30{margin-top:30px!important}.wpsr-mt-50{margin-top:50px}.wpsr-ml-15{margin-left:15px}.wpsr-d-flex{display:flex}.wpsr-flex-column{flex-direction:column}.wpsr-flex-align-center{align-items:center}.wpsr-jc-between{justify-content:space-between}.wpsr-align-center{text-align:center}.wpsr-display-block{display:block!important}.wpsr-container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.wpsr-row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.wpsr-col-1,.wpsr-col-12,.wpsr-col-2,.wpsr-col-3,.wpsr-col-4,.wpsr-col-5,.wpsr-col-6{padding-left:15px;padding-right:15px;width:100%}@media (min-width:768px){.wpsr-col-sm-12{flex:0 0 100%;max-width:100%}.wpsr-col-sm-6{flex:0 0 50%;max-width:50%}.wpsr-col-sm-5{flex:0 0 20%;max-width:20%}.wpsr-col-sm-4{flex:0 0 33.333%;max-width:33.333%}.wpsr-col-sm-3{flex:0 0 25%;max-width:25%}.wpsr-col-sm-2{flex:0 0 16.666%;max-width:16.666%}.wpsr-col-sm-1{flex:0 0 10%;max-width:10%}}@media (min-width:992px){.wpsr-col-12{flex:0 0 100%;max-width:100%}.wpsr-col-6{flex:0 0 50%;max-width:50%}.wpsr-col-5{flex:0 0 20%;max-width:20%}.wpsr-col-4{flex:0 0 33.333%;max-width:33.333%}.wpsr-col-3{flex:0 0 25%;max-width:25%}.wpsr-col-2{flex:0 0 16.666%;max-width:16.666%}.wpsr-col-1{flex:0 0 10%;max-width:10%}}@media screen and (max-width:767px){.wpsr-col-xs-12{flex:0 0 100%;max-width:100%}.wpsr-col-xs-6{flex:0 0 50%;max-width:50%}.wpsr-col-xs-5{flex:0 0 20%;max-width:20%}.wpsr-col-xs-4{flex:0 0 33.333%;max-width:33.333%}.wpsr-col-xs-3{flex:0 0 25%;max-width:25%}.wpsr-col-xs-2{flex:0 0 16.666%;max-width:16.666%}.wpsr-col-xs-1{flex:0 0 10%;max-width:10%}}.wpsr-column-gap-no_gap{margin-left:0;margin-right:0}.wpsr-column-gap-no_gap [class*=wpsr-col]{padding-left:0;padding-right:0}.wpsr-column-gap-no_gap [class*=wpsr-col]>div{margin-bottom:0}.wpsr-column-gap-narrow{margin-left:-5px;margin-right:-5px}.wpsr-column-gap-narrow [class*=wpsr-col]{padding-left:5px;padding-right:5px}.wpsr-column-gap-narrow [class*=wpsr-col]>div{margin-bottom:10px}.wpsr-column-gap-small{margin-left:-10px;margin-right:-10px}.wpsr-column-gap-small [class*=wpsr-col]{padding-left:10px;padding-right:10px}.wpsr-column-gap-small [class*=wpsr-col]>div{margin-bottom:20px}.wpsr-column-gap-wide{margin-left:-20px;margin-right:-20px}.wpsr-column-gap-wide [class*=wpsr-col]{padding-left:20px;padding-right:20px}.wpsr-column-gap-wide [class*=wpsr-col]>div{margin-bottom:40px}.wpsr-column-gap-wider{margin-left:-25px;margin-right:-25px}.wpsr-column-gap-wider [class*=wpsr-col]{padding-left:25px;padding-right:25px}.wpsr-column-gap-wider [class*=wpsr-col]>div{margin-bottom:50px}.wpsr-loader.wpsr-loading{background:#fff;bottom:0;left:0;position:absolute;top:0;width:100%;z-index:4}.wpsr-loader.wpsr-loading .wpsr-spinner-animation{display:block}.wpsr-loader .wpsr-spinner-animation{display:none;height:50px;left:50%;position:absolute;top:3%;transition:all .4s ease;visibility:visible;width:50px}.wpsr-loader .wpsr-spinner-animation:before{animation:wpsr-spinner 1.2s infinite;border:1px solid #000c;border-radius:50%;content:"";display:block;height:100%;width:100%}.wpsr-animated-background{animation-duration:1.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:wpsrPlaceHolderShimmer;animation-timing-function:linear;background:#a9a9a9;background:linear-gradient(90deg,#eee 10%,#ddd 18%,#eee 33%);background-size:800px 104px;height:100px;position:relative}.wpsr_content .swiper-container{overflow:hidden}.wpsr-visually-hidden{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.wpsr-single-product-rating{align-items:center;display:flex;flex-direction:row;gap:5px}.wpsr-single-product-rating .star-rating{margin:0}.wpsr-display-block{display:block}.wpsr-social-wall-tabs{display:flex;justify-content:center;margin:15px auto}.wpsr-social-wall-tabs .wpsr-social-wall-tab{align-items:center;background-color:#f9f9f9;border:1px solid #ccc;border-radius:5px;cursor:pointer;display:flex;font-size:18px;margin-left:5px;margin-right:5px;padding:10px 20px;text-decoration:none;transition:background-color .3s ease}.wpsr-social-wall-tab:hover{background-color:#eee}.wpsr-social-wall-tab.wpsr-active{background-color:#000;border-color:#000;color:#fff}.wpsr-social-wall-tab-content-wrapper .wpsr-feed-wrap{position:relative}.wpsr-social-wall-tab-content-wrapper .wpsr-social-wall-content.wpsr-active{display:block}.wpsr-social-wall-tab-content-wrapper .wpsr-social-wall-content.wpsr-deactivate{display:none}.wpsr-ig-header{margin-bottom:30px;width:100%}.wpsr-ig-header.wpsr-gap-no_gap{margin-bottom:0}.wpsr-ig-header.wpsr-gap-narrow{margin-bottom:10px}.wpsr-ig-header.wpsr-gap-small{margin-bottom:20px}.wpsr-ig-header.wpsr-gap-wide{margin-bottom:40px}.wpsr-ig-header.wpsr-gap-wider{margin-bottom:50px}.wpsr-ig-header .wpsr-ig-header-inner{align-items:center;background-color:#f9f9f9;display:flex;flex-wrap:nowrap;padding:15px}@media screen and (max-width:767px){.wpsr-ig-header .wpsr-ig-header-inner{display:block;padding:20px 15px;text-align:center}}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo{flex:auto 0 0;margin-right:15px}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo a{box-shadow:none;display:inline-block;text-decoration:none}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo a:focus{outline:2px solid #72aee6}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo a:hover{outline:none}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo a img{border-radius:50%;display:block;height:80px;width:80px}@media screen and (max-width:767px){.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-logo a img{margin:0 auto}}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info{flex-grow:1}@media screen and (max-width:767px){.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info{margin-bottom:10px;padding-top:5px}}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-name a{box-shadow:none;color:#262626;display:block;font-size:22px;font-weight:600;line-height:1.2;text-decoration:none}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-name a:focus{outline:2px solid #72aee6}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-name a:hover{outline:none}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-fullname{color:#262626;font-size:16px;font-weight:600;line-height:1.2;margin:10px 0 0}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-description p{color:#262626;font-size:16px;font-weight:400;line-height:1.4;margin-bottom:0;margin-top:5px;word-break:break-word}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics{display:flex;flex-wrap:nowrap;padding-top:5px}@media screen and (max-width:767px){.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics{justify-content:center}}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics .wpsr-ig-header-statistic-item{color:#262626;font-size:16px;font-weight:400;line-height:1.4;margin-right:15px}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics .wpsr-ig-header-statistic-item strong{color:#262626}.wpsr-ig-header .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics .wpsr-ig-header-statistic-item:last-child{margin-right:0}@keyframes wpsr-spinner{0%{opacity:0;transform:scale(0)}75%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(1.2)}}@keyframes wpsrPlaceHolderShimmer{0%{background-position:-468px 0}to{background-position:468px 0}}.wpsr-feed-popup-overlay{bottom:0;left:0;position:fixed;right:0;top:0;visibility:hidden;z-index:99999}.wpsr-feed-popup-overlay:before{background:#000000b3;bottom:0;content:"";left:0;position:absolute;right:0;top:0;transition:all .25s ease;visibility:hidden}.wpsr-feed-popup-overlay.wpsr-feed-popup-open,.wpsr-feed-popup-overlay.wpsr-feed-popup-open:before{visibility:visible}.wpsr-feed-popup-overlay.wpsr-feed-popup-open .wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{height:auto;opacity:1;transform:translateY(-50%) translateX(-50%) scale(1);transition:all .4s ease;visibility:visible}@media screen and (max-width:767px){.wpsr-feed-popup-overlay.wpsr-feed-popup-open .wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{height:calc(100vh - 80px)}}.wpsr-feed-popup-box-wraper{bottom:0;left:0;max-height:100%;overflow-x:hidden;overflow-y:hidden;padding:50px 0;position:absolute;right:0;top:0}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{background-color:#fff;box-sizing:border-box;display:flex;height:100%;left:50%;opacity:0;position:relative;top:50%;transform:translateX(-50%) scale(.9);transition:all .35s ease;visibility:hidden;width:850px}@media screen and (max-width:1024px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{width:660px}}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{flex-direction:column;width:300px}}@media only screen and (max-width:320px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner{width:270px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner.wpsr-feed-popup-box-no-sidebar{width:500px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner.wpsr-feed-popup-box-no-sidebar .wpsr-feed-popup-media{flex:0 0 100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner a:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner a:hover,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner video:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner video:hover{outline:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn{background:#0000;border:none;cursor:pointer;outline:none;padding:0;position:absolute;top:50%;transform:translateY(-50%);z-index:9999}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn.wpsr-link-disable,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn.wpsr-link-disable{display:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn span,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn span{border-radius:50%;color:#fff;font-size:45px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn span,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn span{font-size:35px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn{left:-50px;padding:5px}@media screen and (max-width:1024px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn{left:-50px}}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn{left:-33px}}@media (max-width:320px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-prev-btn{left:-35px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn{padding:5px;right:-50px}@media screen and (max-width:1024px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn{right:-50px}}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn{right:-33px}}@media (max-width:320px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-next-btn{right:-35px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn{cursor:pointer;height:40px;position:absolute;right:-40px;top:-40px;transition:all .3s ease;width:40px;z-index:2}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn{right:-20px;top:-30px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:hover:after,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:hover:before{background:#fff}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:before{transform:rotate(45deg)}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:after{transform:rotate(-45deg)}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:after,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:before{background:#d5cece;border-radius:10px;content:"";display:block;height:2px;left:50%;margin:-1px 0 0 -10px;position:absolute;top:50%;transition:all .3s ease;width:25px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:after,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-close-btn:before{width:20px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media{background-color:#000;display:flex;flex:0 0 60%}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media{flex:auto;width:100%}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media>div{align-items:center;display:flex;height:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-review-popup-image-counter{bottom:-30px;color:#fff;position:absolute;right:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper{width:500px}@media screen and (max-width:1024px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper{width:392px}}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper{width:auto}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .swiper-pagination{bottom:10px!important;display:block}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right{align-items:center;background-color:#fff;background-image:none;box-shadow:0 0 16px 0 #0003;color:#909090;display:flex;font-size:24px;height:40px;justify-content:center;text-align:center;width:40px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left.swiper-button-disabled,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left:after,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right:after{font-size:16px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right{display:none}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-left:hover,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-feed-popup-carousel-wrapper .icon-arrow-circle-o-right:hover{background-color:#fff;box-shadow:0 0 16px 0 #0000004d}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media img{width:500px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media img{width:auto}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media img{display:block;height:100%;max-height:700px;object-fit:contain}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media iframe,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media video{width:500px}@media screen and (max-width:1024px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media iframe,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media video{width:392px}}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media iframe,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media video{width:100%}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-ig-no-video img{max-height:600px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-ig-thumbnail{width:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-ig-notice{background-color:#fff;bottom:0;color:#000;padding:10px;position:absolute;width:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-ig-notice strong{margin-bottom:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-media .wpsr-ig-notice p{font-size:14px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content{display:flex;flex-direction:column;width:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-name a{box-shadow:none;color:#262626;display:inline-block;font-size:14px;font-weight:600;line-height:1.4;text-decoration:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-name a:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-name a:hover{outline:none;text-decoration:underline}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info{align-items:center;border-bottom:1px solid #eee;display:flex;padding:20px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info{padding:10px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info p{font-size:16px;font-weight:600;margin:0}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info a{box-shadow:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info a img{border-radius:50%;height:40px;margin-right:10px;object-fit:cover;width:40px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-user-info a img{height:30px;width:30px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper{flex:1}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments ::-webkit-scrollbar,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-scrollbar ::-webkit-scrollbar{border-radius:100px;width:8px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments ::-webkit-scrollbar-thumb,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-scrollbar ::-webkit-scrollbar-thumb{background:#4948483b}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments ::-webkit-scrollbar-track,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-scrollbar ::-webkit-scrollbar-track{background:#4846461a}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments .wpsr-feed-popup-comments-wrapper-inner,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-scrollbar .wpsr-feed-popup-comments-wrapper-inner{height:370px;overflow-y:scroll}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments .wpsr-feed-popup-comments-wrapper-inner,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-scrollbar .wpsr-feed-popup-comments-wrapper-inner{height:200px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper.wpsr-feed-popup-have-comments .wpsr-feed-popup-comments-wrapper-inner{height:120px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment{display:flex;padding:20px 20px 0}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment{padding:20px 20px 10px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment a img{border-radius:50%;height:40px;margin-right:10px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment .wpsr-feed-popup-comment-inner{width:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text a,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span{box-shadow:none;color:#262626;font-size:14px;font-weight:600;line-height:1.4;text-decoration:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text a:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text a:hover,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span:hover{outline:none;text-decoration:underline}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text a,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span{margin-right:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text span:hover{text-decoration:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text p{color:#262626;display:inline;font-size:14px;font-weight:400;line-height:1.4;margin:0;word-break:break-word}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-text p a{color:#00376b;font-weight:400}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-meta{margin-top:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-comments-wrapper .wpsr-feed-popup-comment-meta time{color:#8e8e8e;font-size:12px;font-weight:400;line-height:1.4}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-statistics-date{border-bottom:1px solid #eee;border-top:1px solid #eee;display:flex;flex-direction:column;padding:20px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-statistics-date{gap:5px;padding:10px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-statistics-date span{color:#262626;font-size:14px;font-weight:600;padding-bottom:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-statistics-date a{box-shadow:none;color:#8e8e8e;font-size:10px;font-weight:400;line-height:1.4;text-decoration:none;text-transform:uppercase}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta{align-items:center;display:flex;padding:20px}@media screen and (max-width:767px){.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta{padding:10px 15px}}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a{align-items:center;box-shadow:none;color:#262626;display:flex;font-size:12px;font-weight:400;line-height:0;text-decoration:none}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a span.icon-facebook-square,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a span.icon-instagram{font-size:18px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a span+span{display:inline-block;margin-top:2px;padding-left:5px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a span+span:focus,.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a span+span:hover{outline:none;text-decoration:underline}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a .wpsr-icon-tiktok-black{background-image:url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/images/icon-tiktok-black.png?7146ef0826b3c23ca309da88d40e830f);background-position:50%;background-repeat:no-repeat;background-size:contain;height:15px;margin-right:2px;width:15px}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a.wpsr-popup-shoppable-btn{background:#000;border-radius:4px;color:#dee3e7;display:block;font-size:16px;font-weight:700;padding:13px 16px;text-align:center;text-decoration:none;transition:.4s;width:100%}.wpsr-feed-popup-box-wraper .wpsr-feed-popup-box-wraper-inner .wpsr-feed-popup-box-content .wpsr-feed-popup-view-post-cta a.wpsr-popup-shoppable-btn:hover{opacity:.6}.wpsr-feed-wrap .wpsr-ig-follow-btn{flex:auto 0 0;margin-left:30px}@media screen and (max-width:767px){.wpsr-feed-wrap .wpsr-ig-follow-btn{margin-left:0}}.wpsr-feed-wrap .wpsr-ig-follow-btn a{background-color:#0095f6;border-radius:4px;box-shadow:none;color:#fff;display:inline-block;font-size:14px;font-weight:600;height:auto;padding:5px 20px;text-decoration:none}.wpsr-feed-wrap .wpsr-ig-follow-btn a:focus,.wpsr-feed-wrap .wpsr-ig-follow-btn a:hover{background:#0095f6;text-decoration:none}.wpsr_feeds.wpsr-loading-feeds{opacity:.5;transition:.3s}.wpsr-load-more-default{user-focus:none;align-items:center;background-color:#000;border:none;border-radius:4px;box-shadow:none;color:#fff;cursor:pointer;display:flex;font-size:14px;font-weight:600;height:36px;justify-content:center;margin:15px auto;max-width:300px;opacity:1;outline:none;position:relative;transition:.3s ease;width:calc(100% - 16px)}.wpsr-load-more-default:focus{outline:2px solid #3962b3}.wpsr-load-more-default:hover{opacity:.7}.wpsr-load-more-default:focus,.wpsr-load-more-default:hover{box-shadow:none}.wpsr-load-more-default .wpsr-load-icon-wrapper{align-items:center;background:#dddedf;border-radius:4px;bottom:0;display:none;justify-content:center;left:0;position:absolute;right:0;top:0}.wpsr-load-more-default span{animation-delay:.2s;-webkit-animation-delay:.2s;animation-duration:1s;-webkit-animation-duration:1s;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;animation-name:rotateAnimation;-webkit-animation-name:rotateAnimation;background-color:initial!important;border-bottom:3px solid #fff;border-left:3px solid #fff;border-color:#fff #fff #fff0 #fff0;border-radius:15px;border-style:solid;border-width:3px;display:block;font-size:0;height:15px;margin:10px auto;padding:0;width:15px}.wpsr-load-more-default.wpsr-spinner-loading .wpsr-load-icon-wrapper{display:inline-flex}.elementor-widget-container .wpsr-load-more-default,.elementor-widget-container .wpsr-load-more-default:focus,.elementor-widget-container .wpsr-load-more-default:hover{background:none}@keyframes rotateAnimation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.widget_wpsn-widget .wpsr-container{padding-left:0;padding-right:0}.widget_wpsn-widget .wpsr-ig-feed-wrapper:not(.wpsr-instagram-slider-activate) .wpsr-ig-feed-wrapper-inner{background-color:#f9f9f9;height:100%;max-height:400px;overflow-x:hidden;overflow-y:scroll;padding:10px;transition:height .1s cubic-bezier(.4,0,.2,1) 0s}.widget_wpsn-widget .wpsr-ig-feed-wrapper:not(.wpsr-instagram-slider-activate) .wpsr-ig-header{margin-bottom:0!important}.widget_wpsn-widget .wpsr-ig-header-inner{display:block;text-align:center}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-header-logo{margin-right:5px}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-header-logo a img{height:40px;width:40px}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-statistics{justify-content:center}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-name a{font-size:16px}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-header-info .wpsr-ig-header-description p{font-size:14px}.widget_wpsn-widget .wpsr-ig-header-inner .wpsr-ig-follow-btn{margin-left:0;margin-top:10px}.widget_wpsn-widget .wpsr-ig-post .wpsr-ig-post-info{padding:10px}.widget_wpsn-widget .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic svg{height:18px;width:18px}.widget_wpsn-widget .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p{font-size:12px}.widget_wpsn-widget .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-icon svg{height:15px!important;width:15px!important}.widget_wpsn-widget .wpsr-instagram-slider-activate .wpsr-ig-post{margin-bottom:0}.widget_wpsn-widget .wpsr-instagram-slider-activate .wpsr-swiper-pagination{bottom:auto!important}.widget_wpsn-widget .wpsr-instagram-slider-activate .wpsr-swiper-prev-next{opacity:0;transition:.3s}.widget_wpsn-widget .wpsr-instagram-slider-activate:hover .wpsr-swiper-prev-next{opacity:1}.widget_wpsn-widget .wpsr-ig-footer{margin-top:0!important}.widget_wpsn-widget .wpsr-ig-follow-btn{margin-left:10px}.widget_wpsn-widget .wpsr-ig-follow-btn a,.widget_wpsn-widget .wpsr-ig-load-more.wpsr-load-more-default{font-size:13px;padding:5px 6px}.wpsr-ig-feed-wrapper{margin-bottom:20px}.wpsr-instagram-slider-activate .wpsr-ig-footer{margin-top:10px}.wpsr-ig-post{margin-bottom:30px;overflow:hidden;position:relative}.wpsr-ig-post:has(a:focus){overflow:visible}.wpsr-ig-post:hover .wpsr-ig-post-info{opacity:1;visibility:visible}.wpsr-ig-post:hover .wpsr-ig-shoppble-icon-top img{visibility:hidden}.wpsr-ig-post .wpsr-ig-playmode{cursor:pointer;display:block}.wpsr-ig-post .wpsr-ig-playmode:focus{outline:2px solid #72aee6;outline-offset:3px}.wpsr-ig-post .wpsr-ig-post-info{align-items:center;background-color:#0009;bottom:0;box-sizing:border-box;cursor:pointer;display:flex;flex-direction:column;justify-content:center;left:0;opacity:0;padding:20px;pointer-events:none;position:absolute;right:0;top:0;transition:.4s;visibility:hidden;z-index:3}.wpsr-ig-post .wpsr-ig-post-info .wpsr-shoppable-button{background-color:initial;border:1px solid #fff;border-radius:4px;color:#fff;cursor:pointer;font-size:14px;font-weight:400;padding:8px 30px;pointer-events:auto;position:absolute;text-decoration:none}.wpsr-ig-post .wpsr-ig-post-info .wpsr-shoppable-button:focus,.wpsr-ig-post .wpsr-ig-post-info .wpsr-shoppable-button:hover{text-decoration:none}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics{align-items:center;display:flex}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic{align-items:center;display:flex;margin-right:15px}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic:last-child{margin-right:0}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic span{font-size:14px;font-weight:700}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic{color:#fff}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic svg{fill:#fff;height:20px;margin-right:5px;width:20px}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption{margin-top:10px;pointer-events:none}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p{color:#fff;font-size:14px;font-weight:400;line-height:1.4;margin-bottom:0;margin-top:0;text-align:center;word-break:break-word}@media screen and (max-width:767px){.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p{font-size:16px}}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p a{color:#00376b;cursor:pointer;font-weight:400;pointer-events:auto;text-decoration:none}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p a:focus,.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p a:hover{text-decoration:underline}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-icon{position:absolute;right:10px;top:10px}.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-icon svg path{fill:#fff}.wpsr-ig-post .wpsr-ig-shoppble-icon-top{left:10px;position:absolute;top:10px}.wpsr-ig-post .wpsr-ig-shoppble-icon-top img{box-shadow:0 4px 11px 1px #0003;height:18px;visibility:visible;width:18px}.wpsr-ig-footer{justify-content:center}.wpsr-ig-load-more.wpsr-load-more-default{background-color:#0095f6;height:auto;margin:0;max-width:none;padding:10px 20px;width:auto}.wpsr-ig-load-more.wpsr-load-more-default:hover{background-color:#0a8bdf}.wpsr-ig-post.wpsr-image-ratio-frame34 .wpsr-ig-feed-popup-media,.wpsr-ig-post.wpsr-image-ratio-frame34 .wpsr-ig-post-media{padding-top:133.33333333%}.wpsr-ig-post.wpsr-image-ratio-frame45 .wpsr-ig-feed-popup-media,.wpsr-ig-post.wpsr-image-ratio-frame45 .wpsr-ig-post-media{padding-top:125%}.wpsr-ig-feed-popup-media,.wpsr-ig-post-media{overflow:hidden;padding-top:100%;position:relative}.wpsr-ig-feed-popup-media .wpsr-ig-post-type-icon,.wpsr-ig-post-media .wpsr-ig-post-type-icon{background-image:url(//www.acheipatos.com.br/wp-content/plugins/wp-social-reviews/assets/images/ig-media-type.png?cf631e89461d1df66942f30a5024bf8a);background-position:0 -33px;background-repeat:no-repeat;background-size:65px 65px;height:32px;position:absolute;right:5px;top:5px;width:32px}.wpsr-ig-feed-popup-media .wpsr-ig-post-type-icon.wpsr-ig-post-type-CAROUSEL_ALBUM,.wpsr-ig-post-media .wpsr-ig-post-type-icon.wpsr-ig-post-type-CAROUSEL_ALBUM{background-position:0 0}.wpsr-ig-feed-popup-media .wpsr-ig-post-type-icon.wpsr-ig-post-type-VIDEO,.wpsr-ig-post-media .wpsr-ig-post-type-icon.wpsr-ig-post-type-VIDEO{background-position:0 -33px}.wpsr-ig-feed-popup-media img,.wpsr-ig-feed-popup-media video,.wpsr-ig-post-media img,.wpsr-ig-post-media video{height:100%;left:50%;max-width:inherit;min-width:100%;object-fit:cover;position:absolute;top:50%;transform:translate(-50%,-50%);width:auto}.wpsr-ig-feed-popup-media{padding-top:0}.wpsr-ig-feed-popup-media a{width:100%}.wpsr-ig-feed-popup-media .wpsr-ig-post-type-icon{right:15px}.wpsr-ig-feed-popup-media img{position:static;transform:none}.wpsr-instagram-slider-activate .wpsr-ig-post-media{display:none}.wpsr-slider-before-init .wpsr-ig-post-media{display:block}.wpsr-instagram-slider-activate .wpsr-animated-background{background:#f0f0f0}.wpsr-slider-before-init .wpsr-animated-background{animation-duration:1.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:wpsrPlaceHolderShimmer;animation-timing-function:linear;background:#a9a9a9;background:linear-gradient(90deg,#eee 10%,#ddd 18%,#eee 33%);background-size:800px 104px;height:100px;position:relative}.wpsr-ig-feed-template2 .wpsr-instagram-masonry-activate .wpsr-ig-post{height:auto}.wpsr-ig-feed-template2 .wpsr-column-gap-no_gap [class*=wpsr-col]{margin-bottom:0}.wpsr-ig-feed-template2 .wpsr-column-gap-narrow [class*=wpsr-col]{margin-bottom:10px}.wpsr-ig-feed-template2 .wpsr-column-gap-narrow [class*=wpsr-col]>div{margin-bottom:0}.wpsr-ig-feed-template2 .wpsr-column-gap-small [class*=wpsr-col]{margin-bottom:20px}.wpsr-ig-feed-template2 .wpsr-column-gap-small [class*=wpsr-col]>div{margin-bottom:0}.wpsr-ig-feed-template2 .wpsr-column-gap-wide [class*=wpsr-col]{margin-bottom:40px}.wpsr-ig-feed-template2 .wpsr-column-gap-wide [class*=wpsr-col]>div{margin-bottom:0}.wpsr-ig-feed-template2 .wpsr-column-gap-wider [class*=wpsr-col]{margin-bottom:50px}.wpsr-ig-feed-template2 .wpsr-column-gap-wider [class*=wpsr-col]>div{margin-bottom:0}.wpsr-ig-feed-template2.wpsr-instagram-masonry-activate .wpsr-ig-post{height:auto}.wpsr-ig-feed-template2 .wpsr-ig-post{background-color:#fff;box-shadow:0 0 10px 4px #0000000a;height:100%;margin-bottom:0}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-media img{height:100%;left:50%;max-width:inherit;min-width:100%;object-fit:cover;position:absolute;top:50%;transform:translate(-50%,-50%);width:auto}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button{align-items:center;background-color:#241717;color:#fff;cursor:pointer;display:flex;font-size:14px;font-weight:400;justify-content:space-between;padding:8px 15px;pointer-events:auto;position:inherit;text-decoration:none;transition:.3s}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button:focus,.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button:hover{border:none;box-shadow:none;outline:none;text-decoration:none}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button:focus i,.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button:hover i{margin-right:-5px}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-shoppable-button i{font-size:18px;transition:.3s}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info{background-color:initial;opacity:1;padding:15px;position:inherit;visibility:initial}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics{align-items:center;display:flex;pointer-events:none}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic{align-items:center;display:flex;margin-right:15px;pointer-events:none}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic:last-child{margin-right:0}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic span{color:#262626;font-weight:700}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic{color:#000}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-statistics .wpsr-ig-post-single-statistic svg{fill:#000;height:20px;margin-right:5px;width:20px}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption{margin-top:5px}.wpsr-ig-feed-template2 .wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p{color:#000}