/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #000000;
	--color-lemon: #FDDA00;
	--color-black: #000000;
	--color-darkgray: #666;
	--color-gray: #999;
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay:#333333BF;
	--color-background: #F5F5F5;
	--color-lines: #D4D4D4;
	--color-link: #333333;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #C91A1C;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9C35;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-buttoncart: #000000;
	--color-buttoncart-hover: #666666;

	--base-fontfamily: "Work Sans" , sans-serif;
    --container-width: 2560px; /* (2560px | 1920px | 1680px | 1440px) */
	--container-padding: 24px;
	--container-padding-n: -24px;
	--row-padding: 12px;
	--row-padding-n: -12px;
	--productlist-padding: 0px;
	--productdetail-padding: 0px;
	--color-featuredmenu: #FDDA00;
	--mobile-popup-max-height: calc(var(--window-inner-height, 100vh) - max(30px, env(safe-area-inset-top)) - 10px);
	--mobile-popup-radius: 0px;

	--input-border-radius: 0;
	--button-border-radius: 0;

	/* Spacing */
	--sp-ex-small: 25px;
	--sp-small: 35px;
	--sp-medium: 60px;
	--sp-large: 100px;

	/* Available in base.css */
	/*--sat: env(safe-area-inset-top);
	--sar: env(safe-area-inset-right);
	--sab: env(safe-area-inset-bottom);
	--sal: env(safe-area-inset-left);*/
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 25px;
		--sp-medium: 55px;
		--sp-large: 80px;
	}
}

@media screen and (max-width: 1599px) {
	:root {
		--container-padding: 14px;
		--container-padding-n: -14px;
	}
}






/*
 *
 * Tipography
 *
*/
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	font-family: var(--base-fontfamily);
	font-weight: 400;
	font-size: 16px;
	color: var(--color-black);
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 160%;
}

/* PARAGRAPH - A */
.paragraph a, .paragraph .a,
a.paragraph, .paragraph.a {
	color: var(--color-link);
	text-decoration: underline;
}

/* A - Hover */
@media (hover) {
	a:hover, .a:hover,
	.paragraph a:hover, .paragraph .a:hover,
	a.paragraph:hover, .paragraph.a:hover {
		text-decoration: none;
	}

	.paragraph a:hover, a.paragraph:hover {
		color: var(--color-link);
		text-decoration: none;
	}
}

/* PARAGRAPH - B (For mozilla) */
body b, body strong {font-weight: bold;}

/* SMALL */
a.small, .a.small, .small, small, .small, .small::before, .small::after {
	font-weight: 400; /* Required font-weight  */
	font-size: 14px;
	line-height: 160%;
	color: var(--color-black);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 700;
	font-size: 54px;
	line-height: 116%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 400;
	font-size: 50px;
	line-height: 118%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 600;
	font-size: 36px;
	line-height: 118%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 600;
	font-size: 28px;
	line-height: 118%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 116%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 160%;
}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	text-transform: uppercase;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}


/* PRODUCT */
	/* Brand */
		.brand-list-product,
		.rdc-product-item-brand {
			font-weight: 600;
			font-size: 24px;
			line-height: 118%;
		} 

	/* Name */
		.product-item .desc .name,
		.rdc-product-item-name {
			font-weight: 500;
			font-size: 16px;
			line-height: 160%;
		}

	/* Price */
		.price {
			display: inline-grid;
			align-items: center;
			grid-auto-flow: column;
			grid-gap: 10px;
		}

		.price, .price p {
			font-weight: 600;
			font-size: 14px;
			line-height: 110%;
		}

		/* Price Old */
		.price .old {
			color: var(--color-black);
			text-decoration: line-through;
			margin-right: 0 !important;
			order: 1;
		}

		/* Price Discount */
		/*body.MacOS .price .discount {padding: 2px 4px 3px;}*/
		.price .discount {
			background: #003BAD; /* Required */
			color: var(--color-white); /* Required */
			padding: 2px 4px 1px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-weight: 500;
			font-size: 13px;
		}

		/* Price Current */
		.price .discount + .current {color: #003BAD;}

		/* Price Desde, Type, packageType */
		.price .desde, .price .type, .price .packageType, .price .date {
			font-weight: 400;
			font-size: 13px;
			line-height: 130%;
			color: var(--color-darkgray);
		}

	/* Price Horizontal */
		.priceh {
			display: inline-flex;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 0 10px;
			flex-wrap: wrap;
		}

		.priceh, .priceh p {
			font-weight: 600;
			font-size: 14px;
			line-height: 110%;
		}

		/* Priceh Old */
		.priceh .old {
			color: var(--color-black);
			text-decoration: line-through;
			order: 1;
		}

		/* Priceh Discount */
		.priceh .discount {
			background: #003BAD;
			color: var(--color-white);
			padding: 2px 4px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-weight: 500;
			font-size: 13px;
		}

		/* Priceh Current */
		.priceh .discount + .current {color: #003BAD;}

		/* Priceh Desde, Type, packageType */
		.priceh .desde, .priceh .type, .priceh .packageType, .priceh .date {
			font-weight: 400;
			font-size: 13px;
			line-height: 130%;
			color: var(--color-darkgray);
		}

	/* Promo Date */
	.rdc-promo-date {
		font-weight: 400;
		font-size: 13px; /* Required font-size */
		color: var(--color-darkgray);
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-weight: 400;
		font-size: 13px;
		color: var(--color-darkgray);
	}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 40px;
		line-height: 118%;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 34px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 26px;
		line-height: 116%;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 20px;
		line-height: 116%;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 18px;
		line-height: 118%;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 16px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	/* .list-nav-subtitle {
		font-size: 16px;
	} */

	/* SIGNATURE */
	/* .signature {
		font-size: 16px;
	} */

	/* PRODUCT */
	/* Brand */
	.brand-list-product,
	.rdc-product-item-brand {
		font-size: 20px;
	} 

	/* Name */
	/*.product-item .desc .name,
	.rdc-product-item-name {
		font-size: 16px;
	}*/

	/* Price */
	.price {
		grid-gap: 10px;
	}

	.price p {
		font-size: 13px;
	}

	/* Price Discount */
	.price .discount {
		font-size: 12px;
	}

	/* Price Desde, Type, packageType */
	.price .desde, .price .type, .price .packageType, .price .date {
		font-size: 10px;
	}

	/* Promo Date */
	.price .date,
	.rdc-promo-date {
		font-size: 10px;
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 10px;
	}

	/* Price Horizontal */
		.priceh {
			grid-gap: 0 10px;
		}

		.priceh, .priceh p {
			font-size: 13px;
		}

		/* Priceh Discount */
		.priceh .discount {
			font-size: 12px;
		}

		/* Priceh Desde, Type, packageType */
		.priceh .desde, .priceh .type, .priceh .packageType, .priceh .date {
			font-size: 10px;
		}

}

/* PRODUCT ITEM SMALL == MOBILE */
@media screen and (min-width: 1200px) {
	/* Os estilos aplicados em mobile, devem ser colocados aqui. Exemplo: */
	.rdc-product-item-size-small .rdc-product-item-brand {
		font-size: 16px;
	}
}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 600;
		font-size: 14px;
		line-height: 118%;
		color: var(--color-black);
		text-transform: uppercase;
		padding: 0 40px;
		border: 2px solid var(--color-black);
		background-color: transparent;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 90px;
		min-height: 42px;
		border-radius: var(--button-border-radius); 
		user-select: none;
	}

	.button:not(.btn-cart):not(.btn-cart-sec).loader, button:not(.btn-cart):not(.btn-cart-sec).loader, input[type=submit]:not(.btn-cart):not(.btn-cart-sec).loader, input[type=button]:not(.btn-cart):not(.btn-cart-sec).loader {
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

	/* Normal Hover */
	@media (hover) {
		.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-white);
			border-color: var(--color-black);
			background-color: var(--color-black);
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn-light, .button.white, button.btn-light, button.white, input[type=submit].btn-light, input[type=submit].white, input[type=button].btn-light, input[type=button].white {
		color: var(--color-white);
		border: 2px solid var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover) {
		.button.btn-light:not([disabled]):hover, .button.white:not([disabled]):hover, button.btn-light:not([disabled]):hover, button.white:not([disabled]):hover, input[type=submit].btn-light:not([disabled]):hover, input[type=submit].white:not([disabled]):hover, input[type=button].btn-light:not([disabled]):hover, input[type=button].white:not([disabled]):hover {
			color: var(--color-black);
			border-color: var(--color-white);
			background-color: var(--color-white);
		}
	}

	/* White Disabled */
	.button.btn-light[disabled], .button.white[disabled], button.btn-light[disabled], button.white[disabled], input[type=submit].btn-light[disabled], input[type=submit].white[disabled], input[type=button].btn-light[disabled], input[type=button].white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2 {
		color: var(--color-black);
		border: 2px solid var(--color-gray);
		background-color: transparent;
	}

	/* Normal Hover */
	@media (hover) {
		.button.btn2:not([disabled]):hover, button.btn2:not([disabled]):hover, input[type=submit].btn2:not([disabled]):hover, input[type=button].btn2:not([disabled]):hover, .buttonBlocks:not([disabled]):hover{
			color: var(--color-black);
			border: 2px solid var(--color-black);
			background-color: transparent;
		}
	}

	/* Normal Disable */
	.button.btn2[disabled], button.btn2[disabled], input[type=submit].btn2[disabled], input[type=button].btn2[disabled], .buttonBlocks[disabled]{
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn2.btn-light, .button.btn2.white, button.btn2.btn-light, button.btn2.white, input[type=submit].btn2.btn-light, input[type=submit].btn2.white, input[type=button].btn2.btn-light, input[type=button].btn2.white,
	body #main .contentTitles_button.btn-light {
		color: var(--color-white);
		border: 2px solid var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover) {
		.button.btn2.btn-light:not([disabled]):hover, .button.btn2.white:not([disabled]):hover, button.btn2.btn-light:not([disabled]):hover, button.btn2.white:not([disabled]):hover, input[type=submit].btn2.btn-light:not([disabled]):hover, input[type=submit].btn2.white:not([disabled]):hover, input[type=button].btn2.btn-light:not([disabled]):hover, input[type=button].btn2.white:not([disabled]):hover {
			color: var(--color-white);
		border: 2px solid var(--color-white);
		background-color: transparent;
		}
	}

	/* White Disable */
	.button.btn2.btn-light[disabled], .button.btn2.white[disabled], button.btn2.btn-light[disabled], button.btn2.white[disabled], input[type=submit].btn2.btn-light[disabled], input[type=submit].btn2.white[disabled], input[type=button].btn2.btn-light[disabled], input[type=button].btn2.white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline; /* Required */
		font-weight: 500;
		font-size: 13px;
		line-height: normal;
		text-decoration: none !important;
		padding: 1px 0;
		border: 0;
		background: transparent;
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover) {
		.button.link:not([disabled]):hover, .link:not([disabled]):hover {
			border-color: transparent;
			color: currentColor;
		}
	}

	/* Normal Disable */
	.button.link[disabled], .link[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {

		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
		border-radius: var(--button-border-radius);
	}

	/* Normal hover e active */
	@media (hover) {
		.button-card:not(.disabled):not(.esgotado):not(.active):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
	}

	/* Disable */
	.button-card.disabled {background-color: var(--color-background);}

	/* Esgotado */
	.button-card.esgotado {opacity: 20%;}

	/* Title */
	.button-card-title {}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

	@media screen and (hover) {
		.button-card:not(.disabled):not(.esgotado):hover{
			background-color: var(--color-white);
		}
	}

/* Buttons Cart - (Nota: O tamanho do botão deve ser igual ao .button, no detalhe devem customizar a altura) */
	/* Normal */
	.btn-cart, .btn-cart-sec, .btn-cart-esgotado {
		font-weight: 600;
		font-size: 14px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 220px;
		min-height: 42px; /* Ser igual ao .button  */
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
		border-radius: var(--button-border-radius); 
	}

	.btn-cart.loader {
		color: var(--color-buttoncart) !important;
		border-color: var(--color-buttoncart) !important;
		background-color: var(--color-buttoncart) !important;
	}

	/* Normal hover */
	@media (hover) {
		.btn-cart:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
			color: var(--color-white);
			border-color: var(--color-buttoncart-hover);
			background-color: var(--color-buttoncart-hover);
		}
	}

	/* Normal Disable */ 
	.btn-cart[disabled] {
		cursor: default !important;
		opacity: 50%;
	}

/* Button Esgotado */
body .btn-cart-esgotado{
	color: var(--color-white) !important;
	border-color: var(--color-lightgray) !important;
	background-color: var(--color-lightgray) !important;
	cursor: default !important;
	opacity: 1 !important;
}

/* Button Cart Secundario */
.btn-cart-sec{
	color: var(--color-buttoncart);
	border-color: var(--color-buttoncart);
	background-color: transparent;
}

/* Button Cart Secundario hover */
@media (hover) {
	.btn-cart-sec:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
		color: var(--color-white);
		border-color: var(--color-buttoncart);
		background-color: var(--color-buttoncart);
	}
}

/* Button Loading */
.button.loader, button.loader {
	position: relative;
}

.button.loader::before, button.loader::before, .btn-cart.loader::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: -13px 0 0 -13px;
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center/24px;
}

/* Button Cart Secundario Loading */
.btn-cart-sec.loader {
	color: transparent;
}

.btn-cart-sec.loader::before {
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%230F355C'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center / 24px;
}

/* Button Icon */
.btn-icon {min-width: 0;}
.btn-icon .rdc-icon-svg {width: 24px;height: 24px;flex-shrink: 0;}
.btn-icon:not(.sel):not(.active):not(.disabled):not([disabled]):hover .rdc-icon-svg {filter: invert(1);}






/*
 *
 * FLAGS
 *
*/
.flags .flag {font-weight: 600;line-height: normal;text-transform: uppercase;min-height: 20px;display: flex;justify-content: center;align-items: center;font-size: 12px;padding: 3px 10px 3px 10px;}
.blog .flags .flag{
	line-height: normal;
	color: var(--color-white);
	text-transform: none;
	background: var(--color-dark);
	border-radius: 2px;
	min-height: 23px;
	padding-left: 10px;
	padding-right: 10px;
}
.blog .flags.flagsStatic .flag{color: var(--color-dark);}

/*
 *
 * Accordions
 *
*/
/* body .accordion > li {
	border-color: var(--color-lines); 
}

body .accordion > li.active {
	border-top-color: var(--color-theme);
}

body .accordion > li.active + li {
	border-top-color: var(--color-theme);
} */

.accordion-head {
	user-select: none;
}

.accordion .accordion-head, .accordion .accordion-content {
	padding-left: 0;
	padding-right: 0;
}






/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0 7px;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 500;
	font-size: 16px;
	line-height: normal;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 10px 40px;
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: var(--button-border-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	min-width: 120px;
	user-select: none;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		opacity: 0.5;
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-black);
	border-color: var(--color-black);
	opacity: 1;
}

.tabs-container.vertical .tabs:not(.rdc-fixed-styles) .tabs-item {
	display: inline-block;
	padding-bottom: 0;
	border-bottom-width: 1px;
}

@media screen and (max-width: 991px) {
	.tabs-container .tabs:not(.rdc-fixed-styles) {
		margin: 0 var(--container-padding-n);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:first-child {
		margin-left: var(--container-padding);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:last-child {
		margin-right: var(--container-padding);
		padding-right: 0;
	}
}


/*
 *
 * Form
 *
*/
/* Label (forms, filters, etc) */
.label-title, .label-subtitle, .label-desc {user-select: none;}

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], input[type=date], select {
	padding: 10px 15px;
	border: 1px solid var(--color-lines);
	height: 41px;
	background-color: white;
	color: var(--color-black); /* Required */
	line-height: 160%;
	/* border-radius: var(--input-border-radius); */
}

input[type=file] {
	padding: 8px 15px;
}

body .magic-checkbox+label:after { top: 9px; left: 8px; width: 6px; height: 12px; border-width: 1px;}

@media (hover) {
	input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=search]:hover, input[type=file]:hover, input[type=date]:hover, textarea:hover, div.select:not(.disabled):hover,
	.magic-checkbox:not([checked]):not([disabled])+label:hover:before, .magic-radio+label:hover:before {
		border-color: var(--color-gray);
	}
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=date]:focus, textarea:focus {
    border-color: var(--color-black);
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=search]:disabled, input[type=date]:disabled, textarea:disabled, div.select[disabled],
input[type=text].disabled, input[type=email].disabled, input[type=password].disabled, input[type=tel].disabled, input[type=search].disabled, input[type=date].disabled, textarea.disabled, div.select.disabled {
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-lines)!important;
	-webkit-text-fill-color: var(--color-darkgray);
	-webkit-opacity: 1; 
	cursor: default;
}

/* Select */
div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	/* overflow-x: hidden; */
	border-radius: var(--input-border-radius);
}

body div.select select {
	position: relative;
	width: 100%;
	padding: 10px 40px 10px 15px;
	height: auto;
	appearance:none;
	border: 0px !important;
	border-radius: 0 !important;
	background: transparent;
	border: 1px solid var(--color-black);
	z-index: 10;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	line-height: 19px; /* Mozilla */
}

body div.select::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 18px;
	height: 18px;
	-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 18.4109L24.2329 11L25.5 12.2945L16 21L6.5 12.2945L7.76714 11L16 18.4109Z' fill='black'/%3e%3c/svg%3e ");
	mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 18.4109L24.2329 11L25.5 12.2945L16 21L6.5 12.2945L7.76714 11L16 18.4109Z' fill='black'/%3e%3c/svg%3e ");
    -webkit-mask-position: left top;
    mask-position: left top;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	background-color: var(--color-black);
	z-index: 11;
    pointer-events: none;
}

body div.select.active::after {
	-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 13.5891L7.76714 21L6.5 19.7055L16 11L25.5 19.7055L24.2329 21L16 13.5891Z' fill='black'/%3e%3c/svg%3e ");
	mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 13.5891L7.76714 21L6.5 19.7055L16 11L25.5 19.7055L24.2329 21L16 13.5891Z' fill='black'/%3e%3c/svg%3e ");
}

div.select.loading::after {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
	mask-image: none;
	-webkit-mask-image: none;
}

div.select select:disabled{
	background-color: var(--color-background);
}

div.select select::-ms-expand{
	display: none;
}

div.select[disabled]::after{
	opacity: 0.3;
}

div.select:has(select:focus){
	border-color: var(--color-black) !important;
}

/* Input date */
div.input-date {position: relative;}
div.input-date::after {
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	right: 15px;
	width: 20px;
	height: 20px;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.12 6.98H21.5V5.22C21.5 5.099 21.401 5 21.28 5H19.74C19.619 5 19.52 5.099 19.52 5.22V6.98H12.48V5.22C12.48 5.099 12.381 5 12.26 5H10.72C10.599 5 10.5 5.099 10.5 5.22V6.98H5.88C5.39325 6.98 5 7.37325 5 7.86V26.12C5 26.6068 5.39325 27 5.88 27H26.12C26.6068 27 27 26.6068 27 26.12V7.86C27 7.37325 26.6068 6.98 26.12 6.98ZM25.02 25.02H6.98V14.57H25.02V25.02ZM6.98 12.7V8.96H10.5V10.28C10.5 10.401 10.599 10.5 10.72 10.5H12.26C12.381 10.5 12.48 10.401 12.48 10.28V8.96H19.52V10.28C19.52 10.401 19.619 10.5 19.74 10.5H21.28C21.401 10.5 21.5 10.401 21.5 10.28V8.96H25.02V12.7H6.98Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.12 6.98H21.5V5.22C21.5 5.099 21.401 5 21.28 5H19.74C19.619 5 19.52 5.099 19.52 5.22V6.98H12.48V5.22C12.48 5.099 12.381 5 12.26 5H10.72C10.599 5 10.5 5.099 10.5 5.22V6.98H5.88C5.39325 6.98 5 7.37325 5 7.86V26.12C5 26.6068 5.39325 27 5.88 27H26.12C26.6068 27 27 26.6068 27 26.12V7.86C27 7.37325 26.6068 6.98 26.12 6.98ZM25.02 25.02H6.98V14.57H25.02V25.02ZM6.98 12.7V8.96H10.5V10.28C10.5 10.401 10.599 10.5 10.72 10.5H12.26C12.381 10.5 12.48 10.401 12.48 10.28V8.96H19.52V10.28C19.52 10.401 19.619 10.5 19.74 10.5H21.28C21.401 10.5 21.5 10.401 21.5 10.28V8.96H25.02V12.7H6.98Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-position: left top;
	mask-position: left top;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: var(--color-black);
}

@-moz-document url-prefix() {
    div.input-date::after {display: none;}
}

input[type="date"] {
	display: flex;
	align-items: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none; 
	appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
	text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	display: none;
	-webkit-appearance: none;
}

body .magic-checkbox+label:before, body .magic-checkbox+span{border-radius: 0;}

/* checkbox, radio */
.magic-checkbox+label:before, .magic-radio+label:before {
    border-color: var(--color-lines);
	background-color: var(--color-white);
}

.magic-checkbox:checked+label:before, .magic-checkbox:checked+label:after, .magic-radio:checked+label:before {
    border-color: var(--color-black);
	background-color: var(--color-white);
}

.magic-radio:checked+label:after {
    background-color: var(--color-black);
}

/* checkbox disabled, radio disabled */
.magic-checkbox[disabled]+label:before, .magic-radio[disabled]+label:before {
    border-color: var(--color-lines);
}

.magic-checkbox:checked[disabled]+label:before, .magic-radio:checked[disabled]+label:before {
    border-color: var(--color-lines);
	background-color: var(--color-background);
}
.magic-checkbox:checked[disabled]+label:after {
	border-color: var(--color-black);
}

.magic-radio:checked[disabled]+label:after {
    background-color: var(--color-darkgray);
}

.magic-checkbox[disabled]+label:before, .magic-checkbox:checked[disabled]+label:before {
    background-color: var(--color-background);
}

::-webkit-input-placeholder {color: var(--color-darkgray);}
::-moz-placeholder {color: var(--color-darkgray);}
:-ms-input-placeholder {color: var(--color-darkgray);}
:-moz-placeholder {color: var(--color-darkgray);}


/*
 *
 * Messages Bar
 *
*/
.form-message .help,
.form-message .success,
.form-message .info,
.form-message .warning,
.form-message .error {
	background-repeat: no-repeat;
	background-position: left 10px center;
	background-size: 20px;
	line-height: 140%;
	padding: 7px 10px 7px 38px;
	/* border-radius: var(--input-border-radius); */
	border: 1px solid;
}

.form-message .help {
	background-color: var(--color-helplight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238b8d8f' fill-rule='evenodd'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125z' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='m16.8556542 22.6708224c-.2787156.2480277-.6017256.3726806-.9676406.3726806-.3785865 0-.7088214-.12243-.9907049-.3677345-.2823281-.24486-.42377-.5876973-.42377-1.0281785 0-.3907422.1368847-.7196304.4097648-.9861643s.6076167-.3998008 1.0047101-.3998008c.3907576 0 .7196587.1332669.9866477.3998008.2665444.2665339.4002612.5953665.4002612.9861643-.0005001.4341458-.1401081.7752603-.4192683 1.0232324zm3.4753588-8.6155585c-.2141358.3970777-.4684534.7394704-.7634529 1.0281785-.2941103.2886524-.8230865.7738152-1.586595 1.4559331-.2105234.1924535-.3799203.3613991-.5068568.5068368-.1269364.1459378-.2218054.2791492-.2837175.4002454-.0623567.1210407-.110208.2421369-.1441096.3631775-.0339016.120596-.0849207.3333897-.1540577.6373806-.117433.6451054-.4865158.9676025-1.106804.9676025-.3225654 0-.5936115-.1052575-.8145276-.3162172-.220027-.2109597-.3297904-.5240092-.3297904-.9395932 0-.5208415.0808637-.9721596.2421464-1.3538433.1603935-.3817392.3749739-.7164627.6415183-1.0051151.266989-.2886525.6265683-.6311007 1.0796827-1.0281785.3970933-.3473943.6839787-.6093712.8606005-.7860416.1770664-.1770594.3257333-.3740144.446334-.590865.1215456-.2172951.1811791-.4526519.1811791-.7069595 0-.4964444-.1838467-.9147514-.5533742-1.2558104-.3690828-.3410589-.8452614-.5118384-1.4284801-.5118384-.6825893 0-1.1849444.1721133-1.5075098.5163399-.3225654.3442267-.5949453.8510635-.8185847 1.5210106-.2114126.7011242-.6116738 1.0516307-1.200339 1.0516307-.3474081 0-.6405736-.12243-.8795521-.3672899-.2385339-.24486-.3578008-.5100045-.3578008-.7954892 0-.5890867.1892932-1.1862871.567435-1.7911568.3785864-.6048697.9306267-1.10587118 1.6565656-1.50250431.7254943-.39707773 1.5725898-.59586667 2.5397858-.59586667.8994484 0 1.6931905.16622246 2.3816709.49827835.6884804.33155574 1.2206244.78287393 1.5960429 1.35384333.374974.5705248.5628833 1.1907886.5628833 1.8607356.0008837.5263434-.1061564.9884985-.3202923 1.3855762z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-help);
}

.form-message .success {
	background-color: var(--color-successlight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125zm6.1588512 5.8627863c.0025742.0025545.005134.0051234.0076794.0077066.3826574.3883299.3815551 1.01228-.002472 1.3992554l-7.5148374 7.572533c-.3334527.3360127-.8761615.338088-1.2121742.0046354-.0015511-.0015392-.0030963-.0030844-.0046355-.0046354l-3.59894211-3.6265732c-.38226603-.3852009-.38226603-1.006628 0-1.3918289.37903691-.3819469.99593611-.384306 1.37788311-.0052691l.0043113.0043053 2.8251525 2.8389128 6.7420178-6.7937799c.3785236-.3814297.9945874-.3837856 1.3760171-.005262z' fill='%2338ca73'%3E%3C/path%3E%3C/svg%3E");
	border-color: var(--color-success);
}

.form-message .info {
	background-color: var(--color-infolight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230088df'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125z'%3E%3C/path%3E%3Cpath d='m0 0h2.400017v2.400023h-2.400017z' transform='matrix(1 0 0 -1 15 12.400022)'%3E%3C/path%3E%3Cpath d='m0 4.799989h2.400017v7.200011h-2.400017z' transform='matrix(1 0 0 -1 15 26.799988)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-info);
}

.form-message .warning {
	background-color: var(--color-warninglight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.51175785 27c-1.21116724 0-2.32813258-.669486-2.96063102-1.7215355-.71324293-1.1886792-.71324293-2.6096291-.12111672-3.8529603l7.84567219-14.03448273c.8881893-1.32530904 2.0455269-2.39102147 3.7277036-2.39102147s2.8395143 1.06571243 3.7277036 2.39102147l7.8053 13.96616783c.6459558 1.2160052.619041 2.746259-.0942019 3.9212752-.6324985 1.0520495-1.7360064 1.7215355-2.9606311 1.7215355zm8.49162805-6.804164c.7132429 0 1.2784543.5875082 1.2784543 1.3116461s-.5652114 1.2979831-1.2784543 1.2979831-1.2919117-.5738452-1.2919117-1.2979831.5786688-1.3116461 1.2919117-1.3116461zm0-1.297983c-.4710095 0-.8074448-.3962265-.8612745-.8744307l-.4306372-3.9212753c-.0672871-.669486.6324984-1.297983 1.2919117-1.297983s1.3591988.628497 1.2784543 1.297983l-.4306372 3.9212753c-.0403723.4645413-.3633502.8744307-.8478171.8744307zm-8.49162805 6.3669486h16.96979865c.6324985 0 1.170795-.3552375 1.5072304-.9017567.390265-.655823.3768076-1.4482759.067287-2.1314249l-7.7514703-13.87052696c-.5517539-.81977879-1.238082-1.6258946-2.3012177-1.6258946s-1.7629212.80611581-2.3146752 1.6258946l-7.73801284 13.87052696c-.32297793.696812-.33643535 1.4756019.06728706 2.1314249.32297793.5465192.86127448.9017567 1.49377293.9017567z' fill='%23ec7a09'%3E%3C/path%3E%3C/svg%3E");
	border-color: var(--color-warning);
}

.form-message .error {
	background-color: var(--color-errorlight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f60000'%3E%3Cpath d='m16 4c6.6274416 0 12 5.37261464 12 12 0 6.6273854-5.3726146 12-12 12-6.62738536 0-12-5.3726146-12-12 0-6.62738536 5.37261464-12 12-12zm0 1.7c-5.6885013 0-10.3 4.6114987-10.3 10.3s4.6114987 10.3 10.3 10.3 10.3-4.6114987 10.3-10.3c0-5.6885219-4.6114631-10.3-10.3-10.3z'%3E%3C/path%3E%3Cpath d='m20.2792452 11.8792201-.1584717-.1584665c-.4260336-.4260195-1.116759-.4260081-1.5427785.0000254-.000455.0004551-.0009096.0009105-.0013638.0013663l-2.5766312 2.5858521-2.5766185-2.5858393c-.4252649-.4267867-1.1159892-.4280205-1.5427759-.0027556-.0004601.0004585-.0009198.0009173-.0013791.0013766l-.1584474.1584474c-.4260265.4260265-.4260265 1.116752 0 1.5427785.0004593.0004592.0009189.0009181.001379.0013765l2.5858393 2.5766185-2.5858521 2.5766312c-.4267867.4252649-.4280204 1.1159892-.0027555 1.542776.0004542.0004558.0009088.0009112.0013638.0013663l.1584665.1584717c.4260194.4260335 1.1167449.4260449 1.5427784.0000254.0004657-.0004656.0009309-.0009317.0013957-.0013982l2.5766058-2.5858698 2.5766185 2.5858826c.4252613.4267903 1.1159856.4280298 1.5427759.0027685.0004623-.0004606.0009241-.0009216.0013855-.001383l.1584908-.1584908c.4260265-.4260265.4260265-1.1167519 0-1.5427784-.0004614-.0004614-.0009233-.0009224-.0013855-.001383l-2.5858826-2.5766185 2.5858698-2.5766058c.4267903-.4252613.4280298-1.1159856.0027685-1.5427759-.0004648-.0004665-.0009301-.0009326-.0013957-.0013982z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-error);
}

.form-field.displayError .label-title,
.form-field.displayError .checkbox-uni label {
	color: var(--color-error);
}

.form-field.displayError input,
.form-field.displayError div.select,
.form-field.displayError textarea,
.form-field.displayError .checkbox-uni .magic-checkbox+label:before{
	border-color: var(--color-error) !important;
}


/*
 *
 * Slim Scrollbar (Minicart, Product List Filters)
 * Customizar se necessário
 *
*/
/* Firefox used (scrollbar-width and scrollbar-color) */
/*
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-width: thin;
		scrollbar-color: #AAA lightgray;
	}
	*/

	/* Estilo para scroll interno, para sobrescrever o herdado */
	.slim-scrollbar {
		scrollbar-color: auto; /* ou definir outras cores */
	}

	/* WebKit (Chrome, Safari) ainda precisa dos pseudo-elementos */
	html body:not(.MacOS) .slim-scrollbar::-webkit-scrollbar {
		width: 7px;
		height: 7px;
	}
	html body:not(.MacOS) .slim-scrollbar::-webkit-scrollbar-track {
		background: #f5f5f5;
	}
	html body:not(.MacOS) .slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: #FDDA00;
		border-radius: 0px;
	}



/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;}
body .mfp-bg {background: var(--color-overlay);}
.mfp-move-from-bottom.mfp-bg.mfp-ready, .mfp-move-from-right.mfp-bg.mfp-ready, .mfp-fade.mfp-bg.mfp-ready, .mfp-zoom-in.mfp-bg.mfp-ready, .mfp-zoom-out.mfp-bg.mfp-ready {opacity: 1;}
.mfp-bg.mfp-removing {opacity: 0 !important;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}


/*
 *
 * Container
 * max-width: var(--container-width) + (--container-padding * 2)
 *
*/
.container {max-width: calc(var(--container-width) + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
.rdc-container-fullscreen {max-width: var(--container-width);padding-left: 0;padding-right: 0;}
@media screen and (min-width: 1200px) {
	.rdc-container-list:not(.container) {margin-left: calc(var(--container-padding-n, 0px) + var(--productlist-padding));margin-right: calc(var(--container-padding-n) + var(--productlist-padding));overflow: hidden;}
	.rdc-container-list.container {padding-left: var(--productlist-padding);padding-right: var(--productlist-padding);overflow: hidden;}
	.rdc-container-detail:not(.container) {margin-left: calc(var(--container-padding-n, 0px) + var(--productdetail-padding));margin-right: calc(var(--container-padding-n) + var(--productdetail-padding));overflow: hidden;}
	.rdc-container-detail.container {padding-left: var(--productdetail-padding);padding-right: var(--productdetail-padding);overflow: hidden;}
}

/* @media screen and (max-width: 1440px) {
	.container {max-width: 1404px}
}
@media screen and (max-width: 1366px) {
	.container {max-width: 1332px}
}
@media screen and (max-width: 1280px) {
	.container {max-width: 1242px}
} */

/* Importante: Se var(--container-width) >= 1920px, descomentar o CSS abaixo. */
@media screen and (width: 1920px) {
	body.windows .container {max-width: calc(1920px - 16px);}
}
#rdc-productlist-section-products,
.products #rdc-productlist-area-f,
.products #rdc-productlist-area-a { overflow: hidden; }

/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-position: center !important;
	background-size: 100%;
}

.slider .slick-arrow.slick-disabled {visibility: hidden;cursor: default !important;}

@media (hover) {
	.slider .slick-arrow:hover, .rdc-slider-arrow:hover {opacity: 0.8;}
}

.slider .slick-arrow.slick-prev, .rdc-slider-prev {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M13.59 16.863 21 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L21 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}

.slider .slick-arrow.slick-next, .rdc-slider-next {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.41 15.863 11 7.63l1.294-1.267 8.706 9.5-8.706 9.5L11 24.096l7.41-8.233Z'/%3E%3C/svg%3E");}

body .slick-dots li{margin: 0 3px;}
body .slick-dots li button{ width: 20px; height: 3px;  background-color: var(--color-lightgray); border-radius: 0; border-color: transparent;}
body .slick-dots li.slick-active button{background-color: var(--color-darkgray); box-shadow: 0px 0px 1px 0px #00000040;
}

/*
 *
 * Icons SVG
 *
*/
@media (hover) {
	a:not(.disabled):hover .rdc-icon-svg, .a:not(.disabled):hover .rdc-icon-svg, .rdc-icon-hover:hover {
		opacity: 0.5;
	}
}

/* SVG icons Ex: {background-image: url("data:image/svg+xml,%3Csvg ... ");} */
@media screen and (max-width: 767px) {
	body .rdc-icon-circle {background-size: 24px;}
}
@media screen and (min-width: 768px) {
	body .rdc-icon-circle {background-size: 20px;}
}

.rdc-icon-close.rdc-icon-circle { background-color: transparent;}
body .rdc-icon-svg.rdc-icon-social-share {background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.0466 16.3426H25.9778V26.8643H6V6.86426H16.1221V8.79545H7.95339V24.9109H24.0688V16.3204L24.0466 16.3426ZM26 6.86426V14.1895H24.0688V10.1717L16.6992 17.5413L15.323 16.165L22.6704 8.81764H18.2752V6.86426H25.9778H26ZM24.0466 8.83984L24.0244 8.81764H24.0466V8.83984Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-fb {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M25 24.964c0 .545-.275.9-.83.9H19.5v-6.81h2.375l.36-2.92H19.5v-1.517c0-.779.215-1.401 1.365-1.401H22.5v-2.32c-.5-.035-1.275-.108-2.29-.108-2.11 0-3.71 1.255-3.71 3.561v1.785H14v2.92h2.5v6.81H7.84c-.56 0-.84-.355-.84-.9V9.076c0-.545.28-1.212.84-1.212h16.33c.555 0 .83.667.83 1.212v15.888Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-in {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M21.148 25.864H10.852A3.857 3.857 0 0 1 7 22.012V11.717a3.857 3.857 0 0 1 3.852-3.853h10.296A3.857 3.857 0 0 1 25 11.717v10.295a3.857 3.857 0 0 1-3.852 3.852ZM10.853 9.966c-.966 0-1.752.785-1.752 1.75v10.296c0 .965.786 1.75 1.752 1.75h10.295c.965 0 1.75-.785 1.75-1.75V11.717c0-.966-.785-1.751-1.75-1.751H10.853Zm2.277 6.898a2.874 2.874 0 0 1 2.87-2.87 2.874 2.874 0 0 1 2.872 2.87 2.874 2.874 0 0 1-2.871 2.871 2.874 2.874 0 0 1-2.871-2.87ZM16 21.837a4.978 4.978 0 0 1-4.972-4.973 4.978 4.978 0 0 1 4.973-4.972 4.978 4.978 0 0 1 4.972 4.972 4.978 4.978 0 0 1-4.972 4.973Zm5.09-8.894a.895.895 0 1 0 0-1.791.895.895 0 0 0 0 1.79Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-lk {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.779 11.333C8.699 11.333 8 10.556 8 9.597c0-.98.72-1.733 1.823-1.733s1.778.753 1.8 1.733c0 .96-.697 1.736-1.844 1.736Zm1.73 12.531H8.09V12.703h3.42v11.161Zm9.071 0H24v-6.6c0-3.286-1.687-4.815-3.937-4.815-1.845 0-2.948 1.075-3.399 1.802h-.068l-.157-1.55h-2.971a75.25 75.25 0 0 1 .09 3.561v7.6h3.421v-6.435c0-.32.023-.64.115-.867.248-.637.809-1.299 1.753-1.299 1.237 0 1.733.978 1.733 2.418v6.185Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-pi {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M17.17 20.641c-1.097-.088-1.557-.662-2.415-1.21-.472 2.615-1.049 5.123-2.758 6.433-.53-3.956.773-6.922 1.378-10.075-1.031-1.834.123-5.52 2.299-4.614 2.676 1.12-2.319 6.815 1.035 7.528 3.5.74 4.93-6.415 2.76-8.74-3.138-3.359-9.13-.076-8.393 4.733.178 1.175 1.33 1.533.46 3.155-2.008-.47-2.608-2.141-2.53-4.37.124-3.647 3.105-6.202 6.093-6.554 3.78-.443 7.328 1.465 7.82 5.222.55 4.238-1.709 8.823-5.75 8.492Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-tm {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M20.998 24.935c-.694.344-1.321.582-1.883.723a7.767 7.767 0 0 1-1.822.206c-.742 0-1.397-.1-1.968-.296a4.156 4.156 0 0 1-1.46-.84c-.402-.36-.681-.749-.837-1.157-.155-.411-.233-1.004-.233-1.779v-5.965H11v-2.402a4.705 4.705 0 0 0 1.638-.937c.454-.404.82-.888 1.093-1.457.276-.567.465-1.293.57-2.167h2.309v4.297h3.851v2.666H16.61v4.361c0 .986.049 1.619.15 1.897.099.281.284.502.556.67.36.226.772.339 1.232.339.823 0 1.64-.282 2.452-.843v2.684h-.002Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-tw {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M21.176 8.864h2.76l-6.03 6.778L25 24.864h-5.554l-4.35-5.593-4.979 5.593H7.355l6.45-7.249L7 8.865h5.695l3.933 5.112 4.548-5.113Zm-.969 14.376h1.53l-9.873-12.836h-1.64l9.983 12.836Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-vm {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M23.92 13.983c-.893 4.69-5.89 8.664-7.39 9.57-1.503.904-2.876-.364-3.372-1.324-.57-1.097-2.274-7.033-2.721-7.527-.447-.492-1.788.494-1.788.494L8 14.402s2.722-3.028 4.793-3.405c2.195-.402 2.192 3.138 2.72 5.105.511 1.902.854 2.989 1.3 2.989.446 0 1.3-1.058 2.232-2.686.936-1.627-.039-3.065-1.867-2.042.73-4.085 7.636-5.069 6.742-.38Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-yt {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M7 17.863c0 6.205.155 7 9 7s9-.795 9-7-.155-7-9-7-9 .795-9 7Zm7.843-2.18 4.043 1.88c.352.166.352.435-.002.6l-4.041 1.881c-.353.163-.643-.02-.643-.41v-3.542c0-.39.29-.573.643-.41Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-wa {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M25 16.631c0 4.843-3.956 8.769-8.836 8.769a8.851 8.851 0 0 1-4.272-1.091L7 25.863l1.595-4.704a8.676 8.676 0 0 1-1.268-4.527c0-4.843 3.956-8.769 8.837-8.769 4.88 0 8.836 3.926 8.836 8.768ZM16.164 9.26c-4.097 0-7.429 3.307-7.429 7.371 0 1.613.526 3.107 1.415 4.322l-.928 2.738 2.855-.907a7.424 7.424 0 0 0 4.088 1.22c4.096 0 7.429-3.307 7.429-7.372 0-4.065-3.333-7.372-7.43-7.372Zm4.164 9.197c.152.073.254.122.298.194.054.09.054.52-.126 1.022-.181.502-1.066.986-1.463 1.022-.068.006-.124.02-.182.033-.28.067-.592.142-2.417-.57-2.035-.796-3.376-2.77-3.653-3.178l-.047-.067c-.11-.146-.884-1.166-.884-2.223 0-.99.49-1.508.715-1.747l.042-.045a.8.8 0 0 1 .578-.27c.075 0 .15.006.222.01.067.005.133.009.193.009l.048-.002c.122-.008.28-.018.44.36l.23.555c.189.456.4.968.438 1.04.054.108.09.234.018.377l-.03.059a1.214 1.214 0 0 1-.187.3l-.11.13c-.075.091-.15.182-.215.246-.108.107-.221.223-.095.438.127.216.561.919 1.205 1.489a5.606 5.606 0 0 0 1.6 1.002c.058.026.107.047.142.064.217.108.343.09.47-.054.126-.143.541-.627.685-.842.144-.215.29-.18.488-.108s1.263.592 1.48.7l.117.056Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-ms {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16 7.865h-.393A8.828 8.828 0 0 0 7 16.49a8.461 8.461 0 0 0 3 6.42v2.58l.013.099a.375.375 0 0 0 .56.218l2.091-1.305.46.162a9.29 9.29 0 0 0 2.876.45 8.828 8.828 0 0 0 9-8.624 8.828 8.828 0 0 0-9-8.624Zm1.546 8.17 3.9-2.126a.375.375 0 0 1 .48.105.375.375 0 0 1-.034.49l-4.5 4.5a.375.375 0 0 1-.509.02l-2.428-2.082-3.9 2.126a.375.375 0 0 1-.445-.594l4.5-4.5a.375.375 0 0 1 .51-.019l2.426 2.08Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-em {background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg fill='none' height='33' viewBox='0 0 32 33' width='32' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m4.38889 26.8633v-19.00002h23.22221v19.00002zm11.61111-9.3426-10.32099-7.0992v15.0846h20.64199v-15.0846zm0-1.5146 9.9236-6.78568h-19.84723zm-10.32099-5.5846v-1.20108 16.28568z' fill='%23000'/%3e%3c/svg%3e");}
body .rdc-icon-svg.rdc-icon-social-sp {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16 7.863a9 9 0 1 0 0 18 9 9 0 0 0 0-18Zm4.128 12.98a.559.559 0 0 1-.772.187c-2.114-1.29-4.773-1.582-7.906-.867a.561.561 0 0 1-.25-1.093c3.429-.785 6.37-.447 8.741 1.003a.562.562 0 0 1 .187.77Zm1.1-2.45a.702.702 0 0 1-.964.232c-2.419-1.487-6.107-1.918-8.969-1.05a.703.703 0 0 1-.407-1.342c3.269-.992 7.332-.51 10.11 1.195a.702.702 0 0 1 .23.966m.096-2.552c-2.901-1.723-7.687-1.882-10.456-1.04a.842.842 0 1 1-.489-1.61c3.178-.966 8.464-.779 11.802 1.203a.842.842 0 0 1-.858 1.448' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-tk {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M19.107 11.37a3.793 3.793 0 0 1-.946-2.507H15.4v11.023a2.3 2.3 0 0 1-.705 1.575 2.323 2.323 0 0 1-3.928-1.665 2.315 2.315 0 0 1 3.009-2.204v-2.809C10.697 14.374 8 16.757 8 19.797c0 2.96 2.464 5.066 5.08 5.066 2.804 0 5.08-2.266 5.08-5.066v-5.591A6.583 6.583 0 0 0 22 15.431v-2.747s-1.679.08-2.893-1.315Z'/%3E%3C/svg%3E");}
/* body .rdc-icon-svg.rdc-icon-close {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6.338 27.863 5 26.525l9.162-9.162L5 8.202l1.338-1.339 9.162 9.162 9.162-9.162L26 8.202l-9.162 9.161L26 26.525l-1.338 1.338-9.162-9.161-9.162 9.161Z'/%3E%3C/svg%3E");}*/
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 25.3019V23.8877H8.30857V12.6802C8.30857 10.8323 8.89905 9.20738 10.08 7.80544C11.261 6.4035 12.7581 5.53047 14.5714 5.18635V3H17.4286V5.18635C19.2419 5.53141 20.739 6.40491 21.92 7.80685C23.101 9.20879 23.6914 10.8337 23.6914 12.6816V23.8863H26V25.3005L6 25.3019ZM15.9957 29C15.3595 29 14.8167 28.7761 14.3671 28.3283C13.9176 27.8804 13.6929 27.343 13.6929 26.7161H18.3071C18.3071 27.3477 18.081 27.8861 17.6286 28.3311C17.1752 28.7761 16.631 29 15.9957 29ZM9.73714 23.8877H22.2643V12.6816C22.2643 10.9629 21.6543 9.49965 20.4343 8.29192C19.2143 7.0842 17.7362 6.48081 16 6.48175C14.2638 6.48269 12.7857 7.08608 11.5657 8.29192C10.3457 9.49776 9.73619 10.961 9.73714 12.6816V23.8877Z' fill='black'/%3e%3c/svg%3e ");} 
body .rdc-icon-svg.rdc-icon-help {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%238B8D8F' d='M16.037 23.837c.295 0 .544-.102.747-.304.203-.203.304-.452.304-.747a1.01 1.01 0 0 0-.307-.747 1.015 1.015 0 0 0-.746-.304c-.295 0-.544.102-.747.306a1.013 1.013 0 0 0-.303.746c0 .295.102.544.304.747.205.203.454.304.748.304m-.689-4.416h1.288c.034-.58.143-1.05.327-1.413.184-.362.562-.824 1.134-1.387.596-.595 1.039-1.128 1.328-1.599.29-.47.435-1.016.436-1.634 0-1.051-.369-1.888-1.106-2.512-.739-.624-1.613-.936-2.622-.936-.959 0-1.773.26-2.442.78-.67.523-1.16 1.122-1.471 1.798l1.227.508a3.9 3.9 0 0 1 .916-1.286c.397-.374.97-.56 1.72-.56.864 0 1.495.237 1.893.712.4.474.599.996.599 1.565 0 .462-.125.875-.375 1.237a6.479 6.479 0 0 1-.973 1.096c-.774.713-1.28 1.318-1.52 1.814s-.36 1.101-.359 1.817Zm.656 9.441c-1.659 0-3.219-.314-4.68-.944a12.137 12.137 0 0 1-3.812-2.565 12.117 12.117 0 0 1-2.567-3.808C4.315 20.087 4 18.528 4 16.867c0-1.66.315-3.22.945-4.68a12.14 12.14 0 0 1 2.562-3.812 12.073 12.073 0 0 1 3.809-2.566 11.69 11.69 0 0 1 4.68-.946c1.659 0 3.219.315 4.68.946a12.13 12.13 0 0 1 3.812 2.562 12.095 12.095 0 0 1 2.567 3.81c.63 1.46.945 3.02.945 4.678 0 1.659-.315 3.219-.944 4.68a12.086 12.086 0 0 1-2.565 3.812 12.169 12.169 0 0 1-3.808 2.567c-1.458.631-3.018.946-4.679.945ZM16 27.53c2.978 0 5.5-1.033 7.567-3.1 2.066-2.067 3.1-4.589 3.1-7.567 0-2.977-1.034-5.5-3.1-7.566-2.067-2.067-4.59-3.1-7.567-3.1-2.978 0-5.5 1.033-7.567 3.1-2.066 2.066-3.1 4.588-3.1 7.566 0 2.978 1.034 5.5 3.1 7.567 2.067 2.067 4.59 3.1 7.567 3.1Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-info {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%231890FF' d='M15.333 22.863h1.334V15.53h-1.334v7.333Zm.667-9.23a.795.795 0 0 0 .585-.236.79.79 0 0 0 .235-.586.797.797 0 0 0-.236-.584.797.797 0 0 0-.584-.236.805.805 0 0 0-.82.821c0 .233.078.427.236.585a.796.796 0 0 0 .584.236Zm.004 15.23c-1.66 0-3.22-.314-4.68-.944a12.137 12.137 0 0 1-3.812-2.565 12.117 12.117 0 0 1-2.567-3.808C4.315 20.087 4 18.528 4 16.867c0-1.66.315-3.22.945-4.68a12.14 12.14 0 0 1 2.562-3.812 12.073 12.073 0 0 1 3.809-2.566 11.69 11.69 0 0 1 4.68-.946c1.659 0 3.219.315 4.68.946a12.13 12.13 0 0 1 3.812 2.562 12.095 12.095 0 0 1 2.567 3.81c.63 1.46.945 3.02.945 4.678 0 1.659-.315 3.219-.944 4.68a12.086 12.086 0 0 1-2.565 3.812 12.169 12.169 0 0 1-3.808 2.567c-1.458.631-3.018.946-4.679.945ZM16 27.53c2.978 0 5.5-1.033 7.567-3.1 2.066-2.067 3.1-4.589 3.1-7.567 0-2.977-1.034-5.5-3.1-7.566-2.067-2.067-4.59-3.1-7.567-3.1-2.978 0-5.5 1.033-7.567 3.1-2.066 2.066-3.1 4.588-3.1 7.566 0 2.978 1.034 5.5 3.1 7.567 2.067 2.067 4.59 3.1 7.567 3.1Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-success {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%233F9C35' d='m14.083 22.074 8.528-8.528-.944-.944-7.584 7.584-3.8-3.8-.944.944 4.744 4.744Zm1.921 6.79c-1.659 0-3.219-.315-4.68-.945a12.137 12.137 0 0 1-3.812-2.565 12.117 12.117 0 0 1-2.567-3.808C4.315 20.087 4 18.528 4 16.867c0-1.66.315-3.22.945-4.68a12.14 12.14 0 0 1 2.562-3.812 12.073 12.073 0 0 1 3.809-2.566 11.69 11.69 0 0 1 4.68-.946c1.659 0 3.219.315 4.68.946a12.13 12.13 0 0 1 3.812 2.562 12.095 12.095 0 0 1 2.567 3.81c.63 1.46.945 3.02.945 4.678 0 1.659-.315 3.219-.944 4.68a12.086 12.086 0 0 1-2.565 3.812 12.169 12.169 0 0 1-3.808 2.567c-1.458.631-3.018.946-4.679.945ZM16 27.53c2.978 0 5.5-1.033 7.567-3.1 2.066-2.067 3.1-4.589 3.1-7.567 0-2.977-1.034-5.5-3.1-7.566-2.067-2.067-4.59-3.1-7.567-3.1-2.978 0-5.5 1.033-7.567 3.1-2.066 2.066-3.1 4.588-3.1 7.566 0 2.978 1.034 5.5 3.1 7.567 2.067 2.067 4.59 3.1 7.567 3.1Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-error {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23C91A1C' d='m10.223 21.671.978.97L16 17.846l4.765 4.795.979-.97-4.799-4.808 4.799-4.773-.979-.97L16 15.918l-4.799-4.798-.978.97 4.798 4.774-4.798 4.808Z'/%3E%3Cpath fill='%23C91A1C' fill-rule='evenodd' d='M11.324 27.92c1.461.629 3.021.943 4.68.943 1.661.001 3.22-.314 4.679-.945a12.17 12.17 0 0 0 3.808-2.567 12.086 12.086 0 0 0 2.565-3.812c.63-1.461.944-3.021.944-4.68 0-1.658-.315-3.218-.945-4.678a12.095 12.095 0 0 0-2.567-3.81 12.13 12.13 0 0 0-3.812-2.562 11.69 11.69 0 0 0-4.68-.946 11.69 11.69 0 0 0-4.68.946 12.073 12.073 0 0 0-3.81 2.566 12.14 12.14 0 0 0-2.56 3.812c-.63 1.46-.946 3.02-.946 4.68 0 1.66.315 3.22.945 4.679a12.118 12.118 0 0 0 2.567 3.808 12.137 12.137 0 0 0 3.812 2.565Zm12.243-3.49c-2.067 2.067-4.59 3.1-7.567 3.1-2.978 0-5.5-1.033-7.567-3.1-2.066-2.067-3.1-4.589-3.1-7.567 0-2.977 1.034-5.5 3.1-7.566 2.067-2.067 4.59-3.1 7.567-3.1 2.978 0 5.5 1.033 7.567 3.1 2.066 2.066 3.1 4.588 3.1 7.566 0 2.978-1.034 5.5-3.1 7.567Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-warning {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23FAAD14' d='M3.64 27.197 16 5.863l12.36 21.334H3.64Zm2.294-1.334h20.133L16.001 8.53 5.934 25.863Zm10.067-1.845a.795.795 0 0 0 .585-.236.79.79 0 0 0 .235-.585.797.797 0 0 0-.236-.584.802.802 0 0 0-.584-.238.808.808 0 0 0-.82.821.79.79 0 0 0 .236.586c.158.16.353.238.584.236Zm-.667-2.975h1.333v-6.666h-1.333v6.666Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-delete {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.429 28.863V8.445H6V6.986h5.714V5.863h8.572v1.123H26v1.459h-1.429v20.418H7.43Zm1.428-1.458h14.286V8.445H8.857v18.96Zm4.012-2.917h1.428V11.362H12.87v13.126Zm4.834 0h1.428V11.362h-1.428v13.126Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-search {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M15.243 24.058c-2.228.002-4.115-.767-5.65-2.304-1.535-1.537-2.303-3.423-2.304-5.649-.001-2.225.767-4.112 2.304-5.649s3.425-2.305 5.652-2.304c2.226.001 4.113.77 5.65 2.304 1.535 1.535 2.304 3.421 2.304 5.65 0 2.227-.769 4.114-2.305 5.65-1.535 1.536-3.422 2.304-5.65 2.304v-.002Zm6.976-1.885L26 25.951l-.91.912-3.779-3.778-.125.107a8.859 8.859 0 0 1-2.78 1.593 9.303 9.303 0 0 1-3.163.565c-2.587 0-4.77-.893-6.56-2.682C6.895 20.88 6 18.698 6 16.112c0-2.587.893-4.77 2.68-6.56 1.788-1.791 3.97-2.687 6.557-2.689 2.586-.002 4.77.892 6.562 2.684 1.792 1.791 2.687 3.975 2.687 6.56 0 1.12-.198 2.204-.595 3.253-.398 1.051-.92 1.946-1.563 2.688l-.108.125Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-wishlist {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7 27.863v-22h17v22l-8.5-3.666L7 27.863Zm1.417-2.2 7.083-3.051 7.083 3.051V7.283H8.417v18.38Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23FDDA00' d='M7 27.863v-22h17v22l-8.5-3.666L7 27.863Z'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.5 26.8633L6.75 8.74083H10.75V8.00614C10.75 6.57789 11.2605 5.36369 12.2815 4.36353C13.3025 3.36336 14.542 2.86328 16 2.86328C17.458 2.86328 18.6975 3.36336 19.7185 4.36353C20.7395 5.36369 21.25 6.57789 21.25 8.00614V8.74083H25.25L26.5 26.8633H5.5ZM7 25.3939H25L23.75 10.2102H21.25H19.75H12.25H10.75H8.25L7 25.3939ZM12.25 8.74083H19.75V8.00614C19.75 6.97169 19.389 6.10083 18.667 5.39357C17.945 4.6863 17.056 4.33267 16 4.33267C14.944 4.33267 14.055 4.6863 13.333 5.39357C12.611 6.10083 12.25 6.97169 12.25 8.00614V8.74083Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.5 26.8633L6.75 8.74083H10.75V8.00614C10.75 6.57789 11.2605 5.36369 12.2815 4.36353C13.3025 3.36336 14.542 2.86328 16 2.86328C17.458 2.86328 18.6975 3.36336 19.7185 4.36353C20.7395 5.36369 21.25 6.57789 21.25 8.00614V8.74083H25.25L26.5 26.8633H5.5ZM12.25 8.74083H19.75V8.00614C19.75 6.97169 19.389 6.10083 18.667 5.39357C17.945 4.6863 17.056 4.33267 16 4.33267C14.944 4.33267 14.055 4.6863 13.333 5.39357C12.611 6.10083 12.25 6.97169 12.25 8.00614V8.74083Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart-add {background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 2.86328C17.458 2.86328 18.6977 3.36312 19.7188 4.36328C20.7397 5.36338 21.2499 6.57774 21.25 8.00586V8.74121H25.25L26.5 26.8633H5.5L6.75 8.74121H10.75V8.00586C10.7501 6.57774 11.2603 5.36338 12.2812 4.36328C13.3023 3.36312 14.542 2.86328 16 2.86328ZM14.7031 21.0654L11.835 18.251L11.3535 18.7227L14.7031 22.0098L20.6465 16.1895L20.166 15.7168L14.7031 21.0654ZM16 4.33301C14.944 4.33301 14.055 4.6863 13.333 5.39355C12.6111 6.10076 12.2501 6.97153 12.25 8.00586V8.74121H19.75V8.00586C19.7499 6.97153 19.3889 6.10076 18.667 5.39355C17.945 4.6863 17.056 4.33301 16 4.33301Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m10.667 26.863-.944-.969 4.126-4.205H4V20.33h9.85l-4.127-4.205.944-.969 5.744 5.854-5.744 5.853Zm10.666-7.291-5.744-5.854 5.744-5.855.944.97-4.125 4.206H28v1.359h-9.848l4.125 4.205-.944.969Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M28 24.273a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-17.333 2.59-.944-.969 4.126-4.205H4V20.33h9.85l-4.127-4.205.944-.969 5.744 5.854-5.744 5.853Zm10.666-7.291-5.744-5.854 5.744-5.855.944.97-4.125 4.206H28v1.359h-9.848l4.125 4.205-.944.969Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-location {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 27.863c-1.514 0-2.94-.289-4.278-.867a11.15 11.15 0 0 1-3.495-2.36 11.197 11.197 0 0 1-2.36-3.495A10.602 10.602 0 0 1 5 16.863c0-1.518.29-2.946.868-4.281A11.14 11.14 0 0 1 8.227 9.09a11.226 11.226 0 0 1 3.495-2.359A10.662 10.662 0 0 1 16 5.863c1.519 0 2.946.29 4.281.868a11.16 11.16 0 0 1 3.494 2.359 11.193 11.193 0 0 1 2.357 3.492A10.66 10.66 0 0 1 27 16.863c0 1.514-.29 2.94-.868 4.278a11.15 11.15 0 0 1-2.359 3.496 11.208 11.208 0 0 1-3.492 2.358c-1.334.58-2.761.87-4.281.868Zm0-1.212a18.296 18.296 0 0 0 1.775-2.715c.465-.888.843-1.882 1.135-2.982h-5.82c.323 1.162.71 2.187 1.159 3.075A13.91 13.91 0 0 0 16 26.651Zm-1.556-.183c-.57-.673-1.09-1.504-1.562-2.494a14.342 14.342 0 0 1-1.051-3.021H7.144c.7 1.52 1.693 2.766 2.978 3.74a8.994 8.994 0 0 0 4.322 1.774Zm3.112 0a8.994 8.994 0 0 0 4.322-1.775c1.285-.974 2.277-2.22 2.978-3.74H20.17c-.31 1.04-.7 2.055-1.17 3.044-.47.99-.952 1.815-1.444 2.47Zm-10.91-6.736h4.93a14.576 14.576 0 0 1-.195-1.467 17.09 17.09 0 0 1-.001-2.804c.038-.475.103-.963.196-1.466h-4.93a9.97 9.97 0 0 0-.313 4.354c.075.499.178.96.312 1.382m6.154 0h6.402c.093-.502.158-.982.196-1.443a17.312 17.312 0 0 0 .001-2.85 14.83 14.83 0 0 0-.196-1.442h-6.404c-.092.501-.158.982-.196 1.442-.038.46-.057.935-.057 1.425s.019.966.057 1.425c.038.46.105.94.197 1.443Zm7.625 0h4.93c.134-.423.238-.884.313-1.383a10.109 10.109 0 0 0 0-2.97c-.075-.5-.179-.96-.312-1.382h-4.932c.093.501.158.99.196 1.465a17.115 17.115 0 0 1 .001 2.804c-.038.476-.104.965-.196 1.467m-.254-6.958h4.686c-.716-1.552-1.697-2.798-2.943-3.74-1.246-.942-2.698-1.542-4.357-1.798a14.4 14.4 0 0 1 1.539 2.575c.455.966.814 1.953 1.075 2.963Zm-7.08 0h5.82a16.892 16.892 0 0 0-1.194-3.112A13.627 13.627 0 0 0 16 7.076a13.576 13.576 0 0 0-1.716 2.586 16.872 16.872 0 0 0-1.194 3.112Zm-5.945 0h4.686a16.87 16.87 0 0 1 1.076-2.963 14.34 14.34 0 0 1 1.538-2.575c-1.673.257-3.13.86-4.368 1.809-1.238.95-2.216 2.192-2.933 3.728'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-logout {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16.004 27.863c-1.52 0-2.95-.289-4.29-.866a11.108 11.108 0 0 1-3.495-2.35 11.1 11.1 0 0 1-2.352-3.494A10.711 10.711 0 0 1 5 16.863c0-1.523.286-2.949.857-4.276a11.116 11.116 0 0 1 2.366-3.5l.864.863a9.887 9.887 0 0 0-2.105 3.11c-.506 1.176-.76 2.444-.76 3.803 0 2.73.947 5.042 2.842 6.936 1.894 1.895 4.206 2.842 6.936 2.842 2.73 0 5.042-.947 6.936-2.842 1.895-1.894 2.842-4.206 2.842-6.936 0-1.364-.254-2.634-.76-3.808a9.904 9.904 0 0 0-2.105-3.105l.865-.865a11.123 11.123 0 0 1 2.365 3.502c.571 1.328.857 2.757.857 4.286a10.69 10.69 0 0 1-.865 4.277 11.125 11.125 0 0 1-2.352 3.494c-.99.99-2.153 1.775-3.49 2.353a10.696 10.696 0 0 1-4.29.866Z'/%3E%3Cpath fill='%23000' d='M15.389 18.085V5.864h1.222v12.223H15.39Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-user:not(.active){background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.638 16.475A3.046 3.046 0 0 0 16 14.947a3.046 3.046 0 0 0-2.639 1.528l-2.413 4.192c-.69 1.2-.07 2.744 1.266 3.108l.055.014a2.123 2.123 0 0 0 2.668-1.807l.637-5.635a.42.42 0 0 1 .426-.385c.2 0 .398.13.427.385l.636 5.635a2.123 2.123 0 0 0 2.668 1.807l.056-.014c1.335-.363 1.956-1.906 1.265-3.108l-2.413-4.192Zm9.241-5.612h-4.826a3.047 3.047 0 0 0-2.639 1.528 3.063 3.063 0 0 0 0 3.056l2.413 4.192c.691 1.2 2.335 1.431 3.316.455.014-.013.027-.028.041-.04.919-.925.82-2.446-.226-3.222l-4.547-3.37a.422.422 0 0 1-.12-.562c.1-.172.31-.28.545-.178l5.184 2.265c1.192.52 2.556-.153 2.895-1.415l.015-.055c.353-1.341-.669-2.654-2.05-2.654Zm-16.292 1.528a3.047 3.047 0 0 0-2.639-1.528H4.122c-1.383 0-2.405 1.313-2.052 2.654l.015.055c.337 1.26 1.701 1.935 2.895 1.415l5.184-2.265a.418.418 0 0 1 .545.178.419.419 0 0 1-.12.562l-4.547 3.37c-1.046.776-1.146 2.297-.226 3.222l.041.04c.98.978 2.625.747 3.315-.455l2.413-4.192a3.063 3.063 0 0 0 0-3.056h.002Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.638 16.475A3.046 3.046 0 0 0 16 14.947a3.046 3.046 0 0 0-2.639 1.528l-2.413 4.192c-.69 1.2-.07 2.744 1.266 3.108l.055.014a2.123 2.123 0 0 0 2.668-1.807l.637-5.635a.42.42 0 0 1 .426-.385c.2 0 .398.13.427.385l.636 5.635a2.123 2.123 0 0 0 2.668 1.807l.056-.014c1.335-.363 1.956-1.906 1.265-3.108l-2.413-4.192Zm9.241-5.612h-4.826a3.047 3.047 0 0 0-2.639 1.528 3.063 3.063 0 0 0 0 3.056l2.413 4.192c.691 1.2 2.335 1.431 3.316.455.014-.013.027-.028.041-.04.919-.925.82-2.446-.226-3.222l-4.547-3.37a.422.422 0 0 1-.12-.562c.1-.172.31-.28.545-.178l5.184 2.265c1.192.52 2.556-.153 2.895-1.415l.015-.055c.353-1.341-.669-2.654-2.05-2.654Zm-16.292 1.528a3.047 3.047 0 0 0-2.639-1.528H4.122c-1.383 0-2.405 1.313-2.052 2.654l.015.055c.337 1.26 1.701 1.935 2.895 1.415l5.184-2.265a.418.418 0 0 1 .545.178.419.419 0 0 1-.12.562l-4.547 3.37c-1.046.776-1.146 2.297-.226 3.222l.041.04c.98.978 2.625.747 3.315-.455l2.413-4.192a3.063 3.063 0 0 0 0-3.056h.002Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowup {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16 14.452-8.233 7.411L6.5 20.57l9.5-8.706 9.5 8.706-1.267 1.294L16 14.453Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowdown {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16 19.274 8.233-7.41 1.267 1.294-9.5 8.705-9.5-8.705 1.267-1.295L16 19.274Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowleft {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M13.59 16.863 21 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L21 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowright {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.41 15.863 11 7.63l1.294-1.267 8.706 9.5-8.706 9.5L11 24.096l7.41-8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16 14.452-8.233 7.411L6.5 20.57l9.5-8.706 9.5 8.706-1.267 1.294L16 14.453Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16 19.274 8.233-7.41 1.267 1.294-9.5 8.705-9.5-8.705 1.267-1.295L16 19.274Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M13.59 16.863 21 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L21 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.41 16.863 11 8.63l1.294-1.267 8.706 9.5-8.706 9.5L11 25.096l7.41-8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-scroll-up {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' y='.863' fill='%23fff' opacity='.5' rx='16'/%3E%3Cpath fill='%23000' d='m15.227 13.548-4.707 4.524-1.02-.979 6.519-6.23 6.481 6.23-1.019.979-4.706-4.524v10.315h-1.548V13.548Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-scroll-down {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' y='.863' fill='%23fff' opacity='.5' rx='16'/%3E%3Cpath fill='%23000' d='m16.772 21.178 4.707-4.524 1.021.98-6.48 6.23-6.52-6.23 1.018-.98 4.707 4.524V10.863h1.547v10.315Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-equal {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6 21.863v-2h20v2H6Zm0-8v-2h20v2H6Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-plus {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M17 7.863h-2v8H7v2h8v8h2v-8h8v-2h-8v-8Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-minus {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7 15.863v2h18v-2H7Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-chat {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M4 28.863v-23h24V24.72H8.103L4 28.863Zm3.533-5.49h19.134V7.21H5.333v18.376l2.2-2.214Zm1.134-3.368H18v-1.347H8.667v1.347Zm0-4.04h14.666v-1.347H8.667v1.347Zm0-4.04h14.666v-1.348H8.667v1.347Z'/%3E%3C/svg%3E"); filter: invert(1);}/* Icon deve ser apresentado na cor branco  */
body .rdc-icon-svg.rdc-icon-helpdesk {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.694 27.863v-1.312h9.64v-9.773c0-2.459-.918-4.512-2.754-6.16C20.742 8.97 18.55 8.146 16 8.146c-2.548 0-4.74.824-6.578 2.472-1.838 1.649-2.756 3.702-2.755 6.16v7.476H4v-6.177h1.333l.023-1.606c.041-1.374.356-2.645.945-3.813a10.309 10.309 0 0 1 2.326-3.049 10.547 10.547 0 0 1 3.353-2.021A11.251 11.251 0 0 1 16 6.863c1.406 0 2.745.242 4.018.725a10.659 10.659 0 0 1 3.351 2.018c.965.862 1.74 1.877 2.326 3.045a9.037 9.037 0 0 1 .949 3.8l.023 1.628H28v6.175h-1.333v3.61H15.694Zm-3.18-8.48c-.276 0-.516-.092-.72-.275a.881.881 0 0 1-.307-.683c0-.271.102-.503.307-.697.204-.193.444-.29.72-.289.275 0 .515.095.719.283a.918.918 0 0 1 .306.702.881.881 0 0 1-.306.682 1.043 1.043 0 0 1-.72.276m6.976 0a1.04 1.04 0 0 1-.72-.276.881.881 0 0 1-.307-.682c0-.271.102-.503.307-.696.204-.192.444-.289.72-.289.275 0 .515.095.719.283a.922.922 0 0 1 .306.702.881.881 0 0 1-.306.682 1.043 1.043 0 0 1-.72.276m-10.53-2.084c-.121-1.966.522-3.64 1.929-5.026 1.406-1.385 3.134-2.078 5.183-2.078 1.72 0 3.245.51 4.574 1.527 1.329 1.018 2.14 2.354 2.436 4.01a9.99 9.99 0 0 1-4.918-1.331 8.772 8.772 0 0 1-3.48-3.61 8.553 8.553 0 0 1-2.007 3.982 9.196 9.196 0 0 1-3.717 2.526Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-sendmessage {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6 25.863v-7.136l7.96-1.864L6 15V7.863l21 9-21 9Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-eye {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 23.71c4.633 0 8.64-2.562 10.703-6.347A12.154 12.154 0 0 0 16 11.017c-4.633 0-8.64 2.562-10.703 6.346A12.154 12.154 0 0 0 16 23.71Zm0-13.847a13.32 13.32 0 0 1 12 7.5 13.32 13.32 0 0 1-12 7.5 13.32 13.32 0 0 1-12-7.5 13.32 13.32 0 0 1 12-7.5Zm0 2.308a5.18 5.18 0 0 1 5.212 5.192A5.18 5.18 0 0 1 16 22.556a5.18 5.18 0 0 1-5.212-5.193A5.18 5.18 0 0 1 16 12.171Zm0 1.154a4.062 4.062 0 0 0-2.867 1.183 4.03 4.03 0 0 0 0 5.71 4.062 4.062 0 0 0 5.734 0 4.03 4.03 0 0 0 0-5.71A4.062 4.062 0 0 0 16 13.325Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-eye-off {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m5.622 7.717.822-.854L25.846 27.01l-.823.854-3.869-4.029A12.951 12.951 0 0 1 16 24.904c-5.282 0-9.846-3.187-12-7.817a13.792 13.792 0 0 1 5.05-5.798L5.622 7.717ZM16 23.702c1.494 0 2.93-.277 4.251-.794l-1.297-1.36A5.054 5.054 0 0 1 16 22.5c-2.896 0-5.212-2.405-5.212-5.412 0-1.143.336-2.19.915-3.067l-1.796-1.853a12.59 12.59 0 0 0-4.61 4.92c2.062 3.945 6.07 6.615 10.703 6.615Zm10.703-6.615c-2.062-3.945-6.07-6.615-10.703-6.615-1.332 0-2.63.228-3.834.637l-.904-.938c1.472-.59 3.07-.902 4.738-.902 5.282 0 9.846 3.187 12 7.818a13.648 13.648 0 0 1-4.714 5.568l-.834-.878a12.533 12.533 0 0 0 4.25-4.69ZM16 11.674c2.896 0 5.212 2.406 5.212 5.413 0 .986-.255 1.9-.695 2.694l-.857-.89a4.267 4.267 0 0 0 .394-1.804 4.293 4.293 0 0 0-1.187-2.977A3.98 3.98 0 0 0 16 12.877c-.626 0-1.205.144-1.738.409l-.857-.89A5.025 5.025 0 0 1 16 11.674Zm-4.054 5.413c0 1.116.427 2.187 1.187 2.976A3.98 3.98 0 0 0 16 21.296a4.05 4.05 0 0 0 2.108-.601l-5.583-5.797a4.45 4.45 0 0 0-.58 2.189Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' y='.864' fill='%23fff' opacity='.5' rx='16'/%3E%3Cpath fill='%23FDDA00' d='m13 23.864 10-7-10-7v14Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' y='.864' fill='%23fff' opacity='.5' rx='16'/%3E%3Cpath fill='%23FDDA00' d='M12 23.864h1.825v-13H12v13Zm6.175 0H20v-13h-1.825v13Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-calendar {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.49 19.851v-2.024h2.02v2.024h-2.02Zm-5.25 0v-2.024h2.02v2.024h-2.02Zm10.5 0v-2.024h2.02v2.024h-2.02Zm-5.25 5.064V22.89h2.02v2.025h-2.02Zm-5.25 0V22.89h2.02v2.025h-2.02Zm10.5 0V22.89h2.02v2.025h-2.02ZM6 28.865V7.8h4.443V4.864h1.413V7.8h9.39V4.864h1.313V7.8H27v21.064H6Zm1.313-1.317h18.375V15.194H7.313v12.354Zm0-13.672h18.375v-4.76H7.313v4.76Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-checked {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M12.368 24.864 5 17.35l1.059-1.078 6.31 6.435L25.942 8.864 27 9.944l-14.632 14.92Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-clear {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M22.97 25.568H29v1.296h-7.322l1.293-1.296ZM7.29 26.864 4 23.558 19.969 6.864l8.227 8.268-11.354 11.732H7.29Zm9.002-1.296L26.42 15.132l-6.387-6.418-14.256 14.78 2.064 2.074h8.45Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-upload {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.214 22.485V8.892l-3.661 3.662-1.113-1.129L16 5.865l5.561 5.56-1.112 1.13-3.663-3.663v13.593h-1.572ZM5 27.865v-6.346h1.571v4.774H25.43v-4.774H27v6.345H5Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-empty {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23CCC' d='m6.104 31.863 2.625-11.095L0 13.31l11.498-.981 4.503-10.465 4.503 10.463L32 13.306l-8.729 7.46 2.627 11.094-9.897-5.889-9.897 5.891Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='url(%23a)' d='m6.104 31.863 2.625-11.095L0 13.31l11.498-.981 4.503-10.465 4.503 10.463L32 13.306l-8.729 7.46 2.627 11.094-9.897-5.889-9.897 5.891Z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='16' x2='16.052' y1='16.887' y2='16.887' gradientUnits='userSpaceOnUse'%3E%3Cstop/%3E%3Cstop offset='1' stop-color='%23CCC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-full {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m6.104 31.863 2.625-11.095L0 13.31l11.498-.981 4.503-10.465 4.503 10.463L32 13.306l-8.729 7.46 2.627 11.094-9.897-5.889-9.897 5.891Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m16 32.863-.59-.744C15.019 31.578 5 19.468 5 12.23 5 5.937 9.976.863 16 .863S27 6.005 27 12.23c0 7.239-10.018 19.416-10.41 19.89l-.59.744Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker-success {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%233F9C35' d='M16 .863c-6.081 0-11 5.008-11 11.2 0 8.4 11 20.8 11 20.8s11-12.4 11-20.8c0-6.192-4.919-11.2-11-11.2Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker-error {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23C91A1C' d='M16 .863c-6.081 0-11 5.008-11 11.2 0 8.4 11 20.8 11 20.8s11-12.4 11-20.8c0-6.192-4.919-11.2-11-11.2Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-clustering {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Ccircle cx='16' cy='16.863' r='16' fill='%23000'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-microphone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 18.578c-.752 0-1.384-.264-1.897-.792-.513-.527-.77-1.178-.77-1.951V7.606c0-.773.257-1.424.77-1.951.513-.528 1.145-.792 1.897-.792s1.384.264 1.897.792c.513.527.77 1.178.77 1.951v8.229c0 .773-.257 1.424-.77 1.951-.513.528-1.145.792-1.897.792Zm-.667 10.285V24.04c-2.089-.197-3.833-1.076-5.233-2.636-1.4-1.56-2.1-3.416-2.1-5.57h1.333c0 1.898.65 3.515 1.951 4.853 1.3 1.337 2.872 2.006 4.716 2.005 1.844-.001 3.416-.67 4.717-2.006 1.302-1.337 1.951-2.954 1.95-4.851H24c0 2.154-.7 4.01-2.1 5.57-1.4 1.56-3.144 2.438-5.233 2.634v4.824h-1.334ZM16 17.206c.378 0 .695-.131.95-.395.257-.263.384-.589.383-.976V7.606c0-.388-.128-.714-.384-.976A1.278 1.278 0 0 0 16 6.235a1.264 1.264 0 0 0-.95.395 1.35 1.35 0 0 0-.383.976v8.229c0 .388.128.714.384.977.256.264.572.395.949.394Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-nomicrophone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m22.976 19.334-.972-1.022a3.95 3.95 0 0 0 .291-.912c.076-.363.114-.75.115-1.164h1.284c0 .645-.065 1.218-.196 1.718s-.305.96-.52 1.38m-4.482-4.496-1.226-1.225V8.528c0-.364-.122-.669-.368-.914a1.246 1.246 0 0 0-.915-.37 1.24 1.24 0 0 0-.916.368 1.24 1.24 0 0 0-.368.916v2.467L13.418 9.71V8.528c0-.724.247-1.334.741-1.828.493-.494 1.103-.741 1.828-.741.725 0 1.334.247 1.828.741s.741 1.104.741 1.828v6.027a.535.535 0 0 1-.02.15 3.357 3.357 0 0 1-.04.133Zm-3.15 13.601v-4.517c-2.012-.186-3.693-1.009-5.042-2.47-1.348-1.46-2.023-3.2-2.024-5.216h1.285c0 1.777.623 3.291 1.87 4.543 1.247 1.252 2.764 1.879 4.553 1.88.925 0 1.788-.183 2.59-.547a6.362 6.362 0 0 0 2.078-1.503l.918.915a7.592 7.592 0 0 1-2.2 1.648 7.277 7.277 0 0 1-2.743.75v4.517h-1.285Zm11.748.424L4 5.773l.91-.91L28 27.956l-.906.907Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-payment {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6.353 22.926v2.625V7.176v15.75Zm20.294-11.08h-1.353v-4.67H6.353V25.55h18.941v-4.67h1.353v5.982H5v-21h21.647v5.983Zm-10.823 9.767v-10.5H28v10.5H15.823Zm5.411-3.281c.564 0 1.043-.191 1.439-.573.395-.383.592-.848.59-1.396 0-.547-.197-1.012-.59-1.394a1.998 1.998 0 0 0-1.439-.574 1.965 1.965 0 0 0-1.436.574c-.393.385-.59.85-.593 1.394a1.86 1.86 0 0 0 .593 1.396 1.97 1.97 0 0 0 1.436.573Zm5.412 1.969v-7.875h-9.47V20.3h9.47Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-secure {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 27.862c-2.583-.767-4.73-2.332-6.438-4.695C7.854 20.804 7 18.142 7 15.18V8.226l9-3.363 9 3.363v6.954c0 2.961-.854 5.623-2.562 7.986-1.709 2.363-3.855 3.927-6.438 4.696Zm0-1.364c2.079-.643 3.814-1.913 5.207-3.81a12.694 12.694 0 0 0 2.443-6.35H16V6.235l-7.714 2.87v6.63c0 .166.021.367.064.603H16v10.16Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-shipping {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.427 25.863c-.989 0-1.827-.342-2.514-1.027-.688-.684-1.032-1.516-1.032-2.494H2V6.863h20.165v4.867h3.133L30 17.993v4.35h-2.195c0 .977-.346 1.809-1.037 2.493-.692.685-1.532 1.027-2.52 1.026-.99-.001-1.827-.343-2.513-1.026-.687-.683-1.03-1.514-1.033-2.494h-9.718c0 .984-.346 1.816-1.038 2.498-.691.682-1.532 1.023-2.52 1.023m.005-1.346c.611 0 1.13-.21 1.555-.632a2.09 2.09 0 0 0 .638-1.543c0-.606-.212-1.12-.638-1.541a2.133 2.133 0 0 0-1.555-.633c-.611 0-1.13.21-1.555.633a2.09 2.09 0 0 0-.638 1.541c0 .605.212 1.119.638 1.541a2.12 2.12 0 0 0 1.555.634Zm-4.074-3.52h.878c.193-.595.587-1.105 1.18-1.533a3.382 3.382 0 0 1 2.016-.643c.715 0 1.379.21 1.991.63.611.419 1.013.934 1.206 1.545h10.176V8.21H3.357v12.787Zm20.894 3.52c.611 0 1.13-.21 1.555-.632.426-.423.639-.937.639-1.543 0-.605-.213-1.12-.639-1.541a2.126 2.126 0 0 0-1.555-.633c-.611 0-1.13.211-1.555.633a2.088 2.088 0 0 0-.638 1.541c0 .606.213 1.12.638 1.541.426.422.944.634 1.555.634Zm-2.089-6.213h6.4l-3.996-5.228h-2.404v5.228Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-exchange {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m23.233 9.459-8.566 4.038L6.1 9.46l8.567-4.04 8.566 4.04ZM4 9.098v12.349l10.315 5.008v-1.53l-8.982-4.29V10.556l9.3 4.497L24 10.556v4.51h1.333V9.103l-10.666-5.24L4 9.098Zm14.887 19.186c1.034 1.053 2.294 1.58 3.78 1.58 1.488.001 2.748-.525 3.781-1.58 1.033-1.055 1.55-2.338 1.552-3.849.002-1.51-.516-2.793-1.552-3.847-1.036-1.054-2.297-1.581-3.781-1.581-1.485 0-2.745.527-3.78 1.58-1.036 1.055-1.554 2.337-1.554 3.848 0 1.51.518 2.794 1.554 3.849Zm4.421-1.45-.642.654-3-3.053 3-3.053.642.653-1.899 1.938h4.257v.924h-4.257l1.9 1.938Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-copy {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M11.071 24.805V5.863H26v18.942H11.071Zm1.358-1.354h12.214V7.216H12.429v16.235ZM7 28.863V10.756h1.357V27.51h12.737v1.353H7Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-phone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M25.632 16.962c-.158-2.63-1.14-4.865-2.947-6.704-1.806-1.839-3.999-2.84-6.579-3V5.862a11.04 11.04 0 0 1 4.16 1.007 11.49 11.49 0 0 1 3.4 2.388 11.743 11.743 0 0 1 2.346 3.464c.588 1.315.918 2.728.988 4.238l-1.368.002Zm-5.474 0a4.893 4.893 0 0 0-1.355-2.762 4.505 4.505 0 0 0-2.697-1.367v-1.394a5.767 5.767 0 0 1 3.669 1.77c1.009 1.037 1.593 2.288 1.751 3.753h-1.368ZM25.8 28.863c-2.465 0-4.936-.578-7.414-1.734-2.478-1.156-4.76-2.797-6.85-4.925-2.07-2.127-3.677-4.46-4.82-6.998C5.572 12.666 5 10.155 5 7.676V6.56h6.074l1.16 5.692-3.688 3.498a30.578 30.578 0 0 0 1.939 3.021 21.99 21.99 0 0 0 2.09 2.466c.73.78 1.556 1.51 2.473 2.189a29.836 29.836 0 0 0 3.142 2.007l3.573-3.775 5.132 1.054v6.151H25.8ZM7.902 14.442l2.863-2.677-.79-3.81h-3.6a15.81 15.81 0 0 0 .423 3.212c.254 1.078.622 2.17 1.104 3.275ZM19.465 26.06c.843.43 1.796.766 2.86 1.008a15.52 15.52 0 0 0 3.201.386v-3.631l-3.268-.662-2.793 2.9Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.429 26.47h5.274v-8.2h6.594v8.2h5.274V13.929L16 7.605 7.429 13.93v12.54ZM6 27.863V13.232l10-7.369 10 7.369v14.631h-8.131v-8.199H14.13v8.2H6Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-find-shipping {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16 28.38c-2.922-2.681-5.107-5.142-6.582-7.38C7.82 18.571 7.1 16.475 7.1 14.684c0-2.307.933-4.523 2.6-6.16A8.993 8.993 0 0 1 16 5.963a8.99 8.99 0 0 1 6.3 2.562 8.634 8.634 0 0 1 2.6 6.16c0 1.79-.72 3.887-2.318 6.314-1.475 2.24-3.66 4.7-6.582 7.38ZM6 14.685c0 4.166 3.333 9.226 10 15.178 6.667-5.951 10-11.012 10-15.178a9.734 9.734 0 0 0-2.929-6.945A10.093 10.093 0 0 0 16 4.863 10.093 10.093 0 0 0 8.929 7.74 9.733 9.733 0 0 0 6 14.685Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M20 9.863a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h8Zm-7.9 8.9v-7.8H14v2.9a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2.9h1.9v7.8h-7.8Zm4.8-7.8h-1.8v2.8h1.8v-2.8Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-click-collect {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16.125 13.02a7.57 7.57 0 0 1 5.333-2.192c2 0 3.918.788 5.333 2.192A7.458 7.458 0 0 1 29 18.314c0 1.592-.63 3.346-1.877 5.258-1.246 1.913-3.114 3.99-5.598 6.231l-.067.06-.067-.06c-2.484-2.241-4.352-4.319-5.598-6.231-1.247-1.912-1.877-3.666-1.877-5.258 0-1.986.795-3.89 2.21-5.294Zm5.333-1.167a6.557 6.557 0 0 0-4.62 1.898 6.428 6.428 0 0 0-1.905 4.563c0 1.32.525 2.878 1.71 4.695 1.08 1.658 2.677 3.481 4.815 5.47 2.138-1.989 3.735-3.812 4.815-5.47 1.185-1.817 1.71-3.374 1.71-4.695 0-1.709-.684-3.35-1.906-4.563a6.558 6.558 0 0 0-4.619-1.898Zm-3.076 6.525c0-1.737 1.4-3.038 3.076-3.038 1.676 0 3.076 1.301 3.076 3.038 0 1.873-1.397 3.177-3.076 3.177-1.68 0-3.076-1.304-3.076-3.177Zm3.076-2.012c-1.151 0-2.06.878-2.06 2.012 0 1.301.937 2.152 2.06 2.152s2.06-.85 2.06-2.152c0-1.134-.909-2.012-2.06-2.012Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m12.419 3.863 6.063 5.666-.154.054c-.338.12-.669.259-.99.416l-.062.03-4.857-4.538L4.19 13.18v7.802h4.948l.08-6.196h3.612l-.054.135a9.07 9.07 0 0 0-.325.98l-.02.073h-2.038l-.08 6.196H3v-9.505l9.419-8.802Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-points{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.827 17.906a3.26 3.26 0 0 0-2.828-1.645 3.261 3.261 0 0 0-2.827 1.645l-2.586 4.515c-.74 1.293-.075 2.955 1.356 3.347l.06.015a2.275 2.275 0 0 0 2.858-1.946l.682-6.068a.45.45 0 0 1 .457-.415.45.45 0 0 1 .457.415l.682 6.068a2.276 2.276 0 0 0 2.858 1.947l.06-.016c1.431-.39 2.096-2.053 1.356-3.347l-2.585-4.515Zm9.901-6.043h-5.17a3.261 3.261 0 0 0-2.828 1.646 3.313 3.313 0 0 0 0 3.29l2.585 4.515c.74 1.292 2.502 1.542 3.552.49l.045-.043c.984-.996.878-2.634-.242-3.47l-4.873-3.629a.456.456 0 0 1-.128-.605.446.446 0 0 1 .584-.193l5.554 2.44c1.277.56 2.739-.165 3.102-1.523l.016-.06c.378-1.445-.717-2.858-2.197-2.858ZM11.272 13.51a3.261 3.261 0 0 0-2.828-1.646h-5.17a2.28 2.28 0 0 0-2.199 2.858l.016.06c.361 1.356 1.823 2.083 3.102 1.523l5.554-2.44c.25-.11.476.007.584.193a.452.452 0 0 1-.128.605l-4.873 3.63c-1.12.835-1.228 2.473-.242 3.469l.045.043c1.05 1.053 2.812.804 3.552-.49L11.27 16.8a3.313 3.313 0 0 0 0-3.29h.002Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-menu {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M3 10.863v2h26v-2H3Zm0 11v2h26v-2H3Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-menu-close{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6.338 27.863 5 26.525l9.162-9.162L5 8.202l1.338-1.339 9.162 9.162 9.162-9.162L26 8.202l-9.162 9.161L26 26.525l-1.338 1.338-9.162-9.161-9.162 9.161Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23D4D4D4' fill-rule='evenodd' d='M19.8 2.863H2v28h28v-28H19.8Zm-7.556 2H28v24H4v-24h8.245Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view1.active,
body .rdc-icon-svg.rdc-icon-view1-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M19.8 2.863H2v28h28v-28H19.8Zm-7.556 2H28v24H4v-24h8.244Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23D4D4D4' fill-rule='evenodd' d='M2 2.863v28h13V2.864H2Zm11 2v24H4v-24h9Zm4-2v28h13V2.864H17Zm11 2v24h-9v-24h9Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view2.active,
body .rdc-icon-svg.rdc-icon-view2-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M2 2.863v28h13V2.864H2Zm11 2v24H4v-24h9Zm4-2v28h13V2.864H17Zm11 2v24h-9v-24h9Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view3:not(.active) {}
body .rdc-icon-svg.rdc-icon-view3.active,
body .rdc-icon-svg.rdc-icon-view3-active {}
body .rdc-icon-svg.rdc-icon-view4:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23D4D4D4' fill-rule='evenodd' d='M8.43 2H2v13h13V2H8.43Zm.07 2H13v4.5l.001 4.5H3.999L4 8.5V4h4.5Zm14.93-2H17v13h13V2h-6.57Zm.07 2H28v4.5l.001 4.5h-9.002L19 8.5V4h4.5Zm-.07 13H17v13h13V17h-6.57Zm.07 2H28v4.5l.001 4.5h-9.002L19 23.5V19h4.5ZM8.43 17H2v13h13V17H8.43Zm.07 2H13v9H4a32021.126 32021.126 0 0 0 0-9h4.5Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view4.active,
body .rdc-icon-svg.rdc-icon-view4-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M8.43 2H2v13h13V2H8.43Zm.07 2H13v4.5l.001 4.5H3.999L4 8.5V4h4.5Zm14.93-2H17v13h13V2h-6.57Zm.07 2H28v4.5l.001 4.5h-9.002L19 8.5V4h4.5Zm-.07 13H17v13h13V17h-6.57Zm.07 2H28v4.5l.001 4.5h-9.002L19 23.5V19h4.5ZM8.43 17H2v13h13V17H8.43Zm.07 2H13v9H4a32021.126 32021.126 0 0 0 0-9h4.5Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-view-list:not(.active) {}
body .rdc-icon-view-list.active,
body .rdc-icon-view-list-active {}
body .rdc-icon-svg.rdc-icon-address{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m20.5 28.863-9-3.18L4 28.62V7.444l7.5-2.58 9 3.18L28 5.106v21.266l-7.5 2.491Zm-.75-1.848V9.294l-7.5-2.643v17.721l7.5 2.643Zm1.5 0 5.25-1.746V7.32l-5.25 1.975v17.72Zm-15.75-.61 5.25-2.033V6.651L5.5 8.456v17.949Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-timer{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m19.913 22.494-4.58-4.579v-6.488h1.334v5.952l4.164 4.164-.918.95Zm-4.58-13.63V6.196h1.334v2.666h-1.334ZM24 17.53v-1.333h2.667v1.333H24Zm-8.667 10v-2.667h1.334v2.667h-1.334Zm-10-10v-1.333H8v1.333H5.333Zm10.671 11.333c-1.66 0-3.22-.314-4.68-.944a12.137 12.137 0 0 1-3.812-2.565 12.117 12.117 0 0 1-2.567-3.808C4.315 20.087 4 18.528 4 16.867c0-1.66.315-3.22.945-4.68a12.14 12.14 0 0 1 2.562-3.812 12.073 12.073 0 0 1 3.809-2.566 11.69 11.69 0 0 1 4.68-.946c1.659 0 3.219.315 4.68.946a12.13 12.13 0 0 1 3.812 2.562 12.095 12.095 0 0 1 2.567 3.81c.63 1.46.945 3.02.945 4.678 0 1.659-.315 3.219-.944 4.68a12.086 12.086 0 0 1-2.565 3.812 12.169 12.169 0 0 1-3.808 2.567c-1.458.631-3.018.946-4.679.945ZM16 27.53c2.978 0 5.5-1.033 7.567-3.1 2.066-2.067 3.1-4.589 3.1-7.567 0-2.977-1.034-5.5-3.1-7.566-2.067-2.067-4.59-3.1-7.567-3.1-2.978 0-5.5 1.033-7.567 3.1-2.066 2.066-3.1 4.588-3.1 7.566 0 2.978 1.034 5.5 3.1 7.567 2.067 2.067 4.59 3.1 7.567 3.1Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-size-guide{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m4 21.295.46.46 6.648 6.648.46.46.461-.46 15.51-15.51.461-.461-.46-.46-6.648-6.648-.461-.46-.46.46-15.51 15.51-.461.46Zm5.165-3.323 2.034-2.034c1.187 1.187 2.393 2.357 3.562 3.562l.915-.927c-1.188-1.183-2.37-2.371-3.556-3.556l2.033-2.033c.728.728 1.414 1.4 2.078 2.077l.92-.92c-.699-.685-1.384-1.386-2.076-2.078l2.032-2.034c1.19 1.19 2.377 2.382 3.57 3.569l.914-.928c-1.172-1.202-2.375-2.375-3.562-3.562l2.403-2.402 5.726 5.727L11.569 27.02l-5.728-5.726 2.403-2.402c.695.694 1.402 1.378 2.085 2.084l.914-.927-2.078-2.078Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-box-disabled{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23C91A1C' d='M29.6 27.35a.651.651 0 0 0-.117-.915L3.313 6.26a.651.651 0 0 0-.795 1.031l26.17 20.176a.65.65 0 0 0 .911-.116Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23fff' fill-opacity='.5' d='M16 .863c-8.84 0-16 7.16-16 16s7.16 16 16 16 16-7.16 16-16-7.16-16-16-16Z' opacity='.55'/%3E%3Cpath fill='%23000' d='M18.425 25.863v-1.255a7.948 7.948 0 0 0 3.916-2.99c.993-1.416 1.49-3 1.49-4.755 0-1.754-.497-3.339-1.49-4.754a7.947 7.947 0 0 0-3.916-2.99V7.863c1.929.638 3.507 1.78 4.734 3.423C24.386 12.931 25 14.79 25 16.863s-.614 3.932-1.84 5.576c-1.228 1.645-2.806 2.786-4.735 3.424ZM7 19.285v-4.784h4.003l4.179-4.276v13.336l-4.179-4.276H7Zm11.425 1.555v-7.954c.643.42 1.14.987 1.49 1.705.351.718.527 1.485.527 2.302a4.99 4.99 0 0 1-.526 2.273 4.223 4.223 0 0 1-1.49 1.674Zm-4.412-7.714L11.5 15.697H8.169v2.392H11.5l2.513 2.572v-7.535Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23fff' fill-opacity='.5' d='M16 .863c-8.84 0-16 7.16-16 16s7.16 16 16 16 16-7.16 16-16-7.16-16-16-16Z' opacity='.55'/%3E%3Cpath fill='%23000' d='M26 24.085 6.694 8.713A12.58 12.58 0 0 0 6 9.641l19.306 15.372c.245-.297.477-.607.694-.928Zm-1.286-7.222c0 1.416-.276 2.73-.83 3.946l-.916-.729c.41-1 .615-2.072.615-3.217 0-1.754-.481-3.339-1.443-4.754-.962-1.415-2.226-2.412-3.792-2.99V7.863c1.868.638 3.396 1.78 4.584 3.423 1.188 1.645 1.782 3.504 1.782 5.577Zm-6.366-.461 1.864 1.483c.06-.32.089-.65.089-.992 0-.817-.17-1.585-.51-2.302a4.138 4.138 0 0 0-1.443-1.704v3.515Zm-3.14-2.501-1.984-1.58 1.984-2.096v3.676Zm-7.922.6h2.82l1.502 1.196h-3.19v2.392h3.225l2.433 2.572v-2.999l1.132.901v4.998l-4.046-4.276H7.286v-4.784ZM20.88 23.08l.888.707a9.104 9.104 0 0 1-3.42 2.076v-1.255a7.664 7.664 0 0 0 2.532-1.529Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-gift{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.435 28.863V16.367H6v-5.13h5.999a1.6 1.6 0 0 1-.48-.725 2.903 2.903 0 0 1-.134-.881c0-.769.27-1.422.81-1.96a2.688 2.688 0 0 1 1.971-.808c.448 0 .858.105 1.232.314.374.208.696.48.968.815a3.2 3.2 0 0 1 .966-.819c.373-.206.784-.31 1.232-.31.773 0 1.43.27 1.971.807a2.65 2.65 0 0 1 .811 1.96c0 .301-.046.592-.138.873-.091.28-.25.525-.477.733H27v5.132h-1.435v12.495H7.435Zm11.13-20.84c-.46 0-.843.154-1.152.461a1.55 1.55 0 0 0-.464 1.145c0 .456.155.837.464 1.144.31.308.693.462 1.15.463.458.002.842-.152 1.152-.463.31-.31.465-.691.464-1.144 0-.452-.155-.834-.464-1.145a1.542 1.542 0 0 0-1.151-.462M12.55 9.63c0 .455.154.837.464 1.144.31.309.693.463 1.151.463.458 0 .842-.154 1.15-.463.31-.308.464-.69.465-1.144a1.55 1.55 0 0 0-.464-1.145 1.55 1.55 0 0 0-1.15-.46c-.457.004-.84.158-1.15.463a1.53 1.53 0 0 0-.465 1.144m-5.386 2.766v2.81h8.75v-2.81h-8.75Zm8.75 15.306V16.367H8.601v11.336h7.315Zm1.167 0h7.315V16.367h-7.315v11.336Zm8.75-12.496v-2.81h-8.75v2.81h8.75Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-filter{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M13.657 24.863v-1.6h4.655v1.6h-4.655Zm-6.094-7.2v-1.6h16.843v1.6H7.563ZM3 10.463v-1.6h26v1.6H3Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-info-size {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.333 23.273h1.334V15.94h-1.334v7.333Zm.667-9.23a.795.795 0 0 0 .585-.236.79.79 0 0 0 .235-.586.798.798 0 0 0-.236-.584.797.797 0 0 0-.584-.236.805.805 0 0 0-.82.821c0 .233.078.427.236.585a.796.796 0 0 0 .584.236Zm.004 15.23c-1.66 0-3.22-.314-4.68-.944a12.137 12.137 0 0 1-3.812-2.565 12.117 12.117 0 0 1-2.567-3.808C4.315 20.497 4 18.938 4 17.277c0-1.66.315-3.22.945-4.68a12.142 12.142 0 0 1 2.562-3.812 12.073 12.073 0 0 1 3.809-2.566 11.69 11.69 0 0 1 4.68-.946c1.659 0 3.219.316 4.68.946a12.13 12.13 0 0 1 3.812 2.562 12.094 12.094 0 0 1 2.567 3.81c.63 1.46.945 3.02.945 4.678 0 1.66-.315 3.22-.944 4.68a12.085 12.085 0 0 1-2.565 3.812 12.17 12.17 0 0 1-3.808 2.567c-1.458.631-3.018.946-4.679.945ZM16 27.94c2.978 0 5.5-1.033 7.567-3.1 2.066-2.067 3.1-4.589 3.1-7.567 0-2.977-1.034-5.5-3.1-7.566-2.067-2.067-4.59-3.1-7.567-3.1-2.978 0-5.5 1.033-7.567 3.1-2.066 2.066-3.1 4.589-3.1 7.566 0 2.978 1.034 5.5 3.1 7.567 2.067 2.067 4.59 3.1 7.567 3.1Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-return2 {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8.59 16.863 16 25.096l-1.294 1.267L6 16.863l8.706-9.5L16 8.63l-7.41 8.233Zm10 0L26 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L26 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-return1 {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M18.59 16.863 26 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L26 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-edit {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8 24.863v-3.008L21.008 8.863 24 11.768 10.904 24.863H8Zm1.152-1.15h1.259l9.553-9.543-.63-.628-.702-.671-9.48 9.468v1.374Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-navigation-left {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M12.59 16.863 20 25.096l-1.294 1.267-8.706-9.5 8.706-9.5L20 8.63l-7.41 8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-navigation-right {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M19.41 16.863 12 8.63l1.294-1.267 8.706 9.5-8.706 9.5L12 25.096l7.41-8.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-360 {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' y='.863' fill='%23fff' opacity='.5' rx='16'/%3E%3Cpath fill='%23FDDA00' fill-rule='evenodd' d='M12.702 14.505c0 .491-.223.882-.556 1.15.223.121.406.286.543.489.188.278.284.619.284.997 0 .566-.198 1.054-.557 1.4-.359.344-.867.536-1.474.536-.598 0-1.08-.2-1.423-.542-.341-.343-.533-.816-.57-1.343l-.01-.163h1.195l.015.134c.027.245.109.435.237.564.127.128.314.21.579.21.482 0 .777-.365.777-.828 0-.304-.103-.501-.261-.628-.165-.132-.405-.2-.697-.2h-.352v-1.1h.141c.288 0 .523-.047.681-.15.147-.094.24-.242.24-.493-.004-.197-.068-.326-.159-.409a.572.572 0 0 0-.393-.134.563.563 0 0 0-.398.145.652.652 0 0 0-.184.42l-.014.136H9.21l.004-.156c.012-.48.187-.903.496-1.204.308-.301.741-.473 1.256-.473.512 0 .947.16 1.255.451.31.293.482.708.482 1.19Zm1.919.768a1.759 1.759 0 0 1 1.057-.323c.542 0 1.005.203 1.333.566.328.363.51.875.51 1.474 0 .604-.206 1.13-.566 1.505-.359.374-.864.59-1.45.59-.688 0-1.222-.26-1.58-.768-.352-.5-.518-1.219-.518-2.108 0-1.024.163-1.858.518-2.439.36-.591.911-.907 1.64-.907.537 0 .979.174 1.302.48.322.307.517.737.577 1.23l.02.17h-1.207l-.018-.128c-.044-.305-.258-.604-.681-.604-.329 0-.554.165-.708.443-.119.214-.194.496-.229.819Zm.876 2.624a.777.777 0 0 1-.59-.252c-.142-.158-.232-.388-.232-.671 0-.549.354-.916.815-.916.458 0 .815.387.815.932 0 .526-.355.907-.808.907Zm5.541.951c-.274.16-.607.245-1.006.245-.398 0-.732-.084-1.005-.245a1.697 1.697 0 0 1-.636-.681c-.303-.566-.397-1.339-.397-2.18 0-.764.083-1.538.378-2.126.15-.297.355-.549.631-.725.277-.177.617-.273 1.03-.273.411 0 .752.096 1.028.273.277.177.482.428.63.725.297.588.38 1.362.38 2.125 0 .842-.095 1.615-.398 2.18-.153.287-.36.52-.635.682Zm-1.006-.91a.52.52 0 0 1-.356-.124.869.869 0 0 1-.231-.374c-.124-.345-.168-.847-.168-1.454 0-.56.035-1.059.155-1.413a.904.904 0 0 1 .23-.39.527.527 0 0 1 .37-.132c.16 0 .278.05.37.133a.903.903 0 0 1 .23.39c.12.353.155.851.155 1.412 0 .608-.042 1.11-.165 1.454a.86.86 0 0 1-.23.373.526.526 0 0 1-.36.124Zm5.248-3.608c0 .828-.61 1.457-1.39 1.457-.781 0-1.399-.628-1.399-1.458 0-.828.617-1.466 1.398-1.466.783 0 1.39.639 1.39 1.466Zm-1.39.469a.456.456 0 0 1-.454-.47c0-.27.197-.477.453-.477.248 0 .446.205.446.477 0 .271-.19.47-.446.47Z' clip-rule='evenodd'/%3E%3Cpath fill='%23FDDA00' d='M6.026 17.943c-.522.302-.8.587-.913.811a.504.504 0 0 0-.062.255c.004.077.03.165.094.272.142.237.457.528 1.018.831 1.114.602 2.914 1.097 5.14 1.38a34.27 34.27 0 0 0 5.409.236l-.05-.043a.585.585 0 0 1-.066-.79.503.503 0 0 1 .737-.071l1.065.94a.583.583 0 0 1 .053.807.538.538 0 0 1-.05.056l-.924 1.058a.503.503 0 0 1-.74.03.585.585 0 0 1-.029-.793l.067-.077a35.273 35.273 0 0 1-5.596-.241c-2.276-.29-4.217-.806-5.491-1.494-.633-.341-1.14-.745-1.428-1.226-.312-.519-.352-1.104-.073-1.659.255-.506.743-.922 1.338-1.266.537-.31 1.208-.588 1.988-.83.279-.086.563.107.646.39a.568.568 0 0 1-.366.689c-.725.225-1.317.474-1.767.735Zm17.394-.667c1.037.34 1.761.728 2.17 1.107.219.203.312.372.344.492a.468.468 0 0 1-.05.355c-.083.162-.25.352-.528.558a5.574 5.574 0 0 1-1.14.62c-.892.374-2.064.692-3.439.925-.281.047-.484.327-.44.637.043.308.312.517.598.47 1.426-.242 2.68-.578 3.666-.992 1.028-.432 1.845-.982 2.204-1.68.193-.375.25-.786.14-1.198-.106-.396-.35-.739-.666-1.031-.57-.53-1.462-.976-2.563-1.337-.278-.09-.571.081-.652.379a.572.572 0 0 0 .356.695Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-store-locator {}
body .rdc-icon-svg.rdc-icon-direction {}

/* SVG icons cursor Ex: {cursor: url("data:image/svg+xml,%3Csvg ... "), default;} */
body .rdc-icon-svg.rdc-icon-cursor-zoom, body .rdc-icon-svg.rdc-icon-cursor-zoom * {cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='34' fill='none'%3E%3Cpath fill='%23666' d='m30.62 33.223-12.23-12.23c-.977.832-2.1 1.476-3.37 1.931a11.249 11.249 0 0 1-3.827.684c-3.128 0-5.775-1.083-7.941-3.248-2.167-2.165-3.25-4.811-3.25-7.939 0-3.127 1.082-5.775 3.246-7.943 2.164-2.168 4.81-3.253 7.937-3.255 3.127-.003 5.776 1.08 7.945 3.25 2.169 2.169 3.253 4.816 3.253 7.942 0 1.357-.24 2.67-.72 3.94-.48 1.269-1.112 2.355-1.895 3.257l12.23 12.228-1.379 1.383Zm-19.425-11.57c2.59 0 4.778-.892 6.562-2.676 1.784-1.783 2.675-3.971 2.675-6.564 0-2.592-.891-4.78-2.675-6.562-1.784-1.782-3.971-2.674-6.562-2.675-2.591-.002-4.78.89-6.564 2.675-1.785 1.785-2.677 3.973-2.676 6.562.001 2.59.893 4.777 2.676 6.563 1.782 1.785 3.97 2.676 6.562 2.675m-.977-4.58v-3.68H6.54V11.44h3.681V7.76h1.953v3.68h3.68v1.953h-3.68v3.681l-1.957-.002Z'/%3E%3C/svg%3E");}

/* SVG icons MASK Ex: {-webkit-mask: url("data:image/svg+xml,%3Csvg ... ");} */
body .rdc-icon-svg.rdc-icon-tag {-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.668 28.863 5 18.187 17.3 5.863H28v10.708L15.668 28.863Zm.025-1.75L26.77 16.069V7.117h-8.944L6.75 18.162l8.944 8.95Zm7.927-15.635c.35 0 .645-.12.89-.36.243-.24.365-.53.365-.872 0-.349-.121-.645-.363-.89a1.2 1.2 0 0 0-.882-.366 1.189 1.189 0 0 0-.88.363 1.203 1.203 0 0 0-.36.883c0 .346.12.64.359.88s.53.361.871.362Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-shipping-express {-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m15.317 23.947 5.895-8.801h-4.9l2.461-8.768h-7.302v12.116h3.846v5.453Zm-1.471 4.916V20.01H10V4.863h10.719l-2.46 8.768H24L13.846 28.863Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-download {-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16 22.485-5.561-5.56 1.112-1.13 3.663 3.662V5.864h1.572v13.593l3.661-3.661 1.114 1.13-5.56 5.56Zm-11 5.38v-6.346h1.572v4.774h18.857v-4.774H27v6.345H5Z'/%3E%3C/svg%3E");}

/*
 *
 * Up Selling - Carrinho
 *
*/
/* body #rdc-mini-cart .mfp-close .rdc-icon-close {background-color: transparent; background-size: 18px;}
body #rdc-mini-cart .rdc-icon-circle .rdc-icon-svg {background-color: transparent; background-size: 18px;}
body #rdc-mini-cart .rdc-wrapper-popup-body .item-desc .item-name-title{font-weight: 500 !important;} */
/* body #rdc-mini-cart .rdc-wrapper-popup-body .item-desc .item-ref .small{font-size: 16px;} */
/* body #rdc-mini-cart .rdc-wrapper-popup-body .item-desc .item-price-remove .price p{font-size: 14px;}
body #rdc-mini-cart .rdc-wrapper-popup-footer{box-shadow: 0px -15px 15px 0px #00000008; background-color: var(--color-white);} */

/*
 *
 * Filters
 *
*/
/* DESKTOP */
@media screen and (min-width:1200px){
    
    #filters-desktop .mfp-close .rdc-icon-close{background-size: 28px; background-color: transparent;}
    #filters-desktop .box-filter:not(.box-filter-order_by) .filter-label-item{border: 1px solid var(--color-gray);}
    #filters-desktop .box-filter:not(.box-filter-order_by) .filter-cnt-item > .sel + .filter-label-item{outline: 1px solid var(--color-black);border-color: var(--color-black);}
    #filters-desktop .box-filter:not(.box-filter-order_by) .filter-cnt-item > .sel + .filter-label-item span{text-shadow: 0.06em 0 0 var(--color-black);}
    body #filters-desktop .box-filter:not(.box-filter-order_by) .magic-checkbox[disabled]+label{text-decoration: none; border: 1px solid var(--color-background); background-color: var(--color-background);}
    #filters-desktop .bottom-filters-content .link{text-transform: uppercase; color: var(--color-black);}
    html body #filters-desktop.rdc-popup-right-bar .rdc-wrapper-popup-footer{padding: 20px 0 20px 64px; background-color: var(--color-white);}
}

/* MOBILE & TABLET */
@media screen and (max-width: 1199px){
    body #filters-popup .list-nav-subtitle:not(.total-filter-active){font-weight: 600; line-height: 120%;}
    body #filters-popup .list-nav-subtitle.total-filter-active{font-weight: 400;}
    body #filters-popup .mfp-close .rdc-icon-close{background-color: transparent; background-size: 20px;}
    #filters-popup .wrapper-active-filters .filters-active-item{border-radius: 0; border: 1px solid var(--color-black); background: var(--color-white);}
    body #filters-bar .filters-bar-btn{width: 170px; height: 38px; background-color: var(--color-white); border: 1px solid var(--color-lines);}

    /* 2 janela */
    #filters-popup .bottom-filters-clear.clear-filter .link{text-transform: uppercase; color: var(--color-black);}
}


/*
 *
 * Product Item
 *
*/
article.product-item .flags .flag { display: none; }
.productMask:before {background-color: rgba(0,0,0,0.03);}
.product-item .rdc-product-item-right-actions .rdc-icon-svg {background-color: var(--color-white);}

article.product-item .rdc-product-item-content .rdc-product-item-review-review_counts.value{color: var(--color-darkgray); font-size: 13px;}
/* rdc-popup-variants */ 
body #rdc-popup-variants .rdc-wrapper-popup-body{background-color: var(--color-background);}
#rdc-popup-variants .rdc-product-color-item:hover, #rdc-popup-variants .rdc-product-color-item.sel {border: 2px solid var(--color-black);} 
#rdc-popup-variants .rdc-product-color-item{border: 2px solid var(--color-background);} 
body .rdc-popup-variants .rdc-wrapper-popup-body img{height: 32px; border: 1px solid var(--color-lines);width: 32px;}
body .rdc-popup-variants .rdc-wrapper-popup-body .rdc-product-color-item.sel img{top: 1px;right: 1px;left: unset;}
/*body .rdc-popup-variants .rdc-wrapper-popup-body .rdc-product-color-item:hover img,
body .rdc-popup-variants .rdc-wrapper-popup-body .rdc-product-color-item.sel img{border:unset;}*/
body #rdc-popup-variants .rdc-wrapper-popup-footer button[disabled]{background-color: var(--color-buttoncart); border-color: var(--color-buttoncart); opacity: 0.2;}
#rdc-popup-variants .rdc-button-item-size input:not(:disabled) + label{background-color: var(--color-white);}
#rdc-popup-variants .rdc-button-item-size input:not(:disabled) + label{background-color: var(--color-white);}
#rdc-popup-variants .rdc-button-item-size input:not(:disabled) + label:hover,
#rdc-popup-variants .rdc-button-item-size input:checked + label{border: 2px solid var(--color-black);}
#rdc-popup-variants .rdc-button-item-size input:not(:disabled) + label:hover .rdc-popup-variants-item_title,
#rdc-popup-variants .rdc-button-item-size input:checked + label .rdc-popup-variants-item_title{font-weight: 600;}

article.product-item .rdc-product-item-image .rdc-icon-circle{background-size: 16px;}

/* DESKTOP */
@media screen and (min-width:1200px){
    article.product-item .rdc-product-item-content .price .current,
    article.product-item .rdc-product-item-content .price .old{font-size: 14px; line-height: 19px;}
    article.product-item .rdc-product-item-content .price .discount{font-size: 13px;}
}

/* MOBILE & TABLET */
@media screen and (max-width: 1199px){
    article.product-item .rdc-product-item-content .price .current,
    article.product-item .rdc-product-item-content .price .old{font-size: 13px; line-height: 19px;}
    article.product-item .rdc-product-item-content .price .discount{font-size: 12px;}
}

/* Small */
body article.product-item.rdc-product-item-small .rdc-product-item-content .price .current,
body article.product-item.rdc-product-item-small .rdc-product-item-content .price .old{font-size: 13px;}
body article.product-item.rdc-product-item-small .rdc-product-item-content .price .discount{font-size: 12px;}


/*
 *
 * Banner - Homepage
 *
*/
.container-home-slider .description .home-slider-title.secondary-subtitle{text-transform: uppercase;}
body .home .home-slider .description .content p:not(:first-child){padding: 5px 0;}
body .home .home-slider .description .content .button{margin-top: 25px;}




/* Mobile (Portrait) */
@media screen and (max-width: 767px) {}

/* Mobile (Landscape), Tablet (Portrait) */
@media screen and (min-width: 768px) and (max-width: 991px) {}

/* Tablet (Landscape) */
@media screen and (min-width: 992px) and (max-width: 1199px) {}

/* Desktop */
@media screen and (min-width: 1200px) {}


.home .home-slider .description .content .button {
    background-color: transparent !important;
}