:root {
	/* Most common initial font size: 16px; */
	--font-scale: 1.18;
	--font-inicial-size: .625rem;
	--tx-s-1: var(--font-inicial-size);
	--tx-s-2: calc(var(--font-scale) * var(--tx-s-1));
	--tx-s-3: calc(var(--font-scale) * var(--tx-s-2));
	--tx-s-4: calc(var(--font-scale) * var(--tx-s-3));
	--tx-s-5: calc(var(--font-scale) * var(--tx-s-4));
	--tx-s-6: calc(var(--font-scale) * var(--tx-s-5));
	--tx-s-7: calc(var(--font-scale) * var(--tx-s-6));
	--tx-s-8: calc(var(--font-scale) * var(--tx-s-7));

	--fw-light: 300;
	--fw-medium: 500;
	--fw-semi-bold: 600;
	--fw-bold: 700;

	/* Typography weight */
	--fw-100: 100;	/* Thin */
	--fw-200: 200;	/* Extra light */
	--fw-300: 300;	/* Light */
	--fw-400: 400;	/* Regular */
	--fw-500: 500;	/* Medium */
	--fw-600: 600;	/* Semi-bold */
	--fw-700: 700;	/* Bold */
	--fw-800: 800;	/* Extra bold */
	--fw-900: 900;	/* Black */
}

body {
	font-family: 'Poppins', sans-serif;
	font-weight: var(--fw-light);
	/* font-size: var(--tx-s-3); */
	font-size: initial;
	color: var(--color-green-700);
	background-color: var(--color-gray-0);
	background-color: whitesmoke;
}

a {
	color: inherit
}

small {
	font-size: var(--tx-s-2)
}


label {
	font-size: var(--tx-s-2)
}

legend {
	font-weight: var(--tx-w-bold);
	margin-bottom: -.75rem;
}


ol,
ul {
	list-style: none;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

.tx-s-0 {
	font-size: 9px
}

.tx-s-1 {
	font-size: var(--tx-s-1)
}

.tx-s-2 {
	font-size: var(--tx-s-2)
}

.tx-s-3 {
	font-size: 14px
}

.tx-s-4 {
	font-size: var(--tx-s-4)
}

.tx-s-5 {
	font-size: var(--tx-s-5)
}

.tx-s-6 {
	font-size: var(--tx-s-6)
}

.tx-s-7 {
	font-size: var(--tx-s-7)
}

.tx-s-8 {
	font-size: var(--tx-s-8)
}



.tx-w-normal {
	font-weight: var(--fw-light)
}

.tx-w-bold {
	font-weight: var(--tx-w-bold)
}

.tx-w-black {
	font-weight: var(--tx-w-black)
}



.tx-w-100 {
	font-weight: var(--fw-100)
}

.tx-w-200 {
	font-weight: var(--fw-200)
}

.tx-w-300 {
	font-weight: var(--fw-300)
}

.tx-w-400 {
	font-weight: var(--fw-400)
}

.tx-w-500 {
	font-weight: var(--fw-500)
}

.tx-w-600 {
	font-weight: var(--fw-600)
}

.tx-w-700 {
	font-weight: var(--fw-700)
}

.tx-w-800 {
	font-weight: var(--fw-800)
}

.tx-w-900 {
	font-weight: var(--fw-900)
}



.no-wrap {
	white-space: nowrap
}

.uppercase {
	text-transform: uppercase
}

.line-through {
	text-decoration: line-through
}

.underline {
	text-decoration: underline
}

.no-deco {
	text-decoration: none;
}

.required,
.message-failure,
.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error,
.password-error {
	color: crimson;
	font-weight: bold;
}

.field-validation-valid,
.username-available-status {
	display: inline-block;
	font-size: 12px;
	color: black;
	vertical-align: bottom;
}



.main-title {
	font-size: var(--tx-s-7);
	font-weight: var(--tx-w-normal);
	border-radius: 4rem;
	margin-bottom: var(--space-300);
	padding: var(--space-100) var(--space-600);
	background: var(--color-green-100);
	color: var(--color-green-400);
	margin-top: var(--space-300);
}

.page--registration .main-title,
.page--login .main-title {
    text-align: center;
}


.section-title {
	padding: var(--space-200) var(--space-600);
	text-decoration: none;
	display: block;
	position: relative;

	font-size: 22px;
	font-weight: 600;
	color: var(--color-green-800);
	text-align: center;
}

.section-title::before, 
.section-title::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--color-yellow-300);
    margin: 0;
}

.section-title::after {
	bottom: 0;
	top: initial;
}



.block-title {
	font-size: var(--tx-s-4);
	font-weight: var(--fw-600);
	text-decoration: none;
	color: var(--color-green-900);
	
	display: flex;
	align-items: center;
	gap: var(--space-300);
	flex-grow: 1;
}

.block-title::after {
	content: "";
	height: 1px;
	background-color: var(--color-green-900);
	flex-grow: 1;
}



.block-title--newsletter-box {
	font-weight: var(--fw-600);
	color: white;
}

.block-title--newsletter-box::after {
	background-color: white;
}


.breadcrumb a {
    text-decoration: none;
    font-size: 0.8rem;
}



.wysiwyg-wrapper ul {
	margin: .75rem 0;
	padding: 0 0 0 2.25rem;
	list-style: disc;
}

.wysiwyg-wrapper ol {
	margin: .75rem 0;
	padding: 0 0 0 2.25rem;
	list-style: decimal;
}

.wysiwyg-wrapper p {
	margin: 0 0 .75rem 0;
}

.wysiwyg-wrapper p:last-child {
	margin: 0;
}

.prod-ov__product-name {
	text-decoration: none;
}

.share-buttons span {
    font-size: var(--tx-s-2);
}

.consultar-por-whatsapp a {
	background-image: url(/Themes/Prisma/Content/img/whatsapp.png);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: var(--tx-s-4);
    color: #37b944;
    text-decoration: none;
    font-weight: 500;
    padding-left: 33px;
    display: block;
    margin: 10px 0 12px;
	display: none;
}

.float-wp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    text-align: center;
}
