/*
 *
 * CSS VARS 
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #AAA39B;
	--color-theme2: #919684;
	--color-black: #333333;
	--color-darkgray: #666666;
	--color-gray: #999999;
	--color-lightgray: #CCCCCC;
	--color-white: #FFFFFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F5F5F5;
	--color-lines: #CCCCCC;
	--color-link: #5F779A;
	--color-help: #72767C;
	--color-helplight: #F5F5F5;
	--color-error: #CB8072;
	--color-errorlight: #FFF0EC;
	--color-success: #1EA74E;
	--color-successlight: #E7FAF3;
	--color-warning: #F0A92D;
	--color-warninglight: #FFF5E1;
	--color-info: #007BC3;
	--color-infolight: #E9F5FC;
	--color-buttoncart: #AAA39B;
	--color-buttoncart-hover: #938A80;

	--base-fontfamily: "Biko", sans-serif;

    --container-width: 1920px; /* (2560px | 1920px | 1680px | 1440px) */
	--container-padding: 40px;
	--container-padding-n: -40px;

	--container-width-FH: 2560px; /* (2560px | 1920px | 1680px | 1440px) */
	--container-padding-FH: 24px;
	--container-padding-n-FH: -24px;

	--row-padding: 15px;
	--row-padding-n: -15px;
	--productlist-padding: 40px;
	--productdetail-padding: 40px;
	--color-featuredmenu: #CB8072;
	--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: 8px;
	--button-border-radius: 1000px;
	--button-circle-size: 32px;
	--button-circle-icon-size: 24px;
	--button-hover-opacity: 0.5;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 35px;
	--sp-medium: 60px;
	--sp-large: 80px;


	--magic-width: 22px;
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 30px;
		--sp-medium: 45px;
		--sp-large: 70px;
	}
}

@media screen and (max-width: 1199px) {
	:root {
		--container-padding: 14px;
		--container-padding-n: -14px;

		--container-padding-FH: 14px;
		--container-padding-n-FH: -14px;

		--productlist-padding: 14px;
		--productdetail-padding: 14px;
		--row-padding: 14px;
		--row-padding-n: -14px;
	}
}

/*
 *
 * Tipography
 *
*/
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	font-family: var(--base-fontfamily);
	font-weight: 400;
	font-size: 16px;
	color: var(--color-black);
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 160%;
	font-weight: 400;
}

/* PARAGRAPH - A */
.paragraph a, .paragraph .a,
a.paragraph, .paragraph.a {
	color: var(--color-link);
	text-decoration: underline;
}

/* A - Hover */
@media (hover: hover) {
	a:hover, .a:hover,
	.paragraph a:hover, .paragraph .a:hover,
	a.paragraph:hover, .paragraph.a:hover {
		text-decoration: none;
	}

	.paragraph a:hover, a.paragraph:hover {
		color: var(--color-link);
		text-decoration: none;
	}
}

/* PARAGRAPH - B (For mozilla) */
body b, body strong {font-weight: bold;}

/* SMALL */ 
a.small, .a.small, .small, small, .small, .small::before, .small::after {
	font-weight: 400; /* Required font-weight  */
	font-size: 14px;
	color: var(--color-darkgray);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 700;
	font-size: 60px;
	line-height: 140%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 400;
	font-size: 40px;
	line-height: 140%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 700;
	font-size: 32px;
	line-height: 140%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 160%;
}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 700;
	font-size: 16px;
	line-height: 160%;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT */
	/* Brand */
		.brand-list-product,
		.rdc-product-item-brand {
			font-weight: 400;
			font-size: 12px;
			line-height: 140%;
			color: var(--color-darkgray);
			text-transform: uppercase;
		} 

	/* Name */
		.product-item .desc .name,
		.rdc-product-item-name {
			font-weight: 400;
			font-size: 14px;
			line-height: 140%;
			letter-spacing: 1px;
		}

	/* Ref */
		.rdc-product-item-ref {
			color: var(--color-gray);
			font-size: 13px;
		}

	/* Price */
		.price {
			display: inline-flex;
			align-items: center;
			grid-auto-flow: column;
			grid-gap: 2px 8px;
			flex-wrap: wrap;
			line-height: 130%;
		}

		/* Price Old */
		.price .old {
			font-weight: 400;
			font-size: 14px;
			color: var(--color-darkgray);
			text-decoration: line-through;
			margin-right: 0 !important;
		}

		/* Price Discount */
		.price .discount {
			font-weight: 400;
			font-size: 13px;
			line-height: 130%;
			min-height: 18px;
			background: var(--color-error); /* Required */
			color: var(--color-white); /* Required */
			padding: 2px 4px 0;
			border-radius: 4px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		

		/* Price Current */
		.price .current {
			font-weight: 400;
			font-size: 14px;
		}

	/* Price Horizontal */
		.priceh {
			display: inline-flex;
			align-items: center;
			grid-auto-flow: column;
			grid-gap: 2px 8px;
			flex-wrap: wrap;
			line-height: 100%;
		}

		/* Priceh Old */
		.priceh .old {
			font-weight: 400;
			font-size: 16px;
			color: var(--color-darkgray);
			text-decoration: line-through;
		}

		/* Priceh Discount */
		.priceh .discount {
			font-weight: 400;
			font-size: 15px;
			background: var(--color-error);
			color: var(--color-white);
			min-height: 21px;
			padding: 0px 4px 0;
			border-radius: 4px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		/* Priceh Current */
		.priceh .current {
			font-weight: 400;
			font-size: 16px;
		}

	/* Desde, Package Type, Value */
	.desde, .packageType, .value {
		font-weight: 400;
		font-size: 12px;
		line-height: 130%;
		color: var(--color-darkgray);
	}

	.price .desde, .priceh .desde {
		margin-right: -4px;
	}

	/* Promo Date */
	.rdc-promo-date {
		font-weight: 400;
		font-size: 12px;
		line-height: 130%;
		color: var(--color-darkgray);
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-weight: 400;
		font-size: 12px;
		line-height: 130%;
		color: var(--color-darkgray);
	}

/* PRODUCT DETAIL */
	/* Brand */
		.rdc-product-brand {
			font-weight: 400;
			font-size: 18px;
			line-height: 160%;
			color: var(--color-black);
		} 

	/* Name */
		.rdc-product-name {
			font-weight: 700;
			font-size: 32px;
			line-height: 160%;
			letter-spacing: 1px;
		}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 40px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 32px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 26px;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 20px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 18px;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 17px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle {
		font-size: 16px;
	}

	/* SIGNATURE */
	.signature {
		font-size: 14px;
	}

	/* PRODUCT */
	/* Brand */
	.brand-list-product,
	.rdc-product-item-brand {
		
	} 

	/* Name */
	.product-item .desc .name,
	.rdc-product-item-name {
		
	}

	/* Price */
	.price {
		grid-gap: 2px 8px;
	}

	.price .current, .price .old {
		font-size: 13px;
	}

	article.product-item .price .discount { margin-bottom: 3px; }
	
	.price .discount { min-height: 17px;font-size: 12px; }
	body.MacOS .price .discount { min-height: 16px;line-height: 100%; }
	.priceh .discount { min-height: 18px;font-size: 13px; }
	
	.price .discount { min-height: 17px;font-size: 12px; }


	/* Price Desde, Type, packageType */
	.price .desde, .price .type, .price .packageType, .price .date {
		font-size: 10px;
	}

	/* Promo Date */
	.price .date,
	.rdc-promo-date {
		font-size: 10px;
	}
	

	/* Price Horizontal */
	.priceh .old, .priceh .current {
		font-size: 14px;
	}

	/* Promoï¿½ï¿½o ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 11px;
	}

	/* PRODUCT DETAIL */
	/* Brand */
		.rdc-product-brand {
			font-size: 12px;
		} 
	/* Name */
		.rdc-product-name {
			font-size: 24px;
			font-weight: 400;
			letter-spacing: 0;
		} 
}

/* ==========================================================================
   PRODUCT ITEM SMALL (.rdc-product-item-small)
   --------------------------------------------------------------------------
   Versão compacta do product item com estilos da versão mobile.
   Os estilos de preço previamente aplicados para mobile devem ser
   duplicados nesta área. Estes estilos serão usados em desktop quando se 
   pretende aplicar visualmente a aparência de mobile.
   Usar a classe: .rdc-product-item-small
========================================================================== */
@media screen and (min-width: 1200px) {
	/* Brand */
	.rdc-product-item-small .brand-list-product,
	.rdc-product-item-small .rdc-product-item-brand {
		font-size: 12px;
	} 

	/* Name */
	.rdc-product-item-small .product-item .desc .name,
	.rdc-product-item-small .rdc-product-item-name {
		font-size: 14px;
	}

	/* Price */
	.rdc-product-item-small .price {
		grid-gap: 2px 8px;
	}

	.rdc-product-item-small .price p {
		font-size: 13px;
	}

	/* Price Desde, Type, packageType */
	.rdc-product-item-small .price .desde,
	.rdc-product-item-small .price .type,
	.rdc-product-item-small .price .packageType, .price .date {
		font-size: 10px;
	}

	/* Promo Date */
	.rdc-product-item-small .price .date,
	.rdc-product-item-small .rdc-promo-date {
		font-size: 10px;
	}

	/* Price Horizontal */
	.rdc-product-item-small .priceh .old,
	.rdc-product-item-small .priceh .discount,
	.rdc-product-item-small .priceh .current {
		font-size: 14px;
	}

	/* Promoção ultimos 30 dias */
	.rdc-product-item-small .rdc-promo-30days {
		font-size: 11px;
	}
}

/* ! aqui ! */
/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 700;
		font-size: 15px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 1px 24px 0;
		border: 1px solid var(--color-black);
		background-color: var(--color-black);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 90px;
		min-height: 42px;
		border-radius: var(--button-border-radius);
		letter-spacing: 1px;
		user-select: none;
	}

	.button:not(.btn-cart):not(.btn-cart-sec).loader, button:not(.btn-cart):not(.btn-cart-sec).loader, input[type=submit]:not(.btn-cart):not(.btn-cart-sec).loader, input[type=button]:not(.btn-cart):not(.btn-cart-sec).loader {
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

	/* Normal Hover */
	@media (hover: hover) {
		.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-black);
			border-color: var(--color-black);
			background-color: transparent;
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-darkgray);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn-light, .button.white, button.btn-light, button.white, input[type=submit].btn-light, input[type=submit].white, input[type=button].btn-light, input[type=button].white {
		color: var(--color-black);
		border-color: var(--color-white);
		background-color: var(--color-white);
	}

	/* White Hover */
	@media (hover: 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-color: 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-darkgray);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2 {
		color: var(--color-black);
		border-color: var(--color-black);
		background-color: transparent;
	}

	/* Normal Hover */
	@media (hover: 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-color: var(--color-black);
			background-color: var(--color-black);
		}
	}

	/* 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-darkgray);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn2.btn-light, .button.btn2.white, button.btn2.btn-light, button.btn2.white, input[type=submit].btn2.btn-light, input[type=submit].btn2.white, input[type=button].btn2.btn-light, input[type=button].btn2.white,
	body #main .contentTitles_button.btn-light {
		color: var(--color-white);
		border-color: var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover: 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-black); 
			border-color: 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-darkgray);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline; /* Required */
		font-weight: 400;
		font-size: 16px;
		line-height: 130%;
		text-decoration: none !important;
		padding: 4px 0 5px;
		border: 0;
		background: transparent;
		letter-spacing: 1px;
		color: var(--color-link);
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover: hover) {
		.button.link:not([disabled]):hover, .link:not([disabled]):hover {
			border-color: transparent;
			color: var(--color-link);
		}
	}

	/* Normal Disable */
	.button.link[disabled], .link[disabled] {
		cursor: default !important;
		border-color: transparent;
		color: #C1BAB4;
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover: hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {
			color: var(--color-white);
		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		border-color: transparent;
		color: #C1BAB4;
	} 

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
		border-radius: var(--input-border-radius);
	}

	/* Normal hover e active */
	@media (hover: hover) {
		.button-card:not(.disabled):not(.esgotado):not(.active):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
	}

	/* Disable */
	.button-card.disabled {}

	/* Esgotado */
	.button-card.esgotado {}

	/* Title */
	.button-card-title {}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

	@media screen and (hover) {
		.button-card:not(.disabled):not(.esgotado):hover{
			background-color: var(--color-white);
		}
	}


/* Buttons Cart - (Nota: O tamanho do botÃ£o deve ser igual ao .button, no detalhe devem customizar a altura) */
	/* Normal */
	.btn-cart, .btn-cart-sec, .btn-cart-esgotado {
		font-weight: 700;
		font-size: 15px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 1px 24px 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		letter-spacing: 1px;
		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: 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;
		color: var(--color-white);
		background-color: var(--color-buttoncart);
		border-color: var(--color-buttoncart);
		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: 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: -12px 0 0 -12px;
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center/24px;
}

/* Button Cart Secundario Loading */
.btn-cart-sec.loader {
	color: transparent;
}

.btn-cart-sec.loader::before {
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%230F355C'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center / 24px;
}

/* Button Icon */
.btn-icon {min-width: 0;padding: 0;}
.btn-icon .rdc-icon-svg {width: 24px;height: 24px;flex-shrink: 0;}
@media (hover: hover) {
	.btn-icon:not(.sel):not(.active):not(.disabled):not([disabled]):hover .rdc-icon-svg {filter: invert(1);}
}

/*
 *
 * FLAGS
 *
*/
.flags .flag {font-weight: 700;line-height: normal;text-transform: uppercase;min-height: 20px;display: flex;justify-content: center;align-items: center;border-radius: 4px;font-size: 12px;padding: 1px 6px;text-transform: uppercase;}
.blog .flags .flag{line-height: normal;color: var(--color-white);text-transform: uppercase;background: #8C93AB;border-top-left-radius: 0;border-bottom-left-radius: 0;font-size: 10px;text-transform: unset;min-height: 23px;padding: 1px 10px;}
.blog .flags.flagsStatic .flag{color: #8C93AB;}

/*
 *
 * Accordions
 *
*/
body .accordion > li {
	border-color: transparent;
}

body .accordion > li > div > .list-nav-subtitle { font-size: 18px; }

body .accordion > li.active {
	border-color: transparent;
	color: var(--color-darkgray);
}

body .accordion > li.active + li {
	border-top-color: transparent;
}

.accordion-head {
	user-select: none;
}

.accordion .accordion-head, .accordion .accordion-content {
	padding-left: 15px;
	padding-right: 4em;
}

@media screen and (max-width: 991px) {
	body .accordion > li > div > .list-nav-subtitle { font-size: 17px; }
}





/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0 7px;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 10px 20px;
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: var(--button-border-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	min-width: 124px;
	user-select: none;
}

@media (hover: hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		color: var(--color-theme);
		border-color: var(--color-theme);
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-theme);
	border-color: 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;line-height: 130%;}
.label-title { font-size: 16px;font-weight: 700; }

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], input[type=date], select {
	padding: 7px 15px;
	border: 1px solid var(--color-lines);
	min-height: 37px;
	background-color: white;
	color: currentColor; /* Required */
	border-radius: var(--input-border-radius);
}

input[type=file] {
	padding: 7px 15px;
}

@media (hover: hover) {
	input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=search]:hover, input[type=file]:hover, input[type=date]:hover, textarea:hover, div.select:not(.disabled,[readonly]):hover,
	input[type="checkbox"].magic-checkbox:not([checked]):not([disabled]):hover, input[type="radio"].magic-radio:not([checked]):not([disabled]):hover {
		border-color: var(--color-gray);
	}
 	input[type=text].filled:not(:focus):hover, input[type=number].filled:not(:focus):hover, input[type=email].filled:not(:focus):hover, input[type=password].filled:not(:focus):hover, input[type=tel].filled:not(:focus):hover, input[type=file].filled:not(:focus):hover, input[type=date].filled:not(:focus):hover, textarea.filled:not(:focus):hover, .select.filled:hover {border-color: var(--color-darkgray);}
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=date]:focus, input[type=number]:focus, textarea:focus {
    border-color: var(--color-darkgray);
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=search]:disabled, input[type=date]:disabled, input[type=number]:disabled, textarea:disabled, div.select[disabled],
input[type=text].disabled, input[type=email].disabled, input[type=password].disabled, input[type=tel].disabled, input[type=search].disabled, input[type=date].disabled, input[type=number].disabled, textarea.disabled, div.select.disabled {
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-lines)!important;
	-webkit-text-fill-color: var(--color-lines);
	-webkit-opacity: 1; 
	cursor: default;
}
input[type=text]:not(:focus).filled, input[type=number]:not(:focus).filled, input[type=email]:not(:focus).filled, input[type=password]:not(:focus).filled, input[type=tel]:not(:focus).filled, input[type=file]:not(:focus).filled, input[type=date]:not(:focus).filled, textarea.filled:not(:focus), .select.filled:not(:focus) {border-color: var(--color-darkgray);}


/* Select */
div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	overflow-x: hidden;
	border-radius: var(--input-border-radius);
}

body div.select select {
	position: relative;
	width: 100%;
	padding: 5px 40px 5px 15px;
	min-height: 35px;
	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: 23px; /* Mozilla */
}

body div.select:not([readonly])::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 10L5 10L16 22L27 10Z' fill='black'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 10L5 10L16 22L27 10Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-position: left top;
    mask-position: left top;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	background-color: var(--color-black);
}

body div.select:not([readonly]).active::after {
	-webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m5 22h22l-11-12z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m5 22h22l-11-12z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E");
}

div.select.loading:not([readonly])::after {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
	mask-image: none;
	-webkit-mask-image: none;
}

div.select select:disabled{
	background-color: var(--color-background);
}

div.select select::-ms-expand{
	display: none;
}

div.select[disabled]::after{
	opacity: 0.3;
}

div.select:has(select:focus){
	border-color: var(--color-black) !important;
}

/* Normal Readonly */
select[readonly], div.select[readonly] {
	pointer-events: none;
}

/* Input date */
div.input-date::after {
	mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.12 6.98H21.5V5.22C21.5 5.099 21.401 5 21.28 5H19.74C19.619 5 19.52 5.099 19.52 5.22V6.98H12.48V5.22C12.48 5.099 12.381 5 12.26 5H10.72C10.599 5 10.5 5.099 10.5 5.22V6.98H5.88C5.39325 6.98 5 7.37325 5 7.86V26.12C5 26.6068 5.39325 27 5.88 27H26.12C26.6068 27 27 26.6068 27 26.12V7.86C27 7.37325 26.6068 6.98 26.12 6.98ZM25.02 25.02H6.98V14.57H25.02V25.02ZM6.98 12.7V8.96H10.5V10.28C10.5 10.401 10.599 10.5 10.72 10.5H12.26C12.381 10.5 12.48 10.401 12.48 10.28V8.96H19.52V10.28C19.52 10.401 19.619 10.5 19.74 10.5H21.28C21.401 10.5 21.5 10.401 21.5 10.28V8.96H25.02V12.7H6.98Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
}

.magic-checkbox:checked:before { background-size: 18px; }

/* Magic Checkbox & Radio */
.magic-checkbox:checked:before {
	background-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m6.08383 16.5946c2.2994 1.7838 4.52697 3.4932 6.75447 5.277 4.0958-5.6486 8.1916-11.2973 12.2874-16.8716.9342.74324 1.8683 1.41216 2.8743 2.15541-4.8144 6.61489-9.6287 13.22969-14.4431 19.84459-3.1617-2.527-6.39522-4.9797-9.5569-7.5068.71856-.9662 1.36527-1.9324 2.08383-2.8986z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.magic-checkbox:not(:disabled), .magic-radio:not(:disabled) {
	background-color: var(--color-white);
}

.magic-radio:not(:checked), .magic-checkbox:not(:checked) {
	border-color: var(--color-lines);
}

.magic-radio:checked:not(:disabled), .magic-checkbox:checked:not(:disabled) {
	border-color: var(--color-black);
}

.magic-radio:checked:not(:disabled):before {
	background-color: var(--color-black);
}

.magic-radio:disabled:checked::before {
	background-color: var(--color-lines);
}

.magic-radio:disabled:checked {
	border-color: var(--color-lines);
}

.magic-radio:disabled {
	background-color: var(--color-background);
}

.magic-radio:disabled + label, .magic-checkbox:disabled + label {
	color: var(--color-gray);
}

/* Label máximo caracteres */
.form-field .max-carac {
    color: var(--color-darkgray);
}

::-webkit-input-placeholder {color: var(--color-gray);}
::-moz-placeholder {color: var(--color-gray);}
:-ms-input-placeholder {color: var(--color-gray);}
:-moz-placeholder {color: var(--color-gray);}



/*
 *
 * Messages Bar
 *
*/
.form-message .help,
.form-message .success,
.form-message .info,
.form-message .warning,
.form-message .error {
	background-repeat: no-repeat;
	background-position: left 10px center;
	background-size: 20px;
	line-height: 140%;
	border-radius: var(--input-border-radius);
	border: 1px solid;
	padding: 5px 8px 5px 36px;
	background-size: 18px;
}

.form-message .help {
	background-color: var(--color-helplight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.99994 15.1875C10.641 15.1875 12.2148 14.5356 13.3752 13.3752C14.5355 12.2148 15.1874 10.641 15.1874 9C15.1874 7.35897 14.5355 5.78516 13.3752 4.62478C12.2148 3.4644 10.641 2.8125 8.99994 2.8125C7.35891 2.8125 5.7851 3.4644 4.62472 4.62478C3.46433 5.78516 2.81244 7.35897 2.81244 9C2.81244 10.641 3.46433 12.2148 4.62472 13.3752C5.7851 14.5356 7.35891 15.1875 8.99994 15.1875ZM8.99994 16.875C11.0885 16.875 13.0916 16.0453 14.5684 14.5685C16.0453 13.0916 16.8749 11.0886 16.8749 9C16.8749 6.91142 16.0453 4.90838 14.5684 3.43153C13.0916 1.95468 11.0885 1.125 8.99994 1.125C6.91136 1.125 4.90832 1.95468 3.43147 3.43153C1.95462 4.90838 1.12494 6.91142 1.12494 9C1.12494 11.0886 1.95462 13.0916 3.43147 14.5685C4.90832 16.0453 6.91136 16.875 8.99994 16.875ZM7.24494 5.1075C7.72869 4.70925 8.36319 4.47187 8.99994 4.47187C10.3691 4.47187 11.6324 5.39437 11.6324 6.87937C11.6324 7.3035 11.5447 7.7175 11.2972 8.11687C11.0632 8.49825 10.7201 8.80762 10.3128 9.09225C10.0687 9.26437 9.94719 9.38137 9.88644 9.46125C9.84369 9.51975 9.84369 9.54 9.84369 9.56137C9.84369 9.78515 9.75479 9.99976 9.59656 10.158C9.43833 10.3162 9.22372 10.4051 8.99994 10.4051C8.77616 10.4051 8.56155 10.3162 8.40332 10.158C8.24508 9.99976 8.15619 9.78515 8.15619 9.56137C8.15619 8.66812 8.76819 8.11462 9.34531 7.71075C9.66031 7.49025 9.79531 7.33725 9.86056 7.2315C9.92361 7.12575 9.95303 7.00335 9.94494 6.8805C9.94494 6.543 9.67044 6.15937 8.99994 6.15937C8.75042 6.16481 8.5098 6.25307 8.31594 6.41025C8.12806 6.5655 8.05606 6.73312 8.05606 6.8805C8.05606 7.10428 7.96717 7.31889 7.80894 7.47712C7.6507 7.63535 7.43609 7.72425 7.21231 7.72425C6.98854 7.72425 6.77393 7.63535 6.61569 7.47712C6.45746 7.31889 6.36856 7.10428 6.36856 6.8805C6.36856 6.12225 6.75669 5.508 7.24606 5.10637M8.99994 13.5C9.29831 13.5 9.58446 13.3815 9.79543 13.1705C10.0064 12.9595 10.1249 12.6734 10.1249 12.375C10.1249 12.0766 10.0064 11.7905 9.79543 11.5795C9.58446 11.3685 9.29831 11.25 8.99994 11.25C8.70157 11.25 8.41542 11.3685 8.20444 11.5795C7.99347 11.7905 7.87494 12.0766 7.87494 12.375C7.87494 12.6734 7.99347 12.9595 8.20444 13.1705C8.41542 13.3815 8.70157 13.5 8.99994 13.5Z' fill='%2372767C'/%3e%3c/svg%3e ");
	border-color: var(--color-help);
}

.form-message .success {
	background-color: var(--color-successlight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1875 9C15.1875 10.641 14.5356 12.2148 13.3752 13.3752C12.2148 14.5356 10.641 15.1875 9 15.1875C7.35897 15.1875 5.78516 14.5356 4.62478 13.3752C3.4644 12.2148 2.8125 10.641 2.8125 9C2.8125 7.35897 3.4644 5.78516 4.62478 4.62478C5.78516 3.4644 7.35897 2.8125 9 2.8125C10.641 2.8125 12.2148 3.4644 13.3752 4.62478C14.5356 5.78516 15.1875 7.35897 15.1875 9ZM16.875 9C16.875 11.0886 16.0453 13.0916 14.5685 14.5685C13.0916 16.0453 11.0886 16.875 9 16.875C6.91142 16.875 4.90838 16.0453 3.43153 14.5685C1.95469 13.0916 1.125 11.0886 1.125 9C1.125 6.91142 1.95469 4.90838 3.43153 3.43153C4.90838 1.95469 6.91142 1.125 9 1.125C11.0886 1.125 13.0916 1.95469 14.5685 3.43153C16.0453 4.90838 16.875 6.91142 16.875 9Z' fill='%231EA74E'/%3e%3cpath d='M12.3937 6.64057C12.2435 6.5158 12.0509 6.45659 11.8586 6.47083C11.6895 6.48341 11.5293 6.55276 11.4055 6.66748L11.3544 6.71912L8.18811 10.3012L6.60168 8.76313L6.59784 8.76038L6.54346 8.71369C6.41118 8.61186 6.24761 8.5575 6.07983 8.55878C5.88804 8.56032 5.70278 8.63473 5.56457 8.76862C5.42618 8.90275 5.34564 9.08597 5.34375 9.27948C5.34195 9.4731 5.41867 9.65858 5.55468 9.79529L5.55853 9.79859L7.70746 11.8832C7.78009 11.9537 7.8668 12.0083 7.96124 12.0442C8.05566 12.0801 8.15643 12.0968 8.25732 12.0931C8.35815 12.0893 8.45756 12.0656 8.54901 12.0228C8.64048 11.9799 8.72256 11.9184 8.78961 11.8426L12.4744 7.67328L12.5195 7.6167C12.5617 7.55824 12.5951 7.49367 12.6184 7.42499C12.6493 7.33336 12.6616 7.23637 12.6541 7.13989C12.6464 7.04337 12.6192 6.94929 12.5744 6.86359C12.5296 6.77791 12.4679 6.70225 12.3937 6.64057Z' fill='%231EA74E'/%3e%3c/svg%3e ");
	border-color: var(--color-success);
}

.form-message .info {
	background-color: var(--color-infolight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.99988 15.1875C10.6409 15.1875 12.2147 14.5356 13.3751 13.3752C14.5355 12.2148 15.1874 10.641 15.1874 9C15.1874 7.35897 14.5355 5.78516 13.3751 4.62478C12.2147 3.4644 10.6409 2.8125 8.99988 2.8125C7.35885 2.8125 5.78504 3.4644 4.62465 4.62478C3.46427 5.78516 2.81238 7.35897 2.81238 9C2.81238 10.641 3.46427 12.2148 4.62465 13.3752C5.78504 14.5356 7.35885 15.1875 8.99988 15.1875ZM8.99988 16.875C11.0885 16.875 13.0915 16.0453 14.5683 14.5685C16.0452 13.0916 16.8749 11.0886 16.8749 9C16.8749 6.91142 16.0452 4.90838 14.5683 3.43153C13.0915 1.95469 11.0885 1.125 8.99988 1.125C6.9113 1.125 4.90826 1.95469 3.43141 3.43153C1.95456 4.90838 1.12488 6.91142 1.12488 9C1.12488 11.0886 1.95456 13.0916 3.43141 14.5685C4.90826 16.0453 6.9113 16.875 8.99988 16.875ZM10.1249 6.1875C10.1249 6.48587 10.0064 6.77202 9.79537 6.983C9.58439 7.19397 9.29825 7.3125 8.99988 7.3125C8.70151 7.3125 8.41536 7.19397 8.20438 6.983C7.9934 6.77202 7.87488 6.48587 7.87488 6.1875C7.87488 5.88913 7.9934 5.60298 8.20438 5.392C8.41536 5.18103 8.70151 5.0625 8.99988 5.0625C9.29825 5.0625 9.58439 5.18103 9.79537 5.392C10.0064 5.60298 10.1249 5.88913 10.1249 6.1875ZM9.84363 9.5625C9.84363 9.33872 9.75473 9.12411 9.5965 8.96588C9.43826 8.80764 9.22365 8.71875 8.99988 8.71875C8.7761 8.71875 8.56149 8.80764 8.40326 8.96588C8.24502 9.12411 8.15613 9.33872 8.15613 9.5625V12.375C8.15613 12.5988 8.24502 12.8134 8.40326 12.9716C8.56149 13.1299 8.7761 13.2188 8.99988 13.2188C9.22365 13.2188 9.43826 13.1299 9.5965 12.9716C9.75473 12.8134 9.84363 12.5988 9.84363 12.375V9.5625Z' fill='%23007BC3'/%3e%3c/svg%3e ");
	border-color: var(--color-info);
}

.form-message .warning {
	background-color: var(--color-warninglight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.04842 4.41547L2.64414 13.6264C2.54767 13.791 2.49689 13.9777 2.49689 14.1678C2.49688 14.3579 2.54767 14.5446 2.64413 14.7092C2.74059 14.8739 2.87934 15.0106 3.04642 15.1056C3.2135 15.2006 3.40303 15.2507 3.59596 15.2507H14.4045C14.5974 15.2507 14.787 15.2006 14.9541 15.1056C15.1211 15.0106 15.2599 14.8739 15.3563 14.7092C15.4528 14.5446 15.5036 14.3579 15.5036 14.1678C15.5036 13.9777 15.4528 13.791 15.3563 13.6264L9.95206 4.41439C9.85559 4.24979 9.71684 4.1131 9.54977 4.01807C9.38269 3.92303 9.19316 3.873 9.00024 3.873C8.80732 3.873 8.61779 3.92303 8.45071 4.01807C8.28363 4.1131 8.14489 4.25087 8.04842 4.41547ZM11.3787 3.60224C10.3214 1.79925 7.67912 1.79925 6.62069 3.60224L1.21641 12.8131C0.157971 14.6172 1.48019 16.875 3.59596 16.875H14.4045C16.5203 16.875 17.8425 14.6172 16.783 12.8131L11.3787 3.60224ZM9.00024 6.58771C9.21886 6.58771 9.42853 6.67328 9.58313 6.82559C9.73772 6.9779 9.82456 7.18447 9.82456 7.39987V9.56561C9.82456 9.78101 9.73772 9.98758 9.58313 10.1399C9.42853 10.2922 9.21886 10.3778 9.00024 10.3778C8.78161 10.3778 8.57194 10.2922 8.41735 10.1399C8.26276 9.98758 8.17591 9.78101 8.17591 9.56561V7.39987C8.17591 7.18447 8.26276 6.9779 8.41735 6.82559C8.57194 6.67328 8.78161 6.58771 9.00024 6.58771ZM10.0993 12.8142C10.0993 13.1014 9.98354 13.3769 9.77742 13.5799C9.5713 13.783 9.29174 13.8971 9.00024 13.8971C8.70874 13.8971 8.42918 13.783 8.22306 13.5799C8.01694 13.3769 7.90114 13.1014 7.90114 12.8142C7.90114 12.527 8.01694 12.2516 8.22306 12.0485C8.42918 11.8454 8.70874 11.7314 9.00024 11.7314C9.29174 11.7314 9.5713 11.8454 9.77742 12.0485C9.98354 12.2516 10.0993 12.527 10.0993 12.8142Z' fill='%23F0A92D'/%3e%3c/svg%3e ");
	border-color: var(--color-warning);
}

.form-message .error {
	background-color: var(--color-errorlight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1874 9C15.1874 10.641 14.5355 12.2148 13.3751 13.3752C12.2147 14.5356 10.6409 15.1875 8.99988 15.1875C7.35885 15.1875 5.78504 14.5356 4.62465 13.3752C3.46427 12.2148 2.81238 10.641 2.81238 9C2.81238 7.35897 3.46427 5.78516 4.62465 4.62478C5.78504 3.4644 7.35885 2.8125 8.99988 2.8125C10.6409 2.8125 12.2147 3.4644 13.3751 4.62478C14.5355 5.78516 15.1874 7.35897 15.1874 9ZM16.8749 9C16.8749 11.0886 16.0452 13.0916 14.5683 14.5685C13.0915 16.0453 11.0885 16.875 8.99988 16.875C6.9113 16.875 4.90826 16.0453 3.43141 14.5685C1.95456 13.0916 1.12488 11.0886 1.12488 9C1.12488 6.91142 1.95456 4.90838 3.43141 3.43153C4.90826 1.95468 6.9113 1.125 8.99988 1.125C11.0885 1.125 13.0915 1.95468 14.5683 3.43153C16.0452 4.90838 16.8749 6.91142 16.8749 9ZM7.34613 6.15375C7.18618 6.00471 6.97463 5.92357 6.75604 5.92743C6.53745 5.93128 6.32889 6.01983 6.1743 6.17442C6.01971 6.32901 5.93116 6.53757 5.92731 6.75616C5.92345 6.97475 6.00459 7.1863 6.15363 7.34625L7.80738 9L6.15363 10.6537C6.07073 10.731 6.00424 10.8241 5.95812 10.9276C5.91201 11.0311 5.88721 11.1429 5.88521 11.2562C5.88321 11.3695 5.90405 11.482 5.94649 11.587C5.98893 11.6921 6.05209 11.7875 6.13221 11.8677C6.21233 11.9478 6.30777 12.011 6.41283 12.0534C6.51789 12.0958 6.63042 12.1167 6.74372 12.1147C6.85701 12.1127 6.96873 12.0879 7.07223 12.0418C7.17573 11.9956 7.26888 11.9291 7.34613 11.8462L8.99988 10.1925L10.6536 11.8462C10.7309 11.9291 10.824 11.9956 10.9275 12.0418C11.031 12.0879 11.1427 12.1127 11.256 12.1147C11.3693 12.1167 11.4819 12.0958 11.5869 12.0534C11.692 12.011 11.7874 11.9478 11.8675 11.8677C11.9477 11.7875 12.0108 11.6921 12.0533 11.587C12.0957 11.482 12.1165 11.3695 12.1145 11.2562C12.1125 11.1429 12.0877 11.0311 12.0416 10.9276C11.9955 10.8241 11.929 10.731 11.8461 10.6537L10.1924 9L11.8461 7.34625C11.929 7.269 11.9955 7.17585 12.0416 7.07235C12.0877 6.96886 12.1125 6.85713 12.1145 6.74384C12.1165 6.63055 12.0957 6.51801 12.0533 6.41295C12.0108 6.30789 11.9477 6.21245 11.8675 6.13233C11.7874 6.05221 11.692 5.98905 11.5869 5.94661C11.4819 5.90418 11.3693 5.88334 11.256 5.88533C11.1427 5.88733 11.031 5.91213 10.9275 5.95825C10.824 6.00436 10.7309 6.07085 10.6536 6.15375L8.99988 7.8075L7.34613 6.15375Z' fill='%23CB8072'/%3e%3c/svg%3e ");
	border-color: var(--color-error);
}

.form-field.displayError .label-title,
.form-field.displayError .checkbox-uni label {
	color: var(--color-error);
}

.form-field.displayError input,
.form-field.displayError div.select,
.form-field.displayError textarea,
.form-field.displayError .checkbox-uni .magic-checkbox {
	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: 96;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}



/*
 *
 * Sliders
 *
*/
body .slider .slick-arrow, .rdc-slider-arrow {
	background-color: #FFFFFFBF !important;
	border-radius: 48px;
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.25);
	background-position: center !important;
	background-size: 20px;
	opacity: 1 !important;
}

body .slider .slick-arrow.slick-disabled {visibility: hidden;cursor: default !important;}

body .slider.slick-vertical .slick-arrow, 
body .slick-vertical .rdc-slider-arrow, 
body .vertical .rdc-slider-arrow{transform: rotate(90deg);}


@media (hover: hover) {
	body .slider .slick-arrow:hover, body .rdc-slider-arrow:hover {background-color: var(--color-white) !important;opacity: 1 !important;}
}

.slider .slick-arrow.slick-prev, .rdc-slider-prev {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.4379 10.0001C18.4379 10.2487 18.3391 10.4871 18.1633 10.663C17.9875 10.8388 17.749 10.9376 17.5004 10.9376L4.7629 10.9376L8.1629 14.3376C8.25501 14.4234 8.32888 14.5269 8.38012 14.6419C8.43136 14.7569 8.45891 14.881 8.46114 15.0069C8.46336 15.1328 8.4402 15.2578 8.39305 15.3745C8.3459 15.4913 8.27572 15.5973 8.18669 15.6863C8.09767 15.7754 7.99163 15.8456 7.87489 15.8927C7.75816 15.9399 7.63312 15.963 7.50724 15.9608C7.38136 15.9586 7.25722 15.931 7.14222 15.8798C7.02722 15.8285 6.92372 15.7547 6.8379 15.6626L1.8379 10.6626C1.66233 10.4868 1.56372 10.2485 1.56372 10.0001C1.56372 9.75161 1.66233 9.51333 1.8379 9.33755L6.8379 4.33755C7.01561 4.17195 7.25067 4.0818 7.49355 4.08608C7.73643 4.09037 7.96816 4.18876 8.13992 4.36053C8.31169 4.53229 8.41008 4.76402 8.41437 5.0069C8.41865 5.24978 8.3285 5.48483 8.1629 5.66255L4.7629 9.06255L17.5004 9.06255C17.749 9.06255 17.9875 9.16132 18.1633 9.33714C18.3391 9.51295 18.4379 9.75141 18.4379 10.0001Z' fill='%23666666'/%3e%3c/svg%3e ");
}

.slider.slick-vertical .slick-prev, 
.slick-vertical .rdc-slider-prev, 
.vertical .rdc-slider-prev{top: 16px;left: calc(50% - 16px);}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.5625 10.0001C1.5625 9.75141 1.66127 9.51295 1.83709 9.33714C2.0129 9.16132 2.25136 9.06255 2.5 9.06255L15.2375 9.06255L11.8375 5.66255C11.6719 5.48483 11.5817 5.24978 11.586 5.0069C11.5903 4.76402 11.6887 4.53229 11.8605 4.36053C12.0322 4.18876 12.264 4.09037 12.5068 4.08608C12.7497 4.0818 12.9848 4.17195 13.1625 4.33755L18.1625 9.33755C18.3381 9.51333 18.4367 9.75161 18.4367 10.0001C18.4367 10.2485 18.3381 10.4868 18.1625 10.6626L13.1625 15.6626C13.0767 15.7547 12.9732 15.8285 12.8582 15.8798C12.7432 15.931 12.619 15.9586 12.4932 15.9608C12.3673 15.963 12.2422 15.9399 12.1255 15.8927C12.0088 15.8456 11.9027 15.7754 11.8137 15.6863C11.7247 15.5973 11.6545 15.4913 11.6073 15.3745C11.5602 15.2578 11.537 15.1328 11.5393 15.0069C11.5415 14.881 11.569 14.7569 11.6203 14.6419C11.6715 14.5269 11.7454 14.4234 11.8375 14.3376L15.2375 10.9376L2.5 10.9376C2.25136 10.9376 2.0129 10.8388 1.83709 10.663C1.66127 10.4871 1.5625 10.2487 1.5625 10.0001Z' fill='%23666666'/%3e%3c/svg%3e ");
}

.slider.slick-vertical .slick-next, 
.slick-vertical .rdc-slider-next, 
.vertical .rdc-slider-next{top: auto;bottom: 16px;left: calc(50% - 16px);right: auto;}


.slick-dots li button {border-color: var(--color-black);background-color: var(--color-white);height: 8px;width: 8px;}
.slick-dots li.slick-active button {border-color: var(--color-black);background-color: var(--color-black);}
@media (hover: hover) {
    .slick-dots li button:hover {border-color: var(--color-black);background-color: var(--color-white);opacity: 0.5;}
	.slick-dots li.slick-active button:hover {border-color: var(--color-black);background-color: var(--color-black);opacity: 0.5;}
}

/*
 *
 * Icons SVG
 *
*/
@media (hover: hover) {
	a:not(.disabled):hover .rdc-icon-svg, .a:not(.disabled):hover .rdc-icon-svg, .rdc-icon-hover:hover {
		opacity: var(--button-hover-opacity);
	}
}

/* SVG icons Ex: {mask-image: url("data:image/svg+xml,%3Csvg ... ");} */
body .rdc-icon-svg.rdc-icon-social-share {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.9995 4.99418C22.2039 4.99418 21.4408 5.31033 20.8782 5.87307C20.3156 6.43581 19.9995 7.19905 19.9995 7.99488C19.9995 8.79072 20.3156 9.55396 20.8782 10.1167C21.4408 10.6794 22.2039 10.9956 22.9995 10.9956C23.7952 10.9956 24.5582 10.6794 25.1208 10.1167C25.6834 9.55396 25.9995 8.79072 25.9995 7.99488C25.9995 7.19905 25.6834 6.43581 25.1208 5.87307C24.5582 5.31033 23.7952 4.99418 22.9995 4.99418ZM28.9995 7.99488C28.9986 7.13999 28.8151 6.29516 28.4612 5.51696C28.1074 4.73876 27.5915 4.04516 26.9479 3.48258C26.3044 2.92 25.5481 2.50145 24.7297 2.25493C23.9113 2.00841 23.0497 1.93962 22.2026 2.05318C21.3554 2.16673 20.5424 2.45999 19.8177 2.91334C19.0931 3.36669 18.4737 3.96965 18.0009 4.68186C17.5282 5.39407 17.213 6.19908 17.0765 7.043C16.94 7.88693 16.9854 8.75028 17.2095 9.57525L13.2995 11.8118C12.467 10.9563 11.3983 10.3686 10.23 10.1238C9.06181 9.87906 7.84714 9.98839 6.74136 10.4378C5.63557 10.8872 4.68892 11.6563 4.02246 12.6467C3.35599 13.6371 3 14.8039 3 15.9977C3 17.1916 3.35599 18.3583 4.02246 19.3488C4.68892 20.3392 5.63557 21.1083 6.74136 21.5577C7.84714 22.0071 9.06181 22.1164 10.23 21.8717C11.3983 21.6269 12.467 21.0392 13.2995 20.1837L17.2095 22.4182C16.9678 23.3086 16.9343 24.2428 17.1118 25.1482C17.2892 26.0536 17.6728 26.906 18.2327 27.6392C18.7927 28.3724 19.5139 28.9668 20.3406 29.3762C21.1672 29.7856 22.0771 29.9991 22.9995 30C23.9897 30.0001 24.9646 29.755 25.8371 29.2867C26.7096 28.8184 27.4527 28.1413 28 27.316C28.5474 26.4906 28.882 25.5425 28.974 24.5564C29.0661 23.5702 28.9126 22.5766 28.5275 21.6642C28.1423 20.7517 27.5373 19.9488 26.7666 19.3271C25.9958 18.7053 25.0831 18.284 24.11 18.1008C23.1369 17.9176 22.1336 17.9781 21.1895 18.2769C20.2454 18.5758 19.39 19.1037 18.6995 19.8136L14.7895 17.5771C15.0719 16.5425 15.0719 15.451 14.7895 14.4164L18.6995 12.1799C19.532 13.0355 20.6006 13.6233 21.7688 13.8682C22.9371 14.1131 24.1518 14.0039 25.2576 13.5545C26.3634 13.1052 27.3102 12.3362 27.9768 11.3459C28.6433 10.3555 28.9994 9.18876 28.9995 7.99488ZM22.9995 20.9979C22.2039 20.9979 21.4408 21.3141 20.8782 21.8768C20.3156 22.4395 19.9995 23.2028 19.9995 23.9986C19.9995 24.7944 20.3156 25.5577 20.8782 26.1204C21.4408 26.6832 22.2039 26.9993 22.9995 26.9993C23.7952 26.9993 24.5582 26.6832 25.1208 26.1204C25.6834 25.5577 25.9995 24.7944 25.9995 23.9986C25.9995 23.2028 25.6834 22.4395 25.1208 21.8768C24.5582 21.3141 23.7952 20.9979 22.9995 20.9979ZM5.99951 15.9967C5.99951 15.2009 6.31558 14.4377 6.87819 13.8749C7.4408 13.3122 8.20386 12.996 8.99951 12.996C9.79516 12.996 10.5582 13.3122 11.1208 13.8749C11.6834 14.4377 11.9995 15.2009 11.9995 15.9967C11.9995 16.7926 11.6834 17.5558 11.1208 18.1186C10.5582 18.6813 9.79516 18.9974 8.99951 18.9974C8.20386 18.9974 7.4408 18.6813 6.87819 18.1186C6.31558 17.5558 5.99951 16.7926 5.99951 15.9967Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-fb {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.7857 24.6083C18.9665 24.4094 20.9905 23.39 22.4487 21.7562C23.9069 20.1224 24.6905 17.996 24.6412 15.8067C24.592 13.6174 23.7135 11.5284 22.1833 9.96187C20.6531 8.39533 18.5853 7.46806 16.3977 7.36744C14.2102 7.26681 12.066 8.00033 10.3984 9.41977C8.73087 10.8392 7.6643 12.8387 7.41425 15.0143C7.1642 17.1898 7.7493 19.3792 9.05133 21.1399C10.3534 22.9007 12.2752 24.1016 14.4286 24.4999V18.75H12.4643C12.1517 18.75 11.8519 18.6258 11.6309 18.4048C11.4099 18.1838 11.2857 17.884 11.2857 17.5714C11.2857 17.2589 11.4099 16.9591 11.6309 16.7381C11.8519 16.517 12.1517 16.3929 12.4643 16.3929H14.4286V14.8057C14.4286 13.4166 14.8403 12.3417 15.5631 11.6126C16.286 10.8834 17.3247 10.5 18.5834 10.5C19.0124 10.5 19.5451 10.5629 20.0731 10.8347C20.3436 10.9817 20.5459 11.2286 20.6367 11.5227C20.7275 11.8169 20.6996 12.1349 20.559 12.4087C20.4183 12.6825 20.1762 12.8905 19.8842 12.9881C19.5923 13.0857 19.2737 13.0652 18.9967 12.931C18.8663 12.8756 18.725 12.8504 18.5834 12.8571C17.8087 12.8571 17.4253 13.0834 17.2367 13.2736C17.0481 13.4621 16.7857 13.8864 16.7857 14.8057V16.3929H18.75C19.0626 16.3929 19.3623 16.517 19.5834 16.7381C19.8044 16.9591 19.9286 17.2589 19.9286 17.5714C19.9286 17.884 19.8044 18.1838 19.5834 18.4048C19.3623 18.6258 19.0626 18.75 18.75 18.75H16.7857V24.6083ZM16 27C18.9174 27 21.7153 25.8411 23.7782 23.7782C25.8411 21.7153 27 18.9174 27 16C27 13.0826 25.8411 10.2847 23.7782 8.22183C21.7153 6.15893 18.9174 5 16 5C13.0826 5 10.2847 6.15893 8.22183 8.22183C6.15893 10.2847 5 13.0826 5 16C5 18.9174 6.15893 21.7153 8.22183 23.7782C10.2847 25.8411 13.0826 27 16 27Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-in {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.5556 11.1111C24.5556 10.1387 24.169 9.2063 23.4813 8.51866C22.7937 7.83103 21.8613 7.44444 20.8889 7.44444H11.1111C10.1387 7.44444 9.2063 7.83103 8.51866 8.51866C7.83103 9.2063 7.44444 10.1387 7.44444 11.1111V20.8889C7.44444 21.8613 7.83103 22.7937 8.51866 23.4813C9.2063 24.169 10.1387 24.5556 11.1111 24.5556H20.8889C21.8613 24.5556 22.7937 24.169 23.4813 23.4813C24.169 22.7937 24.5556 21.8613 24.5556 20.8889V11.1111ZM18.4444 16C18.4444 15.3517 18.1867 14.7301 17.7283 14.2717C17.2699 13.8133 16.6483 13.5556 16 13.5556C15.3517 13.5556 14.7301 13.8133 14.2717 14.2717C13.8133 14.7301 13.5556 15.3517 13.5556 16C13.5556 16.6483 13.8133 17.2699 14.2717 17.7283C14.7301 18.1867 15.3517 18.4444 16 18.4444C16.6483 18.4444 17.2699 18.1867 17.7283 17.7283C18.1867 17.2699 18.4444 16.6483 18.4444 16ZM20.2778 10.5119V10.5C20.2778 9.82499 20.825 9.27778 21.5 9.27778C22.175 9.27778 22.7222 9.82499 22.7222 10.5V10.5119C22.7222 11.187 22.175 11.7342 21.5 11.7342C20.825 11.7342 20.2778 11.187 20.2778 10.5119ZM20.8889 16C20.8889 17.2966 20.3734 18.5398 19.4566 19.4566C18.5398 20.3734 17.2966 20.8889 16 20.8889C14.7034 20.8889 13.4602 20.3734 12.5434 19.4566C11.6266 18.5398 11.1111 17.2966 11.1111 16C11.1111 14.7034 11.6266 13.4602 12.5434 12.5434C13.4602 11.6266 14.7034 11.1111 16 11.1111C17.2966 11.1111 18.5398 11.6266 19.4566 12.5434C20.3734 13.4602 20.8889 14.7034 20.8889 16ZM27 20.8889C27 22.5097 26.3557 24.0636 25.2096 25.2096C24.0636 26.3557 22.5097 27 20.8889 27H11.1111C9.49034 27 7.93642 26.3557 6.79036 25.2096C5.64431 24.0636 5 22.5097 5 20.8889V11.1111C5 9.49034 5.64431 7.93642 6.79036 6.79036C7.93642 5.64431 9.49034 5 11.1111 5H20.8889C22.5097 5 24.0636 5.64431 25.2096 6.79036C26.3557 7.93642 27 9.49034 27 11.1111V20.8889Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-lk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.8005 10.4996C24.8004 9.62446 24.4525 8.78516 23.8337 8.16634C23.2148 7.54751 22.3755 7.19959 21.5004 7.19952H10.4996C9.62446 7.19959 8.78516 7.54752 8.16634 8.16634C7.54752 8.78516 7.19959 9.62446 7.19952 10.4996V21.5004C7.19959 22.3755 7.54751 23.2148 8.16634 23.8337C8.78516 24.4525 9.62446 24.8004 10.4996 24.8005H21.5004C22.3755 24.8004 23.2148 24.4525 23.8337 23.8337C24.4525 23.2148 24.8004 22.3755 24.8005 21.5004V10.4996ZM10.4996 20.3998V14.9002C10.4996 14.2927 10.9926 13.7997 11.6002 13.7997C12.2076 13.7998 12.6999 14.2928 12.6999 14.9002V20.3998C12.6999 21.0073 12.2076 21.5003 11.6002 21.5004C10.9926 21.5004 10.4996 21.0074 10.4996 20.3998ZM19.3001 20.3998V17.0998C19.3 16.8081 19.184 16.5285 18.9778 16.3223C18.7716 16.116 18.492 16.0001 18.2003 16C17.9086 16 17.6283 16.116 17.422 16.3223C17.2159 16.5285 17.0998 16.8082 17.0998 17.0998V20.3998C17.0998 21.0074 16.6075 21.5004 16 21.5004C15.3925 21.5004 14.9002 21.0074 14.9002 20.3998V14.9002C14.9002 14.2927 15.3925 13.7997 16 13.7997C16.3036 13.7997 16.5784 13.923 16.7775 14.122C17.2175 13.9118 17.7034 13.7997 18.2003 13.7997C19.0755 13.7997 19.9148 14.1477 20.5336 14.7665C21.1524 15.3853 21.5003 16.2246 21.5004 17.0998V20.3998C21.5004 21.0074 21.0074 21.5004 20.3998 21.5004C19.7924 21.5003 19.3001 21.0073 19.3001 20.3998ZM10.4996 11.6106V11.6002C10.4996 10.9926 10.9926 10.4996 11.6002 10.4996C12.2076 10.4997 12.6999 10.9927 12.6999 11.6002V11.6106C12.6999 12.2181 12.2076 12.7111 11.6002 12.7112C10.9926 12.7112 10.4996 12.2182 10.4996 11.6106ZM27 21.5004C26.9999 22.959 26.4209 24.358 25.3894 25.3894C24.358 26.4209 22.959 26.9999 21.5004 27H10.4996C9.04097 26.9999 7.64197 26.4209 6.61056 25.3894C5.57915 24.358 5.00007 22.959 5 21.5004V10.4996C5.00007 9.04097 5.57915 7.64197 6.61056 6.61056C7.64197 5.57915 9.04097 5.00007 10.4996 5H21.5004C22.959 5.00007 24.358 5.57915 25.3894 6.61056C26.4209 7.64197 26.9999 9.04097 27 10.4996V21.5004Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-pi {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.8603 9.49238C15.8096 9.326 16.7848 9.36976 17.7155 9.62021C18.646 9.87067 19.51 10.3224 20.2475 10.9426C20.9851 11.5629 21.5781 12.3373 21.9845 13.2113C22.3906 14.0849 22.6009 15.0366 22.6 16C22.6 19.2744 20.2841 21.5 17.375 21.5C16.3606 21.5 15.4474 21.112 14.7367 20.4494L13.033 24.2833C13.9842 24.624 14.9875 24.8 16 24.8L16.4329 24.7893C17.4406 24.7396 18.4335 24.5166 19.3677 24.1297C20.4353 23.6874 21.4058 23.0401 22.2229 22.2229C23.0401 21.4058 23.6874 20.4353 24.1297 19.3677C24.5166 18.4335 24.7396 17.4406 24.7893 16.4329L24.8 16C24.8 14.8444 24.5719 13.7 24.1297 12.6323C23.6874 11.5647 23.0401 10.5942 22.2229 9.77705C21.4058 8.95995 20.4353 8.31255 19.3677 7.87031C18.4335 7.48338 17.4406 7.26038 16.4329 7.21074L16 7.2C14.8444 7.2 13.7 7.42807 12.6323 7.87031C11.5647 8.31255 10.5942 8.95995 9.77705 9.77705C8.95995 10.5942 8.31255 11.5647 7.87031 12.6323C7.42807 13.7 7.2 14.8444 7.2 16L7.21074 16.4329C7.26038 17.4406 7.48338 18.4335 7.87031 19.3677C8.31255 20.4353 8.95995 21.4058 9.77705 22.2229C10.1732 22.6191 10.6065 22.9739 11.0683 23.2864L14.9945 14.4531C15.2413 13.898 15.8917 13.6478 16.4469 13.8945C17.002 14.1413 17.2522 14.7917 17.0055 15.3469L15.7476 18.1742C16.1289 18.953 16.7616 19.3 17.375 19.3C19.0221 19.3 20.4 18.1068 20.4 16V15.9989C20.4008 15.3564 20.2605 14.721 19.9896 14.1384C19.7188 13.5558 19.3233 13.0394 18.8316 12.6259C18.3399 12.2124 17.7633 11.912 17.143 11.745C16.5226 11.5781 15.8733 11.5482 15.2405 11.6591C14.6077 11.77 14.0066 12.0184 13.4799 12.3863C12.9532 12.7544 12.5137 13.2342 12.1919 13.7903C11.8702 14.3464 11.6738 14.9659 11.6172 15.6058C11.5677 16.1658 11.6258 16.7297 11.788 17.2665L11.8643 17.4942L11.8976 17.6027C12.0335 18.143 11.7406 18.7092 11.2058 18.9036C10.6704 19.0979 10.0816 18.8515 9.83936 18.3493L9.79639 18.2451L9.68252 17.9024C9.43927 17.0974 9.35153 16.2523 9.42578 15.4124C9.51068 14.4524 9.80464 13.5224 10.2873 12.6882C10.77 11.854 11.4298 11.1358 12.2198 10.5838C13.0098 10.0318 13.911 9.6588 14.8603 9.49238ZM26.9871 16.5414C26.925 17.801 26.6468 19.0423 26.1632 20.2099C25.6104 21.5444 24.7998 22.757 23.7784 23.7784C22.757 24.7998 21.5444 25.6104 20.2099 26.1632C19.0423 26.6468 17.801 26.925 16.5414 26.9871L16 27C14.5555 27 13.1247 26.716 11.7901 26.1632C10.4556 25.6104 9.243 24.7998 8.22158 23.7784C7.20017 22.757 6.38962 21.5444 5.83682 20.2099C5.35318 19.0423 5.07496 17.801 5.01289 16.5414L5 16C5 14.5555 5.28401 13.1247 5.83682 11.7901C6.38962 10.4556 7.20017 9.243 8.22158 8.22158C9.243 7.20017 10.4556 6.38962 11.7901 5.83682C13.1247 5.28401 14.5555 5 16 5L16.5414 5.01289C17.801 5.07496 19.0423 5.35318 20.2099 5.83682C21.5444 6.38962 22.757 7.20017 23.7784 8.22158C24.7998 9.243 25.6104 10.4556 26.1632 11.7901C26.716 13.1247 27 14.5555 27 16L26.9871 16.5414Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.6429 5C18.2346 5 18.7143 5.49249 18.7143 6.1V9.4H21.9286C22.5203 9.4 23 9.89249 23 10.5V14.9C23 15.5075 22.5203 16 21.9286 16H18.7143V20.4H21.9286C22.5203 20.4 23 20.8925 23 21.5V25.9C23 26.5075 22.5203 27 21.9286 27H17.6429C16.2221 27 14.8598 26.4201 13.8552 25.3887C12.8505 24.3572 12.2857 22.9587 12.2857 21.5V16H9.07143C8.47969 16 8 15.5075 8 14.9V10.5C8 9.89249 8.47969 9.4 9.07143 9.4H10.1429L10.3542 9.38926C10.8449 9.33934 11.3062 9.11658 11.6579 8.75547C12.0097 8.39435 12.2266 7.92079 12.2753 7.41699L12.2857 7.2V6.1C12.2857 5.49249 12.7654 5 13.3571 5H17.6429ZM14.4286 7.2C14.4286 8.36695 13.9767 9.48578 13.173 10.3109C12.3693 11.1361 11.2795 11.6 10.1429 11.6V13.8H13.3571C13.9489 13.8 14.4286 14.2925 14.4286 14.9V21.5L14.4443 21.8266C14.5174 22.5819 14.8429 23.2918 15.3703 23.8332C15.9731 24.4521 16.7904 24.8 17.6429 24.8H20.8571V22.6H17.6429C17.0511 22.6 16.5714 22.1075 16.5714 21.5V14.9C16.5714 14.2925 17.0511 13.8 17.6429 13.8H20.8571V11.6H17.6429C17.0511 11.6 16.5714 11.1075 16.5714 10.5V7.2H14.4286Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tw {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.4369 5C11.8261 5.00003 12.1926 5.18525 12.4228 5.49891L17.6472 12.6222L24.9137 5.35807C25.3911 4.88081 26.1648 4.88078 26.6421 5.35807C27.1193 5.83537 27.1193 6.60908 26.6421 7.08637L19.1105 14.6178L26.7638 25.0545C27.0361 25.4259 27.0758 25.9196 26.8676 26.3304C26.6594 26.741 26.2383 27 25.7779 27H20.5631C20.174 27 19.8075 26.8148 19.5772 26.5011L14.3517 19.3766L7.0863 26.6419C6.609 27.1192 5.8353 27.1192 5.35798 26.6419C4.88067 26.1646 4.88067 25.3909 5.35798 24.9136L12.8883 17.381L5.23624 6.94553C4.96387 6.57412 4.9242 6.08043 5.1324 5.6696C5.34065 5.25897 5.7617 5 6.22214 5H11.4369ZM21.1814 24.5556H23.3657L16.5753 15.2958C16.5328 15.2465 16.4953 15.1945 16.4619 15.1406L10.8187 7.44444H8.63439L21.1814 24.5556Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-vm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.5415 5C24.852 5.00001 26.1474 5.57874 27.0065 6.71923C27.866 7.86044 28.1996 9.4379 27.8818 11.3058C27.2058 15.2822 25.021 18.5407 22.7537 21.0024C20.4839 23.4668 18.0568 25.2099 16.8184 26.1208C16.8047 26.1308 16.7911 26.1411 16.777 26.1506C15.9906 26.6807 15.1843 26.9655 14.3783 26.9971C13.5715 27.0286 12.8581 26.8026 12.2641 26.4582C11.1189 25.7941 10.3648 24.6664 9.96509 23.8316V23.8305C9.70817 23.2949 9.42653 22.3317 9.15539 21.3136C8.87214 20.25 8.56397 18.9839 8.26545 17.7655C7.96457 16.5374 7.67427 15.3593 7.42049 14.4438C7.30645 14.0325 7.20147 13.6906 7.1129 13.428C7.0839 13.4399 7.05174 13.4504 7.01929 13.465C6.81525 13.5566 6.61325 13.6717 6.45639 13.769C6.38017 13.8163 6.31841 13.8571 6.27767 13.8847C6.25758 13.8983 6.24266 13.9084 6.2339 13.9145L6.13178 13.9812C5.64639 14.2683 5.01729 14.1986 4.60964 13.7988L3.3647 12.578C2.94507 12.1665 2.8799 11.5218 3.20908 11.0376L3.2103 11.0364V11.0352C3.21111 11.034 3.21269 11.0323 3.21394 11.0304L3.26014 10.9625C3.2914 10.9177 3.33745 10.8541 3.39509 10.7741C3.51037 10.614 3.67627 10.388 3.88505 10.1183C4.3017 9.58019 4.89604 8.85735 5.59684 8.12967C6.29272 7.40713 7.12341 6.64877 8.01865 6.06349C8.89526 5.49039 9.95865 5 11.0921 5C12.2707 5.00001 13.1861 5.49682 13.8397 6.2614C14.4486 6.97382 14.8081 7.88785 15.0518 8.75679C15.2993 9.63921 15.4608 10.6036 15.6014 11.4811C15.7468 12.3887 15.8685 13.1905 16.0366 13.8668C16.3849 15.251 16.6751 16.224 16.9314 16.845C16.9688 16.8052 17.0096 16.7629 17.0506 16.7163C17.5058 16.1985 18.0785 15.3691 18.7052 14.1994C18.9708 13.7037 19.1299 13.2054 19.194 12.7735C19.2582 12.3401 19.2153 12.0453 19.1611 11.8948C19.064 11.9143 18.8787 11.9723 18.5885 12.1464C18.1737 12.3949 17.6487 12.3835 17.2451 12.1178C16.8415 11.8519 16.6324 11.3795 16.7102 10.9088C17.0376 8.92594 17.9626 7.42424 19.2438 6.42594C20.5107 5.43878 22.0531 5 23.5415 5ZM23.5415 7.44174C22.5402 7.44174 21.5634 7.73665 20.7927 8.33712C20.4145 8.63183 20.0668 9.01417 19.7848 9.50195C20.6733 9.69834 21.2216 10.3345 21.4845 11.0113C21.9725 12.268 21.6503 13.9495 20.9082 15.3345C20.2267 16.6063 19.5544 17.6084 18.9362 18.3115C18.6287 18.6613 18.308 18.9666 17.9806 19.195C17.6817 19.4035 17.2325 19.6504 16.6943 19.6504C15.9997 19.6504 15.5329 19.238 15.2804 18.9339C15.0203 18.6205 14.8183 18.2264 14.6506 17.8298C14.3103 17.0248 13.9777 15.8767 13.6185 14.4486L13.6172 14.4462C13.4182 13.6457 13.2792 12.7169 13.1419 11.8602C12.9997 10.9728 12.8561 10.1364 12.6507 9.40418C12.4417 8.6589 12.1992 8.14297 11.931 7.82922C11.7074 7.56782 11.4694 7.44174 11.0921 7.44174C10.6694 7.44174 10.0988 7.6381 9.39976 8.09509C8.71946 8.53985 8.03273 9.15511 7.4059 9.80597C6.96038 10.2686 6.55941 10.7338 6.22783 11.1413C6.5146 11.029 6.85887 10.9257 7.21867 10.8945C7.69479 10.8533 8.41449 10.9313 8.93412 11.5419C9.08918 11.7238 9.19067 11.9301 9.24779 12.0558C9.31579 12.2054 9.37945 12.3743 9.43988 12.547C9.56119 12.8936 9.69058 13.3265 9.82284 13.8036C10.0881 14.7605 10.3884 15.9745 10.6873 17.1944C10.9884 18.4236 11.2894 19.6624 11.565 20.6972C11.8522 21.7753 12.0787 22.5028 12.2179 22.792L12.2191 22.7944C12.5116 23.405 12.9888 24.0418 13.5309 24.3562C13.7805 24.5009 14.0254 24.5677 14.2798 24.5577C14.5339 24.5477 14.8902 24.4566 15.3582 24.1428C16.6158 23.2184 18.8368 21.6129 20.9058 19.3667C22.9955 17.0977 24.8569 14.2511 25.426 10.9028C25.6607 9.52282 25.3718 8.65854 25.0041 8.1702C24.6357 7.68116 24.0984 7.44174 23.5415 7.44174Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-yt {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M26.5455 11.1111C26.5455 10.1387 26.1573 9.2063 25.4668 8.51866C24.7763 7.83103 23.8401 7.44444 22.8636 7.44444H8.13636C7.15988 7.44444 6.22368 7.83103 5.5332 8.51866C4.84273 9.2063 4.45455 10.1387 4.45455 11.1111V20.8889C4.45455 21.8613 4.84273 22.7937 5.5332 23.4813C6.22368 24.169 7.15989 24.5556 8.13636 24.5556H22.8636C23.8401 24.5556 24.7763 24.169 25.4668 23.4813C26.1573 22.7937 26.5455 21.8613 26.5455 20.8889V11.1111ZM12.4402 11.2699C12.825 11.0529 13.2979 11.0588 13.6771 11.2854L19.8134 14.952C20.183 15.1729 20.4091 15.5707 20.4091 16C20.4091 16.4293 20.183 16.8271 19.8134 17.048L13.6771 20.7146C13.2979 20.9412 12.825 20.9471 12.4402 20.7301C12.0557 20.5131 11.8182 20.1068 11.8182 19.6667V12.3333C11.8182 11.8932 12.0557 11.4869 12.4402 11.2699ZM14.2727 17.5075L16.7956 16L14.2727 14.4913V17.5075ZM29 20.8889C29 22.5097 28.353 24.0636 27.2022 25.2096C26.0514 26.3557 24.4911 27 22.8636 27H8.13636C6.5089 27 4.94855 26.3557 3.79776 25.2096C2.64697 24.0636 2 22.5097 2 20.8889V11.1111C2 9.49034 2.64697 7.93642 3.79776 6.79036C4.94855 5.64431 6.5089 5 8.13636 5H22.8636C24.4911 5 26.0514 5.64431 27.2022 6.79036C28.353 7.93642 29 9.49034 29 11.1111V20.8889Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-wa {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.8227 5.00149C18.5003 4.95735 21.1022 5.8927 23.1397 7.63124C25.1773 9.36982 26.5107 11.793 26.8895 14.4452C27.2682 17.0971 26.6663 19.7961 25.1972 22.0358C23.7278 24.2756 21.4917 25.9021 18.9089 26.6099C16.4452 27.285 13.8285 27.0779 11.5049 26.0352L6.29254 26.9655C5.8939 27.0365 5.48819 26.8824 5.23698 26.5648C4.98579 26.2468 4.92958 25.8161 5.09094 25.4443L6.66731 21.8091C5.37074 19.7234 4.80544 17.2575 5.07376 14.804C5.36509 12.1409 6.6179 9.67549 8.59696 7.8708C10.576 6.06625 13.1453 5.04566 15.8227 5.00149ZM15.8592 7.20154C13.7171 7.23686 11.6611 8.05336 10.0778 9.4972C8.49458 10.941 7.49198 12.9131 7.25898 15.0435C7.02599 17.1741 7.57897 19.3168 8.8128 21.0689C9.03341 21.3824 9.07483 21.7883 8.92233 22.14L7.92368 24.4388L11.4598 23.8093L11.6327 23.7921C11.8058 23.7891 11.9782 23.8271 12.1352 23.9039C14.0593 24.8463 16.2617 25.0544 18.3279 24.4883C20.3942 23.922 22.1833 22.6212 23.3588 20.8294C24.5342 19.0375 25.0148 16.8773 24.7118 14.7556C24.4087 12.634 23.3425 10.6957 21.7126 9.30491C20.0826 7.91415 18.0012 7.16627 15.8592 7.20154ZM14.896 13.7824C14.8959 14.2199 14.722 14.6396 14.4128 14.949C14.3019 15.0598 14.1761 15.1519 14.0412 15.2261C14.2572 15.8477 14.611 16.4192 15.085 16.8934C15.5584 17.3669 16.1289 17.7204 16.7494 17.9365C16.8237 17.8014 16.9177 17.6768 17.0286 17.5658L17.1499 17.4563C17.4434 17.2157 17.812 17.0824 18.1948 17.0824H19.2944C19.6771 17.0824 20.0457 17.2157 20.3392 17.4563L20.4605 17.5658L20.5701 17.6862C20.8107 17.9798 20.9438 18.3494 20.9438 18.7325C20.9437 19.17 20.7698 19.5897 20.4605 19.8991C20.1512 20.2084 19.7317 20.3825 19.2944 20.3825H18.1948L17.8673 20.3739C16.2368 20.2929 14.6899 19.6091 13.5301 18.4489C12.2929 17.2112 11.5973 15.5327 11.5972 13.7824V12.6823C11.5972 12.2448 11.7712 11.8251 12.0804 11.5157L12.2018 11.4061C12.4953 11.1656 12.8639 11.0323 13.2466 11.0323L13.4098 11.0398C13.7334 11.072 14.0399 11.2 14.2914 11.4061L14.4128 11.5157L14.5223 11.636C14.7629 11.9297 14.896 12.2993 14.896 12.6823V13.7824Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-ms {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.5481 5.01113C19.4135 5.1294 22.1555 6.18577 24.2586 8.01179C26.3646 9.8405 27.6942 12.3266 27.9536 15.0208C28.213 17.7171 27.3777 20.3887 25.6393 22.5358C23.9044 24.6784 21.3921 26.1513 18.5884 26.7167C15.9252 27.2537 13.1407 26.9426 10.6952 25.836L5.44837 26.9733C5.02778 27.0643 4.59138 26.9188 4.30484 26.5924C4.01844 26.266 3.92559 25.8078 4.06155 25.3925L5.44046 21.1794C4.16674 19.0016 3.72147 16.4776 4.21086 14.0158C4.7393 11.3585 6.30928 8.99969 8.58209 7.35819C10.8523 5.71866 13.683 4.89296 16.5481 5.01113ZM16.4515 7.45117C14.0917 7.3538 11.7877 8.03652 9.96978 9.34938C8.15447 10.6605 6.95919 12.4984 6.56115 14.4995C6.164 16.497 6.57815 18.5681 7.75123 20.3345C7.95983 20.6488 8.01299 21.044 7.89527 21.4039L6.99854 24.1408L10.5855 23.3638L10.6838 23.3468C10.9139 23.317 11.1484 23.3567 11.3584 23.4603C13.4139 24.4762 15.8207 24.7857 18.1229 24.3214C20.4247 23.8571 22.432 22.6583 23.7887 20.9827C25.1417 19.3116 25.7607 17.2778 25.5664 15.2586C25.3717 13.2376 24.3703 11.3172 22.7023 9.86887C21.0311 8.41791 18.8113 7.54864 16.4515 7.45117ZM20.1228 13.7762C20.6737 13.4023 21.4188 13.5544 21.7862 14.115C22.1533 14.6759 22.0042 15.4337 21.4534 15.8076L17.8559 18.2494C17.3803 18.5721 16.7468 18.508 16.3426 18.0965L14.6396 16.3619L11.8599 18.2494C11.3088 18.6231 10.5645 18.4714 10.1973 17.9106C9.83018 17.3496 9.97919 16.5919 10.5301 16.218L14.1276 13.7762L14.2181 13.7198C14.6809 13.4625 15.2611 13.5435 15.64 13.9291L17.343 15.6619L20.1228 13.7762Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-em {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 8H25C25.5 8 25.97 8.12 26.384 8.338L17.5 15C17.0673 15.3246 16.5409 15.5 16 15.5C15.4591 15.5 14.9327 15.3246 14.5 15L5.616 8.338C6.03 8.12 6.502 8 7 8ZM4.002 10.876L4 11V21C4 21.7956 4.31607 22.5587 4.87868 23.1213C5.44129 23.6839 6.20435 24 7 24H25C25.7956 24 26.5587 23.6839 27.1213 23.1213C27.6839 22.5587 28 21.7956 28 21V11L27.998 10.876L19.3 17.4C18.348 18.114 17.19 18.5 16 18.5C14.81 18.5 13.652 18.114 12.7 17.4L4.002 10.876ZM1 11C1 9.4087 1.63214 7.88258 2.75736 6.75736C3.88258 5.63214 5.4087 5 7 5H25C26.5913 5 28.1174 5.63214 29.2426 6.75736C30.3679 7.88258 31 9.4087 31 11V21C31 22.5913 30.3679 24.1174 29.2426 25.2426C28.1174 26.3679 26.5913 27 25 27H7C5.4087 27 3.88258 26.3679 2.75736 25.2426C1.63214 24.1174 1 22.5913 1 21V11Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-sp {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.7893 15.5671C24.7396 14.5594 24.5166 13.5665 24.1297 12.6323C23.6874 11.5647 23.0401 10.5942 22.2229 9.77705C21.4058 8.95995 20.4353 8.31255 19.3677 7.87031C18.4335 7.48338 17.4406 7.26038 16.4329 7.21074L16 7.2C14.8444 7.2 13.7 7.42807 12.6323 7.87031C11.5647 8.31255 10.5942 8.95995 9.77705 9.77705C8.95995 10.5942 8.31255 11.5647 7.87031 12.6323C7.42807 13.7 7.2 14.8444 7.2 16L7.21074 16.4329C7.26038 17.4406 7.48338 18.4335 7.87031 19.3677C8.31255 20.4353 8.95995 21.4058 9.77705 22.2229C10.5942 23.0401 11.5647 23.6874 12.6323 24.1297C13.7 24.5719 14.8444 24.8 16 24.8L16.4329 24.7893C17.4406 24.7396 18.4335 24.5166 19.3677 24.1297C20.4353 23.6874 21.4058 23.0401 22.2229 22.2229C23.0401 21.4058 23.6874 20.4353 24.1297 19.3677C24.5719 18.3 24.8 17.1556 24.8 16L24.7893 15.5671ZM12.0898 18.3848C13.1312 17.6905 14.4749 17.3623 15.7293 17.4459C16.9034 17.5242 18.1508 17.981 18.9595 19.0239L19.1152 19.2398L19.1732 19.3365C19.434 19.8293 19.284 20.4493 18.8102 20.7652C18.3361 21.0812 17.7059 20.981 17.3514 20.5504L17.2848 20.4602L17.158 20.2969C16.8317 19.9329 16.292 19.6889 15.5832 19.6416C14.7751 19.5877 13.9188 19.8095 13.3102 20.2152C12.8047 20.5522 12.1218 20.4156 11.7848 19.9102C11.4478 19.4047 11.5844 18.7218 12.0898 18.3848ZM11.0414 15.0225C14.1358 13.1992 17.7798 13.7608 20.2722 15.4983L20.5096 15.6702L20.5966 15.7422C21.0064 16.12 21.0713 16.754 20.7298 17.2096C20.3882 17.6651 19.7614 17.7806 19.2839 17.4932L19.1904 17.4298L18.822 17.1741C16.9334 15.9529 14.3202 15.6449 12.1586 16.9185C11.6352 17.2268 10.9609 17.0519 10.6525 16.5285C10.3442 16.0051 10.5181 15.3309 11.0414 15.0225ZM10.008 11.716C12.3413 10.5494 16.9489 9.3712 21.63 12.0458L22.0833 12.3176L22.1757 12.382C22.6159 12.7238 22.7342 13.3505 22.4324 13.8333C22.1103 14.3482 21.4317 14.5043 20.9167 14.1824C16.9515 11.7044 12.9834 12.6883 10.992 13.684C10.4486 13.9557 9.7877 13.7354 9.51602 13.192C9.24433 12.6486 9.46463 11.9877 10.008 11.716ZM26.9871 16.5414C26.925 17.801 26.6468 19.0423 26.1632 20.2099C25.6104 21.5444 24.7998 22.757 23.7784 23.7784C22.757 24.7998 21.5444 25.6104 20.2099 26.1632C19.0423 26.6468 17.801 26.925 16.5414 26.9871L16 27C14.5555 27 13.1247 26.716 11.7901 26.1632C10.4556 25.6104 9.243 24.7998 8.22158 23.7784C7.20017 22.757 6.38962 21.5444 5.83682 20.2099C5.35318 19.0423 5.07496 17.801 5.01289 16.5414L5 16C5 14.5555 5.28401 13.1247 5.83682 11.7901C6.38962 10.4556 7.20017 9.243 8.22158 8.22158C9.243 7.20017 10.4556 6.38962 11.7901 5.83682C13.1247 5.28401 14.5555 5 16 5L16.5414 5.01289C17.801 5.07496 19.0423 5.35318 20.2099 5.83682C21.5444 6.38962 22.757 7.20017 23.7784 8.22158C24.7998 9.243 25.6104 10.4556 26.1632 11.7901C26.716 13.1247 27 14.5555 27 16L26.9871 16.5414Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.3 13.8006C19.3 13.3836 19.536 13.0027 19.9091 12.8165C20.2822 12.6304 20.7286 12.6711 21.0617 12.9218C22.1751 13.7597 23.4502 14.3468 24.8 14.6536V12.3793C23.5794 12.0149 22.4624 11.3533 21.5548 10.4456C20.6472 9.53788 19.9856 8.42081 19.6212 7.20014H17.1V18.7509C17.1 19.4072 16.9319 20.0523 16.6123 20.6255C16.2927 21.1988 15.8321 21.6814 15.2738 22.0264C14.7157 22.3713 14.0784 22.5674 13.423 22.5969C12.7674 22.6263 12.115 22.4886 11.528 22.1951C10.9411 21.9016 10.439 21.4621 10.0693 20.9199C9.69963 20.3778 9.474 19.7503 9.41506 19.0968C9.35612 18.4432 9.46622 17.7853 9.73303 17.1857C9.91992 16.7657 10.1806 16.385 10.5 16.0587V13.3633C9.92558 13.6567 9.39732 14.0393 8.94026 14.5032C8.14272 15.3128 7.58879 16.3307 7.34289 17.4403C7.09704 18.5499 7.16934 19.7062 7.55022 20.777C7.93119 21.8479 8.60624 22.7899 9.49778 23.495C10.3892 24.1999 11.4608 24.6398 12.5904 24.7637C13.7203 24.8875 14.8631 24.6906 15.8861 24.1954C16.9089 23.7003 17.7713 22.9268 18.3751 21.9641C18.9789 21.0012 19.2997 19.8875 19.3 18.7509V13.8006ZM21.5 18.7509C21.4997 20.3009 21.0623 21.8198 20.2389 23.1329C19.4155 24.4458 18.2392 25.5001 16.8443 26.1753C15.4493 26.8506 13.8916 27.1198 12.3509 26.951C10.8103 26.782 9.3481 26.1827 8.13244 25.2213C6.91679 24.26 5.99648 22.9753 5.47698 21.515C4.9575 20.0548 4.86024 18.4776 5.19553 16.9644C5.53088 15.4512 6.28524 14.0624 7.37297 12.9583C8.46079 11.8543 9.83844 11.0794 11.3465 10.7217C11.6737 10.6441 12.0183 10.7204 12.2821 10.929C12.546 11.1376 12.7 11.4553 12.7 11.7917V16.5508C12.7 16.897 12.5366 17.2228 12.2596 17.4306C12.0347 17.5993 11.8572 17.8236 11.7429 18.0805C11.6286 18.3374 11.5812 18.6191 11.6065 18.8992C11.6317 19.1791 11.7285 19.4479 11.8868 19.6802C12.0453 19.9125 12.2605 20.1012 12.512 20.227C12.7636 20.3528 13.0432 20.4115 13.3241 20.3989C13.6051 20.3862 13.8787 20.3029 14.118 20.155C14.3572 20.0071 14.5547 19.8001 14.6916 19.5545C14.7943 19.3702 14.8605 19.1684 14.8871 18.9604L14.9 18.7509V6.10007C14.9 5.49252 15.3925 5 16 5H20.4913L20.5912 5.0043C21.0839 5.04888 21.4922 5.42046 21.5763 5.91637C21.7672 7.04259 22.3037 8.0812 23.1113 8.88893C23.919 9.69665 24.9576 10.2331 26.0837 10.4241C26.6127 10.5138 27 10.9725 27 11.5091V15.947C26.9999 16.2576 26.8682 16.5539 26.638 16.7624C26.4078 16.9707 26.1004 17.0723 25.7915 17.0417C24.2888 16.8925 22.8339 16.4622 21.5 15.7805V18.7509Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-file {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.8858 3.00571C18.9309 3.00995 18.9756 3.01637 19.0198 3.02476C19.0286 3.02642 19.0372 3.02959 19.046 3.03142C19.0777 3.03808 19.1095 3.04456 19.1406 3.05332C19.1565 3.05777 19.1723 3.06263 19.188 3.0676C19.2114 3.0751 19.2345 3.08368 19.2575 3.09236C19.2768 3.09963 19.296 3.10714 19.3149 3.11521C19.3315 3.12236 19.3478 3.13029 19.3642 3.13806C19.3847 3.14776 19.4048 3.15792 19.4246 3.16853C19.4444 3.17913 19.4638 3.19033 19.483 3.20186C19.4975 3.21049 19.5123 3.21845 19.5263 3.22757C19.5557 3.24665 19.5841 3.26723 19.6119 3.28851C19.6153 3.29106 19.6187 3.29354 19.622 3.29613C19.6564 3.32288 19.69 3.35084 19.7217 3.38087L26.5972 9.88039C26.6061 9.88883 26.6137 9.89841 26.6223 9.90705C26.6343 9.91897 26.6461 9.9309 26.6576 9.94324C26.6741 9.96107 26.6905 9.97892 26.7059 9.99751C26.7196 10.0139 26.7324 10.0309 26.7452 10.048C26.7568 10.0634 26.7686 10.0787 26.7794 10.0946C26.7934 10.1151 26.8059 10.1363 26.8187 10.1575C26.8273 10.1717 26.8359 10.1858 26.8439 10.2003C26.8539 10.2184 26.863 10.2369 26.8721 10.2555C26.881 10.2739 26.8902 10.2921 26.8983 10.3108C26.9633 10.462 27 10.627 27 10.8002V25.0999C27 26.1343 26.5651 27.1269 25.7915 27.8583C25.0179 28.5896 23.9688 29 22.8749 29H9.12506C8.03103 29 6.98111 28.5898 6.20751 27.8583C5.43391 27.1269 5 26.1343 5 25.0999V6.9001C5 5.86573 5.43391 4.87306 6.20751 4.14165C6.98111 3.41024 8.03103 3 9.12506 3H18.7499L18.8858 3.00571ZM9.12506 5.59943C8.76038 5.59943 8.41007 5.73649 8.15221 5.9803C7.89434 6.2241 7.74937 6.55531 7.74937 6.9001V25.0999C7.74937 25.4447 7.89434 25.7759 8.15221 26.0197C8.41008 26.2635 8.76039 26.4006 9.12506 26.4006H22.8749C23.2395 26.4006 23.5889 26.2633 23.8468 26.0197C24.1047 25.7759 24.2496 25.4447 24.2496 25.0999V12.0999H20.1246C19.3953 12.0998 18.6955 11.8257 18.1799 11.3382C17.6643 10.8506 17.3752 10.189 17.3752 9.49952V5.59943H9.12506ZM20.1246 9.49952H22.3059L20.1246 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-ai {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.3428 3.00571C17.3829 3.00995 17.4226 3.01637 17.4618 3.02476C17.4697 3.02642 17.4773 3.02959 17.4851 3.03142C17.5134 3.03808 17.5416 3.04456 17.5693 3.05332C17.5834 3.05777 17.5974 3.06263 17.6113 3.0676C17.6322 3.0751 17.6527 3.08368 17.6731 3.09236C17.6903 3.09963 17.7073 3.10714 17.7241 3.11521C17.739 3.12236 17.7534 3.13029 17.768 3.13806C17.7862 3.14776 17.804 3.15792 17.8217 3.16853C17.8393 3.17913 17.8565 3.19033 17.8736 3.20186C17.8864 3.21049 17.8996 3.21845 17.9121 3.22757C17.9382 3.24665 17.9634 3.26723 17.9882 3.28851C17.9912 3.29106 17.9942 3.29354 17.9972 3.29613C18.0277 3.32288 18.0575 3.35084 18.0858 3.38087L24.1972 9.88039C24.2051 9.88883 24.2119 9.89841 24.2196 9.90705C24.2302 9.91897 24.2407 9.9309 24.2509 9.94324C24.2656 9.96107 24.2802 9.97892 24.2939 9.99751C24.306 10.0139 24.3174 10.0309 24.3288 10.048C24.3391 10.0634 24.3496 10.0787 24.3592 10.0946C24.3716 10.1151 24.3828 10.1363 24.3941 10.1575C24.4017 10.1717 24.4094 10.1858 24.4165 10.2003C24.4254 10.2184 24.4335 10.2369 24.4416 10.2555C24.4495 10.2739 24.4577 10.2921 24.4648 10.3108C24.5226 10.462 24.5553 10.627 24.5553 10.8002V16C24.5553 16.7179 24.0082 17.2995 23.3333 17.2997C22.6583 17.2997 22.1105 16.718 22.1105 16V12.0999H18.4438C17.7956 12.0998 17.1736 11.8257 16.7153 11.3382C16.257 10.8506 16 10.189 16 9.49952V5.59943H8.66667C8.34251 5.59943 8.03113 5.73649 7.80192 5.9803C7.57271 6.2241 7.44385 6.55531 7.44385 6.9001V25.0999C7.44385 25.4447 7.57271 25.7759 7.80192 26.0197C8.03113 26.2635 8.34251 26.4006 8.66667 26.4006H12.3333L12.4578 26.4072C13.0742 26.4737 13.5553 27.0271 13.5553 27.7003C13.5553 28.3735 13.0742 28.9269 12.4578 28.9933L12.3333 29H8.66667C7.69421 29 6.76096 28.5898 6.07332 27.8583C5.38569 27.1269 5 26.1343 5 25.0999V6.9001C5 5.86573 5.38569 4.87306 6.07332 4.14165C6.76096 3.41024 7.69421 3 8.66667 3H17.2219L17.3428 3.00571ZM19.6667 18.6004C20.639 18.6005 21.5716 19.0108 22.2591 19.742C22.9467 20.4734 23.3333 21.4661 23.3333 22.5005V27.7003C23.3333 28.4183 22.7855 29 22.1105 29C21.4356 28.9998 20.8886 28.4182 20.8886 27.7003V26.4006H18.4438V27.7003C18.4438 28.4183 17.8969 29 17.2219 29C16.5469 29 16 28.4183 16 27.7003V22.5005C16 21.4661 16.3857 20.4734 17.0733 19.742C17.761 19.0106 18.6942 18.6004 19.6667 18.6004ZM25.7772 18.6004C26.4522 18.6004 27 19.1821 27 19.9001V27.7003C27 28.4183 26.4522 29 25.7772 29C25.1023 28.9998 24.5553 28.4182 24.5553 27.7003V19.9001C24.5553 19.1822 25.1023 18.6006 25.7772 18.6004ZM19.6667 21.1998C19.3425 21.1998 19.0311 21.3369 18.8019 21.5807C18.5727 21.8245 18.4438 22.1557 18.4438 22.5005V23.8002H20.8886V22.5005C20.8886 22.1557 20.7597 21.8245 20.5305 21.5807C20.3014 21.337 19.9906 21.1999 19.6667 21.1998ZM18.4438 9.49952H20.3828L18.4438 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-zip {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.4998 18.6004C10.9762 18.6004 11.4184 18.8334 11.669 19.2164C11.9195 19.5997 11.9426 20.0789 11.7294 20.4819L8.59939 26.4006H10.4998L10.6408 26.4072C11.3339 26.474 11.8745 27.0273 11.8745 27.7003C11.8745 28.3733 11.3339 28.9266 10.6408 28.9933L10.4998 29H6.37472C5.89831 29 5.45605 28.767 5.20548 28.3839C4.95496 28.0007 4.93195 27.5215 5.14506 27.1185L8.2751 21.1998H6.37472C5.61534 21.1998 5.00003 20.6181 5.00003 19.9001C5.00003 19.1821 5.61534 18.6004 6.37472 18.6004H10.4998ZM15.9995 18.6004C16.7589 18.6004 17.3752 19.1821 17.3752 19.9001V27.7003C17.3752 28.4183 16.7589 29 15.9995 29C15.2403 28.9998 14.6248 28.4182 14.6248 27.7003V19.9001C14.6248 19.1822 15.2403 18.6006 15.9995 18.6004ZM23.5628 18.6004C24.4742 18.6005 25.3484 18.9424 25.9929 19.5516C26.6376 20.1611 27 20.9882 27 21.8501C27 22.7121 26.6376 23.5392 25.9929 24.1487C25.3484 24.7579 24.4742 25.0998 23.5628 25.0999H22.8749V27.7003C22.8749 28.4182 22.2595 28.9998 21.5003 29C20.7409 29 20.1246 28.4183 20.1246 27.7003V19.9001C20.1246 19.1821 20.7409 18.6004 21.5003 18.6004H23.5628ZM22.8749 22.5005H23.5628C23.7448 22.5004 23.9194 22.4317 24.0482 22.31C24.1771 22.1881 24.2496 22.0225 24.2496 21.8501C24.2496 21.6777 24.1771 21.5121 24.0482 21.3902C23.9194 21.2686 23.7448 21.1999 23.5628 21.1998H22.8749V22.5005ZM18.8858 3.00571C18.9309 3.00995 18.9756 3.01637 19.0198 3.02476C19.0287 3.02642 19.0372 3.02959 19.046 3.03142C19.0778 3.03808 19.1095 3.04456 19.1406 3.05332C19.1566 3.05777 19.1723 3.06263 19.188 3.0676C19.2114 3.0751 19.2345 3.08368 19.2575 3.09236C19.2768 3.09963 19.296 3.10715 19.3149 3.11521C19.3316 3.12236 19.3478 3.13029 19.3642 3.13806C19.3847 3.14776 19.4048 3.15792 19.4246 3.16853C19.4444 3.17913 19.4638 3.19033 19.4831 3.20186C19.4975 3.21049 19.5123 3.21845 19.5264 3.22757C19.5558 3.24665 19.5841 3.26723 19.612 3.28851C19.6153 3.29106 19.6187 3.29354 19.622 3.29613C19.6564 3.32288 19.69 3.35084 19.7217 3.38087L26.5972 9.88039C26.6061 9.88882 26.6137 9.89842 26.6223 9.90705C26.6343 9.91897 26.6461 9.9309 26.6576 9.94324C26.6741 9.96107 26.6905 9.97892 26.7059 9.99751C26.7196 10.0139 26.7324 10.0309 26.7452 10.048C26.7568 10.0634 26.7686 10.0787 26.7794 10.0946C26.7934 10.1151 26.8059 10.1363 26.8187 10.1575C26.8273 10.1717 26.8359 10.1858 26.8439 10.2003C26.8539 10.2184 26.863 10.2369 26.8721 10.2555C26.881 10.2739 26.8902 10.2921 26.8983 10.3108C26.9633 10.462 27 10.627 27 10.8002V16C27 16.7179 26.3846 17.2995 25.6253 17.2997C24.8659 17.2997 24.2496 16.718 24.2496 16V12.0999H20.1246C19.3954 12.0998 18.6955 11.8257 18.1799 11.3382C17.6644 10.8506 17.3752 10.1889 17.3752 9.49952V5.59943H9.12509C8.76043 5.59944 8.41009 5.7365 8.15224 5.9803C7.89439 6.2241 7.7494 6.55531 7.7494 6.9001V16C7.7494 16.718 7.13412 17.2997 6.37472 17.2997C5.61534 17.2997 5.00003 16.718 5.00003 16V6.9001C5.00003 5.86574 5.43395 4.87306 6.20754 4.14165C6.98113 3.41025 8.03107 3.00001 9.12509 3H18.7499L18.8858 3.00571ZM20.1246 9.49952H22.3059L20.1246 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-htm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.8858 3.00571C18.9309 3.00995 18.9756 3.01637 19.0198 3.02476C19.0286 3.02642 19.0372 3.02959 19.046 3.03142C19.0777 3.03808 19.1095 3.04456 19.1406 3.05332C19.1565 3.05777 19.1723 3.06263 19.188 3.0676C19.2114 3.0751 19.2345 3.08368 19.2575 3.09236C19.2768 3.09963 19.296 3.10714 19.3149 3.11521C19.3315 3.12236 19.3478 3.13029 19.3642 3.13806C19.3847 3.14776 19.4048 3.15792 19.4246 3.16853C19.4444 3.17913 19.4638 3.19033 19.483 3.20186C19.4975 3.21049 19.5123 3.21845 19.5263 3.22757C19.5557 3.24665 19.5841 3.26723 19.6119 3.28851C19.6153 3.29106 19.6187 3.29354 19.622 3.29613C19.6564 3.32288 19.69 3.35084 19.7217 3.38087L26.5972 9.88039C26.6061 9.88883 26.6137 9.89841 26.6223 9.90705C26.6343 9.91897 26.6461 9.9309 26.6576 9.94324C26.6741 9.96107 26.6905 9.97892 26.7059 9.99751C26.7196 10.0139 26.7324 10.0309 26.7452 10.048C26.7568 10.0634 26.7686 10.0787 26.7794 10.0946C26.7934 10.1151 26.8059 10.1363 26.8187 10.1575C26.8273 10.1717 26.8359 10.1858 26.8439 10.2003C26.8539 10.2184 26.863 10.2369 26.8721 10.2555C26.881 10.2739 26.8902 10.2921 26.8983 10.3108C26.9633 10.462 27 10.627 27 10.8002V25.0999C27 26.1343 26.5651 27.1269 25.7915 27.8583C25.0179 28.5896 23.9688 29 22.8749 29H9.12506C8.03103 29 6.98111 28.5898 6.20751 27.8583C5.43391 27.1269 5 26.1343 5 25.0999V6.9001C5 5.86573 5.43391 4.87306 6.20751 4.14165C6.98111 3.41024 8.03103 3 9.12506 3H18.7499L18.8858 3.00571ZM9.12506 5.59943C8.76038 5.59943 8.41007 5.73649 8.15221 5.9803C7.89434 6.2241 7.74937 6.55531 7.74937 6.9001V25.0999C7.74937 25.4447 7.89434 25.7759 8.15221 26.0197C8.41008 26.2635 8.76039 26.4006 9.12506 26.4006H22.8749C23.2395 26.4006 23.5889 26.2633 23.8468 26.0197C24.1047 25.7759 24.2496 25.4447 24.2496 25.0999V12.0999H20.1246C19.3953 12.0998 18.6955 11.8257 18.1799 11.3382C17.6643 10.8506 17.3752 10.189 17.3752 9.49952V5.59943H9.12506ZM14.4798 21.9197C14.8188 22.5617 14.5434 23.3431 13.8645 23.664C13.1854 23.9848 12.3591 23.7241 12.0195 23.0823L14.4798 21.9197ZM19.9795 23.0823C19.6399 23.7241 18.8136 23.9848 18.1345 23.664C17.4556 23.3431 17.1802 22.5617 17.5192 21.9197L18.7499 22.5005L19.9795 23.0823ZM12.0195 16.7189C12.3592 16.0769 13.1853 15.817 13.8645 16.1381C14.5434 16.4593 14.8193 17.2404 14.4798 17.8824L13.4113 19.9001L14.4798 21.9197L13.2491 22.5005L12.0195 23.0823L10.6448 20.4819C10.4514 20.116 10.4514 19.6851 10.6448 19.3193L12.0195 16.7189ZM18.1345 16.1381C18.8137 15.817 19.6398 16.0769 19.9795 16.7189L21.3542 19.3193C21.5476 19.6851 21.5476 20.116 21.3542 20.4819L19.9795 23.0823L18.7499 22.5005L17.5192 21.9197L18.5867 19.9001L17.5192 17.8824C17.1796 17.2404 17.4556 16.4593 18.1345 16.1381ZM20.1246 9.49952H22.3059L20.1246 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-pdf {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.23507 18.6004C9.09315 18.6004 9.91647 18.9421 10.5232 19.5516C11.13 20.1611 11.4701 20.9882 11.4701 21.8501C11.4701 22.7121 11.13 23.5392 10.5232 24.1487C9.91647 24.7582 9.09315 25.0999 8.23507 25.0999H7.58768V27.7003C7.58768 28.4183 7.00858 29 6.29384 29C5.5791 29 5 28.4183 5 27.7003V19.9001C5 19.1821 5.5791 18.6004 6.29384 18.6004H8.23507ZM15.3526 18.6004C16.3823 18.6004 17.3705 19.0106 18.0986 19.742C18.8267 20.4734 19.2351 21.4661 19.2351 22.5005V25.0999C19.2351 26.1343 18.8267 27.1269 18.0986 27.8583C17.3705 28.5898 16.3823 29 15.3526 29H14.0588C13.344 29 12.7649 28.4183 12.7649 27.7003V19.9001C12.7649 19.1821 13.344 18.6004 14.0588 18.6004H15.3526ZM25.8389 18.607C26.4913 18.6738 27 19.2271 27 19.9001C27 20.6181 26.4209 21.1998 25.7062 21.1998H23.1175V22.5005H24.4123C25.1269 22.5006 25.7062 23.0823 25.7062 23.8002C25.7062 24.5181 25.1269 25.0997 24.4123 25.0999H23.1175V27.7003C23.1175 28.4183 22.5384 29 21.8237 29C21.109 29 20.5299 28.4183 20.5299 27.7003V19.9001C20.5299 19.1821 21.109 18.6004 21.8237 18.6004H25.7062L25.8389 18.607ZM15.3526 26.4006C15.6958 26.4006 16.0255 26.2635 16.2682 26.0197C16.5109 25.7759 16.6474 25.4447 16.6474 25.0999V22.5005C16.6474 22.1557 16.5109 21.8245 16.2682 21.5807C16.0255 21.3369 15.6958 21.1998 15.3526 21.1998V26.4006ZM7.58768 22.5005H8.23507C8.40668 22.5005 8.57154 22.4319 8.69289 22.31C8.81424 22.1881 8.88246 22.0225 8.88246 21.8501C8.88246 21.6777 8.81424 21.5121 8.69289 21.3902C8.57154 21.2683 8.40669 21.1998 8.23507 21.1998H7.58768V22.5005ZM17.9412 3C18.0044 3 18.0663 3.00551 18.127 3.01428C18.1692 3.02045 18.2109 3.02877 18.2521 3.03904C18.3867 3.07239 18.5123 3.12709 18.6265 3.199C18.6377 3.20601 18.6497 3.21164 18.6607 3.219C18.665 3.22189 18.6687 3.22558 18.673 3.22852C18.738 3.27335 18.7994 3.32407 18.8559 3.38087L25.327 9.88039C25.3354 9.88883 25.3426 9.89841 25.3507 9.90705C25.3619 9.91897 25.3731 9.9309 25.3839 9.94324C25.3995 9.96107 25.4149 9.97892 25.4294 9.99751C25.4422 10.0139 25.4543 10.0309 25.4664 10.048C25.4773 10.0634 25.4884 10.0787 25.4986 10.0946C25.5117 10.1151 25.5235 10.1363 25.5355 10.1575C25.5436 10.1717 25.5517 10.1858 25.5592 10.2003C25.5686 10.2184 25.5772 10.2369 25.5858 10.2555C25.5942 10.2739 25.6029 10.2921 25.6104 10.3108C25.6716 10.462 25.7062 10.627 25.7062 10.8002V16C25.7062 16.7179 25.1269 17.2995 24.4123 17.2997C23.6976 17.2997 23.1175 16.718 23.1175 16V12.0999H19.2351C18.5487 12.0998 17.8901 11.8257 17.4047 11.3382C16.9195 10.8506 16.6474 10.189 16.6474 9.49952V5.59943H8.88246C8.53923 5.59943 8.20953 5.73649 7.96682 5.9803C7.72412 6.2241 7.58768 6.55531 7.58768 6.9001V16C7.58768 16.718 7.00858 17.2997 6.29384 17.2997C5.5791 17.2997 5 16.718 5 16V6.9001C5 5.86573 5.40839 4.87306 6.13649 4.14165C6.8646 3.41024 7.85277 3 8.88246 3H17.9412ZM19.2351 9.49952H21.2882L19.2351 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-jpg {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.1763 18.6004C10.891 18.6004 11.4701 19.1821 11.4701 19.9001V25.7502C11.4701 26.6122 11.13 27.4393 10.5232 28.0488C9.91647 28.6583 9.09315 29 8.23507 29C7.37699 29 6.55367 28.6583 5.94692 28.0488C5.34017 27.4393 5 26.6122 5 25.7502C5 25.0323 5.5791 24.4505 6.29384 24.4505C7.00858 24.4505 7.58768 25.0323 7.58768 25.7502C7.58768 25.9226 7.6559 26.0882 7.77725 26.2101C7.8986 26.332 8.06346 26.4006 8.23507 26.4006C8.40668 26.4006 8.57154 26.332 8.69289 26.2101C8.81424 26.0882 8.88246 25.9226 8.88246 25.7502V21.1998H6.29384C5.5791 21.1998 5 20.6181 5 19.9001C5 19.1821 5.5791 18.6004 6.29384 18.6004H10.1763ZM16 18.6004C16.8581 18.6004 17.6814 18.9421 18.2882 19.5516C18.8949 20.1611 19.2351 20.9882 19.2351 21.8501C19.2351 22.7121 18.8949 23.5392 18.2882 24.1487C17.6814 24.7582 16.8581 25.0999 16 25.0999H15.3526V27.7003C15.3526 28.4183 14.7735 29 14.0588 29C13.344 29 12.7649 28.4183 12.7649 27.7003V19.9001C12.7649 19.1821 13.344 18.6004 14.0588 18.6004H16ZM25.8389 18.607C26.4913 18.6738 27 19.2271 27 19.9001C27 20.6181 26.4209 21.1998 25.7062 21.1998H24.4123C24.0691 21.1998 23.7394 21.3369 23.4967 21.5807C23.254 21.8245 23.1175 22.1557 23.1175 22.5005V25.0999C23.1175 25.4447 23.254 25.7759 23.4967 26.0197C23.7091 26.2331 23.988 26.3644 24.2844 26.3939L24.4123 26.4006V23.8002C24.4123 23.0822 24.9914 22.5005 25.7062 22.5005C26.4209 22.5005 27 23.0822 27 23.8002V27.7003C27 28.4183 26.4209 29 25.7062 29H24.4123C23.3826 29 22.3945 28.5898 21.6664 27.8583C20.9382 27.1269 20.5299 26.1343 20.5299 25.0999V22.5005C20.5299 21.4661 20.9382 20.4734 21.6664 19.742C22.3945 19.0106 23.3826 18.6004 24.4123 18.6004H25.7062L25.8389 18.607ZM15.3526 22.5005H16C16.1716 22.5005 16.3365 22.4319 16.4578 22.31C16.5792 22.1881 16.6474 22.0225 16.6474 21.8501C16.6474 21.6777 16.5792 21.5121 16.4578 21.3902C16.3365 21.2683 16.1716 21.1998 16 21.1998H15.3526V22.5005ZM17.9412 3C18.0044 3 18.0663 3.00551 18.127 3.01428C18.1692 3.02045 18.2109 3.02877 18.2521 3.03904C18.3867 3.07239 18.5123 3.12709 18.6265 3.199C18.6377 3.20601 18.6497 3.21164 18.6607 3.219C18.665 3.22189 18.6687 3.22558 18.673 3.22852C18.738 3.27335 18.7994 3.32407 18.8559 3.38087L25.327 9.88039C25.3354 9.88883 25.3426 9.89841 25.3507 9.90705C25.3619 9.91897 25.3731 9.9309 25.3839 9.94324C25.3995 9.96107 25.4149 9.97892 25.4294 9.99751C25.4422 10.0139 25.4543 10.0309 25.4664 10.048C25.4773 10.0634 25.4884 10.0787 25.4986 10.0946C25.5117 10.1151 25.5235 10.1363 25.5355 10.1575C25.5436 10.1717 25.5517 10.1858 25.5592 10.2003C25.5686 10.2184 25.5772 10.2369 25.5858 10.2555C25.5942 10.2739 25.6029 10.2921 25.6104 10.3108C25.6716 10.462 25.7062 10.627 25.7062 10.8002V16C25.7062 16.7179 25.1269 17.2995 24.4123 17.2997C23.6976 17.2997 23.1175 16.718 23.1175 16V12.0999H19.2351C18.5487 12.0998 17.8901 11.8257 17.4047 11.3382C16.9195 10.8506 16.6474 10.189 16.6474 9.49952V5.59943H8.88246C8.53923 5.59943 8.20953 5.73649 7.96682 5.9803C7.72412 6.2241 7.58768 6.55531 7.58768 6.9001V16C7.58768 16.718 7.00858 17.2997 6.29384 17.2997C5.5791 17.2997 5 16.718 5 16V6.9001C5 5.86573 5.40839 4.87306 6.13649 4.14165C6.8646 3.41024 7.85277 3 8.88246 3H17.9412ZM19.2351 9.49952H21.2882L19.2351 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-png {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.23507 18.6C9.09315 18.6 9.91647 18.9417 10.5232 19.5512C11.13 20.1607 11.4701 20.9877 11.4701 21.8497C11.4701 22.7117 11.13 23.5387 10.5232 24.1482C9.91647 24.7577 9.09315 25.0994 8.23507 25.0994H7.58768V27.6997C7.58768 28.4177 7.00858 28.9994 6.29384 28.9994C5.5791 28.9994 5 28.4177 5 27.6997V19.8997C5 19.1817 5.5791 18.6 6.29384 18.6H8.23507ZM17.9412 18.6C18.656 18.6 19.2351 19.1817 19.2351 19.8997V27.6997C19.2351 28.3025 18.8229 28.8265 18.2389 28.9651C17.6549 29.1036 17.0524 28.8205 16.7839 28.2815L15.3526 25.406V27.6997C15.3526 28.4177 14.7735 28.9994 14.0588 28.9994C13.344 28.9994 12.7649 28.4177 12.7649 27.6997V19.8997C12.7649 19.2969 13.1771 18.7729 13.7611 18.6343C14.3451 18.4958 14.9476 18.7789 15.2161 19.3179L16.6474 22.1934V19.8997C16.6474 19.1817 17.2265 18.6 17.9412 18.6ZM25.7062 18.6C26.4209 18.6 27 19.1817 27 19.8997C27 20.6177 26.4209 21.1994 25.7062 21.1994H24.4123C24.0691 21.1994 23.7394 21.3364 23.4967 21.5802C23.254 21.824 23.1175 22.1552 23.1175 22.5V25.0994C23.1175 25.4442 23.254 25.7754 23.4967 26.0192C23.7091 26.2325 23.988 26.3639 24.2844 26.3934L24.4123 26.4V23.7997C24.4123 23.0817 24.9914 22.5 25.7062 22.5C26.4209 22.5 27 23.0817 27 23.7997V27.6997C27 28.4177 26.4209 28.9994 25.7062 28.9994H24.4123C23.3826 28.9994 22.3945 28.5892 21.6664 27.8578C20.9382 27.1264 20.5299 26.1337 20.5299 25.0994V22.5C20.5299 21.4657 20.9382 20.473 21.6664 19.7416C22.3945 19.0102 23.3826 18.6 24.4123 18.6H25.7062ZM7.58768 22.5H8.23507C8.40668 22.5 8.57154 22.4315 8.69289 22.3096C8.81424 22.1877 8.88246 22.0221 8.88246 21.8497C8.88246 21.6773 8.81424 21.5117 8.69289 21.3898C8.57154 21.2679 8.40669 21.1994 8.23507 21.1994H7.58768V22.5ZM17.9412 3C18.0044 3 18.0663 3.00551 18.127 3.01428C18.1692 3.02045 18.2109 3.02877 18.2521 3.03904C18.3867 3.07239 18.5123 3.12709 18.6265 3.199C18.6377 3.20601 18.6497 3.21164 18.6607 3.21899C18.665 3.22189 18.6687 3.22557 18.673 3.22852C18.738 3.27334 18.7994 3.32406 18.8559 3.38086L25.327 9.88023C25.3354 9.88866 25.3426 9.89825 25.3507 9.90689C25.3619 9.91881 25.3731 9.93073 25.3839 9.94307C25.3995 9.96091 25.4149 9.97876 25.4294 9.99734C25.4422 10.0138 25.4543 10.0308 25.4664 10.0478C25.4773 10.0633 25.4884 10.0786 25.4986 10.0945C25.5117 10.1149 25.5235 10.1361 25.5355 10.1573C25.5436 10.1715 25.5517 10.1856 25.5592 10.2002C25.5686 10.2183 25.5772 10.2368 25.5858 10.2554C25.5942 10.2737 25.6029 10.2919 25.6104 10.3106C25.6716 10.4618 25.7062 10.6268 25.7062 10.8V15.9997C25.7062 16.7176 25.1269 17.2992 24.4123 17.2994C23.6976 17.2994 23.1175 16.7177 23.1175 15.9997V12.0997H19.2351C18.5487 12.0996 17.8901 11.8255 17.4047 11.338C16.9195 10.8504 16.6474 10.1888 16.6474 9.49937V5.59937H8.88246C8.53923 5.59937 8.20953 5.73643 7.96682 5.98023C7.72412 6.22402 7.58768 6.55522 7.58768 6.9V15.9997C7.58768 16.7177 7.00858 17.2994 6.29384 17.2994C5.5791 17.2994 5 16.7177 5 15.9997V6.9C5 5.86566 5.40839 4.87302 6.13649 4.14163C6.8646 3.41023 7.85277 3 8.88246 3H17.9412ZM19.2351 9.49937H21.2882L19.2351 7.43702V9.49937Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-xls {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.8858 3.00571C18.9309 3.00995 18.9756 3.01637 19.0198 3.02476C19.0286 3.02642 19.0372 3.02959 19.046 3.03142C19.0777 3.03808 19.1095 3.04456 19.1406 3.05332C19.1565 3.05777 19.1723 3.06263 19.188 3.0676C19.2114 3.0751 19.2345 3.08368 19.2575 3.09236C19.2768 3.09963 19.296 3.10714 19.3149 3.11521C19.3315 3.12236 19.3478 3.13029 19.3642 3.13806C19.3847 3.14776 19.4048 3.15792 19.4246 3.16853C19.4444 3.17913 19.4638 3.19033 19.483 3.20186C19.4975 3.21049 19.5123 3.21845 19.5263 3.22757C19.5557 3.24665 19.5841 3.26723 19.6119 3.28851C19.6153 3.29106 19.6187 3.29354 19.622 3.29613C19.6564 3.32288 19.69 3.35084 19.7217 3.38087L26.5972 9.88039C26.6061 9.88883 26.6137 9.89841 26.6223 9.90705C26.6343 9.91897 26.6461 9.9309 26.6576 9.94324C26.6741 9.96107 26.6905 9.97892 26.7059 9.99751C26.7196 10.0139 26.7324 10.0309 26.7452 10.048C26.7568 10.0634 26.7686 10.0787 26.7794 10.0946C26.7934 10.1151 26.8059 10.1363 26.8187 10.1575C26.8273 10.1717 26.8359 10.1858 26.8439 10.2003C26.8539 10.2184 26.863 10.2369 26.8721 10.2555C26.881 10.2739 26.8902 10.2921 26.8983 10.3108C26.9633 10.462 27 10.627 27 10.8002V25.0999C27 26.1343 26.5651 27.1269 25.7915 27.8583C25.0179 28.5896 23.9688 29 22.8749 29H9.12506C8.03103 29 6.98111 28.5898 6.20751 27.8583C5.43391 27.1269 5 26.1343 5 25.0999V6.9001C5 5.86573 5.43391 4.87306 6.20751 4.14165C6.98111 3.41024 8.03103 3 9.12506 3H18.7499L18.8858 3.00571ZM9.12506 5.59943C8.76038 5.59943 8.41007 5.73649 8.15221 5.9803C7.89434 6.2241 7.74937 6.55531 7.74937 6.9001V25.0999C7.74937 25.4447 7.89434 25.7759 8.15221 26.0197C8.41008 26.2635 8.76039 26.4006 9.12506 26.4006H22.8749C23.2395 26.4006 23.5889 26.2633 23.8468 26.0197C24.1047 25.7759 24.2496 25.4447 24.2496 25.0999V12.0999H20.1246C19.3953 12.0998 18.6955 11.8257 18.1799 11.3382C17.6643 10.8506 17.3752 10.189 17.3752 9.49952V5.59943H9.12506ZM17.6763 15.1878C18.1507 14.6272 19.016 14.5365 19.6089 14.985C20.2018 15.4335 20.2978 16.2516 19.8234 16.8122L17.7599 19.2498L19.8234 21.6883L19.906 21.7959C20.2842 22.3494 20.1649 23.095 19.6089 23.5155C19.053 23.9359 18.2581 23.8819 17.77 23.4117L17.6763 23.3127L15.9995 21.3312L14.3237 23.3127C13.8493 23.8731 12.984 23.9638 12.3911 23.5155C11.7981 23.067 11.7022 22.2489 12.1766 21.6883L14.2391 19.2498L12.1766 16.8122L12.094 16.7046C11.7155 16.1511 11.835 15.4056 12.3911 14.985C12.9469 14.5646 13.7419 14.6178 14.23 15.0878L14.3237 15.1878L15.9995 17.1683L17.6763 15.1878ZM20.1246 9.49952H22.3059L20.1246 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-doc {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.8858 3.00571C18.9309 3.00995 18.9756 3.01637 19.0198 3.02476C19.0286 3.02642 19.0372 3.02959 19.046 3.03142C19.0777 3.03808 19.1095 3.04456 19.1406 3.05332C19.1565 3.05777 19.1723 3.06263 19.188 3.0676C19.2114 3.0751 19.2345 3.08368 19.2575 3.09236C19.2768 3.09963 19.296 3.10714 19.3149 3.11521C19.3315 3.12236 19.3478 3.13029 19.3642 3.13806C19.3847 3.14776 19.4048 3.15792 19.4246 3.16853C19.4444 3.17913 19.4638 3.19033 19.483 3.20186C19.4975 3.21049 19.5123 3.21845 19.5263 3.22757C19.5557 3.24665 19.5841 3.26723 19.6119 3.28851C19.6153 3.29106 19.6187 3.29354 19.622 3.29613C19.6564 3.32288 19.69 3.35084 19.7217 3.38087L26.5972 9.88039C26.6061 9.88883 26.6137 9.89841 26.6223 9.90705C26.6343 9.91897 26.6461 9.9309 26.6576 9.94324C26.6741 9.96107 26.6905 9.97892 26.7059 9.99751C26.7196 10.0139 26.7324 10.0309 26.7452 10.048C26.7568 10.0634 26.7686 10.0787 26.7794 10.0946C26.7934 10.1151 26.8059 10.1363 26.8187 10.1575C26.8273 10.1717 26.8359 10.1858 26.8439 10.2003C26.8539 10.2184 26.863 10.2369 26.8721 10.2555C26.881 10.2739 26.8902 10.2921 26.8983 10.3108C26.9633 10.462 27 10.627 27 10.8002V25.0999C27 26.1343 26.5651 27.1269 25.7915 27.8583C25.0179 28.5896 23.9688 29 22.8749 29H9.12506C8.03103 29 6.98111 28.5898 6.20751 27.8583C5.43391 27.1269 5 26.1343 5 25.0999V6.9001C5 5.86573 5.43391 4.87306 6.20751 4.14165C6.98111 3.41024 8.03103 3 9.12506 3H18.7499L18.8858 3.00571ZM9.12506 5.59943C8.76038 5.59943 8.41007 5.73649 8.15221 5.9803C7.89434 6.2241 7.74937 6.55531 7.74937 6.9001V25.0999C7.74937 25.4447 7.89434 25.7759 8.15221 26.0197C8.41008 26.2635 8.76039 26.4006 9.12506 26.4006H22.8749C23.2395 26.4006 23.5889 26.2633 23.8468 26.0197C24.1047 25.7759 24.2496 25.4447 24.2496 25.0999V12.0999H20.1246C19.3953 12.0998 18.6955 11.8257 18.1799 11.3382C17.6643 10.8506 17.3752 10.189 17.3752 9.49952V5.59943H9.12506ZM11.5199 14.7441C12.2077 14.5707 12.9127 14.9221 13.1595 15.5382L13.2028 15.6648L13.9934 18.4699L14.7306 16.7998L14.8232 16.6265C15.0697 16.2416 15.5138 16 15.9995 16C16.5545 16 17.0549 16.3155 17.2684 16.7998L18.0046 18.4699L18.7962 15.6648C18.992 14.9713 19.7454 14.5592 20.4791 14.7441C21.2126 14.9292 21.6485 15.6415 21.4529 16.3352L19.62 22.8347C19.4683 23.3725 18.9717 23.7598 18.3843 23.7973C17.7969 23.8347 17.2493 23.5141 17.0227 23.0004L15.9995 20.679L14.9763 23.0004C14.7497 23.5141 14.2021 23.8347 13.6147 23.7973C13.0273 23.7598 12.5306 23.3725 12.379 22.8347L10.5461 16.3352L10.5169 16.2047C10.4063 15.5542 10.8322 14.9176 11.5199 14.7441ZM20.1246 9.49952H22.3059L20.1246 7.43712V9.49952Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-close {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.46089 6.50057C6.75639 6.20605 7.15694 6.04062 7.57457 6.04062C7.9922 6.04062 8.39275 6.20605 8.68824 6.50057L15.9797 13.7772L23.2711 6.50057C23.4153 6.34605 23.5893 6.22211 23.7826 6.13615C23.976 6.05019 24.1846 6.00397 24.3962 6.00024C24.6079 5.99652 24.818 6.03537 25.0143 6.11447C25.2105 6.19357 25.3888 6.3113 25.5384 6.46065C25.6881 6.60999 25.806 6.78789 25.8853 6.98373C25.9646 7.17956 26.0035 7.38932 25.9998 7.6005C25.996 7.81167 25.9497 8.01993 25.8636 8.21286C25.7774 8.40578 25.6532 8.57941 25.4984 8.7234L18.207 16L25.4984 23.2766C25.6532 23.4206 25.7774 23.5942 25.8636 23.7871C25.9497 23.9801 25.996 24.1883 25.9998 24.3995C26.0035 24.6107 25.9646 24.8204 25.8853 25.0163C25.806 25.2121 25.6881 25.39 25.5384 25.5393C25.3888 25.6887 25.2105 25.8064 25.0143 25.8855C24.818 25.9646 24.6079 26.0035 24.3962 25.9998C24.1846 25.996 23.976 25.9498 23.7826 25.8638C23.5893 25.7779 23.4153 25.6539 23.2711 25.4994L15.9797 18.2228L8.68824 25.4994C8.38949 25.7772 7.99436 25.9285 7.58608 25.9213C7.1778 25.9141 6.78825 25.749 6.49951 25.4609C6.21077 25.1727 6.04537 24.784 6.03817 24.3765C6.03097 23.9691 6.18252 23.5747 6.46089 23.2766L13.7523 16L6.46089 8.7234C6.16577 8.4285 6 8.02877 6 7.61198C6 7.1952 6.16577 6.79546 6.46089 6.50057Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-notification {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.9099 26.8383C19.718 27.7333 19.225 28.5354 18.5133 29.1108C17.8015 29.6861 16.9141 30 15.999 30C15.0839 30 14.1965 29.6861 13.4847 29.1108C12.773 28.5354 12.28 27.7333 12.0881 26.8383C14.688 27.1204 17.31 27.1204 19.9099 26.8383ZM16 2C17.974 1.99998 19.8871 2.68402 21.4137 3.93575C22.9404 5.18748 23.9864 6.92959 24.3738 8.86574L25.6118 15.0593C25.8658 16.3276 26.4878 17.4919 27.4018 18.4062L28.2737 19.2784C28.5867 19.5915 28.8102 19.9827 28.921 20.4114C29.0319 20.8401 29.0259 21.2906 28.9039 21.7162C28.7818 22.1419 28.5481 22.5271 28.227 22.8318C27.9059 23.1366 27.5091 23.3499 27.0778 23.4494L24.1538 24.1256C18.7887 25.3663 13.2113 25.3663 7.84617 24.1256L4.92224 23.4494C4.49091 23.3499 4.09409 23.1366 3.77298 22.8318C3.45186 22.5271 3.21815 22.1419 3.09611 21.7162C2.97407 21.2906 2.96815 20.8401 3.07896 20.4114C3.18977 19.9827 3.41327 19.5915 3.72626 19.2784L4.60024 18.4042C5.51446 17.49 6.13734 16.3254 6.3902 15.0573L7.63018 8.86374C8.01785 6.92863 9.06345 5.1875 10.5893 3.93624C12.1151 2.68499 14.027 2.00081 16 2Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-help {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9998 27C18.9172 27 21.7151 25.8411 23.778 23.7782C25.8409 21.7153 26.9998 18.9174 26.9998 16C26.9998 13.0826 25.8409 10.2847 23.778 8.22183C21.7151 6.15893 18.9172 5 15.9998 5C13.0825 5 10.2846 6.15893 8.22167 8.22183C6.15877 10.2847 4.99985 13.0826 4.99985 16C4.99985 18.9174 6.15877 21.7153 8.22167 23.7782C10.2846 25.8411 13.0825 27 15.9998 27ZM15.9998 30C19.7129 30 23.2738 28.525 25.8993 25.8995C28.5249 23.274 29.9998 19.713 29.9998 16C29.9998 12.287 28.5249 8.72601 25.8993 6.1005C23.2738 3.475 19.7129 2 15.9998 2C12.2868 2 8.72586 3.475 6.10035 6.1005C3.47484 8.72601 1.99985 12.287 1.99985 16C1.99985 19.713 3.47484 23.274 6.10035 25.8995C8.72586 28.525 12.2868 30 15.9998 30ZM12.8798 9.08C13.7398 8.372 14.8678 7.95 15.9998 7.95C18.4338 7.95 20.6798 9.59 20.6798 12.23C20.6798 12.984 20.5238 13.72 20.0838 14.43C19.6678 15.108 19.0578 15.658 18.3338 16.164C17.8998 16.47 17.6838 16.678 17.5758 16.82C17.4998 16.924 17.4998 16.96 17.4998 16.998C17.4998 17.3958 17.3418 17.7774 17.0605 18.0587C16.7792 18.34 16.3977 18.498 15.9998 18.498C15.602 18.498 15.2205 18.34 14.9392 18.0587C14.6579 17.7774 14.4998 17.3958 14.4998 16.998C14.4998 15.41 15.5878 14.426 16.6138 13.708C17.1738 13.316 17.4138 13.044 17.5298 12.856C17.6419 12.668 17.6942 12.4504 17.6798 12.232C17.6798 11.632 17.1918 10.95 15.9998 10.95C15.5563 10.9597 15.1285 11.1166 14.7838 11.396C14.4498 11.672 14.3218 11.97 14.3218 12.232C14.3218 12.6298 14.1638 13.0114 13.8825 13.2927C13.6012 13.574 13.2197 13.732 12.8218 13.732C12.424 13.732 12.0425 13.574 11.7612 13.2927C11.4799 13.0114 11.3218 12.6298 11.3218 12.232C11.3218 10.884 12.0118 9.792 12.8818 9.078M15.9998 24C16.5303 24 17.039 23.7893 17.4141 23.4142C17.7891 23.0391 17.9998 22.5304 17.9998 22C17.9998 21.4696 17.7891 20.9609 17.4141 20.5858C17.039 20.2107 16.5303 20 15.9998 20C15.4694 20 14.9607 20.2107 14.5856 20.5858C14.2106 20.9609 13.9998 21.4696 13.9998 22C13.9998 22.5304 14.2106 23.0391 14.5856 23.4142C14.9607 23.7893 15.4694 24 15.9998 24Z' fill='%2372767C'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9998 27C18.9172 27 21.7151 25.8411 23.778 23.7782C25.8409 21.7153 26.9998 18.9174 26.9998 16C26.9998 13.0826 25.8409 10.2847 23.778 8.22183C21.7151 6.15893 18.9172 5 15.9998 5C13.0824 5 10.2845 6.15893 8.22164 8.22183C6.15874 10.2847 4.99981 13.0826 4.99981 16C4.99981 18.9174 6.15874 21.7153 8.22164 23.7782C10.2845 25.8411 13.0824 27 15.9998 27ZM15.9998 30C19.7128 30 23.2738 28.525 25.8993 25.8995C28.5248 23.274 29.9998 19.713 29.9998 16C29.9998 12.287 28.5248 8.72601 25.8993 6.1005C23.2738 3.475 19.7128 2 15.9998 2C12.2868 2 8.72583 3.475 6.10032 6.1005C3.47481 8.72601 1.99981 12.287 1.99981 16C1.99981 19.713 3.47481 23.274 6.10032 25.8995C8.72583 28.525 12.2868 30 15.9998 30ZM17.9998 11C17.9998 11.5304 17.7891 12.0391 17.414 12.4142C17.039 12.7893 16.5302 13 15.9998 13C15.4694 13 14.9607 12.7893 14.5856 12.4142C14.2105 12.0391 13.9998 11.5304 13.9998 11C13.9998 10.4696 14.2105 9.96086 14.5856 9.58579C14.9607 9.21071 15.4694 9 15.9998 9C16.5302 9 17.039 9.21071 17.414 9.58579C17.7891 9.96086 17.9998 10.4696 17.9998 11ZM17.4998 17C17.4998 16.6022 17.3418 16.2206 17.0605 15.9393C16.7792 15.658 16.3976 15.5 15.9998 15.5C15.602 15.5 15.2205 15.658 14.9392 15.9393C14.6578 16.2206 14.4998 16.6022 14.4998 17V22C14.4998 22.3978 14.6578 22.7794 14.9392 23.0607C15.2205 23.342 15.602 23.5 15.9998 23.5C16.3976 23.5 16.7792 23.342 17.0605 23.0607C17.3418 22.7794 17.4998 22.3978 17.4998 22V17Z' fill='%23007BC3'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-success {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 16C27 18.9174 25.8411 21.7153 23.7782 23.7782C21.7153 25.8411 18.9174 27 16 27C13.0826 27 10.2847 25.8411 8.22183 23.7782C6.15893 21.7153 5 18.9174 5 16C5 13.0826 6.15893 10.2847 8.22183 8.22183C10.2847 6.15893 13.0826 5 16 5C18.9174 5 21.7153 6.15893 23.7782 8.22183C25.8411 10.2847 27 13.0826 27 16ZM30 16C30 19.713 28.525 23.274 25.8995 25.8995C23.274 28.525 19.713 30 16 30C12.287 30 8.72601 28.525 6.1005 25.8995C3.475 23.274 2 19.713 2 16C2 12.287 3.475 8.72601 6.1005 6.1005C8.72601 3.475 12.287 2 16 2C19.713 2 23.274 3.475 25.8995 6.1005C28.525 8.72601 30 12.287 30 16Z' fill='%231EA74E'/%3e%3cpath d='M22.0332 11.8055C21.7662 11.5836 21.4239 11.4784 21.082 11.5037C20.7813 11.5261 20.4965 11.6493 20.2764 11.8533L20.1856 11.9451L14.5566 18.3133L11.7363 15.5789L11.7295 15.574L11.6328 15.491C11.3977 15.31 11.1069 15.2133 10.8086 15.2156C10.4676 15.2183 10.1383 15.3506 9.89257 15.5887C9.64655 15.8271 9.50337 16.1528 9.49999 16.4969C9.4968 16.8411 9.63319 17.1708 9.87499 17.4139L9.88183 17.4197L13.7021 21.1258C13.8313 21.2511 13.9854 21.348 14.1533 21.4119C14.3212 21.4758 14.5003 21.5054 14.6797 21.4988C14.8589 21.4922 15.0357 21.4499 15.1982 21.3738C15.3609 21.2976 15.5068 21.1883 15.626 21.0535L22.1768 13.6414L22.2568 13.5408C22.3319 13.4369 22.3914 13.3221 22.4326 13.2C22.4876 13.0371 22.5096 12.8647 22.4961 12.6931C22.4826 12.5215 22.4341 12.3543 22.3545 12.2019C22.2749 12.0496 22.1651 11.9151 22.0332 11.8055Z' fill='%231EA74E'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-error {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.9998 16C26.9998 18.9174 25.8408 21.7153 23.7779 23.7782C21.715 25.8411 18.9172 27 15.9998 27C13.0824 27 10.2845 25.8411 8.2216 23.7782C6.1587 21.7153 4.99977 18.9174 4.99977 16C4.99977 13.0826 6.1587 10.2847 8.2216 8.22183C10.2845 6.15893 13.0824 5 15.9998 5C18.9172 5 21.715 6.15893 23.7779 8.22183C25.8408 10.2847 26.9998 13.0826 26.9998 16ZM29.9998 16C29.9998 19.713 28.5248 23.274 25.8993 25.8995C23.2738 28.525 19.7128 30 15.9998 30C12.2867 30 8.72579 28.525 6.10028 25.8995C3.47477 23.274 1.99977 19.713 1.99977 16C1.99977 12.287 3.47477 8.72601 6.10028 6.1005C8.72579 3.475 12.2867 2 15.9998 2C19.7128 2 23.2738 3.475 25.8993 6.1005C28.5248 8.72601 29.9998 12.287 29.9998 16ZM13.0598 10.94C12.7754 10.675 12.3993 10.5308 12.0107 10.5377C11.6221 10.5445 11.2514 10.7019 10.9765 10.9768C10.7017 11.2516 10.5443 11.6224 10.5374 12.011C10.5306 12.3996 10.6748 12.7757 10.9398 13.06L13.8798 16L10.9398 18.94C10.7924 19.0773 10.6742 19.2429 10.5922 19.4269C10.5102 19.6109 10.4661 19.8095 10.4626 20.011C10.459 20.2124 10.4961 20.4124 10.5715 20.5992C10.647 20.786 10.7593 20.9556 10.9017 21.0981C11.0441 21.2405 11.2138 21.3528 11.4006 21.4282C11.5874 21.5037 11.7874 21.5407 11.9888 21.5372C12.1902 21.5336 12.3888 21.4895 12.5728 21.4076C12.7568 21.3256 12.9224 21.2074 13.0598 21.06L15.9998 18.12L18.9398 21.06C19.0771 21.2074 19.2427 21.3256 19.4267 21.4076C19.6107 21.4895 19.8093 21.5336 20.0107 21.5372C20.2121 21.5407 20.4122 21.5037 20.599 21.4282C20.7857 21.3528 20.9554 21.2405 21.0978 21.0981C21.2403 20.9556 21.3526 20.786 21.428 20.5992C21.5035 20.4124 21.5405 20.2124 21.537 20.011C21.5334 19.8095 21.4893 19.6109 21.4073 19.4269C21.3253 19.2429 21.2071 19.0773 21.0598 18.94L18.1198 16L21.0598 13.06C21.2071 12.9227 21.3253 12.7571 21.4073 12.5731C21.4893 12.3891 21.5334 12.1905 21.537 11.989C21.5405 11.7876 21.5035 11.5876 21.428 11.4008C21.3526 11.214 21.2403 11.0444 21.0978 10.9019C20.9554 10.7595 20.7857 10.6472 20.599 10.5718C20.4122 10.4963 20.2121 10.4593 20.0107 10.4628C19.8093 10.4664 19.6107 10.5105 19.4267 10.5924C19.2427 10.6744 19.0771 10.7926 18.9398 10.94L15.9998 13.88L13.0598 10.94Z' fill='%23FF4F4F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-warning {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.3083 7.84973L4.70069 24.2247C4.5292 24.5173 4.43891 24.8493 4.43891 25.1872C4.43891 25.5251 4.52919 25.8571 4.70068 26.1498C4.87217 26.4424 5.11882 26.6854 5.41585 26.8544C5.71289 27.0234 6.04983 27.1123 6.39282 27.1123H25.608C25.951 27.1123 26.288 27.0234 26.585 26.8544C26.882 26.6854 27.1287 26.4424 27.3002 26.1498C27.4717 25.8571 27.5619 25.5251 27.5619 25.1872C27.5619 24.8493 27.4717 24.5173 27.3002 24.2247L17.6926 7.84781C17.5211 7.55518 17.2744 7.31218 16.9774 7.14323C16.6803 6.97428 16.3434 6.88534 16.0004 6.88534C15.6575 6.88534 15.3205 6.97428 15.0235 7.14323C14.7265 7.31218 14.4798 7.5571 14.3083 7.84973ZM20.2288 6.40398C18.3491 3.19867 13.6518 3.19867 11.7701 6.40398L2.1625 22.7789C0.280837 25.9862 2.63145 30 6.39282 30H25.608C29.3694 30 31.72 25.9862 29.8364 22.7789L20.2288 6.40398ZM16.0004 11.7115C16.3891 11.7115 16.7618 11.8636 17.0367 12.1344C17.3115 12.4052 17.4659 12.7724 17.4659 13.1553V17.0055C17.4659 17.3885 17.3115 17.7557 17.0367 18.0265C16.7618 18.2972 16.3891 18.4494 16.0004 18.4494C15.6118 18.4494 15.239 18.2972 14.9642 18.0265C14.6894 17.7557 14.535 17.3885 14.535 17.0055V13.1553C14.535 12.7724 14.6894 12.4052 14.9642 12.1344C15.239 11.8636 15.6118 11.7115 16.0004 11.7115ZM17.9544 22.7809C17.9544 23.2914 17.7485 23.7811 17.3821 24.1421C17.0156 24.5031 16.5186 24.706 16.0004 24.706C15.4822 24.706 14.9852 24.5031 14.6188 24.1421C14.2523 23.7811 14.0465 23.2914 14.0465 22.7809C14.0465 22.2703 14.2523 21.7806 14.6188 21.4196C14.9852 21.0586 15.4822 20.8557 16.0004 20.8557C16.5186 20.8557 17.0156 21.0586 17.3821 21.4196C17.7485 21.7806 17.9544 22.2703 17.9544 22.7809Z' fill='%23F0A92D'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-delete {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.0002 4H14.0002C13.7349 4 13.4806 4.10536 13.2931 4.29289C13.1055 4.48043 13.0002 4.73478 13.0002 5V6H19.0002V5C19.0002 4.73478 18.8948 4.48043 18.7073 4.29289C18.5197 4.10536 18.2654 4 18.0002 4ZM22.0002 6V5C22.0002 3.93913 21.5787 2.92172 20.8286 2.17157C20.0784 1.42143 19.061 1 18.0002 1H14.0002C12.9393 1 11.9219 1.42143 11.1717 2.17157C10.4216 2.92172 10.0002 3.93913 10.0002 5V6H4.50216C4.10433 6 3.7228 6.15804 3.4415 6.43934C3.16019 6.72064 3.00216 7.10218 3.00216 7.5C3.00216 7.89782 3.16019 8.27936 3.4415 8.56066C3.7228 8.84196 4.10433 9 4.50216 9H5.12616L5.76016 24.25C5.82467 25.7969 6.48463 27.2589 7.60207 28.3305C8.71952 29.4021 10.2079 30.0003 11.7562 30H20.2462C21.794 29.9998 23.2819 29.4014 24.399 28.3299C25.516 27.2583 26.1757 25.7965 26.2402 24.25L26.8762 9H27.5002C27.898 9 28.2795 8.84196 28.5608 8.56066C28.8421 8.27936 29.0002 7.89782 29.0002 7.5C29.0002 7.10218 28.8421 6.72064 28.5608 6.43934C28.2795 6.15804 27.898 6 27.5002 6H22.0002ZM23.8722 9H8.12816L8.75816 24.124C8.79016 24.8976 9.12003 25.6289 9.67878 26.1649C10.2375 26.7009 10.9819 27.0001 11.7562 27H20.2462C21.0201 26.9996 21.7639 26.7002 22.3223 26.1642C22.8806 25.6283 23.2102 24.8973 23.2422 24.124L23.8722 9ZM11.5002 13V23C11.5002 23.3978 11.6582 23.7794 11.9395 24.0607C12.2208 24.342 12.6023 24.5 13.0002 24.5C13.398 24.5 13.7795 24.342 14.0608 24.0607C14.3421 23.7794 14.5002 23.3978 14.5002 23V13C14.5002 12.6022 14.3421 12.2206 14.0608 11.9393C13.7795 11.658 13.398 11.5 13.0002 11.5C12.6023 11.5 12.2208 11.658 11.9395 11.9393C11.6582 12.2206 11.5002 12.6022 11.5002 13ZM19.0002 11.5C19.398 11.5 19.7795 11.658 20.0608 11.9393C20.3421 12.2206 20.5002 12.6022 20.5002 13V23C20.5002 23.3978 20.3421 23.7794 20.0608 24.0607C19.7795 24.342 19.398 24.5 19.0002 24.5C18.6023 24.5 18.2208 24.342 17.9395 24.0607C17.6582 23.7794 17.5002 23.3978 17.5002 23V13C17.5002 12.6022 17.6582 12.2206 17.9395 11.9393C18.2208 11.658 18.6023 11.5 19.0002 11.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-search {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.3525 14.2009C23.3525 15.4027 23.1158 16.5927 22.6559 17.7031C22.1959 18.8134 21.5218 19.8222 20.672 20.672C19.8222 21.5218 18.8134 22.1959 17.7031 22.6559C16.5927 23.1158 15.4027 23.3525 14.2009 23.3525C12.9991 23.3525 11.8091 23.1158 10.6987 22.6559C9.58842 22.1959 8.57956 21.5218 7.72976 20.672C6.87996 19.8222 6.20586 18.8134 5.74595 17.7031C5.28604 16.5927 5.04932 15.4027 5.04932 14.2009C5.04932 11.7738 6.01351 9.44601 7.72976 7.72976C9.44601 6.01351 11.7738 5.04932 14.2009 5.04932C16.6281 5.04932 18.9558 6.01351 20.672 7.72976C22.3883 9.44601 23.3525 11.7738 23.3525 14.2009ZM21.6849 23.8406C19.233 25.744 16.1479 26.6416 13.0576 26.3504C9.96725 26.0593 7.10405 24.6013 5.05085 22.2734C2.99765 19.9455 1.90881 16.9226 2.00599 13.8201C2.10316 10.7176 3.37906 7.76878 5.57392 5.57392C7.76878 3.37906 10.7176 2.10316 13.8201 2.00599C16.9226 1.90881 19.9455 2.99765 22.2734 5.05085C24.6013 7.10405 26.0593 9.96725 26.3504 13.0576C26.6416 16.1479 25.744 19.233 23.8406 21.6849L29.5145 27.3588C29.6644 27.4985 29.7846 27.6669 29.868 27.854C29.9513 28.0411 29.9961 28.243 29.9998 28.4478C30.0034 28.6526 29.9657 28.8561 29.889 29.046C29.8123 29.2359 29.6981 29.4084 29.5533 29.5533C29.4084 29.6981 29.2359 29.8123 29.046 29.889C28.8561 29.9657 28.6526 30.0034 28.4478 29.9998C28.243 29.9961 28.0411 29.9513 27.854 29.868C27.6669 29.7846 27.4985 29.6644 27.3588 29.5145L21.6849 23.8406Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.266 5.59205C4.79 3.91805 6.966 2.99805 9.52 2.99805C11.848 2.99805 14.334 4.09805 16 6.25005C17.656 4.10005 20.132 2.99805 22.48 2.99805C25.028 2.99805 27.2 3.91405 28.728 5.58405C30.24 7.24005 31 9.50805 31 12.024C31 16.356 28.774 19.842 25.956 22.552C23.146 25.256 19.616 27.318 16.69 28.832C16.4757 28.9429 16.2378 29.0004 15.9965 28.9997C15.7552 28.999 15.5177 28.9401 15.304 28.828C12.378 27.298 8.848 25.252 6.038 22.562C3.22 19.86 1 16.386 1 12.026C1 9.51605 1.756 7.24805 3.266 5.59205ZM5.484 7.61205C4.574 8.61205 4 10.106 4 12.026C4 15.274 5.632 18.018 8.114 20.394C10.406 22.59 13.314 24.364 16.004 25.804C18.674 24.384 21.584 22.596 23.878 20.39C26.364 17.996 28 15.24 28 12.026C28 10.1 27.424 8.60605 26.512 7.60605C25.616 6.62805 24.28 6.00005 22.48 6.00005C20.528 6.00005 18.294 7.25605 17.426 9.90005C17.3278 10.2009 17.137 10.463 16.8809 10.6488C16.6248 10.8346 16.3164 10.9347 16 10.9347C15.6836 10.9347 15.3752 10.8346 15.1191 10.6488C14.863 10.463 14.6722 10.2009 14.574 9.90005C13.708 7.26005 11.45 6.00005 9.52 6.00005C7.714 6.00005 6.38 6.62805 5.484 7.61205Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.52 3.002C6.964 3.002 4.79 3.92 3.266 5.594C1.756 7.25 1 9.518 1 12.028C1 16.388 3.22 19.862 6.04 22.564C8.848 25.254 12.38 27.3 15.304 28.83C15.5177 28.9421 15.7552 29.001 15.9965 29.0017C16.2378 29.0024 16.4757 28.9449 16.69 28.834C19.616 27.32 23.146 25.258 25.956 22.554C28.776 19.844 31 16.358 31 12.028C31 9.508 30.24 7.242 28.728 5.586C27.202 3.916 25.028 3 22.48 3C20.328 3 18.548 3.798 17.194 5.302C16.7312 5.82318 16.3305 6.39635 16 7.01C15.6695 6.39635 15.2688 5.82318 14.806 5.302C13.452 3.798 11.672 3.002 9.52 3.002Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.462 5.88462H21.538C22.2592 5.88467 22.9552 6.1449 23.4936 6.6158C24.032 7.08669 24.3752 7.73539 24.4579 8.43846L26.0413 21.9C26.0888 22.304 26.0488 22.7133 25.9237 23.1011C25.7987 23.4889 25.5915 23.8463 25.3158 24.1499C25.04 24.4536 24.702 24.6965 24.3238 24.8629C23.9456 25.0293 23.5359 25.1154 23.1214 25.1154H8.87858C8.46413 25.1154 8.05438 25.0293 7.6762 24.8629C7.29802 24.6965 6.95998 24.4536 6.68424 24.1499C6.40851 23.8463 6.20132 23.4889 6.07628 23.1011C5.95123 22.7133 5.91115 22.304 5.95868 21.9L7.54209 8.43846C7.62478 7.73539 7.96798 7.08669 8.50638 6.6158C9.04477 6.1449 9.74079 5.88467 10.462 5.88462ZM4.62219 8.10769C4.78758 6.70156 5.47398 5.40416 6.55077 4.46236C7.62755 3.52056 9.01958 3.0001 10.462 3H21.538C22.9804 3.0001 24.3724 3.52056 25.4492 4.46236C26.526 5.40416 27.2124 6.70156 27.3778 8.10769L28.9612 21.5692C29.0563 22.3773 28.9761 23.1959 28.726 23.9714C28.4759 24.7469 28.0616 25.4618 27.5101 26.0691C26.9586 26.6763 26.2825 27.1623 25.5262 27.4951C24.7698 27.8279 23.9503 27.9999 23.1214 28H8.87858C8.04969 27.9999 7.23017 27.8279 6.47382 27.4951C5.71747 27.1623 5.04137 26.6763 4.48991 26.0691C3.93844 25.4618 3.52406 24.7469 3.27397 23.9714C3.02388 23.1959 2.94373 22.3773 3.03878 21.5692L4.62219 8.10769ZM10.121 10.2115C10.121 9.82901 10.2759 9.46216 10.5515 9.19167C10.8271 8.92119 11.201 8.76923 11.5908 8.76923C11.9806 8.76923 12.3544 8.92119 12.63 9.19167C12.9057 9.46216 13.0605 9.82901 13.0605 10.2115V10.6923C13.0605 11.4574 13.3702 12.1911 13.9215 12.732C14.4727 13.273 15.2204 13.5769 16 13.5769C16.7796 13.5769 17.5273 13.273 18.0785 12.732C18.6298 12.1911 18.9395 11.4574 18.9395 10.6923V10.2115C18.9395 9.82901 19.0943 9.46216 19.37 9.19167C19.6456 8.92119 20.0194 8.76923 20.4092 8.76923C20.799 8.76923 21.1729 8.92119 21.4485 9.19167C21.7241 9.46216 21.879 9.82901 21.879 10.2115V10.6923C21.879 12.2224 21.2596 13.6898 20.1571 14.7718C19.0546 15.8537 17.5592 16.4615 16 16.4615C14.4408 16.4615 12.9454 15.8537 11.8429 14.7718C10.7404 13.6898 10.121 12.2224 10.121 10.6923V10.2115Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.62219 8.10769C4.78758 6.70156 5.47398 5.40416 6.55077 4.46236C7.62755 3.52056 9.01958 3.0001 10.462 3H21.538C22.9804 3.0001 24.3724 3.52056 25.4492 4.46236C26.526 5.40416 27.2124 6.70156 27.3778 8.10769L28.9612 21.5692C29.0563 22.3773 28.9761 23.1959 28.726 23.9714C28.4759 24.7469 28.0616 25.4618 27.5101 26.0691C26.9586 26.6763 26.2825 27.1623 25.5262 27.4951C24.7698 27.8279 23.9503 27.9999 23.1214 28H8.87858C8.04969 27.9999 7.23017 27.8279 6.47382 27.4951C5.71747 27.1623 5.04137 26.6763 4.48991 26.0691C3.93844 25.4618 3.52406 24.7469 3.27397 23.9714C3.02388 23.1959 2.94373 22.3773 3.03878 21.5692L4.62219 8.10769ZM10.121 10.2115C10.121 9.82901 10.2759 9.46216 10.5515 9.19167C10.8271 8.92119 11.201 8.76923 11.5908 8.76923C11.9806 8.76923 12.3544 8.92119 12.63 9.19167C12.9057 9.46216 13.0605 9.82901 13.0605 10.2115V10.6923C13.0605 11.4574 13.3702 12.1911 13.9215 12.732C14.4727 13.273 15.2204 13.5769 16 13.5769C16.7796 13.5769 17.5273 13.273 18.0785 12.732C18.6298 12.1911 18.9395 11.4574 18.9395 10.6923V10.2115C18.9395 9.82901 19.0943 9.46216 19.37 9.19167C19.6456 8.92119 20.0194 8.76923 20.4092 8.76923C20.799 8.76923 21.1729 8.92119 21.4485 9.19167C21.7241 9.46216 21.879 9.82901 21.879 10.2115V10.6923C21.879 12.2224 21.2596 13.6898 20.1571 14.7718C19.0546 15.8537 17.5592 16.4615 16 16.4615C14.4408 16.4615 12.9454 15.8537 11.8429 14.7718C10.7404 13.6898 10.121 12.2224 10.121 10.6923V10.2115Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart-add {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.62219 8.10769C4.78758 6.70156 5.47398 5.40416 6.55077 4.46236C7.62755 3.52056 9.01958 3.0001 10.462 3H21.538C22.9804 3.0001 24.3724 3.52056 25.4492 4.46236C26.526 5.40416 27.2124 6.70156 27.3778 8.10769L28.9612 21.5692C29.0563 22.3773 28.9761 23.1959 28.726 23.9714C28.4759 24.7469 28.0616 25.4618 27.5101 26.0691C26.9586 26.6763 26.2825 27.1623 25.5262 27.4951C24.7698 27.8279 23.9503 27.9999 23.1214 28H8.87858C8.04969 27.9999 7.23017 27.8279 6.47382 27.4951C5.71747 27.1623 5.04137 26.6763 4.48991 26.0691C3.93844 25.4618 3.52406 24.7469 3.27397 23.9714C3.02388 23.1959 2.94373 22.3773 3.03878 21.5692L4.62219 8.10769ZM10.121 10.2115C10.121 9.82901 10.2759 9.46216 10.5515 9.19167C10.8271 8.92119 11.201 8.76923 11.5908 8.76923C11.9806 8.76923 12.3544 8.92119 12.63 9.19167C12.9057 9.46216 13.0605 9.82901 13.0605 10.2115V10.6923C13.0605 11.4574 13.3702 12.1911 13.9215 12.732C14.4727 13.273 15.2204 13.5769 16 13.5769C16.7796 13.5769 17.5273 13.273 18.0785 12.732C18.6298 12.1911 18.9395 11.4574 18.9395 10.6923V10.2115C18.9395 9.82901 19.0943 9.46216 19.37 9.19167C19.6456 8.92119 20.0194 8.76923 20.4092 8.76923C20.799 8.76923 21.1729 8.92119 21.4485 9.19167C21.7241 9.46216 21.879 9.82901 21.879 10.2115V10.6923C21.879 12.2224 21.2596 13.6898 20.1571 14.7718C19.0546 15.8537 17.5592 16.4615 16 16.4615C14.4408 16.4615 12.9454 15.8537 11.8429 14.7718C10.7404 13.6898 10.121 12.2224 10.121 10.6923V10.2115Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.3846 2.40625C17.3846 2.03329 17.2387 1.6756 16.9791 1.41188C16.7194 1.14816 16.3672 1 16 1C15.6328 1 15.2806 1.14816 15.0209 1.41188C14.7613 1.6756 14.6154 2.03329 14.6154 2.40625V3.8125H9.53846C8.06957 3.8125 6.66084 4.40513 5.62218 5.46002C4.58351 6.51492 4 7.94566 4 9.4375V22.5625C4 24.0543 4.58351 25.4851 5.62218 26.54C6.66084 27.5949 8.06957 28.1875 9.53846 28.1875H14.6154V29.5938C14.6154 29.9667 14.7613 30.3244 15.0209 30.5881C15.2806 30.8518 15.6328 31 16 31C16.3672 31 16.7194 30.8518 16.9791 30.5881C17.2387 30.3244 17.3846 29.9667 17.3846 29.5938V28.1875H22.4615C23.9304 28.1875 25.3392 27.5949 26.3778 26.54C27.4165 25.4851 28 24.0543 28 22.5625V9.4375C28 7.94566 27.4165 6.51492 26.3778 5.46002C25.3392 4.40513 23.9304 3.8125 22.4615 3.8125H17.3846V2.40625ZM14.6154 6.625H9.53846C8.80402 6.625 8.09965 6.92132 7.58032 7.44876C7.06099 7.97621 6.76923 8.69158 6.76923 9.4375V22.5625C6.76923 23.3084 7.06099 24.0238 7.58032 24.5512C8.09965 25.0787 8.80402 25.375 9.53846 25.375H14.6154V6.625ZM17.3846 25.375V6.625H22.4615C23.196 6.625 23.9003 6.92132 24.4197 7.44876C24.939 7.97621 25.2308 8.69158 25.2308 9.4375V22.5625C25.2308 23.3084 24.939 24.0238 24.4197 24.5512C23.9003 25.0787 23.196 25.375 22.4615 25.375H17.3846Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15 1C15.3672 1 15.7198 1.14839 15.9795 1.41211C16.239 1.6758 16.3848 2.03344 16.3848 2.40625V3.8125H21.4619C22.9307 3.8126 24.3394 4.40516 25.3779 5.45996C26.4166 6.51485 27 7.94567 27 9.4375V17.498C26.2304 17.1771 25.3859 17 24.5 17C24.4097 17 24.3199 17.0032 24.2305 17.0068V9.4375C24.2305 8.69174 23.939 7.97663 23.4199 7.44922C22.9007 6.92186 22.1962 6.6251 21.4619 6.625H16.3848V25.375H18.2754C18.6015 26.4592 19.2033 27.4232 19.999 28.1875H16.3848V29.5938C16.3848 29.9666 16.239 30.3242 15.9795 30.5879C15.7198 30.8516 15.3672 31 15 31C14.6328 31 14.2802 30.8516 14.0205 30.5879C13.761 30.3242 13.6152 29.9666 13.6152 29.5938V28.1875H8.53809C7.06933 28.1874 5.66064 27.5948 4.62207 26.54C3.58342 25.4851 3 24.0543 3 22.5625V9.4375C3 7.94567 3.58342 6.51485 4.62207 5.45996C5.66064 4.40516 7.06933 3.8126 8.53809 3.8125H13.6152V2.40625C13.6152 2.03344 13.761 1.6758 14.0205 1.41211C14.2802 1.14839 14.6328 1 15 1ZM28.1367 20.0029C28.3239 19.9871 28.5094 20.0428 28.6611 20.1602L28.7246 20.2139C28.804 20.2896 28.8683 20.3831 28.915 20.4854C28.9617 20.5876 28.9901 20.6991 28.998 20.8125C29.0058 20.9259 28.9938 21.0409 28.9619 21.1494C28.9299 21.2579 28.8782 21.3595 28.8105 21.4473L24.7666 26.6885C24.6954 26.7808 24.6068 26.8565 24.5068 26.9102C24.4068 26.9638 24.2973 26.9943 24.1855 26.999C24.0738 27.0037 23.962 26.9826 23.8584 26.9375C23.755 26.8923 23.6614 26.8243 23.584 26.7383L21.2246 24.1172L21.2217 24.1133C21.0771 23.9467 20.9981 23.7252 21 23.498C21.0021 23.2711 21.085 23.0513 21.2324 22.8877C21.3803 22.7239 21.5827 22.6289 21.7959 22.627C22.0091 22.6252 22.213 22.7167 22.3633 22.8779L22.3662 22.8818L24.1094 24.8174L27.5869 20.3105C27.7241 20.1334 27.922 20.0213 28.1367 20.0029ZM8.53809 6.625C7.80378 6.6251 7.09932 6.92186 6.58008 7.44922C6.06096 7.97663 5.76953 8.69174 5.76953 9.4375V22.5625C5.76953 23.3083 6.06096 24.0234 6.58008 24.5508C7.09932 25.0781 7.80378 25.3749 8.53809 25.375H13.6152V6.625H8.53809Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.25 14C6.25 11.4141 7.27723 8.93419 9.10571 7.10571C10.9342 5.27723 13.4141 4.25 16 4.25C18.5859 4.25 21.0658 5.27723 22.8943 7.10571C24.7228 8.93419 25.75 11.4141 25.75 14C25.75 17.728 24.202 19.924 22.376 21.63C21.606 22.35 20.846 22.93 20.036 23.546L19.306 24.106C18.7603 24.5212 18.2388 24.9673 17.744 25.442C17.258 25.922 16.674 26.592 16.284 27.462C16.243 27.5641 16.1778 27.6547 16.094 27.726L16.064 27.742C16.064 27.742 16.044 27.75 16 27.75L15.936 27.744L15.906 27.726C15.8225 27.6552 15.7573 27.5654 15.716 27.464C15.3579 26.7065 14.863 26.0216 14.256 25.444C13.7612 24.9693 13.2397 24.5232 12.694 24.108C12.4447 23.9147 12.2007 23.728 11.962 23.548C11.1509 22.9477 10.3705 22.3069 9.624 21.628C7.8 19.926 6.25 17.73 6.25 14ZM29 14C29 20.8 24.868 23.95 21.94 26.182C20.672 27.152 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.33 27.152 10.058 26.182C7.132 23.95 3 20.798 3 14C3 10.5522 4.36964 7.24558 6.80761 4.80761C9.24558 2.36964 12.5522 1 16 1C19.4478 1 22.7544 2.36964 25.1924 4.80761C27.6304 7.24558 29 10.5522 29 14ZM19 14C19 14.7956 18.6839 15.5587 18.1213 16.1213C17.5587 16.6839 16.7956 17 16 17C15.2044 17 14.4413 16.6839 13.8787 16.1213C13.3161 15.5587 13 14.7956 13 14C13 13.2044 13.3161 12.4413 13.8787 11.8787C14.4413 11.3161 15.2044 11 16 11C16.7956 11 17.5587 11.3161 18.1213 11.8787C18.6839 12.4413 19 13.2044 19 14ZM22 14C22 15.5913 21.3679 17.1174 20.2426 18.2426C19.1174 19.3679 17.5913 20 16 20C14.4087 20 12.8826 19.3679 11.7574 18.2426C10.6321 17.1174 10 15.5913 10 14C10 12.4087 10.6321 10.8826 11.7574 9.75736C12.8826 8.63214 14.4087 8 16 8C17.5913 8 19.1174 8.63214 20.2426 9.75736C21.3679 10.8826 22 12.4087 22 14Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29 14C29 20.8 24.868 23.95 21.94 26.182C20.672 27.152 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.33 27.152 10.058 26.182C7.132 23.95 3 20.798 3 14C3 10.5522 4.36964 7.24558 6.80761 4.80761C9.24558 2.36964 12.5522 1 16 1C19.4478 1 22.7544 2.36964 25.1924 4.80761C27.6304 7.24558 29 10.5522 29 14ZM19 14C19 14.7956 18.6839 15.5587 18.1213 16.1213C17.5587 16.6839 16.7956 17 16 17C15.2044 17 14.4413 16.6839 13.8787 16.1213C13.3161 15.5587 13 14.7956 13 14C13 13.2044 13.3161 12.4413 13.8787 11.8787C14.4413 11.3161 15.2044 11 16 11C16.7956 11 17.5587 11.3161 18.1213 11.8787C18.6839 12.4413 19 13.2044 19 14Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-logout {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.56 14.94C29.8409 15.2213 29.9987 15.6025 29.9987 16C29.9987 16.3975 29.8409 16.7787 29.56 17.06L24.56 22.06C24.4227 22.2074 24.2571 22.3256 24.0731 22.4076C23.8891 22.4895 23.6905 22.5336 23.489 22.5372C23.2876 22.5407 23.0876 22.5037 22.9008 22.4282C22.714 22.3528 22.5444 22.2405 22.4019 22.0981C22.2595 21.9556 22.1472 21.786 22.0718 21.5992C21.9963 21.4124 21.9593 21.2124 21.9628 21.011C21.9664 20.8095 22.0105 20.6109 22.0924 20.4269C22.1744 20.2429 22.2926 20.0773 22.44 19.94L24.88 17.5H9.5C9.10218 17.5 8.72064 17.342 8.43934 17.0607C8.15804 16.7794 8 16.3978 8 16C8 15.6022 8.15804 15.2206 8.43934 14.9393C8.72064 14.658 9.10218 14.5 9.5 14.5H24.88L22.44 12.06C22.175 11.7757 22.0308 11.3996 22.0376 11.011C22.0445 10.6224 22.2019 10.2516 22.4768 9.97676C22.7516 9.70193 23.1224 9.54451 23.511 9.53765C23.8996 9.53079 24.2757 9.67504 24.56 9.94L29.56 14.94ZM19 8.5C19 8.89782 18.842 9.27936 18.5607 9.56066C18.2794 9.84196 17.8978 10 17.5 10C17.1022 10 16.7206 9.84196 16.4393 9.56066C16.158 9.27936 16 8.89782 16 8.5V8C16 7.20435 15.6839 6.44129 15.1213 5.87868C14.5587 5.31607 13.7956 5 13 5H8C7.20435 5 6.44129 5.31607 5.87868 5.87868C5.31607 6.44129 5 7.20435 5 8V24C5 24.7956 5.31607 25.5587 5.87868 26.1213C6.44129 26.6839 7.20435 27 8 27H13C13.7956 27 14.5587 26.6839 15.1213 26.1213C15.6839 25.5587 16 24.7956 16 24V23.5C16 23.1022 16.158 22.7206 16.4393 22.4393C16.7206 22.158 17.1022 22 17.5 22C17.8978 22 18.2794 22.158 18.5607 22.4393C18.842 22.7206 19 23.1022 19 23.5V24C19 25.5913 18.3679 27.1174 17.2426 28.2426C16.1174 29.3679 14.5913 30 13 30H8C6.4087 30 4.88258 29.3679 3.75736 28.2426C2.63214 27.1174 2 25.5913 2 24V8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2H13C14.5913 2 16.1174 2.63214 17.2426 3.75736C18.3679 4.88258 19 6.4087 19 8V8.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user:not(.active) { mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 17C23.7 17 30 22 30 26C30 27.0609 29.5786 28.0783 28.8284 28.8284C28.0783 29.5786 27.0609 30 26 30H6C4.93913 30 3.92172 29.5786 3.17157 28.8284C2.42143 28.0783 2 27.0609 2 26C2 22 8.3 17 16 17ZM16 20C12.78 20 9.872 21.052 7.816 22.468C5.596 24.002 5 25.466 5 26C5 26.2652 5.10536 26.5196 5.29289 26.7071C5.48043 26.8946 5.73478 27 6 27H26C26.2652 27 26.5196 26.8946 26.7071 26.7071C26.8946 26.5196 27 26.2652 27 26C27 25.466 26.406 24 24.184 22.468C22.128 21.052 19.218 20 16 20ZM16 2C17.8565 2 19.637 2.7375 20.9497 4.05025C22.2625 5.36301 23 7.14348 23 9C23 10.8565 22.2625 12.637 20.9497 13.9497C19.637 15.2625 17.8565 16 16 16C14.1435 16 12.363 15.2625 11.0503 13.9497C9.7375 12.637 9 10.8565 9 9C9 7.14348 9.7375 5.36301 11.0503 4.05025C12.363 2.7375 14.1435 2 16 2ZM16 5C14.9391 5 13.9217 5.42143 13.1716 6.17157C12.4214 6.92172 12 7.93913 12 9C12 10.0609 12.4214 11.0783 13.1716 11.8284C13.9217 12.5786 14.9391 13 16 13C17.0609 13 18.0783 12.5786 18.8284 11.8284C19.5786 11.0783 20 10.0609 20 9C20 7.93913 19.5786 6.92172 18.8284 6.17157C18.0783 5.42143 17.0609 5 16 5Z' fill='%23333333'/%3e%3c/svg%3e "); }
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 18C23.7 18 30 23 30 27C30 27.7956 29.6839 28.5587 29.1213 29.1213C28.5587 29.6839 27.7956 30 27 30H5C4.20435 30 3.44129 29.6839 2.87868 29.1213C2.31607 28.5587 2 27.7956 2 27C2 23 8.3 18 16 18ZM16 2C17.8565 2 19.637 2.7375 20.9497 4.05025C22.2625 5.36301 23 7.14348 23 9C23 10.8565 22.2625 12.637 20.9497 13.9497C19.637 15.2625 17.8565 16 16 16C14.1435 16 12.363 15.2625 11.0503 13.9497C9.7375 12.637 9 10.8565 9 9C9 7.14348 9.7375 5.36301 11.0503 4.05025C12.363 2.7375 14.1435 2 16 2Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowup {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.5621 21.524C26.2813 21.8041 25.9007 21.9614 25.5039 21.9614C25.1071 21.9614 24.7265 21.8041 24.4457 21.524L16.5193 13.6078L8.59296 21.524C8.45587 21.6709 8.29055 21.7888 8.10687 21.8705C7.92319 21.9523 7.7249 21.9962 7.52384 21.9998C7.32278 22.0033 7.12307 21.9664 6.93661 21.8912C6.75016 21.8159 6.58078 21.704 6.43859 21.562C6.29639 21.42 6.1843 21.2508 6.10898 21.0646C6.03367 20.8784 5.99669 20.6789 6.00023 20.4781C6.00378 20.2773 6.04779 20.0793 6.12963 19.8958C6.21148 19.7124 6.32948 19.5473 6.4766 19.4104L15.4612 10.4374C15.7419 10.1573 16.1225 10 16.5193 10C16.9162 10 17.2967 10.1573 17.5775 10.4374L26.5621 19.4104C26.8425 19.6908 27 20.0709 27 20.4672C27 20.8635 26.8425 21.2436 26.5621 21.524Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowdown {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.43793 10.476C6.7187 10.1959 7.09929 10.0386 7.49611 10.0386C7.89293 10.0386 8.27352 10.1959 8.55429 10.476L16.4807 18.3922L24.407 10.476C24.5441 10.3291 24.7094 10.2112 24.8931 10.1295C25.0768 10.0477 25.2751 10.0038 25.4762 10.0002C25.6772 9.99669 25.8769 10.0336 26.0634 10.1088C26.2498 10.1841 26.4192 10.296 26.5614 10.438C26.7036 10.58 26.8157 10.7492 26.891 10.9354C26.9663 11.1216 27.0033 11.3211 26.9998 11.5219C26.9962 11.7227 26.9522 11.9207 26.8704 12.1042C26.7885 12.2876 26.6705 12.4527 26.5234 12.5896L17.5388 21.5626C17.2581 21.8427 16.8775 22 16.4807 22C16.0838 22 15.7033 21.8427 15.4225 21.5626L6.43793 12.5896C6.15751 12.3092 6 11.9291 6 11.5328C6 11.1365 6.15751 10.7564 6.43793 10.476Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowleft {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.524 6.43793C21.8041 6.7187 21.9614 7.09929 21.9614 7.49611C21.9614 7.89293 21.8041 8.27352 21.524 8.55429L13.6078 16.4807L21.524 24.407C21.6709 24.5441 21.7888 24.7094 21.8705 24.8931C21.9523 25.0768 21.9962 25.2751 21.9998 25.4762C22.0033 25.6772 21.9664 25.8769 21.8912 26.0634C21.8159 26.2498 21.704 26.4192 21.562 26.5614C21.42 26.7036 21.2508 26.8157 21.0646 26.891C20.8784 26.9663 20.6789 27.0033 20.4781 26.9998C20.2773 26.9962 20.0793 26.9522 19.8958 26.8704C19.7124 26.7885 19.5473 26.6705 19.4104 26.5234L10.4374 17.5388C10.1573 17.2581 10 16.8775 10 16.4807C10 16.0838 10.1573 15.7033 10.4374 15.4225L19.4104 6.43793C19.6908 6.15751 20.0709 6 20.4672 6C20.8635 6 21.2436 6.15751 21.524 6.43793Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowright {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.4388 26.5605C10.1578 26.2787 10 25.8968 10 25.4986C10 25.1003 10.1578 24.7184 10.4388 24.4366L18.3805 16.4819L10.4388 8.52725C10.1738 8.24237 10.0295 7.86558 10.0363 7.47626C10.0432 7.08694 10.2007 6.71549 10.4755 6.44015C10.7504 6.16482 11.1213 6.0071 11.51 6.00023C11.8987 5.99337 12.2748 6.13788 12.5592 6.40333L21.5612 15.42C21.8422 15.7017 22 16.0837 22 16.4819C22 16.8802 21.8422 17.2621 21.5612 17.5439L12.5592 26.5605C12.2779 26.8419 11.8966 27 11.499 27C11.1014 27 10.7201 26.8419 10.4388 26.5605Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.6485 18.619C23.83 18.8282 23.947 19.0843 23.9858 19.3571C24.0246 19.6299 23.9835 19.9079 23.8673 20.1583C23.7512 20.4088 23.5648 20.6211 23.3303 20.7702C23.0959 20.9194 22.8231 20.9991 22.5442 21H9.45584C9.17694 20.9991 8.90412 20.9194 8.66965 20.7702C8.43517 20.6211 8.24884 20.4088 8.13269 20.1583C8.01653 19.9079 7.97541 19.6299 8.01418 19.3571C8.05295 19.0843 8.17 18.8282 8.35148 18.619L14.3995 11.6856C14.5872 11.4706 14.8197 11.298 15.081 11.1797C15.3424 11.0614 15.6265 11.0001 15.914 11H16.082C16.3695 11.0001 16.6536 11.0614 16.915 11.1797C17.1763 11.298 17.4088 11.4706 17.5965 11.6856L23.6485 18.619Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.35148 13.381C8.17 13.1718 8.05295 12.9157 8.01418 12.6429C7.97541 12.3701 8.01653 12.0921 8.13269 11.8417C8.24884 11.5912 8.43517 11.3789 8.66965 11.2298C8.90412 11.0806 9.17694 11.0009 9.45584 11H22.5442C22.8231 11.0009 23.0959 11.0806 23.3303 11.2298C23.5648 11.3789 23.7512 11.5912 23.8673 11.8417C23.9835 12.0921 24.0246 12.3701 23.9858 12.6429C23.947 12.9157 23.83 13.1718 23.6485 13.381L17.6005 20.3144C17.4128 20.5294 17.1803 20.702 16.919 20.8203C16.6576 20.9386 16.3735 20.9999 16.086 21H15.918C15.6305 20.9999 15.3464 20.9386 15.085 20.8203C14.8237 20.702 14.5912 20.5294 14.4035 20.3144L8.35148 13.381Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.619 8.35148C18.8282 8.17 19.0843 8.05295 19.3571 8.01418C19.6299 7.97541 19.9079 8.01653 20.1583 8.13269C20.4088 8.24884 20.6211 8.43517 20.7702 8.66965C20.9194 8.90412 20.9991 9.17694 21 9.45584V22.5442C20.9991 22.8231 20.9194 23.0959 20.7702 23.3303C20.6211 23.5648 20.4088 23.7512 20.1583 23.8673C19.9079 23.9835 19.6299 24.0246 19.3571 23.9858C19.0843 23.947 18.8282 23.83 18.619 23.6485L11.6856 17.6005C11.4706 17.4128 11.298 17.1803 11.1797 16.919C11.0614 16.6576 11.0001 16.3735 11 16.086V15.918C11.0001 15.6305 11.0614 15.3464 11.1797 15.085C11.298 14.8237 11.4706 14.5912 11.6856 14.4035L18.619 8.35148Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.381 23.6485C13.1718 23.83 12.9157 23.947 12.6429 23.9858C12.3701 24.0246 12.0921 23.9835 11.8417 23.8673C11.5912 23.7512 11.3789 23.5648 11.2298 23.3303C11.0806 23.0959 11.0009 22.8231 11 22.5442V9.45584C11.0009 9.17694 11.0806 8.90412 11.2298 8.66965C11.3789 8.43517 11.5912 8.24884 11.8417 8.13269C12.0921 8.01653 12.3701 7.97541 12.6429 8.01418C12.9157 8.05295 13.1718 8.17 13.381 8.35148L20.3144 14.3995C20.5294 14.5872 20.702 14.8197 20.8203 15.081C20.9386 15.3424 20.9999 15.6265 21 15.914V16.082C20.9999 16.3695 20.9386 16.6536 20.8203 16.915C20.702 17.1763 20.5294 17.4088 20.3144 17.5965L13.381 23.6485Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-up {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.414 25.5234C22.5507 25.6706 22.7156 25.7885 22.8988 25.8704C23.0819 25.9522 23.2797 25.9962 23.4802 25.9998C23.6808 26.0033 23.8799 25.9663 24.0659 25.891C24.2518 25.8157 24.4208 25.7036 24.5626 25.5615C24.7044 25.4193 24.8162 25.2499 24.8913 25.0635C24.9664 24.877 25.0033 24.6773 24.9998 24.4763C24.9962 24.2752 24.9523 24.077 24.8707 23.8933C24.7891 23.7096 24.6714 23.5443 24.5247 23.4073L17.5554 16.4199C17.2753 16.1395 16.8958 15.982 16.5 15.982C16.1042 15.982 15.7247 16.1395 15.4446 16.4199L8.47532 23.4073C8.3286 23.5443 8.21091 23.7096 8.12929 23.8933C8.04766 24.077 8.00377 24.2752 8.00023 24.4763C7.99669 24.6773 8.03358 24.877 8.10869 25.0635C8.1838 25.2499 8.2956 25.4193 8.43741 25.5615C8.57923 25.7036 8.74815 25.8157 8.93411 25.891C9.12007 25.9663 9.31925 26.0033 9.51977 25.9998C9.72029 25.9962 9.91805 25.9522 10.1012 25.8704C10.2844 25.7885 10.4493 25.6706 10.586 25.5234L16.5 19.5941L22.414 25.5234ZM22.414 15.5415C22.5507 15.6886 22.7156 15.8066 22.8988 15.8884C23.0819 15.9702 23.2797 16.0142 23.4802 16.0178C23.6808 16.0213 23.8799 15.9843 24.0659 15.909C24.2518 15.8337 24.4208 15.7216 24.5626 15.5795C24.7044 15.4373 24.8162 15.2679 24.8913 15.0815C24.9664 14.895 25.0033 14.6953 24.9998 14.4943C24.9962 14.2933 24.9523 14.095 24.8707 13.9113C24.7891 13.7277 24.6714 13.5624 24.5247 13.4253L17.5554 6.43789C17.2753 6.15749 16.8958 6 16.5 6C16.1042 6 15.7247 6.15749 15.4446 6.43789L8.47532 13.4253C8.21153 13.7091 8.06791 14.0845 8.07474 14.4724C8.08156 14.8603 8.2383 15.2304 8.51192 15.5048C8.78554 15.7791 9.15469 15.9362 9.54159 15.9431C9.92848 15.9499 10.3029 15.8059 10.586 15.5415L16.5 9.61216L22.414 15.5415Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-down {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.914 6.47656C22.0507 6.32945 22.2156 6.21146 22.3988 6.12962C22.5819 6.04778 22.7797 6.00378 22.9802 6.00023C23.1808 5.99669 23.3799 6.03367 23.5659 6.10897C23.7518 6.18428 23.9208 6.29637 24.0626 6.43855C24.2044 6.58073 24.3162 6.75009 24.3913 6.93653C24.4664 7.12297 24.5033 7.32267 24.4998 7.52371C24.4962 7.72475 24.4523 7.92302 24.3707 8.10669C24.2891 8.29036 24.1714 8.45566 24.0247 8.59274L17.0554 15.5801C16.7753 15.8605 16.3958 16.018 16 16.018C15.6042 16.018 15.2247 15.8605 14.9446 15.5801L7.97532 8.59274C7.8286 8.45566 7.71091 8.29036 7.62929 8.10669C7.54766 7.92302 7.50377 7.72475 7.50023 7.52371C7.49669 7.32267 7.53358 7.12297 7.60869 6.93653C7.6838 6.75009 7.7956 6.58073 7.93741 6.43855C8.07923 6.29637 8.24815 6.18428 8.43411 6.10897C8.62007 6.03367 8.81925 5.99669 9.01977 6.00023C9.22029 6.00378 9.41805 6.04778 9.60124 6.12962C9.78444 6.21146 9.94931 6.32945 10.086 6.47656L16 12.4059L21.914 6.47656ZM21.914 16.4585C22.0507 16.3114 22.2156 16.1934 22.3988 16.1116C22.5819 16.0298 22.7797 15.9858 22.9802 15.9822C23.1808 15.9787 23.3799 16.0157 23.5659 16.091C23.7518 16.1663 23.9208 16.2784 24.0626 16.4205C24.2044 16.5627 24.3162 16.7321 24.3913 16.9185C24.4664 17.105 24.5033 17.3047 24.4998 17.5057C24.4962 17.7067 24.4523 17.905 24.3707 18.0887C24.2891 18.2723 24.1714 18.4376 24.0247 18.5747L17.0554 25.5621C16.7753 25.8425 16.3958 26 16 26C15.6042 26 15.2247 25.8425 14.9446 25.5621L7.97532 18.5747C7.71153 18.2909 7.56791 17.9155 7.57474 17.5276C7.58156 17.1397 7.7383 16.7696 8.01192 16.4952C8.28554 16.2209 8.65469 16.0638 9.04159 16.0569C9.42848 16.0501 9.80293 16.1941 10.086 16.4585L16 22.3878L21.914 16.4585Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-equal {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 22C27.3978 22 27.7794 21.842 28.0607 21.5607C28.342 21.2794 28.5 20.8978 28.5 20.5C28.5 20.1022 28.342 19.7206 28.0607 19.4393C27.7794 19.158 27.3978 19 27 19H5C4.60218 19 4.22064 19.158 3.93934 19.4393C3.65804 19.7206 3.5 20.1022 3.5 20.5C3.5 20.8978 3.65804 21.2794 3.93934 21.5607C4.22064 21.842 4.60218 22 5 22H27ZM27 13C27.3978 13 27.7794 12.842 28.0607 12.5607C28.342 12.2794 28.5 11.8978 28.5 11.5C28.5 11.1022 28.342 10.7206 28.0607 10.4393C27.7794 10.158 27.3978 10 27 10H5C4.60218 10 4.22064 10.158 3.93934 10.4393C3.65804 10.7206 3.5 11.1022 3.5 11.5C3.5 11.8978 3.65804 12.2794 3.93934 12.5607C4.22064 12.842 4.60218 13 5 13H27Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-plus {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 3.5C16.3978 3.5 16.7794 3.65804 17.0607 3.93934C17.342 4.22064 17.5 4.60218 17.5 5V14.5H27C27.3978 14.5 27.7794 14.658 28.0607 14.9393C28.342 15.2206 28.5 15.6022 28.5 16C28.5 16.3978 28.342 16.7794 28.0607 17.0607C27.7794 17.342 27.3978 17.5 27 17.5H17.5V27C17.5 27.3978 17.342 27.7794 17.0607 28.0607C16.7794 28.342 16.3978 28.5 16 28.5C15.6022 28.5 15.2206 28.342 14.9393 28.0607C14.658 27.7794 14.5 27.3978 14.5 27V17.5H5C4.60218 17.5 4.22064 17.342 3.93934 17.0607C3.65804 16.7794 3.5 16.3978 3.5 16C3.5 15.6022 3.65804 15.2206 3.93934 14.9393C4.22064 14.658 4.60218 14.5 5 14.5H14.5V5C14.5 4.60218 14.658 4.22064 14.9393 3.93934C15.2206 3.65804 15.6022 3.5 16 3.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-minus {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 16C3.5 15.6022 3.65804 15.2206 3.93934 14.9393C4.22064 14.658 4.60218 14.5 5 14.5H27C27.3978 14.5 27.7794 14.658 28.0607 14.9393C28.342 15.2206 28.5 15.6022 28.5 16C28.5 16.3978 28.342 16.7794 28.0607 17.0607C27.7794 17.342 27.3978 17.5 27 17.5H5C4.60218 17.5 4.22064 17.342 3.93934 17.0607C3.65804 16.7794 3.5 16.3978 3.5 16Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-chat {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.686 21.888L9.298 26.558C9.29089 26.6394 9.3084 26.7211 9.34826 26.7925C9.38812 26.8638 9.4485 26.9216 9.52156 26.9582C9.59462 26.9948 9.67701 27.0087 9.75803 26.998C9.83906 26.9872 9.915 26.9524 9.976 26.898L14.396 22.97L15.574 22.996L16 23C19.39 23 22.174 22.12 24.04 20.646C25.82 19.242 27 17.126 27 14C27 10.874 25.82 8.76 24.04 7.354C22.174 5.88 19.39 5 16 5C12.61 5 9.826 5.88 7.96 7.354C6.18 8.76 5 10.874 5 14C5 17.296 6.312 19.484 8.296 20.896L9.686 21.888ZM11.968 29.138L15.508 25.994C15.6693 25.998 15.8333 26 16 26C23.732 26 30 22 30 14C30 6 23.732 2 16 2C8.268 2 2 6 2 14C2 18.234 3.756 21.348 6.554 23.34L6.308 26.308C6.25156 26.9867 6.39974 27.6667 6.73344 28.2604C7.06714 28.854 7.57105 29.3341 8.18017 29.6387C8.78929 29.9432 9.4757 30.0583 10.1508 29.9691C10.826 29.8798 11.4589 29.5904 11.968 29.138Z' fill='%23333333'/%3e%3c/svg%3e ");}/* Icon deve ser apresentado na cor branco e background-image */
body .rdc-icon-svg.rdc-icon-helpdesk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2C12.287 2 8.72601 3.475 6.1005 6.1005C3.475 8.72601 2 12.287 2 16V24H2.02C2.14594 25.6324 2.88326 27.1571 4.08459 28.2694C5.28592 29.3818 6.86277 29.9998 8.5 30H8.666C10.506 30 12 28.508 12 26.666V20.334C12 18.494 10.508 17 8.666 17H8.5C7.212 17 6.01 17.376 5 18.02V16C5 13.0826 6.15893 10.2847 8.22183 8.22183C10.2847 6.15893 13.0826 5 16 5C18.9174 5 21.7153 6.15893 23.7782 8.22183C25.8411 10.2847 27 13.0826 27 16V18.02C25.955 17.3521 24.7402 16.9981 23.5 17H23.334C21.494 17 20 18.492 20 20.334V26.666C20 28.506 21.492 30 23.334 30H23.5C25.1372 29.9998 26.7141 29.3818 27.9154 28.2694C29.1167 27.1571 29.8541 25.6324 29.98 24H30V16ZM27 23.5C27 22.5717 26.6313 21.6815 25.9749 21.0251C25.3185 20.3687 24.4283 20 23.5 20H23.334C23.2454 20 23.1605 20.0352 23.0978 20.0978C23.0352 20.1605 23 20.2454 23 20.334V26.666C23 26.85 23.15 27 23.334 27H23.5C24.4283 27 25.3185 26.6313 25.9749 25.9749C26.6313 25.3185 27 24.4283 27 23.5ZM8.5 27C7.57174 27 6.6815 26.6313 6.02513 25.9749C5.36875 25.3185 5 24.4283 5 23.5C5 22.5717 5.36875 21.6815 6.02513 21.0251C6.6815 20.3687 7.57174 20 8.5 20H8.666C8.85 20 9 20.15 9 20.334V26.666C9 26.7546 8.96481 26.8395 8.90217 26.9022C8.83954 26.9648 8.75458 27 8.666 27H8.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sendmessage {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.5819 27.8064L10.5019 21.4984L4.19388 17.4184C3.44062 16.9319 2.83872 16.2441 2.45638 15.433C2.07405 14.6218 1.92657 13.7198 2.03067 12.8292C2.13476 11.9385 2.48627 11.0948 3.04535 10.3937C3.60443 9.69262 4.34873 9.16215 5.19388 8.86243L23.7399 2.27043C24.5755 1.97375 25.4781 1.91991 26.343 2.11518C27.208 2.31044 27.9999 2.7468 28.627 3.3737C29.2541 4.0006 29.6907 4.79237 29.8863 5.65725C30.0818 6.52214 30.0283 7.42473 29.7319 8.26043L26.9019 7.25843C27.0104 6.95705 27.0309 6.63102 26.961 6.31842C26.8911 6.00581 26.7338 5.71954 26.5073 5.49304C26.2808 5.26654 25.9945 5.10917 25.6819 5.03929C25.3693 4.96942 25.0433 4.98993 24.7419 5.09843L6.20188 11.6904C5.88475 11.8023 5.60531 12.0008 5.39523 12.2634C5.18515 12.526 5.05283 12.8422 5.01327 13.1761C4.97371 13.5101 5.0285 13.8485 5.17141 14.1529C5.31433 14.4573 5.53967 14.7156 5.82188 14.8984L11.3819 18.4964L17.9399 11.9364C18.0783 11.7932 18.2439 11.679 18.4269 11.6005C18.61 11.522 18.8068 11.4807 19.006 11.4791C19.2052 11.4774 19.4027 11.5155 19.587 11.591C19.7713 11.6665 19.9387 11.778 20.0795 11.9189C20.2202 12.0598 20.3315 12.2273 20.4069 12.4117C20.4822 12.5961 20.5201 12.7936 20.5182 12.9928C20.5164 13.1919 20.475 13.3887 20.3963 13.5717C20.3176 13.7547 20.2032 13.9201 20.0599 14.0584L13.5019 20.6184L17.0999 26.1764C17.2824 26.4587 17.5404 26.6843 17.8446 26.8275C18.1488 26.9707 18.487 27.0259 18.8209 26.9867C19.1548 26.9476 19.4711 26.8157 19.7339 26.606C19.9967 26.3964 20.1955 26.1173 20.3079 25.8004L26.9019 7.25643L29.7279 8.26043L23.1359 26.8064C22.8359 27.6511 22.3054 28.3949 21.6045 28.9536C20.9036 29.5123 20.0603 29.8636 19.17 29.9676C18.2797 30.0717 17.3781 29.9244 16.5672 29.5425C15.7563 29.1605 15.0686 28.5591 14.5819 27.8064Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-eye {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.93354 16.5305L3.48278 15.5L3.93354 14.4695C4.97079 12.0967 6.66278 10.0807 8.80446 8.66581C10.9461 7.25088 13.4455 6.49778 15.9998 6.49778C18.554 6.49778 21.0534 7.25088 23.1951 8.66581C25.3368 10.0807 27.0288 12.0967 28.066 14.4695L28.5148 15.5L28.0641 16.5305C27.0266 18.9027 25.3346 20.9181 23.1931 22.3326C21.0517 23.7471 18.5526 24.5 15.9988 24.5C13.445 24.5 10.9459 23.7471 8.80449 22.3326C6.66303 20.9181 4.97105 18.9027 3.93354 16.5305ZM1.23685 13.2509L0.725065 14.4215C0.576675 14.7614 0.500008 15.1291 0.500008 15.501C0.500008 15.8729 0.576675 16.2406 0.725065 16.5805L1.23685 17.7491C2.50643 20.6516 4.57675 23.1175 7.19701 24.8482C9.81726 26.5789 12.875 27.5 15.9998 27.5C19.1246 27.5 22.1823 26.5789 24.8026 24.8482C27.4228 23.1175 29.4932 20.6516 30.7627 17.7491L31.2745 16.5805C31.4232 16.2403 31.5 15.8722 31.5 15.5C31.5 15.1278 31.4232 14.7597 31.2745 14.4195L30.7627 13.2509C29.4932 10.3484 27.4228 7.88249 24.8026 6.15182C22.1823 4.42114 19.1246 3.5 15.9998 3.5C12.875 3.5 9.81726 4.42114 7.19701 6.15182C4.57675 7.88249 2.50643 10.3484 1.23685 13.2509ZM18.9524 15.5C18.9524 16.296 18.6413 17.0595 18.0876 17.6223C17.5339 18.1852 16.7829 18.5014 15.9998 18.5014C15.2167 18.5014 14.4657 18.1852 13.912 17.6223C13.3583 17.0595 13.0472 16.296 13.0472 15.5C13.0472 14.704 13.3583 13.9405 13.912 13.3777C14.4657 12.8148 15.2167 12.4986 15.9998 12.4986C16.7829 12.4986 17.5339 12.8148 18.0876 13.3777C18.6413 13.9405 18.9524 14.704 18.9524 15.5ZM21.905 15.5C21.905 17.0921 21.2828 18.6189 20.1754 19.7447C19.0679 20.8704 17.5659 21.5029 15.9998 21.5029C14.4336 21.5029 12.9316 20.8704 11.8242 19.7447C10.7168 18.6189 10.0946 17.0921 10.0946 15.5C10.0946 13.9079 10.7168 12.3811 11.8242 11.2553C12.9316 10.1296 14.4336 9.49714 15.9998 9.49714C17.5659 9.49714 19.0679 10.1296 20.1754 11.2553C21.2828 12.3811 21.905 13.9079 21.905 15.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-eye-off {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.21687 3.90258C5.93702 3.63762 5.56687 3.49338 5.18441 3.50023C4.80195 3.50709 4.43703 3.66451 4.16655 3.93934C3.89607 4.21417 3.74113 4.58494 3.73439 4.97354C3.72764 5.36214 3.8696 5.73823 4.13038 6.02258L5.76414 7.68258C3.81182 9.30612 2.26124 11.3721 1.23684 13.7146L0.725057 14.8846C0.576667 15.2243 0.5 15.5919 0.5 15.9636C0.5 16.3353 0.576667 16.7028 0.725057 17.0426L1.23684 18.2126C2.14416 20.285 3.46424 22.144 5.11384 23.6723C6.76344 25.2006 8.70678 26.365 10.8213 27.0922C12.9359 27.8194 15.1758 28.0936 17.3999 27.8975C19.6239 27.7013 21.7838 27.0391 23.7434 25.9526L25.7827 28.0226C25.9178 28.17 26.0808 28.2882 26.2619 28.3701C26.443 28.4521 26.6385 28.4962 26.8367 28.4998C27.0349 28.5033 27.2318 28.4663 27.4157 28.3908C27.5995 28.3154 27.7665 28.2031 27.9067 28.0607C28.0468 27.9182 28.1574 27.7486 28.2316 27.5618C28.3059 27.375 28.3423 27.1749 28.3388 26.9735C28.3353 26.7721 28.2919 26.5735 28.2113 26.3895C28.1306 26.2055 28.0142 26.0399 27.8692 25.9026L6.21687 3.90258ZM21.5467 23.7186L18.9996 21.1326C17.8717 21.8099 16.5541 22.0867 15.2542 21.9197C13.9544 21.7526 12.7462 21.1511 11.8197 20.2098C10.8933 19.2684 10.3013 18.0408 10.1368 16.7201C9.9724 15.3994 10.2449 14.0606 10.9115 12.9146L7.86245 9.81658C6.15981 11.1697 4.81059 12.9272 3.93354 14.9346L3.48278 15.9626L3.93551 16.9926C4.64709 18.6178 5.66955 20.083 6.94345 21.3032C8.21736 22.5233 9.71727 23.4739 11.356 24.0997C12.9947 24.7256 14.7395 25.0142 16.489 24.9488C18.2385 24.8833 19.9577 24.4652 21.5467 23.7186ZM13.1456 15.1846C13.0116 15.6937 13.0118 16.2297 13.1462 16.7388C13.2806 17.2478 13.5444 17.712 13.9112 18.0847C14.278 18.4574 14.7348 18.7254 15.2358 18.862C15.7368 18.9985 16.2644 18.9987 16.7655 18.8626L13.1456 15.1846ZM16.4092 9.97658L21.8892 15.5446C21.7901 14.1011 21.181 12.7426 20.1739 11.7194C19.1669 10.6962 17.8299 10.0773 16.4092 9.97658ZM28.0621 16.9926C27.5933 18.0658 26.9878 19.0717 26.261 19.9846L28.3573 22.1166C29.3359 20.9367 30.1457 19.6224 30.7627 18.2126L31.2745 17.0426C31.4232 16.7026 31.5 16.3346 31.5 15.9626C31.5 15.5905 31.4232 15.2226 31.2745 14.8826L30.7627 13.7146C29.1551 10.0429 26.278 7.09768 22.6765 5.43681C19.0749 3.77593 14.9989 3.51469 11.2205 4.70258L13.6574 7.18258C16.5667 6.65034 19.5676 7.12511 22.1798 8.53091C24.7921 9.9367 26.8647 12.1923 28.066 14.9366L28.5148 15.9646L28.0621 16.9926Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-calendar {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5 10.9941C10.1022 10.9941 9.72064 10.8361 9.43934 10.5548C9.15804 10.2734 9 9.89192 9 9.49409V8.00009C8.20435 8.00009 7.44129 8.31616 6.87868 8.87877C6.31607 9.44138 6 10.2044 6 11.0001V13.0001H26V11.0001C26 10.2044 25.6839 9.44138 25.1213 8.87877C24.5587 8.31616 23.7956 8.00009 23 8.00009V9.50009C23 9.89792 22.842 10.2794 22.5607 10.5608C22.2794 10.8421 21.8978 11.0001 21.5 11.0001C21.1022 11.0001 20.7206 10.8421 20.4393 10.5608C20.158 10.2794 20 9.89792 20 9.50009V8.00009H12V9.49409C12 9.89192 11.842 10.2734 11.5607 10.5548C11.2794 10.8361 10.8978 10.9941 10.5 10.9941ZM20 5.00009H12V3.49609C12 3.09827 11.842 2.71674 11.5607 2.43543C11.2794 2.15413 10.8978 1.99609 10.5 1.99609C10.1022 1.99609 9.72064 2.15413 9.43934 2.43543C9.15804 2.71674 9 3.09827 9 3.49609V5.00009C7.4087 5.00009 5.88258 5.63223 4.75736 6.75745C3.63214 7.88267 3 9.40879 3 11.0001V23.0001C3 24.5914 3.63214 26.1175 4.75736 27.2427C5.88258 28.368 7.4087 29.0001 9 29.0001H23C24.5913 29.0001 26.1174 28.368 27.2426 27.2427C28.3679 26.1175 29 24.5914 29 23.0001V11.0001C29 9.40879 28.3679 7.88267 27.2426 6.75745C26.1174 5.63223 24.5913 5.00009 23 5.00009V3.50009C23 3.10227 22.842 2.72074 22.5607 2.43943C22.2794 2.15813 21.8978 2.00009 21.5 2.00009C21.1022 2.00009 20.7206 2.15813 20.4393 2.43943C20.158 2.72074 20 3.10227 20 3.50009V5.00009ZM6 16.0001V23.0001C6 23.7957 6.31607 24.5588 6.87868 25.1214C7.44129 25.684 8.20435 26.0001 9 26.0001H23C23.7956 26.0001 24.5587 25.684 25.1213 25.1214C25.6839 24.5588 26 23.7957 26 23.0001V16.0001H6Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-checked {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.4757 7.35896C26.6255 7.48723 26.7485 7.64373 26.8377 7.81952C26.9269 7.99531 26.9806 8.18694 26.9956 8.38347C27.0107 8.58 26.9868 8.77756 26.9254 8.96487C26.864 9.15218 26.7663 9.32557 26.6378 9.47512L14.6283 23.4762C14.4936 23.6331 14.3279 23.7606 14.1417 23.8506C13.9554 23.9405 13.7525 23.991 13.5458 23.9989C13.339 24.0068 13.1329 23.9719 12.9403 23.8964C12.7476 23.8209 12.5727 23.7064 12.4265 23.5602L5.42092 16.5596C5.14759 16.2766 4.99646 15.8976 5.00006 15.5043C5.00367 15.1109 5.16172 14.7348 5.44019 14.4568C5.71866 14.1788 6.09525 14.0212 6.48887 14.0179C6.88248 14.0147 7.26161 14.1661 7.54461 14.4395L13.4053 20.2939L24.36 7.52298C24.6192 7.22132 24.9876 7.03482 25.3843 7.00444C25.781 6.97406 26.1736 7.1003 26.4757 7.35896Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clear {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.384 7H25.5C26.2957 7 27.0587 7.31607 27.6213 7.87868C28.1839 8.44129 28.5 9.20435 28.5 10V22C28.5 22.7957 28.1839 23.5587 27.6213 24.1213C27.0587 24.6839 26.2957 25 25.5 25H11.384C10.9342 24.9999 10.4902 24.8986 10.0848 24.7037C9.67938 24.5088 9.323 24.2253 9.04202 23.874L4.09202 17.688C3.70836 17.209 3.49931 16.6137 3.49931 16C3.49931 15.3863 3.70836 14.791 4.09202 14.312L9.04202 8.126C9.32258 7.77527 9.67832 7.49201 10.083 7.29713C10.4876 7.10224 10.9309 7.0007 11.38 7M6.69402 6.252C7.25662 5.5487 7.97034 4.98107 8.78223 4.59122C9.59413 4.20137 10.4834 3.9993 11.384 4H25.5C27.0913 4 28.6174 4.63214 29.7427 5.75736C30.8679 6.88258 31.5 8.4087 31.5 10V22C31.5 23.5913 30.8679 25.1174 29.7427 26.2426C28.6174 27.3679 27.0913 28 25.5 28H11.384C10.4841 28.0001 9.59559 27.7977 8.78443 27.4079C7.97327 27.0181 7.2602 26.4508 6.69802 25.748L1.75002 19.562C0.940851 18.5511 0.499981 17.2949 0.499981 16C0.499981 14.7052 0.940851 13.4489 1.75002 12.438L6.69402 6.252ZM15.06 10.94C14.7757 10.675 14.3996 10.5308 14.011 10.5377C13.6224 10.5445 13.2516 10.7019 12.9768 10.9768C12.702 11.2516 12.5445 11.6224 12.5377 12.011C12.5308 12.3996 12.6751 12.7757 12.94 13.06L15.88 16L12.94 18.94C12.7926 19.0773 12.6744 19.2429 12.5925 19.4269C12.5105 19.6109 12.4664 19.8096 12.4628 20.011C12.4593 20.2124 12.4963 20.4124 12.5718 20.5992C12.6472 20.786 12.7595 20.9556 12.9019 21.0981C13.0444 21.2405 13.214 21.3528 13.4008 21.4282C13.5876 21.5037 13.7877 21.5407 13.9891 21.5372C14.1905 21.5336 14.3891 21.4895 14.5731 21.4076C14.7571 21.3256 14.9227 21.2074 15.06 21.06L18 18.12L20.94 21.06C21.0773 21.2074 21.2429 21.3256 21.4269 21.4076C21.6109 21.4895 21.8096 21.5336 22.011 21.5372C22.2124 21.5407 22.4124 21.5037 22.5992 21.4282C22.786 21.3528 22.9557 21.2405 23.0981 21.0981C23.2405 20.9556 23.3528 20.786 23.4283 20.5992C23.5037 20.4124 23.5408 20.2124 23.5372 20.011C23.5336 19.8096 23.4896 19.6109 23.4076 19.4269C23.3256 19.2429 23.2074 19.0773 23.06 18.94L20.12 16L23.06 13.06C23.325 12.7757 23.4692 12.3996 23.4624 12.011C23.4555 11.6224 23.2981 11.2516 23.0233 10.9768C22.7484 10.7019 22.3777 10.5445 21.9891 10.5377C21.6005 10.5308 21.2244 10.675 20.94 10.94L18 13.88L15.06 10.94Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-download {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.0601 23.56C16.7789 23.8409 16.3976 23.9987 16.0001 23.9987C15.6026 23.9987 15.2214 23.8409 14.9401 23.56L9.94013 18.56C9.67517 18.2757 9.53092 17.8996 9.53778 17.511C9.54464 17.1224 9.70206 16.7516 9.97689 16.4768C10.2517 16.2019 10.6225 16.0445 11.0111 16.0376C11.3997 16.0308 11.7758 16.175 12.0601 16.44L14.5001 18.88V3.5C14.5001 3.10218 14.6582 2.72064 14.9395 2.43934C15.2208 2.15804 15.6023 2 16.0001 2C16.398 2 16.7795 2.15804 17.0608 2.43934C17.3421 2.72064 17.5001 3.10218 17.5001 3.5V18.88L19.9401 16.44C20.0775 16.2926 20.2431 16.1744 20.4271 16.0924C20.6111 16.0105 20.8097 15.9664 21.0111 15.9628C21.2125 15.9593 21.4125 15.9963 21.5993 16.0718C21.7861 16.1472 21.9558 16.2595 22.0982 16.4019C22.2406 16.5444 22.3529 16.714 22.4284 16.9008C22.5038 17.0876 22.5409 17.2876 22.5373 17.489C22.5338 17.6904 22.4897 17.8891 22.4077 18.0731C22.3257 18.2571 22.2075 18.4227 22.0601 18.56L17.0601 23.56ZM3.50013 27C3.1023 27 2.72077 27.158 2.43947 27.4393C2.15817 27.7206 2.00013 28.1022 2.00013 28.5C2.00013 28.8978 2.15817 29.2794 2.43947 29.5607C2.72077 29.842 3.1023 30 3.50013 30H28.5001C28.898 30 29.2795 29.842 29.5608 29.5607C29.8421 29.2794 30.0001 28.8978 30.0001 28.5C30.0001 28.1022 29.8421 27.7206 29.5608 27.4393C29.2795 27.158 28.898 27 28.5001 27H3.50013Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-upload {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.9399 8.44C15.2211 8.1591 15.6024 8.00132 15.9999 8.00132C16.3974 8.00132 16.7786 8.1591 17.0599 8.44L22.0599 13.44C22.2072 13.5773 22.3255 13.7429 22.4074 13.9269C22.4894 14.1109 22.5335 14.3095 22.5371 14.511C22.5406 14.7124 22.5036 14.9124 22.4281 15.0992C22.3527 15.286 22.2404 15.4556 22.0979 15.5981C21.9555 15.7405 21.7858 15.8528 21.5991 15.9282C21.4123 16.0037 21.2122 16.0407 21.0108 16.0372C20.8094 16.0336 20.6108 15.9895 20.4268 15.9076C20.2428 15.8256 20.0772 15.7074 19.9399 15.56L17.4999 13.12V28.5C17.4999 28.8978 17.3418 29.2794 17.0605 29.5607C16.7792 29.842 16.3977 30 15.9999 30C15.602 30 15.2205 29.842 14.9392 29.5607C14.6579 29.2794 14.4999 28.8978 14.4999 28.5V13.12L12.0599 15.56C11.7755 15.825 11.3994 15.9692 11.0108 15.9623C10.6222 15.9555 10.2515 15.7981 9.97663 15.5232C9.7018 15.2484 9.54438 14.8776 9.53752 14.489C9.53067 14.1004 9.67491 13.7243 9.93987 13.44L14.9399 8.44ZM28.4999 5C28.8977 5 29.2792 4.84196 29.5605 4.56066C29.8418 4.27936 29.9999 3.89782 29.9999 3.5C29.9999 3.10218 29.8418 2.72064 29.5605 2.43934C29.2792 2.15804 28.8977 2 28.4999 2H3.49987C3.10205 2 2.72052 2.15804 2.43921 2.43934C2.15791 2.72064 1.99987 3.10218 1.99987 3.5C1.99987 3.89782 2.15791 4.27936 2.43921 4.56066C2.72052 4.84196 3.10205 5 3.49987 5H28.4999Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-empty {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.3411 11.8451L19.0294 13.571L20.8726 13.6975L27.1417 14.1265L22.3178 18.1891L20.902 19.3812L21.3531 21.1881L22.8865 27.3324L17.5646 23.9637L15.9998 22.9733L14.4349 23.9617L9.11302 27.3324L10.6465 21.1881L11.0975 19.3812L9.67972 18.1891L4.85587 14.1265L11.1269 13.6975L12.9701 13.571L13.6565 11.8431L15.9998 5.96375L18.3411 11.8451ZM3.19694 11.2679L10.9288 10.738L13.8153 3.48863C14.6075 1.50379 17.392 1.50379 18.1842 3.48863L21.0707 10.738L28.8026 11.2679C30.9204 11.4122 31.7792 14.083 30.1517 15.455L24.2062 20.4646L26.0965 28.0402C26.6142 30.1159 24.3591 31.7647 22.5629 30.6299L15.9998 26.4744L9.43657 30.628C7.64037 31.7647 5.38532 30.114 5.903 28.0402L7.79332 20.4646L1.84783 15.455C0.220267 14.083 1.08111 11.4122 3.19694 11.2679Z' fill='%23949494'/%3e%3c/g%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-full {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.5'%3e%3cpath d='M13.8153 3.48863C14.6075 1.50379 17.392 1.50379 18.1842 3.48863L21.0707 10.738L28.8026 11.2679C30.9204 11.4122 31.7792 14.083 30.1517 15.455L24.2062 20.4646L26.0965 28.0402C26.6142 30.1159 24.3591 31.7647 22.5629 30.6299L15.9998 26.4744L9.43657 30.628C7.64037 31.7647 5.38532 30.114 5.903 28.0402L7.79332 20.4646L1.84783 15.455C0.220267 14.083 1.08111 11.4122 3.19694 11.2679L10.9288 10.738L13.8153 3.48863Z' fill='%23AF912A'/%3e%3c/g%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29 14C29 20.8 24.868 23.95 21.94 26.182C20.672 27.152 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.33 27.152 10.058 26.182C7.132 23.95 3 20.798 3 14C3 10.5522 4.36964 7.24558 6.80761 4.80761C9.24558 2.36964 12.5522 1 16 1C19.4478 1 22.7544 2.36964 25.1924 4.80761C27.6304 7.24558 29 10.5522 29 14Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-success {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29 14C29 20.8 24.868 23.95 21.94 26.182C20.672 27.152 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.33 27.152 10.058 26.182C7.132 23.95 3 20.798 3 14C3 10.5522 4.36964 7.24558 6.80761 4.80761C9.24558 2.36964 12.5522 1 16 1C19.4478 1 22.7544 2.36964 25.1924 4.80761C27.6304 7.24558 29 10.5522 29 14Z' fill='%231EA74E'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-error {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29 14C29 20.8 24.868 23.95 21.94 26.182C20.672 27.152 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.33 27.152 10.058 26.182C7.132 23.95 3 20.798 3 14C3 10.5522 4.36964 7.24558 6.80761 4.80761C9.24558 2.36964 12.5522 1 16 1C19.4478 1 22.7544 2.36964 25.1924 4.80761C27.6304 7.24558 29 10.5522 29 14Z' fill='%23FF4F4F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-clustering {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 30C19.713 30 23.274 28.525 25.8995 25.8995C28.525 23.274 30 19.713 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2C12.287 2 8.72601 3.475 6.1005 6.1005C3.475 8.72601 2 12.287 2 16C2 19.713 3.475 23.274 6.1005 25.8995C8.72601 28.525 12.287 30 16 30Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-microphone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19 14V7C19 6.20435 18.6839 5.44129 18.1213 4.87868C17.5587 4.31607 16.7956 4 16 4C15.2044 4 14.4413 4.31607 13.8787 4.87868C13.3161 5.44129 13 6.20435 13 7V14C13 14.7956 13.3161 15.5587 13.8787 16.1213C14.4413 16.6839 15.2044 17 16 17C16.7956 17 17.5587 16.6839 18.1213 16.1213C18.6839 15.5587 19 14.7956 19 14ZM16 1C14.4087 1 12.8826 1.63214 11.7574 2.75736C10.6321 3.88258 10 5.4087 10 7V14C10 15.5913 10.6321 17.1174 11.7574 18.2426C12.8826 19.3679 14.4087 20 16 20C17.5913 20 19.1174 19.3679 20.2426 18.2426C21.3679 17.1174 22 15.5913 22 14V7C22 5.4087 21.3679 3.88258 20.2426 2.75736C19.1174 1.63214 17.5913 1 16 1ZM17.5 25.908C20.4003 25.5426 23.0674 24.1311 25.0007 21.9386C26.934 19.746 28.0005 16.9232 28 14V13.5C28 13.1022 27.842 12.7206 27.5607 12.4393C27.2794 12.158 26.8978 12 26.5 12C26.1022 12 25.7206 12.158 25.4393 12.4393C25.158 12.7206 25 13.1022 25 13.5V14C25 16.3869 24.0518 18.6761 22.364 20.364C20.6761 22.0518 18.3869 23 16 23C13.6131 23 11.3239 22.0518 9.63604 20.364C7.94821 18.6761 7 16.3869 7 14V13.5C7 13.1022 6.84196 12.7206 6.56066 12.4393C6.27936 12.158 5.89782 12 5.5 12C5.10218 12 4.72064 12.158 4.43934 12.4393C4.15804 12.7206 4 13.1022 4 13.5V14C4 20.12 8.58 25.17 14.5 25.908V29.5C14.5 29.8978 14.658 30.2794 14.9393 30.5607C15.2206 30.842 15.6022 31 16 31C16.3978 31 16.7794 30.842 17.0607 30.5607C17.342 30.2794 17.5 29.8978 17.5 29.5V25.908Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nomicrophone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.5086 19.8004C16.6198 20.0358 15.6889 20.064 14.7875 19.8829C13.8861 19.7019 13.0382 19.3164 12.3093 18.7561C11.5803 18.1958 10.9897 17.4757 10.5828 16.6512C10.176 15.8267 9.96378 14.9198 9.96258 14.0004V12.1204L3.90258 6.06039C3.63762 5.77604 3.49338 5.39995 3.50023 5.01134C3.50709 4.62274 3.66451 4.25197 3.93934 3.97715C4.21417 3.70232 4.58494 3.5449 4.97354 3.53804C5.36214 3.53118 5.73823 3.67543 6.02258 3.94039L28.0226 25.9404C28.17 26.0777 28.2882 26.2433 28.3701 26.4273C28.4521 26.6113 28.4962 26.8099 28.4998 27.0113C28.5033 27.2128 28.4663 27.4128 28.3908 27.5996C28.3154 27.7864 28.2031 27.956 28.0607 28.0985C27.9182 28.2409 27.7486 28.3532 27.5618 28.4286C27.375 28.5041 27.1749 28.5411 26.9735 28.5376C26.7721 28.534 26.5735 28.4899 26.3895 28.408C26.2055 28.326 26.0399 28.2078 25.9026 28.0604L22.1346 24.2944C20.7061 25.1508 19.115 25.7004 17.4626 25.9084V29.5004C17.4626 29.8982 17.3045 30.2797 17.0232 30.561C16.7419 30.8424 16.3604 31.0004 15.9626 31.0004C15.5648 31.0004 15.1832 30.8424 14.9019 30.561C14.6206 30.2797 14.4626 29.8982 14.4626 29.5004V25.9084C11.5623 25.543 8.89519 24.1315 6.96188 21.939C5.02858 19.7464 3.96207 16.9236 3.96258 14.0004V13.5004C3.96258 13.1026 4.12062 12.721 4.40192 12.4397C4.68323 12.1584 5.06476 12.0004 5.46258 12.0004C5.86041 12.0004 6.24194 12.1584 6.52324 12.4397C6.80455 12.721 6.96258 13.1026 6.96258 13.5004V14.0004C6.96207 15.5288 7.35082 17.0322 8.09216 18.3688C8.83351 19.7054 9.90303 20.8311 11.1999 21.6399C12.4968 22.4488 13.9783 22.914 15.5047 22.9917C17.0311 23.0695 18.5522 22.7572 19.9246 22.0844L17.6126 19.7704L17.5086 19.8004ZM18.9626 7.00039V12.5964L21.7926 15.4264C21.9059 14.9677 21.9626 14.4924 21.9626 14.0004V7.00039C21.9631 5.65399 21.5108 4.34654 20.6783 3.28833C19.8458 2.23013 18.6816 1.48267 17.373 1.16617C16.0643 0.849682 14.6872 0.982554 13.4632 1.54342C12.2392 2.10428 11.2394 3.06054 10.6246 4.25839L12.9846 6.61839C13.077 5.85802 13.4568 5.16182 14.0461 4.67248C14.6354 4.18315 15.3896 3.93776 16.154 3.9866C16.9184 4.03545 17.6351 4.37484 18.1574 4.9352C18.6796 5.49555 18.9677 6.23444 18.9626 7.00039ZM24.1366 17.7704L26.3626 19.9944C27.3826 18.2304 27.9626 16.1844 27.9626 14.0004V13.5004C27.9626 13.1026 27.8045 12.721 27.5232 12.4397C27.2419 12.1584 26.8604 12.0004 26.4626 12.0004C26.0648 12.0004 25.6832 12.1584 25.4019 12.4397C25.1206 12.721 24.9626 13.1026 24.9626 13.5004V14.0004C24.9631 15.302 24.6813 16.5882 24.1366 17.7704Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-payment {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.724 18.8592C24.2122 18.3775 24.9842 18.3478 25.5079 18.7693L25.6095 18.8592L29.6095 22.8066C30.1302 23.3205 30.1302 24.1534 29.6095 24.6672L25.6095 28.6146C25.0888 29.1285 24.2447 29.1285 23.724 28.6146C23.2033 28.1008 23.2033 27.2678 23.724 26.754L25.448 25.0527H20.6667C19.9304 25.0527 19.3334 24.4636 19.3334 23.7369C19.3334 23.0102 19.9304 22.4211 20.6667 22.4211H25.448L23.724 20.7198L23.6329 20.6196C23.2058 20.1028 23.2359 19.341 23.724 18.8592ZM8.67971 17.1579C9.41609 17.1579 10.0131 17.747 10.0131 18.4737C10.0131 19.2004 9.41609 19.7895 8.67971 19.7895H8.6732C7.93689 19.7895 7.33986 19.2004 7.33986 18.4737C7.33986 17.7471 7.93689 17.158 8.6732 17.1579H8.67971ZM16.6667 17.1579C17.4031 17.1579 18.0001 17.747 18.0001 18.4737C18.0001 19.2004 17.4031 19.7895 16.6667 19.7895H14C13.2637 19.7895 12.6667 19.2004 12.6667 18.4737C12.6667 17.747 13.2637 17.1579 14 17.1579H16.6667ZM26.0001 9.26318C26.0001 8.56524 25.7189 7.89608 25.2188 7.40256C24.7187 6.90904 24.0407 6.63159 23.3334 6.63159H7.33335C6.62611 6.63159 5.94803 6.90904 5.44793 7.40256C4.94783 7.89608 4.66668 8.56524 4.66668 9.26318V10.579H26.0001V9.26318ZM28.6668 15.1843C28.6668 15.9109 28.0698 16.5 27.3334 16.5C26.597 16.5 26.0001 15.9109 26.0001 15.1843V13.2106H4.66668V19.7895L4.6797 20.0491C4.7402 20.6517 5.01021 21.2182 5.44793 21.6502C5.94803 22.1437 6.62611 22.4211 7.33335 22.4211H15.3334C16.0698 22.4211 16.6667 23.0102 16.6667 23.7369C16.6667 24.4636 16.0698 25.0527 15.3334 25.0527H7.33335C5.91886 25.0527 4.5627 24.4978 3.56251 23.5108C2.56231 22.5237 2 21.1854 2 19.7895V9.26318C2 7.8673 2.56231 6.52898 3.56251 5.54195C4.5627 4.55491 5.91886 4 7.33335 4H23.3334C24.7479 4 26.1041 4.55491 27.1043 5.54195C28.1045 6.52898 28.6668 7.8673 28.6668 9.26318V15.1843Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-secure {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.006 8.90202L14.446 4.85202C14.9312 4.61985 15.4622 4.49934 16 4.49934C16.5378 4.49934 17.0688 4.61985 17.554 4.85202L25.994 8.90202C26.295 9.04736 26.549 9.27451 26.7269 9.55747C26.9048 9.84043 26.9995 10.1678 27 10.502V11.498C26.9999 14.3671 26.2779 17.19 24.9005 19.7068C23.523 22.2236 21.5345 24.3534 19.118 25.9L17.146 27.162C16.8041 27.3817 16.4063 27.4985 16 27.4985C15.5937 27.4985 15.1959 27.3817 14.854 27.162L12.882 25.902C10.4652 24.3552 8.47649 22.2251 7.09906 19.7079C5.72164 17.1908 4.99979 14.3674 5 11.498V10.502C5 9.82002 5.392 9.19802 6.006 8.90202ZM13.146 2.14802L4.708 6.19802C3.89738 6.58794 3.21323 7.19868 2.73419 7.96004C2.25515 8.72141 2.00067 9.60249 2 10.502V11.498C1.99983 14.8706 2.84828 18.189 4.46721 21.1476C6.08614 24.1062 8.42349 26.6099 11.264 28.428L13.236 29.688C14.0608 30.217 15.0201 30.4982 16 30.4982C16.9799 30.4982 17.9392 30.217 18.764 29.688L20.736 28.428C23.5765 26.6099 25.9139 24.1062 27.5328 21.1476C29.1517 18.189 30.0002 14.8706 30 11.498V10.502C30 8.66602 28.948 6.99202 27.292 6.19802L18.852 2.14802C17.9618 1.72144 16.9872 1.5 16 1.5C15.0128 1.5 14.0362 1.72144 13.146 2.14802ZM22.2 12.398C22.3182 12.2404 22.4042 12.0611 22.4531 11.8703C22.502 11.6795 22.5128 11.4809 22.4849 11.2859C22.4571 11.0909 22.3911 10.9033 22.2907 10.7338C22.1904 10.5643 22.0576 10.4162 21.9 10.298C21.7424 10.1798 21.5631 10.0938 21.3723 10.0449C21.1814 9.99606 20.9829 9.98524 20.7879 10.0131C20.5929 10.041 20.4053 10.1069 20.2358 10.2073C20.0663 10.3077 19.9182 10.4404 19.8 10.598L14.838 17.214L12.06 14.438C11.7757 14.1731 11.3996 14.0288 11.011 14.0357C10.6224 14.0425 10.2516 14.1999 9.97676 14.4748C9.70193 14.7496 9.54451 15.1204 9.53765 15.509C9.53079 15.8976 9.67504 16.2737 9.94 16.558L13.94 20.558C14.0919 20.7099 14.2747 20.8274 14.4759 20.9025C14.6772 20.9777 14.8922 21.0087 15.1065 20.9935C15.3208 20.9783 15.5293 20.9173 15.718 20.8146C15.9066 20.7119 16.071 20.5698 16.2 20.398L22.2 12.398Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.5537 22.0007C13.7543 22.0039 12.9889 22.3222 12.4253 22.8858C11.8618 23.4494 11.5462 24.2122 11.5478 25.0068C11.5494 25.8014 11.868 26.563 12.4338 27.1243C12.9997 27.6857 13.7664 28.0009 14.5657 28.0009C15.3651 28.0009 16.1318 27.6857 16.6976 27.1243C17.2634 26.563 17.5821 25.8014 17.5837 25.0068C17.5853 24.2122 17.2697 23.4494 16.7061 22.8858C16.1426 22.3222 15.3772 22.0039 14.5778 22.0007H14.5537ZM20.6137 24.9528V25.0008C20.6135 26.0567 20.3331 27.0938 19.8007 28.0074C19.2683 28.921 18.5028 29.6788 17.5815 30.2043C16.6602 30.7297 15.6158 31.0042 14.5537 31C13.4916 30.9957 12.4494 30.713 11.5324 30.1803C10.6153 29.6475 9.85596 28.8837 9.33092 27.9658C8.80589 27.048 8.53378 26.0087 8.54208 24.9529C8.55038 23.8971 8.83879 22.8621 9.37819 21.9526C9.9176 21.043 10.6889 20.2911 11.6142 19.7727L7.68077 5.11214C7.59488 4.79329 7.40559 4.5115 7.14223 4.31045C6.87887 4.1094 6.55616 4.00031 6.2241 4.0001H3.00898C2.60877 4.0001 2.22496 3.84206 1.94197 3.56075C1.65898 3.27943 1.5 2.89789 1.5 2.50005C1.5 2.10221 1.65898 1.72067 1.94197 1.43936C2.22496 1.15804 2.60877 1 3.00898 1H6.2241C7.22149 0.999982 8.19096 1.3274 8.98191 1.93139C9.77286 2.53539 10.341 3.38214 10.5981 4.34012L11.6886 8.41026C12.1128 8.12392 12.582 7.90966 13.0769 7.77624L22.336 5.31415C23.4957 5.0064 24.731 5.16916 25.7701 5.76665C26.8092 6.36413 27.567 7.34742 27.8769 8.50026L30.3476 17.7146C30.6565 18.8678 30.4919 20.0957 29.8901 21.1283C29.2883 22.1609 28.2985 22.9135 27.1385 23.2208L20.6137 24.9528ZM23.1146 8.21225C23.3061 8.16116 23.506 8.14811 23.7026 8.17384C23.8992 8.19957 24.0888 8.26359 24.2606 8.36223C24.4323 8.46087 24.5828 8.59219 24.7034 8.74869C24.824 8.90519 24.9124 9.08379 24.9636 9.27429L27.4323 18.4886C27.5355 18.8729 27.4809 19.2822 27.2805 19.6266C27.0802 19.9709 26.7505 20.222 26.3639 20.3247L19.8371 22.0547C19.3116 21.1278 18.5476 20.3565 17.6234 19.8199C16.6992 19.2832 15.6481 19.0004 14.5778 19.0006H14.5295L12.7892 12.5104C12.6859 12.1264 12.7402 11.7173 12.9401 11.373C13.1401 11.0288 13.4693 10.7775 13.8555 10.6743L17.0646 9.82031L18.3563 14.4025C18.4739 14.7737 18.7322 15.085 19.0764 15.2705C19.4207 15.456 19.824 15.5012 20.2012 15.3966C20.5783 15.2919 20.8998 15.0456 21.0977 14.7097C21.2955 14.3738 21.3543 13.9746 21.2616 13.5964L19.9799 9.04628L23.1146 8.21225Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-exchange {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.93919 9.91218C4.65828 10.1939 4.50049 10.5757 4.50049 10.9738C4.50049 11.3719 4.65828 11.7537 4.93919 12.0354L10.9395 18.0444C11.2239 18.3097 11.6 18.4542 11.9886 18.4473C12.3773 18.4404 12.7481 18.2828 13.0229 18.0075C13.2977 17.7323 13.4552 17.361 13.462 16.9718C13.4689 16.5826 13.3246 16.2059 13.0597 15.9212L9.61946 12.476H17.9999C19.7239 12.476 21.3773 13.1619 22.5964 14.3827C23.8155 15.6035 24.5003 17.2593 24.5003 18.9858C24.5003 20.7123 23.8155 22.368 22.5964 23.5888C21.3773 24.8097 19.7239 25.4955 17.9999 25.4955H15.9998C15.602 25.4955 15.2204 25.6538 14.9391 25.9355C14.6578 26.2172 14.4997 26.5993 14.4997 26.9978C14.4997 27.3962 14.6578 27.7783 14.9391 28.06C15.2204 28.3417 15.602 28.5 15.9998 28.5H17.9999C20.5196 28.5 22.9361 27.4976 24.7178 25.7133C26.4995 23.9291 27.5005 21.5091 27.5005 18.9858C27.5005 16.4624 26.4995 14.0424 24.7178 12.2582C22.9361 10.4739 20.5196 9.47152 17.9999 9.47152H9.61946L13.0597 6.02636C13.3246 5.74159 13.4689 5.36493 13.462 4.97575C13.4552 4.58656 13.2977 4.21524 13.0229 3.94C12.7481 3.66476 12.3773 3.5071 11.9886 3.50023C11.6 3.49337 11.2239 3.63783 10.9395 3.90319L4.93919 9.91218Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-copy {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M24 5H16C15.2044 5 14.4413 5.31607 13.8787 5.87868C13.3161 6.44129 13 7.20435 13 8V10H16C17.5913 10 19.1174 10.6321 20.2426 11.7574C21.3679 12.8826 22 14.4087 22 16V19H24C24.7956 19 25.5587 18.6839 26.1213 18.1213C26.6839 17.5587 27 16.7956 27 16V8C27 7.20435 26.6839 6.44129 26.1213 5.87868C25.5587 5.31607 24.7956 5 24 5ZM22 22H24C25.5913 22 27.1174 21.3679 28.2426 20.2426C29.3679 19.1174 30 17.5913 30 16V8C30 6.4087 29.3679 4.88258 28.2426 3.75736C27.1174 2.63214 25.5913 2 24 2H16C14.4087 2 12.8826 2.63214 11.7574 3.75736C10.6321 4.88258 10 6.4087 10 8V10H8C6.4087 10 4.88258 10.6321 3.75736 11.7574C2.63214 12.8826 2 14.4087 2 16V24C2 25.5913 2.63214 27.1174 3.75736 28.2426C4.88258 29.3679 6.4087 30 8 30H16C17.5913 30 19.1174 29.3679 20.2426 28.2426C21.3679 27.1174 22 25.5913 22 24V22ZM8 13H16C16.7956 13 17.5587 13.3161 18.1213 13.8787C18.6839 14.4413 19 15.2044 19 16V24C19 24.7956 18.6839 25.5587 18.1213 26.1213C17.5587 26.6839 16.7956 27 16 27H8C7.20435 27 6.44129 26.6839 5.87868 26.1213C5.31607 25.5587 5 24.7956 5 24V16C5 15.2044 5.31607 14.4413 5.87868 13.8787C6.44129 13.3161 7.20435 13 8 13Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-tag {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.245 17.1171L16.8208 26.5339C16.4598 26.8944 15.9709 27.0979 15.4605 27.1001C14.9501 27.1022 14.4595 26.9029 14.0955 26.5455L5.48228 18.0955C5.11633 17.736 4.90829 17.246 4.90394 16.7333C4.89958 16.2205 5.09926 15.7271 5.45906 15.3614L14.8814 5.77058C15.1514 5.49536 15.4736 5.27667 15.8292 5.12727C16.1848 4.97787 16.5666 4.90076 16.9524 4.90044H25.1611C25.6744 4.90044 26.1668 5.10417 26.5298 5.46679C26.8927 5.82942 27.0967 6.32124 27.0967 6.83407V15.0655C27.0966 15.4466 27.0213 15.824 26.8752 16.176C26.7291 16.528 26.5149 16.8478 26.245 17.1171ZM12.8084 3.7364C13.349 3.18644 13.9939 2.74962 14.7054 2.45149C15.417 2.15335 16.1808 1.99986 16.9524 2H25.1611C26.4445 2 27.6753 2.5093 28.5827 3.41587C29.4902 4.32243 30 5.552 30 6.83407V15.0655C30.0001 15.8276 29.8499 16.5822 29.558 17.2862C29.266 17.9903 28.8381 18.6299 28.2986 19.1687L18.8725 28.5855C17.9702 29.4862 16.7484 29.9945 15.4728 30C14.1973 30.0054 12.9712 29.5075 12.0612 28.6145L3.44801 20.1645C2.5326 19.2662 2.01181 18.0415 2.0002 16.7596C1.98858 15.4778 2.48709 14.2438 3.38607 13.3291L12.8084 3.7364ZM21.29 12.635C20.6483 12.635 20.0329 12.3803 19.5792 11.927C19.1254 11.4737 18.8705 10.859 18.8705 10.2179C18.8705 9.57689 19.1254 8.96211 19.5792 8.50882C20.0329 8.05554 20.6483 7.80089 21.29 7.80089C21.9317 7.80089 22.5471 8.05554 23.0008 8.50882C23.4545 8.96211 23.7094 9.57689 23.7094 10.2179C23.7094 10.859 23.4545 11.4737 23.0008 11.927C22.5471 12.3803 21.9317 12.635 21.29 12.635Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-phone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27.8292 19.4556C27.045 18.4077 25.9866 17.5966 24.7708 17.1119L24.7094 17.0888C23.8285 16.7371 22.872 16.6178 21.9317 16.7422C20.9914 16.8667 20.0989 17.2308 19.3399 17.7996L18.6483 18.3164C18.4633 18.4547 18.2346 18.5217 18.0042 18.5051C17.7738 18.4885 17.5571 18.3895 17.3938 18.2261L13.7707 14.6029C13.6068 14.4395 13.5074 14.2224 13.4908 13.9916C13.4742 13.7607 13.5415 13.5317 13.6804 13.3465L14.1991 12.6549C14.7672 11.8963 15.1309 11.0045 15.2554 10.065C15.3798 9.12543 15.2609 8.16967 14.9099 7.28931L14.8849 7.22784C14.4001 6.01203 13.5891 4.95368 12.5412 4.16946L12.1761 3.89474C11.5971 3.46065 10.9215 3.17341 10.2072 3.05765C9.49284 2.94188 8.76108 3.00104 8.07461 3.23004L7.7096 3.35107C6.72419 3.6794 5.82883 4.23283 5.09455 4.96745C4.36026 5.70207 3.80724 6.59768 3.47936 7.58324C2.91812 9.27399 2.84817 11.0893 3.27764 12.8182C4.10212 16.1142 5.80665 19.1242 8.20909 21.5265L10.4721 23.7896C12.8747 26.1913 15.8847 27.8952 19.1805 28.7191C20.9094 29.1533 22.7249 29.0841 24.4154 28.5193C25.4016 28.1915 26.2977 27.6383 27.0327 26.9036C27.7676 26.169 28.3212 25.2731 28.6495 24.2871L28.7705 23.9221C28.9993 23.2355 29.0581 22.5037 28.942 21.7893C28.8259 21.075 28.5383 20.3994 28.1039 19.8206L27.8292 19.4556ZM10.6047 6.74948L10.2397 6.47477C10.078 6.35371 9.88933 6.27369 9.68991 6.24157C9.49048 6.20945 9.28625 6.22619 9.09471 6.29034L8.7297 6.41137C7.69616 6.75717 6.88545 7.56787 6.53966 8.60142C6.16974 9.71049 6.12376 10.9021 6.4071 12.0363C7.09216 14.7639 8.5036 17.2548 10.4913 19.2443L12.7544 21.5073C14.7441 23.4944 17.235 24.9051 19.9623 25.5896C21.0958 25.872 22.2869 25.8259 23.3953 25.4571C24.4308 25.1113 25.2415 24.3006 25.5873 23.267L25.7083 22.902C25.7725 22.7105 25.7892 22.5063 25.7571 22.3068C25.725 22.1074 25.645 21.9188 25.5239 21.7571L25.2492 21.3921C24.8193 20.8185 24.2397 20.3745 23.574 20.1088L23.5125 20.0838C23.1459 19.9378 22.748 19.8883 22.3568 19.9401C21.9656 19.9919 21.5942 20.1432 21.2783 20.3796L20.5867 20.8983C19.7802 21.5028 18.7827 21.7962 17.7773 21.7245C16.772 21.6529 15.8262 21.2211 15.1135 20.5084L11.4903 16.8852C10.7771 16.1724 10.3449 15.2262 10.2733 14.2204C10.2017 13.2146 10.4953 12.2167 11.1003 11.4101L11.619 10.7185C12.0993 10.0768 12.2126 9.23154 11.9149 8.48615L11.8899 8.42468C11.6242 7.75896 11.1783 7.17934 10.6047 6.74948Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-home{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 25.2972C25.614 24.7561 26 23.9711 26 23.0975V14.1986C26.0001 13.7465 25.8947 13.3005 25.6918 12.8949C25.489 12.4893 25.1941 12.135 24.83 11.8592L17.83 6.56273C17.3054 6.16546 16.662 5.95005 16 5.95005C15.338 5.95005 14.6946 6.16546 14.17 6.56273L7.17 11.8592C6.80562 12.1352 6.5106 12.4898 6.30773 12.8958C6.10486 13.3017 5.99957 13.7482 6 14.2005V23.0975C5.99895 23.4842 6.07536 23.8673 6.22488 24.225C6.3744 24.5826 6.59408 24.9077 6.87138 25.1818C7.14869 25.4559 7.47817 25.6735 7.841 25.8223C8.20384 25.971 8.59292 26.048 8.986 26.0488H10V19.1625C10 18.1189 10.4214 17.118 11.1716 16.3801C11.9217 15.6421 12.9391 15.2276 14 15.2276H18C19.0609 15.2276 20.0783 15.6421 20.8284 16.3801C21.5786 17.118 22 18.1189 22 19.1625V26.0488H23.014C23.776 26.0448 24.474 25.7615 25 25.2972ZM29 23.0975C29 24.663 28.3679 26.1643 27.2426 27.2712C26.1174 28.3781 24.5913 29 23 29H9C7.4087 29 5.88258 28.3781 4.75736 27.2712C3.63214 26.1643 3 24.663 3 23.0975V14.1986C3.00006 13.2948 3.21108 12.4032 3.61678 11.5923C4.02249 10.7815 4.61204 10.0731 5.34 9.52183L12.34 4.22535C13.3892 3.43082 14.676 3 16 3C17.324 3 18.6108 3.43082 19.66 4.22535L26.66 9.52183C27.3882 10.0733 27.9779 10.782 28.3837 11.5932C28.7894 12.4044 29.0002 13.2965 29 14.2005V23.0975ZM19 19.1625C19 18.9016 18.8946 18.6514 18.7071 18.4669C18.5196 18.2824 18.2652 18.1788 18 18.1788H14C13.7348 18.1788 13.4804 18.2824 13.2929 18.4669C13.1054 18.6514 13 18.9016 13 19.1625V26.0488H19V19.1625Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-find-shipping {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 1C19.4478 1 22.7544 2.36964 25.1924 4.80762C27.6304 7.24559 29 10.5522 29 14C29 20.7997 24.8684 23.9497 21.9404 26.1816C20.6724 27.1516 19.628 27.946 19.25 28.792C18.71 30 17.576 31 16 31C14.424 31 13.292 30 12.75 28.792C12.37 27.946 11.3296 27.1516 10.0576 26.1816C7.13164 23.9497 3 20.7977 3 14C3 10.5522 4.36964 7.24559 6.80762 4.80762C9.24559 2.36964 12.5522 1 16 1ZM16 4.25C13.4141 4.25 10.9339 5.27699 9.10547 7.10547C7.27699 8.93395 6.25 11.4141 6.25 14C6.25 17.73 7.80003 19.9259 9.62402 21.6279C10.3705 22.3068 11.1508 22.9476 11.9619 23.5479C12.2006 23.7279 12.445 23.9151 12.6943 24.1084C13.2399 24.5235 13.7612 24.9697 14.2559 25.4443C14.8627 26.0219 15.3578 26.7064 15.7158 27.4639C15.7571 27.5652 15.8228 27.6548 15.9062 27.7256L15.9355 27.7441L16 27.75C16.044 27.75 16.0645 27.7422 16.0645 27.7422L16.0938 27.7256C16.1775 27.6543 16.2431 27.564 16.2842 27.4619C16.6741 26.5921 17.2582 25.9223 17.7441 25.4424C18.2388 24.9678 18.7601 24.5216 19.3057 24.1064L20.0361 23.5459C20.8461 22.9299 21.606 22.3498 22.376 21.6299C24.202 19.9239 25.75 17.728 25.75 14C25.75 11.4141 24.723 8.93395 22.8945 7.10547C21.0661 5.27699 18.5859 4.25 16 4.25ZM16.8613 7.7041C17.2541 7.72398 17.6387 7.82178 17.9912 7.99219L20.71 9.30859C21.1857 9.53925 21.588 9.89431 21.8691 10.335C22.1503 10.7758 22.2999 11.2849 22.2998 11.8047V16.0088C22.2997 16.5788 22.1203 17.1348 21.7861 17.6016C21.452 18.0681 20.9794 18.423 20.4336 18.6211L16.2949 20.123C15.9261 20.257 15.5326 20.3157 15.1396 20.2959C14.747 20.276 14.3623 20.1782 14.0098 20.0078L11.29 18.6914C10.8142 18.4609 10.4122 18.1057 10.1309 17.665C9.84955 17.2243 9.70027 16.7151 9.7002 16.1953V11.9912C9.7002 11.5903 9.78895 11.2038 9.9502 10.8535C9.98957 10.7127 10.0606 10.5837 10.1602 10.4766C10.4887 9.98267 10.9761 9.59346 11.5654 9.37891L15.7061 7.87695C16.0748 7.74305 16.4685 7.68424 16.8613 7.7041ZM19.2998 12.7109V14.207C19.2997 14.4547 19.1983 14.6912 19.0205 14.8633C18.8431 15.0349 18.6042 15.1298 18.3574 15.1299C18.1107 15.1299 17.8718 15.0348 17.6943 14.8633C17.5166 14.6912 17.4141 14.4547 17.4141 14.207V13.3633L16.0859 13.8223V18.2324L19.7783 16.8916C19.9671 16.8229 20.1282 16.7006 20.2412 16.543C20.3541 16.3853 20.4139 16.1986 20.4141 16.0088V12.3262L19.2998 12.7109ZM11.5859 16.1953C11.586 16.3686 11.6354 16.5397 11.7305 16.6885C11.8257 16.8374 11.9634 16.9595 12.1279 17.0391L14.2002 18.041V13.7432L11.5859 12.4775V16.1953ZM12.6709 10.9443L15.2031 12.1699L16.3477 11.7744L13.792 10.5371L12.6709 10.9443ZM16.7627 9.5459C16.626 9.53894 16.4891 9.55918 16.3613 9.60547L16.2217 9.65527L18.7754 10.8916C18.7922 10.8998 18.808 10.9099 18.8242 10.9189L19.3857 10.7246L17.1543 9.64551C17.0327 9.58665 16.8992 9.55292 16.7627 9.5459Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-click-collect {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M21.3333 10C23.6319 10 25.8363 10.9131 27.4616 12.5384C29.0869 14.1637 30 16.3681 30 18.6667C30 23.1998 27.2456 25.2998 25.2936 26.7878C24.4483 27.4344 23.752 27.964 23.5 28.528C23.14 29.3333 22.384 30 21.3333 30C20.2827 30 19.528 29.3333 19.1667 28.528C18.9133 27.964 18.2197 27.4344 17.3717 26.7878C15.4211 25.2998 12.6667 23.1985 12.6667 18.6667C12.6667 16.3681 13.5798 14.1637 15.2051 12.5384C16.8304 10.9131 19.0348 10 21.3333 10ZM21.3333 12.1667C19.6094 12.1667 17.956 12.8513 16.737 14.0703C15.518 15.2893 14.8333 16.9428 14.8333 18.6667C14.8333 21.1533 15.8667 22.6173 17.0827 23.752C17.5804 24.2045 18.1006 24.6317 18.6413 25.0319C18.8004 25.1519 18.9633 25.2767 19.1296 25.4056C19.4933 25.6824 19.8408 25.9798 20.1706 26.2962C20.5752 26.6813 20.9052 27.1376 21.1439 27.6426C21.1714 27.7101 21.2152 27.7699 21.2708 27.8171L21.2904 27.8294L21.3333 27.8333C21.3627 27.8333 21.3763 27.8281 21.3763 27.8281L21.3958 27.8171C21.4517 27.7695 21.4954 27.7093 21.5228 27.6413C21.7828 27.0614 22.1721 26.6149 22.4961 26.2949C22.8259 25.9785 23.1734 25.681 23.5371 25.4043L24.0241 25.0306C24.5641 24.62 25.0707 24.2332 25.584 23.7533C26.8013 22.6159 27.8333 21.152 27.8333 18.6667C27.8333 16.9428 27.1487 15.2893 25.9297 14.0703C24.7107 12.8513 23.0572 12.1667 21.3333 12.1667ZM21.3333 14.6667C22.3942 14.6667 23.4113 15.0884 24.1615 15.8385C24.9116 16.5887 25.3333 17.6058 25.3333 18.6667C25.3333 19.7275 24.9116 20.7446 24.1615 21.4948C23.4113 22.2449 22.3942 22.6667 21.3333 22.6667C20.2725 22.6667 19.2554 22.2449 18.5052 21.4948C17.7551 20.7446 17.3333 19.7275 17.3333 18.6667C17.3333 17.6058 17.7551 16.5887 18.5052 15.8385C19.2554 15.0884 20.2725 14.6667 21.3333 14.6667ZM21.3333 16.6667C20.8029 16.6667 20.2943 16.8775 19.9193 17.2526C19.5442 17.6277 19.3333 18.1362 19.3333 18.6667C19.3333 19.1971 19.5442 19.7057 19.9193 20.0807C20.2943 20.4558 20.8029 20.6667 21.3333 20.6667C21.8638 20.6667 22.3723 20.4558 22.7474 20.0807C23.1225 19.7057 23.3333 19.1971 23.3333 18.6667C23.3333 18.1362 23.1225 17.6277 22.7474 17.2526C22.3723 16.8775 21.8638 16.6667 21.3333 16.6667ZM6.66667 2C7.37391 2 8.05199 2.28115 8.55208 2.78125C9.05218 3.28135 9.33333 3.95942 9.33333 4.66667V8L11.3333 6.54688L12.5371 5.67057C12.7996 5.47947 13.11 5.36497 13.4336 5.33919C13.7573 5.31345 14.0823 5.37748 14.3717 5.52474C14.661 5.67197 14.9038 5.8965 15.0736 6.17318C15.2433 6.44994 15.3333 6.76845 15.3333 7.0931V8L16.6934 7.0931L17.3105 6.68164L17.8828 6.30143C18.1524 6.12174 18.4655 6.01833 18.7891 6.0026C19.1128 5.98692 19.435 6.05938 19.7207 6.21224C20.0064 6.36509 20.2455 6.59252 20.4121 6.87044C20.5787 7.14832 20.6665 7.4664 20.6667 7.79036V8.6888C19.9786 8.73409 19.3097 8.8492 18.6667 9.02669V8.18164L16.4427 9.66406L13.3333 11.7376V7.5638L10.5091 9.61719L7.33333 11.9277V4.66667C7.33333 4.48986 7.26305 4.32034 7.13802 4.19531C7.013 4.07029 6.84348 4 6.66667 4H4.66667C4.48986 4 4.32034 4.07029 4.19531 4.19531C4.07029 4.32034 4 4.48986 4 4.66667V17.3333C4 17.5101 4.07029 17.6797 4.19531 17.8047C4.32034 17.9297 4.48986 18 4.66667 18H11.3561C11.3416 18.2204 11.3333 18.4426 11.3333 18.6667C11.3333 19.1188 11.3638 19.5638 11.4219 20H4.66667C3.95942 20 3.28135 19.7188 2.78125 19.2188C2.28115 18.7187 2 18.0406 2 17.3333V4.66667C2 3.95942 2.28115 3.28135 2.78125 2.78125C3.28135 2.28115 3.95942 2 4.66667 2H6.66667ZM12.4876 14C12.1547 14.6298 11.8874 15.2995 11.694 16H7C6.73478 16 6.4805 15.8946 6.29297 15.707C6.10543 15.5195 6 15.2652 6 15C6 14.7348 6.10543 14.4805 6.29297 14.293C6.4805 14.1054 6.73478 14 7 14H12.4876Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-points{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.1323 7.1852H12.3487L13.2106 6.3233L15.3066 4.22734C15.3975 4.13613 15.5056 4.06377 15.6246 4.01439C15.7436 3.96501 15.8712 3.9396 16 3.9396C16.1288 3.9396 16.2564 3.96501 16.3754 4.01439C16.4944 4.06377 16.6025 4.13613 16.6934 4.22734L18.7894 6.3233L19.6513 7.1852H23.8354C24.0951 7.1852 24.3443 7.28839 24.5279 7.47206C24.7116 7.65574 24.8148 7.90486 24.8148 8.16462V12.3487L25.6767 13.2106L27.7727 15.3066C27.8639 15.3975 27.9362 15.5056 27.9856 15.6246C28.035 15.7436 28.0604 15.8712 28.0604 16C28.0604 16.1288 28.035 16.2564 27.9856 16.3754C27.9362 16.4944 27.8639 16.6025 27.7727 16.6934L25.6767 18.7894L24.8148 19.6513V23.8354C24.8148 24.0951 24.7116 24.3443 24.5279 24.5279C24.3443 24.7116 24.0951 24.8148 23.8354 24.8148H19.6513L18.7894 25.6767L16.6934 27.7727C16.6025 27.8639 16.4944 27.9362 16.3754 27.9856C16.2564 28.035 16.1288 28.0604 16 28.0604C15.8712 28.0604 15.7436 28.035 15.6246 27.9856C15.5056 27.9362 15.3975 27.8639 15.3066 27.7727L13.2106 25.6767L12.3487 24.8148H8.16462C7.90486 24.8148 7.65574 24.7116 7.47206 24.5279C7.28839 24.3443 7.1852 24.0951 7.1852 23.8354V19.6513L6.3233 18.7894L4.22734 16.6934C4.13613 16.6025 4.06377 16.4944 4.01439 16.3754C3.96501 16.2564 3.9396 16.1288 3.9396 16C3.9396 15.8712 3.96501 15.7436 4.01439 15.6246C4.06377 15.5056 4.13613 15.3975 4.22734 15.3066L6.3233 13.2106L7.1852 12.3487V8.16462C7.1852 7.90486 7.28839 7.65574 7.47206 7.47206C7.65574 7.28839 7.90486 7.1852 8.16462 7.1852H11.1323ZM18.7718 2.14901C18.4079 1.78475 17.9758 1.49579 17.5002 1.29863C17.0246 1.10148 16.5148 1 16 1C15.4852 1 14.9754 1.10148 14.4998 1.29863C14.0242 1.49579 13.5921 1.78475 13.2282 2.14901L11.1342 4.24693H8.16462C7.12558 4.24693 6.1291 4.65968 5.39439 5.39439C4.65968 6.1291 4.24693 7.12558 4.24693 8.16462V11.1323L2.14901 13.2282C1.78475 13.5921 1.49579 14.0242 1.29863 14.4998C1.10148 14.9754 1 15.4852 1 16C1 16.5148 1.10148 17.0246 1.29863 17.5002C1.49579 17.9758 1.78475 18.4079 2.14901 18.7718L4.24693 20.8658V23.8354C4.24693 24.8744 4.65968 25.8709 5.39439 26.6056C6.1291 27.3403 7.12558 27.7531 8.16462 27.7531H11.1323L13.2282 29.851C13.5921 30.2152 14.0242 30.5042 14.4998 30.7014C14.9754 30.8985 15.4852 31 16 31C16.5148 31 17.0246 30.8985 17.5002 30.7014C17.9758 30.5042 18.4079 30.2152 18.7718 29.851L20.8658 27.7531H23.8354C24.8744 27.7531 25.8709 27.3403 26.6056 26.6056C27.3403 25.8709 27.7531 24.8744 27.7531 23.8354V20.8677L29.851 18.7718C30.2152 18.4079 30.5042 17.9758 30.7014 17.5002C30.8985 17.0246 31 16.5148 31 16C31 15.4852 30.8985 14.9754 30.7014 14.4998C30.5042 14.0242 30.2152 13.5921 29.851 13.2282L27.7531 11.1342V8.16462C27.7531 7.12558 27.3403 6.1291 26.6056 5.39439C25.8709 4.65968 24.8744 4.24693 23.8354 4.24693H20.8677L18.7718 2.14901ZM22.0724 12.9638C22.1882 12.8094 22.2724 12.6338 22.3203 12.4469C22.3682 12.26 22.3788 12.0655 22.3515 11.8745C22.3242 11.6836 22.2596 11.4998 22.1613 11.3338C22.063 11.1678 21.9329 11.0228 21.7786 10.907C21.6242 10.7912 21.4486 10.707 21.2617 10.6591C21.0748 10.6113 20.8803 10.6007 20.6893 10.6279C20.4984 10.6552 20.3146 10.7199 20.1486 10.8182C19.9826 10.9165 19.8376 11.0465 19.7218 11.2008L14.8619 17.6807L12.1411 14.9618C11.8626 14.7023 11.4942 14.561 11.1136 14.5677C10.733 14.5745 10.3699 14.7286 10.1007 14.9978C9.83153 15.267 9.67734 15.6301 9.67063 16.0107C9.66391 16.3913 9.80519 16.7597 10.0647 17.0382L13.9824 20.9559C14.1312 21.1046 14.3102 21.2197 14.5073 21.2933C14.7044 21.3669 14.915 21.3973 15.1249 21.3824C15.3348 21.3676 15.539 21.3078 15.7238 21.2072C15.9085 21.1065 16.0695 20.9674 16.1959 20.7992L22.0724 12.9638Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 6.5C2.5 6.10218 2.65804 5.72064 2.93934 5.43934C3.22064 5.15804 3.60218 5 4 5H28C28.3978 5 28.7794 5.15804 29.0607 5.43934C29.342 5.72064 29.5 6.10218 29.5 6.5C29.5 6.89782 29.342 7.27936 29.0607 7.56066C28.7794 7.84196 28.3978 8 28 8H4C3.60218 8 3.22064 7.84196 2.93934 7.56066C2.65804 7.27936 2.5 6.89782 2.5 6.5ZM2.5 16C2.5 15.6022 2.65804 15.2206 2.93934 14.9393C3.22064 14.658 3.60218 14.5 4 14.5H28C28.3978 14.5 28.7794 14.658 29.0607 14.9393C29.342 15.2206 29.5 15.6022 29.5 16C29.5 16.3978 29.342 16.7794 29.0607 17.0607C28.7794 17.342 28.3978 17.5 28 17.5H4C3.60218 17.5 3.22064 17.342 2.93934 17.0607C2.65804 16.7794 2.5 16.3978 2.5 16ZM4 24C3.60218 24 3.22064 24.158 2.93934 24.4393C2.65804 24.7206 2.5 25.1022 2.5 25.5C2.5 25.8978 2.65804 26.2794 2.93934 26.5607C3.22064 26.842 3.60218 27 4 27H28C28.3978 27 28.7794 26.842 29.0607 26.5607C29.342 26.2794 29.5 25.8978 29.5 25.5C29.5 25.1022 29.342 24.7206 29.0607 24.4393C28.7794 24.158 28.3978 24 28 24H4Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu-close{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.46089 6.50057C6.75639 6.20605 7.15694 6.04062 7.57457 6.04062C7.9922 6.04062 8.39275 6.20605 8.68824 6.50057L15.9797 13.7772L23.2711 6.50057C23.4153 6.34605 23.5893 6.22211 23.7826 6.13615C23.976 6.05019 24.1846 6.00397 24.3962 6.00024C24.6079 5.99652 24.818 6.03537 25.0143 6.11447C25.2105 6.19357 25.3888 6.3113 25.5384 6.46065C25.6881 6.60999 25.806 6.78789 25.8853 6.98373C25.9646 7.17956 26.0035 7.38932 25.9998 7.6005C25.996 7.81167 25.9497 8.01993 25.8636 8.21286C25.7774 8.40578 25.6532 8.57941 25.4984 8.7234L18.207 16L25.4984 23.2766C25.6532 23.4206 25.7774 23.5942 25.8636 23.7871C25.9497 23.9801 25.996 24.1883 25.9998 24.3995C26.0035 24.6107 25.9646 24.8204 25.8853 25.0163C25.806 25.2121 25.6881 25.39 25.5384 25.5393C25.3888 25.6887 25.2105 25.8064 25.0143 25.8855C24.818 25.9646 24.6079 26.0035 24.3962 25.9998C24.1846 25.996 23.976 25.9498 23.7826 25.8638C23.5893 25.7779 23.4153 25.6539 23.2711 25.4994L15.9797 18.2228L8.68824 25.4994C8.38949 25.7772 7.99436 25.9285 7.58608 25.9213C7.1778 25.9141 6.78825 25.749 6.49951 25.4609C6.21077 25.1727 6.04537 24.784 6.03817 24.3765C6.03097 23.9691 6.18252 23.5747 6.46089 23.2766L13.7523 16L6.46089 8.7234C6.16577 8.4285 6 8.02877 6 7.61198C6 7.1952 6.16577 6.79546 6.46089 6.50057Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23 6H9C8.20435 6 7.44129 6.31607 6.87868 6.87868C6.31607 7.44129 6 8.20435 6 9V23C6 23.7956 6.31607 24.5587 6.87868 25.1213C7.44129 25.6839 8.20435 26 9 26H23C23.7956 26 24.5587 25.6839 25.1213 25.1213C25.6839 24.5587 26 23.7956 26 23V9C26 8.20435 25.6839 7.44129 25.1213 6.87868C24.5587 6.31607 23.7956 6 23 6ZM9 3C7.4087 3 5.88258 3.63214 4.75736 4.75736C3.63214 5.88258 3 7.4087 3 9V23C3 24.5913 3.63214 26.1174 4.75736 27.2426C5.88258 28.3679 7.4087 29 9 29H23C24.5913 29 26.1174 28.3679 27.2426 27.2426C28.3679 26.1174 29 24.5913 29 23V9C29 7.4087 28.3679 5.88258 27.2426 4.75736C26.1174 3.63214 24.5913 3 23 3H9Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1.active,
body .rdc-icon-svg.rdc-icon-view1-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 3C7.4087 3 5.88258 3.63214 4.75736 4.75736C3.63214 5.88258 3 7.4087 3 9V23C3 24.5913 3.63214 26.1174 4.75736 27.2426C5.88258 28.3679 7.4087 29 9 29H23C24.5913 29 26.1174 28.3679 27.2426 27.2426C28.3679 26.1174 29 24.5913 29 23V9C29 7.4087 28.3679 5.88258 27.2426 4.75736C26.1174 3.63214 24.5913 3 23 3H9Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.3154 16.2871C13.1478 16.3284 13.9388 16.677 14.5312 17.2695C15.163 17.9014 15.5173 18.7585 15.5176 19.6514V25.4316C15.5173 26.3244 15.163 27.1816 14.5312 27.8135C13.9388 28.4058 13.1478 28.7546 12.3154 28.7959L12.1484 28.7998H6.36914C5.47611 28.7996 4.61829 28.4454 3.98633 27.8135C3.35461 27.1816 3.00027 26.3244 3 25.4316V19.6514C3.00023 18.7586 3.35477 17.9013 3.98633 17.2695C4.61829 16.6376 5.47611 16.2834 6.36914 16.2832H12.1484L12.3154 16.2871ZM25.6309 16.2832C26.5239 16.2834 27.3817 16.6376 28.0137 17.2695C28.6452 17.9013 28.9998 18.7586 29 19.6514V25.4316C28.9997 26.3244 28.6454 27.1816 28.0137 27.8135C27.3817 28.4454 26.5239 28.7996 25.6309 28.7998H19.8516C18.9585 28.7997 18.1007 28.4453 17.4688 27.8135C16.8371 27.1816 16.4827 26.3244 16.4824 25.4316V19.6514C16.4827 18.7585 16.837 17.9014 17.4688 17.2695C18.1007 16.6376 18.9585 16.2833 19.8516 16.2832H25.6309ZM6.30176 19.3135C6.23601 19.3268 6.17482 19.3595 6.12598 19.4082C6.06047 19.4738 6.02445 19.5619 6.02441 19.6523V25.4307L6.03027 25.498C6.04353 25.5641 6.07696 25.6258 6.12598 25.6748C6.19121 25.7399 6.27858 25.7762 6.36914 25.7764H12.1484C12.2387 25.7763 12.3261 25.74 12.3916 25.6748C12.4567 25.6097 12.4929 25.5221 12.4932 25.4316V19.6523C12.4931 19.5617 12.457 19.4736 12.3916 19.4082C12.3262 19.3429 12.2389 19.3067 12.1484 19.3066H6.36914L6.30176 19.3135ZM19.8516 19.3066C19.7611 19.3067 19.6738 19.3429 19.6084 19.4082C19.543 19.4736 19.5069 19.5617 19.5068 19.6523V25.4307L19.5137 25.498C19.527 25.5641 19.5594 25.6258 19.6084 25.6748C19.6739 25.74 19.7614 25.7763 19.8516 25.7764H25.6309L25.6982 25.7695C25.764 25.7562 25.8252 25.7235 25.874 25.6748C25.9392 25.6097 25.9753 25.5221 25.9756 25.4316V19.6523C25.9756 19.5619 25.9395 19.4738 25.874 19.4082C25.8252 19.3595 25.764 19.3268 25.6982 19.3135L25.6309 19.3066H19.8516ZM12.5156 3.00488C13.3477 3.04632 14.1382 3.39427 14.7305 3.98633C15.3624 4.61829 15.7166 5.47611 15.7168 6.36914V12.1484C15.7167 13.0415 15.3625 13.8993 14.7305 14.5312C14.0986 15.163 13.2415 15.5174 12.3486 15.5176H6.56836C5.6756 15.5173 4.81836 15.163 4.18652 14.5312C3.55474 13.8993 3.20031 13.0415 3.2002 12.1484V6.36914C3.20035 5.47611 3.55456 4.61829 4.18652 3.98633C4.81836 3.35462 5.6756 3.00028 6.56836 3H12.3486L12.5156 3.00488ZM25.6309 3C26.5239 3.00016 27.3817 3.35439 28.0137 3.98633C28.6456 4.61829 28.9998 5.47611 29 6.36914V12.1484C28.9999 13.0415 28.6455 13.8993 28.0137 14.5312C27.3817 15.1632 26.5239 15.5174 25.6309 15.5176H19.8516C18.9585 15.5175 18.1007 15.1632 17.4688 14.5312C16.8368 13.8993 16.4825 13.0415 16.4824 12.1484V6.36914C16.4826 5.47613 16.8368 4.61828 17.4688 3.98633C18.1007 3.35455 18.9585 3.00012 19.8516 3H25.6309ZM6.56934 6.02441C6.47856 6.02448 6.39052 6.06066 6.3252 6.12598C6.2601 6.1912 6.22377 6.27858 6.22363 6.36914V12.1484L6.23047 12.2148C6.24364 12.2808 6.27617 12.3424 6.3252 12.3916C6.39052 12.4569 6.47856 12.4931 6.56934 12.4932H12.3477C12.4383 12.4931 12.5264 12.457 12.5918 12.3916C12.6406 12.3427 12.6733 12.2815 12.6865 12.2158L12.6934 12.1484V6.36914C12.6933 6.30115 12.6725 6.23512 12.6348 6.17871L12.5918 6.12598C12.5426 6.07682 12.481 6.04352 12.415 6.03027L12.3477 6.02441H6.56934ZM19.8516 6.02441C19.7612 6.02451 19.6739 6.06058 19.6084 6.12598C19.5432 6.19122 19.507 6.27848 19.5068 6.36914V12.1484L19.5137 12.2158C19.527 12.2816 19.5595 12.3426 19.6084 12.3916C19.6738 12.457 19.761 12.4931 19.8516 12.4932H25.6309L25.6982 12.4873C25.7641 12.474 25.8251 12.4405 25.874 12.3916C25.9232 12.3423 25.9565 12.2809 25.9697 12.2148L25.9756 12.1484V6.36914C25.9754 6.27847 25.9393 6.19123 25.874 6.12598C25.8251 6.07708 25.7641 6.04358 25.6982 6.03027L25.6309 6.02441H19.8516Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2.active,
body .rdc-icon-svg.rdc-icon-view2-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.53846 4C5.86522 4 5.21955 4.26744 4.7435 4.7435C4.26744 5.21955 4 5.86522 4 6.53846V12.4615C4 13.1348 4.26744 13.7804 4.7435 14.2565C5.21955 14.7326 5.86522 15 6.53846 15H12.4615C13.1348 15 13.7804 14.7326 14.2565 14.2565C14.7326 13.7804 15 13.1348 15 12.4615V6.53846C15 5.86522 14.7326 5.21955 14.2565 4.7435C13.7804 4.26744 13.1348 4 12.4615 4H6.53846Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.5385 4C18.8652 4 18.2196 4.26744 17.7435 4.7435C17.2674 5.21955 17 5.86522 17 6.53846C17 7.2117 17 12.4615 17 12.4615C17 13.1348 17.2674 13.7804 17.7435 14.2565C18.2196 14.7326 18.8652 15 19.5385 15H25.4615C26.1348 15 26.7804 14.7326 27.2565 14.2565C27.7326 13.7804 28 13.1348 28 12.4615V6.53846C28 5.86522 27.7326 5.21955 27.2565 4.7435C26.7804 4.26744 26.1348 4 25.4615 4H19.5385Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.5385 17C18.8652 17 18.2196 17.2674 17.7435 17.7435C17.2674 18.2196 17 18.8652 17 19.5385V25.4615C17 26.1348 17.2674 26.7804 17.7435 27.2565C18.2196 27.7326 18.8652 28 19.5385 28H25.4615C26.1348 28 26.7804 27.7326 27.2565 27.2565C27.7326 26.7804 28 26.1348 28 25.4615V19.5385C28 18.8652 27.7326 18.2196 27.2565 17.7435C26.7804 17.2674 26.1348 17 25.4615 17H19.5385Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.53846 17C5.86522 17 5.21955 17.2674 4.7435 17.7435C4.26744 18.2196 4 18.8652 4 19.5385V25.4615C4 26.1348 4.26744 26.7804 4.7435 27.2565C5.21955 27.7326 5.86522 28 6.53846 28H12.4615C13.1348 28 13.7804 27.7326 14.2565 27.2565C14.7326 26.7804 15 26.1348 15 25.4615V19.5385C15 18.8652 14.7326 18.2196 14.2565 17.7435C13.7804 17.2674 13.1348 17 12.4615 17H6.53846Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view3:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.45365 21.0906C9.10471 21.0907 9.72997 21.3488 10.1906 21.8094C10.6512 22.27 10.9093 22.8953 10.9094 23.5463V27.5443C10.9093 28.1953 10.6512 28.8206 10.1906 29.2812C9.72997 29.7418 9.10471 30 8.45365 30H4.45572C3.80466 30 3.1794 29.7418 2.7188 29.2812C2.2582 28.8206 2.00005 28.1953 2 27.5443V23.5463C2.00005 22.8953 2.2582 22.27 2.7188 21.8094C3.1794 21.3488 3.80466 21.0907 4.45572 21.0906H8.45365ZM17.999 21.0906C18.65 21.0907 19.2753 21.3488 19.7359 21.8094C20.1965 22.27 20.4546 22.8953 20.4547 23.5463V27.5443C20.4546 28.1953 20.1965 28.8206 19.7359 29.2812C19.2753 29.7418 18.65 30 17.999 30H14.001C13.35 30 12.7247 29.7418 12.2641 29.2812C11.8035 28.8206 11.5454 28.1953 11.5453 27.5443V23.5463C11.5454 22.8953 11.8035 22.27 12.2641 21.8094C12.7247 21.3488 13.35 21.0907 14.001 21.0906H17.999ZM27.5443 21.0906C28.1953 21.0907 28.8206 21.3488 29.2812 21.8094C29.7418 22.27 30 22.8953 30 23.5463V27.5443C30 28.1953 29.7418 28.8206 29.2812 29.2812C28.8206 29.7418 28.1953 30 27.5443 30H23.5463C22.8953 30 22.27 29.7418 21.8094 29.2812C21.3488 28.8206 21.0907 28.1953 21.0906 27.5443V23.5463C21.0907 22.8953 21.3488 22.27 21.8094 21.8094C22.27 21.3488 22.8953 21.0907 23.5463 21.0906H27.5443ZM4.45572 23.4324C4.42474 23.4325 4.39579 23.4447 4.37494 23.4656C4.35408 23.4864 4.34183 23.5154 4.34179 23.5463V27.5443L4.35008 27.5888C4.35575 27.6025 4.36454 27.6147 4.37494 27.6251C4.39579 27.6459 4.42474 27.6582 4.45572 27.6582H8.45365L8.49819 27.6499C8.51191 27.6442 8.52404 27.6355 8.53444 27.6251C8.54484 27.6147 8.55362 27.6025 8.5593 27.5888L8.56758 27.5443V23.5463C8.56754 23.5154 8.55529 23.4864 8.53444 23.4656C8.52404 23.4552 8.51191 23.4464 8.49819 23.4407L8.45365 23.4324H4.45572ZM14.001 23.4324C13.9701 23.4325 13.9411 23.4447 13.9202 23.4656C13.8994 23.4864 13.8871 23.5154 13.8871 23.5463V27.5443L13.8954 27.5888C13.9011 27.6025 13.9098 27.6147 13.9202 27.6251C13.9411 27.6459 13.9701 27.6582 14.001 27.6582H17.999L18.0435 27.6499C18.0572 27.6442 18.0694 27.6355 18.0798 27.6251C18.0902 27.6147 18.0989 27.6025 18.1046 27.5888L18.1129 27.5443V23.5463C18.1129 23.5154 18.1006 23.4864 18.0798 23.4656C18.0694 23.4552 18.0572 23.4464 18.0435 23.4407L17.999 23.4324H14.001ZM23.5463 23.4324C23.5154 23.4325 23.4864 23.4447 23.4656 23.4656C23.4447 23.4864 23.4325 23.5154 23.4324 23.5463V27.5443L23.4407 27.5888C23.4464 27.6025 23.4552 27.6147 23.4656 27.6251C23.4864 27.6459 23.5154 27.6582 23.5463 27.6582H27.5443L27.5888 27.6499C27.6025 27.6442 27.6147 27.6355 27.6251 27.6251C27.6355 27.6147 27.6442 27.6025 27.6499 27.5888L27.6582 27.5443V23.5463C27.6582 23.5154 27.6459 23.4864 27.6251 23.4656C27.6147 23.4552 27.6025 23.4464 27.5888 23.4407L27.5443 23.4324H23.5463ZM8.45365 11.5453C9.10471 11.5454 9.72997 11.8035 10.1906 12.2641C10.6512 12.7247 10.9093 13.35 10.9094 14.001V17.999C10.9093 18.65 10.6512 19.2753 10.1906 19.7359C9.72997 20.1965 9.10471 20.4546 8.45365 20.4547H4.45572C3.80466 20.4546 3.1794 20.1965 2.7188 19.7359C2.2582 19.2753 2.00005 18.65 2 17.999V14.001C2.00005 13.35 2.2582 12.7247 2.7188 12.2641C3.1794 11.8035 3.80466 11.5454 4.45572 11.5453H8.45365ZM17.999 11.5453C18.65 11.5454 19.2753 11.8035 19.7359 12.2641C20.1965 12.7247 20.4546 13.35 20.4547 14.001V17.999C20.4546 18.65 20.1965 19.2753 19.7359 19.7359C19.2753 20.1965 18.65 20.4546 17.999 20.4547H14.001C13.35 20.4546 12.7247 20.1965 12.2641 19.7359C11.8035 19.2753 11.5454 18.65 11.5453 17.999V14.001C11.5454 13.35 11.8035 12.7247 12.2641 12.2641C12.7247 11.8035 13.35 11.5454 14.001 11.5453H17.999ZM27.5443 11.5453C28.1953 11.5454 28.8206 11.8035 29.2812 12.2641C29.7418 12.7247 30 13.35 30 14.001V17.999C30 18.65 29.7418 19.2753 29.2812 19.7359C28.8206 20.1965 28.1953 20.4546 27.5443 20.4547H23.5463C22.8953 20.4546 22.27 20.1965 21.8094 19.7359C21.3488 19.2753 21.0907 18.65 21.0906 17.999V14.001C21.0907 13.35 21.3488 12.7247 21.8094 12.2641C22.27 11.8035 22.8953 11.5454 23.5463 11.5453H27.5443ZM4.45572 13.8871C4.42474 13.8871 4.39579 13.8994 4.37494 13.9202C4.35408 13.9411 4.34183 13.9701 4.34179 14.001V17.999L4.35008 18.0435C4.35575 18.0572 4.36454 18.0694 4.37494 18.0798C4.39579 18.1006 4.42474 18.1129 4.45572 18.1129H8.45365L8.49819 18.1046C8.51191 18.0989 8.52404 18.0902 8.53444 18.0798C8.54484 18.0694 8.55362 18.0572 8.5593 18.0435L8.56758 17.999V14.001C8.56754 13.9701 8.55529 13.9411 8.53444 13.9202C8.52404 13.9098 8.51191 13.9011 8.49819 13.8954L8.45365 13.8871H4.45572ZM14.001 13.8871C13.9701 13.8871 13.9411 13.8994 13.9202 13.9202C13.8994 13.9411 13.8871 13.9701 13.8871 14.001V17.999L13.8954 18.0435C13.9011 18.0572 13.9098 18.0694 13.9202 18.0798C13.9411 18.1006 13.9701 18.1129 14.001 18.1129H17.999L18.0435 18.1046C18.0572 18.0989 18.0694 18.0902 18.0798 18.0798C18.0902 18.0694 18.0989 18.0572 18.1046 18.0435L18.1129 17.999V14.001C18.1129 13.9701 18.1006 13.9411 18.0798 13.9202C18.0694 13.9098 18.0572 13.9011 18.0435 13.8954L17.999 13.8871H14.001ZM23.5463 13.8871C23.5154 13.8871 23.4864 13.8994 23.4656 13.9202C23.4447 13.9411 23.4325 13.9701 23.4324 14.001V17.999L23.4407 18.0435C23.4464 18.0572 23.4552 18.0694 23.4656 18.0798C23.4864 18.1006 23.5154 18.1129 23.5463 18.1129H27.5443L27.5888 18.1046C27.6025 18.0989 27.6147 18.0902 27.6251 18.0798C27.6355 18.0694 27.6442 18.0572 27.6499 18.0435L27.6582 17.999V14.001C27.6582 13.9701 27.6459 13.9411 27.6251 13.9202C27.6147 13.9098 27.6025 13.9011 27.5888 13.8954L27.5443 13.8871H23.5463ZM8.45365 2C9.10471 2.00005 9.72997 2.2582 10.1906 2.7188C10.6512 3.1794 10.9093 3.80466 10.9094 4.45572V8.45365C10.9093 9.10471 10.6512 9.72997 10.1906 10.1906C9.72997 10.6512 9.10471 10.9093 8.45365 10.9094H4.45572C3.80466 10.9093 3.1794 10.6512 2.7188 10.1906C2.2582 9.72997 2.00005 9.10471 2 8.45365V4.45572C2.00005 3.80466 2.2582 3.1794 2.7188 2.7188C3.1794 2.2582 3.80466 2.00005 4.45572 2H8.45365ZM17.999 2C18.65 2.00005 19.2753 2.2582 19.7359 2.7188C20.1965 3.1794 20.4546 3.80466 20.4547 4.45572V8.45365C20.4546 9.10471 20.1965 9.72997 19.7359 10.1906C19.2753 10.6512 18.65 10.9093 17.999 10.9094H14.001C13.35 10.9093 12.7247 10.6512 12.2641 10.1906C11.8035 9.72997 11.5454 9.10471 11.5453 8.45365V4.45572C11.5454 3.80466 11.8035 3.1794 12.2641 2.7188C12.7247 2.2582 13.35 2.00005 14.001 2H17.999ZM27.5443 2C28.1953 2.00005 28.8206 2.2582 29.2812 2.7188C29.7418 3.1794 30 3.80466 30 4.45572V8.45365C30 9.10471 29.7418 9.72997 29.2812 10.1906C28.8206 10.6512 28.1953 10.9093 27.5443 10.9094H23.5463C22.8953 10.9093 22.27 10.6512 21.8094 10.1906C21.3488 9.72997 21.0907 9.10471 21.0906 8.45365V4.45572C21.0907 3.80466 21.3488 3.1794 21.8094 2.7188C22.27 2.2582 22.8953 2.00005 23.5463 2H27.5443ZM4.45572 4.34179C4.42474 4.34183 4.39579 4.35408 4.37494 4.37494C4.35408 4.39579 4.34183 4.42474 4.34179 4.45572V8.45365L4.35008 8.49819C4.35575 8.51191 4.36454 8.52404 4.37494 8.53444C4.39579 8.55529 4.42474 8.56754 4.45572 8.56758H8.45365L8.49819 8.5593C8.51191 8.55362 8.52404 8.54484 8.53444 8.53444C8.54484 8.52404 8.55362 8.51191 8.5593 8.49819L8.56758 8.45365V4.45572C8.56754 4.42474 8.55529 4.39579 8.53444 4.37494C8.52404 4.36454 8.51191 4.35575 8.49819 4.35008L8.45365 4.34179H4.45572ZM14.001 4.34179C13.9701 4.34183 13.9411 4.35408 13.9202 4.37494C13.8994 4.39579 13.8871 4.42474 13.8871 4.45572V8.45365L13.8954 8.49819C13.9011 8.51191 13.9098 8.52404 13.9202 8.53444C13.9411 8.55529 13.9701 8.56754 14.001 8.56758H17.999L18.0435 8.5593C18.0572 8.55362 18.0694 8.54484 18.0798 8.53444C18.0902 8.52404 18.0989 8.51191 18.1046 8.49819L18.1129 8.45365V4.45572C18.1129 4.42474 18.1006 4.39579 18.0798 4.37494C18.0694 4.36454 18.0572 4.35575 18.0435 4.35008L17.999 4.34179H14.001ZM23.5463 4.34179C23.5154 4.34183 23.4864 4.35408 23.4656 4.37494C23.4447 4.39579 23.4325 4.42474 23.4324 4.45572V8.45365L23.4407 8.49819C23.4464 8.51191 23.4552 8.52404 23.4656 8.53444C23.4864 8.55529 23.5154 8.56754 23.5463 8.56758H27.5443L27.5888 8.5593C27.6025 8.55362 27.6147 8.54484 27.6251 8.53444C27.6355 8.52404 27.6442 8.51191 27.6499 8.49819L27.6582 8.45365V4.45572C27.6582 4.42474 27.6459 4.39579 27.6251 4.37494C27.6147 4.36454 27.6025 4.35575 27.5888 4.35008L27.5443 4.34179H23.5463Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view3.active,
body .rdc-icon-svg.rdc-icon-view3-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.1543 22C8.64376 22.0001 9.11287 22.1949 9.45898 22.541C9.8051 22.8871 9.99988 23.3562 10 23.8457V28.1543C9.99988 28.6438 9.8051 29.1129 9.45898 29.459C9.11287 29.8051 8.64376 29.9999 8.1543 30H3.8457C3.35624 29.9999 2.88713 29.8051 2.54102 29.459C2.1949 29.1129 2.00012 28.6438 2 28.1543V23.8457C2.00012 23.3562 2.1949 22.8871 2.54102 22.541C2.88713 22.1949 3.35624 22.0001 3.8457 22H8.1543ZM18.1543 22C18.6438 22.0001 19.1129 22.1949 19.459 22.541C19.8051 22.8871 19.9999 23.3562 20 23.8457V28.1543C19.9999 28.6438 19.8051 29.1129 19.459 29.459C19.1129 29.8051 18.6438 29.9999 18.1543 30H13.8457C13.3562 29.9999 12.8871 29.8051 12.541 29.459C12.1949 29.1129 12.0001 28.6438 12 28.1543V23.8457C12.0001 23.3562 12.1949 22.8871 12.541 22.541C12.8871 22.1949 13.3562 22.0001 13.8457 22H18.1543ZM28.1543 22C28.6438 22.0001 29.1129 22.1949 29.459 22.541C29.8051 22.8871 29.9999 23.3562 30 23.8457V28.1543C29.9999 28.6438 29.8051 29.1129 29.459 29.459C29.1129 29.8051 28.6438 29.9999 28.1543 30H23.8457C23.3562 29.9999 22.8871 29.8051 22.541 29.459C22.1949 29.1129 22.0001 28.6438 22 28.1543V23.8457C22.0001 23.3562 22.1949 22.8871 22.541 22.541C22.8871 22.1949 23.3562 22.0001 23.8457 22H28.1543ZM8.1543 12C8.64376 12.0001 9.11287 12.1949 9.45898 12.541C9.8051 12.8871 9.99988 13.3562 10 13.8457V18.1543C9.99988 18.6438 9.8051 19.1129 9.45898 19.459C9.11287 19.8051 8.64376 19.9999 8.1543 20H3.8457C3.35624 19.9999 2.88713 19.8051 2.54102 19.459C2.1949 19.1129 2.00012 18.6438 2 18.1543V13.8457C2.00012 13.3562 2.1949 12.8871 2.54102 12.541C2.88713 12.1949 3.35624 12.0001 3.8457 12H8.1543ZM18.1543 12C18.6438 12.0001 19.1129 12.1949 19.459 12.541C19.8051 12.8871 19.9999 13.3562 20 13.8457V18.1543C19.9999 18.6438 19.8051 19.1129 19.459 19.459C19.1129 19.8051 18.6438 19.9999 18.1543 20H13.8457C13.3562 19.9999 12.8871 19.8051 12.541 19.459C12.1949 19.1129 12.0001 18.6438 12 18.1543V13.8457C12.0001 13.3562 12.1949 12.8871 12.541 12.541C12.8871 12.1949 13.3562 12.0001 13.8457 12H18.1543ZM28.1543 12C28.6438 12.0001 29.1129 12.1949 29.459 12.541C29.8051 12.8871 29.9999 13.3562 30 13.8457V18.1543C29.9999 18.6438 29.8051 19.1129 29.459 19.459C29.1129 19.8051 28.6438 19.9999 28.1543 20H23.8457C23.3562 19.9999 22.8871 19.8051 22.541 19.459C22.1949 19.1129 22.0001 18.6438 22 18.1543V13.8457C22.0001 13.3562 22.1949 12.8871 22.541 12.541C22.8871 12.1949 23.3562 12.0001 23.8457 12H28.1543ZM8.1543 2C8.64376 2.00012 9.11287 2.1949 9.45898 2.54102C9.8051 2.88713 9.99988 3.35624 10 3.8457V8.1543C9.99988 8.64376 9.8051 9.11287 9.45898 9.45898C9.11287 9.8051 8.64376 9.99988 8.1543 10H3.8457C3.35624 9.99988 2.88713 9.8051 2.54102 9.45898C2.1949 9.11287 2.00012 8.64376 2 8.1543V3.8457C2.00012 3.35624 2.1949 2.88713 2.54102 2.54102C2.88713 2.1949 3.35624 2.00012 3.8457 2H8.1543ZM18.1543 2C18.6438 2.00012 19.1129 2.1949 19.459 2.54102C19.8051 2.88713 19.9999 3.35624 20 3.8457V8.1543C19.9999 8.64376 19.8051 9.11287 19.459 9.45898C19.1129 9.8051 18.6438 9.99988 18.1543 10H13.8457C13.3562 9.99988 12.8871 9.8051 12.541 9.45898C12.1949 9.11287 12.0001 8.64376 12 8.1543V3.8457C12.0001 3.35624 12.1949 2.88713 12.541 2.54102C12.8871 2.1949 13.3562 2.00012 13.8457 2H18.1543ZM28.1543 2C28.6438 2.00012 29.1129 2.1949 29.459 2.54102C29.8051 2.88713 29.9999 3.35624 30 3.8457V8.1543C29.9999 8.64376 29.8051 9.11287 29.459 9.45898C29.1129 9.8051 28.6438 9.99988 28.1543 10H23.8457C23.3562 9.99988 22.8871 9.8051 22.541 9.45898C22.1949 9.11287 22.0001 8.64376 22 8.1543V3.8457C22.0001 3.35624 22.1949 2.88713 22.541 2.54102C22.8871 2.1949 23.3562 2.00012 23.8457 2H28.1543Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view4:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.08256 20.0311C6.61131 20.0311 7.11961 20.2371 7.49438 20.6056C7.86925 20.9744 8.08031 21.476 8.08031 21.9983V25.0329C8.08029 25.5551 7.86915 26.0558 7.49438 26.4245C7.11959 26.7932 6.6114 27 6.08256 27H2.99775C2.46891 27 1.96072 26.7932 1.58593 26.4245C1.21109 26.0558 1.00002 25.5551 1 25.0329V21.9983C1 21.476 1.21106 20.9744 1.58593 20.6056C1.96069 20.2371 2.46905 20.0311 2.99775 20.0311H6.08256ZM13.7228 20.0311C14.2515 20.0312 14.7599 20.237 15.1346 20.6056C15.5095 20.9744 15.7196 21.476 15.7196 21.9983V25.0329C15.7195 25.555 15.5093 26.0558 15.1346 26.4245C14.7599 26.7932 14.2515 26.9999 13.7228 27H10.637C10.1084 26.9999 9.60081 26.793 9.22615 26.4245C8.8513 26.0558 8.64024 25.5551 8.64022 25.0329V21.9983C8.64022 21.476 8.85128 20.9744 9.22615 20.6056C9.60078 20.2373 10.1085 20.0312 10.637 20.0311H13.7228ZM21.363 20.0311C21.8915 20.0312 22.3992 20.2373 22.7739 20.6056C23.1487 20.9744 23.3598 21.476 23.3598 21.9983V25.0329C23.3598 25.5551 23.1487 26.0558 22.7739 26.4245C22.3992 26.793 21.8916 26.9999 21.363 27H18.2772C17.7485 26.9999 17.2401 26.7932 16.8654 26.4245C16.4907 26.0558 16.2805 25.555 16.2804 25.0329V21.9983C16.2804 21.476 16.4905 20.9744 16.8654 20.6056C17.2401 20.237 17.7485 20.0312 18.2772 20.0311H21.363ZM29.0022 20.0311C29.5309 20.0311 30.0393 20.2371 30.4141 20.6056C30.7889 20.9744 31 21.476 31 21.9983V25.0329C31 25.5551 30.7889 26.0558 30.4141 26.4245C30.0393 26.7932 29.5311 27 29.0022 27H25.9174C25.3886 27 24.8804 26.7932 24.5056 26.4245C24.1308 26.0558 23.9197 25.5551 23.9197 25.0329V21.9983C23.9197 21.476 24.1308 20.9744 24.5056 20.6056C24.8804 20.2371 25.3887 20.0311 25.9174 20.0311H29.0022ZM3.01124 25.0175H6.06907V22.0136H3.01124V25.0175ZM10.6515 25.0175H13.7093V22.0136H10.6515V25.0175ZM18.2907 25.0175H21.3485V22.0136H18.2907V25.0175ZM25.9309 25.0175H28.9888V22.0136H25.9309V25.0175ZM6.08256 12.5156C6.6114 12.5156 7.11959 12.7224 7.49438 13.091C7.86912 13.4598 8.08031 13.9605 8.08031 14.4827V17.5173C8.08031 18.0395 7.86912 18.5402 7.49438 18.909C7.11959 19.2776 6.6114 19.4844 6.08256 19.4844H2.99775C2.46891 19.4844 1.96072 19.2776 1.58593 18.909C1.21112 18.5402 1 18.0396 1 17.5173V14.4827C1 13.9605 1.21112 13.4598 1.58593 13.091C1.96072 12.7224 2.46891 12.5156 2.99775 12.5156H6.08256ZM13.7228 12.5156C14.2515 12.5156 14.7599 12.7224 15.1346 13.091C15.5093 13.4598 15.7196 13.9606 15.7196 14.4827V17.5173C15.7196 18.0394 15.5093 18.5402 15.1346 18.909C14.7599 19.2776 14.2515 19.4844 13.7228 19.4844H10.637C10.1083 19.4843 9.60082 19.2775 9.22615 18.909C8.85128 18.5402 8.64022 18.0396 8.64022 17.5173V14.4827C8.64022 13.9604 8.85128 13.4598 9.22615 13.091C9.60082 12.7225 10.1083 12.5157 10.637 12.5156H13.7228ZM21.363 12.5156C21.8917 12.5157 22.3992 12.7225 22.7739 13.091C23.1487 13.4598 23.3598 13.9604 23.3598 14.4827V17.5173C23.3598 18.0396 23.1487 18.5402 22.7739 18.909C22.3992 19.2775 21.8917 19.4843 21.363 19.4844H18.2772C17.7485 19.4844 17.2401 19.2776 16.8654 18.909C16.4907 18.5402 16.2804 18.0394 16.2804 17.5173V14.4827C16.2804 13.9606 16.4907 13.4598 16.8654 13.091C17.2401 12.7224 17.7485 12.5156 18.2772 12.5156H21.363ZM29.0022 12.5156C29.5311 12.5156 30.0393 12.7224 30.4141 13.091C30.7889 13.4598 31 13.9605 31 14.4827V17.5173C31 18.0395 30.7889 18.5402 30.4141 18.909C30.0393 19.2776 29.5311 19.4844 29.0022 19.4844H25.9174C25.3886 19.4844 24.8804 19.2776 24.5056 18.909C24.1309 18.5402 23.9197 18.0395 23.9197 17.5173V14.4827C23.9197 13.9605 24.1309 13.4598 24.5056 13.091C24.8804 12.7224 25.3886 12.5156 25.9174 12.5156H29.0022ZM3.01124 17.502H6.06907V14.498H3.01124V17.502ZM10.6515 17.502H13.7093V14.498H10.6515V17.502ZM18.2907 17.502H21.3485V14.498H18.2907V17.502ZM25.9309 17.502H28.9888V14.498H25.9309V17.502ZM6.08256 5C6.6114 5 7.11959 5.20679 7.49438 5.57546C7.86915 5.94419 8.08029 6.44493 8.08031 6.96713V10.0017C8.08031 10.524 7.86925 11.0256 7.49438 11.3944C7.11961 11.7629 6.61131 11.9689 6.08256 11.9689H2.99775C2.46905 11.9689 1.96069 11.7629 1.58593 11.3944C1.21106 11.0256 1 10.524 1 10.0017V6.96713C1.00002 6.44488 1.21109 5.9442 1.58593 5.57546C1.96072 5.20679 2.46891 5 2.99775 5H6.08256ZM13.7228 5C14.2515 5.00006 14.7599 5.20684 15.1346 5.57546C15.5093 5.94418 15.7195 6.44499 15.7196 6.96713V10.0017C15.7196 10.524 15.5095 11.0256 15.1346 11.3944C14.7599 11.763 14.2515 11.9688 13.7228 11.9689H10.637C10.1085 11.9688 9.60078 11.7627 9.22615 11.3944C8.85128 11.0256 8.64022 10.524 8.64022 10.0017V6.96713C8.64024 6.44487 8.8513 5.9442 9.22615 5.57546C9.60081 5.20697 10.1084 5.00012 10.637 5H13.7228ZM21.363 5C21.8916 5.00012 22.3992 5.20697 22.7739 5.57546C23.1487 5.9442 23.3598 6.44487 23.3598 6.96713V10.0017C23.3598 10.524 23.1487 11.0256 22.7739 11.3944C22.3992 11.7627 21.8915 11.9688 21.363 11.9689H18.2772C17.7485 11.9688 17.2401 11.763 16.8654 11.3944C16.4905 11.0256 16.2804 10.524 16.2804 10.0017V6.96713C16.2805 6.44499 16.4907 5.94418 16.8654 5.57546C17.2401 5.20684 17.7485 5.00006 18.2772 5H21.363ZM29.0022 5C29.5311 5 30.0393 5.20679 30.4141 5.57546C30.7889 5.9442 31 6.44488 31 6.96713V10.0017C31 10.524 30.7889 11.0256 30.4141 11.3944C30.0393 11.7629 29.5309 11.9689 29.0022 11.9689H25.9174C25.3887 11.9689 24.8804 11.7629 24.5056 11.3944C24.1308 11.0256 23.9197 10.524 23.9197 10.0017V6.96713C23.9197 6.44493 24.1308 5.94419 24.5056 5.57546C24.8804 5.20679 25.3886 5 25.9174 5H29.0022ZM3.01124 9.9864H6.06907V6.98247H3.01124V9.9864ZM10.6515 9.9864H13.7093V6.98247H10.6515V9.9864ZM18.2907 9.9864H21.3485V6.98247H18.2907V9.9864ZM25.9309 9.9864H28.9888V6.98247H25.9309V9.9864Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view4.active,
body .rdc-icon-svg.rdc-icon-view4-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.61523 21C5.98246 21 6.33506 21.1456 6.59473 21.4053C6.85439 21.6649 7 22.0175 7 22.3848V25.6152C7 25.9825 6.85439 26.3351 6.59473 26.5947C6.33506 26.8544 5.98246 27 5.61523 27H2.38477C2.01754 27 1.66494 26.8544 1.40527 26.5947C1.14561 26.3351 1 25.9825 1 25.6152V22.3848C1 22.0175 1.14561 21.6649 1.40527 21.4053C1.66494 21.1456 2.01754 21 2.38477 21H5.61523ZM13.6152 21C13.9825 21 14.3351 21.1456 14.5947 21.4053C14.8544 21.6649 15 22.0175 15 22.3848V25.6152C15 25.9825 14.8544 26.3351 14.5947 26.5947C14.3351 26.8544 13.9825 27 13.6152 27H10.3848C10.0175 27 9.66494 26.8544 9.40527 26.5947C9.14561 26.3351 9 25.9825 9 25.6152V22.3848C9 22.0175 9.14561 21.6649 9.40527 21.4053C9.66494 21.1456 10.0175 21 10.3848 21H13.6152ZM21.6152 21C21.9825 21 22.3351 21.1456 22.5947 21.4053C22.8544 21.6649 23 22.0175 23 22.3848V25.6152C23 25.9825 22.8544 26.3351 22.5947 26.5947C22.3351 26.8544 21.9825 27 21.6152 27H18.3848C18.0175 27 17.6649 26.8544 17.4053 26.5947C17.1456 26.3351 17 25.9825 17 25.6152V22.3848C17 22.0175 17.1456 21.6649 17.4053 21.4053C17.6649 21.1456 18.0175 21 18.3848 21H21.6152ZM29.6152 21C29.9825 21 30.3351 21.1456 30.5947 21.4053C30.8544 21.6649 31 22.0175 31 22.3848V25.6152C31 25.9825 30.8544 26.3351 30.5947 26.5947C30.3351 26.8544 29.9825 27 29.6152 27H26.3848C26.0175 27 25.6649 26.8544 25.4053 26.5947C25.1456 26.3351 25 25.9825 25 25.6152V22.3848C25 22.0175 25.1456 21.6649 25.4053 21.4053C25.6649 21.1456 26.0175 21 26.3848 21H29.6152ZM5.61523 13C5.98246 13 6.33506 13.1456 6.59473 13.4053C6.85439 13.6649 7 14.0175 7 14.3848V17.6152C7 17.9825 6.85439 18.3351 6.59473 18.5947C6.33506 18.8544 5.98246 19 5.61523 19H2.38477C2.01754 19 1.66494 18.8544 1.40527 18.5947C1.14561 18.3351 1 17.9825 1 17.6152V14.3848C1 14.0175 1.14561 13.6649 1.40527 13.4053C1.66494 13.1456 2.01754 13 2.38477 13H5.61523ZM13.6152 13C13.9825 13 14.3351 13.1456 14.5947 13.4053C14.8544 13.6649 15 14.0175 15 14.3848V17.6152C15 17.9825 14.8544 18.3351 14.5947 18.5947C14.3351 18.8544 13.9825 19 13.6152 19H10.3848C10.0175 19 9.66494 18.8544 9.40527 18.5947C9.14561 18.3351 9 17.9825 9 17.6152V14.3848C9 14.0175 9.14561 13.6649 9.40527 13.4053C9.66494 13.1456 10.0175 13 10.3848 13H13.6152ZM21.6152 13C21.9825 13 22.3351 13.1456 22.5947 13.4053C22.8544 13.6649 23 14.0175 23 14.3848V17.6152C23 17.9825 22.8544 18.3351 22.5947 18.5947C22.3351 18.8544 21.9825 19 21.6152 19H18.3848C18.0175 19 17.6649 18.8544 17.4053 18.5947C17.1456 18.3351 17 17.9825 17 17.6152V14.3848C17 14.0175 17.1456 13.6649 17.4053 13.4053C17.6649 13.1456 18.0175 13 18.3848 13H21.6152ZM29.6152 13C29.9825 13 30.3351 13.1456 30.5947 13.4053C30.8544 13.6649 31 14.0175 31 14.3848V17.6152C31 17.9825 30.8544 18.3351 30.5947 18.5947C30.3351 18.8544 29.9825 19 29.6152 19H26.3848C26.0175 19 25.6649 18.8544 25.4053 18.5947C25.1456 18.3351 25 17.9825 25 17.6152V14.3848C25 14.0175 25.1456 13.6649 25.4053 13.4053C25.6649 13.1456 26.0175 13 26.3848 13H29.6152ZM5.61523 5C5.98246 5 6.33506 5.14561 6.59473 5.40527C6.85439 5.66494 7 6.01754 7 6.38477V9.61523C7 9.98246 6.85439 10.3351 6.59473 10.5947C6.33506 10.8544 5.98246 11 5.61523 11H2.38477C2.01754 11 1.66494 10.8544 1.40527 10.5947C1.14561 10.3351 1 9.98246 1 9.61523V6.38477C1 6.01754 1.14561 5.66494 1.40527 5.40527C1.66494 5.14561 2.01754 5 2.38477 5H5.61523ZM13.6152 5C13.9825 5 14.3351 5.14561 14.5947 5.40527C14.8544 5.66494 15 6.01754 15 6.38477V9.61523C15 9.98246 14.8544 10.3351 14.5947 10.5947C14.3351 10.8544 13.9825 11 13.6152 11H10.3848C10.0175 11 9.66494 10.8544 9.40527 10.5947C9.14561 10.3351 9 9.98246 9 9.61523V6.38477C9 6.01754 9.14561 5.66494 9.40527 5.40527C9.66494 5.14561 10.0175 5 10.3848 5H13.6152ZM21.6152 5C21.9825 5 22.3351 5.14561 22.5947 5.40527C22.8544 5.66494 23 6.01754 23 6.38477V9.61523C23 9.98246 22.8544 10.3351 22.5947 10.5947C22.3351 10.8544 21.9825 11 21.6152 11H18.3848C18.0175 11 17.6649 10.8544 17.4053 10.5947C17.1456 10.3351 17 9.98246 17 9.61523V6.38477C17 6.01754 17.1456 5.66494 17.4053 5.40527C17.6649 5.14561 18.0175 5 18.3848 5H21.6152ZM29.6152 5C29.9825 5 30.3351 5.14561 30.5947 5.40527C30.8544 5.66494 31 6.01754 31 6.38477V9.61523C31 9.98246 30.8544 10.3351 30.5947 10.5947C30.3351 10.8544 29.9825 11 29.6152 11H26.3848C26.0175 11 25.6649 10.8544 25.4053 10.5947C25.1456 10.3351 25 9.98246 25 9.61523V6.38477C25 6.01754 25.1456 5.66494 25.4053 5.40527C25.6649 5.14561 26.0175 5 26.3848 5H29.6152Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-view-list:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.42694 20.8564C8.89017 20.8564 9.3345 21.0395 9.66205 21.3655C9.9896 21.6914 10.1736 22.1336 10.1736 22.5946V25.2618C10.1736 25.7228 9.9896 26.165 9.66205 26.4909C9.3345 26.8169 8.89017 27 8.42694 27H5.74666C5.28343 27 4.8391 26.8169 4.51155 26.4909C4.184 26.165 4 25.7228 4 25.2618V22.5946C4 22.1336 4.184 21.6914 4.51155 21.3655C4.8391 21.0395 5.28343 20.8564 5.74666 20.8564H8.42694ZM5.76903 25.2396H8.40457V22.6168H5.76903V25.2396ZM27.044 22.9372C27.2975 22.9372 27.5406 23.0417 27.7199 23.2275C27.8992 23.4134 28 23.6654 28 23.9282C28 24.191 27.8992 24.443 27.7199 24.6289C27.5406 24.8147 27.2975 24.9192 27.044 24.9192H13.0221C12.7686 24.9192 12.5255 24.8147 12.3462 24.6289C12.1669 24.443 12.0661 24.191 12.0661 23.9282C12.0661 23.6654 12.1669 23.4134 12.3462 23.2275C12.5255 23.0417 12.7686 22.9372 13.0221 22.9372H27.044ZM8.42694 12.9282C8.89017 12.9282 9.3345 13.1113 9.66205 13.4373C9.9896 13.7632 10.1736 14.2054 10.1736 14.6664V17.3336C10.1736 17.7946 9.9896 18.2368 9.66205 18.5627C9.3345 18.8887 8.89017 19.0718 8.42694 19.0718H5.74666C5.28343 19.0718 4.8391 18.8887 4.51155 18.5627C4.184 18.2368 4 17.7946 4 17.3336V14.6664C4 14.2054 4.184 13.7632 4.51155 13.4373C4.8391 13.1113 5.28343 12.9282 5.74666 12.9282H8.42694ZM5.76903 17.3114H8.40457V14.6886H5.76903V17.3114ZM27.044 15.009C27.2975 15.009 27.5406 15.1135 27.7199 15.2993C27.8992 15.4852 28 15.7372 28 16C28 16.2628 27.8992 16.5148 27.7199 16.7007C27.5406 16.8865 27.2975 16.991 27.044 16.991H13.0221C12.7686 16.991 12.5255 16.8865 12.3462 16.7007C12.1669 16.5148 12.0661 16.2628 12.0661 16C12.0661 15.7372 12.1669 15.4852 12.3462 15.2993C12.5255 15.1135 12.7686 15.009 13.0221 15.009H27.044ZM8.42694 5C8.89017 5 9.3345 5.1831 9.66205 5.50906C9.9896 5.83502 10.1736 6.27719 10.1736 6.73817V9.40542C10.1736 9.86639 9.9896 10.3086 9.66205 10.6345C9.3345 10.9605 8.89017 11.1436 8.42694 11.1436H5.74666C5.28343 11.1436 4.8391 10.9605 4.51155 10.6345C4.184 10.3086 4 9.86639 4 9.40542V6.73817C4 6.27719 4.184 5.83502 4.51155 5.50906C4.8391 5.1831 5.28343 5 5.74666 5H8.42694ZM5.76903 9.38316H8.40457V6.76043H5.76903V9.38316ZM27.044 7.08077C27.2975 7.08078 27.5406 7.18526 27.7199 7.37111C27.8992 7.55696 28 7.80896 28 8.07179C28 8.33463 27.8992 8.58663 27.7199 8.77248C27.5406 8.95832 27.2975 9.06281 27.044 9.06282H13.0221C12.7686 9.06281 12.5255 8.95832 12.3462 8.77248C12.1669 8.58663 12.0661 8.33463 12.0661 8.07179C12.0661 7.80896 12.1669 7.55696 12.3462 7.37111C12.5255 7.18526 12.7686 7.08078 13.0221 7.08077H27.044Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-view-list.active,
body .rdc-icon-view-list-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.61523 21C8.98246 21 9.33506 21.1456 9.59473 21.4053C9.85439 21.6649 10 22.0175 10 22.3848V25.6152C10 25.9825 9.85439 26.3351 9.59473 26.5947C9.33506 26.8544 8.98246 27 8.61523 27H5.38477C5.01754 27 4.66494 26.8544 4.40527 26.5947C4.14561 26.3351 4 25.9825 4 25.6152V22.3848C4 22.0175 4.14561 21.6649 4.40527 21.4053C4.66494 21.1456 5.01754 21 5.38477 21H8.61523Z' fill='%23333333'/%3e%3cpath d='M27.04 23C27.2946 23 27.5387 23.1054 27.7188 23.293C27.8988 23.4805 28 23.7348 28 24C28 24.2652 27.8988 24.5195 27.7188 24.707C27.5387 24.8946 27.2946 25 27.04 25H12.96C12.7054 25 12.4613 24.8946 12.2812 24.707C12.1012 24.5195 12 24.2652 12 24C12 23.7348 12.1012 23.4805 12.2812 23.293C12.4613 23.1054 12.7054 23 12.96 23H27.04Z' fill='%23333333'/%3e%3cpath d='M8.61523 13C8.98246 13 9.33506 13.1456 9.59473 13.4053C9.85439 13.6649 10 14.0175 10 14.3848V17.6152C10 17.9825 9.85439 18.3351 9.59473 18.5947C9.33506 18.8544 8.98246 19 8.61523 19H5.38477C5.01754 19 4.66494 18.8544 4.40527 18.5947C4.14561 18.3351 4 17.9825 4 17.6152V14.3848C4 14.0175 4.14561 13.6649 4.40527 13.4053C4.66494 13.1456 5.01754 13 5.38477 13H8.61523Z' fill='%23333333'/%3e%3cpath d='M27.04 15C27.2946 15 27.5387 15.1054 27.7188 15.293C27.8988 15.4805 28 15.7348 28 16C28 16.2652 27.8988 16.5195 27.7188 16.707C27.5387 16.8946 27.2946 17 27.04 17H12.96C12.7054 17 12.4613 16.8946 12.2812 16.707C12.1012 16.5195 12 16.2652 12 16C12 15.7348 12.1012 15.4805 12.2812 15.293C12.4613 15.1054 12.7054 15 12.96 15H27.04Z' fill='%23333333'/%3e%3cpath d='M8.61523 5C8.98246 5 9.33506 5.14561 9.59473 5.40527C9.85439 5.66494 10 6.01754 10 6.38477V9.61523C10 9.98246 9.85439 10.3351 9.59473 10.5947C9.33506 10.8544 8.98246 11 8.61523 11H5.38477C5.01754 11 4.66494 10.8544 4.40527 10.5947C4.14561 10.3351 4 9.98246 4 9.61523V6.38477C4 6.01754 4.14561 5.66494 4.40527 5.40527C4.66494 5.14561 5.01754 5 5.38477 5H8.61523Z' fill='%23333333'/%3e%3cpath d='M27.04 7C27.2946 7.00001 27.5387 7.10544 27.7188 7.29297C27.8988 7.4805 28 7.73479 28 8C28 8.26521 27.8988 8.5195 27.7188 8.70703C27.5387 8.89456 27.2946 8.99999 27.04 9H12.96C12.7054 8.99999 12.4613 8.89456 12.2812 8.70703C12.1012 8.5195 12 8.26522 12 8C12 7.73479 12.1012 7.4805 12.2812 7.29297C12.4613 7.10544 12.7054 7.00001 12.96 7H27.04Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-address{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 16C27 18.9174 25.8411 21.7153 23.7782 23.7782C21.7153 25.8411 18.9174 27 16 27C13.0826 27 10.2847 25.8411 8.22183 23.7782C6.15893 21.7153 5 18.9174 5 16C5 13.0826 6.15893 10.2847 8.22183 8.22183C10.2847 6.15893 13.0826 5 16 5C18.9174 5 21.7153 6.15893 23.7782 8.22183C25.8411 10.2847 27 13.0826 27 16ZM30 16C30 19.713 28.525 23.274 25.8995 25.8995C23.274 28.525 19.713 30 16 30C12.287 30 8.72601 28.525 6.1005 25.8995C3.475 23.274 2 19.713 2 16C2 12.287 3.475 8.72601 6.1005 6.1005C8.72601 3.475 12.287 2 16 2C19.713 2 23.274 3.475 25.8995 6.1005C28.525 8.72601 30 12.287 30 16ZM17.82 20.606L12.022 22.216C11.7117 22.3025 11.384 22.3051 11.0724 22.2234C10.7608 22.1416 10.4765 21.9786 10.2487 21.7509C10.0208 21.5232 9.85748 21.2391 9.77549 20.9276C9.69349 20.6161 9.69574 20.2884 9.782 19.978L11.394 14.178C11.5788 13.513 11.9324 12.9072 12.4206 12.4193C12.9088 11.9315 13.5149 11.5783 14.18 11.394L19.98 9.784C20.2903 9.69746 20.618 9.69492 20.9296 9.77664C21.2412 9.85836 21.5255 10.0214 21.7533 10.2491C21.9812 10.4768 22.1445 10.7609 22.2265 11.0724C22.3085 11.3839 22.3063 11.7116 22.22 12.022L20.608 17.822C20.4234 18.4867 20.0701 19.0924 19.5822 19.5802C19.0944 20.0681 18.4887 20.4214 17.824 20.606M18 16C18 16.5304 17.7893 17.0391 17.4142 17.4142C17.0391 17.7893 16.5304 18 16 18C15.4696 18 14.9609 17.7893 14.5858 17.4142C14.2107 17.0391 14 16.5304 14 16C14 15.4696 14.2107 14.9609 14.5858 14.5858C14.9609 14.2107 15.4696 14 16 14C16.5304 14 17.0391 14.2107 17.4142 14.5858C17.7893 14.9609 18 15.4696 18 16Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-timer{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 16C27 18.9174 25.8411 21.7153 23.7782 23.7782C21.7153 25.8411 18.9174 27 16 27C13.0826 27 10.2847 25.8411 8.22183 23.7782C6.15893 21.7153 5 18.9174 5 16C5 13.0826 6.15893 10.2847 8.22183 8.22183C10.2847 6.15893 13.0826 5 16 5C18.9174 5 21.7153 6.15893 23.7782 8.22183C25.8411 10.2847 27 13.0826 27 16ZM30 16C30 19.713 28.525 23.274 25.8995 25.8995C23.274 28.525 19.713 30 16 30C12.287 30 8.72601 28.525 6.1005 25.8995C3.475 23.274 2 19.713 2 16C2 12.287 3.475 8.72601 6.1005 6.1005C8.72601 3.475 12.287 2 16 2C19.713 2 23.274 3.475 25.8995 6.1005C28.525 8.72601 30 12.287 30 16ZM17.5 9C17.5 8.60218 17.342 8.22064 17.0607 7.93934C16.7794 7.65804 16.3978 7.5 16 7.5C15.6022 7.5 15.2206 7.65804 14.9393 7.93934C14.658 8.22064 14.5 8.60218 14.5 9V16C14.5 16.2329 14.5542 16.4625 14.6584 16.6708C14.7625 16.8791 14.9137 17.0603 15.1 17.2L19.1 20.2C19.2576 20.3182 19.4369 20.4042 19.6277 20.4531C19.8186 20.502 20.0171 20.5128 20.2121 20.4849C20.4071 20.4571 20.5947 20.3911 20.7642 20.2907C20.9337 20.1904 21.0818 20.0576 21.2 19.9C21.3182 19.7424 21.4042 19.5631 21.4531 19.3723C21.502 19.1814 21.5128 18.9829 21.4849 18.7879C21.4571 18.5929 21.3911 18.4053 21.2907 18.2358C21.1904 18.0663 21.0576 17.9182 20.9 17.8L17.5 15.25V9Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping-express {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.6948 12.2656L17.1062 8.48225L18.4804 4.7997H11.3567C11.0915 4.80099 10.8326 4.88153 10.6131 5.03109C10.3935 5.18065 10.2231 5.39248 10.1237 5.63961L5.80974 16.4782C5.78971 16.5283 5.7822 16.5826 5.78787 16.6363C5.79355 16.69 5.81223 16.7414 5.84228 16.7862C5.87233 16.831 5.91284 16.8676 5.96027 16.893C6.00769 16.9184 6.06057 16.9317 6.1143 16.9318H15.3345L13.9752 20.689L11.9659 26.2417C11.9105 26.3958 11.9097 26.5644 11.9635 26.7191C12.0173 26.8738 12.1225 27.0051 12.2613 27.091C12.4002 27.1768 12.5642 27.212 12.7258 27.1906C12.8875 27.1692 13.0368 27.0925 13.1488 26.9734L26.0664 13.1783C26.1386 13.1014 26.1868 13.0049 26.205 12.9008C26.2233 12.7967 26.2108 12.6895 26.1691 12.5924C26.1275 12.4953 26.0584 12.4127 25.9705 12.3546C25.8826 12.2965 25.7798 12.2656 25.6746 12.2656H15.6948ZM20.7571 6.66617L21.1935 5.4959C21.3396 5.10459 21.3892 4.68352 21.3381 4.26874C21.2869 3.85395 21.1366 3.4578 20.8998 3.11419C20.6631 2.77057 20.347 2.48972 19.9787 2.29568C19.6104 2.10164 19.2008 2.00019 18.7849 2H11.3567C9.67426 2 8.16262 3.03029 7.5368 4.59999L3.22288 15.4386C3.0338 15.9135 2.96342 16.4278 3.01789 16.9364C3.07236 17.445 3.25004 17.9324 3.53535 18.3561C3.82067 18.7797 4.20494 19.1265 4.65453 19.3663C5.10412 19.6061 5.60533 19.7315 6.1143 19.7315H11.3567L10.3446 22.5312L9.34742 25.2842C9.07169 26.0444 9.06553 26.8769 9.32998 27.6412C9.59442 28.4054 10.1133 29.0544 10.7988 29.4786C11.4844 29.9028 12.2946 30.0761 13.0926 29.9692C13.8906 29.8624 14.6274 29.4819 15.1785 28.8921L28.0962 15.097C28.5411 14.6221 28.8379 14.0266 28.95 13.3841C29.0621 12.7416 28.9847 12.0801 28.7272 11.4813C28.4697 10.8826 28.0434 10.3726 27.501 10.0145C26.9585 9.65633 26.3236 9.46562 25.6746 9.46588H19.7135L20.7571 6.66617Z' fill='%23AAA39B'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-size-guide{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.9276 6.02879L23.0501 2.61136C22.2422 2.20967 21.3512 2.00036 20.4478 2H18.7459C18.5459 2.56506 18.1743 3.05448 17.6825 3.40071C17.1906 3.74693 16.6027 3.93287 16 3.93287C15.3973 3.93287 14.8094 3.74693 14.3175 3.40071C13.8257 3.05448 13.4541 2.56506 13.2541 2H11.5522C10.6488 2.00036 9.75782 2.20967 8.94986 2.61136L2.07242 6.02686C1.63704 6.2433 1.29942 6.61445 1.12652 7.06671C0.953621 7.51896 0.958075 8.01928 1.139 8.46843L3.65206 14.7112C3.84047 15.1796 4.20602 15.556 4.67035 15.7596C5.13468 15.9633 5.66083 15.9781 6.13601 15.8009L6.81715 15.5463L6.45232 24.9963C6.43249 25.5147 6.51808 26.0317 6.70398 26.5165C6.88988 27.0013 7.17227 27.4438 7.53426 27.8176C7.89624 28.1913 8.33037 28.4887 8.81068 28.6919C9.29099 28.8951 9.8076 28.9999 10.3296 29H21.6704C22.1926 28.9999 22.7093 28.895 23.1898 28.6917C23.6702 28.4884 24.1045 28.1909 24.4665 27.8169C24.8285 27.4429 25.1108 27.0002 25.2966 26.5152C25.4824 26.0302 25.5678 25.5129 25.5477 24.9944L25.1828 15.5463L25.8659 15.8009C26.3411 15.9781 26.8673 15.9633 27.3316 15.7596C27.7959 15.556 28.1615 15.1796 28.3499 14.7112L30.861 8.46843C31.0419 8.01928 31.0464 7.51896 30.8735 7.06671C30.7006 6.61445 30.363 6.24522 29.9276 6.02879ZM11.6609 4.89286H11.5522C11.1009 4.89289 10.6558 4.99721 10.252 5.19757L4.17019 8.21771L6.00016 12.7614L9.89298 11.3111L9.35932 25.1062C9.35436 25.2359 9.37578 25.3652 9.42232 25.4865C9.46885 25.6077 9.53954 25.7184 9.63014 25.8119C9.72074 25.9053 9.82939 25.9797 9.94958 26.0304C10.0698 26.0811 10.199 26.1072 10.3296 26.1071H21.6684C21.7992 26.1072 21.9286 26.0811 22.049 26.0302C22.1693 25.9794 22.278 25.9049 22.3686 25.8112C22.4593 25.7175 22.5299 25.6066 22.5763 25.4852C22.6227 25.3637 22.644 25.2341 22.6387 25.1043L22.1031 11.3111L25.996 12.7614L27.8259 8.21771L21.748 5.19757C21.3437 4.99691 20.8978 4.89259 20.4459 4.89286H20.3372C19.7914 5.49934 19.123 5.98459 18.3756 6.3169C17.6282 6.64922 16.8188 6.82114 16 6.82143C15.1809 6.82141 14.3711 6.64962 13.6234 6.3173C12.8756 5.98497 12.2069 5.49958 11.6609 4.89286Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-box-disabled{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27.8996 29L3 4.10042L4.10042 3L29 27.8996L27.8996 29Z' fill='%23FF4F4F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-gift{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.07 7.9951L18.434 5.47393C18.493 5.07276 18.6861 4.70259 18.9825 4.42228C19.279 4.14196 19.6617 3.96758 20.07 3.92685C20.5357 3.88254 21.0009 4.01633 21.3698 4.30068C21.7387 4.58503 21.9831 4.99828 22.0528 5.45535C22.1225 5.91241 22.0122 6.37848 21.7445 6.75759C21.4769 7.1367 21.0723 7.39999 20.614 7.49323L18.07 7.9951ZM14.5 11.2295V15.1812H6C5.73478 15.1812 5.48043 15.0771 5.29289 14.8919C5.10536 14.7066 5 14.4553 5 14.1933V12.2175C5 11.9554 5.10536 11.7042 5.29289 11.5189C5.48043 11.3336 5.73478 11.2295 6 11.2295H14.5ZM16 3.45265C15.6856 2.90106 15.2633 2.41677 14.7577 2.028C14.252 1.63922 13.6731 1.35373 13.0546 1.18816C12.4362 1.02258 11.7906 0.980219 11.1554 1.06355C10.5202 1.14688 9.9082 1.35423 9.35493 1.67353C8.80167 1.99283 8.31824 2.41769 7.93281 2.92336C7.54738 3.42904 7.26764 4.00543 7.1099 4.61896C6.95215 5.23249 6.91955 5.87089 7.014 6.49698C7.10844 7.12308 7.32804 7.72435 7.66 8.26579H6C4.93913 8.26579 3.92172 8.68212 3.17157 9.4232C2.42143 10.1643 2 11.1694 2 12.2175V14.1933C2.00002 14.8869 2.18485 15.5684 2.53592 16.1691C2.887 16.7698 3.39194 17.2686 4 17.6154V24.0725C4 25.6446 4.63214 27.1522 5.75736 28.2639C6.88258 29.3755 8.4087 30 10 30H22C23.5913 30 25.1174 29.3755 26.2426 28.2639C27.3679 27.1522 28 25.6446 28 24.0725V17.6154C28.6081 17.2686 29.113 16.7698 29.4641 16.1691C29.8151 15.5684 30 14.8869 30 14.1933V12.2175C30 11.1694 29.5786 10.1643 28.8284 9.4232C28.0783 8.68212 27.0609 8.26579 26 8.26579H24.34C24.6761 7.72422 24.8994 7.12181 24.9967 6.49388C25.094 5.86594 25.0635 5.22513 24.9068 4.60902C24.7501 3.99292 24.4705 3.41392 24.0843 2.90598C23.6981 2.39805 23.2132 1.97141 22.6579 1.65107C22.1026 1.33074 21.4882 1.12318 20.8506 1.04054C20.2131 0.957909 19.5652 1.00187 18.9451 1.16986C18.325 1.33785 17.745 1.62647 17.2393 2.01881C16.7336 2.41114 16.3122 2.89929 16 3.45462M17.5 11.7255V15.1812H26C26.2652 15.1812 26.5196 15.0771 26.7071 14.8919C26.8946 14.7066 27 14.4553 27 14.1933V12.2175C27 11.9554 26.8946 11.7042 26.7071 11.5189C26.5196 11.3336 26.2652 11.2295 26 11.2295H17.5V11.7255ZM14.5 18.145H7V24.0725C7 24.8585 7.31607 25.6124 7.87868 26.1682C8.44129 26.724 9.20435 27.0362 10 27.0362H14.5V18.145ZM17.5 27.0362V18.145H25V24.0725C25 24.8585 24.6839 25.6124 24.1213 26.1682C23.5587 26.724 22.7956 27.0362 22 27.0362H17.5ZM13.566 5.47393L13.93 7.9951L11.386 7.49323C10.9277 7.39999 10.5231 7.1367 10.2555 6.75759C9.98778 6.37848 9.87745 5.91241 9.94717 5.45535C10.0169 4.99828 10.2613 4.58503 10.6302 4.30068C10.9991 4.01633 11.4643 3.88254 11.93 3.92685C12.3383 3.96758 12.721 4.14196 13.0175 4.42228C13.3139 4.70259 13.507 5.07276 13.566 5.47393Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-filter{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 6.5C2 6.10218 2.15804 5.72064 2.43934 5.43934C2.72064 5.15804 3.10218 5 3.5 5H28.5C28.8978 5 29.2794 5.15804 29.5607 5.43934C29.842 5.72064 30 6.10218 30 6.5C30 6.89782 29.842 7.27936 29.5607 7.56066C29.2794 7.84196 28.8978 8 28.5 8H3.5C3.10218 8 2.72064 7.84196 2.43934 7.56066C2.15804 7.27936 2 6.89782 2 6.5ZM6 16C6 15.6022 6.15804 15.2206 6.43934 14.9393C6.72064 14.658 7.10218 14.5 7.5 14.5H24.5C24.8978 14.5 25.2794 14.658 25.5607 14.9393C25.842 15.2206 26 15.6022 26 16C26 16.3978 25.842 16.7794 25.5607 17.0607C25.2794 17.342 24.8978 17.5 24.5 17.5H7.5C7.10218 17.5 6.72064 17.342 6.43934 17.0607C6.15804 16.7794 6 16.3978 6 16ZM13.5 24C13.1022 24 12.7206 24.158 12.4393 24.4393C12.158 24.7206 12 25.1022 12 25.5C12 25.8978 12.158 26.2794 12.4393 26.5607C12.7206 26.842 13.1022 27 13.5 27H18.5C18.8978 27 19.2794 26.842 19.5607 26.5607C19.842 26.2794 20 25.8978 20 25.5C20 25.1022 19.842 24.7206 19.5607 24.4393C19.2794 24.158 18.8978 24 18.5 24H13.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-order{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.0002 16.9997C21.2045 16.9997 20.4414 17.3157 19.8788 17.8781C19.3162 18.4406 19.0001 19.2034 19.0001 19.9989C19.0001 20.7943 19.3162 21.5571 19.8788 22.1196C20.4414 22.682 21.2045 22.998 22.0002 22.998C22.7958 22.998 23.5589 22.682 24.1215 22.1196C24.6841 21.5571 25.0002 20.7943 25.0002 19.9989C25.0002 19.2034 24.6841 18.4406 24.1215 17.8781C23.5589 17.3157 22.7958 16.9997 22.0002 16.9997ZM20.5002 14.1885C19.2121 14.5214 18.0712 15.2726 17.2567 16.3241C16.4422 17.3756 16.0002 18.6679 16.0002 19.9979C16.0002 21.3278 16.4422 22.6201 17.2567 23.6716C18.0712 24.7232 19.2121 25.4744 20.5002 25.8072V28.5004C20.5002 28.8981 20.6582 29.2796 20.9395 29.5608C21.2208 29.842 21.6023 30 22.0002 30C22.398 30 22.7795 29.842 23.0608 29.5608C23.3421 29.2796 23.5002 28.8981 23.5002 28.5004V25.8072C24.7882 25.4744 25.9291 24.7232 26.7436 23.6716C27.5581 22.6201 28.0001 21.3278 28.0001 19.9979C28.0001 18.6679 27.5581 17.3756 26.7436 16.3241C25.9291 15.2726 24.7882 14.5214 23.5002 14.1885V3.50157C23.5002 3.10386 23.3421 2.72244 23.0608 2.44121C22.7795 2.15999 22.398 2.002 22.0002 2.002C21.6023 2.002 21.2208 2.15999 20.9395 2.44121C20.6582 2.72244 20.5002 3.10386 20.5002 3.50157V14.1885ZM11.5001 28.5004V17.8135C12.7872 17.48 13.9271 16.7286 14.7409 15.6773C15.5546 14.6261 15.9962 13.3344 15.9962 12.0051C15.9962 10.6759 15.5546 9.38422 14.7409 8.33296C13.9271 7.28169 12.7872 6.53033 11.5001 6.1968V3.49957C11.5001 3.10186 11.3421 2.72044 11.0607 2.43921C10.7794 2.15799 10.3979 2 10.0001 2C9.60225 2 9.22071 2.15799 8.93941 2.43921C8.6581 2.72044 8.50006 3.10186 8.50006 3.49957V6.1928C7.21205 6.52564 6.07115 7.27685 5.25663 8.32838C4.44211 9.37992 4.00012 10.6722 4.00012 12.0021C4.00012 13.3321 4.44211 14.6244 5.25663 15.6759C6.07115 16.7274 7.21205 17.4786 8.50006 17.8115V28.4984C8.50006 28.8961 8.6581 29.2776 8.93941 29.5588C9.22071 29.84 9.60225 29.998 10.0001 29.998C10.3979 29.998 10.7794 29.84 11.0607 29.5588C11.3421 29.2776 11.5001 28.8961 11.5001 28.4984M13.0001 12.0031C13.0001 12.7986 12.684 13.5614 12.1214 14.1239C11.5588 14.6863 10.7957 15.0023 10.0001 15.0023C9.20442 15.0023 8.44135 14.6863 7.87874 14.1239C7.31613 13.5614 7.00005 12.7986 7.00005 12.0031C7.00005 11.2077 7.31613 10.4449 7.87874 9.88243C8.44135 9.31998 9.20442 9.004 10.0001 9.004C10.7957 9.004 11.5588 9.31998 12.1214 9.88243C12.684 10.4449 13.0001 11.2077 13.0001 12.0031Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info-size {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 27C18.9174 27 21.7153 25.8411 23.7782 23.7782C25.8411 21.7153 27 18.9174 27 16C27 13.0826 25.8411 10.2847 23.7782 8.22183C21.7153 6.15893 18.9174 5 16 5C13.0826 5 10.2847 6.15893 8.22183 8.22183C6.15893 10.2847 5 13.0826 5 16C5 18.9174 6.15893 21.7153 8.22183 23.7782C10.2847 25.8411 13.0826 27 16 27ZM16 30C19.713 30 23.274 28.525 25.8995 25.8995C28.525 23.274 30 19.713 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2C12.287 2 8.72601 3.475 6.1005 6.1005C3.475 8.72601 2 12.287 2 16C2 19.713 3.475 23.274 6.1005 25.8995C8.72601 28.525 12.287 30 16 30ZM18 11C18 11.5304 17.7893 12.0391 17.4142 12.4142C17.0391 12.7893 16.5304 13 16 13C15.4696 13 14.9609 12.7893 14.5858 12.4142C14.2107 12.0391 14 11.5304 14 11C14 10.4696 14.2107 9.96086 14.5858 9.58579C14.9609 9.21071 15.4696 9 16 9C16.5304 9 17.0391 9.21071 17.4142 9.58579C17.7893 9.96086 18 10.4696 18 11ZM17.5 17C17.5 16.6022 17.342 16.2206 17.0607 15.9393C16.7794 15.658 16.3978 15.5 16 15.5C15.6022 15.5 15.2206 15.658 14.9393 15.9393C14.658 16.2206 14.5 16.6022 14.5 17V22C14.5 22.3978 14.658 22.7794 14.9393 23.0607C15.2206 23.342 15.6022 23.5 16 23.5C16.3978 23.5 16.7794 23.342 17.0607 23.0607C17.342 22.7794 17.5 22.3978 17.5 22V17Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-stockalert {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.0625 3.5H10.9375C11.1562 3.5 11.3619 3.5525 11.543 3.64788L7.65625 6.5625C7.46693 6.70449 7.23665 6.78125 7 6.78125C6.76335 6.78125 6.53307 6.70449 6.34375 6.5625L2.457 3.64788C2.63813 3.5525 2.84462 3.5 3.0625 3.5ZM1.75087 4.75825L1.75 4.8125V9.1875C1.75 9.5356 1.88828 9.86944 2.13442 10.1156C2.38056 10.3617 2.7144 10.5 3.0625 10.5H10.9375C11.2856 10.5 11.6194 10.3617 11.8656 10.1156C12.1117 9.86944 12.25 9.5356 12.25 9.1875V4.8125L12.2491 4.75825L8.44375 7.6125C8.02724 7.92488 7.52064 8.09375 7 8.09375C6.47936 8.09375 5.97276 7.92488 5.55625 7.6125L1.75087 4.75825ZM0.4375 4.8125C0.4375 4.11631 0.714062 3.44863 1.20634 2.95634C1.69863 2.46406 2.36631 2.1875 3.0625 2.1875H10.9375C11.6337 2.1875 12.3014 2.46406 12.7937 2.95634C13.2859 3.44863 13.5625 4.11631 13.5625 4.8125V9.1875C13.5625 9.88369 13.2859 10.5514 12.7937 11.0437C12.3014 11.5359 11.6337 11.8125 10.9375 11.8125H3.0625C2.36631 11.8125 1.69863 11.5359 1.20634 11.0437C0.714062 10.5514 0.4375 9.88369 0.4375 9.1875V4.8125Z' fill='%23666666'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-return2 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.5234 10.0226C25.7879 9.73823 25.9319 9.36214 25.9251 8.97354C25.9182 8.58494 25.7611 8.21417 25.4868 7.93934C25.2124 7.66451 24.8423 7.50709 24.4544 7.50023C24.0665 7.49338 23.6911 7.63762 23.4073 7.90258L16.4199 14.9026C16.1395 15.1838 15.982 15.5651 15.982 15.9626C15.982 16.3601 16.1395 16.7413 16.4199 17.0226L23.4073 24.0226C23.5443 24.17 23.7096 24.2882 23.8933 24.3701C24.077 24.4521 24.2752 24.4962 24.4763 24.4998C24.6773 24.5033 24.877 24.4663 25.0635 24.3908C25.2499 24.3154 25.4193 24.2031 25.5615 24.0607C25.7036 23.9182 25.8157 23.7486 25.891 23.5618C25.9663 23.375 26.0033 23.1749 25.9998 22.9735C25.9962 22.7721 25.9522 22.5735 25.8704 22.3895C25.7885 22.2055 25.6706 22.0399 25.5234 21.9026L19.5941 15.9626L25.5234 10.0226ZM15.5415 10.0226C15.8059 9.73823 15.9499 9.36214 15.9431 8.97354C15.9362 8.58494 15.7791 8.21417 15.5048 7.93934C15.2304 7.66451 14.8603 7.50709 14.4724 7.50023C14.0845 7.49338 13.7091 7.63762 13.4253 7.90258L6.43789 14.9026C6.15749 15.1838 6 15.5651 6 15.9626C6 16.3601 6.15749 16.7413 6.43789 17.0226L13.4253 24.0226C13.7091 24.2875 14.0845 24.4318 14.4724 24.4249C14.8603 24.4181 15.2304 24.2607 15.5048 23.9858C15.7791 23.711 15.9362 23.3402 15.9431 22.9516C15.9499 22.563 15.8059 22.1869 15.5415 21.9026L9.61216 15.9626L15.5415 10.0226Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-return1 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.524 6.43793C26.8041 6.7187 26.9614 7.09929 26.9614 7.49611C26.9614 7.89293 26.8041 8.27352 26.524 8.55429L18.6078 16.4807L26.524 24.407C26.6709 24.5441 26.7888 24.7094 26.8705 24.8931C26.9523 25.0768 26.9962 25.2751 26.9998 25.4762C27.0033 25.6772 26.9664 25.8769 26.8912 26.0634C26.8159 26.2498 26.704 26.4192 26.562 26.5614C26.42 26.7036 26.2508 26.8157 26.0646 26.891C25.8784 26.9663 25.6789 27.0033 25.4781 26.9998C25.2773 26.9962 25.0793 26.9522 24.8958 26.8704C24.7124 26.7885 24.5473 26.6705 24.4104 26.5234L15.4374 17.5388C15.1573 17.2581 15 16.8775 15 16.4807C15 16.0838 15.1573 15.7033 15.4374 15.4225L24.4104 6.43793C24.6908 6.15751 25.0709 6 25.4672 6C25.8635 6 26.2436 6.15751 26.524 6.43793Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-edit {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.968 2C24.833 2 26.6216 2.74087 27.9404 4.05963C29.2591 5.37839 30 7.16702 30 9.03202C30 9.56282 29.7877 10.074 29.4102 10.4514L28.3722 11.4914L24.4974 15.3662L14.552 25.3116C13.7285 26.1347 12.6799 26.6956 11.5382 26.9237L6.35219 27.9617C6.03473 28.0253 5.70647 28.0095 5.39658 27.9158C5.08668 27.822 4.80474 27.6531 4.5758 27.4242C4.34686 27.1953 4.17801 26.9133 4.08424 26.6034C3.99048 26.2935 3.97471 25.9653 4.03833 25.6478L5.07632 20.4618C5.30443 19.3201 5.86533 18.2715 6.68836 17.448L16.6338 7.50255L21.5486 2.5878C21.9241 2.21232 22.4352 2 22.968 2ZM18.4267 9.88129L8.77418 19.5339C8.36283 19.9453 8.0824 20.4693 7.96816 21.0397L7.22112 24.7808L10.9603 24.0338C11.5314 23.9199 12.0561 23.6395 12.4681 23.2278L22.1207 13.5752C22.0329 12.6246 21.6153 11.7347 20.9403 11.0597C20.2653 10.3847 19.3754 9.96708 18.4248 9.87933M24.5151 11.1729C23.8004 9.51593 22.4798 8.19456 20.8232 7.47896L23.3395 4.96261C25.2956 5.13954 26.8546 6.70047 27.0315 8.6585L24.5151 11.1729Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-navigation-left {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M29.5006 15.9997C29.5006 16.3975 29.3426 16.779 29.0613 17.0604C28.78 17.3417 28.3985 17.4997 28.0006 17.4997H7.62063L13.0606 22.9397C13.208 23.077 13.3262 23.2426 13.4082 23.4266C13.4902 23.6106 13.5343 23.8092 13.5378 24.0106C13.5414 24.2121 13.5043 24.4121 13.4289 24.5989C13.3534 24.7857 13.2411 24.9553 13.0987 25.0978C12.9563 25.2402 12.7866 25.3525 12.5998 25.4279C12.4131 25.5034 12.213 25.5404 12.0116 25.5369C11.8102 25.5333 11.6116 25.4892 11.4276 25.4073C11.2436 25.3253 11.078 25.2071 10.9406 25.0597L2.94063 17.0597C2.65973 16.7784 2.50195 16.3972 2.50195 15.9997C2.50195 15.6022 2.65973 15.2209 2.94063 14.9397L10.9406 6.93969C11.225 6.67473 11.6011 6.53049 11.9897 6.53734C12.3783 6.5442 12.7491 6.70162 13.0239 6.97645C13.2987 7.25128 13.4561 7.62205 13.463 8.01065C13.4698 8.39925 13.3256 8.77534 13.0606 9.05969L7.62063 14.4997H28.0006C28.3985 14.4997 28.78 14.6577 29.0613 14.939C29.3426 15.2203 29.5006 15.6019 29.5006 15.9997Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-navigation-right {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.5 15.9997C2.5 15.6019 2.65804 15.2203 2.93934 14.939C3.22064 14.6577 3.60218 14.4997 4 14.4997H24.38L18.94 9.05969C18.675 8.77534 18.5308 8.39925 18.5376 8.01065C18.5445 7.62205 18.7019 7.25128 18.9768 6.97645C19.2516 6.70162 19.6224 6.5442 20.011 6.53734C20.3996 6.53049 20.7757 6.67473 21.06 6.93969L29.06 14.9397C29.3409 15.2209 29.4987 15.6022 29.4987 15.9997C29.4987 16.3972 29.3409 16.7784 29.06 17.0597L21.06 25.0597C20.9227 25.2071 20.7571 25.3253 20.5731 25.4073C20.3891 25.4892 20.1905 25.5333 19.989 25.5369C19.7876 25.5404 19.5876 25.5034 19.4008 25.4279C19.214 25.3525 19.0444 25.2402 18.9019 25.0978C18.7595 24.9553 18.6472 24.7857 18.5718 24.5989C18.4963 24.4121 18.4593 24.2121 18.4628 24.0106C18.4664 23.8092 18.5105 23.6106 18.5924 23.4266C18.6744 23.2426 18.7926 23.077 18.94 22.9397L24.38 17.4997H4C3.60218 17.4997 3.22064 17.3417 2.93934 17.0604C2.65804 16.779 2.5 16.3975 2.5 15.9997Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-360 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53946 16.7909C11.1826 16.7909 12.2175 15.8249 12.2175 14.4389C12.2175 13.515 11.716 12.8115 10.8091 12.5175C11.4173 12.2025 11.8334 11.667 11.8334 10.9635C11.8334 9.79799 10.9478 9 9.57146 9C8.1951 9 7.32021 9.85049 7.2882 11.016H8.51519C8.5792 10.428 8.98464 10.092 9.53946 10.092C10.0729 10.092 10.5104 10.386 10.521 11.0055C10.521 11.8035 9.85954 12.0555 9.01665 12.0555V13.1055H9.3154C10.1903 13.1055 10.8731 13.4835 10.8731 14.3969C10.8731 15.1109 10.3717 15.6884 9.57146 15.6884C8.73925 15.6884 8.3018 15.2054 8.21644 14.4914H6.91477C7.01079 15.7934 7.92837 16.7909 9.53946 16.7909ZM16.0065 16.8014C17.5749 16.8014 18.6632 15.7304 18.6632 14.2395C18.6632 12.7485 17.6923 11.751 16.2519 11.751C15.3877 11.751 14.8435 12.0975 14.5448 12.4125H14.5234C14.5554 11.163 14.9929 10.113 16.0812 10.113C16.796 10.113 17.1695 10.596 17.2442 11.079H18.5565C18.3965 9.86099 17.5322 9 16.0919 9C14.15 9 13.2324 10.5435 13.2324 13.2105C13.2324 15.5099 14.1607 16.8014 16.0065 16.8014ZM15.9958 15.6359C15.2063 15.6359 14.6301 15.0584 14.6301 14.2185C14.6301 13.389 15.217 12.8115 15.9852 12.8115C16.7534 12.8115 17.3402 13.4205 17.3402 14.2395C17.3402 15.0374 16.7534 15.6359 15.9958 15.6359ZM25.1121 12.9165C25.1121 15.1214 24.5786 16.8119 22.4234 16.8119C20.2681 16.8119 19.7346 15.1214 19.7346 12.9165C19.7346 10.9215 20.2041 9 22.4234 9C24.6426 9 25.1121 10.9215 25.1121 12.9165ZM21.1537 12.9165C21.1537 14.5229 21.3991 15.6884 22.4234 15.6884C23.4583 15.6884 23.693 14.5229 23.693 12.9165C23.693 11.436 23.501 10.1655 22.4234 10.1655C21.3457 10.1655 21.1537 11.436 21.1537 12.9165ZM27.8904 12.4545C28.8933 12.4545 29.6615 11.709 29.6615 10.7325C29.6615 9.75599 28.8933 9 27.8904 9C26.8875 9 26.1086 9.75599 26.1086 10.7325C26.1086 11.709 26.8875 12.4545 27.8904 12.4545ZM27.8904 11.5515C27.4209 11.5515 27.0475 11.1945 27.0475 10.7325C27.0475 10.26 27.4209 9.90299 27.8904 9.90299C28.3492 9.90299 28.7226 10.26 28.7226 10.7325C28.7226 11.205 28.3598 11.5515 27.8904 11.5515ZM1.01416 16.4223C1.21505 16.0511 1.66877 15.6403 2.4294 15.2313C3.09184 14.8751 3.95189 14.5391 4.99379 14.2389C5.22943 14.171 5.36984 13.9312 5.30572 13.698C5.24159 13.4648 4.99721 13.3264 4.76151 13.3941C3.66976 13.7076 2.74047 14.0669 2.00308 14.4634C1.18064 14.9057 0.549638 15.4193 0.22942 16.0109C-0.110808 16.6395 -0.0660816 17.2943 0.320159 17.8921C0.687158 18.46 1.35017 18.9627 2.22676 19.4029C3.9869 20.2866 6.69851 20.9612 9.91094 21.3416C12.6417 21.6649 15.6284 21.763 18.5283 21.6298L17.9308 22.2654C17.764 22.4427 17.7749 22.7195 17.9552 22.8836C18.1354 23.0477 18.4167 23.037 18.5834 22.8596L19.9021 21.4571C19.9218 21.4395 19.94 21.4202 19.9562 21.3995L19.9588 21.3968C20.0416 21.3087 20.0839 21.1911 20.0761 21.0714C20.0682 20.9517 20.0108 20.8405 19.9172 20.7637L18.408 19.525C18.2195 19.3702 17.9391 19.3951 17.7818 19.5807C17.6246 19.7663 17.65 20.0422 17.8385 20.1969L18.5177 20.7544C15.6556 20.8875 12.7068 20.7913 10.0171 20.4728C6.84697 20.0975 4.25511 19.4389 2.63083 18.6234C1.81521 18.2139 1.31416 17.7998 1.07044 17.4225C0.845944 17.0751 0.833269 16.7565 1.01416 16.4223ZM27.5582 13.4886C27.3237 13.4172 27.0771 13.552 27.0096 13.7843C26.942 14.0166 27.079 14.2583 27.3134 14.33C28.7977 14.7835 29.8712 15.3086 30.4965 15.8481C30.8349 16.1401 31.0105 16.4093 31.0773 16.6424C31.1406 16.8632 31.1176 17.0897 30.9801 17.3382C30.6833 17.8748 29.8731 18.4722 28.4628 19.0235C27.1724 19.5279 25.4884 19.9519 23.5263 20.2607C23.2839 20.2989 23.1159 20.5211 23.1519 20.7601C23.1878 20.9992 23.414 21.1645 23.6564 21.1264C25.6648 20.8109 27.4199 20.3726 28.791 19.8367C30.2366 19.2716 31.3063 18.5789 31.7611 17.7565C31.9994 17.3256 32.0648 16.8648 31.933 16.4049C31.8048 15.9573 31.502 15.5521 31.0827 15.1903C30.3198 14.5319 29.1036 13.9591 27.5582 13.4886Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-store-locator {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19 11V16.606L23.664 13.496L27 11.272V25C27 25.2652 26.8946 25.5196 26.7071 25.7071C26.5196 25.8946 26.2652 26 26 26H6C5.73478 26 5.48043 25.8946 5.29289 25.7071C5.10536 25.5196 5 25.2652 5 25V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H9C9.26522 5 9.51957 5.10536 9.70711 5.29289C9.89464 5.48043 10 5.73478 10 6V16.892L14.764 13.426L19 10.346V11ZM13 6V11L16 8.82L17.806 7.506C18.1998 7.21928 18.6652 7.04708 19.1507 7.00848C19.6363 6.96987 20.1231 7.06635 20.5572 7.28724C20.9914 7.50814 21.3559 7.84483 21.6105 8.26007C21.8652 8.67531 22 9.1529 22 9.64V11L24.04 9.64L24.966 9.022L25.824 8.452C26.2285 8.18235 26.6985 8.0275 27.184 8.00398C27.6696 7.98046 28.1524 8.08914 28.581 8.31844C29.0096 8.54774 29.368 8.88905 29.6179 9.306C29.8678 9.72295 29.9998 10.1999 30 10.686V25C30 26.0609 29.5786 27.0783 28.8284 27.8284C28.0783 28.5786 27.0609 29 26 29H6C4.93913 29 3.92172 28.5786 3.17157 27.8284C2.42143 27.0783 2 26.0609 2 25V6C2 4.93913 2.42143 3.92172 3.17157 3.17157C3.92172 2.42143 4.93913 2 6 2H9C10.0609 2 11.0783 2.42143 11.8284 3.17157C12.5786 3.92172 13 4.93913 13 6ZM9.5 20C9.10218 20 8.72064 20.158 8.43934 20.4393C8.15804 20.7206 8 21.1022 8 21.5C8 21.8978 8.15804 22.2794 8.43934 22.5607C8.72064 22.842 9.10218 23 9.5 23H22.5C22.8978 23 23.2794 22.842 23.5607 22.5607C23.842 22.2794 24 21.8978 24 21.5C24 21.1022 23.842 20.7206 23.5607 20.4393C23.2794 20.158 22.8978 20 22.5 20H9.5Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-direction {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.3191 26.2684L12.9991 19.0004L5.73111 17.6804C4.74536 17.502 3.84617 17.003 3.17339 16.2607C2.50061 15.5185 2.09195 14.5748 2.01097 13.5763C1.92999 12.5778 2.18122 11.5806 2.7256 10.7397C3.26998 9.89873 4.07698 9.26126 5.02111 8.92639L23.7371 2.27239C24.5727 1.9757 25.4753 1.92187 26.3402 2.11713C27.2052 2.31239 27.9971 2.74876 28.6242 3.37566C29.2513 4.00255 29.6879 4.79432 29.8835 5.6592C30.079 6.52409 30.0255 7.42668 29.7291 8.26239L23.0731 26.9784C22.7376 27.9216 22.1001 28.7276 21.2595 29.2713C20.4188 29.8149 19.4222 30.0657 18.4244 29.9848C17.4266 29.9038 16.4835 29.4957 15.7415 28.8236C14.9995 28.1516 14.4982 27.2533 14.3191 26.2684ZM20.2491 25.9724L26.8991 7.26039C27.0076 6.95901 27.0281 6.63297 26.9583 6.32037C26.8884 6.00777 26.731 5.7215 26.5045 5.495C26.278 5.2685 25.9917 5.11112 25.6791 5.04124C25.3665 4.97137 25.0405 4.99188 24.7391 5.10039L6.02711 11.7524C5.70654 11.8662 5.43254 12.0827 5.24767 12.3683C5.0628 12.6539 4.97741 12.9925 5.00478 13.3316C5.03214 13.6707 5.17072 13.9912 5.39899 14.2434C5.62726 14.4957 5.93243 14.6654 6.26711 14.7264L13.5351 16.0484L15.5791 16.4204L15.9511 18.4644L17.2711 25.7324C17.3314 26.0679 17.5009 26.374 17.7534 26.603C18.0058 26.832 18.3269 26.9711 18.6667 26.9985C19.0064 27.0259 19.3457 26.9401 19.6316 26.7545C19.9174 26.5689 20.1339 26.2939 20.2471 25.9724' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-qrcode {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.5 4.5C17.5 4.10218 17.342 3.72064 17.0607 3.43934C16.7794 3.15804 16.3978 3 16 3C15.6022 3 15.2206 3.15804 14.9393 3.43934C14.658 3.72064 14.5 4.10218 14.5 4.5V14.5H4.5C4.10218 14.5 3.72064 14.658 3.43934 14.9393C3.15804 15.2206 3 15.6022 3 16C3 16.3978 3.15804 16.7794 3.43934 17.0607C3.72064 17.342 4.10218 17.5 4.5 17.5H15.5C16.0304 17.5 16.5391 17.2893 16.9142 16.9142C17.2893 16.5391 17.5 16.0304 17.5 15.5V4.5ZM14.5 22C14.5 21.4696 14.7107 20.9609 15.0858 20.5858C15.4609 20.2107 15.9696 20 16.5 20H22C22.3978 20 22.7794 20.158 23.0607 20.4393C23.342 20.7206 23.5 21.1022 23.5 21.5C23.5 21.8978 23.342 22.2794 23.0607 22.5607C22.7794 22.842 22.3978 23 22 23H17.5V27.5C17.5 27.8978 17.342 28.2794 17.0607 28.5607C16.7794 28.842 16.3978 29 16 29C15.6022 29 15.2206 28.842 14.9393 28.5607C14.658 28.2794 14.5 27.8978 14.5 27.5V22ZM26 26H21.5C21.1022 26 20.7206 26.158 20.4393 26.4393C20.158 26.7206 20 27.1022 20 27.5C20 27.8978 20.158 28.2794 20.4393 28.5607C20.7206 28.842 21.1022 29 21.5 29H27C27.5304 29 28.0391 28.7893 28.4142 28.4142C28.7893 28.0391 29 27.5304 29 27V16.5C29 15.9696 28.7893 15.4609 28.4142 15.0858C28.0391 14.7107 27.5304 14.5 27 14.5H21.5C21.1022 14.5 20.7206 14.658 20.4393 14.9393C20.158 15.2206 20 15.6022 20 16C20 16.3978 20.158 16.7794 20.4393 17.0607C20.7206 17.342 21.1022 17.5 21.5 17.5H26V26ZM6 9V6H9V9H6ZM3 5C3 4.46957 3.21071 3.96086 3.58579 3.58579C3.96086 3.21071 4.46957 3 5 3H10C10.5304 3 11.0391 3.21071 11.4142 3.58579C11.7893 3.96086 12 4.46957 12 5V10C12 10.5304 11.7893 11.0391 11.4142 11.4142C11.0391 11.7893 10.5304 12 10 12H5C4.46957 12 3.96086 11.7893 3.58579 11.4142C3.21071 11.0391 3 10.5304 3 10V5ZM6 23V26H9V23H6ZM5 20C4.46957 20 3.96086 20.2107 3.58579 20.5858C3.21071 20.9609 3 21.4696 3 22V27C3 27.5304 3.21071 28.0391 3.58579 28.4142C3.96086 28.7893 4.46957 29 5 29H10C10.5304 29 11.0391 28.7893 11.4142 28.4142C11.7893 28.0391 12 27.5304 12 27V22C12 21.4696 11.7893 20.9609 11.4142 20.5858C11.0391 20.2107 10.5304 20 10 20H5ZM23 9V6H26V9H23ZM20 5C20 4.46957 20.2107 3.96086 20.5858 3.58579C20.9609 3.21071 21.4696 3 22 3H27C27.5304 3 28.0391 3.21071 28.4142 3.58579C28.7893 3.96086 29 4.46957 29 5V10C29 10.5304 28.7893 11.0391 28.4142 11.4142C28.0391 11.7893 27.5304 12 27 12H22C21.4696 12 20.9609 11.7893 20.5858 11.4142C20.2107 11.0391 20 10.5304 20 10V5Z' fill='%23333333'/%3e%3c/svg%3e ");}

/* icons 'background-image' */
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.5'%3e%3cpath d='M13.8153 2.98863C14.6075 1.00379 17.392 1.00379 18.1842 2.98863L21.0707 10.238L28.8026 10.7679C30.9204 10.9122 31.7793 13.583 30.1517 14.955L24.2062 19.9646L26.0965 27.5402C26.6142 29.6159 24.3591 31.2647 22.563 30.1299L15.9998 25.9744L9.43658 30.128C7.64038 31.2647 5.38533 29.614 5.90301 27.5402L7.79333 19.9646L1.84783 14.955C0.220275 13.583 1.08112 10.9122 3.19694 10.7679L10.9288 10.238L13.8153 2.98863Z' fill='url(%23paint0_linear_16_3874)'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient id='paint0_linear_16_3874' x1='16' y1='16.0234' x2='16.0484' y2='16.0234' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23AF912A'/%3e%3cstop offset='1' stop-color='%23CCCCCC'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M28.0757 12.5556C30.6414 14.1157 30.6414 17.8824 28.0757 19.4424L10.006 30.4213C7.3629 32.0275 4.00198 30.1 4 26.9778V5.02017C4 1.9 7.3629 -0.0275198 10.008 1.57875L28.0757 12.5556Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 3C10.7956 3 11.5587 3.31607 12.1213 3.87868C12.6839 4.44129 13 5.20435 13 6V26C13 26.7956 12.6839 27.5587 12.1213 28.1213C11.5587 28.6839 10.7956 29 10 29H6C5.20435 29 4.44129 28.6839 3.87868 28.1213C3.31607 27.5587 3 26.7956 3 26V6C3 5.20435 3.31607 4.44129 3.87868 3.87868C4.44129 3.31607 5.20435 3 6 3H10ZM26 3C26.7956 3 27.5587 3.31607 28.1213 3.87868C28.6839 4.44129 29 5.20435 29 6V26C29 26.7956 28.6839 27.5587 28.1213 28.1213C27.5587 28.6839 26.7956 29 26 29H22C21.2044 29 20.4413 28.6839 19.8787 28.1213C19.3161 27.5587 19 26.7956 19 26V6C19 5.20435 19.3161 4.44129 19.8787 3.87868C20.4413 3.31607 21.2044 3 22 3H26Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.12 19.8793C9.55793 19.3166 8.79538 19 8 18.9993H4C3.73478 18.9993 3.48043 18.894 3.29289 18.7065C3.10536 18.5189 3 18.2646 3 17.9993V13.9993C3 13.7341 3.10536 13.4798 3.29289 13.2922C3.48043 13.1047 3.73478 12.9993 4 12.9993H8C8.79538 12.9986 9.55793 12.6821 10.12 12.1193L15.086 7.15534C15.1611 7.08067 15.2566 7.0299 15.3605 7.00945C15.4644 6.989 15.572 6.99978 15.6698 7.04043C15.7675 7.08108 15.8511 7.14978 15.9099 7.23786C15.9686 7.32594 16 7.42945 16 7.53534V24.4633C16 24.5692 15.9686 24.6727 15.9099 24.7608C15.8511 24.8489 15.7675 24.9176 15.6698 24.9583C15.572 24.9989 15.4644 25.0097 15.3605 24.9892C15.2566 24.9688 15.1611 24.918 15.086 24.8433L10.12 19.8793ZM4 9.99934H8L12.964 5.03534C13.4585 4.54096 14.0885 4.20429 14.7743 4.06791C15.4602 3.93153 16.171 4.00155 16.8171 4.26913C17.4631 4.5367 18.0153 4.98982 18.4039 5.57119C18.7924 6.15256 18.9999 6.83608 19 7.53534V24.4633C18.9999 25.1626 18.7924 25.8461 18.4039 26.4275C18.0153 27.0089 17.4631 27.462 16.8171 27.7296C16.171 27.9971 15.4602 28.0672 14.7743 27.9308C14.0885 27.7944 13.4585 27.4577 12.964 26.9633L8 21.9993H4C2.93913 21.9993 1.92172 21.5779 1.17157 20.8278C0.421427 20.0776 0 19.0602 0 17.9993V13.9993C0 12.9385 0.421427 11.9211 1.17157 11.1709C1.92172 10.4208 2.93913 9.99934 4 9.99934ZM28.324 26.2053C27.794 26.8433 26.838 26.8373 26.252 26.2533C25.668 25.6673 25.676 24.7213 26.19 24.0733C28.0143 21.7781 29.0051 18.9313 29 15.9993C29.0051 13.0674 28.0143 10.2206 26.19 7.92534C25.676 7.27734 25.668 6.33134 26.252 5.74534C26.838 5.16134 27.794 5.15734 28.324 5.79334C30.7049 8.66095 32.0056 12.2722 32 15.9993C32 19.8793 30.62 23.4353 28.324 26.2053ZM24.048 21.9353C23.556 22.6013 22.596 22.5953 22.01 22.0093C21.424 21.4233 21.442 20.4813 21.89 19.7833C22.615 18.6544 23.0003 17.341 23 15.9993C23 14.6053 22.592 13.3053 21.89 12.2153C21.442 11.5193 21.424 10.5753 22.01 9.98934C22.596 9.40334 23.556 9.39734 24.05 10.0633C25.274 11.7233 26 13.7793 26 15.9993C26.0029 18.1362 25.3186 20.2173 24.048 21.9353Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.06 4.38676C5.77565 4.13221 5.39956 3.99364 5.01095 4.00022C4.62235 4.00681 4.25158 4.15805 3.97676 4.42207C3.70193 4.68609 3.54451 5.04229 3.53765 5.41562C3.53079 5.78894 3.67504 6.15025 3.94 6.42342L7.88 10.2086H4C2.93913 10.2086 1.92172 10.6134 1.17157 11.3341C0.421427 12.0547 0 13.0322 0 14.0513V17.8941C0 18.9132 0.421427 19.8907 1.17157 20.6113C1.92172 21.332 2.93913 21.7369 4 21.7369H8L12.964 26.5057C13.4581 26.9816 14.0882 27.3059 14.7744 27.4374C15.4605 27.569 16.1719 27.5019 16.8183 27.2447C17.4648 26.9875 18.0172 26.5517 18.4055 25.9926C18.7939 25.4335 19.0008 24.7762 19 24.104V20.8934L25.94 27.5606C26.0784 27.6981 26.244 27.8078 26.4271 27.8833C26.6101 27.9587 26.8069 27.9984 27.0061 28C27.2053 28.0015 27.4028 27.965 27.5871 27.8924C27.7714 27.8199 27.9388 27.7128 28.0796 27.5774C28.2204 27.4421 28.3317 27.2811 28.407 27.104C28.4823 26.9269 28.5202 26.7371 28.5184 26.5458C28.5165 26.3544 28.4751 26.1654 28.3964 25.9896C28.3177 25.8138 28.2033 25.6548 28.06 25.522L6.06 4.38676ZM16 18.0094L10.06 12.3029C9.50324 12.8085 8.76618 13.0904 8 13.0906H4C3.73478 13.0906 3.48043 13.1918 3.29289 13.372C3.10536 13.5522 3 13.7965 3 14.0513V17.8941C3 18.1489 3.10536 18.3932 3.29289 18.5734C3.48043 18.7536 3.73478 18.8548 4 18.8548H8C8.79538 18.8554 9.55793 19.1595 10.12 19.7002L15.086 24.4691C15.1611 24.5408 15.2566 24.5896 15.3605 24.6092C15.4644 24.6289 15.572 24.6185 15.6698 24.5795C15.7675 24.5404 15.8511 24.4744 15.9099 24.3898C15.9686 24.3052 16 24.2057 16 24.104V18.0094ZM16 7.84141V9.82043L19 12.7025V7.84141C18.9999 7.16963 18.7924 6.51298 18.4039 5.95446C18.0153 5.39594 17.4631 4.96064 16.8171 4.70358C16.171 4.44652 15.4602 4.37925 14.7743 4.51027C14.0885 4.64129 13.4585 4.96472 12.964 5.43968L12.202 6.17172L14.322 8.20839L15.086 7.47826C15.1608 7.40675 15.256 7.35805 15.3595 7.33828C15.463 7.31851 15.5703 7.32854 15.6679 7.36712C15.7655 7.4057 15.8491 7.4711 15.9082 7.55514C15.9673 7.63917 15.9992 7.74001 16 7.84141ZM22.978 16.5222L25.508 18.9528C25.8344 17.9905 26.0004 16.9848 26 15.9727C26.0031 13.9207 25.3195 11.9222 24.05 10.272C23.556 9.63021 22.596 9.6379 22.01 10.1989C21.424 10.76 21.442 11.6688 21.89 12.3374C22.7215 13.5803 23.1039 15.0497 22.978 16.5222ZM27.822 21.1777L30.056 23.3239C31.296 21.1393 32 18.6357 32 15.9727C32 12.2452 30.62 8.83092 28.324 6.1698C27.796 5.55496 26.838 5.56072 26.254 6.12369C25.668 6.68665 25.674 7.59355 26.19 8.218C28.0139 10.4225 29.0046 13.1566 29 15.9727C29 17.8307 28.58 19.5926 27.82 21.1777' fill='%23333333'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.4028 13.9439C24.4028 15.3174 24.1323 16.6774 23.6067 17.9464C23.0811 19.2153 22.3107 20.3683 21.3395 21.3395C20.3683 22.3107 19.2153 23.0811 17.9464 23.6067C16.6774 24.1323 15.3174 24.4028 13.9439 24.4028C12.5704 24.4028 11.2104 24.1323 9.94142 23.6067C8.67248 23.0811 7.5195 22.3107 6.5483 21.3395C5.57709 20.3683 4.80669 19.2153 4.28108 17.9464C3.75547 16.6774 3.48494 15.3174 3.48494 13.9439C3.48494 11.17 4.58686 8.50973 6.5483 6.5483C8.50973 4.58686 11.17 3.48494 13.9439 3.48494C16.7178 3.48494 19.378 4.58686 21.3395 6.5483C23.3009 8.50973 24.4028 11.17 24.4028 13.9439ZM22.497 24.9606C19.6949 27.1361 16.169 28.1618 12.6372 27.829C9.10542 27.4963 5.83319 25.8301 3.48668 23.1696C1.14017 20.5091 -0.104218 17.0544 0.00684241 13.5087C0.117903 9.96299 1.57606 6.59289 4.08448 4.08448C6.59289 1.57606 9.96299 0.117903 13.5087 0.00684241C17.0544 -0.104218 20.5091 1.14017 23.1696 3.48668C25.8301 5.83319 27.4963 9.10542 27.829 12.6372C28.1618 16.169 27.1361 19.6949 24.9606 22.497L31.4452 28.9815C31.6165 29.1411 31.7538 29.3336 31.8491 29.5474C31.9444 29.7612 31.9956 29.992 31.9997 30.2261C32.0039 30.4601 31.9608 30.6926 31.8731 30.9097C31.7855 31.1267 31.655 31.3239 31.4894 31.4894C31.3239 31.655 31.1267 31.7855 30.9097 31.8731C30.6926 31.9608 30.4601 32.0039 30.2261 31.9997C29.992 31.9956 29.7612 31.9444 29.5474 31.8491C29.3336 31.7538 29.1411 31.6165 28.9815 31.4452L22.497 24.9606Z' fill='%23333333'/%3e%3c/svg%3e ");}


/* Mobile (Portrait) */
@media screen and (max-width: 767px) {}

/* Mobile (Landscape), Tablet (Portrait) */
@media screen and (min-width: 768px) and (max-width: 991px) {}

/* Tablet (Landscape) */
@media screen and (min-width: 992px) and (max-width: 1199px) {}

/* Desktop */
@media screen and (min-width: 1200px) {}


@media screen and (width: 1920px) {
    body.windows #header-main-block.container,
	body.windows #footer .container {
        max-width: calc(1920px - var(--container-scrollbar-width, 16px));
        width: calc(var(--container-width-FH, 1680px) + var(--container-padding-FH, 40px) * 2) !important;
    }
}

#header-main-block.container,
#footer .container {
    max-width: calc(var(--container-width-FH, 1680px) + var(--container-padding-FH, 40px) * 2);
    padding-left: var(--container-padding-FH, 40px);
    padding-right: var(--container-padding-FH, 40px);
    margin-left: auto;
    margin-right: auto;
}



#header #header-search-input { padding-right: 10px; }



/*
*
* Banner Homepage
*
*/
.home .home-slider .description .content p.home-slider-title.secondary-subtitle { text-transform: uppercase; }
.home .home-slider .description .content p.home-slider-subtitle.mega-title { padding-top: 1px; }
.home .home-slider .description .content p.home-slider-description.list-nav-title{ padding-top: 14px; }


@media screen and (max-width: 1199px) {
	.home .home-slider .description .content p.home-slider-subtitle.mega-title { padding-top: 2px; }
	.home .home-slider .description .content p.home-slider-description.list-nav-title{ padding-top: 12px; }
	body .home .home-slider .description .content .button { margin-top: 26px; }
}