/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000;
	--color-theme: #6A9191;
	--color-black: #333;
	--color-darkgray: #666;
	--color-gray: #999;
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F3F1EE;
	--color-lines: #CCC;
	--color-link: #333;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #B21A1D;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9C35;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-buttoncart: #6A9191;
	--color-buttoncart-hover: #99B5B5;

	--base-fontfamily: "Baloo", -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;
	--base-Delius: "Delius", -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;
    --container-width: 1920px; /* (2560px | 1920px | 1680px | 1440px) */
	--container-padding: 40px;
	--container-padding-n: -40px;
	--row-padding: 12px;
	--row-padding-n: -12px;
	--productlist-padding: 40px;
	--productdetail-padding: 40px;
	--color-featuredmenu: #E1A555;
	--mobile-popup-max-height: calc(var(--window-inner-height, 100vh) - max(30px, env(safe-area-inset-top)) - 10px);
	--mobile-popup-radius: 10px;

	--input-border-radius: 10px;
	--button-border-radius: 50px;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 30px;
	--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);*/


	--header-submenu-height-custom: 40px;
	--header-submenu-height-custom-n: -40px;
	
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 25px;
		--sp-medium: 40px;
		--sp-large: 80px;
	}
}

@media screen and (width: 1920px) {
	:root{
		--productlist-padding: 32px;
	}
}

@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: 15px;
	color: var(--color-black);
}

.systemFontFamily{
	font-family: var(--base-fontfamily);
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 148%;
	font-weight: 400;
}

/* 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: 15px;
	color: var(--color-black);
}

/* MEGA-TITLE */
.mega-title {
	font-family: var(--base-Delius);
	font-weight: 700;
	font-size: 50px;
	line-height: 128%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-family: var(--base-Delius);
	font-weight: 400;
	font-size: 40px;
	line-height: 126%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-family: var(--base-Delius);
	font-weight: 700;
	font-size: 30px;
	line-height: 128%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-family: var(--base-Delius);
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-family: var(--base-Delius);
	font-weight: 400;
	font-size: 16px;
	line-height: 165%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 142%;
}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 47.53%, rgba(153, 181, 181, 0.5) 47.54%, rgba(153, 181, 181, 0.5) 99.31%);
	font-size: 14px;
	line-height: normal;
	color: var(--color-black);
	letter-spacing: 1px;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	text-transform: uppercase;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 500;
	font-size: 16px;
	line-height: 152%;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT */
	/* Brand */
		.brand-list-product,
		.rdc-product-item-brand {
			font-weight: 400;
			font-size: 15px;
			line-height: normal;
		} 

	/* Name */
		.product-item .rdc-product-item-content .name,
		.rdc-product-item-name {
			font-weight: 500;
			font-size: 16px;
			line-height: normal;
		}

	/* Price */
		.price {
			display: inline-grid;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 0 8px;
		}

		.price, .price p {
			font-weight: 400;
			font-size: 15px;
		}

		/* Price Old */
		.price .old {
			color: var(--color-darkgray);
			text-decoration: line-through;
			margin-right: 0 !important;
			line-height: normal;
		}

		/* Price Discount */
		.price .discount {
			background: var(--color-background); /* Required */
			color: var(--color-error); /* Required */
			padding: 0px 8px;
			min-height: 20px;
			border-radius: 50px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 14px;
			font-weight: 500;
			line-height: 110%;
		}

		/* Price Current */
		.price .current {
			color: var(--color-black);
			font-weight: 600;
			line-height: normal;
		}

		/* Price Desde, Type, packageType */
		.price .desde, .price .type, .price .packageType, .price .date {
			font-weight: 400;
			font-size: 10px;
			line-height: 142%;
			color: var(--color-darkgray);
		}

	/* Price Horizontal */
		.priceh {
			display: inline-flex;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 0 8px;
			flex-wrap: wrap;
		}

		.priceh, .priceh p {
			font-weight: 400;
			font-size: 15px;
		}

		/* Priceh Old */
		.priceh .old {
			color: var(--color-darkgray);
			text-decoration: line-through;
			line-height: normal;
		}

		/* Priceh Discount */
		.priceh .discount {
			background: var(--color-background);
			color: var(--color-error);
			padding: 0px 6px;
			min-height: 20px;
			border-radius: 2px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-weight: 500;
			font-size: 14px; 
			line-height: 110%;
			padding: 0px 6px;
    		border-radius: 50px;
		}

		/* Priceh Current */
		.priceh .current {
			color: var(--color-black);
			font-weight: 600;
			line-height: normal;
		}

		/* Priceh Desde, Type, packageType */
		.priceh .desde, .priceh .type, .priceh .packageType, .priceh .date {
			font-weight: 400;
			font-size: 11px;
			color: var(--color-darkgray);
			line-height: 142%;
		}

	/* Promo Date */
	.rdc-promo-date {
		font-weight: 400;
		font-size: 11px; /* Required font-size */
		color: var(--color-darkgray);
		line-height: 142%;
	}

	/* Promo��o ultimos 30 dias */
	.rdc-promo-30days {
		font-weight: 400;
		font-size: 11px;
		color: var(--color-darkgray);
		line-height: 142%;
	}

@media screen and (max-width: 1199px) {

	body, .paragraph, .gm-style, .page-content {
		font-size: 14px;
		line-height: 150%;
	}
	/* MEGA-TITLE */
	.mega-title {
		font-size: 30px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 25px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 20px;
		line-height: 130%;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 16px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 14px;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 16px;
		line-height: 148%;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle {
		font-size: 15px;
		line-height: 146%;
	}

	/* SIGNATURE */
	.signature {
		font-size: 14px;
		line-height: normal;
	}

	/* PRODUCT */
	/* Brand */
	.brand-list-product,
	.rdc-product-item-brand {
		font-size: 14px;
	} 

	/* Name */
	.product-item .rdc-product-item-content .name,
	.rdc-product-item-name {
		font-size: 15px;
	}

	/* Price */
	.price {
		grid-gap: 0 6px;
	}

	.price p {
		font-size: 14px;
	}

	.price p.discount {
		font-size: 12px;
		min-height: 17px;
	}


	/* Price Desde, Type, packageType */
	.price .desde, .price .type, .price .packageType, .price .date {
		font-size: 10px;
		line-height: 130%;
	}

	/* Promo Date */
	.price .date,
	.rdc-promo-date {
		font-size: 10px;
		line-height: 130%;
	}

	/* Promo��o ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 10px;
		line-height: 130%;
	}
	
	.priceh p {
		font-size: 14px;
	}
	.priceh p.discount {
		font-size: 12px;
		min-height: 17px;
	}
}

/* PRODUCT ITEM SMALL == MOBILE */
@media screen and (min-width: 1200px) {
	/* Os estilos aplicados em mobile, devem ser colocados aqui. Exemplo: */
	.rdc-product-item-small .rdc-product-item-brand {
		font-size: 13px;
	}
}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 500;
		font-size: 15px;
		color: var(--color-white);
		line-height: 10px;
		text-transform: uppercase;
		padding: 0 30px;
		background-color: var(--color-theme);
		border: 1px solid var(--color-theme);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width:  120px;
		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-buttoncart) !important;
		background: var(--color-buttoncart) !important;
		border: 1px solid var(--color-theme);
	}

	/* 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-theme);
			border: 1px solid var(--color-theme);
			background-color: transparent;
		}
	}

	/* 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: none;
	}

	/* 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-theme);
		border: 1px solid var(--color-white);
		background-color: var(--color-white);
	}

	/* 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-white);
			border: 1px solid var(--color-white);
			background-color: transparent;
		}
	}

	/* 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: none;
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2 {
		color: var(--color-theme);
		border: 1px solid var(--color-theme);
		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-white);
			border: none;
			background-color: var(--color-theme);
		}
	}

	/* 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: none;
	}

	/* 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-color: 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-theme); 
			border: 1px solid var(--color-white);
			background-color: var(--color-white);
		}
	}

	/* 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: none;
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline-block; /* Required */
		font-weight: 500;
		font-size: 15px;
		line-height: 100%;
		text-decoration: none !important;
		padding: 1px 0;
		border: 0;
		background: transparent;
		text-transform: uppercase;
	}

	.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 {
			border-color: transparent;
			color: currentColor;
		}
	}

	/* 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: 6px;

	}

	/* 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);border-color: var(--color-theme);}
	.button-card.active .button-card-title{color: var(--color-theme);}

	/* Disable */
	.button-card.disabled {background-color: transparent}

	/* Esgotado */
	.button-card.esgotado {background-color: var(--color-background);}
	.button-card.esgotado .button-card-title{color: var(--color-gray);}
	.button-card.esgotado .button-card-desc {color: var(--color-lightgray);}

	/* Title */
	.button-card-title {color: var(--color-black);}

	/* 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: 500;
		font-size: 15px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 30px;
		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: 0.5;
	}

/* 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;
}



/*
 *
 * FLAGS
 *
*/
body .flags{flex-direction: row;}
.flags .flag {font-weight: 500;line-height: normal;text-transform: uppercase;min-height: 23px;display: flex;justify-content: center;align-items: center;border-radius: 5px;font-size: 14px;padding: 0px 9px 1px;}
.blog .flags .flag{line-height: normal;color: var(--color-white);text-transform: uppercase;background: #000;border-top-left-radius: 0;border-bottom-left-radius: 0;}
.blog .flags.flagsStatic .flag{color: #000;}
@media screen and (max-width: 1199px) {
	.flags .flag {
		min-height: 18px; 
        font-size: 12px;
        line-height: 100%;
        padding: 0px 7px;
	}
}



/*
 *
 * Accordions
 *
*/
body .accordion > li {border: 1px solid var(--color-lines);border-radius: 10px;}
body .accordion > li:not(:last-child){margin-bottom: 10px;}
body .accordion > li.active {border-color: var(--color-theme);background-color: var(--color-background);}
.accordion-head {user-select: none;}
.accordion-head > p{color: var(--color-theme);}
.accordion .accordion-head{padding-top: 9px;padding-bottom: 9px;}
.accordion .accordion-content{padding-top: 20px;padding-bottom: 14px;}
.accordion .accordion-head, .accordion .accordion-content {padding-left: 15px;padding-right: 4em;}
.accordion .accordion-icon .rdc-icon-svg{width: 14px;height: 14px;background-size: 100%;}



/*
 *
 * 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: 0px 20px 1px;
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	color: var(--color-gray);
	border-radius: var(--button-border-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	user-select: none;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		color: var(--color-theme);
		border-color: var(--color-theme);
		box-shadow: inset 0px 0px 0px 1px var(--color-theme);
		opacity: 1;
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-theme);
	border-color: var(--color-theme);
	box-shadow: inset 0px 0px 0px 1px var(--color-theme);
	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;}
.label-title{font-size: 14px; color: var(--color-theme); font-weight: 500; margin-left: 8px; padding-bottom: 0;}

body .form-field .max-carac { top: -62% !important;transform: unset !important;color: var(--color-darkgray); }

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], select {
	padding: 10px 13px;
	border: 1px solid var(--color-lines);
	min-height: 44px;
	background-color: white;
	color: currentColor; /* Required */
	border-radius: var(--input-border-radius);
}

input[type=file] {
	padding: 8px 15px;
}

@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, 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);
	}
	#rdc-productlist-area-c #filters-desktop .box-filter .filter-label-item:hover span,
	#rdc-productlist-area-c #filters-desktop .box-filter input:checked + .filter-label-item:hover,
	#rdc-productlist-area-c #filters-desktop .box-filter.box-filter-order_by .filter-label-item:hover { opacity: 0.7; }
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, textarea:focus {
    border-color: var(--color-theme);
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=search]: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, textarea.disabled, div.select.disabled {
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-lines)!important;
	-webkit-text-fill-color: #939291;
	-webkit-opacity: 1; 
	cursor: default;
}

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 13px;
	min-height: 42px;
	height: auto;
	appearance:none;
	border: 0px !important;
	border-radius: 0 !important;
	background: transparent;
	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: 14px;
	width: 16px;
	height: 16px;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16.748 20.717a1.16 1.16 0 0 1-1.519 0l-8.825-7.644a1.168 1.168 0 0 1-.347-1.246 1.17 1.17 0 0 1 1.016-.805 1.159 1.159 0 0 1 .85.28l8.066 6.988 8.063-6.983a1.16 1.16 0 0 1 1.894.509 1.174 1.174 0 0 1-.376 1.259l-8.822 7.642Z' clip-rule='evenodd'/%3E%3C/svg%3E");;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16.748 20.717a1.16 1.16 0 0 1-1.519 0l-8.825-7.644a1.168 1.168 0 0 1-.347-1.246 1.17 1.17 0 0 1 1.016-.805 1.159 1.159 0 0 1 .85.28l8.066 6.988 8.063-6.983a1.16 1.16 0 0 1 1.894.509 1.174 1.174 0 0 1-.376 1.259l-8.822 7.642Z' clip-rule='evenodd'/%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);
}

div.select.loading::after {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
}

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-theme) !important;
}

/* 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-black);
}

.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 7px center;
	background-size: 18px;
	line-height: normal;
	padding: 6px 10px 5px 35px;
	border-radius: 3px;
	border: 1px solid;
}

.form-message .help {
	background-color: var(--color-helplight);
	border-color: var(--color-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' fill-rule='evenodd' d='M15.667 5.341a10.326 10.326 0 1 0 0 20.651 10.326 10.326 0 0 0 0-20.65Zm-12 10.326c0-6.628 5.373-12 12-12s12 5.372 12 12c0 6.627-5.373 12-12 12s-12-5.373-12-12Zm12-3.745c-.693 0-1.256.563-1.256 1.256a.837.837 0 1 1-1.674 0 2.93 2.93 0 1 1 4.42 2.523c-.193.11-.369.248-.519.412-.114.134-.134.223-.134.275v1.395a.837.837 0 0 1-1.674 0v-1.395c0-.565.248-1.023.532-1.359.281-.331.632-.585.943-.769a1.255 1.255 0 0 0-.638-2.338Zm0 10.326a1.116 1.116 0 1 0 0-2.232 1.116 1.116 0 0 0 0 2.232Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.form-message .success {
	background-color: var(--color-successlight);
	border-color: var(--color-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='M20.692 13.53a.835.835 0 0 1-.194.27l-5.581 5.582a.837.837 0 0 1-1.183 0L11.5 17.15a.837.837 0 0 1 1.184-1.183l1.64 1.64 4.99-4.99a.836.836 0 0 1 1.377.912Z'/%3E%3Cpath fill='%233F9C35' fill-rule='evenodd' d='M4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Zm4.699-7.301A10.326 10.326 0 1 0 23.3 23.3 10.326 10.326 0 0 0 8.7 8.7Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.form-message .info {
	background-color: var(--color-infolight);
	border-color: var(--color-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='M16.592 22.173a.837.837 0 0 1-1.43-.592v-6.697a.837.837 0 1 1 1.675 0v6.697a.837.837 0 0 1-.245.592Zm.198-11.428a1.116 1.116 0 1 0-1.58 1.58 1.116 1.116 0 0 0 1.58-1.58Z'/%3E%3Cpath fill='%231890FF' fill-rule='evenodd' d='M16 4C9.373 4 4 9.373 4 16s5.373 12 12 12 12-5.373 12-12S22.627 4 16 4ZM8.699 8.699A10.326 10.326 0 1 1 23.3 23.3 10.326 10.326 0 0 1 8.7 8.7Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.form-message .warning {
	background-color: var(--color-warninglight);
	border-color: var(--color-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='M17.118 11.115a.866.866 0 0 0-1.234 0 .891.891 0 0 0-.255.625v5.898c0 .234.092.46.255.625a.866.866 0 0 0 1.234 0 .891.891 0 0 0 .255-.625V11.74a.891.891 0 0 0-.255-.625Zm.205 10.895a1.155 1.155 0 0 1-1.644 0 1.188 1.188 0 0 1 0-1.668 1.154 1.154 0 0 1 1.644 0 1.188 1.188 0 0 1 0 1.668Z'/%3E%3Cpath fill='%23FAAD14' fill-rule='evenodd' d='M16.5 4c-1.742 0-3.063 1.02-4.31 2.626-1.225 1.579-2.524 3.915-4.185 6.905l-.532.956c-1.362 2.45-2.438 4.386-3.004 5.943-.583 1.6-.721 3.055.16 4.337.855 1.245 2.282 1.753 4.082 1.994 1.791.239 4.202.239 7.295.239h.988c3.092 0 5.504 0 7.296-.24 1.8-.24 3.227-.748 4.081-1.993.882-1.282.742-2.735.16-4.337-.567-1.559-1.646-3.501-3.012-5.958l-.539-.968c-1.655-2.977-2.949-5.303-4.17-6.878C19.563 5.02 18.241 4 16.5 4ZM9.483 14.474c1.711-3.079 2.946-5.295 4.079-6.754 1.122-1.445 1.993-1.95 2.938-1.95.946 0 1.817.506 2.939 1.95 1.132 1.46 2.367 3.675 4.079 6.754l.423.76c1.425 2.565 2.438 4.393 2.955 5.81.509 1.398.438 2.14.044 2.712-.419.609-1.206 1.027-2.877 1.25-1.666.222-3.962.225-7.14.225h-.845c-3.179 0-5.474-.003-7.14-.224-1.672-.224-2.459-.642-2.879-1.25-.393-.574-.462-1.315.047-2.713.515-1.417 1.528-3.245 2.954-5.81l.423-.76Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.form-message .error {
	background-color: var(--color-errorlight);
	border-color: var(--color-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='%23B21A1D' d='M13.215 12.393a.838.838 0 0 1 .586.225L16 14.817l2.199-2.2a.835.835 0 0 1 1.388.258.837.837 0 0 1-.205.926L17.182 16l2.2 2.2a.838.838 0 0 1-1.183 1.182l-2.2-2.199-2.198 2.2a.838.838 0 1 1-1.184-1.184l2.2-2.199-2.2-2.2a.837.837 0 0 1 .598-1.407Z'/%3E%3Cpath fill='%23B21A1D' fill-rule='evenodd' d='M4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Zm4.699-7.301A10.326 10.326 0 1 0 23.3 23.3 10.326 10.326 0 0 0 8.7 8.7Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.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;
	}
	.slim-scrollbar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	.slim-scrollbar::-webkit-scrollbar-track {
		background: lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: #AAA;
		border-radius: 8px;
	}
*/



/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;}
#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 - var(--container-scrollbar-width, 16px));}
	}


/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-color: white !important;
	border-radius: 100%;
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.25);
	background-position: center !important;
	background-size: 20px;
}

.slider .slick-arrow.slick-disabled{visibility: hidden;}

@media (hover) {
	.slider .slick-arrow:hover, .rdc-slider-arrow:hover {opacity: 1;}
}

.slider .slick-arrow{width: 28px; height: 28px; opacity: 30%;}
.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='%23333' fill-rule='evenodd' d='M10.283 16.748a1.16 1.16 0 0 1 0-1.519l7.644-8.825a1.168 1.168 0 0 1 1.246-.347 1.17 1.17 0 0 1 .805 1.016 1.159 1.159 0 0 1-.28.85l-6.988 8.066 6.983 8.063a1.16 1.16 0 0 1-.509 1.894 1.174 1.174 0 0 1-1.259-.376l-7.642-8.822Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M21.717 15.252a1.16 1.16 0 0 1 0 1.519l-7.644 8.825a1.168 1.168 0 0 1-1.246.347 1.17 1.17 0 0 1-.805-1.016 1.159 1.159 0 0 1 .28-.85l6.988-8.066-6.983-8.063a1.16 1.16 0 0 1 .509-1.894 1.173 1.173 0 0 1 1.259.375l7.642 8.823Z' clip-rule='evenodd'/%3E%3C/svg%3E");}

.slick-dots li{margin: 0 6px 0 0;}
.slick-dots li button{width: 10px;height: 10px;border: 1px solid var(--color-theme);background-color: var(--color-background);border-radius: 100%;}
.slick-dots li.slick-active button{background-color: var(--color-theme);border-color: var(--color-theme);}

@media screen and (max-width:1199px) {
	.slick-dots li button{width: 8px;height: 8px;}
}

/*
 *
 * Footer
 *
*/

body #footer .wrapper-footer{background-color: var(--color-background); border-top: 1px solid var(--color-theme);}   
body #footer .wrapper-footer .list-nav-title{color: var(--color-theme); text-transform: uppercase;}
body #footer .wrapper-footer .paragraph, 
body #footer .wrapper-footer .paragraph a, 
body #footer .wrapper-footer .paragraph .a, 
body #footer .wrapper-footer small, 
body #footer .wrapper-footer .small{color: var(--color-black);}
.country-change-footer .footer-shop-country-icon + .paragraph .a{font-weight: 500 !important;} 
.newsletter-footer-form-column.newsletter-footer-form-column-right button{border-color: var(--color-theme); background-color: var(--color-theme);color: var(--color-white);}
body .newsletter-footer-form-column.newsletter-footer-form-column-left .form-field input{border-radius: var(--button-border-radius);}
body #footer .wrapper-footer .rdc-icon-svg{filter: brightness(0) saturate(100%) invert(57%) sepia(7%) saturate(1153%) hue-rotate(131deg) brightness(93%) contrast(90%);}
body #footer .wrapper-footer .footer-menu-list .rdc-icon-svg{filter: unset;}

body #rdc-footer-menu-list_phone .rdc-footer-menu-list_desc .paragraph{color: var(--color-gray);}
body #rdc-footer-menu-list_calendar .rdc-footer-menu-list_desc .paragraph{color: var(--color-gray);}

body #footer .wrapper-footer #footer-share-icons-social-hashtag{color: var(--color-theme);}
body #footer .bottom-footer-column-center img{width: 42px; max-height: none; height: 27px; border-radius: 2px;}  

/* MOBILE & TABLET */
@media screen and (max-width: 1199px){
    body #footer .footer-left .country-change-footer div:first-of-type > div + div .paragraph:first-of-type{font-size: 14px;} 
    body #footer .wrapper-footer .footer-menu-list .paragraph{font-size: 14px;}
    body #footer .wrapper-footer .footer-menu-list #rdc-footer-menu-list_phone .rdc-footer-menu-list_desc i{font-size: 15px !important;}
    body #footer .wrapper-footer .footer-menu-list #rdc-footer-menu-list_calendar .paragraph{font-size: 15px;}
    body #footer .wrapper-footer .bottom-footer-column.bottom-footer-column-left small{font-size: 14px;}
    body #footer .wrapper-footer .bottom-footer-column.bottom-footer-column-left small a{font-size: 14px;}
	.country-change-footer .footer-shop-country-icon + .paragraph .a{line-height: 146%;}
}

/* DESKTOP */
@media screen and (min-width:1200px){
    .country-change-footer .footer-shop-country-icon + .paragraph .a{font-size: 16px;} 
    body #rdc-footer-menu-list_phone .rdc-footer-menu-list_desc .paragraph{font-size: 15px !important;}
}

/*
 *
 * 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) {
	.rdc-icon-circle {background-size: 24px;}
}
@media screen and (min-width: 768px) {
	.rdc-icon-circle {background-size: 20px;}
}

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='%23333' fill-rule='evenodd' d='M28.5 9.043c0 .277-.113.543-.314.738-.2.196-.473.306-.757.306H4.57c-.284 0-.556-.11-.757-.306a1.03 1.03 0 0 1-.314-.738c0-.276.113-.542.314-.737.2-.196.473-.306.757-.306h22.86c.284 0 .556.11.757.306.201.195.314.46.314.737Zm0 6.957c0 .277-.113.542-.314.738-.2.195-.473.306-.757.306H4.57c-.284 0-.556-.11-.757-.306A1.03 1.03 0 0 1 3.5 16c0-.277.113-.542.314-.738.2-.196.473-.306.757-.306H27.43c.284 0 .556.11.757.306.201.196.314.461.314.738Zm0 6.956c0 .277-.113.543-.314.738-.2.196-.473.306-.757.306H4.57c-.284 0-.556-.11-.757-.306a1.03 1.03 0 0 1-.314-.738c0-.276.113-.542.314-.737.2-.196.473-.306.757-.306h22.86c.284 0 .556.11.757.306.201.195.314.46.314.737Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M7.32 7.32a1.092 1.092 0 0 1 1.544 0l7.636 7.636 7.636-7.636a1.092 1.092 0 0 1 1.544 1.544L18.044 16.5l7.636 7.636a1.092 1.092 0 0 1-1.544 1.544L16.5 18.044 8.864 25.68a1.092 1.092 0 1 1-1.544-1.544l7.636-7.636L7.32 8.864a1.092 1.092 0 0 1 0-1.544Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-share {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M22.666 3A4.334 4.334 0 0 0 18.4 8.099l-6.306 4.416-.09.07a4.334 4.334 0 1 0 0 6.828l.09.072 6.306 4.416a4.35 4.35 0 0 0 .964 3.57 4.333 4.333 0 1 0-.14-5.435l-5.973-4.183c.267-.562.416-1.19.416-1.854 0-.664-.15-1.294-.416-1.855l5.973-4.181A4.333 4.333 0 1 0 22.666 3Zm-2.333 4.333a2.333 2.333 0 1 1 4.666 0 2.333 2.333 0 0 1-4.666 0Zm-11 6.334a2.333 2.333 0 1 0 0 4.666 2.333 2.333 0 0 0 0-4.666Zm13.333 8.666a2.333 2.333 0 1 0 0 4.667 2.333 2.333 0 0 0 0-4.667Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M10.513 6.79c-1.299.174-2.074.505-2.646 1.077-.572.572-.903 1.348-1.078 2.647-.178 1.322-.18 3.06-.18 5.486 0 2.426.002 4.165.18 5.487.175 1.299.506 2.074 1.078 2.646.572.572 1.348.903 2.647 1.078 1.322.178 3.06.18 5.486.18 2.426 0 4.165-.002 5.487-.18 1.299-.175 2.074-.506 2.646-1.078.572-.572.903-1.348 1.078-2.647.178-1.322.18-3.06.18-5.486 0-2.426-.002-4.165-.18-5.487-.175-1.299-.506-2.074-1.078-2.646-.572-.572-1.348-.903-2.647-1.078-1.322-.178-3.06-.18-5.486-.18-2.426 0-4.165.002-5.487.18ZM15.94 5h.122c2.351 0 4.198 0 5.64.194 1.477.198 2.65.614 3.57 1.535.921.92 1.337 2.092 1.535 3.57.194 1.442.194 3.288.194 5.64v.122c0 2.351 0 4.198-.194 5.64-.198 1.477-.614 2.65-1.535 3.57-.92.921-2.093 1.337-3.57 1.535-1.442.194-3.288.194-5.64.194h-.122c-2.351 0-4.198 0-5.64-.194-1.477-.198-2.65-.614-3.57-1.535-.921-.92-1.337-2.093-1.535-3.57C5 20.26 5 18.413 5 16.061v-.122c0-2.351 0-4.198.194-5.64.198-1.477.614-2.65 1.535-3.57.92-.921 2.092-1.337 3.57-1.535C11.74 5 13.587 5 15.939 5Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M18.127 10.93h3.16a.805.805 0 1 1 0 1.61h-3.16a1.234 1.234 0 0 0-1.234 1.225l-.027 3.579h2.23a.805.805 0 1 1 0 1.61h-2.242l-.053 7.169a.805.805 0 0 1-1.61-.012l.053-7.158h-1.302a.805.805 0 1 1 0-1.61h1.315l.026-3.59a2.844 2.844 0 0 1 2.844-2.823Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M10.513 6.79c-1.299.174-2.074.505-2.646 1.077-.572.572-.903 1.348-1.078 2.647-.178 1.322-.18 3.06-.18 5.486 0 2.426.002 4.165.18 5.487.175 1.299.506 2.074 1.078 2.646.572.572 1.348.903 2.647 1.078 1.322.178 3.06.18 5.486.18 2.426 0 4.165-.002 5.487-.18 1.299-.175 2.074-.506 2.646-1.078.572-.572.903-1.348 1.078-2.647.178-1.322.18-3.06.18-5.486 0-2.426-.002-4.165-.18-5.487-.175-1.299-.506-2.074-1.078-2.646-.572-.572-1.348-.903-2.647-1.078-1.322-.178-3.06-.18-5.486-.18-2.426 0-4.165.002-5.487.18ZM15.94 5h.122c2.351 0 4.198 0 5.64.194 1.477.198 2.65.614 3.57 1.535.921.92 1.337 2.092 1.535 3.57.194 1.442.194 3.288.194 5.64v.122c0 2.351 0 4.198-.194 5.64-.198 1.477-.614 2.65-1.535 3.57-.92.921-2.093 1.337-3.57 1.535-1.442.194-3.288.194-5.64.194h-.122c-2.351 0-4.198 0-5.64-.194-1.477-.198-2.65-.614-3.57-1.535-.921-.92-1.337-2.093-1.535-3.57C5 20.26 5 18.413 5 16.061v-.122c0-2.351 0-4.198.194-5.64.198-1.477.614-2.65 1.535-3.57.92-.921 2.092-1.337 3.57-1.535C11.74 5 13.587 5 15.939 5Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M21.095 10.098c0-.445.36-.805.805-.805h.011a.805.805 0 0 1 0 1.61h-.01a.805.805 0 0 1-.806-.805ZM16 11.976a4.025 4.025 0 1 0 0 8.049 4.025 4.025 0 0 0 0-8.05Zm-3.984.04a5.634 5.634 0 1 1 7.968 7.968 5.634 5.634 0 0 1-7.968-7.968Z' 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='%23333' fill-rule='evenodd' d='M8.79 7.395a1.395 1.395 0 1 0 0 2.791 1.395 1.395 0 0 0 0-2.79Zm-1.973-.578a2.79 2.79 0 1 1 3.947 3.947 2.79 2.79 0 0 1-3.947-3.947Zm10.236 6.178c.223.02.466.067.7.204a1.627 1.627 0 0 1 .593.602 4.456 4.456 0 0 1 2.581-.824c2.507 0 5.073 2.133 5.073 4.883v5.153c0 .405 0 .776-.042 1.078-.044.33-.149.679-.435.966v.001c-.288.288-.638.392-.969.437-.3.04-.67.04-1.071.04h-.548c-.403 0-.772 0-1.072-.04-.33-.045-.68-.15-.968-.437-.287-.287-.392-.637-.436-.968-.04-.3-.04-.669-.04-1.072v-4.227c0-.426-.315-.698-.616-.698-.482 0-.74.185-.918.48-.209.347-.327.895-.327 1.613v3.297c0 .403 0 .772-.04 1.073-.045.33-.15.68-.437.967-.287.288-.636.392-.967.437-.3.04-.67.04-1.072.04h-.549c-.402 0-.772 0-1.072-.04-.33-.045-.68-.15-.967-.437-.288-.287-.393-.637-.437-.967-.04-.3-.04-.67-.04-1.073v-7.99c0-.402 0-.772.04-1.072.045-.33.15-.68.437-.967.287-.288.636-.393.967-.437.3-.04.67-.04 1.072-.04h.774l.036-.001h.028c.27 0 .517 0 .723.019Zm-.127 1.39a7.193 7.193 0 0 0-.623-.013h-.768c-.459 0-.732.002-.928.028a.652.652 0 0 0-.164.039l-.003.001-.001.003a.65.65 0 0 0-.039.165c-.026.195-.028.469-.028.927v7.907c0 .458.002.732.028.927a.653.653 0 0 0 .039.165l.001.002.003.002a.658.658 0 0 0 .165.039c.195.026.469.028.927.028H16c.458 0 .732-.002.928-.028a.66.66 0 0 0 .164-.04h.003l.001-.003.004-.01a.653.653 0 0 0 .035-.155c.026-.195.028-.469.028-.927v-3.256c0-.824.127-1.67.527-2.333.43-.715 1.143-1.155 2.113-1.155 1.15 0 2.011.978 2.011 2.093v4.186c0 .458.001.732.028.927.012.09.026.135.034.155l.005.01.001.002.003.002.01.004a.66.66 0 0 0 .154.035c.196.026.47.028.928.028h.464c.458 0 .731-.002.927-.028a.657.657 0 0 0 .156-.035c.004-.002.007-.004.01-.004l.001-.002a.077.077 0 0 0 .006-.011.66.66 0 0 0 .035-.156c.026-.195.028-.469.028-.926V17.86c0-1.874-1.831-3.488-3.677-3.488-1.002 0-1.909.49-2.511 1.281a.698.698 0 0 1-1.253-.422c0-.306 0-.489-.013-.623a.577.577 0 0 0-.02-.124.233.233 0 0 0-.08-.08.571.571 0 0 0-.124-.02Zm.122.018Zm-8.531-1.426h.548c.403 0 .772 0 1.072.04.33.045.68.15.967.437.288.287.393.636.437.967.04.3.04.67.04 1.072v7.99c0 .403 0 .772-.04 1.073-.044.33-.15.68-.437.967-.287.288-.636.392-.967.437-.3.04-.67.04-1.072.04h-.549c-.402 0-.771 0-1.072-.04-.33-.045-.68-.15-.967-.437-.288-.287-.392-.637-.437-.967-.04-.3-.04-.67-.04-1.073v-7.99c0-.402 0-.772.04-1.072.045-.33.15-.68.437-.967.287-.288.637-.393.967-.437.3-.04.67-.04 1.073-.04ZM7.464 14.44Zm0 0-.002.003a.654.654 0 0 0-.039.165c-.026.195-.028.469-.028.927v7.907c0 .458.002.732.028.927a.657.657 0 0 0 .04.165v.002l.003.002a.659.659 0 0 0 .164.039c.196.026.47.028.928.028h.465c.459 0 .732-.002.928-.028a.66.66 0 0 0 .164-.04h.003l.001-.003a.66.66 0 0 0 .039-.165c.027-.195.028-.469.028-.927v-7.907c0-.459-.001-.732-.028-.928a.658.658 0 0 0-.039-.164l-.001-.003-.003-.001a.653.653 0 0 0-.164-.039c-.196-.026-.47-.028-.928-.028h-.465c-.458 0-.732.002-.928.028a.651.651 0 0 0-.164.039l-.002.001Z' 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='%23333' fill-rule='evenodd' d='M12.297 11.43a5.884 5.884 0 1 1 1.882 10.166l-1.56 3.898a.767.767 0 1 1-1.425-.57l4.093-10.232a.768.768 0 0 1 1.426.57l-1.962 4.904a4.348 4.348 0 1 0-2.517-1.991.767.767 0 1 1-1.33.767 5.884 5.884 0 0 1 1.393-7.513Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 6.535a9.465 9.465 0 1 0 0 18.93 9.465 9.465 0 0 0 0-18.93ZM5 16C5 9.925 9.925 5 16 5s11 4.925 11 11-4.925 11-11 11S5 22.075 5 16Z' clip-rule='evenodd'/%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='%23333' d='M16.81 7.25v4.37h4.337v1.873h-4.318l-.006 5.437c0 1.011.052 1.66.158 1.948.164.453.765 1.034 1.878 1.034.864 0 2.03-.262 2.904-.922v2.915c-.729.35-1.406.492-1.997.634-.59.14-1.23.211-1.916.211-.765 0-2.971-.02-3.877-2.35-.163-.42-.245-1.028-.245-1.825v-7.079h-2.49l.011-1.915c.825 0 3.3-.506 3.3-4.332h2.26Zm0-1.25h-2.262c-.683 0-1.237.56-1.237 1.25 0 2.86-1.578 3.081-2.062 3.081-.68 0-1.234.556-1.237 1.243L10 13.49c-.002.332.128.652.36.888a1.237 1.237 0 0 0 .877.368h1.254v5.83c0 .963.108 1.71.33 2.28C13.38 24.29 14.704 26 17.85 26c.78 0 1.52-.082 2.202-.245l.137-.033c.577-.137 1.315-.308 2.107-.689A1.257 1.257 0 0 0 23 23.905V20.99c0-.231-.064-.459-.185-.656a1.242 1.242 0 0 0-1.052-.593 1.23 1.23 0 0 0-.742.249c-.736.557-1.679.673-2.161.673-.495 0-.68-.18-.72-.229-.02-.098-.08-.464-.08-1.503l.005-4.188h3.082c.683 0 1.237-.56 1.237-1.25V11.62c0-.69-.554-1.25-1.237-1.25h-3.1V7.25c0-.69-.554-1.25-1.237-1.25Z'/%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='%23333' fill-rule='evenodd' d='M7.076 7.377A.692.692 0 0 1 7.692 7h4.616a.69.69 0 0 1 .56.287l4.558 6.308 6.392-6.392a.692.692 0 1 1 .98.979l-6.551 6.55 6.622 9.17A.692.692 0 0 1 24.308 25h-4.616a.692.692 0 0 1-.56-.287l-4.558-6.308-6.392 6.392a.692.692 0 1 1-.98-.979l6.551-6.55-6.622-9.17a.692.692 0 0 1-.055-.72Zm8.145 9.558 4.825 6.68h2.908l-6.175-8.55-4.825-6.68H9.046l6.175 8.55Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.322 14.117c.135.558.273 1.131.421 1.698.308 1.181.662 1.826.964 2.15.264.284.458.3.614.276.225-.036.53-.197.88-.518a5.44 5.44 0 0 0 .884-1.082c.64-1.108.914-1.88.988-2.406.071-.505-.046-.736-.147-.857-.123-.149-.34-.276-.694-.384a6.903 6.903 0 0 0-.714-.167c-.133-.027-.272-.054-.424-.088a.795.795 0 0 1-.554-.447.745.745 0 0 1 .044-.693c.553-.912 1.866-2.113 3.358-2.849 1.482-.73 3.447-1.138 5.055.09.646.493.923 1.219.987 1.97.064.744-.07 1.586-.323 2.45-.506 1.736-1.538 3.746-2.777 5.627-1.241 1.884-2.722 3.686-4.162 4.996-.718.654-1.448 1.205-2.151 1.58-.67.356-1.406.6-2.123.523-1.223-.017-2.155-.625-2.844-1.47-.682-.837-1.169-1.948-1.546-3.098-.381-1.16-.672-2.424-.931-3.6l-.105-.477c-.22-1.005-.42-1.916-.642-2.662-.213-.713-.477-.92-.61-.982-.134-.061-.355-.077-.72.073a3.936 3.936 0 0 1-2.124.254c-.723-.125-1.446-.507-1.84-1.262a.75.75 0 0 1 .19-.928C6.428 10.028 8.115 8.9 9.472 8.37c1.391-.545 2.59-.51 3.534.251.838.676 1.307 1.816 1.667 3.002.224.738.431 1.597.648 2.494Zm-9.33-1.666c1.784-1.44 3.103-2.268 4.085-2.652 1.066-.417 1.571-.26 1.899.004.432.349.798 1.067 1.157 2.252.215.707.402 1.484.608 2.34.136.564.28 1.162.446 1.796.334 1.28.769 2.206 1.323 2.803.592.636 1.32.889 2.074.768.684-.109 1.274-.508 1.726-.924a6.988 6.988 0 0 0 1.17-1.435c.691-1.192 1.071-2.161 1.183-2.961.116-.823-.049-1.505-.483-2.028-.413-.496-.985-.745-1.462-.89l-.02-.007a8.149 8.149 0 0 1 1.976-1.394c1.28-.631 2.463-.733 3.325-.075.187.143.344.403.386.888.042.492-.044 1.136-.27 1.909-.448 1.54-1.395 3.408-2.586 5.216-1.19 1.804-2.59 3.5-3.91 4.701-.661.602-1.28 1.06-1.825 1.35-.56.298-.949.37-1.186.338a.83.83 0 0 0-.108-.007c-.623 0-1.146-.282-1.634-.88-.504-.618-.92-1.52-1.278-2.61-.355-1.08-.632-2.278-.891-3.454-.035-.157-.07-.313-.103-.47-.219-.997-.432-1.97-.671-2.775-.277-.928-.746-1.62-1.461-1.949-.716-.329-1.459-.194-2.043.046a2.28 2.28 0 0 1-1.209.155 1.423 1.423 0 0 1-.217-.055Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.326 12.223c-1.094-.659-2.326.238-2.326 1.434v4.686c0 1.196 1.232 2.093 2.326 1.434l3.888-2.344c1.048-.632 1.048-2.234 0-2.867l-3.887-2.343Zm-1.09 1.434c0-.167.078-.284.172-.343a.26.26 0 0 1 .29-.005l3.887 2.344a.391.391 0 0 1 .18.347.402.402 0 0 1-.18.347l-3.887 2.343a.26.26 0 0 1-.29-.004.393.393 0 0 1-.173-.343v-4.686Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M14.058 6h-.116c-2.363 0-4.214 0-5.659.194-1.478.199-2.644.614-3.56 1.53-.916.915-1.33 2.081-1.529 3.56C3 12.728 3 12.58 3 14.942v.116c0 2.363 0 4.214.194 5.659.199 1.478.614 2.644 1.53 3.56.915.916 2.081 1.33 3.56 1.529C9.728 26 11.58 26 13.942 26h.116c2.363 0 8.214 0 9.659-.194 1.478-.199 2.644-.614 3.56-1.53.916-.915 1.33-2.081 1.529-3.56C29 19.272 29 17.42 29 15.058v-.116c0-2.363 0-2.214-.194-3.659-.199-1.478-.614-2.644-1.53-3.56-.915-.916-2.081-1.33-3.56-1.529C22.272 6 16.42 6 14.058 6Zm-8.25 2.809c.584-.583 1.372-.918 2.68-1.094 1.331-.178 3.079-.18 5.512-.18 2.433 0 8.181.002 9.511.18 1.309.176 2.098.512 2.681 1.094.582.583.917 1.371 1.093 2.68.178 1.33.18 1.078.18 3.511s-.002 4.181-.18 5.511c-.176 1.309-.512 2.098-1.094 2.681-.583.582-1.371.917-2.68 1.093-1.33.178-7.078.18-9.511.18-2.433 0-4.181-.002-5.511-.18-1.309-.176-2.098-.512-2.681-1.094-.582-.583-.917-1.371-1.093-2.68-.178-1.33-.18-3.078-.18-5.511 0-2.433.002-2.181.18-3.511.176-1.309.512-2.097 1.094-2.68Z' 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='%23333' fill-rule='evenodd' d='M16 5.674A10.326 10.326 0 0 0 5.674 16c0 1.653.389 3.214 1.078 4.597.276.556.383 1.219.208 1.872l-.665 2.484a.614.614 0 0 0 .751.752l2.486-.665a2.657 2.657 0 0 1 1.871.208A10.27 10.27 0 0 0 16 26.326a10.326 10.326 0 0 0 0-20.652ZM4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12a11.96 11.96 0 0 1-5.344-1.253 1.005 1.005 0 0 0-.692-.089l-2.485.664c-1.7.456-3.257-1.1-2.801-2.801l.665-2.485a1 1 0 0 0-.09-.692A11.944 11.944 0 0 1 4 16Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M14.137 11.141c-.451-.807-1.662-.993-2.494-.16-.583.582-.963 1.225-.987 1.875-.05 1.306.274 3.581 2.59 5.898 2.316 2.317 4.592 2.64 5.897 2.59.65-.024 1.294-.404 1.877-.987.832-.832.647-2.043-.161-2.493l-.875-.49c-.544-.303-1.31-.199-1.846.338-.052.052-.388.365-.983.394-.61.03-1.347-.244-2.181-1.079-.836-.835-1.11-1.573-1.08-2.183.029-.595.342-.93.394-.983.537-.537.64-1.301.337-1.845l-.488-.875Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M14.137 11.141c-.451-.807-1.662-.993-2.494-.16-.583.582-.963 1.225-.987 1.875-.05 1.306.274 3.581 2.59 5.898 2.316 2.317 4.592 2.64 5.897 2.59.65-.024 1.294-.404 1.877-.987.832-.832.647-2.043-.161-2.493l-.875-.49c-.544-.303-1.31-.199-1.846.338-.052.052-.388.365-.983.394-.61.03-1.347-.244-2.181-1.079-.836-.835-1.11-1.573-1.08-2.183.029-.595.342-.93.394-.983.537-.537.64-1.301.337-1.845l-.488-.875Z'/%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='%23333' fill-rule='evenodd' d='M16 5.674A10.326 10.326 0 0 0 5.674 16c0 1.653.389 3.214 1.078 4.597.276.556.383 1.219.208 1.872l-.665 2.484a.614.614 0 0 0 .751.752l2.486-.665a2.657 2.657 0 0 1 1.871.208A10.27 10.27 0 0 0 16 26.326a10.326 10.326 0 0 0 0-20.652ZM4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12a11.96 11.96 0 0 1-5.344-1.253 1.005 1.005 0 0 0-.692-.089l-2.485.664c-1.7.456-3.257-1.1-2.801-2.801l.665-2.485a1 1 0 0 0-.09-.692A11.944 11.944 0 0 1 4 16Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M21.718 13.19a.843.843 0 0 1 .1 1.152l-2.082 2.613-.034.043c-.304.381-.58.727-.833.971-.27.26-.636.53-1.13.53-.493 0-.86-.27-1.13-.53-.253-.245-.53-.592-.834-.973l-.033-.041-.687-.862c-.345-.434-.557-.696-.726-.859a1.323 1.323 0 0 0-.068-.062 1.282 1.282 0 0 0-.069.062c-.169.163-.38.425-.727.86l-2.081 2.611a.76.76 0 0 1-1.102.106.844.844 0 0 1-.1-1.153l2.082-2.613.034-.043c.304-.381.58-.727.833-.971.27-.26.636-.53 1.13-.53.492 0 .86.27 1.129.53.255.246.533.594.839.978l.029.036.687.862c.346.434.556.696.726.86.027.026.05.046.068.061a1.26 1.26 0 0 0 .069-.062c.169-.163.38-.425.727-.859l2.081-2.613a.76.76 0 0 1 1.102-.104Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-em {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16.996 5h-.135c-2.58 0-6.464 0-8.046.21-1.621.215-2.908.665-3.918 1.663-1.01.997-1.466 2.267-1.684 3.868C3 12.303 3 12.47 3 15.017v.133c0 2.547 0 4.548.213 6.11.218 1.6.673 2.87 1.684 3.867 1.01.998 2.297 1.448 3.918 1.663 1.583.21 5.466.21 8.046.21h.135c2.58 0 4.607 0 6.189-.21 1.621-.215 2.908-.665 3.918-1.663 1.01-.997 1.466-2.267 1.684-3.868.213-1.562.213-3.563.213-6.11v-.132c0-2.547 0-2.715-.213-4.277-.218-1.6-.673-2.87-1.684-3.867-1.01-.998-2.297-1.448-3.918-1.663C21.602 5 19.575 5 16.995 5ZM6.146 8.106c.628-.62 1.479-.979 2.904-1.168 1.451-.192 5.216-.194 7.879-.194 2.661 0 4.57.002 6.02.194 1.426.19 2.277.548 2.905 1.168.628.62.99 1.46 1.183 2.867.195 1.432.196 1.482.196 4.11s-.001 4.511-.197 5.944c-.191 1.407-.555 2.248-1.182 2.867-.628.62-1.479.979-2.904 1.168-1.451.192-3.359.194-6.021.194s-6.427-.002-7.878-.194c-1.426-.19-2.277-.548-2.905-1.168-.628-.62-.99-1.46-1.183-2.867-.195-1.432-.196-3.315-.196-5.944 0-2.627.001-2.677.196-4.11.192-1.407.555-2.248 1.183-2.867Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M3.76 9.582a.85.85 0 0 1 1.158-.322l9.04 5.11a4.15 4.15 0 0 0 4.084 0l9.04-5.11a.85.85 0 1 1 .836 1.48l-9.04 5.11a5.85 5.85 0 0 1-5.757 0l-9.04-5.11a.85.85 0 0 1-.321-1.158Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16 5.674C10.297 5.674 5.674 10.297 5.674 16S10.297 26.326 16 26.326 26.326 21.703 26.326 16 21.703 5.674 16 5.674ZM4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M10.093 11.777a13.714 13.714 0 0 1 5.349-1.08c2.866 0 5.527.878 7.727 2.379a.837.837 0 0 1-.943 1.383 11.994 11.994 0 0 0-6.784-2.087 12.02 12.02 0 0 0-4.697.948.837.837 0 1 1-.652-1.543Zm4.79 4.502c-1.274 0-2.497.207-3.64.591a.837.837 0 1 1-.533-1.587 13.064 13.064 0 0 1 4.174-.678c2.412 0 4.674.652 6.617 1.789a.837.837 0 1 1-.846 1.445 11.391 11.391 0 0 0-5.771-1.56Zm-2.862 2.613a10.929 10.929 0 0 1 7.854.829.837.837 0 1 1-.765 1.489 9.254 9.254 0 0 0-6.65-.701.837.837 0 1 1-.439-1.617Z' 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='%23333' fill-rule='evenodd' d='M10.513 6.79c-1.299.174-2.074.505-2.646 1.077-.572.572-.903 1.348-1.078 2.647-.178 1.322-.18 3.06-.18 5.486 0 2.426.002 4.165.18 5.487.175 1.299.506 2.074 1.078 2.646.572.572 1.348.903 2.647 1.078 1.322.178 3.06.18 5.486.18 2.426 0 4.165-.002 5.487-.18 1.299-.175 2.074-.506 2.646-1.078.572-.572.903-1.348 1.078-2.647.178-1.322.18-3.06.18-5.486 0-2.426-.002-4.165-.18-5.487-.175-1.299-.506-2.074-1.078-2.646-.572-.572-1.348-.903-2.647-1.078-1.322-.178-3.06-.18-5.486-.18-2.426 0-4.165.002-5.487.18ZM15.94 5h.122c2.351 0 4.198 0 5.64.194 1.477.198 2.65.614 3.57 1.535.921.92 1.337 2.092 1.535 3.57.194 1.442.194 3.288.194 5.64v.122c0 2.351 0 4.198-.194 5.64-.198 1.477-.614 2.65-1.535 3.57-.92.921-2.093 1.337-3.57 1.535-1.442.194-3.288.194-5.64.194h-.122c-2.351 0-4.198 0-5.64-.194-1.477-.198-2.65-.614-3.57-1.535-.921-.92-1.337-2.093-1.535-3.57C5 20.26 5 18.413 5 16.061v-.122c0-2.351 0-4.198.194-5.64.198-1.477.614-2.65 1.535-3.57.92-.921 2.092-1.337 3.57-1.535C11.74 5 13.587 5 15.939 5Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='m18.609 9.537-.805.024.805-.024.008.3.004.118c.059.31.24.778.654 1.25.543.621 1.46 1.21 2.897 1.337a.805.805 0 1 1-.142 1.604c-1.43-.127-2.535-.624-3.34-1.278l.008.43c.036 2.034.058 4.431-.006 5.781a4.55 4.55 0 0 1-2.88 4.042c-1.6.626-3.537.318-5-1.294l-.014-.015c-.382-.444-.848-1.207-1.084-2.13-.24-.936-.25-2.081.36-3.21 1.212-2.244 3.65-2.46 4.69-2.313a.805.805 0 1 1-.225 1.594c-.72-.102-2.296.091-3.05 1.485-.373.69-.38 1.402-.215 2.046.167.652.5 1.192.737 1.47 1.007 1.103 2.231 1.253 3.214.868a2.94 2.94 0 0 0 1.859-2.619c.06-1.288.04-3.632.004-5.677a343.339 343.339 0 0 0-.073-3.218 2.427 2.427 0 0 1-.009-.654.805.805 0 0 1 1.603.082Z' clip-rule='evenodd'/%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='%23333' d='M16.322 4.775a.924.924 0 0 1 1.06-.763c.031.006.131.025.184.037.106.023.25.06.433.112.366.107.877.283 1.49.562 1.226.563 2.857 1.546 4.55 3.24 1.694 1.693 2.678 3.324 3.24 4.551.28.612.456 1.123.563 1.488.053.185.1.372.139.56l.006.037a.942.942 0 0 1-.76 1.082.923.923 0 0 1-1.058-.76l-.017-.083a4.954 4.954 0 0 0-.083-.32 9.108 9.108 0 0 0-.467-1.235c-.48-1.046-1.343-2.492-2.869-4.014-1.522-1.524-2.967-2.388-4.015-2.868a9.11 9.11 0 0 0-1.234-.468 7.41 7.41 0 0 0-.392-.098.936.936 0 0 1-.77-1.059'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16.6 9.021a.923.923 0 0 1 1.14-.634h.005l.003.003.01.002.025.008a2.6 2.6 0 0 1 .287.11c.18.076.424.195.726.372.603.357 1.424.95 2.39 1.915.966.966 1.559 1.789 1.916 2.392.178.3.296.545.374.726.04.094.076.19.108.287l.009.024.002.009v.004l.001.002a.926.926 0 0 1-.628 1.136.924.924 0 0 1-1.143-.614l-.004-.014-.043-.108a4.926 4.926 0 0 0-.266-.512c-.274-.464-.769-1.164-1.63-2.026-.862-.861-1.564-1.357-2.027-1.632a4.763 4.763 0 0 0-.62-.307l-.014-.005A.923.923 0 0 1 16.6 9.02ZM6.163 7.885c2.068-2.067 5.559-1.91 6.999.67l.799 1.431c.939 1.685.539 3.81-.837 5.204a.775.775 0 0 0-.128.414c-.016.315.096 1.044 1.227 2.174 1.13 1.13 1.859 1.243 2.175 1.227a.776.776 0 0 0 .415-.126c1.392-1.378 3.519-1.778 5.203-.837l1.431.798c2.58 1.44 2.738 4.93.67 6.997-1.107 1.106-2.576 2.089-4.306 2.154-2.56.098-6.814-.563-11.026-4.775-4.211-4.212-4.874-8.464-4.776-11.026.065-1.727 1.048-3.2 2.154-4.305Zm5.386 1.57c-.738-1.321-2.72-1.625-4.08-.264-.954.954-1.576 2.006-1.615 3.07-.081 2.135.447 5.858 4.237 9.649 3.79 3.79 7.514 4.318 9.65 4.236 1.062-.039 2.117-.66 3.07-1.614 1.361-1.362 1.059-3.342-.263-4.08l-1.432-.8c-.89-.495-2.142-.325-3.02.552-.086.086-.635.598-1.608.645-.997.05-2.205-.399-3.57-1.765-1.367-1.366-1.816-2.573-1.766-3.572.046-.973.56-1.522.645-1.607.879-.879 1.047-2.13.551-3.02l-.799-1.43Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M15.5 5c-2.14 0-4.193.835-5.706 2.323A7.862 7.862 0 0 0 7.43 12.93v.72c0 .714-.215 1.41-.617 2.004l-1.194 1.763c-1.39 2.047-.33 4.828 2.085 5.475.786.21 1.58.389 2.378.535l.002.005c.8 2.1 2.94 3.568 5.415 3.568 2.476 0 4.616-1.468 5.417-3.568l.002-.005a30.64 30.64 0 0 0 2.378-.535c2.415-.647 3.474-3.428 2.085-5.475l-1.195-1.763a3.568 3.568 0 0 1-.617-2.003v-.72c0-2.104-.85-4.121-2.364-5.608A8.142 8.142 0 0 0 15.5 5Zm3.515 18.712a30.196 30.196 0 0 1-7.032 0c.74 1.045 2.029 1.753 3.516 1.753 1.488 0 2.775-.708 3.516-1.753ZM8.992 12.93a6.34 6.34 0 0 1 1.906-4.522 6.566 6.566 0 0 1 4.601-1.873c1.726 0 3.382.674 4.602 1.873a6.34 6.34 0 0 1 1.906 4.522v.72c0 1.017.306 2.01.88 2.856l1.195 1.763a2.044 2.044 0 0 1 .22 1.872 2.065 2.065 0 0 1-.552.803 2.121 2.121 0 0 1-.865.467 28.546 28.546 0 0 1-14.772 0 2.115 2.115 0 0 1-.864-.467 2.066 2.066 0 0 1-.553-.802 2.034 2.034 0 0 1 .22-1.872l1.197-1.764a5.084 5.084 0 0 0 .879-2.855v-.72Z' clip-rule='evenodd'/%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' fill-rule='evenodd' d='M15.667 5.341a10.326 10.326 0 1 0 0 20.652 10.326 10.326 0 0 0 0-20.652Zm-12 10.326c0-6.627 5.373-12 12-12s12 5.373 12 12-5.373 12-12 12-12-5.373-12-12Zm12-3.744c-.693 0-1.256.562-1.256 1.256a.837.837 0 1 1-1.674 0 2.93 2.93 0 1 1 4.42 2.522c-.193.11-.369.249-.519.412-.114.134-.134.224-.134.275v1.395a.837.837 0 0 1-1.674 0v-1.395c0-.565.248-1.023.532-1.359.281-.331.632-.585.943-.769a1.255 1.255 0 0 0-.638-2.337Zm0 10.325a1.116 1.116 0 1 0 0-2.232 1.116 1.116 0 0 0 0 2.232Z' clip-rule='evenodd'/%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='M16.592 22.173a.837.837 0 0 1-1.43-.592v-6.697a.837.837 0 1 1 1.675 0v6.697a.837.837 0 0 1-.245.592Zm.198-11.428a1.116 1.116 0 1 0-1.58 1.58 1.116 1.116 0 0 0 1.58-1.58Z'/%3E%3Cpath fill='%231890FF' fill-rule='evenodd' d='M16 4C9.373 4 4 9.373 4 16s5.373 12 12 12 12-5.373 12-12S22.627 4 16 4ZM8.699 8.699A10.326 10.326 0 1 1 23.3 23.3 10.326 10.326 0 0 1 8.7 8.7Z' clip-rule='evenodd'/%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='M20.692 13.53a.835.835 0 0 1-.194.27l-5.581 5.582a.837.837 0 0 1-1.183 0L11.5 17.15a.837.837 0 0 1 1.184-1.183l1.64 1.64 4.99-4.99a.836.836 0 0 1 1.377.912Z'/%3E%3Cpath fill='%233F9C35' fill-rule='evenodd' d='M4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Zm4.699-7.301A10.326 10.326 0 1 0 23.3 23.3 10.326 10.326 0 0 0 8.7 8.7Z' clip-rule='evenodd'/%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='%23B21A1D' d='M13.215 12.393a.838.838 0 0 1 .586.225L16 14.817l2.199-2.2a.835.835 0 0 1 1.388.258.837.837 0 0 1-.205.926L17.182 16l2.2 2.2a.838.838 0 0 1-1.183 1.182l-2.2-2.199-2.198 2.2a.838.838 0 1 1-1.184-1.184l2.2-2.199-2.2-2.2a.837.837 0 0 1 .598-1.407Z'/%3E%3Cpath fill='%23B21A1D' fill-rule='evenodd' d='M4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Zm4.699-7.301A10.326 10.326 0 1 0 23.3 23.3 10.326 10.326 0 0 0 8.7 8.7Z' 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='M17.118 11.115a.866.866 0 0 0-1.234 0 .891.891 0 0 0-.255.625v5.898c0 .234.092.46.255.625a.866.866 0 0 0 1.234 0 .891.891 0 0 0 .255-.625V11.74a.891.891 0 0 0-.255-.625Zm.205 10.895a1.155 1.155 0 0 1-1.644 0 1.188 1.188 0 0 1 0-1.668 1.154 1.154 0 0 1 1.644 0 1.188 1.188 0 0 1 0 1.668Z'/%3E%3Cpath fill='%23FAAD14' fill-rule='evenodd' d='M16.5 4c-1.742 0-3.063 1.02-4.31 2.626-1.225 1.579-2.524 3.915-4.185 6.905l-.532.956c-1.362 2.45-2.438 4.386-3.004 5.943-.583 1.6-.721 3.055.16 4.337.855 1.245 2.282 1.753 4.082 1.994 1.791.239 4.202.239 7.295.239h.988c3.092 0 5.504 0 7.296-.24 1.8-.24 3.227-.748 4.081-1.993.882-1.282.742-2.735.16-4.337-.567-1.559-1.646-3.501-3.012-5.958l-.539-.968c-1.655-2.977-2.949-5.303-4.17-6.878C19.563 5.02 18.241 4 16.5 4ZM9.483 14.474c1.711-3.079 2.946-5.295 4.079-6.754 1.122-1.445 1.993-1.95 2.938-1.95.946 0 1.817.506 2.939 1.95 1.132 1.46 2.367 3.675 4.079 6.754l.423.76c1.425 2.565 2.438 4.393 2.955 5.81.509 1.398.438 2.14.044 2.712-.419.609-1.206 1.027-2.877 1.25-1.666.222-3.962.225-7.14.225h-.845c-3.179 0-5.474-.003-7.14-.224-1.672-.224-2.459-.642-2.879-1.25-.393-.574-.462-1.315.047-2.713.515-1.417 1.528-3.245 2.954-5.81l.423-.76Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M9.253 9.253a.862.862 0 0 1 1.219 0L16.5 15.28l6.028-6.028a.862.862 0 0 1 1.22 1.219l-6.03 6.029 6.028 6.028a.862.862 0 0 1-1.219 1.22l-6.027-6.03-6.028 6.028a.862.862 0 1 1-1.22-1.219l6.029-6.028-6.028-6.028a.862.862 0 0 1 0-1.22Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M14.582 5h3.836c.247 0 .461 0 .663.032a2.563 2.563 0 0 1 1.862 1.334c.095.18.162.383.24.614l.127.378.034.096a1.425 1.425 0 0 0 1.4.93h3.405a.86.86 0 0 1 .602.248.843.843 0 0 1-.602 1.445H6.85a.854.854 0 0 1-.602-.248.844.844 0 0 1 .602-1.444h3.508a1.43 1.43 0 0 0 .836-.296 1.41 1.41 0 0 0 .495-.731l.128-.378c.077-.231.144-.433.238-.614a2.544 2.544 0 0 1 1.863-1.334C14.12 5 14.335 5 14.58 5m-1.479 3.385c.08-.156.146-.317.2-.483l.113-.339c.103-.308.127-.37.15-.415a.847.847 0 0 1 .622-.446c.148-.013.296-.016.445-.01h3.734c.327 0 .395.003.445.012a.854.854 0 0 1 .621.444c.024.045.048.107.151.416l.114.339.044.126c.044.124.096.242.154.356h-6.793Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M9.593 11.995a.844.844 0 0 0-.29-.58.855.855 0 0 0-1.2.079.843.843 0 0 0-.21.614l.527 7.843c.097 1.446.175 2.615.359 3.534.192.953.516 1.75 1.188 2.373.672.624 1.493.895 2.463 1.02.934.122 2.112.122 3.572.122H17c1.458 0 2.637 0 3.57-.122.97-.125 1.792-.395 2.464-1.02.67-.624.995-1.421 1.187-2.373.184-.918.261-2.088.359-3.534l.527-7.843a.843.843 0 0 0-.21-.614.854.854 0 0 0-1.49.5l-.522 7.785c-.102 1.52-.175 2.578-.334 3.374-.155.773-.37 1.181-.68 1.47-.312.289-.736.476-1.522.578-.81.104-1.876.107-3.41.107h-.878c-1.533 0-2.6-.003-3.41-.107-.786-.102-1.21-.29-1.521-.578-.31-.289-.526-.697-.681-1.47-.16-.796-.232-1.854-.334-3.375l-.522-7.783Z'/%3E%3Cpath fill='%23333' d='M13.577 14.03a.855.855 0 0 1 .624.187.845.845 0 0 1 .308.57l.567 5.641a.843.843 0 0 1-.196.607.853.853 0 0 1-1.497-.438l-.568-5.64a.842.842 0 0 1 .188-.62.853.853 0 0 1 .574-.307Zm5.846 0a.849.849 0 0 1 .762.926l-.568 5.64a.845.845 0 0 1-.314.555.855.855 0 0 1-1.182-.117.843.843 0 0 1-.197-.606l.567-5.64a.845.845 0 0 1 .308-.57c.174-.143.4-.21.624-.188Z'/%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='%23333' fill-rule='evenodd' d='M15.947 7h1.448a.698.698 0 1 1 0 1.395H16c-2.212 0-3.8.002-5.01.164-1.19.16-1.907.465-2.437.994-.53.53-.834 1.247-.994 2.437-.162 1.21-.164 2.798-.164 5.01 0 2.212.002 3.8.164 5.01.16 1.19.465 1.907.994 2.437.53.53 1.247.834 2.437.994 1.21.162 2.798.164 5.01.164 2.212 0 3.8-.002 5.01-.164 1.19-.16 1.907-.465 2.437-.994.53-.53.834-1.247.994-2.437.162-1.21.164-2.798.164-5.01v-1.395a.698.698 0 0 1 1.395 0v1.448c0 2.148 0 3.83-.177 5.144-.18 1.344-.558 2.404-1.39 3.236-.832.833-1.892 1.21-3.237 1.39-1.312.177-2.995.177-5.143.177h-.106c-2.148 0-3.83 0-5.144-.177-1.343-.18-2.404-.558-3.236-1.39-.833-.832-1.21-1.892-1.39-3.237C6 20.884 6 19.201 6 17.053v-.106c0-2.148 0-3.83.177-5.144.18-1.344.558-2.404 1.39-3.236.832-.833 1.893-1.21 3.237-1.39C12.116 7 13.799 7 15.947 7Zm4.49.954a3.259 3.259 0 0 1 4.609 4.608l-6.185 6.185c-.345.344-.562.562-.802.75a4.931 4.931 0 0 1-.919.567c-.276.131-.567.228-1.03.383l-2.702.9a1.388 1.388 0 0 1-1.755-1.755l.9-2.703c.155-.463.252-.753.383-1.03.156-.326.345-.632.567-.918.188-.242.405-.457.75-.802l6.184-6.185Zm3.622.986a1.863 1.863 0 0 0-2.635 0l-.35.351a3.602 3.602 0 0 0 .953 1.68 3.628 3.628 0 0 0 1.682.955l.35-.35a1.863 1.863 0 0 0 0-2.636Zm-1.45 4.086a5.023 5.023 0 0 1-1.568-1.066 5.022 5.022 0 0 1-1.066-1.568l-4.702 4.701c-.388.388-.54.541-.67.707a3.723 3.723 0 0 0-.407.66c-.09.19-.16.394-.334.914l-.4 1.205.96.96 1.204-.401c.521-.174.725-.243.915-.333.234-.112.454-.248.66-.409.165-.129.318-.28.706-.668l4.702-4.702Z' clip-rule='evenodd'/%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='%236A9191' fill-rule='evenodd' d='M22.575 21.422c-.429-.38-.694.15-1.075.578-.38.428-.732.592-.304.973l6.624 6a1.037 1.037 0 0 0 1.378-1.55l-6.623-6Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M15 4C8.925 4 4 8.925 4 15s4.925 11 11 11 11-4.925 11-11S21.075 4 15 4ZM5.96 15a9.04 9.04 0 1 1 18.08 0 9.04 9.04 0 0 1-18.08 0Z' 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='%236A9191' fill-rule='evenodd' d='M15.357 7.995a.897.897 0 0 1 1.283 0l2.419 2.457a.932.932 0 0 1 0 1.304.897.897 0 0 1-1.283 0l-2.419-2.458a.932.932 0 0 1 0-1.303Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M3 13.114c0 3.276 1.342 5.776 3.104 7.79 1.412 1.615 3.14 2.968 4.665 4.161.344.27.678.53.995.784.62.497 1.285 1.025 1.959 1.426.673.4 1.443.725 2.277.725.834 0 1.604-.326 2.277-.725.675-.4 1.339-.93 1.96-1.426.32-.257.659-.522 1.008-.795 1.521-1.191 3.244-2.539 4.65-4.15C27.659 18.89 29 16.39 29 13.114c0-3.333-1.856-6.223-4.535-7.468-2.538-1.18-5.67-.822-8.465 1.72-2.795-2.542-5.927-2.899-8.465-1.72C4.857 6.891 3 9.781 3 13.114Zm12.645-3.622a.906.906 0 0 1-.298-.208c-2.489-2.628-5.108-2.867-7.058-1.962-2.006.933-3.475 3.15-3.475 5.792 0 2.701 1.088 4.782 2.646 6.566 1.285 1.47 2.841 2.69 4.359 3.878.36.282.717.562 1.068.844.636.51 1.204.957 1.751 1.281.547.326.987.474 1.362.474.375 0 .814-.15 1.362-.474.548-.324 1.115-.771 1.75-1.281.352-.282.71-.562 1.07-.844 1.517-1.189 3.073-2.407 4.358-3.878 1.558-1.784 2.646-3.865 2.646-6.566 0-2.643-1.47-4.859-3.476-5.792-1.949-.905-4.568-.664-7.057 1.962a.906.906 0 0 1-.653.282.895.895 0 0 1-.355-.074Z' clip-rule='evenodd'/%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='%236A9191' d='M10.938 24.979C7.288 22.077 3 18.669 3 12.762 3 6.24 10.5 3.408 15.218 8.99l2.6 2.68c.185.177.43.274.682.27a.96.96 0 0 0 .672-.295c.179-.184.257-.284.262-.544a1.03 1.03 0 0 0-.262-.704L16 7.25c6-5.237 13-.472 13 5.512 0 5.907-4.287 9.315-7.938 12.217-.381.3-.752.598-1.113.89C18.6 26.966 17.3 28 16 28c-1.3 0-2.6-1.033-3.95-2.132-.36-.292-.732-.588-1.112-.89Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-cart: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='%23333' fill-rule='evenodd' d='M16.547 4h-1.096c-2.058 0-3.695 0-5 .166-1.345.171-2.454.53-3.396 1.336-.941.806-1.489 1.862-1.9 3.19-.398 1.286-.699 2.938-1.078 5.013l-.03.163c-.535 2.94-.957 5.258-1.034 7.085-.08 1.872.192 3.422 1.217 4.694 1.026 1.271 2.456 1.83 4.257 2.095 1.757.258 4.046.258 6.95.258h1.127c2.904 0 5.193 0 6.95-.258 1.802-.265 3.232-.824 4.257-2.095 1.026-1.273 1.296-2.823 1.216-4.694-.078-1.821-.497-4.13-1.03-7.057l-.035-.191c-.378-2.075-.68-3.727-1.078-5.012-.41-1.33-.958-2.385-1.9-3.19v-.001c-.941-.806-2.05-1.165-3.396-1.336C20.244 4 18.606 4 16.548 4ZM6.027 14.167c.394-2.165.675-3.697 1.032-4.85.59-1.909 1.706-2.864 3.638-3.11 1.167-.148 2.681-.15 4.821-.15h.962c2.141 0 3.655.002 4.823.15 1.139.145 1.827.418 2.364.876v.002c.538.46.925 1.105 1.273 2.232.357 1.153.638 2.684 1.033 4.85.553 3.041.947 5.213 1.018 6.876.07 1.633-.185 2.58-.758 3.29-.572.71-1.428 1.142-3 1.373-1.6.234-3.747.237-6.752.237h-.961c-3.005 0-5.151-.003-6.75-.238-1.573-.23-2.43-.662-3.002-1.372-.573-.711-.828-1.657-.759-3.29.07-1.663.464-3.835 1.017-6.876Z' clip-rule='evenodd'/%3E%3Cpath fill='%236A9191' fill-rule='evenodd' d='M11.898 9.545a.992.992 0 0 1 1.275.628 3.08 3.08 0 0 0 1.096 1.493 2.94 2.94 0 0 0 1.732.567 2.94 2.94 0 0 0 1.732-.567 3.08 3.08 0 0 0 1.096-1.493.992.992 0 0 1 1.275-.628c.52.19.793.777.61 1.312a5.131 5.131 0 0 1-1.827 2.488 4.9 4.9 0 0 1-2.886.945 4.9 4.9 0 0 1-2.886-.945 5.131 5.131 0 0 1-1.826-2.488 1.036 1.036 0 0 1 .61-1.312Z' clip-rule='evenodd'/%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,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%236A9191' fill-rule='evenodd' d='M15.451 4h1.096c2.059 0 3.697 0 5 .166 1.346.171 2.456.53 3.398 1.336h-.001c.942.806 1.49 1.862 1.9 3.19.398 1.286.7 2.938 1.078 5.013l.035.19c.532 2.928.952 5.237 1.03 7.058.08 1.87-.19 3.421-1.216 4.694-1.025 1.271-2.455 1.83-4.257 2.095-1.757.258-4.046.258-6.95.258h-1.127c-2.904 0-5.193 0-6.95-.258-1.801-.265-3.23-.824-4.257-2.095-1.025-1.272-1.296-2.822-1.217-4.694.077-1.827.5-4.144 1.035-7.085l.03-.163c.378-2.075.68-3.727 1.077-5.012.411-1.33.959-2.385 1.9-3.19v-.001c.942-.806 2.051-1.165 3.397-1.336C11.756 4 13.393 4 15.452 4Zm-2.278 6.172a.992.992 0 0 0-1.275-.628c-.52.19-.793.777-.61 1.312a5.131 5.131 0 0 0 1.827 2.488A4.9 4.9 0 0 0 16 14.29a4.9 4.9 0 0 0 2.886-.945 5.131 5.131 0 0 0 1.826-2.488 1.037 1.037 0 0 0-.61-1.312.992.992 0 0 0-1.274.628 3.08 3.08 0 0 1-1.096 1.493 2.94 2.94 0 0 1-1.732.567 2.94 2.94 0 0 1-1.732-.567 3.08 3.08 0 0 1-1.096-1.493Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-cart-add {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%236A9191' fill-rule='evenodd' d='M15.451 4h1.096c2.059 0 3.697 0 5 .166 1.346.171 2.456.53 3.398 1.336h-.001c.942.806 1.49 1.862 1.9 3.19.398 1.286.7 2.938 1.078 5.013l.035.19c.532 2.928.952 5.237 1.03 7.058.08 1.87-.19 3.421-1.216 4.694-1.025 1.271-2.455 1.83-4.257 2.095-1.757.258-4.046.258-6.95.258h-1.127c-2.904 0-5.193 0-6.95-.258-1.801-.265-3.23-.824-4.257-2.095-1.025-1.272-1.296-2.822-1.217-4.694.077-1.827.5-4.144 1.035-7.085l.03-.163c.378-2.075.68-3.727 1.077-5.012.411-1.33.959-2.385 1.9-3.19v-.001c.942-.806 2.051-1.165 3.397-1.336C11.756 4 13.393 4 15.452 4Zm4.317 11.64a1 1 0 0 0-1.536-1.28l-2.647 3.176-.892-.857a1 1 0 1 0-1.386 1.442l1.667 1.6a1 1 0 0 0 1.46-.08l3.334-4Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.014 6.26a.869.869 0 0 1-.017 1.21l-3.107 3.097h11.277c.22 0 .433.09.589.25a.872.872 0 0 1 .244.606.868.868 0 0 1-.244.605.822.822 0 0 1-.59.251H11.89l3.108 3.097a.855.855 0 0 1 .272.607.88.88 0 0 1-.235.622.832.832 0 0 1-.599.26.813.813 0 0 1-.598-.26l-4.584-4.568a.86.86 0 0 1-.252-.614.877.877 0 0 1 .252-.614l4.584-4.568a.821.821 0 0 1 1.177.019Zm2.972 9.134a.821.821 0 0 1 1.178-.018l4.583 4.567a.858.858 0 0 1 .252.614.877.877 0 0 1-.252.615l-4.584 4.567a.833.833 0 0 1-.598.261.815.815 0 0 1-.599-.26.86.86 0 0 1-.235-.623.877.877 0 0 1 .272-.607l3.107-3.096H9.833a.822.822 0 0 1-.589-.251.868.868 0 0 1-.244-.606.87.87 0 0 1 .244-.605.822.822 0 0 1 .59-.25H21.11l-3.108-3.098a.869.869 0 0 1-.018-1.21Z' clip-rule='evenodd'/%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='%23333' d='M16.75 16c0-.168.048-.333.139-.473.09-.14.219-.25.37-.316a.811.811 0 0 1 .904.174l4.584 4.572a.86.86 0 0 1 .252.615.878.878 0 0 1-.252.615l-4.584 4.571a.812.812 0 0 1-.905.174.84.84 0 0 1-.37-.315.874.874 0 0 1-.138-.474V21.43H8.833a.822.822 0 0 1-.589-.251.87.87 0 0 1-.244-.606.87.87 0 0 1 .244-.606.822.822 0 0 1 .59-.252h7.916V16Zm-2.5-9.143a.874.874 0 0 0-.139-.474.839.839 0 0 0-.37-.315.812.812 0 0 0-.904.174l-4.583 4.571a.859.859 0 0 0-.253.615.879.879 0 0 0 .253.615l4.583 4.572a.811.811 0 0 0 .905.174.838.838 0 0 0 .37-.316.874.874 0 0 0 .138-.473v-3.714h7.917c.22 0 .433-.09.589-.252a.87.87 0 0 0 .244-.606.87.87 0 0 0-.244-.606.822.822 0 0 0-.59-.25H14.25V6.856Z'/%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='%23333' fill-rule='evenodd' d='M8.234 7.95a11.186 11.186 0 0 0 8.226 19.228c-.249-1.103-.283-2.586.475-4.014.789-1.486 2.421-2.13 3.622-2.426a11.13 11.13 0 0 1 2.295-.307h.052c2.023-.022 2.934-.68 3.418-1.306.413-.537.568-1.073.727-1.616l.06-.208a11.15 11.15 0 0 0-3.129-9.138l-.032.12c-.197.719-.514 1.454-.86 1.979-.31.47-.91.943-1.408 1.301-.35.245-.715.471-1.09.677-.276.16-.524.303-.762.46-.523.346-.926.717-1.198 1.277a.81.81 0 0 0-.043.592c.09.33.152.7.152 1.075.003.785-.396 1.423-.91 1.836a2.902 2.902 0 0 1-1.84.636c-2.968-.032-4.794-2.442-5.035-5.122-.096-1.066-.563-2.144-1.153-3.086A10.634 10.634 0 0 0 8.234 7.95Zm1.41-1.158a12.662 12.662 0 0 1 1.694 2.152c.675 1.076 1.292 2.433 1.423 3.886.181 2.032 1.467 3.452 3.248 3.471.247.001.487-.081.68-.234.177-.142.238-.29.237-.419 0-.189-.032-.397-.087-.598a2.612 2.612 0 0 1 .158-1.865c.466-.96 1.156-1.554 1.83-2 .29-.19.59-.362.86-.52l.108-.06c.309-.179.58-.338.826-.516.521-.375.851-.674.952-.827.221-.334.469-.888.626-1.46.125-.452.159-.8.148-1.016a11.125 11.125 0 0 0-6.348-1.972 11.124 11.124 0 0 0-6.354 1.978ZM28.915 17.5c.057-.492.085-.992.086-1.5 0-7.18-5.82-13-13-13C8.822 3 3 8.82 3 16s5.82 13 13 13c6.602 0 12.056-4.923 12.889-11.3a3.57 3.57 0 0 1 .058-.188l-.033-.012Zm-3.354 4.313c-.721.264-1.59.421-2.635.432h-.038l-.109.003a9.31 9.31 0 0 0-1.786.252c-1.09.267-2.047.75-2.453 1.514-.552 1.039-.472 2.168-.266 2.941a11.198 11.198 0 0 0 7.287-5.142Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-tracking {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M7.349 12.11C7.349 7.575 11.279 4 16 4c4.72 0 8.651 3.575 8.651 8.11 0 4.253-2.638 9.248-6.893 11.067a4.488 4.488 0 0 1-3.516 0c-4.255-1.819-6.893-6.813-6.893-11.067ZM16 5.674c-3.91 0-6.977 2.936-6.977 6.436 0 3.715 2.35 8.02 5.877 9.527a2.823 2.823 0 0 0 2.2 0c3.527-1.507 5.877-5.812 5.877-9.527 0-3.499-3.067-6.436-6.977-6.436Zm0 5.582a1.395 1.395 0 1 0 0 2.79 1.395 1.395 0 0 0 0-2.79Zm-3.07 1.395a3.07 3.07 0 1 1 6.14 0 3.07 3.07 0 0 1-6.14 0Zm-6.312 6.695a.837.837 0 0 1-.058 1.182c-.634.573-.886 1.123-.886 1.612 0 .852.809 1.903 2.777 2.788 1.888.85 4.557 1.398 7.549 1.398s5.66-.547 7.55-1.398c1.967-.885 2.776-1.936 2.776-2.788 0-.49-.252-1.039-.886-1.612a.837.837 0 1 1 1.124-1.242c.852.772 1.436 1.738 1.436 2.854 0 1.922-1.691 3.382-3.763 4.315C22.086 27.423 19.173 28 16 28c-3.172 0-6.086-.577-8.237-1.545C5.691 25.522 4 24.062 4 22.14c0-1.116.584-2.082 1.436-2.854a.838.838 0 0 1 1.182.06Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16.837 5.077c-2.421 0-4.384 2.015-4.384 4.5s1.963 4.5 4.384 4.5c2.422 0 4.384-2.015 4.384-4.5s-1.962-4.5-4.384-4.5Zm-6.407 4.5C10.43 5.945 13.299 3 16.837 3c3.54 0 6.408 2.945 6.408 6.577s-2.869 6.577-6.408 6.577c-3.538 0-6.407-2.945-6.407-6.577Z' clip-rule='evenodd'/%3E%3Cpath fill='%236A9191' fill-rule='evenodd' d='M9.707 20.914c-1.714.866-2.481 1.912-2.481 2.856 0 .943.767 1.99 2.481 2.856 1.683.85 4.082 1.407 6.793 1.407 2.71 0 5.11-.557 6.793-1.407 1.714-.866 2.481-1.913 2.481-2.856 0-.944-.767-1.99-2.481-2.856-1.683-.85-4.082-1.407-6.793-1.407-2.71 0-5.11.557-6.793 1.407Zm-1.104-1.709c2.077-1.048 4.87-1.666 7.897-1.666 3.026 0 5.82.618 7.897 1.666C26.442 20.24 28 21.816 28 23.77c0 1.954-1.558 3.531-3.603 4.564-2.076 1.05-4.87 1.667-7.897 1.667-3.026 0-5.82-.618-7.897-1.667C6.558 27.301 5 25.724 5 23.77c0-1.954 1.558-3.532 3.603-4.564Z' clip-rule='evenodd'/%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='%236A9191' fill-rule='evenodd' d='M10.43 9.577C10.43 5.945 13.299 3 16.837 3c3.54 0 6.408 2.945 6.408 6.577s-2.869 6.577-6.408 6.577c-3.538 0-6.407-2.945-6.407-6.577Z' clip-rule='evenodd'/%3E%3Cpath fill='%236A9191' d='M8.603 19.206c2.077-1.05 4.87-1.667 7.897-1.667 3.026 0 5.82.618 7.897 1.666C26.442 20.24 28 21.816 28 23.77c0 1.954-1.558 3.531-3.603 4.564-2.076 1.05-4.87 1.667-7.897 1.667-3.026 0-5.82-.618-7.897-1.667C6.558 27.301 5 25.724 5 23.77c0-1.954 1.558-3.532 3.603-4.564Z'/%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='%23333' d='M7.798 17.116a.866.866 0 0 1 0-1.232l2.359-2.326a.892.892 0 0 1 1.229.021.866.866 0 0 1 .021 1.212l-.85.837h8.481c.235 0 .46.092.626.255a.866.866 0 0 1 0 1.234.891.891 0 0 1-.626.255h-8.48l.85.837a.873.873 0 0 1 .28.623.863.863 0 0 1-.258.632.886.886 0 0 1-.641.255.895.895 0 0 1-.632-.277l-2.359-2.326Z'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M17.794 4h1.31c1.613 0 2.913 0 3.935.136 1.062.14 1.956.442 2.666 1.14.71.7 1.014 1.582 1.158 2.629.137 1.008.137 2.29.137 3.88v9.43c0 1.59 0 2.872-.137 3.88-.142 1.047-.448 1.928-1.158 2.628-.71.7-1.604 1-2.666 1.142-1.022.135-2.323.135-3.936.135h-1.309c-1.612 0-2.913 0-3.936-.135-1.061-.142-1.955-.442-2.665-1.142-.47-.465-.764-1.009-.95-1.63-1.122-.001-2.057-.014-2.814-.114-.901-.12-1.682-.378-2.306-.993-.624-.615-.886-1.384-1.007-2.273C4 21.864 4 20.787 4 19.469V13.53c0-1.317 0-2.393.116-3.244.121-.887.383-1.657 1.007-2.272.624-.615 1.403-.873 2.306-.993.757-.1 1.692-.113 2.814-.114.186-.62.48-1.166.95-1.63.71-.7 1.605-1 2.666-1.14C14.881 4 16.182 4 17.794 4M9.9 22.32c.005.75.016 1.424.059 2.029-.984-.004-1.715-.021-2.294-.098-.706-.093-1.05-.26-1.29-.498-.241-.237-.411-.576-.506-1.272-.097-.72-.1-1.678-.1-3.073v-5.814c0-1.395.003-2.354.1-3.073.095-.696.265-1.035.505-1.272.24-.238.585-.405 1.29-.498.58-.077 1.311-.093 2.296-.098a31.7 31.7 0 0 0-.06 2.03.865.865 0 0 0 .256.617.89.89 0 0 0 1.25.007.866.866 0 0 0 .263-.615c.007-1.271.04-2.172.167-2.857.124-.658.321-1.041.608-1.324.327-.322.785-.53 1.651-.646.89-.117 2.071-.12 3.764-.12h1.18c1.693 0 2.874.003 3.764.12.866.115 1.324.326 1.652.646.325.323.538.774.654 1.628.12.877.122 2.042.122 3.71v9.303c0 1.669-.001 2.833-.122 3.712-.117.853-.329 1.304-.656 1.627-.326.322-.784.53-1.65.646-.89.117-2.07.12-3.765.12H17.86c-1.693 0-2.873-.003-3.765-.12-.864-.115-1.323-.325-1.65-.646-.287-.284-.484-.666-.608-1.324-.127-.685-.16-1.586-.167-2.857a.862.862 0 0 0-.262-.615.886.886 0 0 0-.627-.252.895.895 0 0 0-.624.259.871.871 0 0 0-.256.618Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.252 11.283a1.16 1.16 0 0 1 1.519 0l8.825 7.644a1.168 1.168 0 0 1 .347 1.246 1.17 1.17 0 0 1-1.016.805 1.159 1.159 0 0 1-.85-.28l-8.066-6.988-8.063 6.983a1.16 1.16 0 0 1-1.894-.509 1.173 1.173 0 0 1 .375-1.259l8.823-7.642Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16.748 20.717a1.16 1.16 0 0 1-1.519 0l-8.825-7.644a1.168 1.168 0 0 1-.347-1.246 1.17 1.17 0 0 1 1.016-.805 1.159 1.159 0 0 1 .85.28l8.066 6.988 8.063-6.983a1.16 1.16 0 0 1 1.894.509 1.174 1.174 0 0 1-.376 1.259l-8.822 7.642Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M11.283 16.748a1.16 1.16 0 0 1 0-1.519l7.644-8.825a1.168 1.168 0 0 1 1.246-.347 1.17 1.17 0 0 1 .805 1.016 1.159 1.159 0 0 1-.28.85l-6.988 8.066 6.983 8.063a1.16 1.16 0 0 1-.509 1.894 1.174 1.174 0 0 1-1.259-.376l-7.642-8.822Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M20.717 15.252a1.16 1.16 0 0 1 0 1.519l-7.644 8.825a1.168 1.168 0 0 1-1.246.347 1.17 1.17 0 0 1-.805-1.016 1.159 1.159 0 0 1 .28-.85l6.988-8.066-6.983-8.063a1.16 1.16 0 0 1 .509-1.894 1.173 1.173 0 0 1 1.259.375l7.642 8.823Z' clip-rule='evenodd'/%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='%23333' d='m16.476 11.205 8.267 8.289c.516.517.203 1.506-.476 1.506H7.733c-.68 0-.992-.988-.476-1.506l8.267-8.29A.643.643 0 0 1 16 11a.659.659 0 0 1 .476.205Z'/%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='%23333' d='m15.524 20.795-8.267-8.289C6.74 11.99 7.054 11 7.733 11h16.534c.68 0 .992.988.476 1.507l-8.267 8.288A.643.643 0 0 1 16 21a.659.659 0 0 1-.476-.205Z'/%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='%23333' d='m11.205 15.524 8.289-8.267C20.01 6.74 21 7.054 21 7.733v16.534c0 .68-.988.992-1.506.476l-8.29-8.267A.643.643 0 0 1 11 16a.659.659 0 0 1 .205-.476Z'/%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='%23333' d='m20.795 16.476-8.289 8.267c-.517.516-1.506.203-1.506-.476V7.733c0-.68.988-.992 1.507-.476l8.288 8.267A.643.643 0 0 1 21 16a.659.659 0 0 1-.205.476Z'/%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='%23333' fill-rule='evenodd' d='M10.283 16.748a1.16 1.16 0 0 1 0-1.519l7.644-8.825a1.168 1.168 0 0 1 1.246-.347 1.17 1.17 0 0 1 .805 1.016 1.159 1.159 0 0 1-.28.85l-6.988 8.066 6.983 8.063a1.16 1.16 0 0 1-.509 1.894 1.174 1.174 0 0 1-1.259-.376l-7.642-8.822Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M21.717 15.252a1.16 1.16 0 0 1 0 1.519l-7.644 8.825a1.168 1.168 0 0 1-1.246.347 1.17 1.17 0 0 1-.805-1.016 1.159 1.159 0 0 1 .28-.85l6.988-8.066-6.983-8.063a1.16 1.16 0 0 1 .509-1.894 1.173 1.173 0 0 1 1.259.375l7.642 8.823Z' clip-rule='evenodd'/%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%3Cpath fill='%23333' fill-rule='evenodd' d='M16 28.047a12.047 12.047 0 1 0 0-24.094 12.047 12.047 0 0 0 0 24.094ZM30 16c0 7.732-6.268 14-14 14S2 23.732 2 16 8.268 2 16 2s14 6.268 14 14Zm-9.403 1.667a.977.977 0 0 1-1.38 0L16 14.45l-3.217 3.217a.979.979 0 0 1-1.405.025.977.977 0 0 1 .025-1.405l3.907-3.907a.977.977 0 0 1 1.38 0l3.907 3.906a.977.977 0 0 1 0 1.381Z' clip-rule='evenodd'/%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%3Cpath fill='%23333' fill-rule='evenodd' d='M16 3.953a12.047 12.047 0 1 0 0 24.094 12.047 12.047 0 0 0 0-24.094ZM2 16C2 8.268 8.268 2 16 2s14 6.268 14 14-6.268 14-14 14S2 23.732 2 16Zm9.403-1.667a.977.977 0 0 1 1.38 0L16 17.55l3.217-3.217a.979.979 0 0 1 1.405-.025.977.977 0 0 1-.025 1.405l-3.907 3.908a.977.977 0 0 1-1.38 0l-3.907-3.907a.977.977 0 0 1 0-1.381Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M6 19a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm0-6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16 6a1 1 0 0 1 1 1v8h8a1 1 0 1 1 0 2h-8v8a1 1 0 1 1-2 0v-8H7a1 1 0 1 1 0-2h8V7a1 1 0 0 1 1-1Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M6 16a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16 5.674A10.326 10.326 0 0 0 5.674 16c0 1.653.389 3.214 1.078 4.597.276.556.383 1.219.208 1.872l-.665 2.484a.614.614 0 0 0 .751.752l2.486-.665a2.657 2.657 0 0 1 1.871.208A10.27 10.27 0 0 0 16 26.326a10.326 10.326 0 0 0 0-20.652ZM4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12a11.96 11.96 0 0 1-5.344-1.253 1.005 1.005 0 0 0-.692-.089l-2.485.664c-1.7.456-3.257-1.1-2.801-2.801l.665-2.485a1 1 0 0 0-.09-.692A11.944 11.944 0 0 1 4 16Zm6.698-1.674a.837.837 0 0 1 .837-.838h8.93a.837.837 0 1 1 0 1.675h-8.93a.837.837 0 0 1-.837-.837Zm0 3.907a.837.837 0 0 1 .837-.838h6.14a.837.837 0 0 1 0 1.675h-6.14a.837.837 0 0 1-.837-.837Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M23.784 7.65c-1.144-1.156-2.775-1.581-4.37-1.133a.854.854 0 0 1-.918-.272.833.833 0 0 1 .455-1.337c2.184-.616 4.46-.028 6.041 1.571a.837.837 0 0 1 .25.597.828.828 0 0 1-.254.595.847.847 0 0 1-.932.168.846.846 0 0 1-.273-.189Zm-8.703-.685c-.24-.41-.945-.659-1.659-.253-.712.401-.838 1.112-.6 1.514l2.848 4.836a.832.832 0 0 1-.608 1.278.854.854 0 0 1-.852-.435L11.36 9.07l-.949-1.612c-.241-.41-.945-.658-1.659-.253-.712.402-.838 1.113-.6 1.515l4.272 7.252a.833.833 0 0 1-.616 1.251.855.855 0 0 1-.845-.407l-1.9-3.224c-.24-.41-.943-.659-1.658-.253-.712.401-.838 1.111-.6 1.514l4.272 7.252c1.815 3.08 6.293 4.08 10.09 1.931 3.794-2.146 5.143-6.433 3.333-9.506l-2.85-4.835c-.24-.41-.944-.658-1.658-.254-.713.403-.837 1.113-.6 1.515l1.9 3.223a.833.833 0 0 1-.312 1.15c-1.74.982-2.273 2.885-1.512 4.178a.832.832 0 0 1-.304 1.145.853.853 0 0 1-1.157-.301c-1.196-2.028-.442-4.535 1.424-6.002l-4.35-7.384Zm3.08 1.9-1.617-2.742c-.807-1.37-2.62-1.623-3.96-.864-.408.23-.76.545-1.03.926-.901-.984-2.455-1.103-3.64-.433-1.343.76-2.034 2.435-1.222 3.813l1.13 1.918a3.296 3.296 0 0 0-1.255.402c-1.344.76-2.035 2.436-1.223 3.813l4.273 7.252c2.38 4.041 7.967 5.044 12.39 2.54 4.426-2.502 6.34-7.756 3.955-11.803l-2.85-4.833c-.808-1.371-2.62-1.623-3.96-.865a3.21 3.21 0 0 0-.994.876M7.44 23.208a.851.851 0 0 1 1.157.302c.932 1.582 2.357 2.779 4.116 3.556a.83.83 0 0 1 .427 1.106.854.854 0 0 1-1.118.423c-2.042-.903-3.756-2.322-4.887-4.241a.832.832 0 0 1 .305-1.146Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M23.594 5.862c-1.337.239-3.14.838-5.67 1.68L12.197 9.45c-2.034.68-3.507 1.172-4.549 1.614-1.088.463-1.474.785-1.6 1.001a2.148 2.148 0 0 0 0 2.155c.126.216.512.539 1.6 1.002 1.042.442 2.515.934 4.549 1.612l.096.032c.434.144.792.263 1.105.427l6.083-6.016a.878.878 0 1 1 1.234 1.249l-6.057 5.99c.19.333.318.717.476 1.191l.032.096c.678 2.034 1.17 3.507 1.611 4.548.464 1.088.787 1.475 1.003 1.6a2.148 2.148 0 0 0 2.155 0c.216-.125.538-.512 1-1.6.443-1.04.936-2.514 1.613-4.548l1.909-5.728c.843-2.529 1.442-4.331 1.68-5.668.24-1.344.057-1.915-.286-2.258-.343-.343-.914-.526-2.257-.286m-.308-1.728c1.489-.265 2.83-.204 3.806.774.979.977 1.039 2.317.774 3.805-.263 1.48-.905 3.406-1.718 5.842L24.2 20.402c-.66 1.983-1.174 3.523-1.648 4.637-.457 1.075-.965 1.984-1.735 2.432a3.897 3.897 0 0 1-3.92 0c-.77-.448-1.277-1.357-1.735-2.432-.474-1.114-.987-2.654-1.649-4.637l-.013-.044c-.232-.693-.302-.882-.403-1.032a1.602 1.602 0 0 0-.422-.422c-.149-.1-.339-.172-1.034-.403l-.042-.013c-1.983-.662-3.523-1.175-4.637-1.65-1.075-.457-1.984-.964-2.432-1.734a3.897 3.897 0 0 1 0-3.92c.448-.77 1.357-1.278 2.432-1.735 1.114-.474 2.654-.987 4.638-1.648l5.845-1.948c2.437-.813 4.362-1.455 5.842-1.718' clip-rule='evenodd'/%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%3Cpath fill='%23F3F1EE' d='M16 2C8.265 2 2 8.265 2 16s6.265 14 14 14 14-6.265 14-14S23.735 2 16 2Z' opacity='.4'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M14.795 10.15c-1.73-1.021-3.679.368-3.679 2.22v7.26c0 1.852 1.949 3.241 3.68 2.22l6.146-3.63c1.658-.979 1.658-3.461 0-4.44l-6.147-3.63Zm-1.725 2.22c0-.257.125-.438.273-.53a.417.417 0 0 1 .459-.007l6.147 3.63a.613.613 0 0 1 .284.537.613.613 0 0 1-.284.538l-6.147 3.63a.416.416 0 0 1-.46-.007.61.61 0 0 1-.272-.531v-7.26Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 2C8.268 2 2 8.268 2 16s6.268 14 14 14 14-6.268 14-14S23.732 2 16 2ZM3.953 16a12.047 12.047 0 1 1 24.094 0 12.047 12.047 0 0 1-24.094 0Z' clip-rule='evenodd'/%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%3Cpath fill='%23F3F1EE' d='M16 2C8.265 2 2 8.265 2 16s6.265 14 14 14 14-6.265 14-14S23.735 2 16 2Z' opacity='.4'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 3.953a12.047 12.047 0 1 0 0 24.094 12.047 12.047 0 0 0 0-24.094ZM2 16C2 8.268 8.268 2 16 2s14 6.268 14 14-6.268 14-14 14S2 23.732 2 16Zm10.716-6.186h.057c.279 0 .534 0 .75.014.232.016.486.052.745.16A2.284 2.284 0 0 1 15.5 11.22c.107.26.144.514.16.745.013.215.013.472.013.75v6.57c0 .278 0 .533-.014.75a2.327 2.327 0 0 1-.159.744 2.279 2.279 0 0 1-1.233 1.234c-.26.107-.513.143-.745.159-.215.014-.471.014-.75.014h-.057c-.28 0-.534 0-.75-.014a2.342 2.342 0 0 1-.745-.16 2.279 2.279 0 0 1-1.234-1.233 2.344 2.344 0 0 1-.159-.744c-.014-.215-.014-.472-.014-.75v-6.57c0-.278 0-.533.014-.75.016-.231.052-.485.16-.745a2.28 2.28 0 0 1 1.232-1.233c.26-.107.514-.143.745-.159.215-.014.472-.014.75-.014Zm-.752 1.98a.326.326 0 0 0-.17.17 1.29 1.29 0 0 0-.016.134c-.01.215-.014.43-.01.646v6.512c0 .316 0 .505.01.646a.793.793 0 0 0 .015.134.326.326 0 0 0 .171.17c.044.007.09.013.134.016.14.01.33.01.646.01.317 0 .505 0 .646-.01.045-.003.09-.008.134-.016a.326.326 0 0 0 .17-.17c.007-.045.013-.09.016-.134.01-.14.01-.33.01-.646v-6.512c0-.316 0-.505-.01-.646a1.314 1.314 0 0 0-.015-.134.326.326 0 0 0-.17-.17 1.288 1.288 0 0 0-.135-.016 10.38 10.38 0 0 0-.646-.01c-.316 0-.505 0-.646.01-.045.003-.09.008-.134.015Zm7.263-1.98h.058c.278 0 .533 0 .75.014.231.016.485.052.744.16a2.28 2.28 0 0 1 1.234 1.232c.107.26.143.514.159.745.014.215.014.472.014.75v6.57c0 .278 0 .533-.014.75a2.327 2.327 0 0 1-.16.744 2.279 2.279 0 0 1-1.233 1.234 2.331 2.331 0 0 1-.744.159c-.215.014-.472.014-.75.014h-.058c-.279 0-.534 0-.75-.014a2.342 2.342 0 0 1-.745-.16A2.279 2.279 0 0 1 16.5 20.78a2.345 2.345 0 0 1-.16-.744c-.013-.215-.013-.472-.013-.75v-6.57c0-.278 0-.533.014-.75.015-.231.052-.485.159-.745a2.279 2.279 0 0 1 1.233-1.233c.26-.107.513-.143.745-.159.215-.014.471-.014.75-.014Zm-.751 1.98a.326.326 0 0 0-.17.17c-.008.044-.013.09-.017.134-.01.215-.013.43-.01.646v6.512c0 .316 0 .505.01.646a.793.793 0 0 0 .016.134.326.326 0 0 0 .17.17c.045.007.09.013.135.016.14.01.33.01.646.01s.505 0 .646-.01c.045-.003.09-.008.134-.016a.326.326 0 0 0 .17-.17 1.29 1.29 0 0 0 .016-.134c.01-.14.01-.33.01-.646v-6.512c0-.316 0-.505-.01-.646a1.286 1.286 0 0 0-.016-.134.326.326 0 0 0-.17-.17 1.29 1.29 0 0 0-.134-.016 9.931 9.931 0 0 0-.646-.01c-.317 0-.506 0-.646.01-.045.003-.09.008-.134.015Z' clip-rule='evenodd'/%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='%23333' d='M22.314 18c.308 0 .604-.12.822-.335a1.133 1.133 0 0 0 0-1.616 1.173 1.173 0 0 0-1.645 0 1.133 1.133 0 0 0 0 1.616c.218.215.514.335.823.335Zm0 4.571c.308 0 .604-.12.822-.334a1.133 1.133 0 0 0 0-1.617 1.173 1.173 0 0 0-1.645 0 1.133 1.133 0 0 0 0 1.617c.218.214.514.334.823.334Zm-4.652-5.714c0 .303-.122.594-.34.808a1.173 1.173 0 0 1-1.645 0 1.133 1.133 0 0 1 0-1.616 1.173 1.173 0 0 1 1.645 0c.218.214.34.505.34.808Zm0 4.572c0 .303-.122.593-.34.808a1.173 1.173 0 0 1-1.645 0 1.133 1.133 0 0 1 0-1.617 1.173 1.173 0 0 1 1.645 0c.218.215.34.505.34.809ZM10.685 18c.309 0 .604-.12.822-.335a1.129 1.129 0 0 0 .001-1.616 1.173 1.173 0 0 0-1.645 0 1.133 1.133 0 0 0 0 1.616c.218.215.514.335.822.335Zm0 4.571c.309 0 .604-.12.822-.334a1.133 1.133 0 0 0 0-1.617 1.173 1.173 0 0 0-1.644 0 1.133 1.133 0 0 0 0 1.616c.218.215.514.335.822.335Z'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M10.685 4a.88.88 0 0 1 .617.251.85.85 0 0 1 .255.606v.872c.77-.015 1.618-.015 2.55-.015h4.783c.934 0 1.782 0 2.552.015v-.872a.85.85 0 0 1 .255-.606.88.88 0 0 1 1.233 0 .85.85 0 0 1 .256.606v.945c.302.023.589.052.86.087 1.362.18 2.466.56 3.337 1.415.87.856 1.255 1.94 1.44 3.28C29 11.887 29 13.55 29 15.65v2.414c0 2.1 0 3.765-.178 5.066-.184 1.34-.57 2.424-1.44 3.28-.87.855-1.974 1.235-3.337 1.415C22.72 28 21.027 28 18.89 28h-4.78c-2.137 0-3.83 0-5.155-.175-1.363-.18-2.467-.56-3.337-1.415-.87-.856-1.256-1.94-1.44-3.28C4 21.827 4 20.165 4 18.064V15.65c0-2.1 0-3.764.178-5.066.184-1.34.57-2.424 1.44-3.28.87-.855 1.974-1.234 3.337-1.415.271-.035.558-.064.86-.087v-.945a.85.85 0 0 1 .254-.606.88.88 0 0 1 .616-.251Zm-1.5 3.589c-1.169.154-1.843.444-2.335.928-.492.483-.787 1.146-.944 2.294-.026.195-.049.4-.068.616H27.16a12.737 12.737 0 0 0-.067-.617c-.157-1.148-.452-1.811-.944-2.295-.492-.483-1.167-.773-2.337-.928-1.194-.157-2.77-.16-4.987-.16h-4.651c-2.218 0-3.792.004-4.989.162Zm-3.442 8.125c0-.976 0-1.825.015-2.571h21.483c.015.746.015 1.595.015 2.571V18c0 2.18-.003 3.728-.163 4.903-.157 1.148-.452 1.811-.944 2.295-.492.483-1.167.773-2.337.928-1.194.157-2.77.16-4.987.16h-4.651c-2.218 0-3.792-.003-4.989-.16-1.169-.155-1.843-.445-2.335-.928-.492-.484-.787-1.147-.944-2.296-.16-1.174-.163-2.723-.163-4.902v-2.286Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M27.507 6.352a1.42 1.42 0 0 1 .138 2.015L12.547 25.511a1.442 1.442 0 0 1-1.085.489 1.452 1.452 0 0 1-1.086-.49l-6.04-6.857a1.42 1.42 0 0 1 .158-1.993 1.45 1.45 0 0 1 2.014.115l4.954 5.625L25.474 6.49a1.446 1.446 0 0 1 2.033-.138Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M17.222 23.968c-.501.501-.951.952-1.365 1.34h10.297a.846.846 0 1 1 0 1.692H12.615c-.02 0-.041 0-.062-.002-.793-.03-1.466-.374-2.128-.878-.663-.505-1.403-1.245-2.308-2.152l-.086-.085c-.905-.905-1.646-1.645-2.151-2.308-.528-.693-.88-1.4-.88-2.244 0-.844.352-1.552.88-2.244.505-.663 1.246-1.403 2.151-2.309l6.747-6.747c.906-.905 1.646-1.646 2.309-2.151.692-.528 1.398-.88 2.245-.88.843 0 1.55.352 2.242.88.664.505 1.404 1.246 2.309 2.151l.085.086c.907.905 1.647 1.645 2.152 2.308.528.693.88 1.4.88 2.244 0 .844-.352 1.552-.88 2.245-.505.662-1.245 1.402-2.152 2.308l-6.746 6.746ZM15.932 9.27c.96-.959 1.62-1.616 2.181-2.044.542-.414.891-.534 1.219-.534.325 0 .674.12 1.217.534.56.429 1.222 1.085 2.18 2.044.96.96 1.617 1.62 2.046 2.181.413.543.533.891.533 1.218 0 .327-.12.676-.534 1.218-.429.562-1.085 1.222-2.044 2.18l-4.732 4.731-6.796-6.796 4.73-4.732ZM12.67 25.308c.327 0 .676-.12 1.218-.534.562-.429 1.222-1.085 2.18-2.044l.734-.735-6.796-6.797-.734.733c-.959.96-1.617 1.62-2.045 2.182-.414.542-.534.891-.534 1.219 0 .325.12.674.534 1.217.429.56 1.085 1.222 2.044 2.18.96.96 1.62 1.617 2.181 2.046.543.413.891.533 1.218.533Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-download {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' d='M16.682 21.546a.924.924 0 0 1-1.362 0l-4.923-5.385a.923.923 0 0 1 1.362-1.245l3.318 3.63V4.924a.923.923 0 0 1 1.846 0v13.622l3.32-3.63a.924.924 0 1 1 1.362 1.246l-4.923 5.385Z'/%3E%3Cpath fill='%23333' d='M5.846 19.692a.923.923 0 0 0-1.846 0v.068c0 1.682 0 3.04.144 4.107.148 1.108.468 2.04 1.207 2.782.741.74 1.674 1.058 2.782 1.208C9.2 28 10.558 28 12.24 28h7.52c1.682 0 3.04 0 4.107-.143 1.108-.15 2.04-.467 2.782-1.208.74-.741 1.058-1.674 1.208-2.782C28 22.8 28 21.442 28 19.76v-.068a.923.923 0 0 0-1.846 0c0 1.767-.003 2.998-.127 3.929-.122.903-.345 1.38-.684 1.722-.341.34-.819.562-1.723.684-.93.124-2.162.127-3.928.127h-7.384c-1.767 0-3-.003-3.929-.127-.903-.122-1.38-.345-1.722-.684-.34-.341-.562-.819-.684-1.723-.124-.93-.127-2.162-.127-3.928Z'/%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' fill-rule='evenodd' d='M13.528 3.492C14.147 2.682 14.914 2 16 2s1.852.682 2.473 1.492c.61.797 1.257 1.958 2.047 3.376l.468.837c.51.917.642 1.113.806 1.238.156.118.36.186 1.354.411l.912.206c1.531.346 2.793.632 3.71.994.954.376 1.789.93 2.11 1.962.318 1.023-.038 1.963-.59 2.84-.537.852-1.394 1.855-2.441 3.08l-.619.722c-.673.787-.814.98-.88 1.192-.066.217-.061.469.042 1.517l.092.961c.16 1.636.288 2.97.242 3.985-.045 1.036-.28 2.028-1.133 2.677-.87.659-1.881.586-2.858.304-.947-.27-2.127-.814-3.559-1.474l-.854-.393c-.935-.43-1.134-.499-1.322-.499-.188 0-.387.069-1.322.499l-.853.393c-1.433.66-2.613 1.203-3.56 1.474-.977.28-1.989.354-2.857-.305-.854-.648-1.089-1.64-1.134-2.674-.046-1.016.083-2.351.242-3.986l.094-.962c.101-1.05.106-1.3.039-1.517-.065-.213-.206-.404-.88-1.192l-.618-.723c-1.046-1.224-1.903-2.227-2.439-3.078-.553-.878-.91-1.818-.593-2.84.322-1.033 1.157-1.587 2.11-1.963.918-.362 2.18-.648 3.711-.994l.082-.018.829-.188c.995-.225 1.198-.293 1.355-.413.164-.123.296-.319.808-1.236l.466-.837c.79-1.42 1.438-2.579 2.047-3.376' clip-rule='evenodd'/%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)' fill-rule='evenodd' d='M13.528 3.493C14.147 2.683 14.914 2 16 2s1.852.682 2.473 1.493c.61.797 1.257 1.957 2.047 3.375l.468.838c.51.916.642 1.112.806 1.237.156.118.36.186 1.354.411l.912.206c1.531.347 2.793.632 3.71.994.954.376 1.789.93 2.11 1.962.318 1.023-.038 1.963-.59 2.84-.537.853-1.394 1.855-2.441 3.08l-.619.722c-.673.787-.814.98-.88 1.192-.066.217-.061.469.042 1.517l.092.961c.16 1.636.288 2.97.242 3.985-.045 1.036-.28 2.028-1.133 2.677-.87.659-1.881.586-2.858.304-.947-.27-2.127-.814-3.559-1.474l-.854-.393c-.935-.43-1.134-.499-1.322-.499-.188 0-.387.07-1.322.499l-.853.393c-1.433.66-2.613 1.203-3.56 1.474-.977.28-1.989.355-2.857-.304-.854-.649-1.089-1.641-1.134-2.675-.046-1.016.083-2.351.242-3.986l.094-.962c.101-1.05.106-1.3.039-1.517-.065-.212-.206-.404-.88-1.192l-.618-.723c-1.046-1.224-1.903-2.226-2.439-3.078-.553-.878-.91-1.818-.593-2.84.322-1.033 1.157-1.587 2.11-1.963.918-.362 2.18-.647 3.711-.994l.082-.018.829-.188c.995-.225 1.198-.293 1.355-.413.164-.123.296-.319.808-1.235l.466-.838c.79-1.42 1.438-2.578 2.047-3.375' clip-rule='evenodd'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='16' x2='16.045' y1='16.023' y2='16.023' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%236A9191'/%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='%236A9191' fill-rule='evenodd' d='M13.528 3.492C14.147 2.682 14.914 2 16 2s1.852.682 2.473 1.492c.61.797 1.257 1.958 2.047 3.376l.468.837c.51.917.642 1.113.806 1.238.156.118.36.186 1.354.411l.912.206c1.531.346 2.793.632 3.71.994.954.376 1.789.93 2.11 1.962.318 1.023-.038 1.963-.59 2.84-.537.852-1.394 1.855-2.441 3.08l-.619.722c-.673.787-.814.98-.88 1.192-.066.217-.061.469.042 1.517l.092.961c.16 1.636.288 2.97.242 3.985-.045 1.036-.28 2.028-1.133 2.677-.87.659-1.881.586-2.858.304-.947-.27-2.127-.814-3.559-1.474l-.854-.393c-.935-.43-1.134-.499-1.322-.499-.188 0-.387.069-1.322.499l-.853.393c-1.433.66-2.613 1.203-3.56 1.474-.977.28-1.989.354-2.857-.305-.854-.648-1.089-1.64-1.134-2.674-.046-1.016.083-2.351.242-3.986l.094-.962c.101-1.05.106-1.3.039-1.517-.065-.213-.206-.404-.88-1.192l-.618-.723c-1.046-1.224-1.903-2.227-2.439-3.078-.553-.878-.91-1.818-.593-2.84.322-1.033 1.157-1.587 2.11-1.963.918-.362 2.18-.648 3.711-.994l.082-.018.829-.188c.995-.225 1.198-.293 1.355-.413.164-.123.296-.319.808-1.236l.466-.837c.79-1.42 1.438-2.579 2.047-3.376' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M3 13.236C3 5.944 8.802 0 16 0s13 5.944 13 13.236c0 3.52-1.001 7.3-2.772 10.566-1.768 3.26-4.35 6.095-7.582 7.608a6.232 6.232 0 0 1-5.292 0c-3.231-1.514-5.814-4.346-7.582-7.608C4.002 20.536 3 16.756 3 13.236ZM16 2.233c-5.931 0-10.771 4.907-10.771 11.003 0 3.121.895 6.537 2.502 9.5 1.607 2.966 3.88 5.394 6.566 6.651a4.005 4.005 0 0 0 3.404 0c2.688-1.257 4.96-3.685 6.569-6.651 1.605-2.962 2.501-6.379 2.501-9.5 0-6.096-4.84-11.003-10.771-11.003Zm0 7.441a3.338 3.338 0 0 0-3.088 2.068 3.354 3.354 0 0 0 1.809 4.375 3.338 3.338 0 0 0 3.643-.726A3.352 3.352 0 0 0 16 9.674Zm-5.571 3.35c0-1.481.587-2.9 1.631-3.948a5.567 5.567 0 0 1 7.88 0 5.587 5.587 0 0 1 0 7.894 5.566 5.566 0 0 1-7.88 0 5.587 5.587 0 0 1-1.631-3.947Z' 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' fill-rule='evenodd' d='M3 13.236C3 5.944 8.802 0 16 0s13 5.944 13 13.236c0 3.52-1.001 7.3-2.772 10.566-1.768 3.26-4.35 6.095-7.582 7.608a6.232 6.232 0 0 1-5.292 0c-3.231-1.514-5.814-4.346-7.582-7.608C4.002 20.536 3 16.756 3 13.236ZM16 2.233c-5.931 0-10.771 4.907-10.771 11.003 0 3.121.895 6.537 2.502 9.5 1.607 2.966 3.88 5.394 6.566 6.651a4.005 4.005 0 0 0 3.404 0c2.688-1.257 4.96-3.685 6.569-6.651 1.605-2.962 2.501-6.379 2.501-9.5 0-6.096-4.84-11.003-10.771-11.003Zm0 7.441a3.338 3.338 0 0 0-3.088 2.068 3.354 3.354 0 0 0 1.809 4.375 3.338 3.338 0 0 0 3.643-.726A3.352 3.352 0 0 0 16 9.674Zm-5.571 3.35c0-1.481.587-2.9 1.631-3.948a5.567 5.567 0 0 1 7.88 0 5.587 5.587 0 0 1 0 7.894 5.566 5.566 0 0 1-7.88 0 5.587 5.587 0 0 1-1.631-3.947Z' clip-rule='evenodd'/%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='%23B21A1D' fill-rule='evenodd' d='M3 13.236C3 5.944 8.802 0 16 0s13 5.944 13 13.236c0 3.52-1.001 7.3-2.772 10.566-1.768 3.26-4.35 6.095-7.582 7.608a6.232 6.232 0 0 1-5.292 0c-3.231-1.514-5.814-4.346-7.582-7.608C4.002 20.536 3 16.756 3 13.236ZM16 2.233c-5.931 0-10.771 4.907-10.771 11.003 0 3.121.895 6.537 2.502 9.5 1.607 2.966 3.88 5.394 6.566 6.651a4.005 4.005 0 0 0 3.404 0c2.688-1.257 4.96-3.685 6.569-6.651 1.605-2.962 2.501-6.379 2.501-9.5 0-6.096-4.84-11.003-10.771-11.003Zm0 7.441a3.338 3.338 0 0 0-3.088 2.068 3.354 3.354 0 0 0 1.809 4.375 3.338 3.338 0 0 0 3.643-.726A3.352 3.352 0 0 0 16 9.674Zm-5.571 3.35c0-1.481.587-2.9 1.631-3.948a5.567 5.567 0 0 1 7.88 0 5.587 5.587 0 0 1 0 7.894 5.566 5.566 0 0 1-7.88 0 5.587 5.587 0 0 1-1.631-3.947Z' clip-rule='evenodd'/%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' r='16' fill='%23333'/%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='%23333' fill-rule='evenodd' d='M9.077 11.907a6.9 6.9 0 0 1 2.028-4.884 6.932 6.932 0 0 1 9.79 0 6.899 6.899 0 0 1 2.028 4.884v5.116a6.9 6.9 0 0 1-2.028 4.884 6.932 6.932 0 0 1-9.79 0 6.899 6.899 0 0 1-2.028-4.884v-5.116ZM16 6.535a5.391 5.391 0 0 0-3.807 1.573 5.366 5.366 0 0 0-1.578 3.799v5.116c0 1.425.568 2.791 1.578 3.799a5.39 5.39 0 0 0 7.615 0 5.366 5.366 0 0 0 1.577-3.799v-5.116A5.378 5.378 0 0 0 16 6.535Zm-1.523 4.395a.77.77 0 0 1-1.294-.548.767.767 0 0 1 .207-.537l.547.516a38.03 38.03 0 0 1-.546-.517l.002-.003.004-.003.008-.008.066-.062a1.66 1.66 0 0 1 .142-.108c.116-.08.275-.171.486-.256.42-.169 1.033-.311 1.901-.311.868 0 1.481.142 1.901.312.21.085.37.174.486.255.073.052.142.109.208.17l.008.008.004.003.001.002c0 .001.002.002-.545.518l.547-.516a.767.767 0 0 1-.552 1.308.77.77 0 0 1-.543-.228 1.026 1.026 0 0 0-.19-.098c-.213-.085-.627-.2-1.325-.2s-1.112.114-1.324.2a1.08 1.08 0 0 0-.2.103Zm0 3.07a.77.77 0 0 1-1.303-.545.767.767 0 0 1 .216-.54l.559.527a47.14 47.14 0 0 1-.558-.528v-.001l.002-.002.004-.003.008-.008.066-.062a1.68 1.68 0 0 1 .142-.108c.116-.08.275-.171.486-.256.42-.169 1.033-.311 1.901-.311.868 0 1.481.142 1.901.312.21.084.37.174.486.255.073.052.142.108.208.17l.008.008.004.003.001.002s.002.002-.557.529l.56-.527a.767.767 0 0 1-.55 1.29.77.77 0 0 1-.538-.206l-.008-.005a1.032 1.032 0 0 0-.19-.097c-.213-.086-.627-.2-1.325-.2s-1.112.114-1.324.2c-.067.026-.13.059-.19.097l-.01.007Zm-7.708.21a.77.77 0 0 1 .77.767v2.046c0 2.24.89 4.386 2.478 5.97a8.472 8.472 0 0 0 11.966 0 8.432 8.432 0 0 0 2.479-5.97v-2.046a.767.767 0 0 1 .769-.768.77.77 0 0 1 .769.768v2.046C26 22.533 21.523 27 16 27S6 22.534 6 17.023v-2.046a.766.766 0 0 1 .77-.768Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M9.077 11.907a6.9 6.9 0 0 1 2.028-4.884 6.932 6.932 0 0 1 9.79 0 6.899 6.899 0 0 1 2.028 4.884v5.116a6.9 6.9 0 0 1-2.028 4.884 6.932 6.932 0 0 1-9.79 0 6.899 6.899 0 0 1-2.028-4.884v-5.116ZM16 6.535a5.391 5.391 0 0 0-3.807 1.573 5.366 5.366 0 0 0-1.578 3.799v5.116c0 1.425.568 2.791 1.578 3.799a5.39 5.39 0 0 0 7.615 0 5.366 5.366 0 0 0 1.577-3.799v-5.116A5.378 5.378 0 0 0 16 6.535Zm-9.23 7.674a.77.77 0 0 1 .768.768v2.046c0 2.24.892 4.386 2.479 5.97a8.472 8.472 0 0 0 11.966 0 8.432 8.432 0 0 0 2.479-5.97v-2.046a.767.767 0 0 1 .769-.768.77.77 0 0 1 .769.768v2.046C26 22.533 21.523 27 16 27S6 22.534 6 17.023v-2.046a.766.766 0 0 1 .77-.768Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M14.009 10.19a.6.6 0 0 0-.848.847l1.976 1.974-1.976 1.973a.598.598 0 0 0 .848.846l1.976-1.971 1.976 1.973a.6.6 0 0 0 .848-.848l-1.976-1.973 1.976-1.974a.598.598 0 0 0-.42-1.037.6.6 0 0 0-.428.19l-1.976 1.974-1.976-1.973Z'/%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='%236A9191' d='M16 0C7.16 0 0 7.16 0 16s7.16 16 16 16 16-7.16 16-16S24.84 0 16 0Z' opacity='.4'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M17.655 8.838c-.73.35-1.658.951-2.977 1.81l-.224.146-.051.033c-.389.252-.658.428-.953.557a3.928 3.928 0 0 1-.91.27c-.318.053-.64.053-1.107.053h-.06c-1.478 0-1.976.016-2.4.21a2.514 2.514 0 0 0-1.06.985c-.224.409-.266.828-.344 2.105-.02.35-.034.687-.034.993 0 .306.012.643.034.993.078 1.277.12 1.697.343 2.105.214.393.65.798 1.06.985.424.194.923.21 2.4.21h.062c.465 0 .787 0 1.106.053.315.053.618.143.91.27.295.129.565.304.954.557l.051.034.223.145c1.32.859 2.246 1.46 2.978 1.81.727.35 1.093.364 1.348.278a1.59 1.59 0 0 0 .399-.2c.222-.154.424-.452.566-1.231.143-.783.195-1.866.269-3.412A67.75 67.75 0 0 0 20.326 16c0-.516-.035-1.466-.088-2.596-.074-1.547-.126-2.63-.268-3.413-.144-.778-.345-1.076-.566-1.23a1.644 1.644 0 0 0-.4-.202c-.256-.085-.62-.07-1.35.279Zm-.67-1.364c.845-.404 1.678-.63 2.514-.349.278.094.546.229.787.395.722.503 1.028 1.294 1.194 2.203.162.893.218 2.077.287 3.551l.003.06c.054 1.126.09 2.108.09 2.666 0 .558-.036 1.54-.09 2.667l-.003.059c-.07 1.475-.125 2.658-.287 3.551-.166.91-.472 1.7-1.194 2.203a3.09 3.09 0 0 1-.787.394c-.837.283-1.67.057-2.514-.348-.833-.4-1.842-1.058-3.103-1.877l-.273-.178c-.457-.298-.616-.398-.778-.468a2.273 2.273 0 0 0-.547-.162c-.175-.03-.362-.032-.91-.032h-.167c-1.245 0-2.11 0-2.88-.35a4.031 4.031 0 0 1-1.766-1.641c-.401-.737-.448-1.506-.516-2.602l-.008-.131A17.947 17.947 0 0 1 6 16c0-.344.014-.713.037-1.085l.008-.131c.068-1.095.115-1.865.516-2.603a4.03 4.03 0 0 1 1.767-1.64c.77-.352 1.634-.352 2.88-.35h.164c.55 0 .737-.003.912-.032.188-.032.371-.086.546-.162.164-.07.322-.171.779-.47l.273-.177c1.26-.82 2.27-1.477 3.103-1.876Zm6.221 1.883a.774.774 0 0 1 1.081.097l.001.001.002.002.003.004.007.01c.031.036.06.075.088.114.073.102.143.207.208.314.165.273.377.672.585 1.208C25.6 12.179 26 13.787 26 16c0 2.213-.401 3.822-.819 4.895-.16.417-.355.82-.585 1.206a5.04 5.04 0 0 1-.274.403l-.013.017-.009.01-.007.01-.003.002-.002.002-.59-.484.59.485a.771.771 0 0 1-1.342-.416.75.75 0 0 1 .158-.549m0 0 .003-.005.032-.041c.05-.07.096-.14.14-.214.123-.2.295-.522.47-.971.35-.898.716-2.32.716-4.35s-.366-3.452-.716-4.35a6.03 6.03 0 0 0-.47-.97 3.038 3.038 0 0 0-.175-.26l.003.004v-.002l-.003-.002a.75.75 0 0 1 .102-1.063' clip-rule='evenodd'/%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='%236A9191' d='M16 0C7.16 0 0 7.16 0 16s7.16 16 16 16 16-7.16 16-16S24.84 0 16 0Z' opacity='.4'/%3E%3Cpath fill='%23333' d='M14.193 10.658c1.233-.858 2.092-1.455 2.768-1.803.676-.347.986-.345 1.188-.273.123.045.246.11.355.191.192.143.38.429.514 1.19a.772.772 0 1 0 1.519-.268c-.154-.88-.44-1.66-1.114-2.16a2.978 2.978 0 0 0-.751-.404c-.817-.295-1.623-.055-2.415.351-.78.401-1.724 1.06-2.895 1.875l-.258.181c-.43.299-.571.395-.717.463-.156.072-.32.124-.488.155-.154.027-.32.03-.835.03H10.9c-1.15 0-1.978-.002-2.713.358-.678.331-1.319.974-1.665 1.653-.374.732-.417 1.497-.48 2.59l-.007.131C6.013 15.288 6 15.656 6 16c0 .344.013.71.035 1.081l.007.132c.062 1.092.106 1.857.48 2.59.346.679.988 1.322 1.665 1.653.735.36 1.562.359 2.713.358h.164c.514 0 .68.003.835.03.168.03.33.081.488.155.146.068.287.163.717.463l.258.18c1.171.816 2.116 1.474 2.896 1.875.791.407 1.597.647 2.414.352a2.98 2.98 0 0 0 .75-.404c.676-.502.96-1.28 1.115-2.16a.77.77 0 1 0-1.519-.267c-.134.761-.322 1.046-.514 1.188a1.44 1.44 0 0 1-.355.191c-.202.073-.512.074-1.188-.272-.676-.348-1.536-.945-2.768-1.803l-.259-.181c-.36-.251-.615-.43-.896-.56a3.493 3.493 0 0 0-.87-.276c-.304-.054-.613-.054-1.043-.054h-.062c-1.385 0-1.824-.019-2.198-.202-.368-.179-.771-.576-.97-.967-.21-.412-.248-.835-.322-2.109-.02-.33-.03-.662-.032-.993 0-.307.011-.642.032-.993.074-1.274.112-1.697.322-2.108.199-.392.602-.79.97-.968.374-.183.813-.202 2.198-.202h.062c.43 0 .74 0 1.044-.054.301-.055.591-.147.87-.276.28-.13.536-.309.895-.56l.259-.18Z'/%3E%3Cpath fill='%23333' d='M17.59 12.369a.77.77 0 0 0-1.09 1.09L19.04 16l-2.54 2.54a.772.772 0 0 0 1.089 1.09l2.538-2.538 2.538 2.54a.77.77 0 0 0 1.089-1.09L21.217 16l2.538-2.54a.771.771 0 1 0-1.09-1.091l-2.537 2.54-2.538-2.54Z'/%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='%23333' fill-rule='evenodd' d='M14.11 6h4.78c2.138 0 3.83 0 5.155.175 1.363.18 2.466.56 3.337 1.415.87.856 1.256 1.94 1.44 3.28.104.769.147 1.664.165 2.7a.897.897 0 0 1 .004.263c.007.646.01 1.347.009 2.103v.128c0 2.1 0 3.765-.178 5.066-.184 1.34-.57 2.424-1.44 3.28-.87.855-1.974 1.235-3.337 1.415C22.72 26 21.028 26 18.891 26h-4.782c-2.137 0-3.83 0-5.154-.175-1.363-.18-2.466-.56-3.337-1.415-.87-.856-1.256-1.94-1.44-3.28C4 19.827 4 18.165 4 16.064v-.128c-.001-.756.002-1.457.009-2.103a.899.899 0 0 1 .003-.263c.019-1.036.062-1.931.166-2.7.184-1.34.57-2.424 1.44-3.28.87-.855 1.974-1.235 3.337-1.415C10.28 6 11.972 6 14.109 6Zm-8.363 8.571c-.002.444-.002.92-.002 1.429 0 2.18.002 3.728.162 4.903.157 1.148.453 1.811.944 2.295.492.483 1.167.773 2.336.928 1.196.157 2.77.16 4.988.16h4.65c2.218 0 3.793-.003 4.989-.16 1.168-.155 1.843-.445 2.334-.928.492-.484.788-1.147.945-2.296.16-1.175.163-2.723.163-4.902 0-.509-.001-.985-.003-1.429H5.747Zm21.478-1.714H5.775c.023-.67.063-1.25.132-1.76.157-1.148.453-1.811.944-2.295.492-.483 1.167-.773 2.336-.928 1.196-.157 2.77-.16 4.988-.16h4.65c2.218 0 3.793.003 4.989.16 1.168.155 1.843.445 2.334.928.492.484.788 1.147.945 2.296.07.509.109 1.088.132 1.76ZM8.651 20.571a.85.85 0 0 1 .256-.606.88.88 0 0 1 .616-.25h4.652a.88.88 0 0 1 .616.25.85.85 0 0 1 0 1.212.88.88 0 0 1-.617.252h-4.65a.88.88 0 0 1-.617-.252.85.85 0 0 1-.256-.606Zm7.558 0a.85.85 0 0 1 .256-.606.88.88 0 0 1 .616-.25h1.745a.88.88 0 0 1 .616.25.85.85 0 0 1 0 1.212.88.88 0 0 1-.616.252H17.08a.88.88 0 0 1-.616-.252.85.85 0 0 1-.256-.606Z' clip-rule='evenodd'/%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='%23333' d='M19.452 14.326a.833.833 0 0 0-.067-1.184.852.852 0 0 0-1.196.067l-3.397 3.767-.982-1.088a.85.85 0 0 0-1.472.513.832.832 0 0 0 .21.604l1.612 1.786a.847.847 0 0 0 .977.206.846.846 0 0 0 .285-.206l4.03-4.465Z'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 4c-1.057 0-2.068.343-3.697.894l-.82.28c-1.671.564-2.962 1.002-3.885 1.372a9.73 9.73 0 0 0-1.187.553c-.31.178-.62.4-.831.699-.209.293-.317.655-.385 1.004a9.793 9.793 0 0 0-.14 1.295C5 11.087 5 12.444 5 14.203v1.787c0 6.81 5.199 10.075 8.29 11.413l.03.012c.384.166.745.322 1.16.427.436.111.9.158 1.52.158s1.083-.047 1.52-.159c.415-.104.776-.26 1.158-.426l.032-.012C21.8 26.066 27 22.8 27 15.99v-1.787c0-1.76 0-3.117-.054-4.107a9.929 9.929 0 0 0-.141-1.295c-.068-.348-.176-.71-.384-1.005-.212-.296-.522-.519-.832-.697-.384-.21-.78-.394-1.187-.553-.923-.37-2.214-.808-3.885-1.373l-.82-.279C18.068 4.343 17.057 4 16 4Zm-3.294 2.527c1.822-.616 2.552-.853 3.294-.853s1.472.237 3.294.853l.646.22c1.707.577 2.951 1 3.824 1.35.437.176.753.323.975.45.108.063.187.115.235.156.043.033.06.053.062.056a.445.445 0 0 1 .036.082c.023.061.046.154.071.277.062.354.1.71.113 1.07.052.938.052 2.249.052 4.045v1.757c0 5.778-4.366 8.621-7.276 9.878-.419.18-.661.283-.93.352-.258.065-.572.106-1.102.106-.53 0-.844-.04-1.101-.107-.27-.066-.512-.17-.93-.351-2.912-1.257-7.277-4.101-7.277-9.878v-1.757c0-1.796 0-3.107.052-4.046a7.69 7.69 0 0 1 .113-1.069c.024-.123.048-.216.071-.277.02-.056.034-.078.036-.082a.45.45 0 0 1 .062-.056 1.74 1.74 0 0 1 .235-.156c.222-.128.538-.274.975-.45.873-.35 2.117-.773 3.824-1.35l.646-.22Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16 4c-.675 0-1.297.167-1.977.449-.657.272-1.421.673-2.37 1.172l-2.31 1.211c-1.166.612-2.098 1.102-2.82 1.583-.746.499-1.322 1.024-1.74 1.735-.418.708-.606 1.476-.696 2.39C4 13.429 4 14.52 4 15.893v.216c0 1.373 0 2.464.087 3.351.09.916.28 1.683.696 2.391.418.711.993 1.236 1.74 1.735.72.481 1.654.971 2.82 1.583l2.31 1.211c.949.5 1.713.9 2.37 1.172.681.282 1.302.449 1.977.449s1.297-.167 1.977-.449c.657-.272 1.421-.673 2.37-1.172l2.31-1.21c1.166-.613 2.098-1.103 2.82-1.584.747-.499 1.322-1.024 1.74-1.735.418-.708.606-1.476.696-2.39.087-.888.087-1.979.087-3.35v-.22c0-1.371 0-2.462-.087-3.35-.09-.915-.28-1.682-.695-2.39-.42-.711-.994-1.236-1.742-1.735-.72-.481-1.653-.971-2.82-1.583l-2.308-1.211c-.95-.5-1.714-.9-2.371-1.172C17.296 4.167 16.675 4 16 4Zm-3.606 3.121c.994-.521 1.69-.885 2.269-1.124.562-.233.959-.323 1.337-.323.38 0 .775.09 1.337.323.579.239 1.274.603 2.268 1.124l2.232 1.172c1.217.638 2.07 1.087 2.71 1.514.315.21.562.406.763.603l-3.719 1.858-9.488-4.994.291-.153Zm-2.037 1.07-.194.102c-1.217.638-2.07 1.087-2.71 1.514a5.246 5.246 0 0 0-.762.603L16 15.065l3.747-1.876-9.16-4.82a.894.894 0 0 1-.23-.178Zm-4.473 3.687c-.056.239-.1.51-.13.826-.078.797-.08 1.805-.08 3.23v.13c0 1.427 0 2.435.08 3.231.077.778.223 1.282.472 1.706.248.42.606.777 1.228 1.192.638.426 1.492.876 2.709 1.514l2.232 1.172c.994.521 1.69.885 2.268 1.124.181.075.348.137.5.184v-9.67l-9.279-4.64Zm10.953 14.308c.152-.047.319-.108.5-.183.579-.239 1.274-.603 2.268-1.124l2.232-1.172c1.217-.639 2.07-1.088 2.71-1.514.621-.415.98-.771 1.228-1.192.25-.424.394-.927.471-1.706.079-.796.08-1.804.08-3.23v-.13c0-1.426 0-2.434-.08-3.23a6.701 6.701 0 0 0-.13-.826l-3.697 1.847v3.39a.837.837 0 0 1-1.675 0v-2.551l-3.907 1.953v9.668Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M7.349 12.11C7.349 7.575 11.279 4 16 4c4.72 0 8.651 3.575 8.651 8.11 0 4.253-2.638 9.248-6.893 11.067a4.488 4.488 0 0 1-3.516 0c-4.255-1.819-6.893-6.813-6.893-11.067ZM16 5.674c-3.91 0-6.977 2.936-6.977 6.436 0 3.715 2.35 8.02 5.877 9.527a2.823 2.823 0 0 0 2.2 0c3.527-1.507 5.877-5.812 5.877-9.527 0-3.499-3.067-6.436-6.977-6.436Zm0 5.582a1.395 1.395 0 1 0 0 2.79 1.395 1.395 0 0 0 0-2.79Zm-3.07 1.395a3.07 3.07 0 1 1 6.14 0 3.07 3.07 0 0 1-6.14 0Zm-6.312 6.695a.837.837 0 0 1-.058 1.182c-.634.573-.886 1.123-.886 1.612 0 .852.809 1.903 2.777 2.788 1.888.85 4.557 1.398 7.549 1.398s5.66-.547 7.55-1.398c1.967-.885 2.776-1.936 2.776-2.788 0-.49-.252-1.039-.886-1.612a.837.837 0 1 1 1.124-1.242c.852.772 1.436 1.738 1.436 2.854 0 1.922-1.691 3.382-3.763 4.315C22.086 27.423 19.173 28 16 28c-3.172 0-6.086-.577-8.237-1.545C5.691 25.522 4 24.062 4 22.14c0-1.116.584-2.082 1.436-2.854a.838.838 0 0 1 1.182.06Z' 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='%23333' fill-rule='evenodd' d='M22.011 5.87c-1.451-.193-3.358-.196-6.012-.196-2.655 0-4.561.003-6.012.197-1.428.192-2.289.558-2.925 1.193-.635.636-1 1.496-1.192 2.924-.194 1.45-.197 3.357-.197 6.012 0 2.654.003 4.561.197 6.012.192 1.428.558 2.289 1.193 2.925.521.521 1.194.86 2.21 1.072L26.006 9.273c-.212-1.013-.55-1.688-1.071-2.21-.637-.635-1.497-1-2.925-1.192Zm4.243 5.524-6.838 6.839 6.035 6.035c.33-.558.544-1.272.677-2.255.194-1.45.197-3.359.197-6.013 0-1.873 0-3.374-.07-4.606Zm-1.987 14.059-6.036-6.037-6.838 6.84c1.231.069 2.733.07 4.606.07 2.654 0 4.561-.003 6.012-.197.985-.133 1.7-.347 2.257-.676m-2.031-21.24c1.612.216 2.884.669 3.883 1.667 1 .999 1.451 2.271 1.668 3.884C28 11.34 28 13.36 28 15.936v.128c0 2.577 0 4.596-.212 6.173-.217 1.612-.67 2.884-1.668 3.883-.999 1-2.271 1.451-3.885 1.668C20.66 28 18.641 28 16.064 28h-.128c-2.577 0-4.597 0-6.173-.212-1.612-.217-2.884-.67-3.883-1.668-1-.999-1.451-2.271-1.668-3.885C4 20.66 4 18.641 4 16.064v-.128c0-2.577 0-4.597.212-6.173.217-1.612.67-2.884 1.668-3.883.999-1 2.271-1.451 3.884-1.668C11.34 4 13.36 4 15.936 4h.128c2.577 0 4.596 0 6.173.212ZM7.906 12.38c0-2.526 2.181-4.473 4.744-4.473 2.563 0 4.744 1.947 4.744 4.473 0 2.263-1.39 4.932-3.7 5.918a2.68 2.68 0 0 1-2.088 0c-2.31-.986-3.7-3.655-3.7-5.918Zm4.744-2.8c-1.752 0-3.07 1.309-3.07 2.799 0 1.723 1.103 3.704 2.685 4.38a1.006 1.006 0 0 0 .77 0c1.582-.676 2.685-2.658 2.685-4.38 0-1.49-1.317-2.799-3.07-2.799Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M13.766 12.651a1.117 1.117 0 1 1-2.233 0 1.117 1.117 0 0 1 2.233 0Z'/%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='%23333' fill-rule='evenodd' d='M10.38 7.272a.925.925 0 0 1 0 1.316l-2.162 2.136H19.77a7.28 7.28 0 0 1 5.112 2.09A7.093 7.093 0 0 1 27 17.862a7.093 7.093 0 0 1-2.117 5.047A7.276 7.276 0 0 1 19.77 25h-8.8a.95.95 0 0 1-.667-.273.925.925 0 0 1 0-1.316.949.949 0 0 1 .667-.273h8.8a5.377 5.377 0 0 0 3.778-1.546 5.243 5.243 0 0 0 1.565-3.73c0-1.4-.563-2.742-1.565-3.731a5.378 5.378 0 0 0-3.778-1.545H8.218l2.162 2.135a.93.93 0 0 1 .3.665.922.922 0 0 1-.276.675.944.944 0 0 1-.683.272.953.953 0 0 1-.674-.296l-3.771-3.724a.925.925 0 0 1 0-1.316l3.771-3.725a.949.949 0 0 1 1.333 0Z' 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='%23333' fill-rule='evenodd' d='M18.73 4h-4.367c-1.98 0-3.548 0-4.774.17-1.262.177-2.284.548-3.091 1.383-.806.836-1.163 1.895-1.333 3.203C5 10.03 5 11.653 5 13.705v6.76c0 .997.343 1.962.968 2.72a4.005 4.005 0 0 0 2.442 1.416c.147.853.432 1.58 1.003 2.173.649.672 1.465.96 2.434 1.096.934.13 2.122.13 3.594.13h3.349c1.472 0 2.66 0 3.594-.13.969-.136 1.785-.424 2.433-1.096.649-.672.927-1.518 1.058-2.523.125-.967.125-2.199.125-3.725v-5.704c0-1.526 0-2.757-.125-3.725-.131-1.004-.41-1.85-1.058-2.522-.571-.592-1.273-.888-2.096-1.04a4.227 4.227 0 0 0-1.366-2.531A3.955 3.955 0 0 0 18.731 4Zm2.295 3.372a2.506 2.506 0 0 0-.885-1.23 2.365 2.365 0 0 0-1.41-.468h-4.307c-2.054 0-3.512.003-4.62.157-1.082.15-1.707.434-2.162.906-.456.472-.73 1.12-.875 2.242-.148 1.148-.15 2.66-.15 4.788v6.698c0 .524.157 1.035.45 1.461.294.427.71.747 1.187.917-.022-.681-.022-1.451-.022-2.317v-5.704c0-1.526 0-2.757.126-3.725.129-1.004.409-1.85 1.056-2.522.649-.672 1.465-.96 2.434-1.096.934-.13 2.122-.13 3.594-.13h3.349c.835 0 1.578 0 2.235.023ZM10.555 9.76c.298-.31.716-.51 1.508-.62.811-.113 1.89-.116 3.436-.116h3.23c1.546 0 2.624.003 3.438.115.79.11 1.208.313 1.507.621.298.31.492.742.599 1.563.108.841.11 1.96.11 3.562v5.581c0 1.602-.002 2.72-.11 3.563-.107.82-.302 1.253-.6 1.562-.297.31-.715.51-1.507.62-.813.114-1.89.116-3.436.116h-3.231c-1.546 0-2.625-.003-3.438-.115-.79-.11-1.208-.313-1.506-.62-.298-.31-.492-.743-.599-1.564-.109-.842-.11-1.96-.11-3.562v-5.581c0-1.602.001-2.72.11-3.563.107-.82.302-1.253.599-1.562Z' 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='%236A9191' fill-rule='evenodd' d='M14.313 4.383a3.912 3.912 0 0 1 3.374 0c.465.222.888.584 1.478 1.086l.093.079c.286.243.376.318.467.379.232.156.492.263.764.317.108.021.225.032.6.061l.12.01c.77.06 1.328.105 1.812.276a3.925 3.925 0 0 1 2.388 2.388c.17.484.214 1.041.276 1.812l.01.12c.029.375.04.493.061.6.054.273.162.534.317.765.061.09.136.18.38.466l.078.093c.503.588.864 1.013 1.087 1.476a3.915 3.915 0 0 1 0 3.376c-.221.464-.584.888-1.087 1.477l-.079.094a6.02 6.02 0 0 0-.379.467 2.098 2.098 0 0 0-.317.764 5.946 5.946 0 0 0-.061.599l-.01.121c-.06.77-.105 1.327-.277 1.812a3.912 3.912 0 0 1-2.387 2.388c-.484.17-1.041.214-1.812.276l-.12.01c-.201.01-.401.03-.6.061a2.159 2.159 0 0 0-.764.317 5.951 5.951 0 0 0-.468.379l-.092.08c-.588.502-1.013.863-1.476 1.085a3.913 3.913 0 0 1-3.376 0c-.465-.22-.888-.583-1.477-1.086l-.094-.079a5.998 5.998 0 0 0-.466-.38 2.158 2.158 0 0 0-.765-.316 5.953 5.953 0 0 0-.599-.061l-.121-.011c-.77-.06-1.327-.105-1.812-.276A3.91 3.91 0 0 1 6.59 23.02c-.17-.485-.215-1.041-.276-1.812l-.01-.121c-.01-.2-.03-.4-.061-.599a2.16 2.16 0 0 0-.317-.764 5.979 5.979 0 0 0-.379-.468l-.08-.093c-.5-.588-.863-1.013-1.085-1.476a3.912 3.912 0 0 1 0-3.375c.222-.465.584-.888 1.086-1.478l.079-.093c.134-.149.26-.304.38-.466.155-.231.262-.492.316-.765.022-.108.032-.225.061-.6l.01-.12c.061-.77.105-1.328.276-1.812A3.912 3.912 0 0 1 8.979 6.59c.485-.17 1.042-.215 1.812-.276l.121-.01a6 6 0 0 0 .599-.061c.274-.054.534-.162.766-.317.09-.061.18-.136.465-.38l.094-.078c.588-.502 1.014-.864 1.477-1.086Zm2.594 1.63a2.112 2.112 0 0 0-1.816 0c-.223.105-.457.296-1.178.909l-.036.03c-.236.201-.408.349-.596.475-.43.288-.913.488-1.422.588-.222.044-.448.062-.758.088l-.046.003c-.944.076-1.243.107-1.476.189-.6.212-1.073.684-1.284 1.285-.084.233-.114.531-.19 1.476l-.003.045a6.663 6.663 0 0 1-.087.759c-.1.509-.3.991-.588 1.422-.127.188-.275.36-.476.597l-.03.035c-.613.72-.804.955-.91 1.176a2.112 2.112 0 0 0 0 1.818c.106.222.297.456.91 1.177l.03.037c.201.236.35.407.475.596.288.43.488.913.588 1.422.044.222.062.447.088.758l.003.046c.076.944.107 1.243.189 1.476.212.6.684 1.073 1.285 1.284.233.084.531.114 1.476.19l.046.003c.31.024.536.043.758.087.509.1.991.3 1.422.587.188.128.36.275.598.477l.034.03c.72.613.955.804 1.176.91a2.113 2.113 0 0 0 1.818 0c.222-.106.456-.297 1.178-.91l.036-.03c.236-.202.408-.35.596-.475.43-.288.913-.489 1.422-.588a7.15 7.15 0 0 1 .758-.088l.046-.003c.944-.076 1.243-.107 1.476-.189a2.104 2.104 0 0 0 1.284-1.285c.084-.233.114-.533.19-1.476l.003-.046a7.2 7.2 0 0 1 .087-.76c.1-.507.3-.99.588-1.42.127-.189.274-.36.476-.598l.03-.035c.613-.72.804-.955.91-1.175a2.112 2.112 0 0 0 0-1.819c-.106-.222-.297-.456-.91-1.177l-.03-.036c-.202-.236-.35-.408-.475-.596a3.961 3.961 0 0 1-.588-1.422 7.206 7.206 0 0 1-.088-.759l-.003-.045c-.076-.945-.107-1.243-.189-1.476a2.104 2.104 0 0 0-1.285-1.284c-.233-.084-.533-.114-1.476-.19l-.046-.003a7.2 7.2 0 0 1-.76-.087 3.96 3.96 0 0 1-1.42-.588c-.188-.127-.36-.275-.598-.476l-.034-.03c-.72-.613-.956-.804-1.176-.91m3.944 6.339a.901.901 0 0 1 0 1.278l-6.02 6.02a.904.904 0 0 1-1.277 0l-2.409-2.408a.905.905 0 1 1 1.277-1.277l1.77 1.769 5.382-5.381a.904.904 0 0 1 1.277 0' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.936 4c-2.577 0-4.597 0-6.173.212-1.612.217-2.884.67-3.883 1.668-1 .999-1.452 2.271-1.668 3.884C4 11.34 4 13.36 4 15.936v.128c0 2.577 0 4.596.212 6.173.216 1.612.67 2.884 1.668 3.883.999 1 2.271 1.451 3.884 1.668C11.34 28 13.36 28 15.936 28h.127c2.578 0 4.597 0 6.173-.212 1.612-.217 2.885-.67 3.884-1.668.999-.999 1.451-2.271 1.668-3.885C28 20.66 28 18.641 28 16.064v-.128c0-2.577 0-4.597-.212-6.173-.217-1.612-.67-2.884-1.668-3.883-1-1-2.272-1.451-3.885-1.668C20.66 4 18.641 4 16.063 4h-.127Zm-.774 1.674c-2.225.003-3.88.023-5.175.197-1.427.192-2.288.558-2.924 1.193-.635.636-1 1.496-1.192 2.924-.173 1.293-.195 2.949-.197 5.175h4.648a4.465 4.465 0 0 1-.844-1.705c-.601-2.403 1.577-4.581 3.98-3.98a4.464 4.464 0 0 1 1.704.845V5.674ZM5.675 16.837c.002 2.226.022 3.881.197 5.175.192 1.428.558 2.289 1.193 2.925.636.635 1.496 1 2.923 1.192 1.294.173 2.95.194 5.175.197V18.37a5.302 5.302 0 0 1-4.744 2.931.837.837 0 1 1 0-1.674 3.628 3.628 0 0 0 3.531-2.79H5.674Zm11.163 9.489c2.226-.003 3.881-.023 5.175-.197 1.428-.192 2.288-.558 2.925-1.193.635-.637 1-1.496 1.192-2.924.173-1.294.194-2.949.196-5.175H18.05a3.628 3.628 0 0 0 3.531 2.79.837.837 0 0 1 0 1.675 5.301 5.301 0 0 1-4.744-2.931v7.955Zm9.488-11.163h-4.648c.401-.501.69-1.082.845-1.705.6-2.403-1.577-4.581-3.98-3.98a4.465 4.465 0 0 0-1.705.845V5.674c2.226.003 3.881.023 5.175.197 1.428.192 2.288.558 2.925 1.193.635.636 1 1.496 1.192 2.924.173 1.293.194 2.949.196 5.175Zm-9.488 0V13.8a2.79 2.79 0 0 1 2.11-2.698 1.607 1.607 0 0 1 1.95 1.949 2.791 2.791 0 0 1-2.696 2.11h-1.364Zm-1.675-1.365a2.79 2.79 0 0 0-2.11-2.695 1.607 1.607 0 0 0-1.95 1.949 2.791 2.791 0 0 0 2.697 2.11h1.364v-1.364Z' clip-rule='evenodd'/%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='%23333' d='M12.65 21.86a.837.837 0 1 0 0 1.675h6.699a.837.837 0 0 0 0-1.675H12.65Z'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 4c-.81 0-1.548.223-2.355.6-.784.364-1.688.904-2.822 1.579l-1.626.968C7.948 7.89 6.954 8.484 6.2 9.05c-.778.586-1.362 1.189-1.741 1.983-.382.793-.485 1.625-.452 2.595.032.939.196 2.08.401 3.512l.328 2.268c.264 1.842.475 3.303.789 4.44.323 1.173.783 2.105 1.613 2.818.828.715 1.82 1.033 3.032 1.186 1.178.147 2.664.147 4.538.147h2.586c1.875 0 3.36 0 4.538-.147 1.213-.153 2.204-.471 3.032-1.185.83-.714 1.29-1.645 1.613-2.818.314-1.139.525-2.599.79-4.44l.326-2.27c.206-1.43.37-2.572.401-3.511.034-.971-.069-1.802-.45-2.595-.38-.794-.964-1.397-1.742-1.983-.753-.567-1.75-1.16-2.998-1.904l-1.626-.968c-1.134-.675-2.038-1.215-2.82-1.58C17.547 4.222 16.809 4 16 4Zm-4.358 3.64c1.18-.703 2.013-1.198 2.71-1.524.68-.317 1.17-.442 1.648-.442.479 0 .968.125 1.648.442.697.326 1.529.82 2.71 1.524l1.546.921c1.3.775 2.217 1.322 2.891 1.829.655.494 1.016.903 1.24 1.367.221.464.314.998.286 1.815-.029.837-.179 1.888-.393 3.378l-.312 2.162c-.275 1.914-.471 3.269-.754 4.292-.276 1-.608 1.58-1.09 1.995-.484.416-1.11.662-2.15.793-1.06.133-2.442.134-4.386.134h-2.47c-1.946 0-3.327-.002-4.389-.134-1.038-.131-1.665-.377-2.149-.793-.482-.415-.814-.995-1.09-1.995-.283-1.023-.48-2.378-.755-4.292l-.311-2.162c-.215-1.49-.364-2.542-.393-3.378-.028-.817.065-1.35.288-1.815.223-.464.581-.873 1.239-1.367.673-.507 1.59-1.054 2.89-1.829l1.546-.92Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16.058 5h-.116c-2.363 0-4.214 0-5.659.194-1.478.199-2.644.614-3.56 1.53-.916.915-1.33 2.081-1.529 3.56C5 11.728 5 13.58 5 15.942v.116c0 2.363 0 4.214.194 5.659.199 1.478.614 2.644 1.53 3.56.915.916 2.081 1.33 3.56 1.529C11.728 27 13.58 27 15.942 27h.116c2.363 0 4.214 0 5.659-.194 1.478-.199 2.644-.614 3.56-1.53.916-.915 1.33-2.081 1.529-3.56C27 20.272 27 18.42 27 16.058v-.116c0-2.363 0-4.214-.194-5.659-.199-1.478-.614-2.644-1.53-3.56-.915-.916-2.081-1.33-3.56-1.529C20.272 5 18.42 5 16.058 5Zm-8.25 2.809c.584-.583 1.372-.918 2.68-1.094 1.331-.178 3.079-.18 5.512-.18 2.433 0 4.181.002 5.511.18 1.309.176 2.098.512 2.681 1.094.582.583.917 1.371 1.093 2.68.178 1.33.18 3.078.18 5.511 0 2.433-.002 4.181-.18 5.511-.176 1.309-.512 2.098-1.094 2.681-.583.582-1.371.917-2.68 1.093-1.33.178-3.078.18-5.511.18-2.433 0-4.181-.002-5.511-.18-1.309-.176-2.098-.512-2.681-1.094-.582-.583-.917-1.371-1.093-2.68-.178-1.33-.18-3.078-.18-5.511 0-2.433.002-4.181.18-5.511.176-1.309.512-2.097 1.094-2.68Z' 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='%23333' fill-rule='evenodd' d='M16.058 5h-.116c-2.363 0-4.214 0-5.659.194-1.478.199-2.644.614-3.56 1.53-.916.915-1.33 2.081-1.529 3.56C5 11.728 5 13.58 5 15.942v.116c0 2.363 0 4.214.194 5.659.199 1.478.614 2.644 1.53 3.56.915.916 2.081 1.33 3.56 1.529C11.728 27 13.58 27 15.942 27h.116c2.363 0 4.214 0 5.659-.194 1.478-.199 2.644-.614 3.56-1.53.916-.915 1.33-2.081 1.529-3.56C27 20.272 27 18.42 27 16.058v-.116c0-2.363 0-4.214-.194-5.659-.199-1.478-.614-2.644-1.53-3.56-.915-.916-2.081-1.33-3.56-1.529C20.272 5 18.42 5 16.058 5Z' 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='%23999' fill-rule='evenodd' d='M10.042 5c-.964 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.778-.49.49-.689 1.098-.78 1.77C5 8.275 5 9.079 5 10.043v.111c0 .964 0 1.769.086 2.406.09.674.29 1.283.778 1.771.49.49 1.098.69 1.77.78.64.085 1.444.085 2.408.085h.111c.964 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.69-1.097.78-1.77.085-.638.085-1.443.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.689-1.77-.78C11.921 5 11.116 5 10.152 5h-.111Zm-3.04 2.003c.14-.14.353-.255.848-.322.518-.07 1.213-.071 2.248-.071 1.034 0 1.73.002 2.248.072.495.066.707.181.847.322.14.14.254.35.322.845.068.519.07 1.214.07 2.249 0 1.034-.002 1.73-.072 2.248-.066.495-.18.707-.322.847-.14.14-.35.254-.845.322-.518.068-1.214.07-2.248.07-1.035 0-1.73-.002-2.249-.072-.494-.066-.707-.18-.846-.322-.14-.14-.255-.35-.322-.845-.068-.518-.071-1.214-.071-2.248 0-1.035.002-1.73.072-2.249.066-.494.181-.707.322-.846m14.843 9.802c-.965 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.779-.49.488-.69 1.097-.78 1.77-.085.638-.085 1.442-.085 2.407v.111c0 .965 0 1.769.086 2.406.09.674.29 1.283.779 1.771.488.49 1.097.689 1.77.78.638.085 1.442.085 2.407.085h.111c.964 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.689-1.097.78-1.77.085-.638.085-1.442.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.69-1.77-.78-.638-.085-1.442-.085-2.407-.085h-.111Zm-3.04 2.002c.14-.14.352-.254.848-.322.517-.068 1.213-.07 2.247-.07 1.035 0 1.73.002 2.249.07.494.068.707.183.846.322.14.14.255.352.322.848.07.517.071 1.213.071 2.247 0 1.035-.002 1.73-.072 2.249-.066.494-.181.707-.322.846-.14.14-.35.255-.845.322-.519.07-1.214.071-2.249.071-1.034 0-1.73-.002-2.248-.072-.495-.066-.707-.181-.847-.322-.14-.14-.254-.35-.322-.845-.068-.519-.07-1.214-.07-2.249 0-1.034.002-1.73.07-2.248.068-.495.183-.707.322-.847Zm-8.765-2.002h.111c.964 0 1.769 0 2.406.086.674.09 1.283.29 1.771.779.49.488.69 1.097.78 1.77.085.638.085 1.442.085 2.407v.111c0 .965 0 1.769-.086 2.406-.09.674-.29 1.283-.779 1.771-.488.49-1.097.689-1.77.78-.638.085-1.442.085-2.407.085h-.111c-.964 0-1.769 0-2.406-.086-.674-.09-1.283-.29-1.771-.779-.49-.488-.689-1.097-.78-1.77C5 23.726 5 22.922 5 21.957v-.111c0-.965 0-1.769.086-2.406.09-.674.29-1.283.778-1.771.49-.49 1.098-.69 1.77-.78.64-.085 1.444-.085 2.408-.085Zm-2.193 1.68c-.494.068-.707.183-.846.322-.14.14-.255.352-.322.848-.07.517-.071 1.213-.071 2.247 0 1.035.002 1.73.072 2.249.066.494.181.707.322.846.14.14.35.255.845.322.519.07 1.214.071 2.249.071 1.034 0 1.73-.002 2.248-.072.495-.066.707-.181.847-.322.14-.14.254-.35.322-.845.068-.519.07-1.214.07-2.249 0-1.034-.002-1.73-.072-2.248-.066-.495-.18-.707-.322-.847-.14-.14-.35-.254-.845-.322-.518-.068-1.214-.07-2.248-.07-1.035 0-1.73.002-2.249.07ZM21.847 5c-.965 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.778-.49.49-.69 1.098-.78 1.77-.085.64-.085 1.444-.085 2.408v.111c0 .964 0 1.769.086 2.406.09.674.29 1.283.779 1.771.488.49 1.097.69 1.77.78.638.085 1.442.085 2.407.085h.111c.965 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.689-1.097.78-1.77.085-.638.085-1.443.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.689-1.77-.78C23.726 5 22.922 5 21.957 5h-.111Zm-3.04 2.003c.14-.14.352-.255.848-.322.517-.07 1.213-.071 2.247-.071 1.035 0 1.73.002 2.249.072.494.066.707.181.846.322.14.14.255.35.322.845.07.519.071 1.214.071 2.249 0 1.034-.002 1.73-.072 2.248-.066.495-.181.707-.322.847-.14.14-.35.254-.845.322-.519.068-1.214.07-2.249.07-1.034 0-1.73-.002-2.248-.072-.495-.066-.707-.18-.847-.322-.14-.14-.254-.35-.322-.845-.068-.518-.07-1.214-.07-2.248 0-1.035.002-1.73.07-2.249.068-.494.183-.707.322-.846Z' 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='%23333' fill-rule='evenodd' d='M10.042 5c-.964 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.778-.49.49-.689 1.098-.78 1.77C5 8.275 5 9.079 5 10.043v.111c0 .964 0 1.769.086 2.406.09.674.29 1.283.778 1.771.49.49 1.098.69 1.77.78.64.085 1.444.085 2.408.085h.111c.964 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.69-1.097.78-1.77.085-.638.085-1.443.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.689-1.77-.78C11.921 5 11.116 5 10.152 5h-.111Zm11.805 11.805c-.965 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.779-.49.488-.69 1.097-.78 1.77-.085.638-.085 1.442-.085 2.407v.111c0 .965 0 1.769.086 2.406.09.674.29 1.283.779 1.771.488.49 1.097.689 1.77.78.638.085 1.442.085 2.407.085h.111c.964 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.689-1.097.78-1.77.085-.638.085-1.442.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.69-1.77-.78-.638-.085-1.442-.085-2.407-.085h-.111Zm-11.805 0h.111c.964 0 1.769 0 2.406.086.674.09 1.283.29 1.771.779.49.488.69 1.097.78 1.77.085.638.085 1.442.085 2.407v.111c0 .965 0 1.769-.086 2.406-.09.674-.29 1.283-.779 1.771-.488.49-1.097.689-1.77.78-.638.085-1.442.085-2.407.085h-.111c-.964 0-1.769 0-2.406-.086-.674-.09-1.283-.29-1.771-.779-.49-.488-.689-1.097-.78-1.77C5 23.726 5 22.922 5 21.957v-.111c0-.965 0-1.769.086-2.406.09-.674.29-1.283.778-1.771.49-.49 1.098-.69 1.77-.78.64-.085 1.444-.085 2.408-.085ZM21.847 5c-.965 0-1.769 0-2.406.086-.674.09-1.283.29-1.771.778-.49.49-.69 1.098-.78 1.77-.085.64-.085 1.444-.085 2.408v.111c0 .964 0 1.769.086 2.406.09.674.29 1.283.779 1.771.488.49 1.097.69 1.77.78.638.085 1.442.085 2.407.085h.111c.965 0 1.769 0 2.406-.086.674-.09 1.283-.29 1.771-.779.49-.488.689-1.097.78-1.77.085-.638.085-1.443.085-2.407v-.111c0-.964 0-1.769-.086-2.406-.09-.674-.29-1.283-.779-1.771-.488-.49-1.097-.689-1.77-.78C23.726 5 22.922 5 21.957 5h-.111Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='m17.884 7.228 1.076 1.076a.837.837 0 0 1-1.184 1.184L16.7 8.412l-1.183 1.183 1.864 1.866a.837.837 0 0 1-1.183 1.184l-1.866-1.865-1.184 1.184 1.076 1.076a.837.837 0 1 1-1.183 1.184l-1.078-1.076-1.183 1.183 1.865 1.867a.838.838 0 1 1-1.184 1.183l-1.865-1.864L8.413 16.7l1.075 1.076a.837.837 0 1 1-1.184 1.183l-1.076-1.075c-.518.524-.892.917-1.154 1.262-.324.424-.4.674-.4.89 0 .216.076.466.4.89.338.444.86.97 1.639 1.747l1.614 1.614c.778.778 1.303 1.3 1.747 1.639.424.324.674.4.89.4.215 0 .466-.076.89-.4.444-.338.97-.86 1.746-1.639l9.687-9.686c.778-.778 1.3-1.304 1.639-1.747.324-.424.4-.674.4-.89 0-.216-.076-.466-.4-.89-.338-.444-.86-.97-1.639-1.747l-1.614-1.614c-.778-.778-1.303-1.3-1.747-1.639-.424-.324-.674-.4-.89-.4-.215 0-.466.076-.89.4-.345.262-.738.636-1.262 1.154Zm.246-2.486C18.704 4.305 19.306 4 20.037 4c.73 0 1.332.305 1.905.742.544.416 1.148 1.02 1.874 1.745l1.697 1.697c.725.725 1.33 1.33 1.745 1.874.437.573.742 1.177.742 1.905 0 .73-.305 1.333-.742 1.907-.416.544-1.02 1.148-1.745 1.873l-9.77 9.77c-.725.725-1.33 1.33-1.873 1.745-.574.437-1.176.742-1.906.742s-1.333-.305-1.906-.742c-.544-.416-1.147-1.02-1.874-1.745l-1.697-1.697c-.726-.725-1.33-1.33-1.745-1.874C4.305 21.369 4 20.765 4 20.037c0-.73.305-1.333.742-1.907.416-.544 1.02-1.148 1.745-1.873l9.77-9.77c.725-.726 1.33-1.33 1.873-1.745Z' 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='%23B21A1D' d='M30 25.971 2.799 5 2 6.029 29.201 27 30 25.971Z'/%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='%23333' fill-rule='evenodd' d='M16 5.674a10.326 10.326 0 1 0 0 20.652 10.326 10.326 0 0 0 0-20.652ZM4 16C4 9.373 9.373 4 16 4s12 5.373 12 12-5.373 12-12 12S4 22.627 4 16Zm12-5.302a.837.837 0 0 1 .837.837v4.119l2.545 2.545a.835.835 0 0 1 .022 1.205.837.837 0 0 1-1.205-.022l-2.79-2.79a.837.837 0 0 1-.246-.592v-4.465a.837.837 0 0 1 .837-.837Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
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='%23333' fill-rule='evenodd' d='m23.213 5.726.197.066 1.48.487c.57.19 1.07.354 1.466.537.428.197.82.45 1.12.864.301.413.42.862.475 1.327.049.43.049.952.049 1.548v10.012c0 .85 0 1.569-.067 2.137-.068.59-.224 1.172-.658 1.643a2.77 2.77 0 0 1-.918.656c-.588.258-1.195.22-1.782.099-.566-.117-1.253-.344-2.068-.614l-.053-.017c-1.378-.456-1.852-.597-2.31-.581-.183.006-.365.03-.543.072-.447.103-.865.364-2.075 1.163l-1.7 1.124-.173.113c-1.307.865-2.216 1.465-3.279 1.606-1.062.141-2.098-.201-3.588-.695l-.196-.065-1.48-.487c-.57-.19-1.07-.354-1.466-.537-.428-.197-.82-.45-1.12-.865-.301-.412-.42-.861-.475-1.327C4 23.562 4 23.042 4 22.445V12.434c0-.853 0-1.57.066-2.138.07-.59.224-1.172.659-1.643.257-.279.57-.502.918-.656.588-.26 1.196-.22 1.782-.099.566.116 1.253.344 2.068.614l.053.017c1.378.454 1.852.597 2.311.581.183-.006.364-.03.542-.072.447-.105.865-.366 2.075-1.163l1.7-1.124.173-.114c1.307-.864 2.215-1.463 3.278-1.605 1.063-.141 2.1.2 3.588.694Zm-2.598 1.15v15.207c.66.07 1.354.3 2.269.602l.154.052c.882.29 1.467.482 1.913.575.439.09.587.049.655.02a.924.924 0 0 0 .307-.219c.049-.053.135-.181.187-.622.053-.448.054-1.059.054-1.98v-9.909c0-.658-.001-1.072-.037-1.387-.035-.291-.089-.4-.138-.466-.048-.066-.134-.152-.401-.275-.29-.134-.69-.266-1.317-.474l-1.434-.474c-1.092-.36-1.739-.564-2.212-.65ZM18.77 22.303V7.275c-.382.22-.874.538-1.57.998l-1.701 1.124-.135.089c-.847.56-1.479.977-2.132 1.211v15.028c.383-.22.874-.54 1.57-.999l1.701-1.123.136-.089c.846-.56 1.478-.977 2.131-1.212Zm-7.384 3.823v-15.21c-.66-.07-1.354-.3-2.269-.601l-.154-.052c-.882-.291-1.467-.483-1.915-.575-.437-.09-.585-.05-.652-.02a.923.923 0 0 0-.308.219c-.049.052-.135.18-.187.62-.053.449-.054 1.06-.054 1.981v9.91c0 .658.001 1.072.037 1.387.035.291.089.398.138.466.048.065.134.152.401.275.29.134.69.266 1.317.474l1.434.473c1.092.36 1.738.565 2.212.651' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M23.767 10.286a4.223 4.223 0 0 1-1.277 3.03 4.368 4.368 0 0 1-1.414.93 4.427 4.427 0 0 1-3.338 0 4.368 4.368 0 0 1-1.414-.93 4.283 4.283 0 0 1-.946-1.39 4.223 4.223 0 0 1-.332-1.64c0-1.137.46-2.227 1.278-3.03A4.4 4.4 0 0 1 19.407 6a4.4 4.4 0 0 1 3.083 1.255 4.249 4.249 0 0 1 1.277 3.03Zm-4.36 2.571a2.656 2.656 0 0 0 1.85-.753 2.57 2.57 0 0 0 .567-.834 2.533 2.533 0 0 0-.567-2.803 2.656 2.656 0 0 0-3.7 0 2.55 2.55 0 0 0-.766 1.819c0 .682.275 1.336.766 1.818a2.64 2.64 0 0 0 1.85.753ZM9.233 21.714c0 1.137.459 2.227 1.277 3.03A4.4 4.4 0 0 0 13.593 26a4.399 4.399 0 0 0 3.083-1.255 4.249 4.249 0 0 0 1.277-3.03 4.249 4.249 0 0 0-1.277-3.031 4.4 4.4 0 0 0-3.083-1.255 4.4 4.4 0 0 0-3.083 1.255 4.249 4.249 0 0 0-1.277 3.03Zm4.36 2.572a2.64 2.64 0 0 1-1.85-.753 2.55 2.55 0 0 1-.766-1.819c0-.682.275-1.336.766-1.818a2.64 2.64 0 0 1 1.85-.753c.694 0 1.36.27 1.85.753a2.55 2.55 0 0 1 .766 1.818 2.55 2.55 0 0 1-.766 1.819 2.64 2.64 0 0 1-1.85.753Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M19.116 21.667a.85.85 0 0 1 .256-.606.88.88 0 0 1 .616-.25h8.14a.88.88 0 0 1 .617.25.85.85 0 0 1 0 1.212.88.88 0 0 1-.617.252h-8.14a.88.88 0 0 1-.616-.252.85.85 0 0 1-.256-.606ZM13.012 9.382a.88.88 0 0 1 .616.25.85.85 0 0 1 0 1.213.88.88 0 0 1-.616.251h-8.14a.88.88 0 0 1-.617-.251.85.85 0 0 1 0-1.212.88.88 0 0 1 .617-.251h8.14ZM4 21.667a.85.85 0 0 1 .255-.606.88.88 0 0 1 .617-.25h2.326a.88.88 0 0 1 .616.25.85.85 0 0 1 0 1.212.88.88 0 0 1-.616.252H4.872a.88.88 0 0 1-.617-.252.85.85 0 0 1-.255-.606ZM28.128 9.382a.88.88 0 0 1 .617.25.85.85 0 0 1 0 1.213.88.88 0 0 1-.617.251h-2.326a.88.88 0 0 1-.616-.251.85.85 0 0 1 0-1.212.88.88 0 0 1 .616-.251h2.326Z'/%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='%23333' d='M16 13.428a.857.857 0 0 0-.857.858v6.857a.857.857 0 1 0 1.715 0v-6.857a.857.857 0 0 0-.857-.857Zm.858-2.571a.857.857 0 1 1-1.715 0 .857.857 0 0 1 1.715 0Z'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm0 22.286a10.285 10.285 0 1 1 0-20.571 10.285 10.285 0 0 1 0 20.57Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M6.755 16.673a1.044 1.044 0 0 1 0-1.367l6.88-7.942a1.052 1.052 0 0 1 1.479-.114 1.048 1.048 0 0 1 .317 1.124 1.046 1.046 0 0 1-.202.356l-6.29 7.26 6.286 7.257a1.047 1.047 0 0 1-.094 1.503 1.055 1.055 0 0 1-1.498-.137l-6.878-7.94Zm10 0a1.044 1.044 0 0 1 0-1.367l6.88-7.942a1.052 1.052 0 0 1 1.479-.114 1.048 1.048 0 0 1 .317 1.124 1.046 1.046 0 0 1-.202.356l-6.29 7.26 6.286 7.257a1.047 1.047 0 0 1-.094 1.503 1.055 1.055 0 0 1-1.498-.137l-6.878-7.94Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M16.755 16.673a1.044 1.044 0 0 1 0-1.367l6.88-7.942a1.05 1.05 0 0 1 1.121-.313 1.053 1.053 0 0 1 .724.915 1.043 1.043 0 0 1-.252.764l-6.289 7.26 6.285 7.257a1.047 1.047 0 0 1-.093 1.503 1.056 1.056 0 0 1-1.498-.137l-6.878-7.94Z' clip-rule='evenodd'/%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%3Cpath fill='%23333' fill-rule='evenodd' d='M9.54 16.79c1.642 0 2.677-.965 2.677-2.351 0-.924-.501-1.627-1.408-1.921.608-.316 1.024-.851 1.024-1.555C11.833 9.799 10.948 9 9.571 9c-1.376 0-2.25.85-2.283 2.016h1.227c.064-.588.47-.924 1.024-.924.534 0 .971.294.982.913 0 .798-.662 1.05-1.504 1.05v1.05h.298c.875 0 1.558.378 1.558 1.292 0 .714-.501 1.291-1.302 1.291-.832 0-1.27-.483-1.355-1.197H6.915c.096 1.302 1.013 2.3 2.624 2.3Zm6.466.011c1.569 0 2.657-1.07 2.657-2.561 0-1.492-.97-2.489-2.411-2.489-.864 0-1.409.347-1.707.662h-.022c.032-1.25.47-2.3 1.558-2.3.715 0 1.088.483 1.163.966h1.312C18.396 9.861 17.532 9 16.092 9c-1.942 0-2.86 1.543-2.86 4.21 0 2.3.929 3.591 2.774 3.591Zm-.01-1.165c-.79 0-1.366-.578-1.366-1.417 0-.83.587-1.407 1.355-1.407s1.355.609 1.355 1.428c0 .797-.587 1.396-1.344 1.396Zm9.116-2.72c0 2.205-.534 3.896-2.689 3.896-2.155 0-2.688-1.69-2.688-3.896 0-1.995.469-3.916 2.688-3.916 2.22 0 2.689 1.921 2.689 3.916Zm-3.958 0c0 1.607.245 2.772 1.27 2.772 1.034 0 1.269-1.165 1.269-2.772 0-1.48-.192-2.75-1.27-2.75-1.077 0-1.27 1.27-1.27 2.75Zm6.736-.462c1.003 0 1.771-.745 1.771-1.722 0-.976-.768-1.732-1.77-1.732-1.004 0-1.782.756-1.782 1.732 0 .977.778 1.723 1.781 1.723Zm0-.902a.825.825 0 1 1 0-1.649c.46 0 .832.357.832.83 0 .472-.362.819-.832.819Zm-26.876 4.87c.2-.37.655-.782 1.415-1.19.663-.357 1.523-.693 2.565-.993a.444.444 0 0 0 .312-.541.439.439 0 0 0-.545-.304c-1.091.314-2.02.673-2.758 1.07-.822.442-1.453.955-1.774 1.547-.34.629-.295 1.283.091 1.881.367.568 1.03 1.07 1.907 1.51 1.76.885 4.471 1.56 7.684 1.94 2.73.323 5.717.421 8.617.288l-.597.635a.433.433 0 0 0 .024.619.45.45 0 0 0 .628-.024l1.319-1.403a.44.44 0 0 0 .054-.058l.003-.002a.434.434 0 0 0-.042-.633l-1.51-1.239a.45.45 0 0 0-.625.056.433.433 0 0 0 .056.616l.68.557c-2.863.133-5.811.037-8.501-.281-3.17-.375-5.762-1.034-7.386-1.85-.816-.41-1.317-.823-1.56-1.2-.225-.348-.238-.666-.057-1Zm26.544-2.933a.439.439 0 0 0-.549.295.444.444 0 0 0 .304.546c1.485.454 2.558.979 3.183 1.518.339.292.514.561.581.794.063.221.04.448-.097.696-.297.537-1.107 1.134-2.517 1.685-1.29.505-2.975.929-4.937 1.238a.443.443 0 0 0-.374.5.44.44 0 0 0 .504.365c2.009-.315 3.764-.753 5.135-1.29 1.445-.564 2.515-1.257 2.97-2.08.238-.43.304-.891.172-1.351-.128-.448-.431-.853-.85-1.215-.763-.658-1.98-1.23-3.525-1.701Z' clip-rule='evenodd'/%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='%23333' d='M16.682 4.3a.923.923 0 0 0-1.363 0l-4.923 5.385a.923.923 0 0 0 1.362 1.244l3.318-3.63v13.624a.923.923 0 1 0 1.846 0V7.301l3.32 3.63a.924.924 0 0 0 1.362-1.246L16.682 4.3Z'/%3E%3Cpath fill='%23333' d='M5.846 19.692a.923.923 0 0 0-1.846 0v.068c0 1.682 0 3.04.144 4.107.148 1.108.468 2.04 1.207 2.782.741.74 1.674 1.058 2.782 1.208C9.2 28 10.558 28 12.24 28h7.52c1.683 0 3.04 0 4.107-.143 1.108-.15 2.04-.467 2.782-1.208.74-.741 1.058-1.674 1.209-2.782C28 22.8 28 21.442 28 19.76v-.068a.923.923 0 1 0-1.846 0c0 1.766-.002 2.998-.127 3.929-.122.903-.344 1.38-.684 1.722-.341.34-.819.562-1.723.684-.93.124-2.161.127-3.928.127h-7.384c-1.766 0-3-.003-3.929-.127-.903-.122-1.38-.345-1.722-.684-.34-.341-.562-.819-.684-1.723-.124-.93-.127-2.162-.127-3.928Z'/%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='%23333' fill-rule='evenodd' d='M16 12.143a3.827 3.827 0 0 0-2.713 1.13 3.867 3.867 0 0 0 0 5.454 3.827 3.827 0 0 0 5.426 0 3.867 3.867 0 0 0 0-5.454A3.827 3.827 0 0 0 16 12.143ZM13.698 16c0-.614.242-1.202.674-1.636a2.296 2.296 0 0 1 3.256 0 2.32 2.32 0 0 1 0 3.272 2.296 2.296 0 0 1-3.256 0A2.32 2.32 0 0 1 13.698 16Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M16 7c-4.619 0-7.73 2.781-9.537 5.14l-.031.042c-.41.534-.785 1.024-1.04 1.604C5.119 14.41 5 15.087 5 16s.119 1.591.392 2.213c.256.58.631 1.072 1.04 1.605l.032.042C8.27 22.22 11.381 25 16 25s7.73-2.781 9.537-5.14l.032-.042c.409-.533.784-1.024 1.04-1.605.272-.622.391-1.3.391-2.213s-.119-1.591-.392-2.213c-.256-.58-.631-1.071-1.04-1.605l-.032-.042C23.73 9.78 20.619 7 16 7Zm-8.32 6.08c1.667-2.177 4.38-4.537 8.32-4.537 3.94 0 6.652 2.36 8.32 4.538.45.586.711.936.884 1.329.162.368.261.817.261 1.59 0 .773-.1 1.222-.26 1.59-.174.393-.437.743-.885 1.33-1.669 2.177-4.38 4.537-8.32 4.537-3.94 0-6.652-2.36-8.32-4.538-.45-.586-.711-.936-.884-1.329-.162-.368-.261-.817-.261-1.59 0-.773.1-1.222.26-1.59.174-.393.438-.743.886-1.33Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M26.534 11.06a.768.768 0 0 1 .411.412.733.733 0 0 1-.008.574l-.704-.296.706.296-.003.004-.003.007-.01.024-.04.084c-.223.453-.471.894-.744 1.321a15.046 15.046 0 0 1-1.888 2.394l.99.97a.74.74 0 0 1-.019 1.04.776.776 0 0 1-1.066.02l-1.024-1a11.9 11.9 0 0 1-2.327 1.496l.956 1.435a.736.736 0 0 1-.225 1.038.782.782 0 0 1-1.062-.22l-1.114-1.674c-.799.255-1.661.428-2.591.49v1.775a.74.74 0 0 1-.225.53.777.777 0 0 1-1.085 0 .741.741 0 0 1-.225-.53v-1.775c-.855-.057-1.7-.213-2.517-.466l-1.099 1.65a.758.758 0 0 1-.484.325.786.786 0 0 1-.578-.105.75.75 0 0 1-.336-.766.74.74 0 0 1 .11-.272l.935-1.402a11.802 11.802 0 0 1-2.346-1.49l-.983.96a.777.777 0 0 1-1.075-.008.742.742 0 0 1-.01-1.052l.945-.924a15.011 15.011 0 0 1-2.525-3.455 9.915 9.915 0 0 1-.192-.388l-.01-.025-.005-.007v-.003h-.002a.737.737 0 0 1-.007-.575.76.76 0 0 1 .41-.411.784.784 0 0 1 .587-.008.76.76 0 0 1 .421.401v.002l.007.014.03.063c.027.058.07.143.128.255a13.332 13.332 0 0 0 2.769 3.584c.886.805 1.972 1.546 3.27 2.034A9.399 9.399 0 0 0 16 18a9.398 9.398 0 0 0 3.39-.619c1.29-.497 2.369-1.243 3.248-2.049a13.321 13.321 0 0 0 2.854-3.8l.028-.063.006-.013m1.008-.396a.785.785 0 0 0-.586-.005.76.76 0 0 0-.42.4l1.006-.395Z' clip-rule='evenodd'/%3E%3C/svg%3E");}

/* 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='33' height='33' fill='none'%3E%3Cpath fill='%23666' fill-rule='evenodd' d='M15.179 2.899a12.28 12.28 0 1 0 0 24.558 12.28 12.28 0 0 0 0-24.558ZM.667 15.178C.667 7.163 7.164.666 15.179.666S29.69 7.163 29.69 15.178s-6.496 14.511-14.51 14.511C7.164 29.69.667 23.193.667 15.178Zm28.142 13.024a.566.566 0 0 0-.606.606c0 .002.006.04.036.15.033.124.084.292.161.55.07.235.116.387.153.5.039.116.052.138.046.128a.567.567 0 0 0 .81.204c-.01.006.012-.008.1-.09.088-.083.2-.194.373-.369.175-.174.286-.285.368-.372.07-.074.09-.102.092-.104a.565.565 0 0 0-.204-.805c-.001 0-.032-.015-.13-.048a19.754 19.754 0 0 0-.5-.153c-.182-.056-.366-.11-.55-.16a1.485 1.485 0 0 0-.149-.037Zm-2.83.792a2.798 2.798 0 0 1 3.016-3.017c.298.026.658.134 1.047.25l.107.033.097.03c.357.104.692.205.945.34a2.8 2.8 0 0 1 1.012 4.01c-.16.239-.407.486-.67.75l-.071.07-.072.072c-.263.264-.51.51-.748.67a2.798 2.798 0 0 1-4.01-1.012c-.136-.253-.235-.588-.343-.945l-.03-.097-.03-.107c-.118-.387-.225-.749-.25-1.047Z' clip-rule='evenodd'/%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='%23333' fill-rule='evenodd' d='M15.148 5.729c-.685.09-1.531.285-2.735.563l-1.372.317c-1.015.234-1.716.397-2.251.58-.517.178-.81.352-1.03.573-.22.22-.395.512-.572 1.029-.183.535-.346 1.235-.58 2.252l-.318 1.37c-.277 1.205-.472 2.05-.562 2.736-.09.668-.068 1.12.05 1.53.117.412.34.806.768 1.325.441.533 1.054 1.148 1.928 2.022l2.043 2.043c1.517 1.517 2.596 2.594 3.525 3.302.909.695 1.574.955 2.25.955.675 0 1.34-.26 2.25-.955.927-.708 2.008-1.786 3.525-3.303 1.518-1.518 2.595-2.598 3.304-3.525.692-.91.954-1.574.954-2.25 0-.676-.26-1.34-.955-2.25-.708-.929-1.786-2.01-3.303-3.526l-2.043-2.043c-.873-.873-1.488-1.486-2.02-1.927-.52-.428-.915-.65-1.325-.768-.411-.118-.863-.138-1.53-.05m-.218-1.66c.8-.106 1.502-.103 2.21.1.709.204 1.306.573 1.929 1.087.602.498 1.272 1.167 2.11 2.006l2.117 2.116c1.462 1.462 2.621 2.621 3.405 3.65C27.51 14.085 28 15.103 28 16.292c0 1.19-.49 2.208-1.297 3.265-.785 1.03-1.942 2.188-3.406 3.65l-.09.09c-1.462 1.462-2.62 2.621-3.65 3.405C18.5 27.51 17.482 28 16.293 28s-2.207-.49-3.265-1.297c-1.028-.785-2.187-1.942-3.65-3.406L7.262 21.18c-.838-.838-1.508-1.509-2.006-2.11-.514-.624-.883-1.221-1.086-1.93-.204-.708-.207-1.41-.101-2.21.102-.775.316-1.7.582-2.854l.335-1.454c.223-.964.404-1.75.62-2.376.225-.655.507-1.205.971-1.67.465-.464 1.016-.748 1.67-.97.627-.218 1.412-.398 2.376-.62l1.454-.335c1.155-.268 2.079-.48 2.854-.583m-1.734 7.461a1.396 1.396 0 1 0-1.974 1.974 1.396 1.396 0 0 0 1.974-1.974Zm-3.157-1.183a3.07 3.07 0 1 1 4.341 4.341 3.07 3.07 0 0 1-4.342-4.342m13.83 4.527a.837.837 0 0 1 0 1.184l-7.79 7.791a.838.838 0 0 1-1.184-1.183l7.79-7.792a.84.84 0 0 1 1.184 0Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .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='%23333' fill-rule='evenodd' d='M17.025 5.675s-.031.007-.077.063L8.82 15.766a.384.384 0 0 0-.046.39c.057.137.128.14.142.14h3.953c1.153 0 1.915.98 1.915 1.97v7.762c0 .199.101.271.146.29.026.01.04.008.046.007 0 0 .03-.005.077-.063l8.127-10.028a.385.385 0 0 0 .046-.39c-.057-.138-.128-.14-.142-.14h-3.953c-1.155 0-1.915-.982-1.915-1.97V5.972c0-.199-.101-.271-.146-.29a.08.08 0 0 0-.045-.007Zm.728-1.533a1.95 1.95 0 0 1 1.205 1.83v7.762c0 .113.042.197.087.246.043.047.075.05.086.05h3.953c.884 0 1.502.572 1.76 1.192.257.62.22 1.412-.29 2.041l-8.127 10.028a1.866 1.866 0 0 1-2.18.567 1.95 1.95 0 0 1-1.205-1.83v-7.762a.362.362 0 0 0-.087-.246c-.043-.047-.076-.05-.086-.05H8.916c-.884 0-1.501-.572-1.76-1.192a2.005 2.005 0 0 1 .29-2.04L15.573 4.71a1.866 1.866 0 0 1 2.18-.568Z' clip-rule='evenodd'/%3E%3C/svg%3E");}


/*
*
* Submenu
*
*/

.header-submenu > .header-submenu-column:nth-child(1) > .header-submenu-title:nth-child(2) a { color: var(--color-theme);} 
.header-submenu-title { color: var(--color-theme);} 
.header-submenu-title .featured { color: var(--color-featuredmenu);} 
.submenu-image-item-link .link { padding: 0px; text-transform: uppercase;}  

/*
*
* Menu mobile
*
*/

#mobile-inst-menu .mobile-menu-lang .mobile-inst-menu-exp { display: flex; margin-left: 0px; font-size: 14px; gap: 10px;} 
#mobile-inst-menu .mobile-menu-lang .mobile-inst-menu-exp:hover::before { opacity: 0.5;} 
#mobile-inst-menu .mobile-menu-user-not-logged .mobile-inst-menu-exp { font-size: 14px;} 
.header-main-block-holder .rdc-icon-menu-close { mask-image: none;}

@media screen and (max-width: 1199px) {
    #mobile-main-menu .list-nav-title { font-size: 18px; font-weight: 500;} 
	.mobile-nav-item-return .list-nav-title { font-size: 16px; font-weight: 600; flex: 1; text-align: center;} 
	#mobile-main-menu .list-nav-subtitle { font-size: 18px; }
	.mobile-menu-sub-sub .return2 .rdc-mobile-nav-item-return-wrapper .list-nav-title { font-size: 16px; font-weight: 600;} 
}

#mobile-holder #mobile-main-menu-sub-sub .mobile-menu-sub-scroll .mobile-nav-wrapper-item .mobile-nav-item-3 span { font-size: 16px; font-weight: 500;} 
.mobile-menu #mobile-holder .mobile-menu-sub-sub .featured { color: var(--color-black);}
.mobile-menu #mobile-holder .mobile-menu-sub-sub .mobile-nav-wrapper-item .featured span::after { color: var(--color-featuredmenu); position: absolute; content: "NEW";padding-left: 6px;transform: translateY(-1px);z-index: 10;font-size: 10px;font-weight: 300; text-transform: uppercase;} 


/*
*
* Search Bar
*
*/ 

@media screen and (max-width:1199px) {
	body #header-search-5546-cnt #rdc-overlay-search-resp-list li a { font-size: 14px;} 
	.mobile-nav-wrapper-item .list-nav-subtitle {font-size: 16px;line-height: 152%;}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.rdc-headersearch-results #rdc-overlay-search-resp-btn-2 .button { min-height: 40px; color: var(--color-theme);background-color: var(--color-white);text-transform: none;border: 1px solid var(--color-lines);}
}

@media screen and (max-width: 767px) {
	.rdc-headersearch-results #rdc-overlay-search-resp-btn-1 .button { min-height: 40px; color: var(--color-theme); background-color: var(--color-white); text-transform: none; border: 1px solid var(--color-lines);} 
	#search-resp-col-1054 #col-1354 .hrsearch-exp-results { font-size: 16px; font-weight: 600; opacity: 1 !important; text-transform: none !important;} 
}

/*
*
* Wishlist
*
*/

.wishlist .section-products .product-item .rdc-product-item-right-actions .rdc-icon-svg{background-color: transparent;}
.wishlist .section-products .product-item .rdc-product-item-content .rdc-product-item-colors-size > div > div + div p{color: var(--color-darkgray) !important;}
.wishlist .section-products .product-item .rdc-product-item-content .rdc-product-item-colors-size > span{color: var(--color-darkgray) !important;}
.wishlist .section-products .product-item .rdc-product-item-content .rdc-product-item-stock-flags{display: none !important;}
.product-item.rdc-product-item-regular .rdc-product-item-content .btn-cart{color: var(--color-white); border-color: var(--color-theme); background-color: var(--color-theme);} 
body .section-products .product-item .rdc-product-item-content .price.rdc-product-item-promo-date .rdc-promo-date{font-family: var(--base-fontfamily); color: var(--color-darkgray); font-size: 11px;}
body .section-products .product-item .rdc-product-item-content .price.rdc-product-item-promo-30days .rdc-promo-30days{text-align: center; font-family: var(--base-fontfamily); color: var(--color-darkgray); font-size: 11px;}

.wishlist article.product-item .rdc-product-item-wrapper-actions{margin-top: 3px;padding-bottom: 10px;}

/* MOBILE */
@media screen and (max-width: 767px) {
    .wishlist .section-products div:not(.col-xs-12) article.product-item .image .rdc-product-item-right-actions{top: 4px; right: 4px;}
    .wishlist .section-products .product-item .rdc-product-item-right-actions .rdc-icon-svg{background-size: 18px; width: 22px; height: 22px;}
    body .section-products .product-item .rdc-product-item-content .price.rdc-product-item-promo-date .rdc-promo-date{font-size: 10px; }
    body .section-products .product-item .rdc-product-item-content .price.rdc-product-item-promo-30days .rdc-promo-30days{font-size: 10px;}
	.wishlist .section-products .product-item .rdc-product-item-content .rdc-product-item-colors-size > div > div + div p { font-size: 14px; }
	.product-item.rdc-product-item-regular .rdc-product-item-content .btn-cart{min-width: 100%;}
}

/* DESKTOP */
@media screen and (min-width:1200px){
    .product-item.rdc-product-item-regular .rdc-product-item-content .btn-cart{min-height: 48px;}
    .wishlist .section-products .product-item .rdc-product-item-right-actions .rdc-icon-svg{background-size: 24px;}
}

/* HOVERS */
@media (hover:hover) {
    body .product-item.rdc-product-item-regular .rdc-product-item-content .btn-cart:hover{color: var(--color-theme); border: 1px solid var(--color-theme); background-color: transparent;}
}

/*
 *
 * Account
 *
*/
body #account-background-left{background-color: transparent;}
body .account .listNotifications .checkbox-switch input:checked + label{background-color: var(--color-theme);}

/*
*
* Detail
*
*/
@media screen and (max-width: 1199px) {
    .rdc-product-price.price p, #product-bar-price p, .rdc-pack-resume-price p {font-size: 14px;}
}

@media screen and (min-width: 1200px) {
    .rdc-product-price.price p, #product-bar-price p, .rdc-pack-resume-price p {font-size: 16px;}
}

.rdc-product-price.price .discount, #product-bar-price .discount, .rdc-pack-resume-price .discount {padding: 0 8px;}
.rdc-label-desc-title {font-size: 14px;font-weight: 500;}
.rdc-label-desc-value {font-weight: normal;color: var(--color-darkgray);}
.wrapper-colors .rdc-product-label .rdc-label-desc-title {display: inline-block !important;}
/* .wrapper-colors .colors {max-width: 410px;} */
.size-guide-link {display: inline-flex;gap: 10px;align-items: center;border: 1px solid var(--color-lines);min-height: 42px;padding: 0 15px;border-radius: var(--input-border-radius);text-decoration: none;}
.size-guide-link .rdc-icon-svg {width: 20px;height: 20px;}
.size-guide-link:hover {background-color: var(--color-background);}
.size-guide-link:hover .rdc-icon-svg{opacity: 1 !important;}
@media screen and (max-width: 767px) {
    .size-guide-link:not(#mobile-open-sizeguide) span{display: none;}
}

/*
*
* Product Item
*
*/
/* .productMask:before {background-color: rgba(0,0,0,0.5);}  
.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);}
/* body article.product-item .price p:not(:last-child) {margin-right: 0;} */
body #product-bar{display: none !important;}

body article.product.ads,
body article.product-item{border: 1px solid var(--color-background); border-radius: 10px; overflow: hidden;}
body article.product-item .rdc-product-item-content .rdc-product-item-colors .magic-radio:checked + label, 
body article.product-item .rdc-product-item-content .rdc-product-item-colors .magic-radio[checked] + label{border-color: var(--color-theme);}
body article.product-item .rdc-product-item-content .rdc-product-item-colors .magic-radio+ label{width: 16px; height: 16px;}
body article.product-item .rdc-product-item-content .rdc-product-item-colors .magic-radio:not(:checked )+ label{border: unset; width: 14px; height: 14px;}
body article.product-item .rdc-product-item-content .rdc-product-item-colors .magic-radio:not(:checked) + label > span{padding: 0; border: 1px solid var(--color-lines); border-radius: 100%;}
article.product-item .list-nav-subtitle.rdc-product-item-brand{color: var(--color-black);}
body article.product-item .addWish .rdc-icon-svg{background-color: transparent; border-radius: unset;}
body .rdc-product-item-actions-top-item:not(.sel) .rdc-icon-svg:first-child,
body .rdc-product-item-actions-top-item:not(.sel){display: none;}
body article.product-item .rdc-product-item-content .rdc-product-item-wrapper-cs1 .rest-colors{color: var(--color-darkgray);}
body article.product-item:not(.rdc-product-item-small) .rdc-product-item-content .price .desde{font-size: 11px;}
body article.product-item .rdc-product-item-content .price .desde{color: var(--color-darkgray);}
body article.product-item .slider .slick-arrow.slick-disabled {opacity: 0.5 !important;}

body article.product-item.rdc-product-item-small .rdc-product-item-content .price{gap: 0 6px;}
body article.product-item.rdc-product-item-small .rdc-product-item-content .price .old,
body article.product-item.rdc-product-item-small .rdc-product-item-content .price .current{font-size: 14px;}

body article.product.ads .rdc-product-item-content { text-align: center;padding: 13px 10px 7px;min-height: 101px; }
body article.product.ads .name { font-size: 16px;font-weight: 500;margin-bottom: 3px; }

body .product-item-more-colors-label{color: var(--color-darkgray);}

body .wishlist .rdc-product-color-item .color-name,
.rdc-product-item-variants-wishlist .value{line-height: 100%;color: var(--color-darkgray);}

@media screen and (min-width:768px) and (max-width: 991px){
	body article.product.ads .rdc-product-item-content { min-height: 123px; }
}
@media screen and (min-width: 992px) and (max-width: 1199px){
	body article.product.ads .rdc-product-item-content { min-height: 123px; }
}

/* MOBILE */
@media screen and (max-width: 767px) {
    body article.product-item .addWish .rdc-icon-svg{width: 18px; height: 18px; background-size: 18px;}
	body article.product.ads,
	body article.product-item{border-radius: 6px;}
}

/* TABLET */
@media screen and (min-width:768px) and (max-width: 1199px){
    #rdc-productdetail-area-a .product-gallery .wrapper-pager{display: none;}
    body article.product-item .addWish .rdc-icon-svg{ width: 22px; height: 22px; border-radius: unset; background-size: 20px;}
}

/* DESKTOP */
@media screen and (min-width:1200px){
    body article.product-item .addWish .rdc-icon-svg{ width: 24px; height: 24px; border-radius: unset; background-size: 24px;}
	body article.product-item .addWish .rdc-icon-circle{width: 24px;height: 24px;}
}

/* HOVERS */
@media (hover:hover) {
    body article.product-item:not(.rdc-product-item-small):hover{border-color: var(--color-gray);}
}

/*
 *
 * Filters
 *
*/

#rdc-productlist-area-c #filters-desktop .box-filter .title-filter-wrap{border: 1px solid var(--color-lines); border-radius: 50px; background-color: transparent;}
#rdc-productlist-area-c #filters-desktop .filters .box-filter.active .title-filter-wrap{border-bottom: 0; border-radius: 20px 20px 20px 0;}
body #rdc-productlist-area-c #filters-desktop .filters .box-filter:last-child .title-filter .paragraph.item-name{color: var(--color-theme);}
body #rdc-productlist-area-c #filters-desktop .filters .box-filter:last-child .title-filter .rdc-icon-svg{filter: brightness(0) saturate(100%) invert(59%) sepia(23%) saturate(389%) hue-rotate(131deg) brightness(88%) contrast(86%);}
#rdc-productlist-area-c #filters-desktop .magic-checkbox+label:before{border-radius: 4px;}
#rdc-productlist-area-c #filters-desktop .magic-checkbox:checked+label:before{border-color: var(--color-theme); border-radius: 4px;}
#rdc-productlist-area-c #filters-desktop .magic-checkbox+label:after{top: calc(50% - 2px); left: 8px;}
#rdc-productlist-area-c #filters-desktop .magic-checkbox:checked+label:after,
#rdc-productlist-area-c #filters-desktop .magic-radio:checked+label:before{border-color: var(--color-theme);}
#rdc-productlist-area-c #filters-desktop .magic-radio:checked+label:after{background-color: var(--color-theme);}

/* MOBILE & TABLET */
@media screen and (max-width: 1199px) {
    #filters-mobile #filters-bar-column-btn-filters .filters-bar-btn{background-color: transparent; border-color: transparent; min-height: 42px; text-transform: none; padding-top: 1px;}
    #filters-mobile #filters-bar{border: 1px solid var(--color-lines); border-radius: 50px;}
	.filters-bar-btn { padding-top: 1px;}
    #filters-popup .rdc-wrapper-popup-footer{padding: 13px !important; border-top: 1px solid var(--color-theme); background-color: var(--color-background);}
    #filters-popup .magic-checkbox:checked+label:after{border-color: var(--color-theme); top: calc(50% - 2px); left: 8px;}
    #filters-popup .magic-checkbox+label:before{border-radius: 4px;}
    #filters-popup .magic-checkbox:checked+label:before{border-color: var(--color-theme); border-radius: 4px;}
    #filters-popup .magic-radio:checked+label:before{border-color: var(--color-theme);}
    #filters-popup .magic-radio:checked+label:after{background-color: var(--color-theme);}
    #filters-popup .rdc-wrapper-popup-header .rdc-icon-arrowleft{width: 30px !important; height: 30px !important; margin: 0 13px 0 0 !important; background-size: 20px;}
}

/*
 *
 * Footer
 *
*/
.menu-footer a {text-decoration: none;}
.menu-footer a:hover {text-decoration: underline;}


/* HOVERS */
@media (hover:hover) {
    .newsletter-footer-form-column.newsletter-footer-form-column-right button:hover{border-color: var(--color-theme) var(--color-theme); background-color: transparent; color: var(--color-theme);}
}

/*
 *
 * Search
 *
*/

#container-search-results-5467 #rdc-overlay-search-resp-subtitle,
#container-search-results-5467 #header-search-6655 .hrsearch-exp-results{text-transform: none !important; opacity: 1 !important;}
#container-search-results-5467 #rdc-overlay-search-resp-list li a{color: var(--color-black);} 

/* Newsletter */

/* MOBILE */
@media screen and (max-width:767px){
	.wrapper-blocks .heading-titles .short-content-heading-titles{padding-top: 14px;}
}