/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #444444;
	--color-black: #000000;
	--color-darkgray: #666;
	--color-gray: #999;
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F5F5F5;
	--color-lines: #DDDDDD;
	--color-link: #333333;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #DA343E;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9912;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-linkaccount: #4B4E56;
	--base-fontfamily: 'Poppins', sans-serif;

	--container-padding: 24px;
	--container-padding-n: -24px;
}


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



/*
 *
 * Tipography
 *
*/
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	/* font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif; */
	font-family: var(--base-fontfamily);
	font-weight: 300;
	font-size: 13px;
	color: var(--color-black);
}
body small:not(.a), body .small:not(.a):not(a) { font-size: 11px ;color: var(--color-gray) ; }

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

a:hover, .a:hover {
	text-decoration: none;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 154%;
	font-weight: 300;
}

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

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

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

/* MEGA-TITLE */
.mega-title {
	font-weight: 600;
	font-size: 50px;
	line-height: 134%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 300;
	font-size: 43px;
	line-height: 140%;
}

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

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

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

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

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

/* SIGNATURE */
.signature {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 150%;
	letter-spacing: 0.5px;
}

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

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

/* PRODUCT ITEM */
	/* Brand */
	.brand-list-product {
		font-weight: 600;
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name {
		font-weight: 400;
		font-size: 13px;
		line-height: 150%;
	}

	/* Price */
	.rdc-product-packs .rdc-wrapper-pack-resume .rdc-pack-resume-price.price {display: flex;justify-content: center;align-items: center;}
	.price, .price p {
		/*font-weight: 600;*/
		font-size: 13px;
		color: var(--color-black);
	}

	/* Price Discount */
	.price .discount {
		/*font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;*/
		background: var(--color-error); /* Required */
		color: var(--color-white); /* Required */
		padding: 0px 4px;
		border-radius: 4px;
		font-size: 11px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 20px;
		min-width: 39px;
	}
	body:not(.MacOS) .price .discount { padding-top: 1px; }

	/* Price Old */
	.price .old {
		font-weight: 300;
		color: var(--color-black);
		text-decoration: line-through;
	}

	/* Price Current */
	.price .current {font-weight: 600;}

	/* Price Desde, Price Type, Price Date */
	.price .desde, .price .type, .price .date {
		font-size: 10px;
		font-weight: 400;
		line-height: 150%;
	}

	/* Price Desde, Price Type */
	.price .desde, .price .type {
		color: var(--color-gray);
	}

	/* Promo Date */
	.rdc-promo-date,
	.rdc-promo-30days {
		color: var(--color-gray);
	}

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

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title { 			/* (1) */
		font-size: 30px;
		line-height: 140%;
	}

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

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

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

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 14px;
		line-height: 171%;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle {
		line-height: 169%;
		font-size: 13px;
	}

	/* SIGNATURE */
	.signature {
		font-size: 12px;
		line-height: 150%;
	}

	/* PRODUCT ITEM */
	.product-item .desc .name,
	.product-item .price p {
		font-size: 11px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type, .product-item .price .date {
		font-size: 7px;
		line-height: normal;
		/*font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;*/
		color: var(--color-gray);
		font-weight: 400;
	}

	.price, .price p {
		/*font-weight: 600;*/
		font-size: 11px;
		color: var(--color-black);
	}

	/* Price Discount */
	.price .discount {
		padding: 0px 4px;
		border-radius: 4px;
		min-height: 16px;
		min-width: 37px;
	}

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

	/* Price Desde, Price Type */
	.price .desde, .price .type {
		color: var(--color-gray);
	}

	/* Promo Date */
	.rdc-promo-date,
	.rdc-promo-30days {
		color: var(--color-gray);
	}
}

@media screen and (min-width: 1200px) {
	/* Colocar igual aos estilos anteriores de mobile */
	

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type, .product-item .price .date {
		font-size: 10px;
		line-height: normal;
		/*font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;*/
		color: var(--color-gray);
	}
}

/* (1) - REQUIRED - Mobile styles to be used on desktop */
	/* TITLE */
	.rdc-popup-right-bar .title {
		font-size: 30px;
	}

	/* SECONDARY-TITLE */
	.rdc-popup-right-bar .secondary-title {
		font-size: 22px;
	}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	/*padding: 13px 20px;*/
	.button, button, input[type=submit], input[type=button] {
		/*font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;*/
		font-weight: 500;
		font-size: 13px;
		padding: 0px 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 91px;
		min-height: 45px;
		border-radius: 8px;
		line-height: 11px;
		color: var(--color-white);
		border: 1px solid var(--color-dark);
		background-color: var(--color-dark);
	}
	body:not(.MacOS) .button, body:not(.MacOS) button:not(.button-card), body:not(.MacOS) input[type=submit], body:not(.MacOS) input[type=button] { padding-bottom: 2px; }
	
	/* Normal Hover */
	.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
		color: var(--color-dark);
		border-color: var(--color-dark);
		background-color: transparent;
	}

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

	/* 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-dark);
		border-color: var(--color-white);
		background-color: var(--color-white);
	}

	/* White 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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

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

	/* Normal 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-dark);
		background-color: var(--color-dark);
	}

	/* 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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

	/* 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 */
	.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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		font-weight: 500;
		font-size: 13px;
		line-height: normal;
		text-decoration: none !important;
		padding: 2px 0;
		border: 0;
		background: transparent;
		display: inline-block;
		color: var(--color-dark);
	}

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

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

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

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

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

	/* White Hover */
	.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {
		border-color: transparent;
		color: var(--color-white);
	}

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

/* Buttons Cart */
	/* Normal */
	.btn-cart, .btn-cart-esgotado {
		font-weight: 500;
		font-size: 13px;
		color: var(--color-white);
		padding: 0px 20px;
		border: 1px solid var(--color-dark);
		background-color: var(--color-dark);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 49px;
		min-width: 205px;
	}

	body:not(.MacOS) .btn-cart, body:not(.MacOS) .btn-cart-esgotado {padding-top: 1px;}

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

	/* Normal Disable */
	.btn-cart[disabled] {
		color: var(--color-lightgray) !important;
		background-color: var(--color-background) !important;
		border-color: var(--color-background) !important;
		cursor: default !important;
	}

	/* Secondary Button */
	.btn-cart.btn2, .btn-cart-esgotado.btn2 {
		color: var(--color-dark);
		border: 1px solid var(--color-dark);
		background-color: transparent;
	}
		
	/* Secondary hover */
	.btn-cart.btn2:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover {
		color: var(--color-dark);
		border: 1px solid var(--color-dark);
		background-color: transparent;
	}

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

	/* Button Loading */
	.button.loader, button.loader, .btn-cart.loader {
		position: relative;
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

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

	@media screen and (min-width: 1200px) {
		body .button-card { padding: 7px 6px 5px;min-height: 71px; }
	}


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

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

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

.accordion .accordion-head,
.accordion .accordion-content {
	padding-left: 15px;
	padding-right: 4em;
}






/*
 *
 * Tabs
 *
*/
body .tabs-container:not(.vertical) .tabs li {
	margin: 0 7px;
}

body .tabs-container:not(.vertical) .tabs:not(.rdc-fixed-styles) {
	text-align: center;
}

body .tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 300;
	font-size: 13px;
	line-height: 154%;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 0px 20px;
	color: var(--color-black);
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	min-width: 110px;
}
body .tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item:hover {
	background-color: var(--color-background);
	border-color: var(--color-lines);
	opacity: 0.5;
}

/* body .tabs-container:not(.vertical) .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover, */
body .tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	border-color: var(--color-black);
}

body .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: 767px) {
	body .tabs-container .tabs:not(.rdc-fixed-styles) {
		margin: 0 -15px;
	}

	body .tabs-container .tabs:not(.rdc-fixed-styles) li:first-child {
		padding-left: 15px;
	}

	body .tabs-container .tabs:not(.rdc-fixed-styles) li:last-child {
		padding-right: 10px;
	}
}






/*
 *
 * Form
 *
*/
/* Label (forms, filters, etc) */
.label-title, .label-subtitle, .label-desc {}

textarea, input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], select,
body .account textarea, body .account input[type=text], body .account input[type=number], body .account input[type=email], body .account input[type=password], body .account input[type=tel], body .account input[type=search], body .account input[type=file], select {
	padding: 0px 15px;
	border: 1px solid var(--color-lines);
	border-radius: 4px ;
	background-color: white;
	color: var(--color-gray); /* Required */
	display: flex;
	align-items: center;
	min-height: 40px;
	font-family: var(--base-fontFamily), sans-serif;
    font-weight: 400;
}

body textarea{padding: 9px 15px;}

input[type=file],
body .account input[type=file] {
	padding: 8px 15px;
}

@media screen and (min-width: 1200px) {
	input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=search]:hover, input[type=file]:hover, textarea:hover, div.select:not(.disabled):hover,
	.magic-checkbox+label:hover:before, .magic-radio+label:hover:before,
	body .account input[type=text]:hover, body .account input[type=number]:hover, body .account input[type=email]:hover, body .account input[type=password]:hover, body .account input[type=tel]:hover, body .account input[type=search]:hover, body .account input[type=file]:hover, body .account textarea:hover, body .account div.select:not(.disabled):hover,
	body .account .magic-checkbox+label:hover:before, body .account .magic-radio+label:hover:before {
		border-color: var(--color-black);
	}
}

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

html body .account div.select:not(.disabled) select:focus {color: var(--color-black);}


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

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

div.select,
body .account div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	overflow-x: hidden;
	border-radius: 6px;
}

div.select select:focus { color: var(--color-black); }

div.select select,
body .account div.select select {
	position: relative;
	width: 100%;
	padding: 0px 40px 0px 15px;
	min-height: 38px;
	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;
	border-radius: 0 !important;
	line-height: 20px; /* Mozilla */
	display: flex;
	align-items: center;
	min-height: 38px;
	color: var(--color-gray);
	font-family: var(--base-fontFamily), sans-serif;
	font-weight: 400;
}

body:not(.MacOS) div.select select,
body:not(.MacOS) .account div.select select {
	padding-top: 2px;
}

div.select::after,
body .account div.select::after{
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 32 32'%3E%3Cpath d='m22.5 6.055-10.018 10.445 10.018 10.445-1.491 1.555-11.509-12 11.509-12z' transform='matrix(0 -1 -1 0 32.5 32.5)'%3E%3C/path%3E%3C/svg%3E") center/14px no-repeat;
}

div.select.loading::before,
body .account div.select.loading::before {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
}

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

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

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

::-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,
body .form-stock-message .help, body .form-login-message .help,
body .form-stock-message .success, body .form-login-message .success,
body .form-stock-message .info, body .form-login-message .info,
body .form-stock-message .warning, body .form-login-message .warning,
body .form-stock-message .error, body .form-login-message .error {
	background-repeat: no-repeat;
	background-position: left 8px center;
	background-size: 18px;
	padding: 5px 8px 5px 36px;
	border-radius: 8px;
	border: 1px solid;
	color: var(--color-black);
	font-size: 13px; 
	line-height: 154%;
}

body:not(.MacOS) .form-message .help,
body:not(.MacOS) .form-message .success,
body:not(.MacOS) .form-message .info,
body:not(.MacOS) .form-message .warning,
body:not(.MacOS) .form-message .error,
body:not(.MacOS) .form-stock-message .help, body:not(.MacOS) .form-login-message .help,
body:not(.MacOS) .form-stock-message .success, body:not(.MacOS) .form-login-message .success,
body:not(.MacOS) .form-stock-message .info, body:not(.MacOS) .form-login-message .info,
body:not(.MacOS) .form-stock-message .warning, body:not(.MacOS) .form-login-message .warning,
body:not(.MacOS) .form-stock-message .error, body:not(.MacOS) .form-login-message .error{
	padding-top: 6px;
	padding-bottom: 4px;
}

.form-message .help a,
.form-message .success a,
.form-message .info a,
.form-message .warning a,
.form-message .error a,
body .form-stock-message .help a, body .form-login-message .help a,
body .form-stock-message .success a, body .form-login-message .success a,
body .form-stock-message .info a, body .form-login-message .info a,
body .form-stock-message .warning a, body .form-login-message .warning a,
body .form-stock-message .error a, body .form-login-message .error a,
.form-message .help .a,
.form-message .success .a,
.form-message .info .a,
.form-message .warning .a,
.form-message .error .a,
body .form-stock-message .help .a, body .form-login-message .help .a,
body .form-stock-message .success .a, body .form-login-message .success .a,
body .form-stock-message .info .a, body .form-login-message .info .a,
body .form-stock-message .warning .a, body .form-login-message .warning .a,
body .form-stock-message .error .a, body .form-login-message .error .a{color: var(--color-black);}

.form-message .help,
body .form-stock-message .help, body .form-login-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 d='M9.021 12.9225C9.187 12.9225 9.327 12.8655 9.441 12.7515C9.555 12.6375 9.612 12.4975 9.612 12.3315C9.612 12.1655 9.5545 12.0255 9.4395 11.9115C9.3255 11.7975 9.1855 11.7405 9.0195 11.7405C8.8535 11.7405 8.7135 11.7978 8.5995 11.9123C8.4855 12.0268 8.42875 12.1668 8.42925 12.3323C8.42925 12.4983 8.48625 12.6383 8.60025 12.7523C8.71525 12.8663 8.8555 12.9233 9.021 12.9233M9.00225 15.75C8.06925 15.75 7.19175 15.573 6.36975 15.219C5.54825 14.8645 4.8335 14.3835 4.2255 13.776C3.6175 13.1685 3.13625 12.4545 2.78175 11.634C2.42725 10.8135 2.25 9.93625 2.25 9.00225C2.25 8.06825 2.42725 7.19075 2.78175 6.36975C3.13575 5.54825 3.616 4.8335 4.2225 4.2255C4.829 3.6175 5.54325 3.13625 6.36525 2.78175C7.18725 2.42725 8.06475 2.25 8.99775 2.25C9.93075 2.25 10.8083 2.42725 11.6302 2.78175C12.4517 3.13575 13.1665 3.61625 13.7745 4.22325C14.3825 4.83025 14.8638 5.5445 15.2183 6.366C15.5728 7.1875 15.75 8.06475 15.75 8.99775C15.75 9.93075 15.573 10.8083 15.219 11.6302C14.865 12.4522 14.384 13.167 13.776 13.7745C13.168 14.382 12.454 14.8633 11.634 15.2183C10.814 15.5732 9.93675 15.7505 9.00225 15.75ZM9 15C10.675 15 12.0937 14.4187 13.2562 13.2562C14.4187 12.0937 15 10.675 15 9C15 7.325 14.4187 5.90625 13.2562 4.74375C12.0937 3.58125 10.675 3 9 3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15ZM9.0465 5.80425C9.4265 5.80425 9.7535 5.922 10.0275 6.1575C10.3025 6.393 10.44 6.68775 10.44 7.04175C10.44 7.31675 10.3625 7.56525 10.2075 7.78725C10.0535 8.00925 9.875 8.214 9.672 8.4015C9.415 8.6345 9.18875 8.89075 8.99325 9.17025C8.79775 9.45025 8.6855 9.7585 8.6565 10.095C8.647 10.193 8.67775 10.275 8.74875 10.341C8.81875 10.4065 8.90125 10.4392 8.99625 10.4392C9.09675 10.4392 9.1815 10.4058 9.2505 10.3387C9.319 10.2712 9.3625 10.1918 9.381 10.1003C9.431 9.84775 9.5315 9.623 9.6825 9.426C9.833 9.2295 9.9985 9.0435 10.179 8.868C10.4385 8.61 10.6687 8.32875 10.8698 8.02425C11.0712 7.72025 11.172 7.381 11.172 7.0065C11.172 6.456 10.963 6.0015 10.545 5.643C10.1275 5.285 9.6375 5.106 9.075 5.106C8.658 5.106 8.26975 5.2035 7.91025 5.3985C7.55125 5.5935 7.264 5.8635 7.0485 6.2085C6.9995 6.2915 6.98375 6.37725 7.00125 6.46575C7.01875 6.55425 7.06625 6.6215 7.14375 6.6675C7.24275 6.7195 7.34275 6.7315 7.44375 6.7035C7.54475 6.6755 7.63375 6.6175 7.71075 6.5295C7.87725 6.3225 8.07325 6.15 8.29875 6.012C8.52375 5.873 8.773 5.80425 9.0465 5.80425Z' fill='%238B8D8F'/%3e%3c/svg%3e ");
	border-color: var(--color-help);
}

.form-message .success,
body .form-stock-message .success, body .form-login-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 d='M7.9215 10.869L6.0495 8.997C5.979 8.927 5.89275 8.8895 5.79075 8.8845C5.68875 8.8795 5.598 8.917 5.5185 8.997C5.439 9.077 5.399 9.1655 5.3985 9.2625C5.398 9.3595 5.438 9.448 5.5185 9.528L7.497 11.5065C7.618 11.628 7.75925 11.6888 7.92075 11.6888C8.08225 11.6888 8.22375 11.628 8.34525 11.5065L12.453 7.3995C12.523 7.329 12.5605 7.24275 12.5655 7.14075C12.5705 7.03875 12.533 6.948 12.453 6.8685C12.373 6.789 12.2845 6.749 12.1875 6.7485C12.0905 6.748 12.002 6.788 11.922 6.8685L7.9215 10.869ZM9.00225 15.75C8.06925 15.75 7.19175 15.573 6.36975 15.219C5.54825 14.8645 4.8335 14.3835 4.2255 13.776C3.6175 13.1685 3.13625 12.4545 2.78175 11.634C2.42725 10.8135 2.25 9.93625 2.25 9.00225C2.25 8.06825 2.42725 7.19075 2.78175 6.36975C3.13575 5.54825 3.616 4.8335 4.2225 4.2255C4.829 3.6175 5.54325 3.13625 6.36525 2.78175C7.18725 2.42725 8.06475 2.25 8.99775 2.25C9.93075 2.25 10.8083 2.42725 11.6302 2.78175C12.4517 3.13575 13.1665 3.61625 13.7745 4.22325C14.3825 4.83025 14.8638 5.5445 15.2183 6.366C15.5728 7.1875 15.75 8.06475 15.75 8.99775C15.75 9.93075 15.573 10.8083 15.219 11.6302C14.865 12.4522 14.384 13.167 13.776 13.7745C13.168 14.382 12.454 14.8633 11.634 15.2183C10.814 15.5732 9.93675 15.7505 9.00225 15.75ZM9 15C10.675 15 12.0937 14.4187 13.2562 13.2562C14.4187 12.0937 15 10.675 15 9C15 7.325 14.4187 5.90625 13.2562 4.74375C12.0937 3.58125 10.675 3 9 3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z' fill='%233F9912'/%3e%3c/svg%3e ");
	border-color: var(--color-success);
}

.form-message .info,
body .form-stock-message .info, body .form-login-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 d='M9 12.375C9.107 12.375 9.19625 12.339 9.26775 12.267C9.33925 12.195 9.375 12.106 9.375 12V8.625C9.375 8.5185 9.339 8.4295 9.267 8.358C9.195 8.2865 9.10575 8.2505 8.99925 8.25C8.89275 8.2495 8.80375 8.2855 8.73225 8.358C8.66075 8.4305 8.625 8.5195 8.625 8.625V12C8.625 12.1065 8.661 12.1955 8.733 12.267C8.805 12.3385 8.89425 12.3745 9.00075 12.375M9 7.18275C9.131 7.18275 9.24075 7.1385 9.32925 7.05C9.41775 6.9615 9.46175 6.852 9.46125 6.7215C9.46075 6.591 9.4165 6.48125 9.3285 6.39225C9.2405 6.30325 9.131 6.259 9 6.2595C8.869 6.26 8.7595 6.30425 8.6715 6.39225C8.5835 6.48025 8.53925 6.59 8.53875 6.7215C8.53825 6.853 8.5825 6.9625 8.6715 7.05C8.7605 7.1375 8.87 7.18175 9 7.18275ZM9.00225 15.75C8.06875 15.75 7.19125 15.573 6.36975 15.219C5.54825 14.8645 4.8335 14.3835 4.2255 13.776C3.6175 13.1685 3.13625 12.4545 2.78175 11.634C2.42725 10.8135 2.25 9.93625 2.25 9.00225C2.25 8.06825 2.42725 7.19075 2.78175 6.36975C3.13575 5.54825 3.616 4.8335 4.2225 4.2255C4.829 3.6175 5.54325 3.13625 6.36525 2.78175C7.18725 2.42725 8.06475 2.25 8.99775 2.25C9.93075 2.25 10.8083 2.42725 11.6302 2.78175C12.4517 3.13575 13.1665 3.61625 13.7745 4.22325C14.3825 4.83025 14.8638 5.5445 15.2183 6.366C15.5728 7.1875 15.75 8.06475 15.75 8.99775C15.75 9.93075 15.573 10.8083 15.219 11.6302C14.865 12.4522 14.384 13.167 13.776 13.7745C13.168 14.382 12.454 14.8633 11.634 15.2183C10.814 15.5732 9.93675 15.7505 9.00225 15.75ZM9 15C10.675 15 12.0937 14.4187 13.2562 13.2562C14.4187 12.0937 15 10.675 15 9C15 7.325 14.4187 5.90625 13.2562 4.74375C12.0937 3.58125 10.675 3 9 3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z' fill='%231890FF'/%3e%3c/svg%3e ");
	border-color: var(--color-info);
}

.form-message .warning,
body .form-stock-message .warning, body .form-login-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 d='M9 12.3465C9.131 12.3465 9.24075 12.3022 9.32925 12.2137C9.41725 12.1252 9.46125 12.0155 9.46125 11.8845C9.46125 11.754 9.417 11.6445 9.3285 11.556C9.24 11.4675 9.1305 11.423 9 11.4225C8.8695 11.422 8.76 11.4662 8.6715 11.5553C8.583 11.6442 8.53875 11.7537 8.53875 11.8837C8.53875 12.0138 8.583 12.1235 8.6715 12.213C8.76 12.3025 8.8695 12.3475 9 12.3465ZM9 9.86475C9.107 9.86475 9.19625 9.82875 9.26775 9.75675C9.33925 9.68475 9.375 9.59575 9.375 9.48975V5.73975C9.375 5.63325 9.339 5.54425 9.267 5.47275C9.195 5.40125 9.10575 5.36525 8.99925 5.36475C8.89275 5.36425 8.80375 5.40025 8.73225 5.47275C8.66075 5.54525 8.625 5.63425 8.625 5.73975V9.48975C8.625 9.59575 8.661 9.68475 8.733 9.75675C8.805 9.82875 8.89425 9.86475 9.00075 9.86475M9.00225 15.75C8.06875 15.75 7.19125 15.573 6.36975 15.219C5.54825 14.8645 4.8335 14.3835 4.2255 13.776C3.6175 13.1685 3.13625 12.4545 2.78175 11.634C2.42725 10.8135 2.25 9.93625 2.25 9.00225C2.25 8.06825 2.42725 7.19075 2.78175 6.36975C3.13575 5.54825 3.616 4.8335 4.2225 4.2255C4.829 3.6175 5.54325 3.13625 6.36525 2.78175C7.18725 2.42725 8.06475 2.25 8.99775 2.25C9.93075 2.25 10.8083 2.42725 11.6302 2.78175C12.4517 3.13575 13.1665 3.61625 13.7745 4.22325C14.3825 4.83025 14.8638 5.5445 15.2183 6.366C15.5728 7.1875 15.75 8.06475 15.75 8.99775C15.75 9.93075 15.573 10.8083 15.219 11.6302C14.865 12.4522 14.384 13.167 13.776 13.7745C13.168 14.382 12.454 14.8633 11.634 15.2183C10.814 15.5732 9.93675 15.7505 9.00225 15.75ZM9 15C10.675 15 12.0937 14.4187 13.2562 13.2562C14.4187 12.0937 15 10.675 15 9C15 7.325 14.4187 5.90625 13.2562 4.74375C12.0937 3.58125 10.675 3 9 3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z' fill='%23FAAD14'/%3e%3c/svg%3e ");
	border-color: var(--color-warning);
}

.form-message .error,
body .form-stock-message .error, body .form-login-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 d='M9 9.531L11.4345 11.9655C11.5045 12.0355 11.5905 12.073 11.6925 12.078C11.7945 12.083 11.8855 12.0455 11.9655 11.9655C12.0455 11.8855 12.0855 11.797 12.0855 11.7C12.0855 11.603 12.0455 11.5145 11.9655 11.4345L9.531 9L11.9655 6.5655C12.0355 6.4955 12.073 6.4095 12.078 6.3075C12.083 6.2055 12.0455 6.1145 11.9655 6.0345C11.8855 5.9545 11.797 5.9145 11.7 5.9145C11.603 5.9145 11.5145 5.9545 11.4345 6.0345L9 8.469L6.5655 6.0345C6.4955 5.9645 6.4095 5.927 6.3075 5.922C6.2055 5.917 6.1145 5.9545 6.0345 6.0345C5.9545 6.1145 5.9145 6.203 5.9145 6.3C5.9145 6.397 5.9545 6.4855 6.0345 6.5655L8.469 9L6.0345 11.4345C5.9645 11.5045 5.927 11.5907 5.922 11.6932C5.917 11.7947 5.9545 11.8855 6.0345 11.9655C6.1145 12.0455 6.203 12.0855 6.3 12.0855C6.397 12.0855 6.4855 12.0455 6.5655 11.9655L9 9.531ZM9.00225 15.75C8.06875 15.75 7.19125 15.573 6.36975 15.219C5.54825 14.8645 4.8335 14.3835 4.2255 13.776C3.6175 13.1685 3.13625 12.4545 2.78175 11.634C2.42725 10.8135 2.25 9.93625 2.25 9.00225C2.25 8.06825 2.42725 7.19075 2.78175 6.36975C3.13575 5.54825 3.616 4.8335 4.2225 4.2255C4.829 3.6175 5.54325 3.13625 6.36525 2.78175C7.18725 2.42725 8.06475 2.25 8.99775 2.25C9.93075 2.25 10.8083 2.42725 11.6302 2.78175C12.4517 3.13575 13.1665 3.61625 13.7745 4.22325C14.3825 4.83025 14.8638 5.5445 15.2183 6.366C15.5728 7.1875 15.75 8.06475 15.75 8.99775C15.75 9.93075 15.573 10.8083 15.219 11.6302C14.865 12.4522 14.384 13.167 13.776 13.7745C13.168 14.382 12.454 14.8633 11.634 15.2183C10.814 15.5732 9.93675 15.7505 9.00225 15.75ZM9 15C10.675 15 12.0937 14.4187 13.2562 13.2562C14.4187 12.0937 15 10.675 15 9C15 7.325 14.4187 5.90625 13.2562 4.74375C12.0937 3.58125 10.675 3 9 3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z' fill='%23DA343E'/%3e%3c/svg%3e ");
	border-color: var(--color-error);
}

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

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






/*
 *
 * Slim Scrollbar (Minicart, Product List Filters)
 * Customizar se necess�rio
 *
*/
/* Firefox used (scrollbar-width and scrollbar-color) */

	/*body:not(.MacOS) .slim-scrollbar {
		scrollbar-width: thin;
		scrollbar-color: #AAA lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	.slim-scrollbar::-webkit-scrollbar-track {
		background: lightgray;
	}*/
	.slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: var(--color-theme);
		/*border-radius: 8px;*/
	}







/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 99;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}

/* CONTAINER => max-width: (1902px | 1680px | 1440px) + (--container-padding * 2) */
.container {max-width: calc(1440px + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
/* Se o max-width do container for (1902px), colocar o CSS abaixo */
/*.rdc-container-fullscreen {max-width: 1920px;padding-left: 0;padding-right: 0;}*/
@media screen and (max-width: 1440px) {
	.container {max-width: 1404px}
}
@media screen and (max-width: 1366px) {
	.container {max-width: 1332px}
}
@media screen and (max-width: 1280px) {
	.container {max-width: 1242px}
}



/*
 *
 * Sliders
 *
*/
.slider .slick-arrow.slick-prev {
	background-size: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='32px' height='32px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='22 5.555 11.982 16 22 26.445 20.509 28 9 16 20.509 4' transform='matrix(1 0 0 -1 0 32)'%3E%3C/polygon%3E%3C/svg%3E");
}

.slider .slick-arrow.slick-next {
	background-size: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='32px' height='32px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='23 5.555 12.982 16 23 26.445 21.509 28 10 16 21.509 4' transform='rotate(180 16.5 16)'%3E%3C/polygon%3E%3C/svg%3E");
}

.slick-dots li:not(.slick-active) button { width: 8px;height: 8px; }






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

/* SVG icons Ex: {background-image: url("data:image/svg+xml,%3Csvg ... ");} */
@media screen and (max-width: 767px) {
	.rdc-icon-circle {background-size: 24px;}
}
@media screen and (min-width: 768px) {
	.rdc-icon-circle {background-size: 16px;}
}
body .rdc-icon-svg.rdc-icon-menu {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='M25.3617 15.853H6.6383C6.46901 15.853 6.30666 15.9169 6.18695 16.0306C6.06725 16.1444 6 16.2987 6 16.4596C6 16.6205 6.06725 16.7748 6.18695 16.8885C6.30666 17.0023 6.46901 17.0662 6.6383 17.0662H25.3617C25.531 17.0662 25.6933 17.0023 25.813 16.8885C25.9328 16.7748 26 16.6205 26 16.4596C26 16.2987 25.9328 16.1444 25.813 16.0306C25.6933 15.9169 25.531 15.853 25.3617 15.853ZM25.3617 20.7868H6.6383C6.46901 20.7868 6.30666 20.8507 6.18695 20.9644C6.06725 21.0782 6 21.2325 6 21.3934C6 21.5543 6.06725 21.7086 6.18695 21.8223C6.30666 21.9361 6.46901 22 6.6383 22H25.3617C25.531 22 25.6933 21.9361 25.813 21.8223C25.9328 21.7086 26 21.5543 26 21.3934C26 21.2325 25.9328 21.0782 25.813 20.9644C25.6933 20.8507 25.531 20.7868 25.3617 20.7868Z' fill='black'/%3e%3cpath d='M25.3617 11H6.6383C6.46901 11 6.30666 11.0639 6.18695 11.1777C6.06725 11.2914 6 11.4457 6 11.6066C6 11.7675 6.06725 11.9218 6.18695 12.0356C6.30666 12.1493 6.46901 12.2132 6.6383 12.2132H25.3617C25.531 12.2132 25.6933 12.1493 25.813 12.0356C25.9328 11.9218 26 11.7675 26 11.6066C26 11.4457 25.9328 11.2914 25.813 11.1777C25.6933 11.0639 25.531 11 25.3617 11Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu-close{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='M25.7552 24.668C25.8307 24.7384 25.8914 24.8233 25.9334 24.9177C25.9755 25.0121 25.9981 25.1139 25.9999 25.2172C26.0017 25.3205 25.9827 25.4231 25.944 25.5189C25.9053 25.6146 25.8477 25.7017 25.7747 25.7747C25.7017 25.8477 25.6146 25.9053 25.5189 25.944C25.4231 25.9827 25.3205 26.0017 25.2172 25.9999C25.1139 25.9981 25.0121 25.9755 24.9177 25.9334C24.8233 25.8914 24.7384 25.8307 24.668 25.7552L15.9808 17.0693L7.29363 25.7552C7.14781 25.8911 6.95494 25.965 6.75566 25.9615C6.55638 25.958 6.36624 25.8773 6.2253 25.7363C6.08437 25.5954 6.00364 25.4052 6.00012 25.206C5.9966 25.0067 6.07058 24.8138 6.20645 24.668L14.8924 15.9808L6.20645 7.29363C6.07058 7.14781 5.9966 6.95494 6.00012 6.75566C6.00364 6.55638 6.08437 6.36624 6.2253 6.2253C6.36624 6.08437 6.55638 6.00364 6.75566 6.00012C6.95494 5.9966 7.14781 6.07058 7.29363 6.20645L15.9808 14.8924L24.668 6.20645C24.8138 6.07058 25.0067 5.9966 25.206 6.00012C25.4052 6.00364 25.5954 6.08437 25.7363 6.2253C25.8773 6.36624 25.958 6.55638 25.9615 6.75566C25.965 6.95494 25.8911 7.14781 25.7552 7.29363L17.0693 15.9808L25.7552 24.668Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-share {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='M9.07643 29C8.485 29 7.99129 28.7972 7.59529 28.3916C7.19929 27.986 7.00086 27.4799 7 26.8733V14.0079C7 13.4022 7.19843 12.8965 7.59529 12.4909C7.99214 12.0853 8.48586 11.8821 9.07643 11.8812H11.1541C11.3367 11.8812 11.4897 11.944 11.6131 12.0695C11.7366 12.1951 11.7979 12.3518 11.797 12.5396C11.7961 12.7275 11.7344 12.8842 11.6119 13.0097C11.4893 13.1353 11.3367 13.1981 11.1541 13.1981H9.07643C8.87929 13.1981 8.698 13.2823 8.53257 13.4509C8.36714 13.6194 8.28486 13.8051 8.28571 14.0079V26.8733C8.28571 27.0752 8.368 27.2609 8.53257 27.4303C8.69714 27.5998 8.87843 27.684 9.07643 27.6832H22.9236C23.1207 27.6832 23.302 27.5989 23.4674 27.4303C23.6329 27.2618 23.7151 27.0761 23.7143 26.8733V14.0079C23.7143 13.806 23.632 13.6203 23.4674 13.4509C23.3029 13.2815 23.1216 13.1972 22.9236 13.1981H20.8459C20.6633 13.1981 20.5103 13.1353 20.3869 13.0097C20.2634 12.8842 20.2026 12.7275 20.2043 12.5396C20.206 12.3518 20.2677 12.1951 20.3894 12.0695C20.5111 11.944 20.6637 11.8812 20.8471 11.8812H22.9249C23.5163 11.8812 24.01 12.0845 24.406 12.4909C24.802 12.8974 25 13.403 25 14.0079V26.8733C25 27.4791 24.802 27.9847 24.406 28.3903C24.01 28.7959 23.5159 28.9991 22.9236 29H9.07643ZM15.3571 6.10561L13.1123 8.40479C12.9871 8.53296 12.8397 8.60012 12.67 8.60627C12.5003 8.61154 12.3443 8.5413 12.202 8.39558C12.0649 8.25072 11.9954 8.09578 11.9937 7.93073C11.992 7.76569 12.0614 7.61031 12.202 7.46458L15.2736 4.31999C15.481 4.10666 15.7231 4 16 4C16.2769 4 16.519 4.10666 16.7264 4.31999L19.798 7.46458C19.918 7.58748 19.9823 7.7376 19.9909 7.91493C19.9994 8.09227 19.9351 8.25292 19.798 8.39689C19.6557 8.54174 19.5027 8.61417 19.339 8.61417C19.1753 8.61417 19.0223 8.54174 18.88 8.39689L16.6429 6.10561V19.7822C16.6429 19.9692 16.5816 20.1259 16.459 20.2523C16.3364 20.3787 16.1834 20.4415 16 20.4406C15.8166 20.4397 15.6636 20.377 15.541 20.2523C15.4184 20.1259 15.3571 19.9692 15.3571 19.7822V6.10561Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-fb {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='M24 23.2C24 23.6843 23.7556 24 23.2622 24H19.1111V17.9459H21.2222L21.5422 15.3514H19.1111V14.0022C19.1111 13.3103 19.3022 12.7568 20.3244 12.7568H21.7778V10.6941C21.3333 10.6638 20.6444 10.5989 19.7422 10.5989C17.8667 10.5989 16.4444 11.7146 16.4444 13.7643V15.3514H14.2222V17.9459H16.4444V24H8.74667C8.24889 24 8 23.6843 8 23.2V9.07676C8 8.59243 8.24889 8 8.74667 8H23.2622C23.7556 8 24 8.59243 24 9.07676V23.2Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-in {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='M20.5756 24H11.4244C9.53616 24 8 22.4637 8 20.5755V11.4245C8 9.53616 9.53616 8 11.4244 8H20.5756C22.4638 8 24 9.53616 24 11.4245V20.5755C24 22.4637 22.4638 24 20.5756 24ZM11.4244 9.86779C10.566 9.86779 9.86779 10.5662 9.86779 11.4245V20.5755C9.86779 21.4339 10.566 22.1321 11.4244 22.1321H20.5756C21.4339 22.1321 22.1322 21.4339 22.1322 20.5755V11.4245C22.1322 10.5662 21.4339 9.86779 20.5756 9.86779H11.4244ZM13.4479 16.0001C13.4479 14.5929 14.5927 13.4481 15.9999 13.4481C17.4073 13.4481 18.5521 14.5929 18.5521 16.0001C18.5521 17.4073 17.4073 18.552 15.9999 18.552C14.5927 18.552 13.4479 17.4073 13.4479 16.0001ZM15.9999 20.4199C13.5628 20.4199 11.5801 18.4371 11.5801 16.0001C11.5801 13.5631 13.5628 11.5802 15.9999 11.5802C18.4371 11.5802 20.42 13.5631 20.42 16.0001C20.42 18.4371 18.4371 20.4199 15.9999 20.4199ZM20.5237 12.5141C20.9631 12.5141 21.3195 12.1578 21.3195 11.7184C21.3195 11.279 20.9631 10.9228 20.5237 10.9228C20.0843 10.9228 19.728 11.279 19.728 11.7184C19.728 12.1578 20.0843 12.5141 20.5237 12.5141Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-lk {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.5562 12.0348C9.6111 12.0348 9 11.3557 9 10.5158C9 9.65879 9.62958 9 10.5947 9C11.5599 9 12.151 9.65879 12.1694 10.5158C12.1694 11.3557 11.5599 12.0348 10.5562 12.0348ZM12.0709 23H9.07849V13.2337H12.0709V23ZM20.0076 23H23V17.2255C23 14.3499 21.5238 13.012 19.555 13.012C17.9403 13.012 16.9752 13.9518 16.5811 14.5888H16.5211L16.3841 13.2322H13.7842C13.8242 14.1095 13.8627 15.1289 13.8627 16.3481V22.9984H16.8566V17.3675C16.8566 17.0881 16.8766 16.8071 16.9567 16.6088C17.1737 16.0515 17.6648 15.4723 18.4914 15.4723C19.5735 15.4723 20.0076 16.3278 20.0076 17.5876V23Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-pi {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='M17.0027 19.6017C16.0624 19.5272 15.6686 19.0443 14.9329 18.582C14.5284 20.7844 14.0338 22.8965 12.5685 24C12.1152 20.6688 13.231 18.1704 13.7499 15.5152C12.8662 13.9715 13.8553 10.8667 15.7205 11.6299C18.0147 12.5735 13.7331 17.3692 16.6073 17.9693C19.6082 18.5931 20.8339 12.5672 18.9732 10.6102C16.2837 7.78091 11.1474 10.5453 11.7794 14.5953C11.932 15.5849 12.9196 15.8857 12.1732 17.2521C10.4529 16.8563 9.93854 15.4487 10.0057 13.5725C10.111 10.501 12.6662 8.3493 15.2275 8.05323C18.468 7.67958 21.5086 9.2866 21.9298 12.45C22.4015 16.0187 20.466 19.8803 17.0027 19.6017Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tm {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='M19.9986 22.235C19.4431 22.5181 18.9413 22.7139 18.4919 22.8298C18.0424 22.9413 17.5562 23 17.0346 23C16.441 23 15.9166 22.9172 15.4601 22.7561C15.0035 22.5949 14.6148 22.3645 14.2926 22.0649C13.9703 21.7682 13.747 21.4475 13.6226 21.1116C13.4982 20.7728 13.436 20.2849 13.436 19.6464V14.7343H12V12.7556C12.5074 12.5764 12.947 12.3204 13.3102 11.9846C13.6735 11.6518 13.9661 11.2528 14.1852 10.7844C14.4057 10.3176 14.5569 9.7198 14.6403 9H16.4876V12.5388H19.5689V14.7343H16.4876V18.3258C16.4876 19.1375 16.5272 19.6585 16.6078 19.8874C16.6869 20.1193 16.8353 20.3015 17.053 20.44C17.3413 20.6253 17.6707 20.7186 18.0382 20.7186C18.6968 20.7186 19.3498 20.4867 20 20.0244V22.235H19.9986Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tw {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='M21.1761 8H23.9362L17.9061 14.7774L25 24H19.4456L15.0951 18.4066L10.1172 24H7.35544L13.8052 16.7508L7 8H12.6955L16.6279 13.1126L21.1761 8ZM20.2073 22.3754H21.7368L11.8644 9.53928H10.2232L20.2073 22.3754Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-vm {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='M22.9303 12.8802C22.1483 17.2089 17.7763 20.877 16.4632 21.7142C15.1485 22.5485 13.9477 21.3772 13.5136 20.491C13.0148 19.4786 11.5231 13.9995 11.1321 13.5438C10.7411 13.0895 9.56805 13.9995 9.56805 13.9995L9 13.2662C9 13.2662 11.3815 10.471 13.1934 10.1236C15.1146 9.75249 15.1115 13.0198 15.5734 14.8353C16.0213 16.5914 16.3215 17.5949 16.711 17.5949C17.102 17.5949 17.8486 16.6181 18.6645 15.1158C19.4835 13.6136 18.6307 12.2864 17.0312 13.2306C17.6701 9.46005 23.7123 8.55157 22.9303 12.8802Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-yt {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='M8 16C8 21.3185 8.1376 22 16 22C23.8624 22 24 21.3185 24 16C24 10.6815 23.8624 10 16 10C8.1376 10 8 10.6815 8 16ZM14.9712 14.1308L18.5648 15.7431C18.8784 15.8846 18.8784 16.1154 18.5632 16.2569L14.9712 17.8692C14.6576 18.0092 14.4 17.8523 14.4 17.5185V14.4815C14.4 14.1477 14.6576 13.9908 14.9712 14.1308Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-wa {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='M25 15.7682C25 20.6108 21.0442 24.5364 16.1636 24.5364C14.6142 24.5364 13.1586 24.1404 11.8922 23.4454L7 25L8.595 20.2956C7.7904 18.9744 7.327 17.4248 7.327 15.7682C7.327 10.9256 11.2832 7 16.1636 7C21.0446 7 25 10.9256 25 15.7682ZM16.1643 8.39643C12.0675 8.39643 8.73506 11.7034 8.73506 15.7682C8.73506 17.3812 9.26086 18.875 10.1503 20.0902L9.22206 22.828L12.0771 21.9206C13.2501 22.6908 14.6553 23.14 16.1645 23.14C20.2607 23.14 23.5937 19.8334 23.5937 15.7686C23.5937 11.7038 20.2609 8.39643 16.1643 8.39643ZM20.3281 17.5938C20.4796 17.6665 20.582 17.7156 20.626 17.7877C20.6798 17.8773 20.6798 18.3075 20.4998 18.8099C20.3186 19.3115 19.4342 19.7955 19.0374 19.8313C18.9694 19.8374 18.913 19.851 18.8552 19.8648C18.5756 19.9319 18.263 20.007 16.438 19.2941C14.4031 18.4988 13.0618 16.5247 12.7846 16.1168C12.7618 16.0833 12.7462 16.0603 12.738 16.0495L12.7377 16.049C12.6277 15.904 11.8536 14.8833 11.8536 13.8269C11.8536 12.8375 12.3434 12.3186 12.5689 12.0796C12.5844 12.0632 12.5987 12.0481 12.6114 12.0343C12.81 11.8193 13.0448 11.7655 13.1892 11.7655C13.2639 11.7655 13.3385 11.7703 13.4107 11.7749C13.4782 11.7793 13.5435 11.7835 13.6044 11.7835C13.6196 11.7835 13.6355 11.7825 13.6521 11.7814C13.7741 11.7735 13.9328 11.7633 14.0916 12.1419C14.1495 12.2798 14.2333 12.4822 14.3223 12.6971C14.511 13.1526 14.7229 13.6643 14.7596 13.7373C14.814 13.8451 14.8502 13.9705 14.7776 14.1139C14.7673 14.1345 14.7577 14.154 14.7486 14.1727C14.694 14.2839 14.6542 14.3649 14.5612 14.4725C14.5254 14.514 14.4883 14.5588 14.4512 14.6036C14.3764 14.6939 14.3015 14.7844 14.2362 14.8489C14.128 14.9559 14.015 15.0721 14.1412 15.2871C14.2676 15.5025 14.7024 16.2057 15.3462 16.7753C16.0388 17.388 16.6405 17.647 16.9452 17.7782C17.0045 17.8037 17.0526 17.8244 17.0878 17.8419C17.3046 17.9495 17.4308 17.9315 17.5572 17.7877C17.6838 17.6443 18.099 17.1605 18.2432 16.9453C18.3874 16.7303 18.5322 16.7663 18.7308 16.8379C18.9288 16.9093 19.994 17.4295 20.2108 17.5369C20.2527 17.5576 20.2918 17.5764 20.3281 17.5938Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-ms {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='M16 7.00175L15.6075 7.00258C10.9213 7.11507 7.10806 10.8941 7 15.6259C7.01269 18.1015 8.10897 20.4474 9.99999 22.0453V24.625L10.0134 24.7247C10.057 24.8834 10.2024 25 10.375 25C10.4453 25 10.5141 24.9802 10.5737 24.943L12.664 23.6374L13.1243 23.7997C14.0522 24.0997 15.0227 24.252 16 24.2501C20.864 24.346 24.8889 20.4892 25 15.6259C24.8889 10.7627 20.864 6.90585 16 7.00175ZM17.5455 15.1722L21.4455 13.0462C21.6093 12.9569 21.8139 13.0016 21.9255 13.1512C22.0377 13.2999 22.0236 13.5085 21.8925 13.6409L17.3925 18.1404C17.2539 18.279 17.032 18.2875 16.8833 18.1599L14.4548 16.0789L10.5548 18.2049C10.4092 18.2839 10.2291 18.258 10.1116 18.1413C9.96471 17.9953 9.96401 17.7579 10.11 17.611L14.61 13.1114C14.7486 12.9729 14.9705 12.9644 15.1193 13.0919L17.5455 15.1722Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-em {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='M23.8217 9.273L15.9994 15.8639L8.17775 9.273C8.49745 9.10378 8.85903 9 9.24944 9H22.7493C23.1392 9 23.5007 9.10378 23.8217 9.273ZM24.7107 20.8754C24.8885 20.5655 24.9995 20.2132 24.9995 19.8332V11.1667C24.9995 10.7425 24.8678 10.35 24.6491 10.0158L19.0275 14.7521L24.7107 20.8754ZM18.1807 15.4652L16.3701 16.9918C16.2642 17.0807 16.1323 17.125 15.9999 17.125C15.8675 17.125 15.7356 17.0807 15.6297 16.9918L13.8186 15.4652L8.06349 21.6667C8.40845 21.8752 8.81273 22 9.24995 22H22.7498C23.187 22 23.5915 21.8752 23.9363 21.6667L18.1807 15.4652ZM7 11.1667C7 10.7425 7.13184 10.3499 7.35049 10.0157L12.9715 14.751L7.28895 20.8754C7.11047 20.5655 7 20.2132 7 19.8333V11.1667Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-phone {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='M25.1854 19.7038L20.6058 17.5436C20.3983 17.45 20.1719 17.4123 19.9471 17.4341C19.7224 17.4558 19.5063 17.5362 19.3184 17.6681C19.2994 17.6809 19.2812 17.6953 19.2641 17.7109L16.8707 19.8538C16.8458 19.8681 16.8182 19.8761 16.7899 19.8771C16.7616 19.8782 16.7335 19.8723 16.7078 19.86C15.1693 19.0783 13.5756 17.4109 12.8301 15.8139C12.8177 15.7872 12.8112 15.7579 12.8112 15.7282C12.8112 15.6985 12.8177 15.6692 12.8301 15.6425L14.8727 13.0914C14.8873 13.0725 14.9009 13.0527 14.9134 13.0322C15.0369 12.8337 15.1115 12.606 15.1304 12.3696C15.1494 12.1332 15.1121 11.8955 15.022 11.678L12.9842 6.86562C12.8685 6.58154 12.6684 6.34462 12.4139 6.19044C12.1594 6.03625 11.8643 5.97311 11.5728 6.01049C10.306 6.1858 9.14312 6.84066 8.30158 7.8527C7.46003 8.86474 6.99736 10.1647 7.00001 11.5097C7.00001 19.4998 13.1752 26 20.7658 26C22.0434 26.0026 23.2783 25.5155 24.2397 24.6297C25.2011 23.7439 25.8232 22.52 25.99 21.1865C26.0254 20.8812 25.9663 20.5719 25.8213 20.3047C25.6763 20.0376 25.4533 19.8268 25.1854 19.7038ZM20.7658 24.7755C13.817 24.7755 8.16332 18.8242 8.16332 11.5097C8.16008 10.4626 8.5191 9.45014 9.1733 8.66141C9.82751 7.87268 10.7321 7.36165 11.7182 7.2238H11.7405C11.7795 7.22456 11.8175 7.23774 11.8493 7.26159C11.8811 7.28545 11.9054 7.31887 11.9189 7.35747L13.9643 12.1648C13.976 12.1915 13.982 12.2206 13.982 12.25C13.982 12.2794 13.976 12.3085 13.9643 12.3352L11.9179 14.8924C11.9026 14.9107 11.8887 14.9301 11.8762 14.9506C11.7481 15.1564 11.6727 15.3935 11.6573 15.6389C11.6418 15.8844 11.6868 16.1299 11.788 16.3517C12.6479 18.2048 14.4219 20.0579 16.2017 20.9631C16.4137 21.0689 16.648 21.1152 16.882 21.0973C17.1159 21.0794 17.3415 20.998 17.5366 20.861C17.5551 20.8478 17.5735 20.8335 17.5909 20.8182L19.9835 18.6752C20.0071 18.6619 20.0332 18.654 20.06 18.6523C20.0867 18.6505 20.1135 18.6549 20.1386 18.665L24.7191 20.8253C24.7565 20.8421 24.788 20.8708 24.809 20.9074C24.8301 20.9441 24.8396 20.9867 24.8364 21.0294C24.7061 22.0678 24.2211 23.0208 23.472 23.7102C22.7228 24.3996 21.7608 24.7783 20.7658 24.7755Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.96686 24.5863C7.78043 24.5863 7.62463 24.5233 7.49947 24.3971C7.3743 24.2709 7.31129 24.1155 7.31041 23.931C7.30953 23.7465 7.37255 23.5916 7.49947 23.4663C7.62638 23.341 7.78218 23.2788 7.96686 23.2796H9.43204V12.9369C9.43204 11.2311 9.97471 9.73119 11.06 8.4371C12.1454 7.143 13.5213 6.33669 15.1878 6.01817V5.30541C15.1878 4.94251 15.3151 4.63443 15.5698 4.38118C15.8245 4.12706 16.1339 4 16.498 4C16.8621 4 17.1724 4.12706 17.4289 4.38118C17.6853 4.6353 17.8136 4.94338 17.8136 5.30541V6.01817C19.4801 6.33582 20.856 7.14213 21.9413 8.4371C23.0266 9.73206 23.5693 11.232 23.5693 12.9369V23.2796H25.0345C25.2209 23.2796 25.3767 23.3423 25.5019 23.4676C25.6279 23.5929 25.6909 23.7483 25.6909 23.9336C25.6909 24.119 25.6279 24.2739 25.5019 24.3984C25.3758 24.5228 25.22 24.585 25.0345 24.585L7.96686 24.5863ZM16.4967 28C15.912 28 15.4131 27.7933 15 27.3799C14.5869 26.9665 14.3803 26.4705 14.3803 25.8918H18.621C18.621 26.4748 18.4131 26.9718 17.9974 27.3825C17.5807 27.7933 17.0805 28 16.4967 28ZM10.7449 23.2809H22.2577V12.9369C22.2577 11.3503 21.6971 9.99967 20.5759 8.88485C19.4547 7.77003 18.0963 7.21305 16.5007 7.21392C14.9051 7.21479 13.5467 7.77177 12.4254 8.88485C11.3042 9.99793 10.7441 11.3486 10.7449 12.9369V23.2809ZM5.65617 12.912C5.46011 12.912 5.2995 12.8416 5.17433 12.7006C5.04917 12.5605 4.9914 12.389 5.00103 12.1862C5.09206 10.8051 5.41722 9.50101 5.97651 8.27392C6.53493 7.04683 7.26796 5.96116 8.17561 5.01692C8.3244 4.87767 8.49114 4.79804 8.67582 4.77803C8.8605 4.75801 9.02023 4.82067 9.15503 4.966C9.28982 5.11221 9.35196 5.27539 9.34146 5.45553C9.33183 5.63655 9.25218 5.79886 9.10251 5.94245C8.31565 6.76486 7.6824 7.70476 7.20275 8.76214C6.72311 9.81953 6.43821 10.9518 6.34806 12.1588C6.3218 12.3616 6.24872 12.5378 6.12881 12.6875C6.00977 12.8372 5.85222 12.912 5.65617 12.912ZM27.3583 12.912C27.1535 12.912 26.9915 12.8372 26.8725 12.6875C26.7535 12.5378 26.6804 12.3616 26.6533 12.1588C26.5622 10.9518 26.2808 9.82388 25.8091 8.7752C25.3382 7.72565 24.7097 6.7901 23.9238 5.96856C23.768 5.82584 23.6778 5.65961 23.6533 5.46989C23.6288 5.28017 23.6844 5.11221 23.82 4.966C23.9557 4.8198 24.1194 4.76149 24.3111 4.79108C24.5027 4.82067 24.6739 4.90422 24.8244 5.04172C25.732 5.98597 26.4651 7.06772 27.0235 8.28697C27.5828 9.50536 27.9079 10.8051 27.999 12.1862C28.0086 12.389 27.9504 12.5605 27.8244 12.7006C27.6992 12.8416 27.5434 12.912 27.357 12.912' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-help {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='M16.0373 22.9733C16.3324 22.9733 16.5813 22.872 16.784 22.6693C16.9867 22.4667 17.088 22.2178 17.088 21.9227C17.088 21.6276 16.9858 21.3787 16.7813 21.176C16.5787 20.9733 16.3298 20.872 16.0347 20.872C15.7396 20.872 15.4907 20.9738 15.288 21.1773C15.0853 21.3809 14.9844 21.6298 14.9853 21.924C14.9853 22.2191 15.0867 22.468 15.2893 22.6707C15.4938 22.8733 15.7431 22.9747 16.0373 22.9747M16.004 28C14.3453 28 12.7853 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667ZM16.0827 10.3187C16.7582 10.3187 17.3396 10.528 17.8267 10.9467C18.3156 11.3653 18.56 11.8893 18.56 12.5187C18.56 13.0076 18.4222 13.4493 18.1467 13.844C17.8729 14.2387 17.5556 14.6027 17.1947 14.936C16.7378 15.3502 16.3356 15.8058 15.988 16.3027C15.6404 16.8004 15.4409 17.3484 15.3893 17.9467C15.3724 18.1209 15.4271 18.2667 15.5533 18.384C15.6778 18.5004 15.8244 18.5587 15.9933 18.5587C16.172 18.5587 16.3227 18.4991 16.4453 18.38C16.5671 18.26 16.6444 18.1187 16.6773 17.956C16.7662 17.5071 16.9449 17.1076 17.2133 16.7573C17.4809 16.408 17.7751 16.0773 18.096 15.7653C18.5573 15.3067 18.9667 14.8067 19.324 14.2653C19.6822 13.7249 19.8613 13.1218 19.8613 12.456C19.8613 11.4773 19.4898 10.6693 18.7467 10.032C18.0044 9.39556 17.1333 9.07733 16.1333 9.07733C15.392 9.07733 14.7018 9.25067 14.0627 9.59733C13.4244 9.944 12.9138 10.424 12.5307 11.0373C12.4436 11.1849 12.4156 11.3373 12.4467 11.4947C12.4778 11.652 12.5622 11.7716 12.7 11.8533C12.876 11.9458 13.0538 11.9671 13.2333 11.9173C13.4129 11.8676 13.5711 11.7644 13.708 11.608C14.004 11.24 14.3524 10.9333 14.7533 10.688C15.1533 10.4409 15.5964 10.3187 16.0827 10.3187Z' fill='%238B8D8F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info {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='M16 22C16.1902 22 16.3489 21.936 16.476 21.808C16.6031 21.68 16.6667 21.5218 16.6667 21.3333V15.3333C16.6667 15.144 16.6027 14.9858 16.4747 14.8587C16.3467 14.7316 16.188 14.6676 15.9987 14.6667C15.8093 14.6658 15.6511 14.7298 15.524 14.8587C15.3969 14.9876 15.3333 15.1458 15.3333 15.3333V21.3333C15.3333 21.5227 15.3973 21.6809 15.5253 21.808C15.6533 21.9351 15.812 21.9991 16.0013 22M16 12.7693C16.2329 12.7693 16.428 12.6907 16.5853 12.5333C16.7427 12.376 16.8209 12.1813 16.82 11.9493C16.8191 11.7173 16.7404 11.5222 16.584 11.364C16.4276 11.2058 16.2329 11.1271 16 11.128C15.7671 11.1289 15.5724 11.2076 15.416 11.364C15.2596 11.5204 15.1809 11.7156 15.18 11.9493C15.1791 12.1831 15.2578 12.3778 15.416 12.5333C15.5742 12.6889 15.7689 12.7676 16 12.7693ZM16.004 28C14.3444 28 12.7844 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667Z' fill='%231890FF'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-success {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='M14.0827 19.3227L10.7547 15.9947C10.6293 15.8702 10.476 15.8036 10.2947 15.7947C10.1133 15.7858 9.952 15.8524 9.81067 15.9947C9.66933 16.1369 9.59822 16.2942 9.59733 16.4667C9.59644 16.6391 9.66756 16.7964 9.81067 16.9387L13.328 20.456C13.5431 20.672 13.7942 20.78 14.0813 20.78C14.3684 20.78 14.62 20.672 14.836 20.456L22.1387 13.1547C22.2631 13.0293 22.3298 12.876 22.3387 12.6947C22.3476 12.5133 22.2809 12.352 22.1387 12.2107C21.9964 12.0693 21.8391 11.9982 21.6667 11.9973C21.4942 11.9964 21.3369 12.0676 21.1947 12.2107L14.0827 19.3227ZM16.004 28C14.3453 28 12.7853 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667Z' fill='%233F9912'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-error {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='M16 16.944L20.328 21.272C20.4524 21.3964 20.6053 21.4631 20.7867 21.472C20.968 21.4809 21.1298 21.4142 21.272 21.272C21.4142 21.1298 21.4853 20.9724 21.4853 20.8C21.4853 20.6276 21.4142 20.4702 21.272 20.328L16.944 16L21.272 11.672C21.3964 11.5476 21.4631 11.3947 21.472 11.2133C21.4809 11.032 21.4142 10.8702 21.272 10.728C21.1298 10.5858 20.9724 10.5147 20.8 10.5147C20.6276 10.5147 20.4702 10.5858 20.328 10.728L16 15.056L11.672 10.728C11.5476 10.6036 11.3947 10.5369 11.2133 10.528C11.032 10.5191 10.8702 10.5858 10.728 10.728C10.5858 10.8702 10.5147 11.0276 10.5147 11.2C10.5147 11.3724 10.5858 11.5298 10.728 11.672L15.056 16L10.728 20.328C10.6036 20.4524 10.5369 20.6058 10.528 20.788C10.5191 20.9684 10.5858 21.1298 10.728 21.272C10.8702 21.4142 11.0276 21.4853 11.2 21.4853C11.3724 21.4853 11.5298 21.4142 11.672 21.272L16 16.944ZM16.004 28C14.3444 28 12.7844 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667Z' fill='%23DA343E'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-warning {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='M16 21.9493C16.2329 21.9493 16.428 21.8707 16.5853 21.7133C16.7418 21.556 16.82 21.3609 16.82 21.128C16.82 20.896 16.7413 20.7013 16.584 20.544C16.4267 20.3867 16.232 20.3076 16 20.3067C15.768 20.3058 15.5733 20.3844 15.416 20.5427C15.2587 20.7009 15.18 20.8956 15.18 21.1267C15.18 21.3578 15.2587 21.5529 15.416 21.712C15.5733 21.8711 15.768 21.9511 16 21.9493ZM16 17.5373C16.1902 17.5373 16.3489 17.4733 16.476 17.3453C16.6031 17.2173 16.6667 17.0591 16.6667 16.8707V10.204C16.6667 10.0147 16.6027 9.85644 16.4747 9.72933C16.3467 9.60222 16.188 9.53822 15.9987 9.53733C15.8093 9.53644 15.6511 9.60044 15.524 9.72933C15.3969 9.85822 15.3333 10.0164 15.3333 10.204V16.8707C15.3333 17.0591 15.3973 17.2173 15.5253 17.3453C15.6533 17.4733 15.812 17.5373 16.0013 17.5373M16.004 28C14.3444 28 12.7844 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667Z' fill='%23FAAD14'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-close {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='M24.7797 23.8012C24.8477 23.8646 24.9022 23.941 24.9401 24.0259C24.9779 24.1108 24.9983 24.2025 24.9999 24.2955C25.0015 24.3884 24.9844 24.4808 24.9496 24.567C24.9148 24.6532 24.863 24.7315 24.7972 24.7972C24.7315 24.863 24.6532 24.9148 24.567 24.9496C24.4808 24.9844 24.3884 25.0015 24.2955 24.9999C24.2025 24.9983 24.1108 24.9779 24.0259 24.9401C23.941 24.9022 23.8646 24.8477 23.8012 24.7797L15.9827 16.9623L8.16427 24.7797C8.03303 24.9019 7.85945 24.9685 7.68009 24.9654C7.50074 24.9622 7.32961 24.8895 7.20277 24.7627C7.07593 24.6358 7.00327 24.4647 7.00011 24.2854C6.99694 24.106 7.06352 23.9324 7.18581 23.8012L15.0031 15.9827L7.18581 8.16427C7.06352 8.03303 6.99694 7.85945 7.00011 7.68009C7.00327 7.50074 7.07593 7.32961 7.20277 7.20277C7.32961 7.07593 7.50074 7.00327 7.68009 7.00011C7.85945 6.99694 8.03303 7.06352 8.16427 7.18581L15.9827 15.0031L23.8012 7.18581C23.9324 7.06352 24.106 6.99694 24.2854 7.00011C24.4647 7.00327 24.6358 7.07593 24.7627 7.20277C24.8895 7.32961 24.9622 7.50074 24.9654 7.68009C24.9685 7.85945 24.9019 8.03303 24.7797 8.16427L16.9623 15.9827L24.7797 23.8012Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-delete {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.5489 26C9.94636 26 9.43065 25.7892 9.00179 25.3675C8.57203 24.9467 8.35715 24.4406 8.35715 23.8494V7.35701H7.67858C7.48587 7.35701 7.32482 7.29309 7.19544 7.16525C7.06606 7.03741 7.00091 6.87895 7.00001 6.68985C6.9991 6.50076 7.06425 6.34274 7.19544 6.21579C7.32663 6.08884 7.48768 6.02536 7.67858 6.02536H12.4286C12.4286 5.75016 12.5326 5.51046 12.7407 5.30628C12.9488 5.10209 13.1931 5 13.4736 5H19.5264C19.8069 5 20.0512 5.10209 20.2593 5.30628C20.4674 5.51046 20.5714 5.75016 20.5714 6.02536H25.3214C25.5141 6.02536 25.6752 6.08928 25.8046 6.21712C25.9349 6.34496 26 6.50342 26 6.69252C26 6.88072 25.9349 7.03874 25.8046 7.16658C25.6743 7.29442 25.5132 7.35789 25.3214 7.35701H24.6429V23.8494C24.6429 24.4406 24.428 24.9467 23.9982 25.3675C23.5694 25.7892 23.0536 26 22.4511 26H10.5489ZM23.2857 7.35701H9.71429V23.8494C9.71429 24.0882 9.79256 24.2844 9.94908 24.438C10.1056 24.5916 10.3056 24.6684 10.5489 24.6684H22.4511C22.6945 24.6684 22.8944 24.5916 23.0509 24.438C23.2075 24.2844 23.2857 24.0882 23.2857 23.8494V7.35701ZM14.2037 22.0051C14.3964 22.0051 14.5575 21.9412 14.6869 21.8133C14.8162 21.6855 14.8814 21.5275 14.8823 21.3393V10.6861C14.8823 10.497 14.8171 10.339 14.6869 10.212C14.5566 10.0851 14.3951 10.0212 14.2024 10.0203C14.0096 10.0194 13.8486 10.0833 13.7192 10.212C13.5898 10.3408 13.5251 10.4988 13.5251 10.6861V21.3393C13.5251 21.5283 13.5903 21.6864 13.7206 21.8133C13.8509 21.9403 14.0119 22.0042 14.2037 22.0051ZM18.7976 22.0051C18.9904 22.0051 19.1514 21.9412 19.2808 21.8133C19.4102 21.6855 19.4749 21.5275 19.4749 21.3393V10.6861C19.4749 10.497 19.4097 10.339 19.2794 10.212C19.1491 10.0851 18.9881 10.0212 18.7963 10.0203C18.6045 10.0194 18.4434 10.0833 18.3131 10.212C18.1829 10.3408 18.1177 10.4988 18.1177 10.6861V21.3393C18.1177 21.5283 18.1829 21.6864 18.3131 21.8133C18.4434 21.9403 18.6049 22.0042 18.7976 22.0051Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-search {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='M18.4723 19.4766C17.154 20.5703 15.4607 21.2278 13.6139 21.2278C9.40886 21.2278 6 17.819 6 13.6139C6 9.40886 9.40886 6 13.6139 6C17.819 6 21.2278 9.40886 21.2278 13.6139C21.2278 15.4604 20.5706 17.1533 19.4772 18.4715L25.7923 24.7866C26.0698 25.0641 26.0698 25.5141 25.7923 25.7916C25.5148 26.0691 25.0648 26.0691 24.7873 25.7916L18.4723 19.4766ZM19.8066 13.6139C19.8066 17.034 17.034 19.8066 13.6139 19.8066C10.1938 19.8066 7.42126 17.034 7.42126 13.6139C7.42126 10.1938 10.1938 7.42126 13.6139 7.42126C17.034 7.42126 19.8066 10.1938 19.8066 13.6139Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist {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='M8 27V9.08387C8 8.49032 8.19292 7.99484 8.57875 7.59742C8.96458 7.2 9.44458 7.00086 10.0187 7H20.9813C21.5563 7 22.0363 7.19914 22.4213 7.59742C22.8063 7.9957 22.9992 8.49118 23 9.08387V27L15.5 23.6748L8 27ZM9.25 25L15.5 22.2258L21.75 25V9.08387C21.75 8.88602 21.67 8.70409 21.51 8.53806C21.35 8.37204 21.1737 8.28946 20.9813 8.29032H10.0187C9.82708 8.29032 9.65083 8.3729 9.49 8.53806C9.32917 8.70323 9.24917 8.88516 9.25 9.08387V25Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {background-image: url("data:image/svg+xml;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 27V9.08387C8 8.49032 8.19292 7.99484 8.57875 7.59742C8.96458 7.2 9.44458 7.00086 10.0187 7H20.9813C21.5563 7 22.0363 7.19914 22.4213 7.59742C22.8063 7.9957 22.9992 8.49118 23 9.08387V27L15.5 23.6748L8 27Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){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='M9.07643 26C8.485 26 7.99129 25.8032 7.59529 25.4097C7.19929 25.0161 7.00086 24.525 7 23.9364V10.1747C7 9.58694 7.19843 9.09628 7.59529 8.70272C7.99214 8.30917 8.48586 8.11196 9.07643 8.11111H11.5V7.47222C11.5 6.23022 11.9376 5.17435 12.8127 4.30461C13.6879 3.43487 14.7503 3 16 3C17.2497 3 18.3121 3.43487 19.1873 4.30461C20.0624 5.17435 20.5 6.23022 20.5 7.47222V8.11111H22.9236C23.515 8.11111 24.0087 8.30831 24.4047 8.70272C24.8007 9.09713 24.9991 9.5878 25 10.1747V23.9364C25 24.5242 24.802 25.0148 24.406 25.4084C24.01 25.8019 23.5159 25.9991 22.9236 26H9.07643ZM9.07643 24.7222H22.9236C23.1207 24.7222 23.302 24.6404 23.4674 24.4769C23.6329 24.3133 23.7151 24.1332 23.7143 23.9364V10.1747C23.7143 9.9788 23.632 9.79863 23.4674 9.63422C23.3029 9.46982 23.1216 9.38804 22.9236 9.38889H20.5V12.5833C20.5 12.7648 20.4387 12.9168 20.3161 13.0395C20.1936 13.1622 20.0406 13.2231 19.8571 13.2222C19.6737 13.2214 19.5207 13.1605 19.3981 13.0395C19.2756 12.9185 19.2143 12.7665 19.2143 12.5833V9.38889H12.7857V12.5833C12.7857 12.7648 12.7244 12.9168 12.6019 13.0395C12.4793 13.1622 12.3263 13.2231 12.1429 13.2222C11.9594 13.2214 11.8064 13.1605 11.6839 13.0395C11.5613 12.9185 11.5 12.7665 11.5 12.5833V9.38889H9.07643C8.87929 9.38889 8.698 9.47067 8.53257 9.63422C8.36714 9.79778 8.28486 9.97794 8.28571 10.1747V23.9364C8.28571 24.1323 8.368 24.3125 8.53257 24.4769C8.69714 24.6413 8.87843 24.7231 9.07643 24.7222ZM12.7857 8.11111H19.2143V7.47222C19.2143 6.57267 18.9049 5.81537 18.286 5.20033C17.6671 4.5853 16.9051 4.27778 16 4.27778C15.0949 4.27778 14.3329 4.5853 13.714 5.20033C13.0951 5.81537 12.7857 6.57267 12.7857 7.47222V8.11111Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.07643 26C8.485 26 7.99129 25.8032 7.59529 25.4097C7.19929 25.0161 7.00086 24.525 7 23.9364V10.1747C7 9.58694 7.19843 9.09628 7.59529 8.70272C7.99214 8.30917 8.48586 8.11196 9.07643 8.11111H11.5V7.47222C11.5 6.23022 11.9376 5.17435 12.8127 4.30461C13.6879 3.43487 14.7503 3 16 3C17.2497 3 18.3121 3.43487 19.1873 4.30461C20.0624 5.17435 20.5 6.23022 20.5 7.47222V8.11111H22.9236C23.515 8.11111 24.0087 8.30831 24.4047 8.70272C24.8007 9.09713 24.9991 9.5878 25 10.1747V23.9364C25 24.5242 24.802 25.0148 24.406 25.4084C24.01 25.8019 23.5159 25.9991 22.9236 26H9.07643ZM12.7857 8.11111H19.2143V7.47222C19.2143 6.57267 18.9049 5.81537 18.286 5.20033C17.6671 4.5853 16.9051 4.27778 16 4.27778C15.0949 4.27778 14.3329 4.5853 13.714 5.20033C13.0951 5.81537 12.7857 6.57267 12.7857 7.47222V8.11111ZM19.8571 13.2222C20.0397 13.2222 20.1927 13.1613 20.3161 13.0395C20.4396 12.9177 20.5009 12.7656 20.5 12.5833V9.38889H19.2143V12.5833C19.2143 12.7648 19.2756 12.9168 19.3981 13.0395C19.5207 13.1622 19.6737 13.2231 19.8571 13.2222ZM12.1429 13.2222C12.3254 13.2222 12.4784 13.1613 12.6019 13.0395C12.7253 12.9177 12.7866 12.7656 12.7857 12.5833V9.38889H11.5V12.5833C11.5 12.7648 11.5613 12.9168 11.6839 13.0395C11.8064 13.1622 11.9594 13.2231 12.1429 13.2222Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {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='M13.8493 20.2185H4.66668C4.47734 20.2185 4.31868 20.1553 4.19068 20.0289C4.06268 19.9026 3.99912 19.7448 4.00001 19.5557C4.0009 19.3666 4.06445 19.2089 4.19068 19.0825C4.31868 18.9561 4.47734 18.8929 4.66668 18.8929H13.8493L10.196 15.261C10.0707 15.1373 10.004 14.9862 9.996 14.8077C9.988 14.6292 10.0547 14.4675 10.196 14.3226C10.3427 14.1767 10.5009 14.1038 10.6707 14.1038C10.8404 14.1038 10.9991 14.1767 11.1467 14.3226L15.656 18.8068C15.7724 18.9217 15.8542 19.0396 15.9013 19.1607C15.9484 19.2818 15.972 19.4134 15.972 19.5557C15.972 19.698 15.9484 19.8296 15.9013 19.9507C15.8542 20.0718 15.7724 20.1897 15.656 20.3046L11.1387 24.7968C11.0089 24.9258 10.856 24.9934 10.68 24.9996C10.504 25.0058 10.3422 24.9356 10.1947 24.7889C10.0524 24.6431 9.98045 24.4866 9.97867 24.3196C9.97689 24.1526 10.0489 23.9962 10.1947 23.8504L13.8493 20.2185ZM18.1507 13.107L21.804 16.739C21.9293 16.8627 21.996 17.0134 22.004 17.191C22.012 17.3686 21.9453 17.5308 21.804 17.6774C21.6573 17.8233 21.4991 17.8962 21.3293 17.8962C21.1596 17.8962 21.0009 17.8233 20.8533 17.6774L16.344 13.1932C16.2276 13.0783 16.1458 12.9604 16.0987 12.8393C16.0516 12.7182 16.028 12.5866 16.028 12.4443C16.028 12.302 16.0516 12.1703 16.0987 12.0493C16.1458 11.9282 16.2276 11.8098 16.344 11.694L20.8613 7.20318C20.9911 7.07416 21.144 7.00656 21.32 7.00038C21.496 6.99419 21.6578 7.06444 21.8053 7.21113C21.9475 7.35694 22.0196 7.51291 22.0213 7.67904C22.0231 7.84517 21.9511 8.00159 21.8053 8.14828L18.152 11.7802H27.3333C27.5227 11.7802 27.6813 11.8438 27.8093 11.9711C27.9373 12.0983 28.0009 12.2561 28 12.4443C27.9991 12.6325 27.9355 12.7898 27.8093 12.9162C27.6813 13.0434 27.5227 13.107 27.3333 13.107H18.1507Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {background-image: url("data:image/svg+xml;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='M9.97867 20.2185H4.66668C4.47734 20.2185 4.31868 20.1553 4.19068 20.0289C4.06268 19.9026 3.99912 19.7448 4.00001 19.5557C4.0009 19.3666 4.06445 19.2089 4.19068 19.0825C4.31868 18.9561 4.47734 18.8929 4.66668 18.8929H9.996L9.996 14.8077C9.988 14.6292 10.0547 14.4675 10.196 14.3226C10.3427 14.1767 10.5009 14.1038 10.6707 14.1038C10.8404 14.1038 10.9991 14.1767 11.1467 14.3226L15.656 18.8068C15.7724 18.9217 15.8542 19.0396 15.9013 19.1607C15.9484 19.2818 15.972 19.4134 15.972 19.5557C15.972 19.698 15.9484 19.8296 15.9013 19.9507C15.8542 20.0718 15.7724 20.1897 15.656 20.3046L11.1387 24.7968C11.0089 24.9258 10.856 24.9934 10.68 24.9996C10.504 25.0058 10.3422 24.9356 10.1947 24.7889C10.0524 24.6431 9.98045 24.4866 9.97867 24.3196C9.96508 23.0432 9.97867 20.2185 9.97867 20.2185ZM22.004 13.107V17.191C22.012 17.3686 21.9453 17.5308 21.804 17.6774C21.6573 17.8233 21.4991 17.8962 21.3293 17.8962C21.1595 17.8962 21.0009 17.8233 20.8533 17.6774L16.344 13.1932C16.2276 13.0783 16.1458 12.9604 16.0987 12.8393C16.0516 12.7182 16.028 12.5866 16.028 12.4443C16.028 12.302 16.0516 12.1703 16.0987 12.0493C16.1458 11.9282 16.2276 11.8098 16.344 11.694L20.8613 7.20318C20.9911 7.07416 21.144 7.00656 21.32 7.00038C21.496 6.99419 21.6578 7.06444 21.8053 7.21113C21.9475 7.35694 22.0195 7.51291 22.0213 7.67904V11.7802H27.3333C27.5227 11.7802 27.6813 11.8438 27.8093 11.9711C27.9373 12.0983 28.0009 12.2561 28 12.4443C27.9991 12.6325 27.9355 12.7898 27.8093 12.9162C27.6813 13.0434 27.5227 13.107 27.3333 13.107H22.004Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location {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='M16 27C14.4861 27 13.0602 26.7107 11.7222 26.1322C10.3843 25.5537 9.21912 24.7674 8.22667 23.7733C7.23423 22.7793 6.44793 21.6141 5.86778 20.2778C5.28764 18.9415 4.99838 17.5156 5.00001 16C5.00001 14.482 5.28927 13.0549 5.86778 11.7186C6.4463 10.3823 7.2326 9.2183 8.22667 8.22667C9.22075 7.23504 10.3859 6.44915 11.7222 5.869C13.0585 5.28885 14.4844 4.99919 16 5C17.518 5 18.9452 5.28926 20.2814 5.86778C21.6177 6.4463 22.7821 7.23259 23.7746 8.22667C24.767 9.22074 25.5525 10.3847 26.131 11.7186C26.7095 13.0524 26.9992 14.4796 27 16C27 17.5139 26.7107 18.9398 26.1322 20.2778C25.5537 21.6157 24.7674 22.7809 23.7733 23.7733C22.7793 24.7658 21.6153 25.5521 20.2814 26.1322C18.9476 26.7124 17.5204 27.0016 16 27ZM16 25.7876C16.717 24.866 17.3086 23.9611 17.7747 23.073C18.2407 22.1849 18.6192 21.1908 18.9101 20.0908H13.0899C13.4126 21.2527 13.7988 22.2777 14.2486 23.1659C14.6983 24.054 15.2822 24.9279 16 25.7876ZM14.4441 25.6042C13.8737 24.932 13.3531 24.1009 12.8821 23.1109C12.4112 22.1217 12.0608 21.1146 11.831 20.0896H7.14256C7.8433 21.61 8.83615 22.8567 10.1211 23.8296C11.4061 24.8024 12.8467 25.394 14.4429 25.6042M17.5547 25.6042C19.1501 25.394 20.5907 24.8024 21.8764 23.8296C23.1622 22.8567 24.1551 21.61 24.855 20.0896H20.169C19.8594 21.1301 19.4695 22.1453 18.9993 23.1353C18.5284 24.1245 18.0468 24.9475 17.5547 25.6042ZM6.6439 18.8673H11.5756C11.4827 18.3662 11.4175 17.8777 11.38 17.4019C11.3409 16.926 11.3213 16.4587 11.3213 16C11.3213 15.5413 11.3405 15.074 11.3788 14.5981C11.4171 14.1223 11.4823 13.6334 11.5743 13.1314H6.64634C6.51353 13.5551 6.40964 14.0167 6.33467 14.5162C6.25971 15.0157 6.22223 15.5103 6.22223 16C6.22223 16.4897 6.2593 16.9843 6.33345 17.4838C6.4076 17.9833 6.51149 18.4444 6.64512 18.8673M12.799 18.8673H19.201C19.2939 18.3662 19.3591 17.8855 19.3966 17.4251C19.434 16.9647 19.454 16.4897 19.4564 16C19.4589 15.5103 19.4397 15.0353 19.399 14.5749C19.3583 14.1145 19.2931 13.6338 19.2034 13.1327H12.7978C12.7057 13.6338 12.6405 14.1145 12.6022 14.5749C12.5639 15.0353 12.5448 15.5103 12.5448 16C12.5448 16.4897 12.5639 16.9647 12.6022 17.4251C12.6405 17.8855 12.7069 18.3662 12.799 18.8673ZM20.4244 18.8673H25.3549C25.4877 18.4436 25.5916 17.9824 25.6666 17.4838C25.7415 16.9851 25.7786 16.4905 25.7778 16C25.777 15.5095 25.7399 15.0149 25.6666 14.5162C25.5932 14.0176 25.4893 13.5564 25.3549 13.1327H20.4232C20.5161 13.6338 20.5813 14.1223 20.6188 14.5981C20.6579 15.074 20.6774 15.5413 20.6774 16C20.6774 16.4587 20.6583 16.926 20.62 17.4019C20.5817 17.8777 20.5165 18.3666 20.4244 18.8686M20.1702 11.9104H24.8562C24.14 10.359 23.159 9.11237 21.9131 8.17045C20.6664 7.22852 19.214 6.62963 17.5559 6.37378C18.1263 7.12341 18.6392 7.98141 19.0947 8.94778C19.5501 9.91415 19.9087 10.9017 20.1702 11.9104ZM13.0899 11.9104H18.9101C18.5874 10.7632 18.1894 9.72593 17.716 8.79867C17.2426 7.87141 16.6706 7.00933 16 6.21245C15.3294 7.00852 14.7574 7.87059 14.284 8.79867C13.8114 9.72593 13.4134 10.7632 13.0899 11.9104ZM7.14378 11.9104H11.8298C12.0922 10.9009 12.4507 9.91333 12.9053 8.94778C13.36 7.98222 13.8729 7.12382 14.4441 6.37256C12.7705 6.62922 11.3144 7.23219 10.0759 8.18145C8.83738 9.1307 7.8596 10.3733 7.14256 11.9092' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-tracking {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='M16 27.5166C13.0775 24.8357 10.8934 22.3751 9.41837 20.1359C7.81916 17.7083 7.1 15.6124 7.1 13.8214C7.1 11.5148 8.03277 9.2986 9.69971 7.66142C11.3673 6.02359 13.6332 5.1 16 5.1C18.3668 5.1 20.6327 6.02359 22.3003 7.66142C23.9672 9.2986 24.9 11.5148 24.9 13.8214C24.9 15.6124 24.1808 17.7083 22.5816 20.1359C21.1066 22.3751 18.9225 24.8357 16 27.5166ZM6 13.8214C6 17.9875 9.33273 23.0482 16 29C22.6673 23.0482 26 17.9875 26 13.8214C26 11.2166 24.9464 8.7185 23.0711 6.87663C21.1957 5.03475 18.6522 4 16 4C13.3478 4 10.8043 5.03475 8.92893 6.87663C7.05357 8.7185 6 11.2166 6 13.8214Z' fill='black'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 9C20.5523 9 21 9.44772 21 10V18C21 18.5523 20.5523 19 20 19H12C11.4477 19 11 18.5523 11 18V10C11 9.44772 11.4477 9 12 9H20ZM12.1 17.9V10.1H14V13C14 13.5523 14.4477 14 15 14H17C17.5523 14 18 13.5523 18 13V10.1H19.9V17.9H12.1ZM16.9 10.1H15.1V12.9H16.9V10.1Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user:not(.active){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='M16 14.616C14.8219 14.616 13.8129 14.1938 12.9729 13.3493C12.1329 12.5047 11.7133 11.4908 11.7143 10.3073C11.7152 9.12385 12.1348 8.10891 12.9729 7.26249C13.811 6.41607 14.82 5.99525 16 6.00004C17.18 6.00483 18.189 6.42612 19.0271 7.26393C19.8652 8.10173 20.2848 9.11667 20.2857 10.3087C20.2867 11.5008 19.8671 12.5148 19.0271 13.3507C18.1871 14.1866 17.1781 14.6074 16 14.616ZM6 23.5106V22.6374C6 22.0447 6.17143 21.4903 6.51429 20.9742C6.85714 20.4581 7.31905 20.0569 7.9 19.7707C9.24857 19.1205 10.5976 18.6332 11.9471 18.3086C13.2967 17.984 14.6476 17.8212 16 17.8202C17.3524 17.8193 18.7033 17.9821 20.0529 18.3086C21.4024 18.6351 22.751 19.1224 24.0986 19.7707C24.6795 20.056 25.1414 20.4572 25.4843 20.9742C25.8271 21.4913 25.999 22.0452 26 22.6359V23.5092C26 23.9305 25.8576 24.2847 25.5729 24.572C25.2881 24.8592 24.9357 25.0019 24.5157 25H7.48429C7.06524 25 6.71333 24.8568 6.42857 24.5705C6.14381 24.2843 6.00095 23.93 6 23.5077M7.42857 23.5652H24.5714V22.6359C24.5714 22.3181 24.4695 22.0188 24.2657 21.7383C24.0619 21.4577 23.779 21.2212 23.4171 21.0288C22.2419 20.4562 21.0295 20.0177 19.78 19.7132C18.5305 19.4087 17.2705 19.256 16 19.255C14.7295 19.2541 13.4695 19.4068 12.22 19.7132C10.9705 20.0196 9.7581 20.4581 8.58286 21.0288C8.22095 21.2222 7.9381 21.4587 7.73429 21.7383C7.53048 22.0188 7.42857 22.3185 7.42857 22.6374V23.5652ZM16 13.1798C16.7857 13.1798 17.4586 12.8983 18.0186 12.3353C18.5786 11.7723 18.8581 11.0963 18.8571 10.3073C18.8562 9.51834 18.5767 8.84187 18.0186 8.27791C17.4605 7.71395 16.7876 7.43292 16 7.43484C15.2124 7.43675 14.54 7.71778 13.9829 8.27791C13.4257 8.83804 13.1457 9.51451 13.1429 10.3073C13.14 11.1001 13.42 11.7761 13.9829 12.3353C14.5457 12.8944 15.2181 13.1759 16 13.1798Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {background-image: url("data:image/svg+xml;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 14.6168C14.8133 14.6168 13.8024 14.1969 12.9671 13.3573C12.1319 12.5176 11.7143 11.5013 11.7143 10.3084C11.7143 9.11544 12.1319 8.09914 12.9671 7.25948C13.8024 6.41983 14.8133 6 16 6C17.1867 6 18.1976 6.41983 19.0329 7.25948C19.8681 8.09914 20.2857 9.11544 20.2857 10.3084C20.2857 11.5013 19.8681 12.5176 19.0329 13.3573C18.1976 14.1969 17.1867 14.6168 16 14.6168ZM6 23.5093V22.6361C6 22.0435 6.17143 21.4891 6.51429 20.9731C6.85714 20.457 7.31905 20.0559 7.9 19.7696C9.24857 19.1195 10.5976 18.6322 11.9471 18.3076C13.2967 17.9831 14.6476 17.8203 16 17.8193C17.3524 17.8184 18.7033 17.9811 20.0529 18.3076C21.4024 18.6341 22.751 19.1214 24.0986 19.7696C24.6795 20.0549 25.1414 20.4561 25.4843 20.9731C25.8271 21.4901 25.999 22.0444 26 22.6361V23.5093C26 23.9305 25.8576 24.2848 25.5729 24.572C25.2881 24.8592 24.9357 25.0019 24.5157 25H7.48429C7.06524 25 6.71333 24.8568 6.42857 24.5706C6.14381 24.2843 6.00095 23.9315 6 23.5093Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-logout {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='M15.375 16.7144V6.61905C15.375 6.44324 15.4346 6.29632 15.5537 6.17829C15.6729 6.06026 15.8217 6.00083 16 6.00001C16.1783 5.99918 16.3271 6.05861 16.4463 6.17829C16.5654 6.29797 16.625 6.44489 16.625 6.61905V16.7144C16.625 16.891 16.5654 17.0383 16.4463 17.1564C16.3271 17.2744 16.1783 17.3334 16 17.3334C15.8217 17.3334 15.6729 17.2744 15.5537 17.1564C15.4346 17.0383 15.375 16.891 15.375 16.7144ZM16 26C14.6183 26 13.3212 25.7417 12.1088 25.225C10.8963 24.7083 9.83583 24.0001 8.9275 23.1004C8.01917 22.2007 7.30417 21.15 6.7825 19.9483C6.26083 18.7465 6 17.4622 6 16.0953C6 14.7351 6.2725 13.4471 6.8175 12.2313C7.3625 11.0155 8.11917 9.93876 9.0875 9.00112C9.22583 8.85503 9.385 8.77662 9.565 8.76589C9.745 8.75598 9.90667 8.82201 10.05 8.96398C10.1825 9.09522 10.2346 9.24379 10.2062 9.40969C10.1771 9.57559 10.0958 9.72911 9.9625 9.87026C9.08917 10.6544 8.41833 11.5854 7.95 12.6634C7.48167 13.7413 7.24833 14.8853 7.25 16.0953C7.25 18.489 8.10417 20.5318 9.8125 22.2238C11.5208 23.9159 13.5833 24.7619 16 24.7619C18.4375 24.7619 20.5054 23.9159 22.2037 22.2238C23.9021 20.5318 24.7508 18.489 24.75 16.0953C24.75 14.8861 24.5212 13.7426 24.0638 12.6646C23.6063 11.5867 22.9408 10.6556 22.0675 9.87149C21.93 9.73035 21.8425 9.57683 21.805 9.41093C21.7675 9.24502 21.8158 9.09645 21.95 8.96522C22.0917 8.82325 22.2542 8.75722 22.4375 8.76712C22.6208 8.77703 22.7812 8.85544 22.9188 9.00236C23.9037 9.93918 24.6637 11.0155 25.1987 12.2313C25.7329 13.4471 26 14.7351 26 16.0953C26 17.4638 25.7392 18.7485 25.2175 19.9495C24.6958 21.1504 23.9817 22.2007 23.075 23.1004C22.1683 24.0001 21.1092 24.7083 19.8975 25.225C18.6858 25.7417 17.3867 26 16 26Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowup {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='M15.9978 12.5515L7.42174 20.7668C7.25723 20.923 7.06084 21.0003 6.83259 20.9989C6.60434 20.9975 6.4087 20.918 6.24567 20.7604C6.08263 20.6028 6.00075 20.415 6.00001 20.1971C5.99926 19.9791 6.08078 19.7914 6.24456 19.6338L14.735 11.4973C14.9151 11.3255 15.1151 11.1998 15.3352 11.1203C15.5553 11.0408 15.7762 11.0007 15.9978 11C16.2193 10.9993 16.4402 11.0391 16.6603 11.1193C16.8804 11.1995 17.0805 11.3251 17.2605 11.4962L25.7576 19.6327C25.9214 19.7896 26.0022 19.9784 26 20.1992C25.9977 20.4193 25.9147 20.6081 25.751 20.7657C25.5872 20.9233 25.3912 21.0014 25.1629 21C24.9347 20.9986 24.7387 20.9205 24.5749 20.7657L15.9978 12.5515Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowdown {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='M16.0022 19.4485L24.5783 11.2332C24.7428 11.077 24.9392 10.9997 25.1674 11.0011C25.3957 11.0025 25.5913 11.082 25.7543 11.2396C25.9174 11.3972 25.9993 11.585 26 11.8029C26.0007 12.0209 25.9192 12.2086 25.7554 12.3662L17.265 20.5027C17.0849 20.6745 16.8849 20.8002 16.6648 20.8797C16.4447 20.9592 16.2238 20.9993 16.0022 21C15.7807 21.0007 15.5598 20.9609 15.3397 20.8807C15.1196 20.8005 14.9195 20.6749 14.7395 20.5038L6.24237 12.3673C6.0786 12.2104 5.99782 12.0216 6.00004 11.8008C6.00227 11.5807 6.08527 11.3919 6.24904 11.2343C6.41282 11.0767 6.60883 10.9986 6.83708 11C7.06533 11.0014 7.26134 11.0795 7.42512 11.2343L16.0022 19.4485Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowleft,
body .custom-breadcrump .heading-breadcrumb .column-return a::before,
#rdc-productdetail-area-a .slick-arrow.slick-prev {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='M12.5515 16.0022L20.7668 24.5783C20.923 24.7428 21.0003 24.9392 20.9989 25.1674C20.9975 25.3957 20.918 25.5913 20.7604 25.7543C20.6028 25.9174 20.415 25.9993 20.1971 26C19.9791 26.0007 19.7914 25.9192 19.6338 25.7554L11.4973 17.265C11.3255 17.0849 11.1998 16.8849 11.1203 16.6648C11.0408 16.4447 11.0007 16.2238 11 16.0022C10.9993 15.7807 11.0391 15.5598 11.1193 15.3397C11.1995 15.1196 11.3251 14.9195 11.4962 14.7395L19.6327 6.24237C19.7896 6.0786 19.9784 5.99782 20.1992 6.00004C20.4193 6.00227 20.6081 6.08527 20.7657 6.24904C20.9233 6.41282 21.0014 6.60883 21 6.83708C20.9986 7.06533 20.9205 7.26134 20.7657 7.42512L12.5515 16.0022Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowright,
#rdc-productdetail-area-a .slick-arrow.slick-next {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='M19.4485 15.9978L11.2332 7.42174C11.077 7.25723 10.9997 7.06084 11.0011 6.83259C11.0025 6.60434 11.082 6.4087 11.2396 6.24567C11.3972 6.08263 11.585 6.00075 11.8029 6.00001C12.0208 5.99926 12.2086 6.08078 12.3662 6.24456L20.5027 14.735C20.6745 14.9151 20.8002 15.1151 20.8797 15.3352C20.9592 15.5553 20.9993 15.7762 21 15.9978C21.0007 16.2193 20.9609 16.4402 20.8807 16.6603C20.8005 16.8804 20.6749 17.0805 20.5038 17.2605L12.3673 25.7576C12.2104 25.9214 12.0216 26.0022 11.8008 26C11.5807 25.9977 11.3919 25.9147 11.2343 25.751C11.0767 25.5872 10.9986 25.3912 11 25.1629C11.0014 24.9347 11.0795 24.7387 11.2343 24.5749L19.4485 15.9978Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {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='M15.9978 13.5515L7.42174 21.7668C7.25723 21.923 7.06084 22.0003 6.83259 21.9989C6.60434 21.9975 6.4087 21.918 6.24567 21.7604C6.08263 21.6028 6.00075 21.415 6.00001 21.1971C5.99926 20.9791 6.08078 20.7914 6.24456 20.6338L14.735 12.4973C14.9151 12.3255 15.1151 12.1998 15.3352 12.1203C15.5553 12.0408 15.7762 12.0007 15.9978 12C16.2193 11.9993 16.4402 12.0391 16.6603 12.1193C16.8804 12.1995 17.0805 12.3251 17.2605 12.4962L25.7576 20.6327C25.9214 20.7896 26.0022 20.9784 26 21.1992C25.9977 21.4193 25.9147 21.6081 25.751 21.7657C25.5872 21.9233 25.3912 22.0014 25.1629 22C24.9347 21.9986 24.7387 21.9205 24.5749 21.7657L15.9978 13.5515Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {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='M16.0022 20.4485L24.5783 12.2332C24.7428 12.077 24.9392 11.9997 25.1674 12.0011C25.3957 12.0025 25.5913 12.082 25.7543 12.2396C25.9174 12.3972 25.9993 12.585 26 12.8029C26.0007 13.0209 25.9192 13.2086 25.7554 13.3662L17.265 21.5027C17.0849 21.6745 16.8849 21.8002 16.6648 21.8797C16.4447 21.9592 16.2238 21.9993 16.0022 22C15.7807 22.0007 15.5598 21.9609 15.3397 21.8807C15.1196 21.8005 14.9195 21.6749 14.7395 21.5038L6.24237 13.3673C6.0786 13.2104 5.99782 13.0216 6.00004 12.8008C6.00227 12.5807 6.08527 12.3919 6.24904 12.2343C6.41282 12.0767 6.60883 11.9986 6.83708 12C7.06533 12.0014 7.26134 12.0795 7.42512 12.2343L16.0022 20.4485Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {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='M13.5515 16.0022L21.7668 24.5783C21.923 24.7428 22.0003 24.9392 21.9989 25.1674C21.9975 25.3957 21.918 25.5913 21.7604 25.7543C21.6028 25.9174 21.415 25.9993 21.1971 26C20.9791 26.0007 20.7914 25.9192 20.6338 25.7554L12.4973 17.265C12.3255 17.0849 12.1998 16.8849 12.1203 16.6648C12.0408 16.4447 12.0007 16.2238 12 16.0022C11.9993 15.7807 12.0391 15.5598 12.1193 15.3397C12.1995 15.1196 12.3251 14.9195 12.4962 14.7395L20.6327 6.24237C20.7896 6.0786 20.9784 5.99782 21.1992 6.00004C21.4193 6.00227 21.6081 6.08527 21.7657 6.24904C21.9233 6.41282 22.0014 6.60883 22 6.83708C21.9986 7.06533 21.9205 7.26134 21.7657 7.42512L13.5515 16.0022Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {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='M20.4485 15.9978L12.2332 7.42174C12.077 7.25723 11.9997 7.06084 12.0011 6.83259C12.0025 6.60434 12.082 6.4087 12.2396 6.24567C12.3972 6.08263 12.585 6.00075 12.8029 6.00001C13.0208 5.99926 13.2086 6.08078 13.3662 6.24456L21.5027 14.735C21.6745 14.9151 21.8002 15.1151 21.8797 15.3352C21.9592 15.5553 21.9993 15.7762 22 15.9978C22.0007 16.2193 21.9609 16.4402 21.8807 16.6603C21.8005 16.8804 21.6749 17.0805 21.5038 17.2605L13.3673 25.7576C13.2104 25.9214 13.0216 26.0022 12.8008 26C12.5807 25.9977 12.3919 25.9147 12.2343 25.751C12.0767 25.5872 11.9986 25.3912 12 25.1629C12.0014 24.9347 12.0795 24.7387 12.2343 24.5749L20.4485 15.9978Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-up {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='M19.5666 13.2198C19.7617 13.0287 19.7652 12.7154 19.5744 12.52L16.355 9.22279C16.265 9.12965 16.1469 9.07937 16.0266 9.07289C15.8965 9.06591 15.7642 9.11012 15.6622 9.20588L12.1204 12.5036C11.9205 12.6897 11.9091 13.0028 12.0949 13.2029C12.2807 13.4031 12.5934 13.4145 12.7933 13.2284L15.5059 10.7028V22.4329C15.5059 22.7062 15.7271 22.9277 16 22.9277C16.2729 22.9277 16.4941 22.7062 16.4941 22.4329V10.7809L18.8678 13.212C19.0586 13.4074 19.3714 13.4109 19.5666 13.2198Z' fill='black'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 32C10.4633 32 6 27.4073 6 21.7732V10.2268C6 4.59272 10.4633 0 16 0C21.5367 0 26 4.59272 26 10.2268V21.7732C26 27.4073 21.5367 32 16 32ZM7.31766 21.7732C7.31766 26.7065 11.2187 30.6804 16 30.6804C20.7813 30.6804 24.6823 26.7065 24.6823 21.7732V10.2268C24.6823 5.29346 20.7813 1.31959 16 1.31959C11.2187 1.31959 7.31766 5.29346 7.31766 10.2268V21.7732Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-down {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='M19.5666 18.7802C19.7617 18.9713 19.7652 19.2846 19.5744 19.48L16.355 22.7772C16.265 22.8703 16.1469 22.9206 16.0266 22.9271C15.8966 22.9341 15.7642 22.8899 15.6622 22.7941L12.1204 19.4964C11.9205 19.3103 11.9091 18.9972 12.0949 18.7971C12.2807 18.5969 12.5934 18.5855 12.7933 18.7716L15.5059 21.2972V9.56711C15.5059 9.29382 15.7271 9.07227 16 9.07227C16.2729 9.07227 16.4941 9.29382 16.4941 9.56711V21.2191L18.8678 18.788C19.0586 18.5926 19.3714 18.5891 19.5666 18.7802Z' fill='black'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 0C10.4633 0 6 4.59272 6 10.2268V21.7732C6 27.4073 10.4633 32 16 32C21.5367 32 26 27.4073 26 21.7732V10.2268C26 4.59272 21.5367 0 16 0ZM7.31766 10.2268C7.31766 5.29346 11.2187 1.31959 16 1.31959C20.7813 1.31959 24.6823 5.29346 24.6823 10.2268V21.7732C24.6823 26.7065 20.7813 30.6804 16 30.6804C11.2187 30.6804 7.31766 26.7065 7.31766 21.7732V10.2268Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-equal {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='M26 19.3684C26 19.5359 25.9328 19.6966 25.813 19.815C25.6933 19.9335 25.531 20 25.3617 20H6.6383C6.46901 20 6.30666 19.9335 6.18695 19.815C6.06725 19.6966 6 19.5359 6 19.3684C6 19.2009 6.06725 19.0403 6.18695 18.9218C6.30666 18.8034 6.46901 18.7368 6.6383 18.7368H25.3617C25.531 18.7368 25.6933 18.8034 25.813 18.9218C25.9328 19.0403 26 19.2009 26 19.3684ZM6.6383 13.2632H25.3617C25.531 13.2632 25.6933 13.1966 25.813 13.0782C25.9328 12.9597 26 12.7991 26 12.6316C26 12.4641 25.9328 12.3034 25.813 12.185C25.6933 12.0665 25.531 12 25.3617 12H6.6383C6.46901 12 6.30666 12.0665 6.18695 12.185C6.06725 12.3034 6 12.4641 6 12.6316C6 12.7991 6.06725 12.9597 6.18695 13.0782C6.30666 13.1966 6.46901 13.2632 6.6383 13.2632Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-plus {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='M26 16C26 16.1693 25.9328 16.3316 25.813 16.4513C25.6933 16.571 25.531 16.6383 25.3617 16.6383H16.6383V25.3617C16.6383 25.531 16.571 25.6933 16.4513 25.813C16.3316 25.9328 16.1693 26 16 26C15.8307 26 15.6684 25.9328 15.5487 25.813C15.429 25.6933 15.3617 25.531 15.3617 25.3617V16.6383H6.6383C6.46901 16.6383 6.30666 16.571 6.18695 16.4513C6.06725 16.3316 6 16.1693 6 16C6 15.8307 6.06725 15.6684 6.18695 15.5487C6.30666 15.429 6.46901 15.3617 6.6383 15.3617H15.3617V6.6383C15.3617 6.46901 15.429 6.30666 15.5487 6.18695C15.6684 6.06725 15.8307 6 16 6C16.1693 6 16.3316 6.06725 16.4513 6.18695C16.571 6.30666 16.6383 6.46901 16.6383 6.6383V15.3617H25.3617C25.531 15.3617 25.6933 15.429 25.813 15.5487C25.9328 15.6684 26 15.8307 26 16Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-minus {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='M25.813 16.0782C25.9328 15.9597 26 15.7991 26 15.6316C26 15.4641 25.9328 15.3034 25.813 15.185C25.6933 15.0665 25.531 15 25.3617 15H6.6383C6.46901 15 6.30666 15.0665 6.18695 15.185C6.06725 15.3034 6 15.4641 6 15.6316C6 15.7991 6.06725 15.9597 6.18695 16.0782C6.30666 16.1966 6.46901 16.2632 6.6383 16.2632H25.3617C25.531 16.2632 25.6933 16.1966 25.813 16.0782Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-chat {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='M26 15.997C26.0004 17.7307 25.5501 19.4347 24.6933 20.9419C23.8365 22.449 22.6027 23.7076 21.1129 24.594C19.6231 25.4804 17.9284 25.9643 16.1952 25.9981C14.462 26.0319 12.7498 25.6146 11.2265 24.787L7.80784 25.9263C7.56601 26.007 7.30648 26.0187 7.05837 25.9601C6.81025 25.9016 6.58335 25.7751 6.40308 25.5948C6.22282 25.4145 6.09632 25.1876 6.03777 24.9394C5.97921 24.6913 5.99092 24.4318 6.07157 24.1899L7.21078 20.771C6.48457 19.4326 6.07352 17.9461 6.00899 16.4248C5.94445 14.9035 6.22813 13.3875 6.83839 11.9924C7.44865 10.5974 8.36939 9.36012 9.53038 8.37499C10.6914 7.38986 12.062 6.68287 13.5377 6.30792C15.0133 5.93298 16.5552 5.89999 18.0455 6.21146C19.5359 6.52294 20.9355 7.17065 22.1376 8.10522C23.3396 9.03979 24.3124 10.2365 24.9818 11.6042C25.6512 12.9718 25.9994 14.4743 26 15.997ZM24.8235 15.997C24.8232 14.6434 24.5115 13.308 23.9125 12.0941C23.3136 10.8802 22.4434 9.82041 21.3693 8.9967C20.2952 8.17298 19.0461 7.60743 17.7185 7.34379C16.3909 7.08015 15.0204 7.1255 13.7132 7.47633C12.4059 7.82715 11.1969 8.47405 10.1796 9.36697C9.16233 10.2599 8.3641 11.3749 7.84667 12.6257C7.32924 13.8765 7.10648 15.2296 7.19563 16.5803C7.28478 17.931 7.68345 19.2431 8.36078 20.4151C8.40262 20.4872 8.42863 20.5675 8.43708 20.6505C8.44553 20.7335 8.43623 20.8173 8.4098 20.8965L7.18824 24.5615C7.17671 24.5961 7.17504 24.6331 7.18341 24.6686C7.19177 24.704 7.20984 24.7364 7.23559 24.7622C7.26135 24.788 7.29376 24.806 7.32921 24.8144C7.36465 24.8228 7.40173 24.8211 7.43627 24.8096L11.098 23.5879C11.1582 23.5681 11.221 23.5579 11.2843 23.5575C11.3876 23.5581 11.4889 23.5854 11.5784 23.6369C12.9199 24.4138 14.4423 24.8235 15.9924 24.8248C17.5425 24.8261 19.0656 24.4191 20.4084 23.6445C21.7511 22.87 22.8662 21.7554 23.6413 20.4128C24.4164 19.0703 24.8241 17.5473 24.8235 15.997Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-helpdesk {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='M22.3944 8.73364C21.5663 7.87145 20.5813 7.18615 19.4956 6.71705C18.41 6.24795 17.2451 6.00428 16.0679 6H16C13.613 6 11.3239 6.97695 9.63603 8.71592C7.94821 10.4549 7 12.8134 7 15.2727V20.3636C7 20.8941 7.20452 21.4028 7.56856 21.7779C7.9326 22.1529 8.42634 22.3636 8.94117 22.3636H10.3529C10.8678 22.3636 11.3615 22.1529 11.7255 21.7779C12.0896 21.4028 12.2941 20.8941 12.2941 20.3636V16.7273C12.2941 16.1968 12.0896 15.6881 11.7255 15.3131C11.3615 14.938 10.8678 14.7273 10.3529 14.7273H8.07647C8.21077 12.6564 9.10395 10.7154 10.5751 9.29757C12.0463 7.87971 13.9855 7.0909 16 7.09091H16.06C18.066 7.10008 19.9939 7.89367 21.4538 9.31124C22.9136 10.7288 23.7967 12.6646 23.9244 14.7273H21.647C21.1322 14.7273 20.6384 14.938 20.2744 15.3131C19.9104 15.6881 19.7058 16.1968 19.7058 16.7273V20.3636C19.7058 20.8941 19.9104 21.4028 20.2744 21.7779C20.6384 22.1529 21.1322 22.3636 21.647 22.3636H23.9411V22.5455C23.9411 23.1723 23.6994 23.7735 23.2692 24.2168C22.839 24.6601 22.2554 24.9091 21.647 24.9091H16.7058C16.5654 24.9091 16.4308 24.9666 16.3315 25.0689C16.2322 25.1711 16.1764 25.3099 16.1764 25.4545C16.1764 25.5992 16.2322 25.7379 16.3315 25.8402C16.4308 25.9425 16.5654 26 16.7058 26H21.647C22.5363 26 23.3891 25.636 24.0179 24.9882C24.6467 24.3403 24.9999 23.4617 24.9999 22.5455V15.2727C25.0044 14.0598 24.7765 12.8578 24.3294 11.7358C23.8823 10.6137 23.2247 9.59349 22.3944 8.73364ZM10.3529 15.8182C10.5869 15.8182 10.8114 15.914 10.9768 16.0844C11.1423 16.2549 11.2353 16.4862 11.2353 16.7273V20.3636C11.2353 20.6047 11.1423 20.836 10.9768 21.0065C10.8114 21.1769 10.5869 21.2727 10.3529 21.2727H8.94117C8.70716 21.2727 8.48273 21.1769 8.31725 21.0065C8.15178 20.836 8.05882 20.6047 8.05882 20.3636V15.8182H10.3529ZM20.7647 20.3636V16.7273C20.7647 16.4862 20.8576 16.2549 21.0231 16.0844C21.1886 15.914 21.413 15.8182 21.647 15.8182H23.9411V21.2727H21.647C21.413 21.2727 21.1886 21.1769 21.0231 21.0065C20.8576 20.836 20.7647 20.6047 20.7647 20.3636Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sendmessage {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='M25.627 6.37505C25.468 6.2136 25.2683 6.09813 25.0491 6.04084C24.8298 5.98356 24.5992 5.98658 24.3815 6.0496H24.3715L6.9223 11.3431C6.67363 11.4143 6.45258 11.5596 6.28857 11.7596C6.12456 11.9596 6.02538 12.2048 6.00425 12.4626C5.98313 12.7204 6.04104 12.9785 6.17029 13.2025C6.29955 13.4266 6.49399 13.6059 6.72774 13.7167L14.5109 17.4029C14.5485 17.4214 14.5789 17.4518 14.5973 17.4893L18.2848 25.2727C18.3866 25.4907 18.5486 25.675 18.7518 25.8038C18.9549 25.9327 19.1907 26.0007 19.4312 26C19.4676 26 19.5049 26 19.5412 25.9954C19.7989 25.9752 20.0442 25.8764 20.244 25.7124C20.4438 25.5483 20.5885 25.327 20.6586 25.0782L25.9498 7.63047V7.62047C26.0132 7.40306 26.0166 7.17257 25.9598 6.95335C25.903 6.73414 25.788 6.53433 25.627 6.37505ZM24.8997 7.32048L19.613 24.7664V24.7764C19.6045 24.8129 19.5842 24.8455 19.5553 24.8693C19.5264 24.8931 19.4905 24.9068 19.453 24.9082C19.4155 24.9138 19.3771 24.9067 19.3442 24.8879C19.3112 24.8691 19.2855 24.8397 19.2712 24.8046L15.6346 17.1357L20.0203 12.7503C20.1227 12.648 20.1802 12.5092 20.1802 12.3644C20.1802 12.2197 20.1227 12.0809 20.0203 11.9785C19.918 11.8762 19.7792 11.8187 19.6344 11.8187C19.4897 11.8187 19.3508 11.8762 19.2485 11.9785L14.8664 16.3639L7.19595 12.7276C7.16225 12.7119 7.13417 12.6863 7.1155 12.6541C7.09683 12.6219 7.08847 12.5848 7.09154 12.5478C7.09462 12.5107 7.10897 12.4755 7.13268 12.4469C7.15639 12.4182 7.18831 12.3976 7.22413 12.3876H7.23413L24.6815 7.09867C24.7122 7.09006 24.7446 7.08991 24.7753 7.09823C24.8061 7.10655 24.834 7.12304 24.8561 7.14594C24.8785 7.16838 24.8947 7.19629 24.903 7.22691C24.9113 7.25753 24.9114 7.28979 24.9034 7.32048H24.8997Z' fill='black'/%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='M32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16Z' fill='%23F7F7F7'/%3e%3cpath d='M23.498 15.0738L12.6084 8.16203C12.4477 8.05979 12.2637 8.00392 12.0753 8.0002C11.8869 7.99648 11.7009 8.04503 11.5366 8.14085C11.3732 8.23396 11.2371 8.37115 11.1427 8.53791C11.0482 8.70468 10.9989 8.89482 11 9.08825V22.9118C10.9989 23.1052 11.0482 23.2953 11.1427 23.4621C11.2371 23.6288 11.3732 23.766 11.5366 23.8591C11.7009 23.955 11.8869 24.0035 12.0753 23.9998C12.2637 23.9961 12.4477 23.9402 12.6084 23.838L23.498 16.9262C23.6512 16.8296 23.7779 16.6936 23.8659 16.5313C23.9538 16.3691 24 16.1861 24 16C24 15.8139 23.9538 15.6309 23.8659 15.4687C23.7779 15.3064 23.6512 15.1704 23.498 15.0738ZM23.0248 16.1231L12.1337 23.0349C12.1102 23.0495 12.0833 23.0573 12.0559 23.0573C12.0284 23.0573 12.0015 23.0495 11.978 23.0349C11.9552 23.0234 11.9361 23.0054 11.9227 22.9831C11.9093 22.9607 11.9023 22.9349 11.9024 22.9086V9.08825C11.9023 9.06195 11.9093 9.03615 11.9227 9.01381C11.9361 8.99147 11.9552 8.97351 11.978 8.96198C12.0025 8.94783 12.0302 8.94079 12.0581 8.94159C12.085 8.94259 12.1111 8.95098 12.1337 8.9659L23.0248 15.8769C23.0455 15.8895 23.0627 15.9074 23.0746 15.929C23.0865 15.9506 23.0928 15.9751 23.0928 16C23.0928 16.0249 23.0865 16.0494 23.0746 16.071C23.0627 16.0926 23.0455 16.1105 23.0248 16.1231Z' fill='black'/%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='M32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16Z' fill='%23F7F7F7'/%3e%3cpath d='M21.7791 8H18.2907C17.9669 8 17.6563 8.12553 17.4274 8.34898C17.1984 8.57243 17.0698 8.87549 17.0698 9.19149V22.8085C17.0698 23.1245 17.1984 23.4276 17.4274 23.651C17.6563 23.8745 17.9669 24 18.2907 24H21.7791C22.1029 24 22.4134 23.8745 22.6424 23.651C22.8714 23.4276 23 23.1245 23 22.8085V9.19149C23 8.87549 22.8714 8.57243 22.6424 8.34898C22.4134 8.12553 22.1029 8 21.7791 8ZM21.9535 22.8085C21.9535 22.8537 21.9351 22.8969 21.9024 22.9289C21.8697 22.9608 21.8253 22.9787 21.7791 22.9787H18.2907C18.2444 22.9787 18.2001 22.9608 18.1674 22.9289C18.1347 22.8969 18.1163 22.8537 18.1163 22.8085V9.19149C18.1163 9.14635 18.1347 9.10305 18.1674 9.07113C18.2001 9.03921 18.2444 9.02128 18.2907 9.02128H21.7791C21.8253 9.02128 21.8697 9.03921 21.9024 9.07113C21.9351 9.10305 21.9535 9.14635 21.9535 9.19149V22.8085ZM13.7093 8H10.2209C9.89712 8 9.58657 8.12553 9.3576 8.34898C9.12863 8.57243 9 8.87549 9 9.19149V22.8085C9 23.1245 9.12863 23.4276 9.3576 23.651C9.58657 23.8745 9.89712 24 10.2209 24H13.7093C14.0331 24 14.3437 23.8745 14.5726 23.651C14.8016 23.4276 14.9302 23.1245 14.9302 22.8085V9.19149C14.9302 8.87549 14.8016 8.57243 14.5726 8.34898C14.3437 8.12553 14.0331 8 13.7093 8ZM13.8837 22.8085C13.8837 22.8537 13.8653 22.8969 13.8326 22.9289C13.7999 22.9608 13.7556 22.9787 13.7093 22.9787H10.2209C10.1747 22.9787 10.1303 22.9608 10.0976 22.9289C10.0649 22.8969 10.0465 22.8537 10.0465 22.8085V9.19149C10.0465 9.14635 10.0649 9.10305 10.0976 9.07113C10.1303 9.03921 10.1747 9.02128 10.2209 9.02128H13.7093C13.7556 9.02128 13.7999 9.03921 13.8326 9.07113C13.8653 9.10305 13.8837 9.14635 13.8837 9.19149V22.8085Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-calendar {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='M7.121 28C6.51638 28 6.01194 27.7973 5.60769 27.3918C5.20344 26.9863 5.00087 26.4804 5 25.874V9.06303C5 8.45747 5.20256 7.95196 5.60769 7.54649C6.01281 7.14103 6.51725 6.93786 7.121 6.93698H9.44281V4.70957C9.44281 4.50508 9.50975 4.3357 9.64362 4.20142C9.7775 4.06715 9.94594 4.00001 10.1489 4.00001C10.3519 4.00001 10.5208 4.06715 10.6556 4.20142C10.7903 4.3357 10.8572 4.50508 10.8564 4.70957V6.93698H20.246V4.65954C20.246 4.47173 20.3086 4.31464 20.4337 4.18826C20.5588 4.06188 20.715 3.99913 20.9022 4.00001C21.0895 4.00089 21.2452 4.06364 21.3695 4.18826C21.4937 4.31288 21.5567 4.46954 21.5585 4.65823V6.93698H23.8803C24.4841 6.93698 24.9885 7.14015 25.3936 7.54649C25.7987 7.95283 26.0009 8.45879 26 9.06435V25.874C26 26.4795 25.7979 26.9855 25.3936 27.3918C24.9894 27.7981 24.4845 28.0009 23.879 28H7.121ZM7.121 26.6836H23.8803C24.0816 26.6836 24.2666 26.5993 24.4355 26.4308C24.6044 26.2623 24.6884 26.0762 24.6875 25.8726V14.3301H6.3125V25.874C6.3125 26.0758 6.3965 26.2614 6.5645 26.4308C6.7325 26.6002 6.91756 26.6844 7.11969 26.6836M6.3125 13.0123H24.6875V9.06303C24.6875 8.86118 24.6035 8.67556 24.4355 8.50618C24.2675 8.3368 24.082 8.25254 23.879 8.25342H7.121C6.91888 8.25342 6.73337 8.33767 6.5645 8.50618C6.39562 8.67468 6.31162 8.86074 6.3125 9.06435V13.0123ZM15.5 18.9877C15.2287 18.9877 14.9925 18.8867 14.7912 18.6849C14.59 18.483 14.4894 18.2461 14.4894 17.974C14.4894 17.7019 14.59 17.4654 14.7912 17.2644C14.9925 17.0635 15.2287 16.9625 15.5 16.9617C15.7712 16.9608 16.0075 17.0617 16.2087 17.2644C16.41 17.4672 16.5106 17.7041 16.5106 17.9753C16.5106 18.2465 16.41 18.483 16.2087 18.6849C16.0075 18.8867 15.7712 18.9877 15.5 18.9877ZM10.25 18.9877C9.97875 18.9877 9.7425 18.8867 9.54125 18.6849C9.34 18.483 9.23937 18.2461 9.23937 17.974C9.23937 17.7019 9.34 17.4654 9.54125 17.2644C9.7425 17.0635 9.97875 16.9625 10.25 16.9617C10.5212 16.9608 10.7575 17.0617 10.9587 17.2644C11.16 17.4672 11.2606 17.7041 11.2606 17.9753C11.2606 18.2465 11.16 18.483 10.9587 18.6849C10.7575 18.8867 10.5212 18.9877 10.25 18.9877ZM20.75 18.9877C20.4787 18.9877 20.2425 18.8867 20.0412 18.6849C19.84 18.483 19.7394 18.2461 19.7394 17.974C19.7394 17.7019 19.84 17.4654 20.0412 17.2644C20.2425 17.0635 20.4787 16.9625 20.75 16.9617C21.0212 16.9608 21.2575 17.0617 21.4587 17.2644C21.66 17.4672 21.7606 17.7041 21.7606 17.9753C21.7606 18.2465 21.66 18.483 21.4587 18.6849C21.2575 18.8867 21.0212 18.9877 20.75 18.9877ZM15.5 24.0507C15.2287 24.0507 14.9925 23.9498 14.7912 23.7479C14.59 23.546 14.4894 23.3091 14.4894 23.037C14.4894 22.765 14.59 22.5284 14.7912 22.3275C14.9925 22.1265 15.2287 22.0256 15.5 22.0247C15.7712 22.0238 16.0075 22.1247 16.2087 22.3275C16.41 22.5302 16.5106 22.7672 16.5106 23.0383C16.5106 23.3095 16.41 23.5465 16.2087 23.7492C16.0075 23.952 15.7712 24.0524 15.5 24.0507ZM10.25 24.0507C9.97875 24.0507 9.7425 23.9498 9.54125 23.7479C9.34 23.546 9.23937 23.3091 9.23937 23.037C9.23937 22.765 9.34 22.5284 9.54125 22.3275C9.7425 22.1265 9.97875 22.0256 10.25 22.0247C10.5212 22.0238 10.7575 22.1247 10.9587 22.3275C11.16 22.5302 11.2606 22.7672 11.2606 23.0383C11.2606 23.3095 11.16 23.5465 10.9587 23.7492C10.7575 23.952 10.5212 24.0524 10.25 24.0507ZM20.75 24.0507C20.4787 24.0507 20.2425 23.9498 20.0412 23.7479C19.84 23.546 19.7394 23.3091 19.7394 23.037C19.7394 22.765 19.84 22.5284 20.0412 22.3275C20.2425 22.1265 20.4787 22.0256 20.75 22.0247C21.0212 22.0238 21.2575 22.1247 21.4587 22.3275C21.66 22.5302 21.7606 22.7672 21.7606 23.0383C21.7606 23.3095 21.66 23.5465 21.4587 23.7492C21.2575 23.952 21.0212 24.0524 20.75 24.0507Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-checked {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='M13.0402 20.6769L7.81655 15.372C7.62122 15.1736 7.38125 15.0673 7.09663 15.0531C6.81201 15.039 6.55808 15.1452 6.33485 15.372C6.11162 15.5987 6 15.8495 6 16.1243C6 16.3992 6.11162 16.65 6.33485 16.8767L11.8577 22.4835C12.1954 22.8278 12.5895 23 13.0402 23C13.4908 23 13.885 22.8278 14.2226 22.4835L25.6848 10.8427C25.8802 10.6444 25.9848 10.4007 25.9988 10.1116C26.0127 9.82254 25.9081 9.56537 25.6848 9.34008C25.4616 9.11479 25.2147 9.00143 24.944 9.00001C24.6733 8.9986 24.4271 9.11195 24.2052 9.34008L13.0402 20.6769Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clear {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='M15.0576 16L11.7594 19.2983C11.6256 19.4321 11.559 19.5891 11.5596 19.7694C11.5596 19.9504 11.6265 20.1077 11.7603 20.2416C11.8941 20.3754 12.0512 20.442 12.2315 20.4413C12.4118 20.4407 12.5686 20.3738 12.7017 20.2406L16 16.9424L19.2983 20.2406C19.4321 20.3744 19.5891 20.441 19.7694 20.4404C19.9504 20.4404 20.1077 20.3735 20.2416 20.2397C20.3754 20.1059 20.442 19.9488 20.4413 19.7685C20.4407 19.5882 20.3738 19.4314 20.2406 19.2983L16.9424 16L20.2406 12.7017C20.3744 12.5679 20.441 12.4109 20.4404 12.2306C20.4404 12.0496 20.3738 11.8926 20.2406 11.7594C20.1074 11.6262 19.9504 11.5596 19.7694 11.5596C19.5885 11.5596 19.4314 11.6262 19.2983 11.7594L16 15.0576L12.7017 11.7594C12.5679 11.6256 12.4109 11.559 12.2306 11.5596C12.0496 11.5596 11.8923 11.6265 11.7584 11.7603C11.6246 11.8941 11.558 12.0512 11.5587 12.2315C11.5593 12.4118 11.6262 12.5686 11.7594 12.7017L15.0576 16ZM7.52159 24.4841C6.3493 23.3118 5.46914 21.9868 4.88111 20.5092C4.29433 19.0316 4.00063 17.5291 4 16.0019C3.99937 14.4746 4.29182 12.9728 4.87734 11.4965C5.46286 10.0201 6.34239 8.69515 7.51594 7.5216C8.68949 6.34804 10.0144 5.46788 11.4908 4.88111C12.9672 4.29433 14.4696 4.00063 15.9981 4C17.5266 3.99937 19.0284 4.29182 20.5035 4.87734C21.9786 5.46286 23.3036 6.34239 24.4784 7.51594C25.6532 8.68949 26.5334 10.0144 27.1189 11.4908C27.7044 12.9672 27.9981 14.4696 28 15.9981C28.0019 17.5266 27.7094 19.0284 27.1227 20.5035C26.5359 21.9786 25.6563 23.3036 24.4841 24.4784C23.3118 25.6532 21.9868 26.5334 20.5092 27.1189C19.0316 27.7044 17.5291 27.9981 16.0019 28C14.4746 28.0019 12.9728 27.7094 11.4965 27.1227C10.0201 26.5359 8.69515 25.6563 7.52159 24.4841ZM8.46113 23.5389C10.5657 25.6435 13.0787 26.6958 16 26.6958C18.9213 26.6958 21.4343 25.6435 23.5389 23.5389C25.6435 21.4343 26.6958 18.9213 26.6958 16C26.6958 13.0787 25.6435 10.5657 23.5389 8.46113C21.4343 6.35653 18.9213 5.30423 16 5.30423C13.0787 5.30423 10.5657 6.35653 8.46113 8.46113C6.35653 10.5657 5.30423 13.0787 5.30423 16C5.30423 18.9213 6.35653 21.4343 8.46113 23.5389Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-download {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='M16 21.104C15.8313 21.104 15.6752 21.0762 15.5317 21.0207C15.3882 20.9652 15.2483 20.8688 15.1121 20.7316L10.995 16.616C10.842 16.4631 10.7624 16.2829 10.7561 16.0754C10.7499 15.868 10.8295 15.6779 10.995 15.505C11.1689 15.3311 11.3559 15.2426 11.556 15.2394C11.7571 15.2363 11.9441 15.3217 12.117 15.4956L15.2143 18.5929V5.78573C15.2143 5.56258 15.2892 5.37558 15.439 5.22473C15.5888 5.07387 15.7758 4.99896 16 5.00001C16.2242 5.00106 16.4112 5.07596 16.561 5.22473C16.7108 5.37349 16.7857 5.56049 16.7857 5.78573V18.5929L19.883 15.4956C20.036 15.3426 20.2177 15.2625 20.4283 15.2552C20.6389 15.2478 20.8306 15.3311 21.0034 15.505C21.171 15.6779 21.2564 15.8633 21.2596 16.0613C21.2627 16.2593 21.1779 16.4442 21.005 16.616L16.8879 20.7332C16.7517 20.8693 16.6118 20.9652 16.4683 21.0207C16.3258 21.0762 16.1697 21.104 16 21.104ZM7.53943 27C6.81552 27 6.21157 26.758 5.72757 26.274C5.24357 25.79 5.00105 25.1855 5 24.4606V21.4387C5 21.2156 5.0749 21.0291 5.22471 20.8793C5.37452 20.7295 5.56152 20.6541 5.78571 20.653C6.0099 20.652 6.1969 20.7274 6.34671 20.8793C6.49652 21.0312 6.57143 21.2177 6.57143 21.4387V24.4606C6.57143 24.7026 6.672 24.9247 6.87314 25.1269C7.07429 25.3291 7.29586 25.4296 7.53786 25.4286H24.4621C24.7031 25.4286 24.9247 25.328 25.1269 25.1269C25.329 24.9257 25.4296 24.7036 25.4286 24.4606V21.4387C25.4286 21.2156 25.5035 21.0291 25.6533 20.8793C25.8031 20.7295 25.9901 20.6541 26.2143 20.653C26.4385 20.652 26.6255 20.7274 26.7753 20.8793C26.9251 21.0312 27 21.2177 27 21.4387V24.4606C27 25.1845 26.758 25.7884 26.274 26.2724C25.79 26.7564 25.1855 26.999 24.4606 27H7.53943Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-empty {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='M31.8951 12.1772C31.775 11.7936 31.5435 11.4548 31.2305 11.2046C30.9174 10.9544 30.5371 10.804 30.1384 10.773L21.4911 10.0212C21.4388 10.016 21.3889 9.99668 21.3467 9.96526C21.3044 9.93384 21.2714 9.89149 21.2512 9.84272L17.8729 1.74522C17.7164 1.37582 17.4554 1.06083 17.1224 0.839437C16.7893 0.61804 16.3989 0.5 15.9997 0.5C15.6005 0.5 15.2101 0.61804 14.8771 0.839437C14.544 1.06083 14.2831 1.37582 14.1266 1.74522L10.7483 9.84272C10.728 9.89149 10.695 9.93384 10.6528 9.96526C10.6105 9.99668 10.5606 10.016 10.5083 10.0212L1.86109 10.773C1.46239 10.804 1.08204 10.9544 0.768969 11.2046C0.455896 11.4548 0.224416 11.7936 0.104307 12.1772C-0.0229008 12.5614 -0.0340116 12.9749 0.0723772 13.3654C0.178766 13.7559 0.39788 14.1059 0.702021 14.3712L7.26233 20.127C7.3025 20.1628 7.33234 20.2089 7.34871 20.2604C7.36509 20.3119 7.3674 20.3668 7.35541 20.4195L5.38339 28.9778C5.29146 29.3718 5.31769 29.7844 5.45875 30.1634C5.59982 30.5425 5.8494 30.871 6.17598 31.1075C6.49748 31.346 6.88272 31.4822 7.28195 31.4984C7.68117 31.5145 8.07605 31.41 8.41559 31.1981L15.8485 26.6638C15.8922 26.6366 15.9425 26.6222 15.9939 26.6222C16.0453 26.6222 16.0956 26.6366 16.1393 26.6638L23.5722 31.1981C23.9153 31.4094 24.3129 31.5137 24.7148 31.4979C25.1168 31.4821 25.5051 31.3469 25.8307 31.1094C26.1563 30.8718 26.4047 30.5426 26.5445 30.1632C26.6842 29.7839 26.7092 29.3714 26.6161 28.9778L24.6498 20.4166C24.6379 20.3639 24.6402 20.309 24.6565 20.2575C24.6729 20.206 24.7028 20.1599 24.7429 20.124L31.3032 14.3683C31.6058 14.1026 31.8235 13.7527 31.9288 13.3628C32.0341 12.9729 32.0224 12.5604 31.8951 12.1772Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
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%3cpath d='M31.8951 12.1772C31.775 11.7936 31.5435 11.4548 31.2305 11.2046C30.9174 10.9544 30.5371 10.804 30.1384 10.773L21.4911 10.0212C21.4388 10.016 21.3889 9.99668 21.3467 9.96526C21.3044 9.93384 21.2714 9.89149 21.2512 9.84272L17.8729 1.74522C17.7164 1.37582 17.4554 1.06083 17.1224 0.839437C16.7893 0.61804 16.3989 0.5 15.9997 0.5C15.6005 0.5 15.2101 0.61804 14.8771 0.839437C14.544 1.06083 14.2831 1.37582 14.1266 1.74522L10.7483 9.84272C10.728 9.89149 10.695 9.93384 10.6528 9.96526C10.6105 9.99668 10.5606 10.016 10.5083 10.0212L1.86109 10.773C1.46239 10.804 1.08204 10.9544 0.768969 11.2046C0.455896 11.4548 0.224416 11.7936 0.104307 12.1772C-0.0229008 12.5614 -0.0340116 12.9749 0.0723772 13.3654C0.178766 13.7559 0.39788 14.1059 0.702021 14.3712L7.26233 20.127C7.3025 20.1628 7.33234 20.2089 7.34871 20.2604C7.36509 20.3119 7.3674 20.3668 7.35541 20.4195L5.38339 28.9778C5.29146 29.3718 5.31769 29.7844 5.45875 30.1634C5.59982 30.5425 5.8494 30.871 6.17598 31.1075C6.49748 31.346 6.88272 31.4822 7.28195 31.4984C7.68117 31.5145 8.07605 31.41 8.41559 31.1981L15.8485 26.6638C15.8922 26.6366 15.9425 26.6222 15.9939 26.6222C16.0453 26.6222 16.0956 26.6366 16.1393 26.6638L23.5722 31.1981C23.9153 31.4094 24.3129 31.5137 24.7148 31.4979C25.1168 31.4821 25.5051 31.3469 25.8307 31.1094C26.1563 30.8718 26.4047 30.5426 26.5445 30.1632C26.6842 29.7839 26.7092 29.3714 26.6161 28.9778L24.6498 20.4166C24.6379 20.3639 24.6402 20.309 24.6565 20.2575C24.6729 20.206 24.7028 20.1599 24.7429 20.124L31.3032 14.3683C31.6058 14.1026 31.8235 13.7527 31.9288 13.3628C32.0341 12.9729 32.0224 12.5604 31.8951 12.1772Z' fill='url(%23paint0_linear_8102_29559)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_8102_29559' x1='16' y1='16.025' x2='16.0516' y2='16.025' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23F4CC49'/%3e%3cstop offset='1' stop-color='%23CCCCCC'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-full {background-image: url("data:image/svg+xml;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='M31.8951 12.1772C31.775 11.7936 31.5435 11.4548 31.2305 11.2046C30.9174 10.9544 30.5371 10.804 30.1384 10.773L21.4911 10.0212C21.4388 10.016 21.3889 9.99668 21.3467 9.96526C21.3044 9.93384 21.2714 9.89149 21.2512 9.84272L17.8729 1.74522C17.7164 1.37582 17.4554 1.06083 17.1224 0.839437C16.7893 0.61804 16.3989 0.5 15.9997 0.5C15.6005 0.5 15.2101 0.61804 14.8771 0.839437C14.544 1.06083 14.2831 1.37582 14.1266 1.74522L10.7483 9.84272C10.728 9.89149 10.695 9.93384 10.6528 9.96526C10.6105 9.99668 10.5606 10.016 10.5083 10.0212L1.86109 10.773C1.46239 10.804 1.08204 10.9544 0.768969 11.2046C0.455896 11.4548 0.224416 11.7936 0.104307 12.1772C-0.0229008 12.5614 -0.0340116 12.9749 0.0723772 13.3654C0.178766 13.7559 0.39788 14.1059 0.702021 14.3712L7.26233 20.127C7.3025 20.1628 7.33234 20.2089 7.34871 20.2604C7.36509 20.3119 7.3674 20.3668 7.35541 20.4195L5.38339 28.9778C5.29146 29.3718 5.31769 29.7844 5.45875 30.1634C5.59982 30.5425 5.8494 30.871 6.17598 31.1075C6.49748 31.346 6.88272 31.4822 7.28195 31.4984C7.68117 31.5145 8.07605 31.41 8.41559 31.1981L15.8485 26.6638C15.8922 26.6366 15.9425 26.6222 15.9939 26.6222C16.0453 26.6222 16.0956 26.6366 16.1393 26.6638L23.5722 31.1981C23.9153 31.4094 24.3129 31.5137 24.7148 31.4979C25.1168 31.4821 25.5051 31.3469 25.8307 31.1094C26.1563 30.8718 26.4047 30.5426 26.5445 30.1632C26.6842 29.7839 26.7092 29.3714 26.6161 28.9778L24.6498 20.4166C24.6379 20.3639 24.6402 20.309 24.6565 20.2575C24.6729 20.206 24.7028 20.1599 24.7429 20.124L31.3032 14.3683C31.6058 14.1026 31.8235 13.7527 31.9288 13.3628C32.0341 12.9729 32.0224 12.5604 31.8951 12.1772Z' fill='%23F4CC49'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker {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='M16 0C10.4714 0 6 5.008 6 11.2C6 17.5519 11.7181 26.191 14.5064 30.0262C15.2563 31.0577 16.7437 31.0577 17.4936 30.0262C20.2819 26.191 26 17.5519 26 11.2C26 5.008 21.5286 0 16 0Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-success {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='M16 0C10.4714 0 6 5.008 6 11.2C6 17.5519 11.7181 26.191 14.5064 30.0262C15.2563 31.0577 16.7437 31.0577 17.4936 30.0262C20.2819 26.191 26 17.5519 26 11.2C26 5.008 21.5286 0 16 0Z' fill='%233F9912'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-error {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='M16 0C10.4714 0 6 5.008 6 11.2C6 17.5519 11.7181 26.191 14.5064 30.0262C15.2563 31.0577 16.7437 31.0577 17.4936 30.0262C20.2819 26.191 26 17.5519 26 11.2C26 5.008 21.5286 0 16 0Z' fill='%23DA343E'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clustering {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='M16.0005 0C12.836 0 9.74255 0.938383 7.11137 2.69649C4.48018 4.45459 2.42942 6.95345 1.21842 9.87706C0.00741708 12.8007 -0.309436 16.0177 0.307927 19.1214C0.92529 22.2251 2.44914 25.0761 4.68678 27.3137C6.92442 29.5513 9.77535 31.0752 12.879 31.6926C15.9827 32.3099 19.1998 31.9931 22.1234 30.7821C25.047 29.5711 27.5459 27.5203 29.304 24.8891C31.0621 22.2579 32.0005 19.1645 32.0005 16C31.9955 11.7581 30.3082 7.69129 27.3087 4.69179C24.3092 1.69229 20.2424 0.00498172 16.0005 0Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-microphone {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='M16.0318 5C13.3124 5 11.1075 7.16447 10.9962 9.87227L10.9918 10.0871V14.8468C10.9918 17.7103 13.2312 20 16.0318 20C18.7069 20 20.8924 17.8169 21.0027 15.0651L21.0071 14.8468V10.0871C21.0071 7.28967 18.7678 5 16.0318 5ZM16.0318 6.25C18.0161 6.25 19.6777 7.88556 19.7796 9.89187L19.7846 10.0871V14.8468C19.7846 16.9963 18.0906 18.75 16.0318 18.75C13.9848 18.75 12.3213 17.1144 12.2193 15.048L12.2143 14.8468V10.0871C12.2143 7.98201 13.9295 6.25 16.0318 6.25Z' fill='black'/%3e%3cpath d='M23.7046 16H23.135C22.9854 16 22.8622 16.1175 22.8554 16.2668C22.62 19.735 19.7523 22.5334 16.2604 22.651L16.0317 22.6549C12.395 22.6549 9.44248 19.8279 9.20752 16.2643C9.20028 16.1163 9.07796 16 8.92953 16H8.29696C8.12805 16 7.99316 16.1405 8.00027 16.309C8.24095 20.0981 11.178 23.2432 14.9731 23.7712L15.222 23.8019L15.3957 23.8206V25.8541H14.2427C13.903 25.8541 13.6706 26.0868 13.6706 26.427C13.6706 26.7673 13.903 27 14.2427 27H17.7568C18.1142 27 18.3928 26.7504 18.3928 26.427C18.3928 26.1037 18.1142 25.8541 17.7568 25.8541H16.6038V23.8203L16.7779 23.8018C20.7317 23.3819 23.7592 20.2005 23.9998 16.3064C24.0063 16.1391 23.8722 16 23.7046 16Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nomicrophone {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='M15.5317 5C18.1459 5 20.298 7.17075 20.4095 9.86737L20.414 10.0871V14.8468L20.4098 15.0651C20.3828 15.7493 20.2301 16.3983 19.9753 16.9873L18.9812 16.2096C19.1107 15.8446 19.1899 15.4539 19.2095 15.0471L19.2144 14.8468V10.0871L19.2095 9.89187C19.1095 7.88556 17.4789 6.25 15.5317 6.25C13.5332 6.25 11.8912 7.87545 11.7905 9.89092L11.7856 10.0871L11.785 10.586L10.6027 9.661C10.8168 7.04906 12.9353 5 15.5317 5Z' fill='black'/%3e%3cpath d='M10.586 14.692L11.8751 15.7012C12.2477 17.4488 13.7401 18.75 15.5317 18.75C15.6105 18.75 15.6887 18.7473 15.7663 18.7421L17.0505 19.7462C16.5724 19.911 16.0618 20 15.5317 20C12.8539 20 10.699 17.8262 10.5903 15.0659L10.586 14.8468V14.692Z' fill='black'/%3e%3cpath d='M8.56221 16C8.70787 16 8.8279 16.1163 8.835 16.2643C9.06558 19.8279 11.9629 22.6549 15.5316 22.6549L15.7561 22.651C17.0496 22.6066 18.2558 22.1802 19.2688 21.48L20.2174 22.2206C19.101 23.0757 17.7491 23.6411 16.2639 23.8018L16.0931 23.8203V25.8541H17.2245C17.5752 25.8541 17.8486 26.1037 17.8486 26.427C17.8486 26.7504 17.5752 27 17.2245 27H13.7761C13.4427 27 13.2147 26.7673 13.2147 26.427C13.2147 26.0868 13.4427 25.8541 13.7761 25.8541H14.9075V23.8206L14.4929 23.7712C10.7686 23.2432 7.8865 20.0981 7.65032 16.309C7.64334 16.1405 7.77572 16 7.94147 16H8.56221Z' fill='black'/%3e%3cpath d='M23.3508 16.3064C23.3572 16.1391 23.2256 16 23.0611 16H22.5022C22.3554 16 22.2345 16.1175 22.2278 16.2668C22.1785 17.0057 22.0121 17.7142 21.7474 18.3729L22.6739 19.0967C23.0554 18.2346 23.2909 17.2934 23.3508 16.3064Z' fill='black'/%3e%3cpath d='M28.7507 25.5721L3.03094 5.39633C2.75163 5.17723 2.35077 5.22928 2.1345 5.51274C1.91721 5.79754 1.96867 6.20777 2.2493 6.42791L27.9691 26.6037C28.2484 26.8228 28.6492 26.7707 28.8655 26.4873C29.0828 26.2025 29.0313 25.7922 28.7507 25.5721Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-payment {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.29412 22.25V24.75V7.25V22.25ZM7.09129 26C6.51153 26 6.01804 25.8033 5.61082 25.41C5.20361 25.0167 5 24.5404 5 23.9813V8.01875C5 7.46042 5.20361 6.98417 5.61082 6.59C6.01804 6.19667 6.51153 6 7.09129 6H23.6159C24.1939 6 24.687 6.19667 25.0951 6.59C25.5023 6.98333 25.7059 7.46 25.7059 8.02V11.6975H24.4118V8.02C24.4118 7.795 24.3371 7.61042 24.1879 7.46625C24.0386 7.32208 23.848 7.25 23.6159 7.25H7.09C6.85792 7.25 6.66725 7.32208 6.518 7.46625C6.36874 7.61042 6.29412 7.795 6.29412 8.02V23.9813C6.29412 24.2054 6.36874 24.3896 6.518 24.5337C6.66725 24.6779 6.85835 24.75 7.09129 24.75H23.6159C23.848 24.75 24.0386 24.6779 24.1879 24.5337C24.3371 24.3896 24.4118 24.2054 24.4118 23.9813V20.3025H25.7059V23.9813C25.7059 24.5396 25.5023 25.0158 25.0951 25.41C24.6878 25.8033 24.1948 26 23.6159 26H7.09129ZM17.4442 21C16.8645 21 16.371 20.8033 15.9638 20.41C15.5565 20.0167 15.3529 19.5404 15.3529 18.9813V13.0187C15.3529 12.4604 15.5565 11.9842 15.9638 11.59C16.371 11.1967 16.8645 11 17.4442 11H24.91C25.488 11 25.9811 11.1967 26.3892 11.59C26.7964 11.9833 27 12.46 27 13.02V18.9813C27 19.5396 26.7964 20.0158 26.3892 20.41C25.982 20.8033 25.4889 21 24.91 21H17.4442ZM24.91 19.75C25.1421 19.75 25.3327 19.6779 25.482 19.5337C25.6313 19.3896 25.7059 19.2054 25.7059 18.9813V13.0187C25.7059 12.7946 25.6313 12.6104 25.482 12.4663C25.3327 12.3221 25.1421 12.25 24.91 12.25H17.4429C17.2109 12.25 17.0202 12.3221 16.8709 12.4663C16.7217 12.6104 16.6471 12.795 16.6471 13.02V18.9813C16.6471 19.2054 16.7217 19.3896 16.8709 19.5337C17.0202 19.6779 17.2113 19.75 17.4442 19.75H24.91ZM20.5294 17.875C21.0686 17.875 21.5272 17.6929 21.9051 17.3287C22.2829 16.9646 22.4715 16.5217 22.4706 16C22.4697 15.4783 22.2812 15.0358 21.9051 14.6725C21.5289 14.3092 21.0704 14.1267 20.5294 14.125C19.9885 14.1233 19.5304 14.3058 19.1551 14.6725C18.7798 15.0392 18.5908 15.4817 18.5882 16C18.5856 16.5183 18.7746 16.9612 19.1551 17.3287C19.5355 17.6962 19.9936 17.8783 20.5294 17.875Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-secure {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='M12.8386 20.9471H18.1627C18.473 20.9471 18.7332 20.842 18.9431 20.6317C19.153 20.4214 19.2579 20.1604 19.2579 19.8486V15.8749C19.2579 15.5641 19.153 15.3035 18.9431 15.0932C18.7332 14.883 18.4726 14.7778 18.1614 14.7778H17.9266V13.4184C17.9266 12.7396 17.6959 12.1686 17.2344 11.7055C16.773 11.2432 16.2035 11.0121 15.5258 11.0121C14.8481 11.0121 14.2786 11.2432 13.8171 11.7055C13.3557 12.1677 13.125 12.7386 13.125 13.4184V14.7778H12.8373C12.527 14.7778 12.2668 14.883 12.0569 15.0932C11.847 15.3035 11.7421 15.5641 11.7421 15.8749V19.8486C11.7421 20.1604 11.847 20.4214 12.0569 20.6317C12.2668 20.842 12.5274 20.9471 12.8386 20.9471ZM14.1686 14.7778V13.4184C14.1686 13.0332 14.2989 12.7101 14.5595 12.4491C14.8201 12.1881 15.1422 12.0576 15.5258 12.0576C15.9094 12.0576 16.232 12.1881 16.4934 12.4491C16.7549 12.7101 16.8847 13.0332 16.8829 13.4184V14.7778H14.1686ZM15.5 28C15.377 28 15.2471 27.9887 15.1105 27.966C14.9739 27.9434 14.8472 27.9094 14.7305 27.8641C12.0587 26.8445 9.93571 25.1152 8.36143 22.6763C6.78714 20.2375 6 17.5974 6 14.7561V8.9335C6 8.46766 6.13255 8.04803 6.39764 7.67463C6.66183 7.30123 7.00429 7.0307 7.425 6.86303L14.7332 4.1441C14.9974 4.04803 15.253 4 15.5 4C15.747 4 16.003 4.04803 16.2681 4.1441L23.575 6.86303C23.9948 7.03161 24.3373 7.30214 24.6024 7.67463C24.8675 8.04803 25 8.46766 25 8.9335V14.7561C25 17.5974 24.2129 20.2375 22.6386 22.6763C21.0643 25.1152 18.9417 26.8445 16.2709 27.8641C16.1523 27.9094 16.0252 27.9434 15.8895 27.966C15.7538 27.9887 15.624 28 15.5 28ZM15.5 26.7194C17.8524 25.9717 19.7976 24.4763 21.3357 22.2332C22.8738 19.99 23.6429 17.4977 23.6429 14.7561V8.90767C23.6429 8.73366 23.5949 8.57687 23.499 8.43729C23.404 8.29772 23.2692 8.1935 23.0946 8.12462L15.7877 5.40569C15.7009 5.36943 15.605 5.35131 15.5 5.35131C15.395 5.35131 15.2991 5.36943 15.2123 5.40569L7.90543 8.12462C7.73081 8.1935 7.596 8.29772 7.501 8.43729C7.4051 8.57687 7.35714 8.73366 7.35714 8.90767V14.7561C7.35714 17.4977 8.12619 19.99 9.66429 22.2332C11.2024 24.4763 13.1476 25.9717 15.5 26.7194Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping {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='M7.4275 25C6.43871 25 5.60068 24.6577 4.91341 23.973C4.22524 23.2884 3.88115 22.457 3.88115 21.4789H3.09745C2.78687 21.4789 2.52654 21.3748 2.31647 21.1666C2.10639 20.9584 2.00091 20.7 2 20.3913V8.17512C2 7.55507 2.20962 7.03776 2.62886 6.62319C3.0481 6.20863 3.57012 6.0009 4.19491 6H19.9708C20.5748 6 21.0913 6.21312 21.5205 6.63935C21.9497 7.06558 22.1648 7.57705 22.1657 8.17377V10.8658H24.2031C24.5499 10.8658 24.8786 10.9429 25.1891 11.0973C25.5006 11.2516 25.7569 11.4647 25.9579 11.7366L29.7813 16.8379C29.8547 16.9285 29.9095 17.0281 29.9457 17.1367C29.9819 17.2453 30 17.3633 30 17.4907V20.3913C30 20.7 29.8954 20.9584 29.6862 21.1666C29.4771 21.3748 29.2163 21.4789 28.9039 21.4789H27.8065C27.8065 22.457 27.4606 23.2884 26.7688 23.973C26.077 24.6577 25.2371 24.9996 24.2492 24.9987C23.2613 24.9978 22.4229 24.6559 21.7338 23.973C21.0447 23.2901 20.7006 22.4588 20.7015 21.4789H10.9874C10.9874 22.4624 10.6415 23.2951 9.94975 23.977C9.25795 24.659 8.4163 25 7.4275 25ZM7.4343 23.654C8.0455 23.654 8.56389 23.4431 8.98947 23.0214C9.41505 22.5997 9.62784 22.0855 9.62784 21.4789C9.62784 20.8723 9.41505 20.3586 8.98947 19.9377C8.56389 19.5169 8.0455 19.306 7.4343 19.3051C6.82309 19.3042 6.3047 19.5151 5.87912 19.9377C5.45354 20.3604 5.24075 20.8741 5.24075 21.4789C5.24075 22.0837 5.45354 22.5974 5.87912 23.0201C6.3047 23.4427 6.82309 23.6549 7.4343 23.654ZM3.35959 20.1329H4.23837C4.43124 19.5389 4.82467 19.0283 5.41868 18.6012C6.01268 18.174 6.68455 17.9596 7.4343 17.9578C8.14963 17.9578 8.81336 18.1678 9.42547 18.5877C10.0367 19.0068 10.4387 19.5218 10.6316 20.1329H20.8088V8.17512C20.8088 7.93284 20.7301 7.73408 20.5725 7.57885C20.4149 7.42361 20.2144 7.34599 19.9708 7.34599H4.19491C3.98574 7.34599 3.79423 7.43213 3.62037 7.60442C3.44561 7.7776 3.35823 7.96784 3.35823 8.17512L3.35959 20.1329ZM24.256 23.654C24.8672 23.654 25.3856 23.4431 25.8112 23.0214C26.2368 22.5988 26.4496 22.0846 26.4496 21.4789C26.4496 20.8732 26.2368 20.3595 25.8112 19.9377C25.3856 19.516 24.8672 19.3051 24.256 19.3051C23.6448 19.3051 23.1264 19.516 22.7008 19.9377C22.2753 20.3595 22.0625 20.8732 22.0625 21.4789C22.0625 22.0846 22.2753 22.5983 22.7008 23.0201C23.1264 23.4418 23.6448 23.654 24.256 23.654ZM22.1643 17.4409H28.5643L24.8292 12.5496C24.7423 12.4455 24.6422 12.3634 24.529 12.3033C24.4158 12.2432 24.2895 12.2131 24.1501 12.2131H22.1657L22.1643 17.4409Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-exchange {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='M14.0943 18.5833H19.861C20.0562 18.5833 20.2199 18.5171 20.3519 18.3847C20.4839 18.2523 20.5494 18.087 20.5485 17.8889C20.5476 17.6907 20.482 17.5255 20.3519 17.3931C20.2217 17.2606 20.0581 17.1944 19.861 17.1944H14.0943L16.495 14.7694C16.6233 14.6398 16.6921 14.4819 16.7013 14.2958C16.7104 14.1088 16.6389 13.9389 16.4867 13.7861C16.3401 13.638 16.1778 13.5639 16 13.5639C15.8222 13.5639 15.6599 13.638 15.5133 13.7861L12.2298 17.1028C12.0079 17.3278 11.897 17.5898 11.897 17.8889C11.897 18.188 12.0079 18.45 12.2298 18.675L15.5133 21.9917C15.6416 22.1213 15.7983 22.1921 15.9835 22.2042C16.1687 22.2162 16.3364 22.1454 16.4867 21.9917C16.6334 21.8435 16.7067 21.6796 16.7067 21.5C16.7067 21.3204 16.6334 21.1565 16.4867 21.0083L14.0943 18.5833ZM7.222 29C6.606 29 6.08167 28.7815 5.649 28.3444C5.21633 27.9074 5 27.3782 5 26.7569V9.02083C5 8.40046 5.21633 7.8713 5.649 7.43333C6.08167 6.9963 6.606 6.77778 7.222 6.77778H13.6845C13.5589 6.06852 13.7267 5.42824 14.1877 4.85694C14.6479 4.28565 15.252 4 16 4C16.7654 4 17.3787 4.28565 17.8398 4.85694C18.3008 5.42824 18.4599 6.06852 18.3169 6.77778H24.7794C25.3935 6.77778 25.9174 6.9963 26.351 7.43333C26.7837 7.87037 27 8.4 27 9.02222V26.7569C27 27.3773 26.7837 27.9065 26.351 28.3444C25.9183 28.7815 25.3945 29 24.7794 29H7.222ZM7.222 27.6111H24.7794C24.9902 27.6111 25.1841 27.5222 25.361 27.3444C25.5379 27.1667 25.6259 26.9704 25.625 26.7556V9.02222C25.625 8.80833 25.537 8.61204 25.361 8.43333C25.185 8.25463 24.9907 8.16574 24.778 8.16667H7.222C7.01025 8.16667 6.81592 8.25556 6.639 8.43333C6.46208 8.61111 6.37408 8.80741 6.375 9.02222V26.7569C6.375 26.9699 6.463 27.1657 6.639 27.3444C6.815 27.5231 7.00887 27.612 7.22062 27.6111M16 7.39167C16.2979 7.39167 16.5445 7.29352 16.7397 7.09722C16.935 6.90093 17.0322 6.65185 17.0312 6.35C17.0303 6.04815 16.9327 5.79954 16.7384 5.60417C16.544 5.4088 16.2979 5.31018 16 5.30833C15.7021 5.30648 15.456 5.40509 15.2616 5.60417C15.0673 5.80324 14.9697 6.05185 14.9688 6.35C14.9678 6.64815 15.0655 6.89722 15.2616 7.09722C15.4578 7.29722 15.7039 7.39537 16 7.39167Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-copy {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='M12.9349 23.1176C12.3426 23.1176 11.8484 22.9184 11.4524 22.5198C11.0564 22.1212 10.858 21.6238 10.8571 21.0276V7.09C10.8571 6.49471 11.0556 5.99734 11.4524 5.59788C11.8493 5.19843 12.3434 4.99914 12.9349 5H22.9236C23.515 5 24.0091 5.1993 24.406 5.59788C24.8029 5.99647 25.0009 6.49385 25 7.09V21.0276C25 21.6229 24.802 22.1199 24.406 22.5185C24.01 22.9171 23.5154 23.1168 22.9223 23.1176H12.9349ZM12.9349 21.8235H22.9236C23.1207 21.8235 23.302 21.7407 23.4674 21.5751C23.6329 21.4094 23.7151 21.2269 23.7143 21.0276V7.09C23.7143 6.89157 23.632 6.7091 23.4674 6.54259C23.3029 6.37608 23.1211 6.29326 22.9223 6.29412H12.9349C12.7369 6.29412 12.5551 6.37694 12.3897 6.54259C12.2243 6.70824 12.142 6.89071 12.1429 7.09V21.0276C12.1429 21.2261 12.2251 21.4085 12.3897 21.5751C12.5543 21.7416 12.7356 21.8244 12.9336 21.8235M9.07643 27C8.485 27 7.99086 26.8007 7.594 26.4021C7.19715 26.0035 6.99915 25.5062 7 24.91V10.3253C7 10.1415 7.06129 9.98796 7.18386 9.86459C7.30643 9.74122 7.45943 9.67953 7.64286 9.67953C7.82629 9.67953 7.97929 9.74122 8.10186 9.86459C8.22443 9.98796 8.28572 10.142 8.28572 10.3266V24.91C8.28572 25.1084 8.368 25.2909 8.53257 25.4574C8.69714 25.6239 8.87843 25.7067 9.07643 25.7059H19.7093C19.8919 25.7059 20.0444 25.7676 20.167 25.8909C20.2896 26.0143 20.3509 26.1683 20.3509 26.3529C20.3509 26.5376 20.2896 26.6916 20.167 26.8149C20.0444 26.9383 19.8914 27 19.708 27H9.07643Z' fill='black'/%3e%3c/svg%3e ");}
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 d='M18.3855 14.2934C18.3855 14.4648 18.3175 14.6291 18.1963 14.7503C18.0751 14.8715 17.9108 14.9395 17.7394 14.9395H14.9395V17.7394C14.9395 17.9108 14.8715 18.0751 14.7503 18.1963C14.6291 18.3175 14.4648 18.3855 14.2934 18.3855C14.122 18.3855 13.9577 18.3175 13.8365 18.1963C13.7154 18.0751 13.6473 17.9108 13.6473 17.7394V14.9395H10.8474C10.676 14.9395 10.5117 14.8715 10.3905 14.7503C10.2693 14.6291 10.2013 14.4648 10.2013 14.2934C10.2013 14.122 10.2693 13.9577 10.3905 13.8365C10.5117 13.7154 10.676 13.6473 10.8474 13.6473H13.6473V10.8474C13.6473 10.676 13.7154 10.5117 13.8365 10.3905C13.9577 10.2693 14.122 10.2013 14.2934 10.2013C14.4648 10.2013 14.6291 10.2693 14.7503 10.3905C14.8715 10.5117 14.9395 10.676 14.9395 10.8474V13.6473H17.7394C17.9108 13.6473 18.0751 13.7154 18.1963 13.8365C18.3175 13.9577 18.3855 14.122 18.3855 14.2934ZM26.811 26.811C26.6899 26.932 26.5257 27 26.3544 27C26.1832 27 26.019 26.932 25.8978 26.811L20.3648 21.278C18.5503 22.8559 16.1941 23.6675 13.7928 23.542C11.3916 23.4164 9.13284 22.3634 7.4928 20.6049C5.85276 18.8465 4.95954 16.5199 5.00141 14.1158C5.04328 11.7116 6.01698 9.41754 7.71726 7.71726C9.41754 6.01698 11.7116 5.04328 14.1158 5.00141C16.5199 4.95954 18.8465 5.85276 20.6049 7.4928C22.3634 9.13284 23.4164 11.3916 23.542 13.7928C23.6675 16.1941 22.8559 18.5503 21.278 20.3648L26.811 25.8978C26.932 26.019 27 26.1832 27 26.3544C27 26.5257 26.932 26.6899 26.811 26.811ZM14.2934 22.2623C15.8695 22.2623 17.4102 21.7949 18.7207 20.9193C20.0312 20.0437 21.0526 18.7991 21.6557 17.343C22.2589 15.8868 22.4167 14.2846 22.1092 12.7388C21.8017 11.1929 21.0427 9.77302 19.9283 8.65855C18.8138 7.54407 17.3939 6.78511 15.8481 6.47763C14.3022 6.17015 12.7 6.32796 11.2438 6.93111C9.78772 7.53425 8.54314 8.55565 7.66751 9.86612C6.79188 11.1766 6.32451 12.7173 6.32451 14.2934C6.32707 16.4061 7.16748 18.4315 8.66138 19.9254C10.1553 21.4193 12.1807 22.2597 14.2934 22.2623Z' fill='%23999999'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-tag {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='M13.9417 6.60723L3.07518 17.4848C2.38658 18.1676 2.00604 19.0801 2 20.0591C2 21.0321 2.3745 21.9446 3.0631 22.6335L9.36314 28.9364C10.0517 29.6193 10.9638 30 11.9363 30C12.9088 30 13.8209 29.6253 14.5095 28.9364L25.382 18.0589C26.0042 17.4364 26.3304 16.5783 26.27 15.7021L26.0404 12.2031C26.7834 11.8768 27.4841 11.3994 28.0881 10.7951C29.1633 9.71942 29.8337 8.35972 29.9727 6.96377C30.1176 5.50739 29.6827 4.19604 28.7405 3.25332C26.8438 1.35579 23.4612 1.64586 21.1901 3.89993C20.9062 4.18395 20.9062 4.64323 21.1901 4.92725C21.474 5.21128 21.933 5.21128 22.2169 4.92725C23.9142 3.23519 26.3727 2.93908 27.7076 4.2746C28.3358 4.90308 28.6257 5.8035 28.523 6.81269C28.4143 7.87628 27.8948 8.92173 27.0552 9.76172C26.7109 10.1062 26.3304 10.3962 25.9317 10.6259L25.7445 7.83397C25.6901 6.9819 25.0015 6.29299 24.1498 6.2386L16.2914 5.71889C16.2249 5.71285 16.1585 5.71285 16.092 5.71285C15.2826 5.71285 14.5155 6.03313 13.9417 6.60723ZM10.4028 27.9092L4.09676 21.6002C3.68601 21.1893 3.45648 20.6394 3.45648 20.0532C3.45648 19.467 3.68601 18.9171 4.09676 18.5062L14.9633 7.63465C15.2592 7.33854 15.67 7.16934 16.0928 7.16934C16.1109 7.16934 16.1291 7.17085 16.1472 7.17236C16.1653 7.17387 16.1834 7.17538 16.2015 7.17538L24.06 7.69508C24.1929 7.70717 24.3016 7.8099 24.3076 7.94285L24.5251 11.1819L24.5251 11.1819C24.3922 11.2061 24.2593 11.2303 24.1204 11.2424C23.1116 11.3451 22.2116 11.055 21.5835 10.4266C21.2996 10.1425 20.8405 10.1425 20.5566 10.4266C20.2727 10.7106 20.2727 11.1699 20.5566 11.4539C21.3781 12.2757 22.4835 12.7108 23.7217 12.7108C23.8969 12.7108 24.0781 12.6988 24.2593 12.6806C24.3801 12.6685 24.5009 12.6504 24.6217 12.6323L24.8331 15.7989C24.8633 16.2581 24.6942 16.7053 24.368 17.0316L13.4955 27.9092C13.0847 28.3201 12.5351 28.5498 11.9492 28.5498C11.3632 28.5498 10.8136 28.3201 10.4028 27.9092Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-points {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%3crect width='24' height='24' transform='translate(4 4)' fill='black'/%3e%3cpath d='M9.56079 17.8436V26.4802H5.92004V5.98385H18.07C20.1444 5.9012 22.2187 6.43841 23.9121 7.59546C25.3091 8.50457 26.1982 10.0749 26.1982 11.7278C26.1982 13.3394 25.4361 14.827 24.2085 15.8601C22.4727 17.2651 20.2714 17.9676 18.0276 17.8023L9.56079 17.8436ZM9.56079 8.3806V15.4882H16.8C20.4407 15.4882 22.2611 14.2485 22.2611 11.8104C22.2611 9.57897 20.483 8.3806 16.927 8.3806H9.56079Z' fill='white'/%3e%3c/svg%3e ");}

body .rdc-icon-svg.rdc-icon-gift{background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6275 11.7152H20.5824C20.7899 11.5796 20.9867 11.4267 21.1706 11.2581C21.448 11.0009 21.6714 10.6869 21.8269 10.3358C21.9824 9.98469 22.0667 9.60397 22.0745 9.21742C22.0865 8.79219 22.015 8.36889 21.8644 7.97343C21.7137 7.57798 21.487 7.2187 21.1983 6.9176C20.9095 6.61651 20.5648 6.37993 20.1851 6.22237C19.8054 6.06481 19.3988 5.98959 18.9902 6.0013C18.6188 6.0094 18.253 6.09712 17.9156 6.25898C17.5782 6.42085 17.2765 6.65338 17.0294 6.94205C16.5753 7.49982 16.2261 8.14156 16 8.83377C15.7744 8.14208 15.4259 7.5007 14.9725 6.94307C14.7253 6.65397 14.4233 6.4211 14.0856 6.25905C13.7479 6.09699 13.3816 6.00925 13.0098 6.0013C12.601 5.98903 12.194 6.06381 11.814 6.22105C11.4339 6.37829 11.0887 6.61469 10.7995 6.91573C10.5103 7.21678 10.2833 7.57613 10.1323 7.97174C9.98137 8.36736 9.90965 8.7909 9.92157 9.2164C9.92935 9.60294 10.0136 9.98367 10.1692 10.3348C10.3247 10.6859 10.5481 10.9999 10.8255 11.2571C11.0092 11.4259 11.206 11.5788 11.4137 11.7142H7.37255C7.19222 11.7142 7.01366 11.7512 6.84707 11.823C6.68048 11.8949 6.52913 12.0002 6.40166 12.1329C6.2742 12.2657 6.17312 12.4233 6.1042 12.5967C6.03528 12.7702 5.99987 12.956 6 13.1437V16.4088C6 16.7876 6.14461 17.151 6.40201 17.4189C6.65941 17.6868 7.00853 17.8373 7.37255 17.8373H7.56863V24.5715C7.56863 24.9504 7.71324 25.3137 7.97064 25.5816C8.22804 25.8495 8.57715 26 8.94118 26H23.0588C23.4228 26 23.772 25.8495 24.0294 25.5816C24.2868 25.3137 24.4314 24.9504 24.4314 24.5715V17.8373H24.6275C24.9915 17.8373 25.3406 17.6868 25.598 17.4189C25.8554 17.151 26 16.7876 26 16.4088V13.1437C26 12.7648 25.8554 12.4015 25.598 12.1336C25.3406 11.8657 24.9915 11.7152 24.6275 11.7152ZM16.7618 10.5928C16.9824 9.35618 17.3784 8.37359 17.9078 7.75119C18.0495 7.58846 18.2219 7.45783 18.4141 7.36743C18.6064 7.27702 18.8145 7.22878 19.0255 7.22571H19.0794C19.3233 7.22574 19.5647 7.27669 19.7894 7.37556C20.014 7.47442 20.2174 7.61918 20.3873 7.80128C20.5572 7.98337 20.6903 8.19909 20.7787 8.43568C20.8671 8.67227 20.909 8.9249 20.902 9.17864C20.8986 9.39844 20.8518 9.61516 20.7644 9.81529C20.6771 10.0154 20.551 10.1947 20.3941 10.3418C19.3431 11.3071 17.5608 11.5958 16.6216 11.6795C16.6461 11.3846 16.6863 11.0091 16.7618 10.5928ZM11.6324 7.7818C11.9745 7.42695 12.4375 7.2271 12.9206 7.22571H12.9745C13.1857 7.22917 13.3939 7.27789 13.5862 7.36883C13.7785 7.45976 13.9507 7.59096 14.0922 7.75425C15.0196 8.84805 15.2971 10.703 15.3775 11.6805C15.0941 11.655 14.7333 11.6111 14.3373 11.5346C13.149 11.3071 12.2049 10.8928 11.6069 10.3408C11.4497 10.194 11.3234 10.015 11.2359 9.81501C11.1483 9.61503 11.1014 9.39838 11.098 9.17864C11.0913 8.92025 11.1352 8.66313 11.227 8.42297C11.3189 8.18281 11.4568 7.96465 11.6324 7.7818ZM7.17647 16.4088V13.1437C7.17647 13.0896 7.19713 13.0377 7.2339 12.9994C7.27067 12.9611 7.32055 12.9396 7.37255 12.9396H15.4118V16.6129H7.37255C7.32055 16.6129 7.27067 16.5914 7.2339 16.5531C7.19713 16.5148 7.17647 16.4629 7.17647 16.4088ZM8.7451 24.5715V17.8373H15.4118V24.7756H8.94118C8.88917 24.7756 8.8393 24.7541 8.80253 24.7158C8.76576 24.6775 8.7451 24.6256 8.7451 24.5715ZM23.2549 24.5715C23.2549 24.6256 23.2342 24.6775 23.1975 24.7158C23.1607 24.7541 23.1108 24.7756 23.0588 24.7756H16.5882V17.8373H23.2549V24.5715ZM24.8235 16.4088C24.8235 16.4629 24.8029 16.5148 24.7661 16.5531C24.7293 16.5914 24.6795 16.6129 24.6275 16.6129H16.5882V12.9396H24.6275C24.6795 12.9396 24.7293 12.9611 24.7661 12.9994C24.8029 13.0377 24.8235 13.0896 24.8235 13.1437V16.4088Z' fill='black'/%3E%3C/svg%3E%0A");}

body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.57143 26.44H12.3731V18.5201C12.3731 18.1634 12.4952 17.8644 12.7393 17.6231C12.9823 17.3808 13.2835 17.2597 13.6429 17.2597H18.3571C18.7165 17.2597 19.0182 17.3808 19.2623 17.6231C19.5053 17.8644 19.6269 18.1634 19.6269 18.5201V26.44H25.4286V12.8809C25.4286 12.7207 25.3935 12.5751 25.3233 12.4441C25.2531 12.313 25.1572 12.1986 25.0357 12.1009L16.5751 5.77056C16.4138 5.6312 16.2221 5.56152 16 5.56152C15.7779 5.56152 15.5867 5.6312 15.4264 5.77056L6.96429 12.1009C6.84381 12.2007 6.74795 12.3151 6.67671 12.4441C6.60548 12.573 6.57038 12.7186 6.57143 12.8809V26.44ZM5 26.44V12.8809C5 12.4815 5.0901 12.1035 5.27029 11.7468C5.45048 11.3901 5.69876 11.0963 6.01514 10.8654L14.4773 4.50387C14.9204 4.16796 15.4264 4 15.9953 4C16.5641 4 17.0733 4.16796 17.5227 4.50387L25.9849 10.8638C26.3023 11.0947 26.5506 11.389 26.7297 11.7468C26.9099 12.1035 27 12.4815 27 12.8809V26.44C27 26.8581 26.8434 27.2226 26.5301 27.5336C26.2169 27.8445 25.8497 28 25.4286 28H19.3251C18.9648 28 18.663 27.8794 18.42 27.6381C18.177 27.3958 18.0554 27.0963 18.0554 26.7395V18.8212H13.9446V26.7395C13.9446 27.0973 13.823 27.3968 13.58 27.6381C13.337 27.8794 13.0358 28 12.6764 28H6.57143C6.15029 28 5.78309 27.8445 5.46986 27.5336C5.15662 27.2226 5 26.8581 5 26.44Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {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='M14.1777 17.294C13.5578 17.293 13.0399 17.5044 12.6239 17.928C12.208 18.3516 12 18.8791 12 19.5104V22.7836C12 23.4158 12.208 23.9433 12.6239 24.366C13.0399 24.7887 13.5578 25 14.1777 25H17.5333C18.1541 24.9991 18.672 24.7873 19.0871 24.3646C19.5021 23.9419 19.7096 23.4149 19.7096 22.7836V19.5104C19.7105 18.8782 19.503 18.3507 19.0871 17.928C18.6711 17.5053 18.1532 17.294 17.5333 17.294H14.1777ZM17.5313 23.66L17.5324 23.66C17.8128 23.6594 17.9807 23.5788 18.1309 23.4257C18.2827 23.2712 18.3696 23.0892 18.3696 22.7836V19.5085C18.3701 19.2028 18.2833 19.0217 18.1319 18.8679C17.9803 18.7138 17.8122 18.634 17.5333 18.634H14.1757C13.8984 18.6335 13.7314 18.7127 13.5801 18.8668C13.4269 19.0229 13.34 19.2056 13.34 19.5104V22.7836C13.34 23.0898 13.4272 23.2718 13.579 23.4261C13.7306 23.5801 13.8988 23.66 14.1777 23.66L17.5313 23.66ZM17.5333 14.706H14.1777C13.5578 14.706 13.0399 14.4947 12.6239 14.072C12.208 13.6493 12 13.1218 12 12.4896V9.21643C12 8.58512 12.208 8.05812 12.6239 7.63542C13.0399 7.21272 13.5578 7.00091 14.1777 7H17.5333C18.1532 7 18.6711 7.21181 19.0871 7.63542C19.503 8.05904 19.7105 8.58604 19.7096 9.21643V12.4896C19.7096 13.1209 19.5021 13.6484 19.0871 14.072C18.672 14.4956 18.1541 14.707 17.5333 14.706ZM18.3696 9.21452C18.3701 8.91187 18.284 8.73018 18.1309 8.57426C17.9791 8.41964 17.8113 8.34 17.5333 8.34H14.1789C13.8998 8.34057 13.731 8.42086 13.579 8.57529C13.4268 8.73001 13.34 8.91169 13.34 9.21643V12.4896C13.34 12.7959 13.4272 12.9778 13.579 13.1321C13.7306 13.2862 13.8988 13.366 14.1777 13.366H17.5353C17.8141 13.3664 17.9803 13.2869 18.1299 13.1342C18.2826 12.9783 18.3696 12.7952 18.3696 12.4896V9.21452Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1.active,
body .rdc-icon-svg.rdc-icon-view1-active {background-image: url("data:image/svg+xml;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.1777 14.706C13.5578 14.706 13.0399 14.4947 12.6239 14.072C12.208 13.6493 12 13.1218 12 12.4896V9.21643C12 8.58512 12.208 8.05812 12.6239 7.63542C13.0399 7.21272 13.5578 7.00091 14.1777 7H17.5333C18.1532 7 18.6711 7.21181 19.0871 7.63542C19.503 8.05904 19.7105 8.58604 19.7096 9.21643V12.4896C19.7096 13.1209 19.5021 13.6484 19.0871 14.072C18.672 14.4956 18.1541 14.707 17.5333 14.706H14.1777ZM14.1777 25C13.5578 25 13.0399 24.7887 12.6239 24.366C12.208 23.9433 12 23.4158 12 22.7836V19.5104C12 18.8791 12.208 18.3516 12.6239 17.928C13.0399 17.5044 13.5578 17.293 14.1777 17.294H17.5333C18.1532 17.294 18.6711 17.5053 19.0871 17.928C19.503 18.3507 19.7105 18.8782 19.7096 19.5104V22.7836C19.7096 23.4149 19.5021 23.9419 19.0871 24.3646C18.672 24.7873 18.1541 24.9991 17.5333 25H14.1777Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {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='M19.6742 17.294C19.0552 17.293 18.5378 17.5044 18.1218 17.928C17.7059 18.3516 17.4979 18.8791 17.4979 19.5104V22.7836C17.4988 23.4158 17.7068 23.9433 18.1218 24.366C18.5369 24.7887 19.0544 25 19.6742 25H22.8236C23.4426 24.9991 23.9601 24.7873 24.3761 24.3646C24.792 23.9419 25 23.4149 25 22.7836V19.5104C25.0009 18.8782 24.7934 18.3507 24.3774 17.928C23.9615 17.5053 23.4435 17.294 22.8236 17.294H19.6742ZM22.8217 23.66C22.822 23.66 22.8224 23.66 22.8227 23.66C23.1002 23.6594 23.2686 23.5795 23.4209 23.4247C23.5732 23.27 23.66 23.0883 23.66 22.7836V19.5085C23.6604 19.2028 23.5737 19.0217 23.4223 18.8679C23.2707 18.7138 23.1026 18.634 22.8236 18.634H19.6723C19.3964 18.6335 19.2297 18.7123 19.0779 18.8668C18.9247 19.0229 18.8379 19.2056 18.8379 19.5104V22.7827C18.8385 23.0898 18.9263 23.2727 19.0779 23.4271C19.2283 23.5802 19.3953 23.66 19.6742 23.66L22.8217 23.66ZM22.8236 14.706C23.4444 14.707 23.9624 14.4956 24.3774 14.072C24.7925 13.6484 25 13.1209 25 12.4896V9.21643C24.9991 8.58604 24.7911 8.05904 24.3761 7.63542C23.961 7.21181 23.4435 7 22.8236 7H19.6742C19.0552 7.00091 18.5378 7.21272 18.1218 7.63542C17.7059 8.05812 17.4979 8.58512 17.4979 9.21643V12.4896C17.4988 13.1218 17.7068 13.6493 18.1218 14.072C18.5369 14.4947 19.0543 14.706 19.6742 14.706H22.8236ZM18.8379 12.4888C18.8385 12.7959 18.9263 12.9787 19.0779 13.1331C19.2283 13.2862 19.3953 13.366 19.6742 13.366H22.8256C23.1044 13.3664 23.2706 13.2869 23.4203 13.1342C23.573 12.9783 23.66 12.7952 23.66 12.4896L23.66 9.21834C23.66 9.21798 23.66 9.21762 23.66 9.21726C23.6594 8.91317 23.5723 8.7298 23.4189 8.57323C23.2684 8.41957 23.1016 8.34 22.8236 8.34H19.6754C19.3978 8.34057 19.2293 8.42046 19.0769 8.57529C18.9247 8.73001 18.8379 8.91168 18.8379 9.21643V12.4888ZM9.1777 17.294C8.55781 17.293 8.03989 17.5044 7.62393 17.928C7.20798 18.3516 7 18.8791 7 19.5104V22.7836C7 23.4158 7.20798 23.9433 7.62393 24.366C8.03989 24.7887 8.55781 25 9.1777 25H12.5333C13.1541 24.9991 13.672 24.7873 14.0871 24.3646C14.5021 23.9419 14.7096 23.4149 14.7096 22.7836V19.5104C14.7105 18.8782 14.503 18.3507 14.0871 17.928C13.6711 17.5053 13.1532 17.294 12.5333 17.294H9.1777ZM12.5313 23.66C12.5317 23.66 12.532 23.66 12.5324 23.66C12.8128 23.6594 12.9807 23.5788 13.1309 23.4257C13.2827 23.2712 13.3696 23.0892 13.3696 22.7836V19.5085C13.3701 19.2028 13.2833 19.0217 13.1319 18.8679C12.9803 18.7138 12.8122 18.634 12.5333 18.634H9.17572C8.89836 18.6335 8.73138 18.7127 8.58006 18.8668C8.42685 19.0229 8.34 19.2056 8.34 19.5104V22.7836C8.34 23.0898 8.42719 23.2718 8.57905 23.4261C8.73065 23.5801 8.89877 23.66 9.1777 23.66L12.5313 23.66ZM12.5333 14.706H9.1777C8.55781 14.706 8.03989 14.4947 7.62393 14.072C7.20798 13.6493 7 13.1218 7 12.4896V9.21643C7 8.58512 7.20798 8.05812 7.62393 7.63542C8.03989 7.21272 8.55781 7.00091 9.1777 7H12.5333C13.1532 7 13.6711 7.21181 14.0871 7.63542C14.503 8.05904 14.7105 8.58604 14.7096 9.21643V12.4896C14.7096 13.1209 14.5021 13.6484 14.0871 14.072C13.672 14.4956 13.1541 14.707 12.5333 14.706ZM13.3696 9.21452C13.3701 8.91187 13.284 8.73018 13.1309 8.57426C12.9791 8.41964 12.8113 8.34 12.5333 8.34H9.17886C8.89978 8.34057 8.73101 8.42086 8.57904 8.57529C8.4268 8.73001 8.34 8.91169 8.34 9.21643V12.4896C8.34 12.7959 8.42719 12.9778 8.57904 13.1321C8.73065 13.2862 8.89877 13.366 9.1777 13.366H12.5353C12.8141 13.3664 12.9803 13.2869 13.1299 13.1342C13.2826 12.9783 13.3696 12.7952 13.3696 12.4896V9.21452Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2.active,
body .rdc-icon-svg.rdc-icon-view2-active {background-image: url("data:image/svg+xml;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.6742 14.706C19.0543 14.706 18.5369 14.4947 18.1218 14.072C17.7068 13.6493 17.4988 13.1218 17.4979 12.4896V9.21643C17.4979 8.58512 17.7059 8.05812 18.1218 7.63542C18.5378 7.21272 19.0552 7.00091 19.6742 7H22.8236C23.4435 7 23.961 7.21181 24.3761 7.63542C24.7911 8.05904 24.9991 8.58604 25 9.21643V12.4896C25 13.1209 24.7925 13.6484 24.3774 14.072C23.9624 14.4956 23.4444 14.707 22.8236 14.706H19.6742ZM9.1777 14.706C8.55781 14.706 8.03989 14.4947 7.62393 14.072C7.20798 13.6493 7 13.1218 7 12.4896V9.21643C7 8.58512 7.20798 8.05812 7.62393 7.63542C8.03989 7.21272 8.55781 7.00091 9.1777 7H12.5333C13.1532 7 13.6711 7.21181 14.0871 7.63542C14.503 8.05904 14.7105 8.58604 14.7096 9.21643V12.4896C14.7096 13.1209 14.5021 13.6484 14.0871 14.072C13.672 14.4956 13.1541 14.707 12.5333 14.706H9.1777ZM9.1777 25C8.55781 25 8.03989 24.7887 7.62393 24.366C7.20798 23.9433 7 23.4158 7 22.7836V19.5104C7 18.8791 7.20798 18.3516 7.62393 17.928C8.03989 17.5044 8.55781 17.293 9.1777 17.294H12.5333C13.1532 17.294 13.6711 17.5053 14.0871 17.928C14.503 18.3507 14.7105 18.8782 14.7096 19.5104V22.7836C14.7096 23.4149 14.5021 23.9419 14.0871 24.3646C13.672 24.7873 13.1541 24.9991 12.5333 25H9.1777ZM19.6742 25C19.0544 25 18.5369 24.7887 18.1218 24.366C17.7068 23.9433 17.4988 23.4158 17.4979 22.7836V19.5104C17.4979 18.8791 17.7059 18.3516 18.1218 17.928C18.5378 17.5044 19.0552 17.293 19.6742 17.294H22.8236C23.4435 17.294 23.9615 17.5053 24.3774 17.928C24.7934 18.3507 25.0009 18.8782 25 19.5104V22.7836C25 23.4149 24.792 23.9419 24.3761 24.3646C23.9601 24.7873 23.4426 24.9991 22.8236 25H19.6742Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-size-guide{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.7158 24.6429H25.2842L15.9873 17.6753L6.7158 24.6429ZM13.7204 9.86629C13.6609 9.99295 13.581 10.092 13.4807 10.1635C13.3803 10.235 13.2573 10.2703 13.1117 10.2694C12.9208 10.2694 12.761 10.2042 12.6322 10.0739C12.5017 9.94274 12.4364 9.77988 12.4364 9.58536C12.4364 9.52836 12.4422 9.48629 12.4537 9.45914C12.4653 9.432 12.4848 9.39129 12.5123 9.337C12.8196 8.64033 13.2897 8.07667 13.9229 7.646C14.556 7.21533 15.253 7 16.014 7C17.0795 7 17.9772 7.37095 18.7071 8.11286C19.4379 8.85476 19.8033 9.76857 19.8033 10.8543C19.8033 11.8133 19.5067 12.6457 18.9136 13.3514C18.3204 14.059 17.567 14.4928 16.6533 14.6529V16.4742L27.7243 24.784C27.8166 24.8401 27.8855 24.9161 27.9307 25.012C27.976 25.1079 27.9991 25.212 28 25.3241C28 25.516 27.9365 25.6765 27.8095 25.8059C27.6826 25.9353 27.5241 26 27.334 26H4.66596C4.47683 26 4.31877 25.9358 4.1918 25.8073C4.06482 25.6788 4.00089 25.5205 4 25.3323C4 25.2201 4.02309 25.1151 4.06926 25.0174C4.11543 24.9197 4.18469 24.8419 4.27704 24.784L15.3214 16.4729V14.0449C15.3214 13.8531 15.3871 13.6921 15.5185 13.5618C15.6499 13.4315 15.8089 13.3664 15.9953 13.3664C16.6702 13.3664 17.2518 13.1194 17.7402 12.6254C18.2285 12.1305 18.4727 11.5396 18.4727 10.8529C18.4727 10.1653 18.2334 9.57721 17.7548 9.08864C17.2771 8.60098 16.6964 8.35714 16.0127 8.35714C15.5278 8.35714 15.0763 8.4906 14.6581 8.7575C14.2399 9.02531 13.9273 9.3949 13.7204 9.86629Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sfm-language{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='M16 27C14.4861 27 13.0602 26.7107 11.7222 26.1322C10.3843 25.5537 9.21912 24.7674 8.22667 23.7733C7.23423 22.7793 6.44793 21.6141 5.86778 20.2778C5.28764 18.9415 4.99838 17.5156 5.00001 16C5.00001 14.482 5.28927 13.0549 5.86778 11.7186C6.4463 10.3823 7.2326 9.2183 8.22667 8.22667C9.22075 7.23504 10.3859 6.44915 11.7222 5.869C13.0585 5.28885 14.4844 4.99919 16 5C17.518 5 18.9452 5.28926 20.2814 5.86778C21.6177 6.4463 22.7821 7.23259 23.7746 8.22667C24.767 9.22074 25.5525 10.3847 26.131 11.7186C26.7095 13.0524 26.9992 14.4796 27 16C27 17.5139 26.7107 18.9398 26.1322 20.2778C25.5537 21.6157 24.7674 22.7809 23.7733 23.7733C22.7793 24.7658 21.6153 25.5521 20.2814 26.1322C18.9476 26.7124 17.5204 27.0016 16 27ZM16 25.7876C16.717 24.866 17.3086 23.9611 17.7747 23.073C18.2407 22.1849 18.6192 21.1908 18.9101 20.0908H13.0899C13.4126 21.2527 13.7988 22.2777 14.2486 23.1659C14.6983 24.054 15.2822 24.9279 16 25.7876ZM14.4441 25.6042C13.8737 24.932 13.3531 24.1009 12.8821 23.1109C12.4112 22.1217 12.0608 21.1146 11.831 20.0896H7.14256C7.8433 21.61 8.83615 22.8567 10.1211 23.8296C11.4061 24.8024 12.8467 25.394 14.4429 25.6042M17.5547 25.6042C19.1501 25.394 20.5907 24.8024 21.8764 23.8296C23.1622 22.8567 24.1551 21.61 24.855 20.0896H20.169C19.8594 21.1301 19.4695 22.1453 18.9993 23.1353C18.5284 24.1245 18.0468 24.9475 17.5547 25.6042ZM6.6439 18.8673H11.5756C11.4827 18.3662 11.4175 17.8777 11.38 17.4019C11.3409 16.926 11.3213 16.4587 11.3213 16C11.3213 15.5413 11.3405 15.074 11.3788 14.5981C11.4171 14.1223 11.4823 13.6334 11.5743 13.1314H6.64634C6.51353 13.5551 6.40964 14.0167 6.33467 14.5162C6.25971 15.0157 6.22223 15.5103 6.22223 16C6.22223 16.4897 6.2593 16.9843 6.33345 17.4838C6.4076 17.9833 6.51149 18.4444 6.64512 18.8673M12.799 18.8673H19.201C19.2939 18.3662 19.3591 17.8855 19.3966 17.4251C19.434 16.9647 19.454 16.4897 19.4564 16C19.4589 15.5103 19.4397 15.0353 19.399 14.5749C19.3583 14.1145 19.2931 13.6338 19.2034 13.1327H12.7978C12.7057 13.6338 12.6405 14.1145 12.6022 14.5749C12.5639 15.0353 12.5448 15.5103 12.5448 16C12.5448 16.4897 12.5639 16.9647 12.6022 17.4251C12.6405 17.8855 12.7069 18.3662 12.799 18.8673ZM20.4244 18.8673H25.3549C25.4877 18.4436 25.5916 17.9824 25.6666 17.4838C25.7415 16.9851 25.7786 16.4905 25.7778 16C25.777 15.5095 25.7399 15.0149 25.6666 14.5162C25.5932 14.0176 25.4893 13.5564 25.3549 13.1327H20.4232C20.5161 13.6338 20.5813 14.1223 20.6188 14.5981C20.6579 15.074 20.6774 15.5413 20.6774 16C20.6774 16.4587 20.6583 16.926 20.62 17.4019C20.5817 17.8777 20.5165 18.3666 20.4244 18.8686M20.1702 11.9104H24.8562C24.14 10.359 23.159 9.11237 21.9131 8.17045C20.6664 7.22852 19.214 6.62963 17.5559 6.37378C18.1263 7.12341 18.6392 7.98141 19.0947 8.94778C19.5501 9.91415 19.9087 10.9017 20.1702 11.9104ZM13.0899 11.9104H18.9101C18.5874 10.7632 18.1894 9.72593 17.716 8.79867C17.2426 7.87141 16.6706 7.00933 16 6.21245C15.3294 7.00852 14.7574 7.87059 14.284 8.79867C13.8114 9.72593 13.4134 10.7632 13.0899 11.9104ZM7.14378 11.9104H11.8298C12.0922 10.9009 12.4507 9.91333 12.9053 8.94778C13.36 7.98222 13.8729 7.12382 14.4441 6.37256C12.7705 6.62922 11.3144 7.23219 10.0759 8.18145C8.83738 9.1307 7.8596 10.3733 7.14256 11.9092' fill='black'/%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) {}


/*
 *
 * Header
 *
*/

#header #header-nav a span{color: var(--color-white);text-transform: uppercase;}
#header #header-nav a.featured span{color: var(--color-error);}
#header #header-nav a.active span{color: var(--color-theme);}
#header .header-nav-item.active {background-color: #F9F9F9;}
.header-shop-item .header-shop-icon-text-count{font-size: 10px;font-weight: 500;line-height: 160%;}
.shop-tooltip-body .shop-tooltip-item-wrap:first-child .shop-tooltip-item{color: var(--color-dark);}


#header .header-nav-item:first-child { border-radius: 6px 0px 0px 6px; -webkit-border-radius: 6px 0px 0px 6px; -moz-border-radius: 6px 0px 0px 6px; -ms-border-radius: 6px 0px 0px 6px; -o-border-radius: 6px 0px 0px 6px; } 
#header .header-nav-item:last-child { border-radius: 0px 6px 6px 0px; -webkit-border-radius: 0px 6px 6px 0px; -moz-border-radius: 0px 6px 6px 0px; -ms-border-radius: 0px 6px 6px 0px; -o-border-radius: 0px 6px 6px 0px; } 
#header .header-nav-item.sub{ border-radius: 0; -webkit-border-radius: 0 ; -moz-border-radius: 0 ; -ms-border-radius: 0 ; -o-border-radius: 0 ; }

/*
 *
 * Pesquisa
 *
*/
/* Pesquisa sem resultados */
.content-search.content-noresults .title-heading-titles{font-size: 43px; font-weight: 400;line-height: 149%;}
.content-search.content-noresults .heading-titles .short-content-heading-titles{padding-top: 0;}
@media screen and (min-width: 1200px) {
	#paragraph-5454 { text-align: center; }
}
@media screen and (max-width: 767px) {
	.content-search.content-noresults .title-heading-titles{font-size: 30px;}
	#iframe-message .secondary-subtitle{font-weight: 400;font-size: 13px;line-height: 154%;color: #000;}
}




/*
 *
 * Footer
 *
*/
body #footer .footer-menu-row .list-nav-title, body #footer .wrapper-footer .list-nav-title{color: var(--color-dark);text-transform: uppercase;font-size: 13px;font-weight: 500;}
body #footer .wrapper-footer .paragraph, 
body #footer .wrapper-footer .paragraph a, 
body #footer .wrapper-footer .paragraph .a, 
body #footer .wrapper-footer small,
body #footer .wrapper-footer .small { color: var(--color-black); }
#footer .newsletter-footer-form-column-right button {border-radius: 0 8px 8px 0;padding: 16px 28px 15px 29px;line-height: normal;}
#footer .newsletter-footer-form-column-left input[type="email"] {border-radius: 8px 0 0 8px;border: 1px solid var(--color-dark);border-right: 0;padding: 17px 15px 16px;background-color: var(--color-background);}
/*body #footer .rdc-footer-menu-list_item-info .paragraph {font-weight: 400;font-size: 13px;color: var(--color-gray);}*/
#footer .rdc-footer-menu-list_desc p a{text-decoration: underline;}
#footer .rdc-footer-menu-list_desc p a:hover{text-decoration: none;}
.bottom-footer-column.bottom-footer-column-left small{font-size: 13px;}
body .rdc-icon-svg.rdc-icon-footer1{background-image: url("data:image/svg+xml,%0A%3Csvg width='100' height='50' viewBox='0 0 100 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2755_3161)'%3E%3Cpath d='M99.45 49.45H0.55V0.55H99.45V49.45Z' fill='white' stroke='%23099547' stroke-width='1.1'/%3E%3Cpath d='M3 3H97V7.22222H3V3Z' fill='%23B2ADB1'/%3E%3Cpath d='M3 7.22217H97V12.4999H3V7.22217Z' fill='%23099547'/%3E%3Cpath d='M3 12.5005H97V16.7227H3V12.5005Z' fill='%237BCD3D'/%3E%3Cpath d='M3 16.7222H97V21.9999H3V16.7222Z' fill='%2326BC7C'/%3E%3Cpath d='M26.7222 8.27778H32V16.7222H26.7222V22H18.2778V16.7222H13V8.27778H18.2778V3H26.7222V8.27778Z' fill='white'/%3E%3Crect x='3.8457' y='26' width='10.8021' height='7' rx='0.948112' fill='url(%23paint0_linear_2755_3161)'/%3E%3Cmask id='mask0_2755_3161' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='3' y='26' width='12' height='7'%3E%3Crect x='3.8457' y='26' width='10.8021' height='7' rx='0.948112' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_2755_3161)'%3E%3Crect x='3.8457' y='26' width='10.8021' height='7' fill='url(%23paint1_linear_2755_3161)'/%3E%3Cg filter='url(%23filter0_d_2755_3161)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.8457 33H8.16655V26H3.8457V33Z' fill='url(%23paint2_linear_2755_3161)'/%3E%3C/g%3E%3Cellipse cx='8.52553' cy='29.1501' rx='1.08021' ry='1.05' fill='%23FAF94F'/%3E%3C/g%3E%3Cpath d='M20.0857 31.072C18.8617 31.072 17.9497 30.118 17.9497 28.912V28.9C17.9497 27.706 18.8437 26.728 20.1157 26.728C20.8897 26.728 21.3577 26.998 21.7597 27.382L21.2857 27.928C20.9497 27.616 20.5897 27.406 20.1097 27.406C19.3057 27.406 18.7237 28.066 18.7237 28.888V28.9C18.7237 29.722 19.3057 30.394 20.1097 30.394C20.6257 30.394 20.9557 30.184 21.3157 29.848L21.7897 30.328C21.3517 30.784 20.8717 31.072 20.0857 31.072ZM22.7234 31V26.62H23.4494V31H22.7234ZM24.6102 27.346V26.656H25.3902V27.346H24.6102ZM24.6402 31V27.832H25.3662V31H24.6402ZM28.903 31.96V30.472C28.669 30.802 28.339 31.066 27.823 31.066C27.079 31.066 26.353 30.472 26.353 29.422V29.41C26.353 28.36 27.067 27.766 27.823 27.766C28.345 27.766 28.675 28.03 28.903 28.324V27.832H29.629V31.96H28.903ZM27.997 30.436C28.483 30.436 28.915 30.028 28.915 29.422V29.41C28.915 28.798 28.483 28.396 27.997 28.396C27.499 28.396 27.085 28.78 27.085 29.41V29.422C27.085 30.034 27.505 30.436 27.997 30.436ZM31.8265 31.066C31.1125 31.066 30.6985 30.586 30.6985 29.848V27.832H31.4245V29.632C31.4245 30.124 31.6705 30.406 32.1025 30.406C32.5225 30.406 32.8165 30.112 32.8165 29.62V27.832H33.5425V31H32.8165V30.508C32.6125 30.808 32.3185 31.066 31.8265 31.066ZM36.1072 31.072C35.1892 31.072 34.4812 30.406 34.4812 29.428V29.416C34.4812 28.51 35.1232 27.766 36.0292 27.766C37.0372 27.766 37.5472 28.558 37.5472 29.47C37.5472 29.536 37.5412 29.602 37.5352 29.674H35.2072C35.2852 30.19 35.6512 30.478 36.1192 30.478C36.4732 30.478 36.7252 30.346 36.9772 30.1L37.4032 30.478C37.1032 30.838 36.6892 31.072 36.1072 31.072ZM35.2012 29.194H36.8272C36.7792 28.726 36.5032 28.36 36.0232 28.36C35.5792 28.36 35.2672 28.702 35.2012 29.194ZM43.1331 31H42.4131V30.61C42.1971 30.868 41.8671 31.066 41.3871 31.066C40.7871 31.066 40.2591 30.724 40.2591 30.088V30.076C40.2591 29.374 40.8051 29.038 41.5431 29.038C41.9271 29.038 42.1731 29.092 42.4191 29.17V29.11C42.4191 28.672 42.1431 28.432 41.6391 28.432C41.2851 28.432 41.0211 28.51 40.7331 28.63L40.5351 28.048C40.8831 27.892 41.2251 27.784 41.7411 27.784C42.6771 27.784 43.1331 28.276 43.1331 29.122V31ZM42.4311 29.854V29.674C42.2451 29.602 41.9871 29.548 41.7051 29.548C41.2491 29.548 40.9791 29.734 40.9791 30.04V30.052C40.9791 30.352 41.2491 30.52 41.5911 30.52C42.0711 30.52 42.4311 30.25 42.4311 29.854ZM46.5846 31.96V30.472C46.3506 30.802 46.0206 31.066 45.5046 31.066C44.7606 31.066 44.0346 30.472 44.0346 29.422V29.41C44.0346 28.36 44.7486 27.766 45.5046 27.766C46.0266 27.766 46.3566 28.03 46.5846 28.324V27.832H47.3106V31.96H46.5846ZM45.6786 30.436C46.1646 30.436 46.5966 30.028 46.5966 29.422V29.41C46.5966 28.798 46.1646 28.396 45.6786 28.396C45.1806 28.396 44.7666 28.78 44.7666 29.41V29.422C44.7666 30.034 45.1866 30.436 45.6786 30.436ZM49.5082 31.066C48.7942 31.066 48.3802 30.586 48.3802 29.848V27.832H49.1062V29.632C49.1062 30.124 49.3522 30.406 49.7842 30.406C50.2042 30.406 50.4982 30.112 50.4982 29.62V27.832H51.2242V31H50.4982V30.508C50.2942 30.808 50.0002 31.066 49.5082 31.066ZM52.3489 27.346V26.656H53.1289V27.346H52.3489ZM52.3789 31V27.832H53.1049V31H52.3789ZM56.2525 31.96V27.832H56.9785V28.36C57.2125 28.03 57.5425 27.766 58.0525 27.766C58.8025 27.766 59.5285 28.36 59.5285 29.41V29.422C59.5285 30.472 58.8085 31.066 58.0525 31.066C57.5305 31.066 57.2005 30.802 56.9785 30.508V31.96H56.2525ZM57.8845 30.436C58.3825 30.436 58.7905 30.046 58.7905 29.422V29.41C58.7905 28.798 58.3765 28.396 57.8845 28.396C57.3925 28.396 56.9605 28.804 56.9605 29.41V29.422C56.9605 30.034 57.3925 30.436 57.8845 30.436ZM63.13 31H62.41V30.61C62.194 30.868 61.864 31.066 61.384 31.066C60.784 31.066 60.256 30.724 60.256 30.088V30.076C60.256 29.374 60.802 29.038 61.54 29.038C61.924 29.038 62.17 29.092 62.416 29.17V29.11C62.416 28.672 62.14 28.432 61.636 28.432C61.282 28.432 61.018 28.51 60.73 28.63L60.532 28.048C60.88 27.892 61.222 27.784 61.738 27.784C62.674 27.784 63.13 28.276 63.13 29.122V31ZM62.428 29.854V29.674C62.242 29.602 61.984 29.548 61.702 29.548C61.246 29.548 60.976 29.734 60.976 30.04V30.052C60.976 30.352 61.246 30.52 61.588 30.52C62.068 30.52 62.428 30.25 62.428 29.854ZM64.1935 31V27.832H64.9195V28.546C65.1175 28.072 65.4835 27.748 66.0415 27.772V28.54H65.9995C65.3635 28.54 64.9195 28.954 64.9195 29.794V31H64.1935ZM69.3777 31H68.6577V30.61C68.4417 30.868 68.1117 31.066 67.6317 31.066C67.0317 31.066 66.5037 30.724 66.5037 30.088V30.076C66.5037 29.374 67.0497 29.038 67.7877 29.038C68.1717 29.038 68.4177 29.092 68.6637 29.17V29.11C68.6637 28.672 68.3877 28.432 67.8837 28.432C67.5297 28.432 67.2657 28.51 66.9777 28.63L66.7797 28.048C67.1277 27.892 67.4697 27.784 67.9857 27.784C68.9217 27.784 69.3777 28.276 69.3777 29.122V31ZM68.6757 29.854V29.674C68.4897 29.602 68.2317 29.548 67.9497 29.548C67.4937 29.548 67.2237 29.734 67.2237 30.04V30.052C67.2237 30.352 67.4937 30.52 67.8357 30.52C68.3157 30.52 68.6757 30.25 68.6757 29.854ZM19.0537 38.024L17.7517 34.832H18.5317L19.3837 37.16L20.2417 34.832H21.0037L19.7077 38.024H19.0537ZM23.0904 38.072C22.1724 38.072 21.4644 37.406 21.4644 36.428V36.416C21.4644 35.51 22.1064 34.766 23.0124 34.766C24.0204 34.766 24.5304 35.558 24.5304 36.47C24.5304 36.536 24.5244 36.602 24.5184 36.674H22.1904C22.2684 37.19 22.6344 37.478 23.1024 37.478C23.4564 37.478 23.7084 37.346 23.9604 37.1L24.3864 37.478C24.0864 37.838 23.6724 38.072 23.0904 38.072ZM22.1844 36.194H23.8104C23.7624 35.726 23.4864 35.36 23.0064 35.36C22.5624 35.36 22.2504 35.702 22.1844 36.194ZM25.4595 38V34.832H26.1855V35.546C26.3835 35.072 26.7495 34.748 27.3075 34.772V35.54H27.2655C26.6295 35.54 26.1855 35.954 26.1855 36.794V38H25.4595ZM28.15 34.346V33.656H28.93V34.346H28.15ZM28.18 38V34.832H28.906V38H28.18ZM32.3228 34.346V33.656H33.1028V34.346H32.3228ZM30.2168 38V35.456H29.8148V34.85H30.2168V34.622C30.2168 34.268 30.3068 34.004 30.4748 33.836C30.6428 33.668 30.8768 33.584 31.1888 33.584C31.4408 33.584 31.6148 33.62 31.7768 33.668V34.28C31.6328 34.232 31.5068 34.202 31.3508 34.202C31.0748 34.202 30.9308 34.352 30.9308 34.682V34.856H31.7708V35.456H30.9428V38H30.2168ZM32.3528 38V34.832H33.0788V38H32.3528ZM35.6915 38.072C34.7495 38.072 34.0535 37.334 34.0535 36.434V36.422C34.0535 35.522 34.7495 34.766 35.6975 34.766C36.2975 34.766 36.6695 34.988 36.9635 35.312L36.5135 35.798C36.2915 35.564 36.0575 35.402 35.6915 35.402C35.1635 35.402 34.7795 35.858 34.7795 36.41V36.422C34.7795 36.986 35.1695 37.442 35.7275 37.442C36.0695 37.442 36.3215 37.28 36.5495 37.046L36.9875 37.478C36.6755 37.826 36.3095 38.072 35.6915 38.072ZM40.5132 38H39.7932V37.61C39.5772 37.868 39.2472 38.066 38.7672 38.066C38.1672 38.066 37.6392 37.724 37.6392 37.088V37.076C37.6392 36.374 38.1852 36.038 38.9232 36.038C39.3072 36.038 39.5532 36.092 39.7992 36.17V36.11C39.7992 35.672 39.5232 35.432 39.0192 35.432C38.6652 35.432 38.4012 35.51 38.1132 35.63L37.9152 35.048C38.2632 34.892 38.6052 34.784 39.1212 34.784C40.0572 34.784 40.5132 35.276 40.5132 36.122V38ZM39.8112 36.854V36.674C39.6252 36.602 39.3672 36.548 39.0852 36.548C38.6292 36.548 38.3592 36.734 38.3592 37.04V37.052C38.3592 37.352 38.6292 37.52 38.9712 37.52C39.4512 37.52 39.8112 37.25 39.8112 36.854ZM41.5767 38V34.832H42.3027V35.546C42.5007 35.072 42.8667 34.748 43.4247 34.772V35.54H43.3827C42.7467 35.54 42.3027 35.954 42.3027 36.794V38H41.5767ZM48.912 38H48.192V37.61C47.976 37.868 47.646 38.066 47.166 38.066C46.566 38.066 46.038 37.724 46.038 37.088V37.076C46.038 36.374 46.584 36.038 47.322 36.038C47.706 36.038 47.952 36.092 48.198 36.17V36.11C48.198 35.672 47.922 35.432 47.418 35.432C47.064 35.432 46.8 35.51 46.512 35.63L46.314 35.048C46.662 34.892 47.004 34.784 47.52 34.784C48.456 34.784 48.912 35.276 48.912 36.122V38ZM48.21 36.854V36.674C48.024 36.602 47.766 36.548 47.484 36.548C47.028 36.548 46.758 36.734 46.758 37.04V37.052C46.758 37.352 47.028 37.52 47.37 37.52C47.85 37.52 48.21 37.25 48.21 36.854ZM52.0164 38V33.62H52.7424V38H52.0164ZM55.3432 38.072C54.4252 38.072 53.7172 37.406 53.7172 36.428V36.416C53.7172 35.51 54.3592 34.766 55.2652 34.766C56.2732 34.766 56.7832 35.558 56.7832 36.47C56.7832 36.536 56.7772 36.602 56.7712 36.674H54.4432C54.5212 37.19 54.8872 37.478 55.3552 37.478C55.7092 37.478 55.9612 37.346 56.2132 37.1L56.6392 37.478C56.3392 37.838 55.9252 38.072 55.3432 38.072ZM54.4372 36.194H56.0632C56.0152 35.726 55.7392 35.36 55.2592 35.36C54.8152 35.36 54.5032 35.702 54.4372 36.194ZM59.1222 38.972C58.6002 38.972 58.1142 38.84 57.7062 38.594L57.9762 38.048C58.3122 38.258 58.6722 38.384 59.1042 38.384C59.7522 38.384 60.1062 38.048 60.1062 37.412V37.166C59.8422 37.508 59.5122 37.748 58.9902 37.748C58.2462 37.748 57.5502 37.196 57.5502 36.266V36.254C57.5502 35.318 58.2522 34.766 58.9902 34.766C59.5242 34.766 59.8542 35.012 60.1002 35.306V34.832H60.8262V37.352C60.8262 37.886 60.6882 38.282 60.4242 38.546C60.1362 38.834 59.6922 38.972 59.1222 38.972ZM59.1822 37.136C59.6862 37.136 60.1122 36.776 60.1122 36.266V36.254C60.1122 35.732 59.6862 35.378 59.1822 35.378C58.6782 35.378 58.2822 35.726 58.2822 36.248V36.26C58.2822 36.782 58.6842 37.136 59.1822 37.136ZM64.5898 38H63.8698V37.61C63.6538 37.868 63.3238 38.066 62.8438 38.066C62.2438 38.066 61.7158 37.724 61.7158 37.088V37.076C61.7158 36.374 62.2618 36.038 62.9998 36.038C63.3838 36.038 63.6298 36.092 63.8758 36.17V36.11C63.8758 35.672 63.5998 35.432 63.0958 35.432C62.7418 35.432 62.4778 35.51 62.1898 35.63L61.9918 35.048C62.3398 34.892 62.6818 34.784 63.1978 34.784C64.1338 34.784 64.5898 35.276 64.5898 36.122V38ZM63.8878 36.854V36.674C63.7018 36.602 63.4438 36.548 63.1618 36.548C62.7058 36.548 62.4358 36.734 62.4358 37.04V37.052C62.4358 37.352 62.7058 37.52 63.0478 37.52C63.5278 37.52 63.8878 37.25 63.8878 36.854ZM65.6953 38V33.62H66.4213V38H65.6953ZM67.5821 34.346V33.656H68.3621V34.346H67.5821ZM67.6121 38V34.832H68.3381V38H67.6121ZM70.7949 38.066C70.0509 38.066 69.3249 37.472 69.3249 36.422V36.41C69.3249 35.36 70.0389 34.766 70.7949 34.766C71.3169 34.766 71.6469 35.03 71.8749 35.324V33.62H72.6009V38H71.8749V37.472C71.6409 37.802 71.3109 38.066 70.7949 38.066ZM70.9689 37.436C71.4549 37.436 71.8869 37.028 71.8869 36.422V36.41C71.8869 35.798 71.4549 35.396 70.9689 35.396C70.4709 35.396 70.0569 35.78 70.0569 36.41V36.422C70.0569 37.034 70.4769 37.436 70.9689 37.436ZM76.3644 38H75.6444V37.61C75.4284 37.868 75.0984 38.066 74.6184 38.066C74.0184 38.066 73.4904 37.724 73.4904 37.088V37.076C73.4904 36.374 74.0364 36.038 74.7744 36.038C75.1584 36.038 75.4044 36.092 75.6504 36.17V36.11C75.6504 35.672 75.3744 35.432 74.8704 35.432C74.5164 35.432 74.2524 35.51 73.9644 35.63L73.7664 35.048C74.1144 34.892 74.4564 34.784 74.9724 34.784C75.9084 34.784 76.3644 35.276 76.3644 36.122V38ZM75.6624 36.854V36.674C75.4764 36.602 75.2184 36.548 74.9364 36.548C74.4804 36.548 74.2104 36.734 74.2104 37.04V37.052C74.2104 37.352 74.4804 37.52 74.8224 37.52C75.3024 37.52 75.6624 37.25 75.6624 36.854ZM78.7359 38.066C77.9919 38.066 77.2659 37.472 77.2659 36.422V36.41C77.2659 35.36 77.9799 34.766 78.7359 34.766C79.2579 34.766 79.5879 35.03 79.8159 35.324V33.62H80.5419V38H79.8159V37.472C79.5819 37.802 79.2519 38.066 78.7359 38.066ZM78.9099 37.436C79.3959 37.436 79.8279 37.028 79.8279 36.422V36.41C79.8279 35.798 79.3959 35.396 78.9099 35.396C78.4119 35.396 77.9979 35.78 77.9979 36.41V36.422C77.9979 37.034 78.4179 37.436 78.9099 37.436ZM83.0994 38.072C82.1814 38.072 81.4734 37.406 81.4734 36.428V36.416C81.4734 35.51 82.1154 34.766 83.0214 34.766C84.0294 34.766 84.5394 35.558 84.5394 36.47C84.5394 36.536 84.5334 36.602 84.5274 36.674H82.1994C82.2774 37.19 82.6434 37.478 83.1114 37.478C83.4654 37.478 83.7174 37.346 83.9694 37.1L84.3954 37.478C84.0954 37.838 83.6814 38.072 83.0994 38.072ZM82.1934 36.194H83.8194C83.7714 35.726 83.4954 35.36 83.0154 35.36C82.5714 35.36 82.2594 35.702 82.1934 36.194ZM19.3597 45.066C18.6157 45.066 17.8897 44.472 17.8897 43.422V43.41C17.8897 42.36 18.6037 41.766 19.3597 41.766C19.8817 41.766 20.2117 42.03 20.4397 42.324V40.62H21.1657V45H20.4397V44.472C20.2057 44.802 19.8757 45.066 19.3597 45.066ZM19.5337 44.436C20.0197 44.436 20.4517 44.028 20.4517 43.422V43.41C20.4517 42.798 20.0197 42.396 19.5337 42.396C19.0357 42.396 18.6217 42.78 18.6217 43.41V43.422C18.6217 44.034 19.0417 44.436 19.5337 44.436ZM23.7232 45.072C22.8052 45.072 22.0972 44.406 22.0972 43.428V43.416C22.0972 42.51 22.7392 41.766 23.6452 41.766C24.6532 41.766 25.1632 42.558 25.1632 43.47C25.1632 43.536 25.1572 43.602 25.1512 43.674H22.8232C22.9012 44.19 23.2672 44.478 23.7352 44.478C24.0892 44.478 24.3412 44.346 24.5932 44.1L25.0192 44.478C24.7192 44.838 24.3052 45.072 23.7232 45.072ZM22.8172 43.194H24.4432C24.3952 42.726 24.1192 42.36 23.6392 42.36C23.1952 42.36 22.8832 42.702 22.8172 43.194ZM27.1783 45.06C26.7283 45.06 26.2303 44.898 25.8343 44.586L26.1583 44.094C26.5003 44.352 26.8723 44.484 27.1963 44.484C27.5083 44.484 27.6883 44.352 27.6883 44.142V44.13C27.6883 43.884 27.3523 43.8 26.9803 43.686C26.5123 43.554 25.9903 43.362 25.9903 42.756V42.744C25.9903 42.144 26.4883 41.778 27.1183 41.778C27.5143 41.778 27.9463 41.916 28.2823 42.138L27.9943 42.654C27.6883 42.468 27.3643 42.354 27.1003 42.354C26.8183 42.354 26.6563 42.486 26.6563 42.672V42.684C26.6563 42.912 26.9983 43.008 27.3703 43.128C27.8323 43.272 28.3543 43.482 28.3543 44.052V44.064C28.3543 44.73 27.8383 45.06 27.1783 45.06ZM30.2957 45.054C29.7617 45.054 29.3837 44.82 29.3837 44.124V42.456H28.9817V41.832H29.3837V40.962H30.1097V41.832H30.9617V42.456H30.1097V44.01C30.1097 44.292 30.2537 44.406 30.4997 44.406C30.6617 44.406 30.8057 44.37 30.9497 44.298V44.892C30.7697 44.994 30.5657 45.054 30.2957 45.054ZM33.2588 45.072C32.3408 45.072 31.6328 44.406 31.6328 43.428V43.416C31.6328 42.51 32.2748 41.766 33.1808 41.766C34.1888 41.766 34.6988 42.558 34.6988 43.47C34.6988 43.536 34.6928 43.602 34.6868 43.674H32.3588C32.4368 44.19 32.8028 44.478 33.2708 44.478C33.6248 44.478 33.8768 44.346 34.1288 44.1L34.5548 44.478C34.2548 44.838 33.8408 45.072 33.2588 45.072ZM32.3528 43.194H33.9788C33.9308 42.726 33.6548 42.36 33.1748 42.36C32.7308 42.36 32.4188 42.702 32.3528 43.194ZM38.7127 45.06C38.2627 45.06 37.7647 44.898 37.3687 44.586L37.6927 44.094C38.0347 44.352 38.4067 44.484 38.7307 44.484C39.0427 44.484 39.2227 44.352 39.2227 44.142V44.13C39.2227 43.884 38.8867 43.8 38.5147 43.686C38.0467 43.554 37.5247 43.362 37.5247 42.756V42.744C37.5247 42.144 38.0227 41.778 38.6527 41.778C39.0487 41.778 39.4807 41.916 39.8167 42.138L39.5287 42.654C39.2227 42.468 38.8987 42.354 38.6347 42.354C38.3527 42.354 38.1907 42.486 38.1907 42.672V42.684C38.1907 42.912 38.5327 43.008 38.9047 43.128C39.3667 43.272 39.8887 43.482 39.8887 44.052V44.064C39.8887 44.73 39.3727 45.06 38.7127 45.06ZM40.9407 41.43L41.5647 40.446L42.2247 40.74L41.4867 41.43H40.9407ZM40.8687 45V41.832H41.5947V45H40.8687ZM43.8055 45.054C43.2715 45.054 42.8935 44.82 42.8935 44.124V42.456H42.4915V41.832H42.8935V40.962H43.6195V41.832H44.4715V42.456H43.6195V44.01C43.6195 44.292 43.7635 44.406 44.0095 44.406C44.1715 44.406 44.3155 44.37 44.4595 44.298V44.892C44.2795 44.994 44.0755 45.054 43.8055 45.054ZM45.4164 41.346V40.656H46.1964V41.346H45.4164ZM45.4464 45V41.832H46.1724V45H45.4464ZM48.8272 45.072C47.8612 45.072 47.1472 44.334 47.1472 43.434V43.422C47.1472 42.516 47.8672 41.766 48.8392 41.766C49.8112 41.766 50.5252 42.504 50.5252 43.41V43.422C50.5252 44.322 49.8052 45.072 48.8272 45.072ZM48.8392 44.442C49.4272 44.442 49.7992 43.98 49.7992 43.434V43.422C49.7992 42.864 49.3972 42.402 48.8272 42.402C48.2452 42.402 47.8732 42.858 47.8732 43.41V43.422C47.8732 43.974 48.2752 44.442 48.8392 44.442ZM54.6874 45.03L53.2234 40.8H54.0214L55.0234 43.914L56.0554 40.788H56.6794L57.7114 43.914L58.7134 40.8H59.4874L58.0234 45.03H57.3874L56.3554 42.012L55.3234 45.03H54.6874ZM61.4201 45.072C60.5021 45.072 59.7941 44.406 59.7941 43.428V43.416C59.7941 42.51 60.4361 41.766 61.3421 41.766C62.3501 41.766 62.8601 42.558 62.8601 43.47C62.8601 43.536 62.8541 43.602 62.8481 43.674H60.5201C60.5981 44.19 60.9641 44.478 61.4321 44.478C61.7861 44.478 62.0381 44.346 62.2901 44.1L62.7161 44.478C62.4161 44.838 62.0021 45.072 61.4201 45.072ZM60.5141 43.194H62.1401C62.0921 42.726 61.8161 42.36 61.3361 42.36C60.8921 42.36 60.5801 42.702 60.5141 43.194ZM65.5892 45.066C65.0672 45.066 64.7372 44.802 64.5152 44.508V45H63.7892V40.62H64.5152V42.36C64.7492 42.03 65.0792 41.766 65.5892 41.766C66.3392 41.766 67.0652 42.36 67.0652 43.41V43.422C67.0652 44.472 66.3452 45.066 65.5892 45.066ZM65.4212 44.436C65.9192 44.436 66.3272 44.046 66.3272 43.422V43.41C66.3272 42.798 65.9132 42.396 65.4212 42.396C64.9292 42.396 64.4972 42.804 64.4972 43.41V43.422C64.4972 44.034 64.9292 44.436 65.4212 44.436ZM67.9021 45V44.178H68.7001V45H67.9021Z' fill='%23099547'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_2755_3161' x='3.8457' y='26' width='4.32031' height='7' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_2755_3161'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_2755_3161' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_2755_3161' x1='3.8457' y1='26' x2='3.8457' y2='33' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_2755_3161' x1='3.8457' y1='26' x2='3.8457' y2='33' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF2936'/%3E%3Cstop offset='1' stop-color='%23FD0D1B'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_2755_3161' x1='3.8457' y1='26' x2='3.8457' y2='33' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23128415'/%3E%3Cstop offset='1' stop-color='%230A650C'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_2755_3161'%3E%3Crect width='100' height='50' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-footer2{background-image: url("data:image/svg+xml,%0A%3Csvg width='100' height='50' viewBox='0 0 100 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2755_3177)'%3E%3Cpath d='M99.45 49.45H0.55V0.55H99.45V49.45Z' fill='white' stroke='%235D3976' stroke-width='1.1'/%3E%3Cg clip-path='url(%23clip1_2755_3177)'%3E%3Cpath d='M7.47807 23.9561C8.0581 24.9844 8.92326 25.6377 10.0935 25.8879C12.2214 26.3427 14.3444 25.0081 14.729 22.8957C14.773 22.6538 14.7805 22.4034 14.7809 22.1569C14.7846 19.7787 14.7831 17.4005 14.7831 15.0223C14.7831 14.9512 14.7831 14.8802 14.7831 14.8C14.9313 14.7863 15.06 14.7662 15.1891 14.7637C15.8875 14.75 16.5864 14.7207 17.2843 14.7346C18.2939 14.7549 19.3003 14.831 20.3024 14.9632C21.2605 15.0897 22.2086 15.2618 23.1493 15.4767C23.2741 15.5053 23.3606 15.5639 23.4363 15.6585C24.5165 17.0076 25.234 18.5181 25.589 20.1891C25.7937 21.1527 25.8518 22.1291 25.7759 23.1067C25.5978 25.4003 24.753 27.4461 23.2373 29.2188C21.7015 31.0151 19.761 32.2198 17.4361 32.841C16.7189 33.0326 15.9897 33.1532 15.247 33.2003C12.2617 33.3895 9.58748 32.6005 7.23668 30.8083C5.92247 29.8063 4.9021 28.5689 4.15738 27.1209C3.60278 26.0426 3.23834 24.9052 3.0973 23.7074C3.03956 23.2171 2.99628 22.7215 3.00025 22.2287C3.01262 20.6953 3.34803 19.2261 4.00245 17.8267C4.05425 17.7159 4.12703 17.6434 4.24 17.5889C5.08884 17.1791 5.95344 16.8045 6.83981 16.4772C6.89207 16.4579 6.94545 16.4413 6.99896 16.4254C7.00911 16.4224 7.02233 16.4292 7.06181 16.4366C7.06181 16.4998 7.06181 16.5694 7.06181 16.639C7.06185 18.5163 7.06391 20.3935 7.06077 22.2707C7.05978 22.8618 7.19801 23.4177 7.47807 23.9561Z' fill='%2343C8E7'/%3E%3Cpath d='M8.77767 14.033C8.77792 13.3571 8.77098 12.6993 8.78015 12.0416C8.79345 11.088 9.44315 10.3 10.3954 10.0652C11.7396 9.73387 13.0596 10.7061 13.062 12.0462C13.0682 15.4255 13.0665 18.8048 13.0627 22.1841C13.0614 23.2733 12.2043 24.1511 11.077 24.2375C9.97598 24.3218 8.9826 23.5678 8.80268 22.504C8.77669 22.3504 8.77866 22.1913 8.77858 22.0347C8.77726 19.3735 8.77765 16.7123 8.77767 14.033Z' fill='%235D3976'/%3E%3Cpath d='M74.0585 18.7501C74.5062 18.6983 74.9336 18.7266 75.3589 18.8069C76.2493 18.9749 76.8636 19.4696 77.2212 20.2713C77.4525 20.7897 77.5442 21.3354 77.5455 21.8951C77.5497 23.6998 77.5475 25.5045 77.5473 27.3091C77.5473 27.3501 77.542 27.3912 77.5384 27.4431C76.9908 27.4431 76.4524 27.4431 75.8925 27.4431C75.8925 27.3631 75.8925 27.2924 75.8925 27.2218C75.8925 25.6284 75.8914 24.0349 75.8931 22.4415C75.8936 21.999 75.8618 21.5608 75.7297 21.1347C75.6887 21.0022 75.6382 20.8717 75.5822 20.7443C75.3785 20.2814 75.0036 20.0481 74.4948 20.0078C73.6195 19.9383 72.9558 20.2738 72.499 20.9967C72.2235 21.4326 72.0877 21.9143 72.027 22.4153C71.9922 22.7022 71.9781 22.9929 71.977 23.2819C71.9719 24.5977 71.9747 25.9135 71.9747 27.2293C71.9747 27.2949 71.9747 27.3605 71.9747 27.4223C71.833 27.461 70.5937 27.4714 70.3176 27.436C70.3176 27.3703 70.3176 27.3004 70.3176 27.2304C70.3176 25.6129 70.317 23.9953 70.3179 22.3777C70.3182 21.9163 70.2699 21.4619 70.1158 21.0226C70.0779 20.9143 70.0341 20.8072 69.9838 20.7038C69.78 20.2854 69.4327 20.0534 68.9617 20.0126C68.063 19.9346 67.3439 20.2499 66.894 21.0549C66.604 21.5738 66.4592 22.1311 66.4136 22.715C66.4 22.8893 66.3982 23.0647 66.3981 23.2397C66.3969 24.5675 66.3974 25.8954 66.3974 27.2232C66.3974 27.2893 66.3974 27.3553 66.3974 27.4181C66.262 27.4627 65.1488 27.4781 64.7721 27.4438C64.7327 27.3214 64.7169 19.2351 64.7572 18.9344C65.2577 18.9344 65.7598 18.9344 66.2872 18.9344C66.2966 19.1265 66.29 19.3236 66.2912 19.5201C66.2924 19.7191 66.2915 19.918 66.2915 20.1432C66.3285 20.1123 66.3533 20.0994 66.3666 20.0794C67.0758 19.0117 68.1315 18.6618 69.3798 18.7348C70.2972 18.7884 71.0021 19.2044 71.4853 19.9631C71.559 20.0788 71.6171 20.2039 71.6945 20.3471C72.2164 19.4303 73.0177 18.9349 74.0585 18.7501Z' fill='%235D3976'/%3E%3Cpath d='M88.3623 26.1514C87.9543 25.5568 87.7348 24.9055 87.6137 24.2226C87.4711 23.4191 87.4634 22.613 87.6375 21.8118C87.8116 21.0108 88.1484 20.2854 88.7583 19.7024C89.3773 19.1105 90.1291 18.794 90.9976 18.737C91.5428 18.7011 92.0821 18.7304 92.6102 18.8765C93.269 19.0587 93.8004 19.4186 94.207 19.9517C94.238 19.9924 94.2721 20.031 94.3333 20.1052C94.3333 18.3506 94.3333 16.6407 94.3333 14.918C94.8876 14.918 95.4257 14.918 95.9741 14.918C95.9741 19.0922 95.9741 23.2594 95.9741 27.4264C95.842 27.4605 94.6564 27.4693 94.4066 27.4347C94.4066 27.2479 94.4066 27.0571 94.4066 26.8664C94.4066 26.6747 94.4066 26.4831 94.4066 26.2593C94.3585 26.2978 94.3301 26.3141 94.3106 26.3373C93.6856 27.0795 92.8775 27.5005 91.8996 27.6205C91.3496 27.688 90.8038 27.6651 90.2671 27.5236C89.4524 27.3087 88.8447 26.8217 88.3623 26.1514ZM93.0303 26.0065C93.482 25.6898 93.8044 25.2763 94.0132 24.7777C94.1854 24.3663 94.2942 23.9394 94.3225 23.4967C94.3731 22.7043 94.2497 21.9428 93.8434 21.2417C93.3076 20.3171 92.486 19.9119 91.3987 20.0144C90.9442 20.0572 90.5458 20.2297 90.2108 20.5348C89.8809 20.8352 89.6481 21.1952 89.5096 21.6103C89.2193 22.4805 89.1759 23.3615 89.4045 24.2514C89.5464 24.8037 89.7795 25.3114 90.1838 25.7359C90.4392 26.004 90.7378 26.2088 91.1048 26.2975C91.776 26.4597 92.4166 26.3915 93.0303 26.0065Z' fill='%235D3976'/%3E%3Cpath d='M50.8058 19.4017C52.0847 18.7387 53.4241 18.5618 54.8249 18.8525C55.7651 19.0477 56.4573 19.5551 56.8076 20.443C56.8961 20.6671 56.9575 20.9031 57.0103 21.138C57.1007 21.5408 57.1121 21.952 57.1133 22.3627C57.1175 23.775 57.1191 25.1873 57.1256 26.5996C57.1266 26.8165 57.1485 27.0333 57.1605 27.2502C57.1638 27.3097 57.1662 27.3693 57.1696 27.4418C56.6586 27.4418 56.1579 27.4418 55.6357 27.4418C55.6357 27.0815 55.6357 26.7303 55.6357 26.3346C55.5612 26.4194 55.5196 26.4693 55.4753 26.5168C54.9595 27.0695 54.3476 27.4725 53.5757 27.5933C52.736 27.7248 51.9065 27.6731 51.1124 27.3564C50.5021 27.113 50.0186 26.7268 49.7768 26.1117C49.5417 25.5138 49.5086 24.9002 49.6735 24.2804C49.7639 23.9407 49.9452 23.6476 50.1957 23.3936C50.7351 22.8465 51.4056 22.5343 52.1559 22.3627C52.6801 22.2429 53.2101 22.1708 53.7496 22.1793C54.261 22.1874 54.7723 22.2005 55.2837 22.2111C55.3325 22.2121 55.3814 22.2112 55.4413 22.2112C55.4744 22.0985 55.45 21.9911 55.4459 21.8854C55.4351 21.6127 55.3879 21.3462 55.2982 21.0866C55.1414 20.6324 54.8288 20.3184 54.365 20.1646C54.1316 20.0873 53.8821 20.0342 53.6363 20.0166C52.5779 19.9405 51.608 20.187 50.7496 20.8058C50.7353 20.8161 50.7175 20.8221 50.6765 20.8424C50.6465 20.3992 50.6174 19.9693 50.5874 19.5252C50.6564 19.486 50.7251 19.4471 50.8058 19.4017ZM54.6336 25.913C55.0547 25.5861 55.312 25.1641 55.4101 24.6518C55.488 24.2456 55.4655 23.8352 55.4553 23.4256C55.455 23.4156 55.4425 23.4058 55.4301 23.3878C55.1874 23.3799 54.9387 23.3745 54.6903 23.3631C54.0252 23.3326 53.369 23.3934 52.7287 23.568C52.4667 23.6394 52.2036 23.7288 51.9643 23.8522C51.1848 24.2541 51.1022 25.434 51.7838 25.9521C52.0282 26.1379 52.2916 26.2906 52.5985 26.3362C53.3193 26.4435 54.0017 26.3443 54.6336 25.913Z' fill='%235D3976'/%3E%3Cpath d='M85.2664 19.3317C85.8207 19.7145 86.1517 20.2405 86.3974 20.8249C86.6343 21.3884 86.7564 21.979 86.8125 22.5823C86.8409 22.8876 86.8498 23.1946 86.8688 23.5232C84.7417 23.5232 82.6373 23.5232 80.5033 23.5232C80.516 23.6993 80.5143 23.8547 80.5402 24.0057C80.7962 25.4978 82.1573 26.5088 83.7143 26.3663C84.5923 26.286 85.403 26.0141 86.1491 25.5613C86.19 25.671 86.2053 26.778 86.1677 27.1082C85.562 27.3137 84.9577 27.5424 84.3051 27.6064C83.5631 27.6792 82.8224 27.685 82.0881 27.5402C80.778 27.2819 79.7892 26.6125 79.2219 25.4158C79.047 25.0468 78.9286 24.6592 78.8579 24.2592C78.717 23.4611 78.6946 22.6622 78.8763 21.8673C79.0728 21.0081 79.4799 20.2599 80.1676 19.671C80.8262 19.107 81.6081 18.8172 82.4766 18.7431C83.0704 18.6925 83.6604 18.7262 84.2399 18.8759C84.6047 18.9701 84.9452 19.1149 85.2664 19.3317ZM80.7399 21.4333C80.6229 21.7261 80.5372 22.0257 80.5127 22.3396C80.7371 22.3769 84.9848 22.3673 85.1185 22.3297C85.1089 21.7813 84.9704 21.2711 84.6335 20.8199C84.3326 20.4169 83.9344 20.1541 83.43 20.0511C83.0911 19.9819 82.75 19.9832 82.4081 20.0392C82.0425 20.0991 81.7215 20.247 81.4366 20.475C81.1216 20.727 80.8979 21.0406 80.7399 21.4333Z' fill='%235D3976'/%3E%3Cpath d='M41.9615 27.4543C41.5826 27.4543 41.2225 27.4543 40.8441 27.4543C40.8441 27.3611 40.8442 27.2903 40.8441 27.2195C40.8416 25.6803 40.8444 24.1412 40.8335 22.6022C40.8302 22.1309 40.7659 21.6632 40.6173 21.2108C40.5853 21.1133 40.5475 21.0172 40.5059 20.9231C40.311 20.4832 39.9678 20.2075 39.4945 20.08C38.4673 19.8032 37.3903 20.2115 36.8334 21.0895C36.5716 21.5023 36.4353 21.9583 36.3469 22.4304C36.2733 22.8239 36.2557 23.2214 36.2558 23.6202C36.2561 24.8214 36.2558 26.0225 36.2558 27.2236C36.2558 27.2897 36.2558 27.3557 36.2558 27.4186C36.1232 27.4616 34.9114 27.4749 34.6192 27.4378C34.6192 24.6063 34.6192 21.7731 34.6192 18.9312C35.1413 18.9312 35.657 18.9312 36.1963 18.9312C36.2115 19.1495 36.2012 19.3702 36.2031 19.5903C36.2049 19.806 36.2035 20.0217 36.2035 20.2714C36.242 20.2367 36.2617 20.226 36.2708 20.2098C36.6662 19.5008 37.307 19.0974 38.0807 18.8746C38.8801 18.6443 39.6849 18.6652 40.4761 18.9122C41.3061 19.1713 41.8683 19.7146 42.1831 20.4981C42.3865 21.0042 42.4798 21.5336 42.4862 22.0737C42.4972 22.991 42.4925 23.9085 42.4934 24.8259C42.4942 25.6287 42.4936 26.4314 42.4936 27.2342C42.4936 27.2999 42.4936 27.3655 42.4936 27.4543C42.3134 27.4543 42.1467 27.4543 41.9615 27.4543Z' fill='%235D3976'/%3E%3Cpath d='M43.3921 18.9228C44.0639 18.9225 44.7176 18.9225 45.3919 18.9225C45.3919 18.8353 45.39 18.7647 45.3922 18.6942C45.408 18.2 45.4118 17.705 45.4463 17.2121C45.4643 16.9553 45.5227 16.6987 45.5873 16.448C45.8243 15.528 46.446 14.9926 47.3924 14.7955C47.9034 14.6891 48.4198 14.6849 48.9375 14.7377C49.1108 14.7553 49.2833 14.7802 49.4792 14.8046C49.4714 15.2207 49.4428 15.6322 49.4174 16.0595C49.3642 16.0511 49.3241 16.0456 49.2843 16.0383C48.9071 15.9689 48.5284 15.9581 48.1498 16.0223C47.6049 16.1146 47.2309 16.467 47.1306 16.9968C47.087 17.2273 47.0595 17.4627 47.0502 17.6968C47.0353 18.0704 47.0415 18.4448 47.0396 18.8188C47.0395 18.8476 47.0457 18.8763 47.051 18.9224C47.4489 18.9224 47.8404 18.9224 48.2318 18.9224C48.6167 18.9224 49.0017 18.9224 49.3962 18.9224C49.3962 19.3542 49.3962 19.7669 49.3962 20.1991C48.6098 20.1991 47.8334 20.1991 47.0378 20.1991C47.0378 22.6231 47.0378 25.0276 47.0378 27.4432C46.4851 27.4432 45.9517 27.4432 45.398 27.4432C45.398 25.0378 45.398 22.6335 45.398 20.2151C45.2095 20.1823 45.0366 20.2019 44.8656 20.1983C44.6973 20.1947 44.5288 20.1975 44.3604 20.1975C44.1857 20.1975 44.0111 20.1975 43.8365 20.1975C43.6684 20.1975 43.5002 20.1975 43.3227 20.1975C43.315 20.1586 43.3027 20.1252 43.3025 20.0918C43.3011 19.7478 43.3003 19.4039 43.3028 19.06C43.3032 19.0073 43.2717 18.9299 43.3921 18.9228Z' fill='%235D3976'/%3E%3Cpath d='M31.4417 14.9051C31.8406 14.9051 32.2208 14.9051 32.598 14.9051C32.6378 15.0392 32.6485 27.2156 32.61 27.4433C32.0413 27.4433 31.4705 27.4433 30.8887 27.4433C30.8887 23.2688 30.8887 19.1007 30.8887 14.9068C31.0662 14.9062 31.2446 14.9056 31.4417 14.9051Z' fill='%235D3976'/%3E%3Cpath d='M59.2262 27.4543C59.1218 27.4543 59.0355 27.4543 58.9353 27.4543C58.9353 24.6071 58.9353 21.7757 58.9353 18.9334C59.4396 18.9334 59.9412 18.9334 60.4643 18.9334C60.4643 19.361 60.4643 19.7841 60.4643 20.2072C60.4771 20.2106 60.4899 20.2139 60.5026 20.2173C60.5353 20.1635 60.5679 20.1097 60.6005 20.0559C60.9802 19.4304 61.5207 19.0006 62.2449 18.7972C62.6182 18.6923 62.9986 18.7157 63.378 18.7534C63.5503 18.7706 63.7211 18.8019 63.9019 18.8282C63.9019 19.2977 63.9019 19.7531 63.9019 20.2255C63.8437 20.2117 63.7922 20.2007 63.7414 20.1872C63.3627 20.087 62.9787 20.0624 62.5927 20.1306C62.0715 20.2227 61.6607 20.4932 61.3394 20.8938C60.9876 21.3324 60.7944 21.8386 60.6826 22.3771C60.6014 22.7687 60.5678 23.1649 60.5682 23.5643C60.5693 24.7893 60.5686 26.0142 60.5686 27.2392C60.5686 27.3039 60.5686 27.3686 60.5686 27.4543C60.1145 27.4543 59.6794 27.4543 59.2262 27.4543Z' fill='%235D3976'/%3E%3Cpath d='M73.2423 34.2769C73.2423 34.4147 73.2423 34.5347 73.2423 34.6661C73.1441 34.6661 73.0607 34.6661 72.9646 34.6661C72.9646 33.5701 72.9646 32.4745 72.9646 31.353C73.0363 31.353 73.1087 31.353 73.1811 31.353C73.2552 31.353 73.3293 31.353 73.4212 31.353C73.7377 32.2958 74.0525 33.2335 74.3674 34.1712C74.3807 34.1721 74.3941 34.1731 74.4075 34.174C74.5772 33.709 74.7252 33.2367 74.8836 32.7679C75.0422 32.2985 75.1991 31.8287 75.357 31.3584C75.5144 31.3584 75.6569 31.3584 75.7982 31.3584C75.8408 31.4818 75.8525 34.4446 75.8109 34.669C75.7285 34.669 75.6444 34.669 75.5464 34.669C75.5464 33.6872 75.5464 32.7123 75.5464 31.7374C75.5333 31.7347 75.5202 31.7319 75.5071 31.7292C75.17 32.7025 74.8517 33.6819 74.5143 34.6664C74.4413 34.6664 74.3688 34.6664 74.2717 34.6664C73.9465 33.7061 73.6177 32.7353 73.2915 31.7718C73.2714 31.7668 73.2643 31.7627 73.2596 31.7645C73.2554 31.7661 73.2516 31.7742 73.2516 31.7794C73.2482 32.606 73.2453 33.4325 73.2423 34.2769Z' fill='%235D3976'/%3E%3Cpath d='M53.5013 34.0608C53.5013 34.2713 53.5013 34.4638 53.5013 34.667C53.3607 34.667 53.233 34.667 53.0943 34.667C52.6261 33.7251 52.1568 32.7813 51.6677 31.7974C51.6272 32.0187 51.6489 32.2001 51.6451 32.3796C51.641 32.5726 51.6442 32.7658 51.6442 32.9589C51.6442 33.1459 51.6442 33.333 51.6442 33.52C51.6442 33.7131 51.6442 33.9062 51.6442 34.0993C51.6442 34.2852 51.6442 34.4711 51.6442 34.6673C51.5428 34.6673 51.4589 34.6673 51.3626 34.6673C51.3626 33.5699 51.3626 32.4745 51.3626 31.3661C51.4835 31.3661 51.6053 31.3661 51.7543 31.3661C52.2177 32.304 52.6882 33.2561 53.1586 34.2083C53.1741 34.2047 53.1896 34.2011 53.2051 34.1975C53.2051 33.2558 53.2051 32.3142 53.2051 31.3631C53.3124 31.3631 53.3968 31.3631 53.5013 31.3631C53.5013 32.2592 53.5013 33.151 53.5013 34.0608Z' fill='%235D3976'/%3E%3Cpath d='M88.1608 32.9457C88.1612 33.5284 88.1612 34.094 88.1612 34.6687C88.0588 34.6687 87.9745 34.6687 87.8667 34.6687C87.8667 34.6053 87.8667 34.5469 87.8667 34.4885C87.8667 34.0179 87.8671 33.5472 87.8662 33.0766C87.8661 32.9982 87.8675 32.9189 87.8555 32.8418C87.8313 32.686 87.7729 32.547 87.5967 32.4989C87.4138 32.449 87.2413 32.481 87.1196 32.6233C87.0472 32.7079 86.9998 32.8196 86.9669 32.9266C86.9392 33.0168 86.9432 33.1176 86.9427 33.2138C86.9405 33.6362 86.9417 34.0586 86.9417 34.4809C86.9417 34.5403 86.9417 34.5997 86.9417 34.6685C86.8416 34.6685 86.758 34.6685 86.6548 34.6685C86.6548 34.6018 86.6548 34.5431 86.6548 34.4844C86.6548 34.0138 86.6563 33.5431 86.6534 33.0725C86.6528 32.9767 86.6468 32.8784 86.6239 32.7857C86.549 32.4825 86.2418 32.3809 85.9866 32.5749C85.8018 32.7153 85.7315 32.9137 85.726 33.1333C85.72 33.3685 85.7238 33.6039 85.7236 33.8392C85.7235 34.1099 85.7236 34.3805 85.7236 34.6645C85.6227 34.6645 85.5342 34.6645 85.4284 34.6645C85.4284 33.8602 85.4284 33.0609 85.4284 32.2582C85.5095 32.2582 85.588 32.2582 85.6762 32.2582C85.6861 32.3537 85.6951 32.4408 85.7068 32.5534C85.7389 32.525 85.7563 32.5132 85.769 32.4977C86.104 32.0876 86.582 32.1141 86.878 32.5751C86.9216 32.5281 86.9617 32.4851 87.0016 32.4418C87.1136 32.3201 87.2518 32.2431 87.4186 32.2191C87.7291 32.1743 87.9909 32.3223 88.0945 32.6111C88.1307 32.7121 88.1392 32.8225 88.1608 32.9457Z' fill='%235D3976'/%3E%3Cpath d='M47.3437 32.1037C47.3437 31.7674 47.3437 31.4489 47.3437 31.1206C47.4434 31.1206 47.5275 31.1206 47.6308 31.1206C47.6308 32.3046 47.6308 33.4826 47.6308 34.6695C47.553 34.6695 47.4743 34.6695 47.3887 34.6695C47.381 34.5843 47.3736 34.502 47.3632 34.387C47.3045 34.4381 47.2649 34.4707 47.2273 34.5054C46.8668 34.8377 46.3125 34.7653 46.0558 34.3519C46.0462 34.3364 46.0366 34.3207 46.0295 34.304C45.7981 33.7626 45.7595 33.2141 46.0061 32.6708C46.1788 32.2904 46.5363 32.1333 46.9263 32.2462C47.0242 32.2745 47.1116 32.3396 47.2005 32.3929C47.2394 32.4162 47.27 32.4525 47.3363 32.5112C47.3393 32.3556 47.3415 32.2386 47.3437 32.1037ZM46.2121 33.9358C46.2409 34.0151 46.2613 34.0984 46.3 34.1729C46.4822 34.5232 46.9609 34.5522 47.1849 34.2239C47.2419 34.1404 47.2845 34.0412 47.3069 33.9434C47.3819 33.6163 47.3797 33.2859 47.3084 32.9581C47.2908 32.8772 47.2545 32.7973 47.212 32.725C47.1061 32.5445 46.9321 32.4728 46.7259 32.4781C46.5195 32.4833 46.3694 32.5861 46.2932 32.7698C46.2451 32.8857 46.2111 33.0097 46.1901 33.1331C46.1463 33.3905 46.1599 33.6491 46.2121 33.9358Z' fill='%235D3976'/%3E%3Cpath d='M52.2074 37.0713C52.2074 38.1782 52.2074 39.2675 52.2074 40.3657C52.1235 40.3657 52.0451 40.3657 51.955 40.3657C51.9489 40.2801 51.9431 40.1983 51.9349 40.0833C51.8761 40.1338 51.8368 40.1657 51.7996 40.1997C51.4216 40.5451 50.8597 40.4608 50.6114 40.0204C50.5114 39.8428 50.467 39.6491 50.4431 39.4504C50.4083 39.1611 50.4018 38.8721 50.4936 38.5907C50.5289 38.4824 50.5729 38.3736 50.6332 38.2768C50.895 37.8564 51.4259 37.788 51.8006 38.1205C51.8214 38.1389 51.8438 38.1557 51.8906 38.1937C51.9225 38.0187 51.905 37.8706 51.9082 37.7244C51.9114 37.5738 51.9089 37.423 51.9089 37.2723C51.9089 37.123 51.9089 36.9736 51.9089 36.8179C52.0129 36.8179 52.0985 36.8179 52.2074 36.8179C52.2074 36.9004 52.2074 36.9771 52.2074 37.0713ZM50.7427 38.9596C50.7183 39.2562 50.7258 39.5504 50.8459 39.8298C50.9254 40.0149 51.0628 40.1365 51.2822 40.1453C51.5174 40.1547 51.7074 40.0634 51.796 39.8551C51.9908 39.3971 51.9904 38.9267 51.804 38.4667C51.7176 38.2536 51.522 38.1755 51.2885 38.1816C51.0671 38.1874 50.9232 38.3038 50.8503 38.4907C50.7963 38.6294 50.7793 38.7815 50.7427 38.9596Z' fill='%235D3976'/%3E%3Cpath d='M42.9848 34.447C42.8354 34.609 42.6661 34.6999 42.4539 34.709C42.137 34.7226 41.894 34.6006 41.7455 34.3289C41.6852 34.2186 41.6412 34.096 41.6124 33.974C41.5266 33.6108 41.5105 33.2449 41.6217 32.8831C41.6534 32.7801 41.6964 32.6772 41.753 32.585C42.0224 32.1458 42.5626 32.0816 42.9428 32.4386C42.9591 32.4539 42.9767 32.4677 43.0201 32.5047C43.0511 32.3303 43.0339 32.1828 43.037 32.0373C43.0402 31.8866 43.0377 31.7357 43.0377 31.585C43.0377 31.435 43.0377 31.2851 43.0377 31.123C43.1387 31.123 43.2274 31.123 43.3313 31.123C43.3313 32.3062 43.3313 33.4797 43.3313 34.6658C43.2583 34.6658 43.1808 34.6658 43.0854 34.6658C43.0812 34.6006 43.0792 34.5307 43.0714 34.4615C43.0654 34.4091 43.0341 34.4078 42.9848 34.447ZM42.8235 34.299C42.8715 34.2221 42.9376 34.1507 42.9643 34.0674C43.0931 33.666 43.0966 33.2585 42.9723 32.8567C42.8937 32.6028 42.6963 32.4744 42.4432 32.4761C42.2097 32.4777 42.0356 32.6001 41.9534 32.852C41.8226 33.2528 41.8155 33.6615 41.9477 34.0622C42.0809 34.4659 42.4488 34.5693 42.8235 34.299Z' fill='%235D3976'/%3E%3Cpath d='M33.1686 33.6878C33.2835 34.02 33.3943 34.3384 33.5095 34.6698C33.3893 34.6698 33.291 34.6698 33.1743 34.6698C33.0756 34.3774 32.9757 34.0817 32.8733 33.7784C32.415 33.7784 31.9625 33.7784 31.4949 33.7784C31.3939 34.0721 31.2923 34.3676 31.1892 34.6674C31.0838 34.6674 30.9877 34.6674 30.875 34.6674C31.2607 33.558 31.6416 32.4625 32.0242 31.362C32.1386 31.362 32.2422 31.362 32.3606 31.362C32.6288 32.1333 32.8966 32.9037 33.1686 33.6878ZM31.8406 32.7291C31.7601 32.9738 31.6797 33.2184 31.5958 33.4737C31.999 33.4737 32.3744 33.4737 32.7739 33.4737C32.5834 32.8822 32.3984 32.3075 32.2133 31.7329C32.1987 31.7326 32.184 31.7323 32.1693 31.732C32.0627 32.0553 31.9561 32.3785 31.8406 32.7291Z' fill='%235D3976'/%3E%3Cpath d='M80.0354 34.6776C79.9758 34.6755 79.9328 34.6732 79.882 34.6705C79.8747 34.5778 79.8678 34.4896 79.8586 34.3738C79.7982 34.4303 79.7558 34.4704 79.7128 34.5099C79.3652 34.8295 78.7928 34.7788 78.5707 34.369C78.2551 33.7866 78.2294 33.1698 78.5547 32.5807C78.8041 32.1291 79.3913 32.0845 79.7559 32.4584C79.7677 32.4705 79.7819 32.4803 79.8134 32.5064C79.8455 32.2658 79.8254 32.0405 79.829 31.8164C79.8326 31.5885 79.8298 31.3605 79.8298 31.1222C79.9317 31.1222 80.0162 31.1222 80.1157 31.1222C80.119 31.1753 80.1249 31.2276 80.1252 31.2799C80.1305 32.3663 80.1353 33.4527 80.1395 34.5392C80.1398 34.601 80.1666 34.6821 80.0354 34.6776ZM79.8457 33.2213C79.808 33.07 79.7883 32.9117 79.7283 32.7692C79.6421 32.5642 79.4579 32.4758 79.234 32.4765C79.0099 32.4772 78.8511 32.5909 78.7758 32.7883C78.7205 32.9334 78.6842 33.0893 78.6675 33.2433C78.6341 33.5511 78.6458 33.8588 78.7756 34.1491C78.8556 34.3282 78.9952 34.4421 79.2042 34.4503C79.4127 34.4585 79.5861 34.3833 79.6908 34.2043C79.7451 34.1115 79.7944 34.0066 79.8074 33.9026C79.8343 33.6884 79.8353 33.4711 79.8457 33.2213Z' fill='%235D3976'/%3E%3Cpath d='M67.6758 34.5766C67.506 34.4486 67.4122 34.2862 67.3578 34.1037C67.2473 33.7328 67.2229 33.3551 67.3099 32.9774C67.3406 32.8441 67.3929 32.71 67.4631 32.5916C67.7314 32.1388 68.3056 32.0802 68.6764 32.4598C68.6881 32.4718 68.7025 32.4813 68.7441 32.515C68.7576 32.2665 68.7498 32.0422 68.7511 31.8184C68.7525 31.5904 68.7515 31.3625 68.7515 31.1232C68.8499 31.1232 68.9341 31.1232 69.0393 31.1232C69.0393 32.3025 69.0393 33.4806 69.0393 34.6682C68.9651 34.6682 68.8869 34.6682 68.8014 34.6682C68.7945 34.5763 68.7879 34.4882 68.7788 34.3663C68.4574 34.7227 68.1023 34.8204 67.6758 34.5766ZM68.6728 34.0889C68.8089 33.7061 68.8018 33.316 68.712 32.9288C68.643 32.631 68.4383 32.4769 68.1619 32.4753C67.9078 32.4738 67.7268 32.6201 67.6443 32.9156C67.545 33.2713 67.5439 33.6311 67.637 33.9891C67.655 34.0585 67.6819 34.1279 67.7172 34.1908C67.8979 34.5123 68.3444 34.5449 68.5761 34.2543C68.6099 34.2119 68.6327 34.1611 68.6728 34.0889Z' fill='%235D3976'/%3E%3Cpath d='M41.5849 38.2259C41.5849 38.9482 41.5849 39.6523 41.5849 40.3654C41.5055 40.3654 41.4272 40.3654 41.3343 40.3654C41.3296 40.2729 41.3251 40.185 41.3192 40.0689C41.2634 40.1209 41.2185 40.1572 41.1804 40.1992C40.9072 40.4996 40.2671 40.4998 40.011 40.0504C39.981 39.9978 39.9503 39.9442 39.9307 39.8875C39.7786 39.448 39.749 39.0035 39.8829 38.5541C39.8967 38.508 39.9168 38.4636 39.9348 38.4186C40.1907 37.7816 40.9677 37.788 41.2811 38.2373C41.3008 37.7469 41.2776 37.289 41.2955 36.8219C41.3902 36.8219 41.4746 36.8219 41.5849 36.8219C41.5849 37.2839 41.5849 37.7458 41.5849 38.2259ZM40.1178 39.2551C40.1212 39.4555 40.1446 39.6525 40.2305 39.8378C40.3129 40.0156 40.4433 40.1343 40.6547 40.1449C40.8806 40.1562 41.0733 40.0787 41.1643 39.8768C41.3757 39.408 41.3756 38.9255 41.1769 38.4535C41.0906 38.2485 40.8967 38.1748 40.6704 38.1815C40.4579 38.1878 40.3221 38.298 40.2385 38.4761C40.2052 38.5469 40.174 38.6225 40.1639 38.6987C40.1411 38.8716 40.1321 39.0462 40.1178 39.2551Z' fill='%235D3976'/%3E%3Cpath d='M62.0604 39.4286C62.0247 39.1468 62.0249 38.8814 62.1036 38.6234C62.142 38.4975 62.1936 38.371 62.2641 38.2596C62.4608 37.9491 62.8273 37.8291 63.1759 37.966C63.2979 38.0139 63.4006 38.1077 63.5225 38.1874C63.5423 38.0515 63.5271 37.899 63.5299 37.7479C63.5327 37.5972 63.5305 37.4464 63.5305 37.2956C63.5305 37.1403 63.5305 36.9849 63.5305 36.8207C63.6342 36.8207 63.7183 36.8207 63.8215 36.8207C63.8215 38.0002 63.8215 39.1739 63.8215 40.3611C63.7512 40.3611 63.6683 40.3611 63.5769 40.3611C63.5718 40.268 63.567 40.1806 63.5605 40.0643C63.5006 40.1218 63.4589 40.1626 63.4164 40.2025C63.0667 40.5307 62.5119 40.4641 62.2571 40.0621C62.1374 39.873 62.0872 39.6622 62.0604 39.4286ZM63.2038 40.0812C63.3374 40.0107 63.4187 39.8966 63.463 39.7619C63.5949 39.3604 63.5952 38.9538 63.4684 38.553C63.3885 38.3005 63.1967 38.1808 62.9347 38.1819C62.6938 38.183 62.5273 38.2975 62.4462 38.5532C62.3209 38.9477 62.3142 39.3505 62.4387 39.7457C62.5536 40.1102 62.8029 40.2197 63.2038 40.0812Z' fill='%235D3976'/%3E%3Cpath d='M70.3634 37.6466C70.3634 37.448 70.3634 37.2675 70.3634 37.0755C70.4129 37.0692 70.4533 37.0598 70.4938 37.0596C70.6934 37.0587 70.8931 37.0571 71.0926 37.062C71.1855 37.0643 71.2798 37.0731 71.3706 37.0917C71.805 37.1806 72.0397 37.447 72.0636 37.8734C72.0676 37.9456 72.0678 38.0183 72.0644 38.0905C72.0431 38.5487 71.7513 38.8618 71.2816 38.9159C71.0905 38.938 70.8963 38.9348 70.6804 38.9441C70.6644 39.0951 70.6752 39.2499 70.6733 39.4037C70.6714 39.5606 70.6729 39.7175 70.6729 39.8744C70.6729 40.031 70.6729 40.1876 70.6729 40.3591C70.5702 40.3591 70.4757 40.3591 70.3634 40.3591C70.3634 39.4596 70.3634 38.5621 70.3634 37.6466ZM71.7077 38.2455C71.7128 38.1016 71.7353 37.9558 71.7189 37.8143C71.6941 37.5999 71.5697 37.4458 71.3478 37.383C71.13 37.3214 70.908 37.3336 70.6883 37.3392C70.6521 37.642 70.6652 38.5257 70.7107 38.6639C70.8856 38.6527 71.0663 38.6501 71.2441 38.6272C71.4642 38.5989 71.6257 38.4869 71.7077 38.2455Z' fill='%235D3976'/%3E%3Cpath d='M35.8419 37.3749C36.0656 37.7031 36.0723 38.0465 35.9548 38.3917C35.8491 38.7024 35.5953 38.8606 35.2718 38.911C35.1314 38.9329 34.9863 38.9281 34.8433 38.9335C34.7767 38.936 34.71 38.9339 34.6304 38.9339C34.6304 39.4176 34.6304 39.8801 34.6304 40.3571C34.5231 40.3571 34.4289 40.3571 34.3245 40.3571C34.3245 39.2651 34.3245 38.1762 34.3245 37.0754C34.3632 37.0702 34.4041 37.0601 34.445 37.0601C34.6694 37.0597 34.8941 37.0549 35.118 37.0649C35.3931 37.0773 35.6467 37.1494 35.8419 37.3749ZM35.4695 38.5252C35.7464 38.3611 35.7367 37.7862 35.5847 37.5803C35.5136 37.4839 35.4219 37.416 35.304 37.383C35.0862 37.3219 34.8652 37.3302 34.638 37.3407C34.638 37.7841 34.638 38.2126 34.638 38.6397C34.991 38.6807 35.2173 38.6522 35.4695 38.5252Z' fill='%235D3976'/%3E%3Cpath d='M44.0597 32.6791C44.0283 32.6857 43.991 32.6886 43.99 32.6839C43.973 32.6079 43.9606 32.5309 43.9453 32.443C44.2765 32.2292 44.623 32.1408 45.0062 32.2769C45.231 32.3567 45.3504 32.5289 45.3994 32.7476C45.4191 32.8353 45.4256 32.927 45.427 33.017C45.4348 33.5476 45.4395 34.0782 45.4446 34.6088C45.4447 34.6257 45.4378 34.6427 45.4323 34.6685C45.3584 34.6685 45.286 34.6685 45.1919 34.6685C45.1842 34.5862 45.1762 34.5002 45.1649 34.3787C45.0952 34.4423 45.0497 34.4857 45.0022 34.5268C44.5895 34.8847 43.9244 34.7101 43.7745 34.2049C43.6618 33.8252 43.836 33.4574 44.2208 33.3239C44.4049 33.2601 44.6085 33.245 44.8048 33.2193C44.9085 33.2058 45.0156 33.217 45.1297 33.217C45.1657 33.035 45.1461 32.8713 45.0734 32.7145C45.019 32.5972 44.9215 32.5273 44.7916 32.4977C44.6001 32.454 44.4202 32.4898 44.2477 32.5712C44.1864 32.6001 44.1296 32.638 44.0597 32.6791ZM44.0583 34.0026C44.0938 34.2907 44.2698 34.4554 44.5373 34.4509C44.7985 34.4465 45.0186 34.2946 45.1014 34.0543C45.1671 33.8635 45.1583 33.6679 45.1378 33.4619C44.9033 33.4488 44.6812 33.4569 44.4639 33.5069C44.1886 33.5702 44.0893 33.6907 44.0583 34.0026Z' fill='%235D3976'/%3E%3Cpath d='M54.7459 32.2233C54.8798 32.226 55.0001 32.2179 55.1147 32.239C55.4298 32.2973 55.6155 32.4932 55.6612 32.8016C55.6727 32.8789 55.6747 32.9578 55.6761 33.036C55.6852 33.5543 55.693 34.0725 55.7007 34.5908C55.701 34.6137 55.6968 34.6366 55.6939 34.6684C55.6146 34.6684 55.5423 34.6684 55.4529 34.6684C55.4411 34.5862 55.4288 34.5003 55.4125 34.3861C55.3462 34.4446 55.2993 34.4871 55.2512 34.5283C54.8478 34.8739 54.2037 34.7187 54.0376 34.2361C53.9035 33.8467 54.0789 33.4659 54.475 33.3217C54.6185 33.2695 54.7757 33.2441 54.929 33.2279C55.0763 33.2123 55.2267 33.2245 55.384 33.2245C55.4168 33.0348 55.398 32.8708 55.3257 32.7142C55.2716 32.5971 55.1743 32.5268 55.0441 32.4975C54.8246 32.4482 54.6247 32.5008 54.4339 32.6033C54.375 32.6349 54.3176 32.6688 54.2428 32.711C54.2267 32.6133 54.2133 32.5315 54.1991 32.4453C54.361 32.3266 54.5391 32.2627 54.7459 32.2233ZM55.184 34.3064C55.4413 34.0691 55.4083 33.7693 55.3918 33.4586C55.1164 33.4553 54.8551 33.448 54.6067 33.539C54.3664 33.6271 54.2515 33.8877 54.3315 34.1364C54.4032 34.3597 54.6277 34.4924 54.8737 34.4406C54.974 34.4195 55.0664 34.3634 55.184 34.3064Z' fill='%235D3976'/%3E%3Cpath d='M64.2428 39.0647C64.2601 38.8053 64.2992 38.5677 64.4238 38.352C64.5664 38.1053 64.7745 37.9485 65.0739 37.9219C65.4227 37.891 65.6801 38.0395 65.8172 38.3511C65.9091 38.5601 65.9285 38.7827 65.9454 39.0053C65.9508 39.0769 65.9463 39.1492 65.9463 39.2468C65.716 39.2594 65.4884 39.2511 65.2614 39.2526C65.0374 39.2541 64.8134 39.2529 64.5925 39.2529C64.5187 39.4962 64.6254 39.8363 64.8206 39.9997C65.0561 40.1968 65.3386 40.1913 65.8081 39.9752C65.8133 40.0254 65.82 40.0712 65.8223 40.1173C65.8247 40.1648 65.8228 40.2125 65.8228 40.2539C65.2358 40.6209 64.4896 40.3611 64.3178 39.7256C64.2618 39.5188 64.2658 39.2968 64.2428 39.0647ZM64.969 38.2089C64.6944 38.364 64.5307 38.6897 64.5836 38.9809C64.9278 38.9809 65.2727 38.9809 65.6241 38.9809C65.6446 38.8138 65.618 38.6625 65.5626 38.5151C65.4872 38.3144 65.3097 38.123 64.969 38.2089Z' fill='%235D3976'/%3E%3Cpath d='M56.9142 37.0414C57.0257 37.0687 57.1209 37.0932 57.2169 37.118C57.2169 37.2308 57.2169 37.3305 57.2169 37.4501C57.1557 37.426 57.1113 37.411 57.0692 37.3915C56.9311 37.3274 56.7847 37.3021 56.6334 37.3094C56.4294 37.3192 56.2466 37.3823 56.1584 37.5749C56.066 37.7768 56.0901 37.9805 56.2348 38.1537C56.3119 38.246 56.413 38.3212 56.5099 38.3962C56.6898 38.5354 56.8775 38.6652 57.0567 38.8053C57.4129 39.0839 57.4505 39.4646 57.3242 39.837C57.2279 40.1208 57.02 40.3057 56.7187 40.3746C56.405 40.4465 56.1025 40.4026 55.8013 40.2561C55.8071 40.1512 55.8127 40.0505 55.8192 39.9324C55.8672 39.9552 55.9017 39.9762 55.9393 39.9888C56.0733 40.0341 56.2053 40.0954 56.3436 40.1161C56.6357 40.1599 56.8562 40.0511 56.975 39.8319C57.1072 39.5878 57.0794 39.2856 56.8834 39.0918C56.767 38.9767 56.6239 38.8867 56.4911 38.7875C56.3483 38.6808 56.1964 38.5844 56.0613 38.4695C55.7975 38.2453 55.7314 37.955 55.7948 37.6308C55.8454 37.3722 56.0049 37.1999 56.2542 37.1021C56.4622 37.0204 56.6785 37.0139 56.9142 37.0414Z' fill='%235D3976'/%3E%3Cpath d='M32.3689 40.3622C32.193 40.3771 32.0313 40.4055 31.8719 40.3961C31.5562 40.3775 31.3057 40.229 31.1782 39.9472C30.9388 39.4184 30.9409 38.8793 31.1979 38.3565C31.3293 38.0892 31.5646 37.9365 31.8798 37.9191C32.1944 37.9019 32.4359 38.0389 32.5721 38.3153C32.6014 38.3747 32.6237 38.4379 32.643 38.5012C32.7158 38.7404 32.7259 38.9856 32.7188 39.2488C32.2596 39.2488 31.8072 39.2488 31.3591 39.2488C31.2921 39.5256 31.4152 39.8706 31.6261 40.0244C31.8639 40.1978 32.1515 40.1844 32.5551 39.9812C32.5982 40.081 32.5982 40.081 32.5933 40.2709C32.5291 40.2979 32.4566 40.3283 32.3689 40.3622ZM31.6849 38.9911C31.9248 38.9911 32.1648 38.9911 32.4106 38.9911C32.4077 38.7507 32.3825 38.543 32.2517 38.3629C32.11 38.1676 31.8484 38.1145 31.6613 38.2531C31.4172 38.4341 31.3449 38.6922 31.3307 38.9911C31.4508 38.9911 31.5494 38.9911 31.6849 38.9911Z' fill='%235D3976'/%3E%3Cpath d='M47.3814 39.0304C47.3903 39.3022 47.3699 39.5535 47.2851 39.7972C47.1206 40.2699 46.7402 40.476 46.2112 40.3859C45.9333 40.3385 45.7327 40.1741 45.6273 39.9244C45.4127 39.4159 45.4093 38.8985 45.6317 38.3928C45.7759 38.0651 46.06 37.9178 46.424 37.9172C46.7867 37.9166 47.0604 38.0632 47.2247 38.3838C47.3264 38.5823 47.3595 38.7964 47.3814 39.0304ZM45.8116 38.8304C45.8049 38.8843 45.7953 38.9379 45.7918 38.9919C45.7741 39.2646 45.7849 39.5354 45.8951 39.7914C45.9891 40.0097 46.1551 40.1401 46.4093 40.1457C46.6701 40.1513 46.858 40.0349 46.9483 39.8038C47.1151 39.3769 47.1075 38.9444 46.948 38.5149C46.9397 38.4925 46.9269 38.4713 46.9143 38.4506C46.8035 38.2692 46.6415 38.1788 46.4212 38.1807C46.201 38.1827 46.0329 38.2715 45.9355 38.4598C45.8806 38.5658 45.8548 38.6859 45.8116 38.8304Z' fill='%235D3976'/%3E%3Cpath d='M84.2728 32.5063C83.9671 32.4511 83.891 32.4697 83.432 32.7102C83.4183 32.6166 83.4056 32.5303 83.3924 32.4403C83.6346 32.2849 83.8865 32.1971 84.1717 32.2161C84.5804 32.2432 84.8237 32.4725 84.8617 32.8675C84.8674 32.9274 84.8652 32.9879 84.8663 33.0482C84.8755 33.5663 84.8847 34.0844 84.8935 34.6025C84.8938 34.6197 84.8886 34.637 84.8843 34.6659C84.806 34.6659 84.7287 34.6659 84.6448 34.6659C84.6333 34.5751 84.6221 34.4866 84.6078 34.3735C84.5603 34.4167 84.5261 34.4457 84.4944 34.4772C84.2401 34.7294 83.8323 34.7857 83.5351 34.609C83.241 34.4341 83.1166 34.0733 83.2348 33.7351C83.3105 33.5186 83.47 33.3742 83.689 33.3135C83.8784 33.2611 84.0787 33.2427 84.2755 33.2188C84.3728 33.207 84.473 33.2168 84.5679 33.2168C84.6442 32.8931 84.5412 32.6423 84.2728 32.5063ZM84.4877 34.1769C84.617 33.9562 84.6061 33.7182 84.5882 33.457C84.3147 33.4558 84.0486 33.4462 83.795 33.5413C83.5554 33.6311 83.4439 33.891 83.5257 34.1417C83.5975 34.3614 83.8265 34.4882 84.0727 34.442C84.2375 34.4112 84.3761 34.3374 84.4877 34.1769Z' fill='%235D3976'/%3E%3Cpath d='M64.8329 33.7712C64.833 34.0777 64.833 34.3661 64.833 34.6663C64.7688 34.6663 64.6913 34.6663 64.6043 34.6663C64.594 34.576 64.5839 34.4875 64.5708 34.3735C64.5233 34.4167 64.489 34.4452 64.4577 34.4765C64.2057 34.7286 63.7936 34.786 63.4971 34.6098C63.1987 34.4323 63.0759 34.0559 63.2051 33.7172C63.2845 33.5091 63.4414 33.3714 63.6536 33.3125C63.8374 33.2614 64.0314 33.2422 64.2222 33.2188C64.3201 33.2069 64.4209 33.2167 64.5159 33.2167C64.679 32.7812 64.3788 32.4105 63.928 32.4932C63.7499 32.5259 63.5828 32.6154 63.3908 32.6864C63.3802 32.6158 63.3674 32.5304 63.3538 32.4399C63.6418 32.2588 63.9406 32.1669 64.28 32.2375C64.5675 32.2973 64.7402 32.4673 64.8008 32.7419C64.8215 32.8355 64.8295 32.933 64.8312 33.029C64.8355 33.2703 64.8328 33.5117 64.8329 33.7712ZM63.6845 33.5735C63.6469 33.6046 63.6016 33.6303 63.573 33.6678C63.4529 33.8251 63.4328 34.0002 63.5064 34.1797C63.5744 34.3453 63.7109 34.4331 63.8928 34.4498C64.1281 34.4714 64.3717 34.3394 64.4745 34.1328C64.5805 33.9195 64.5679 33.6946 64.5514 33.4558C64.2529 33.4599 63.9737 33.4471 63.6845 33.5735Z' fill='%235D3976'/%3E%3Cpath d='M52.9249 40.1501C52.8046 40.0218 52.7306 39.8831 52.6903 39.729C52.5886 39.3412 52.5893 38.953 52.7045 38.568C52.7555 38.3975 52.849 38.2501 52.9801 38.1229C53.2806 37.8314 53.9957 37.7859 54.2158 38.4012C54.313 38.6727 54.3317 38.9514 54.325 39.2513C53.8601 39.2513 53.4075 39.2513 52.9322 39.2513C52.9385 39.5517 52.9711 39.8276 53.2216 40.013C53.5361 40.2456 53.8556 40.1505 54.1916 39.9622C54.1974 40.0717 54.2022 40.1626 54.2067 40.2476C53.8288 40.4941 53.279 40.4529 52.9249 40.1501ZM53.9384 38.5114C53.9015 38.449 53.873 38.3799 53.8262 38.3255C53.6771 38.152 53.4178 38.1248 53.2416 38.272C53.0221 38.4555 52.945 38.7013 52.9341 38.978C53.303 38.978 53.6541 38.978 54.0315 38.978C54.0012 38.8202 53.9741 38.6796 53.9384 38.5114Z' fill='%235D3976'/%3E%3Cpath d='M38.6218 32.362C38.7994 32.4901 38.9034 32.6539 38.961 32.8427C39.0878 33.2583 39.0928 33.6784 38.9575 34.0914C38.7977 34.5794 38.3693 34.8009 37.854 34.681C37.6637 34.6368 37.506 34.5419 37.4004 34.384C37.3335 34.284 37.2742 34.1735 37.2403 34.0598C37.1235 33.6687 37.1198 33.2718 37.2348 32.8804C37.4169 32.2604 38.0326 32.0286 38.6218 32.362ZM38.6518 32.8726C38.5819 32.7037 38.4787 32.5644 38.2907 32.5055C37.9732 32.4059 37.6804 32.5466 37.5581 32.8659C37.4426 33.1677 37.442 33.4821 37.4918 33.7948C37.5122 33.9236 37.5564 34.0535 37.6155 34.1708C37.7113 34.3608 37.8848 34.4505 38.1026 34.4505C38.3205 34.4505 38.4884 34.3578 38.5919 34.1717C38.6357 34.0928 38.6737 34.0068 38.6921 33.9197C38.7641 33.5783 38.7667 33.2369 38.6518 32.8726Z' fill='%235D3976'/%3E%3Cpath d='M71.3437 33.17C71.3685 33.4889 71.3683 33.7896 71.2706 34.0825C71.1062 34.5749 70.6745 34.8055 70.1546 34.6794C69.9374 34.6267 69.767 34.5077 69.6628 34.3184C69.5963 34.1976 69.5419 34.0654 69.5121 33.932C69.4292 33.5608 69.4326 33.1876 69.5568 32.8241C69.7218 32.3411 70.1565 32.1186 70.6661 32.2454C70.927 32.3102 71.1087 32.4685 71.2092 32.7033C71.2705 32.8465 71.2987 33.0029 71.3437 33.17ZM69.8617 32.8694C69.7541 33.1666 69.7523 33.4733 69.7949 33.7788C69.8136 33.9131 69.8654 34.0463 69.9221 34.1715C69.9819 34.3032 70.0966 34.3868 70.2426 34.4274C70.5421 34.5105 70.814 34.3855 70.9397 34.0951C71.0684 33.7976 71.0721 33.4841 71.0273 33.1719C71.0072 33.0315 70.9598 32.8909 70.9004 32.7608C70.835 32.6176 70.7103 32.528 70.5466 32.4928C70.2495 32.4289 70.0291 32.5422 69.8617 32.8694Z' fill='%235D3976'/%3E%3Cpath d='M59.5081 32.2313C59.5733 32.2231 59.6228 32.2156 59.6724 32.2145C60.0754 32.2056 60.379 32.3846 60.5199 32.7472C60.7042 33.2214 60.7035 33.7061 60.5194 34.1803C60.3836 34.5304 60.092 34.7076 59.707 34.709C59.3165 34.7104 59.0288 34.5437 58.8875 34.1916C58.6929 33.7066 58.6952 33.2112 58.8906 32.7258C58.9962 32.4635 59.1977 32.2905 59.5081 32.2313ZM60.0665 32.6039C59.7038 32.3598 59.3141 32.4712 59.1563 32.8654C59.1339 32.9214 59.1183 32.9804 59.1049 33.0391C59.0489 33.2837 59.0514 33.5317 59.0853 33.7773C59.1024 33.9009 59.1442 34.0245 59.1949 34.1399C59.2582 34.2842 59.3732 34.3835 59.5349 34.4279C59.8415 34.5121 60.1208 34.3794 60.2372 34.0733C60.377 33.7054 60.3781 33.3266 60.2691 32.9525C60.235 32.8352 60.1489 32.732 60.0665 32.6039Z' fill='%235D3976'/%3E%3Cpath d='M77.0706 32.2311C77.5415 32.1783 77.8153 32.3489 77.9471 32.7679C78.0256 33.0174 78.0438 33.2735 78.0374 33.5514C77.5723 33.5514 77.1203 33.5514 76.6501 33.5514C76.645 33.8551 76.6819 34.1293 76.9307 34.3144C77.2439 34.5474 77.5643 34.4556 77.8988 34.2633C77.9044 34.3754 77.909 34.4666 77.9133 34.5529C77.4088 34.895 76.659 34.6974 76.4478 34.1564C76.2654 33.689 76.2728 33.2093 76.4646 32.7426C76.5713 32.4831 76.7638 32.3011 77.0706 32.2311ZM77.3941 33.2944C77.4983 33.2944 77.6024 33.2944 77.7127 33.2944C77.7351 33.0721 77.7006 32.8794 77.594 32.7041C77.4218 32.4211 77.0788 32.3969 76.8642 32.6534C76.715 32.8317 76.6498 33.0413 76.6451 33.2944C76.8884 33.2944 77.1228 33.2944 77.3941 33.2944Z' fill='%235D3976'/%3E%3Cpath d='M37.9977 38.0848C38.2538 37.9043 38.5281 37.887 38.8112 37.948C39.0074 37.9903 39.1641 38.101 39.2705 38.2658C39.3291 38.3568 39.3821 38.4558 39.413 38.5582C39.5341 38.9607 39.5371 39.3678 39.4132 39.7695C39.2656 40.2482 38.8702 40.4784 38.3629 40.3924C38.0705 40.3428 37.8562 40.1826 37.7451 39.9207C37.5326 39.4196 37.5341 38.9092 37.7451 38.4083C37.7946 38.2909 37.9046 38.1972 37.9977 38.0848ZM39.1538 39.5386C39.1638 39.3707 39.1854 39.2025 39.1811 39.035C39.1757 38.8238 39.1422 38.6142 39.0227 38.4295C38.8055 38.0941 38.3076 38.0892 38.0811 38.4188C37.8542 38.749 37.8515 39.5615 38.0762 39.8983C38.3027 40.2377 38.8132 40.2355 39.0249 39.8879C39.0836 39.7915 39.1086 39.6759 39.1538 39.5386Z' fill='%235D3976'/%3E%3Cpath d='M94.1472 32.9744C94.1729 32.8909 94.1911 32.8202 94.2194 32.7536C94.3737 32.3905 94.6611 32.2079 95.0639 32.2138C95.4522 32.2195 95.7389 32.408 95.8737 32.7739C96.0428 33.2324 96.0418 33.6989 95.8719 34.1569C95.737 34.5207 95.4485 34.7058 95.0573 34.7091C94.6522 34.7125 94.3646 34.5321 94.2171 34.1649C94.0635 33.7823 94.0657 33.3871 94.1472 32.9744ZM95.3654 32.5694C94.9883 32.3731 94.6403 32.4965 94.4934 32.8799C94.474 32.9305 94.4587 32.9831 94.4479 33.0359C94.3897 33.3226 94.3853 33.6109 94.4513 33.8958C94.4767 34.0053 94.5262 34.1122 94.5811 34.2118C94.6416 34.3215 94.7453 34.3893 94.8701 34.4256C95.1747 34.5143 95.4529 34.3843 95.5786 34.0847C95.7014 33.792 95.7015 33.4854 95.6653 33.178C95.6387 32.9532 95.5791 32.7396 95.3654 32.5694Z' fill='%235D3976'/%3E%3Cpath d='M57.9937 40.2467C57.838 40.1104 57.7606 39.9511 57.7434 39.7623C57.7111 39.4086 57.8814 39.1282 58.2313 39.0163C58.412 38.9584 58.6079 38.9411 58.7984 38.917C58.9021 38.9038 59.009 38.9146 59.1314 38.9146C59.1567 38.7155 59.1398 38.5351 59.0409 38.3685C58.9743 38.2562 58.8626 38.2033 58.7323 38.1876C58.5331 38.1635 58.3481 38.2066 58.1757 38.3036C58.1171 38.3365 58.0597 38.3714 57.9845 38.4154C57.9676 38.3149 57.953 38.2279 57.9377 38.1374C58.196 37.9807 58.4599 37.8926 58.7592 37.9246C59.1515 37.9666 59.3781 38.1906 59.4065 38.5738C59.4137 38.6699 59.4108 38.7668 59.4117 38.8633C59.4163 39.3576 59.4206 39.8519 59.4252 40.3612C59.3598 40.3612 59.2834 40.3612 59.1931 40.3612C59.1833 40.2788 59.173 40.1919 59.1588 40.0721C58.8077 40.428 58.4321 40.531 57.9937 40.2467ZM58.4641 40.1443C58.721 40.1546 58.9308 40.0706 59.0544 39.844C59.1719 39.6284 59.1533 39.3962 59.1345 39.1705C58.9474 39.1705 58.7801 39.1669 58.613 39.1723C58.5458 39.1745 58.4778 39.1921 58.4127 39.2108C58.1841 39.2766 58.0701 39.4162 58.0558 39.6408C58.039 39.9045 58.1553 40.0586 58.4641 40.1443Z' fill='%235D3976'/%3E%3Cpath d='M89.2548 34.3542C89.5791 34.5278 89.8682 34.4361 90.168 34.2686C90.168 34.3802 90.168 34.4723 90.168 34.5683C89.5932 34.9232 88.8595 34.6645 88.6743 34.0283C88.5621 33.6426 88.567 33.2511 88.6877 32.8674C88.7833 32.5635 88.9678 32.3287 89.3032 32.2411C89.6821 32.1421 90.0214 32.3016 90.1773 32.6483C90.2787 32.874 90.3331 33.2831 90.2924 33.5504C89.8428 33.5504 89.3903 33.5504 88.9139 33.5504C88.9254 33.8685 88.9642 34.1514 89.2548 34.3542ZM88.9728 32.9529C88.9446 33.0605 88.8987 33.1663 88.9233 33.281C89.2867 33.281 89.637 33.281 89.9907 33.281C90.007 33.0837 89.9756 32.9076 89.89 32.7437C89.7193 32.4169 89.3479 32.3816 89.1212 32.6728C89.0624 32.7482 89.0275 32.841 88.9728 32.9529Z' fill='%235D3976'/%3E%3Cpath d='M48.9988 33.5548C48.7818 33.5548 48.5836 33.5548 48.3615 33.5548C48.3696 33.8456 48.397 34.1169 48.6344 34.3029C48.954 34.5533 49.2857 34.4561 49.6219 34.2666C49.6219 34.3785 49.6219 34.4658 49.6219 34.5745C49.4032 34.706 49.1473 34.7301 48.8848 34.6992C48.5397 34.6586 48.2914 34.4783 48.1723 34.1626C47.9952 33.6928 47.9991 33.2156 48.1839 32.7487C48.2839 32.496 48.4689 32.3123 48.7516 32.2409C49.1408 32.1427 49.4826 32.3038 49.6302 32.6644C49.7443 32.9431 49.7631 33.2359 49.7479 33.5548C49.499 33.5548 49.2583 33.5548 48.9988 33.5548ZM48.4024 33.2902C48.7473 33.2902 49.0922 33.2902 49.4351 33.2902C49.4523 33.0465 49.4025 32.8286 49.3024 32.6828C49.1293 32.4306 48.8123 32.4011 48.6067 32.629C48.4429 32.8106 48.3557 33.0258 48.4024 33.2902Z' fill='%235D3976'/%3E%3Cpath d='M42.5099 40.3487C42.2839 40.2458 42.1897 40.0687 42.1505 39.8572C42.1374 39.7863 42.1324 39.7131 42.1322 39.641C42.1307 39.1221 42.131 38.6033 42.1318 38.0844C42.1318 38.0436 42.1398 38.0028 42.1449 37.9548C42.2323 37.9548 42.3116 37.9548 42.4136 37.9548C42.4161 38.0138 42.4205 38.0711 42.4205 38.1283C42.4211 38.5808 42.42 39.0333 42.4214 39.4858C42.4217 39.5761 42.4238 39.6672 42.4366 39.7564C42.4814 40.0685 42.7398 40.2216 43.0512 40.1218C43.2921 40.0446 43.3992 39.8597 43.4485 39.6364C43.4652 39.5607 43.4649 39.4805 43.4652 39.4024C43.4667 38.9619 43.4659 38.5215 43.4663 38.0811C43.4664 38.0456 43.4705 38.0101 43.4736 37.9609C43.5621 37.9609 43.6457 37.9609 43.7558 37.9609C43.7558 38.7553 43.7558 39.5532 43.7558 40.3638C43.686 40.3638 43.6029 40.3638 43.5091 40.3638C43.5001 40.2692 43.4919 40.1828 43.4811 40.0692C43.2214 40.4062 42.8975 40.4682 42.5099 40.3487Z' fill='%235D3976'/%3E%3Cpath d='M61.3855 33.303C61.3855 33.7656 61.3855 34.2104 61.3855 34.6665C61.2851 34.6665 61.2007 34.6665 61.0939 34.6665C61.0939 33.8707 61.0939 33.0726 61.0939 32.2614C61.1608 32.2614 61.2381 32.2614 61.3397 32.2614C61.3472 32.3547 61.3551 32.4522 61.3653 32.5802C61.4069 32.5314 61.4287 32.5059 61.4504 32.4802C61.6596 32.2328 61.9833 32.1467 62.2912 32.2594C62.4577 32.3204 62.5813 32.4317 62.6332 32.5958C62.6745 32.7267 62.7092 32.8653 62.7116 33.001C62.7209 33.5313 62.7163 34.0618 62.7161 34.5923C62.7161 34.6157 62.7089 34.6391 62.7037 34.6698C62.6153 34.6698 62.5301 34.6698 62.4233 34.6698C62.4233 34.6067 62.4233 34.5482 62.4233 34.4897C62.4233 34.0316 62.4237 33.5735 62.4229 33.1153C62.4228 33.0431 62.4199 32.9707 62.4138 32.8987C62.3985 32.719 62.3342 32.5658 62.1406 32.5058C61.9263 32.4394 61.7324 32.4816 61.5766 32.6431C61.4622 32.7617 61.4062 32.9083 61.3914 33.0686C61.3849 33.1404 61.3872 33.2131 61.3855 33.303Z' fill='%235D3976'/%3E%3Cpath d='M61.3141 38.8778C61.3141 38.5646 61.3141 38.2695 61.3141 37.9603C61.4083 37.9603 61.4923 37.9603 61.5987 37.9603C61.5987 38.7552 61.5987 39.5538 61.5987 40.3637C61.5321 40.3637 61.4535 40.3637 61.3642 40.3637C61.3495 40.2828 61.3342 40.1982 61.314 40.087C61.2721 40.1328 61.2495 40.1593 61.2249 40.184C61.0027 40.4071 60.6348 40.4742 60.3449 40.3452C60.2079 40.2842 60.1072 40.1858 60.0584 40.0497C60.022 39.9483 59.988 39.8397 59.9868 39.7339C59.98 39.1493 59.9835 38.5645 59.9835 37.963C60.076 37.963 60.1637 37.963 60.2722 37.963C60.2722 38.024 60.2722 38.0825 60.2722 38.141C60.2722 38.6115 60.2718 39.082 60.2728 39.5524C60.2729 39.6246 60.2724 39.698 60.2848 39.7688C60.3375 40.0714 60.591 40.2162 60.8943 40.1215C61.053 40.072 61.1683 39.9694 61.226 39.8237C61.2719 39.7076 61.3006 39.5806 61.3099 39.4566C61.3238 39.2706 61.3139 39.0829 61.3141 38.8778Z' fill='%235D3976'/%3E%3Cpath d='M35.1635 34.4442C35.1192 34.3689 35.1028 34.4273 35.0851 34.4484C34.8918 34.6794 34.6365 34.7407 34.3466 34.6968C34.0769 34.656 33.9125 34.4963 33.8457 34.2453C33.8211 34.1527 33.8088 34.0546 33.8081 33.9589C33.8042 33.4219 33.8056 32.885 33.8057 32.348C33.8057 32.3245 33.8108 32.3011 33.8151 32.2636C33.9013 32.2636 33.9848 32.2636 34.0906 32.2636C34.0928 32.3162 34.0972 32.3741 34.0973 32.432C34.0979 32.8905 34.0974 33.3491 34.0979 33.8076C34.098 33.88 34.0965 33.9528 34.104 34.0246C34.1226 34.2024 34.1856 34.3578 34.3785 34.4191C34.5762 34.4818 34.7628 34.4555 34.9176 34.3123C35.0865 34.1561 35.1396 33.9537 35.1405 33.7359C35.1422 33.3075 35.1411 32.8791 35.1411 32.4507C35.1411 32.3913 35.1411 32.3319 35.1411 32.2609C35.2388 32.2609 35.3228 32.2609 35.4288 32.2609C35.4288 33.059 35.4288 33.8575 35.4288 34.6673C35.3592 34.6673 35.2814 34.6673 35.1868 34.6673C35.1799 34.5983 35.1729 34.5281 35.1635 34.4442Z' fill='%235D3976'/%3E%3Cpath d='M90.7411 32.2735C90.828 32.2562 90.907 32.2522 90.9944 32.2477C91.0072 32.3509 91.0181 32.4384 91.0325 32.5542C91.0802 32.5055 91.1115 32.4747 91.1416 32.4427C91.3421 32.2288 91.5914 32.1747 91.8738 32.2375C92.1517 32.2993 92.2866 32.4913 92.3455 32.7434C92.3659 32.831 92.3751 32.9227 92.3756 33.0126C92.3785 33.5313 92.3774 34.05 92.377 34.5687C92.377 34.5979 92.3719 34.6272 92.3682 34.6669C92.2772 34.6669 92.1935 34.6669 92.0936 34.6669C92.0908 34.6086 92.0855 34.5504 92.0854 34.4922C92.0847 34.0278 92.0854 33.5634 92.0846 33.099C92.0844 33.0267 92.0848 32.9537 92.0746 32.8824C92.0504 32.713 91.9877 32.5636 91.8008 32.5069C91.6021 32.4467 91.4161 32.474 91.2621 32.617C91.0991 32.7683 91.0424 32.9627 91.042 33.1755C91.0414 33.6098 91.0416 34.044 91.0415 34.4782C91.0415 34.5373 91.0415 34.5964 91.0415 34.6667C90.9415 34.6667 90.8572 34.6667 90.7636 34.6667C90.7582 34.6406 90.7475 34.6124 90.7473 34.5841C90.742 33.8183 90.7376 33.0525 90.7411 32.2735Z' fill='%235D3976'/%3E%3Cpath d='M48.7044 39.8826C48.7662 39.634 48.7219 39.5164 48.5228 39.391C48.4551 39.3483 48.3812 39.3149 48.3103 39.2769C48.2067 39.2215 48.1019 39.168 47.9999 39.1099C47.7733 38.9807 47.6702 38.788 47.6936 38.5342C47.7167 38.2843 47.8443 38.0958 48.0822 38.0011C48.2107 37.95 48.3582 37.9284 48.4983 37.9235C48.6262 37.9189 48.7556 37.9547 48.9033 37.9754C48.8921 38.0758 48.8825 38.1624 48.8711 38.266C48.8026 38.2486 48.7512 38.2318 48.6985 38.2231C48.6008 38.2071 48.5021 38.1844 48.404 38.1851C48.2133 38.1865 48.0713 38.2934 48.0248 38.4524C47.9707 38.6377 48.0247 38.7721 48.2086 38.8803C48.3897 38.9868 48.5786 39.0809 48.7584 39.1892C48.9589 39.3102 49.0575 39.4879 49.0513 39.7209C49.0413 40.1011 48.784 40.3721 48.3911 40.4001C48.1406 40.4179 47.8953 40.3926 47.6539 40.2851C47.6685 40.1907 47.6821 40.1028 47.6981 39.9997C47.7533 40.019 47.7966 40.0368 47.8413 40.0493C47.9547 40.0811 48.0671 40.1223 48.183 40.1385C48.4067 40.1696 48.5889 40.0999 48.7044 39.8826Z' fill='%235D3976'/%3E%3Cpath d='M44.7845 40.3902C44.5806 40.3261 44.4976 40.1848 44.4729 40.0059C44.4605 39.9167 44.4615 39.8253 44.4612 39.735C44.4602 39.3006 44.4607 38.8662 44.4607 38.4318C44.4607 38.3667 44.4607 38.3016 44.4607 38.2216C44.3343 38.2216 44.2239 38.2216 44.0982 38.2216C44.0982 38.1265 44.0982 38.0466 44.0982 37.954C44.215 37.9483 44.3304 37.9427 44.4584 37.9365C44.4584 37.7759 44.4584 37.6268 44.4584 37.4661C44.5538 37.4381 44.6402 37.4128 44.7492 37.3808C44.7492 37.5723 44.7492 37.7437 44.7492 37.9348C44.925 37.9348 45.0834 37.9348 45.2563 37.9348C45.2563 38.0344 45.2563 38.1143 45.2563 38.2091C45.096 38.2091 44.9421 38.2091 44.766 38.2091C44.7632 38.2804 44.7592 38.3381 44.7591 38.3958C44.7585 38.8362 44.758 39.2767 44.759 39.7171C44.7599 40.1198 44.8434 40.1882 45.2588 40.1195C45.2588 40.2018 45.2588 40.2823 45.2588 40.3728C45.1057 40.4186 44.9526 40.4133 44.7845 40.3902Z' fill='%235D3976'/%3E%3Cpath d='M81.6386 32.6798C81.9421 32.2337 82.4412 32.0951 82.9727 32.3116C82.9684 32.3972 82.9639 32.4893 82.9594 32.5802C82.8164 32.5509 82.6919 32.5107 82.5651 32.5023C82.1699 32.476 81.8873 32.6905 81.8017 33.074C81.7442 33.3316 81.7522 33.5897 81.8255 33.8436C81.9698 34.3435 82.4036 34.5468 82.9019 34.3514C82.9186 34.3449 82.9361 34.3403 82.9783 34.3267C82.9862 34.4259 82.9934 34.517 83.0003 34.6041C82.3548 34.8834 81.7997 34.5772 81.6083 34.1599C81.3832 33.6692 81.4001 33.1777 81.6386 32.6798Z' fill='%235D3976'/%3E%3Cpath d='M56.8221 34.3264C57.0905 34.4657 57.3479 34.448 57.6273 34.3187C57.6346 34.4286 57.6407 34.5203 57.6464 34.6067C57.1417 34.8332 56.4813 34.698 56.2283 34.1054C56.0392 33.6623 56.05 33.2071 56.2436 32.7669C56.4229 32.3593 56.8203 32.1618 57.2989 32.222C57.4026 32.2351 57.5038 32.2665 57.6082 32.29C57.6082 32.3973 57.6082 32.4915 57.6082 32.5793C57.454 32.5512 57.3112 32.5083 57.1667 32.5022C56.8503 32.4888 56.6053 32.6439 56.4999 32.9297C56.3623 33.303 56.3768 33.6796 56.5571 34.0366C56.6118 34.1447 56.7242 34.2255 56.8221 34.3264Z' fill='%235D3976'/%3E%3Cpath d='M36.9337 32.4815C36.767 32.5042 36.6069 32.5126 36.4385 32.5214C36.4338 32.5645 36.4255 32.6053 36.4255 32.6461C36.4249 33.116 36.4253 33.5859 36.4264 34.0557C36.4266 34.1098 36.4286 34.1645 36.4376 34.2177C36.4666 34.3889 36.5528 34.4561 36.7335 34.4474C36.7944 34.4445 36.8548 34.431 36.9296 34.4203C36.9296 34.5069 36.9296 34.5872 36.9296 34.6715C36.7826 34.7219 36.6335 34.7221 36.4864 34.6964C36.3081 34.6654 36.2026 34.5492 36.1626 34.384C36.1402 34.2913 36.133 34.1933 36.1324 34.0976C36.1294 33.6398 36.131 33.182 36.131 32.7242C36.131 32.6592 36.131 32.5943 36.131 32.5149C36.0004 32.5149 35.8902 32.5149 35.7659 32.5149C35.7659 32.4268 35.7659 32.3524 35.7659 32.2562C35.876 32.2562 35.9905 32.2562 36.1263 32.2562C36.1263 32.0826 36.1263 31.9294 36.1263 31.7669C36.2299 31.7372 36.3162 31.7124 36.4233 31.6816C36.4233 31.8759 36.4233 32.0485 36.4233 32.2407C36.5967 32.2407 36.7551 32.2407 36.9403 32.2407C36.9403 32.3288 36.9403 32.398 36.9337 32.4815Z' fill='%235D3976'/%3E%3Cpath d='M93.073 33.6625C93.073 33.2724 93.073 32.9004 93.073 32.5139C92.9425 32.5139 92.8324 32.5139 92.7089 32.5139C92.7089 32.4249 92.7089 32.3504 92.7089 32.2533C92.8231 32.2533 92.9377 32.2533 93.0672 32.2533C93.0672 32.0837 93.0672 31.9352 93.0672 31.7739C93.1633 31.7429 93.2494 31.7152 93.3624 31.6788C93.3624 31.8735 93.3624 32.0494 93.3624 32.2445C93.5431 32.2445 93.7019 32.2445 93.873 32.2445C93.873 32.3382 93.873 32.4125 93.873 32.5063C93.7117 32.5063 93.5528 32.5063 93.3835 32.5063C93.3769 32.5701 93.3683 32.616 93.3682 32.662C93.3673 33.1261 93.366 33.5903 93.3684 34.0545C93.3703 34.406 93.4686 34.4835 93.8233 34.423C93.8347 34.421 93.8472 34.4252 93.8726 34.428C93.8726 34.5069 93.8726 34.5874 93.8726 34.6945C93.7282 34.697 93.5852 34.7144 93.4464 34.6983C93.2512 34.6756 93.1328 34.5483 93.102 34.3654C93.0771 34.2179 93.0801 34.0658 93.0736 33.9157C93.0702 33.8374 93.073 33.759 93.073 33.6625Z' fill='%235D3976'/%3E%3Cpath d='M68.5769 40.0352C68.5769 40.1541 68.5769 40.2552 68.5769 40.3627C68.465 40.3627 68.3742 40.3627 68.2749 40.3627C68.2749 39.2623 68.2749 38.1713 68.2749 37.0696C68.3714 37.0696 68.4623 37.0696 68.5769 37.0696C68.5769 38.0535 68.5769 39.0354 68.5769 40.0352Z' fill='%235D3976'/%3E%3Cpath d='M36.4541 39.3125C36.4541 38.8549 36.4541 38.4154 36.4541 37.9611C36.5214 37.9611 36.6037 37.9611 36.701 37.9611C36.7089 38.0653 36.7165 38.1661 36.7252 38.2805C36.8246 38.1857 36.9102 38.0876 37.0128 38.0106C37.1188 37.9309 37.2505 37.9126 37.3964 37.9258C37.3964 38.0169 37.3964 38.1045 37.3964 38.204C37.341 38.2118 37.2875 38.2195 37.2339 38.2269C36.9537 38.2659 36.7988 38.4137 36.7606 38.6845C36.7506 38.7559 36.7501 38.8289 36.75 38.9011C36.749 39.3234 36.7495 39.7457 36.7494 40.1679C36.7494 40.2279 36.7494 40.2879 36.7494 40.3613C36.6505 40.3613 36.5609 40.3613 36.4541 40.3613C36.4541 40.0153 36.4541 39.6729 36.4541 39.3125Z' fill='%235D3976'/%3E%3Cpath d='M39.7823 34.0608C39.7823 34.2707 39.7823 34.4625 39.7823 34.666C39.6831 34.666 39.599 34.666 39.4913 34.666C39.4913 33.8706 39.4913 33.0726 39.4913 32.2614C39.5581 32.2614 39.6355 32.2614 39.7381 32.2614C39.7455 32.3586 39.7533 32.4618 39.7611 32.5649C39.936 32.349 40.1329 32.2024 40.4353 32.2196C40.4353 32.314 40.4353 32.4021 40.4353 32.4993C40.3763 32.5093 40.3161 32.5192 40.256 32.5298C39.9573 32.5821 39.8075 32.7357 39.7885 33.0305C39.7765 33.2166 39.7833 33.404 39.7824 33.5908C39.7817 33.7414 39.7823 33.8921 39.7823 34.0608Z' fill='%235D3976'/%3E%3Cpath d='M65.4202 33.3004C65.4202 32.5671 65.4202 31.8519 65.4202 31.1258C65.5159 31.1258 65.5944 31.1258 65.6745 31.1258C65.7155 31.2509 65.7345 34.1608 65.6952 34.6638C65.6136 34.6638 65.5307 34.6638 65.4202 34.6638C65.4202 34.2163 65.4202 33.7674 65.4202 33.3004Z' fill='%235D3976'/%3E%3Cpath d='M58.0679 32.25C58.146 32.2491 58.2075 32.2491 58.2812 32.2491C58.2812 33.0593 58.2812 33.8575 58.2812 34.6673C58.235 34.6709 58.1875 34.6773 58.14 34.6777C58.0979 34.678 58.0557 34.6716 58.0064 34.6677C58.0021 34.6196 57.9954 34.5786 57.9954 34.5376C57.9948 33.8266 57.9944 33.1156 57.9963 32.4047C57.9964 32.3503 57.9664 32.2795 58.0679 32.25Z' fill='%235D3976'/%3E%3Cpath d='M80.6965 33.3366C80.6965 32.9698 80.6965 32.6211 80.6965 32.2607C80.7983 32.2607 80.887 32.2607 80.9855 32.2607C80.9855 33.0664 80.9855 33.8645 80.9855 34.6705C80.8898 34.6705 80.8046 34.6705 80.6964 34.6705C80.6964 34.2296 80.6964 33.7921 80.6965 33.3366Z' fill='%235D3976'/%3E%3Cpath d='M41.088 32.5784C41.088 33.282 41.088 33.9678 41.088 34.6659C40.9895 34.6659 40.9058 34.6659 40.8085 34.6659C40.8085 33.8702 40.8085 33.0726 40.8085 32.2618C40.8925 32.2618 40.9762 32.2618 41.088 32.2618C41.088 32.3606 41.088 32.4606 41.088 32.5784Z' fill='%235D3976'/%3E%3Cpath d='M66.4002 40.8305C66.3783 40.8947 66.3603 40.9449 66.3406 40.9998C66.2487 40.9998 66.1642 40.9998 66.0524 40.9998C66.1317 40.6463 66.2087 40.3032 66.2874 39.952C66.4084 39.952 66.5173 39.952 66.649 39.952C66.5853 40.2489 66.4807 40.5292 66.4002 40.8305Z' fill='%235D3976'/%3E%3Cpath d='M61.0095 36.9131C61.1024 36.9125 61.181 36.9125 61.2922 36.9125C61.1347 37.1386 60.9982 37.3363 60.8596 37.5327C60.7866 37.6362 60.6854 37.5827 60.5628 37.5844C60.693 37.3568 60.8107 37.1492 60.9317 36.9434C60.9412 36.9271 60.9734 36.9233 61.0095 36.9131Z' fill='%235D3976'/%3E%3Cpath d='M72.1024 39.9049C72.1801 39.9049 72.2411 39.9049 72.3124 39.9049C72.3124 40.0643 72.3124 40.2061 72.3124 40.3616C72.1939 40.3616 72.0735 40.3616 71.9398 40.3616C71.9083 40.2182 71.9223 40.0725 71.933 39.9161C71.9897 39.9119 72.0377 39.9084 72.1024 39.9049Z' fill='%235D3976'/%3E%3Cpath d='M69.271 40.0812C69.274 40.0188 69.2771 39.9723 69.2808 39.9166C69.4108 39.9166 69.5303 39.9166 69.6576 39.9166C69.6576 40.0692 69.6576 40.2108 69.6576 40.3635C69.5344 40.3635 69.4143 40.3635 69.271 40.3635C69.271 40.2722 69.271 40.1846 69.271 40.0812Z' fill='%235D3976'/%3E%3Cpath d='M41.1163 31.6774C41.0049 31.7036 40.8977 31.7149 40.7757 31.7278C40.7757 31.5733 40.7757 31.4401 40.7757 31.2932C40.8816 31.2932 40.9888 31.2932 41.1203 31.2932C41.1203 31.4164 41.1203 31.5395 41.1163 31.6774Z' fill='%235D3976'/%3E%3Cpath d='M58.1384 31.2805C58.2033 31.2828 58.2516 31.2851 58.3107 31.2879C58.3107 31.4315 58.3107 31.5659 58.3107 31.7085C58.2022 31.7085 58.0984 31.7085 57.9805 31.7085C57.9805 31.5741 57.9805 31.4403 57.9805 31.2929C58.028 31.2887 58.0749 31.2846 58.1384 31.2805Z' fill='%235D3976'/%3E%3Cpath d='M80.8209 31.2806C80.8919 31.2806 80.9465 31.2806 81.0119 31.2806C81.0119 31.4301 81.0119 31.5646 81.0119 31.7071C80.8977 31.7071 80.7895 31.7071 80.676 31.7071C80.676 31.5669 80.676 31.4364 80.676 31.2962C80.722 31.2906 80.7632 31.2856 80.8209 31.2806Z' fill='%235D3976'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2755_3177'%3E%3Crect width='100' height='50' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_2755_3177'%3E%3Crect width='93' height='31' fill='white' transform='translate(3 10)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");}

@media screen and (max-width: 991px) {
	.bottom-footer-column.bottom-footer-column-left small {font-size: 12px;}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	#footer .newsletter-footer-form-column-right button {padding: 16px 36px 15px 35px;}
	#footer .newsletter-footer-form-column-left input[type="email"] { padding: 17px 15px 15px; }
}



@media screen and (max-width: 767px) {
	#footer .newsletter-footer-form-column-right button{padding: 17px 16px 15px;}
	#footer .newsletter-footer-form-column-left input[type="email"] {padding: 16px 12px 14px;}
}

/*
 *
 * Wishlist
 *
*/
.wishlist .empty-notice-desc .secondary-subtitle{font-size: 20px;font-weight: 600;}

/*
 *
 * MiniCart
 *
*/
#rdc-mini-cart .productMask:before {background-color: unset;}
#rdc-mini-cart .rdc-wrapper-popup-header .subtitle{font-size: 15px;line-height: 160%;}
#rdc-mini-cart .rdc-icon-close{background-size: 30px;}
#rdc-mini-cart .rdc-icon-circle{background-color: var(--color-white);}
#rdc-mini-cart .mfp-close{right: 18px;top: 18px;}
#rdc-mini-cart .rdc-wrapper-popup-footer .wrapper-free-shipping{background-color: #F6FFED !important;}
#rdc-mini-cart .rdc-wrapper-popup-footer .wrapper-free-shipping p{text-transform: uppercase;color: var(--color-success) !important;font-weight: 400;padding-left: 0;font-size: 14px;line-height: 160%;}
#rdc-mini-cart .button.btn-cart{border-color: var(--color-dark);background-color: var(--color-dark);}
#rdc-mini-cart .button.btn-cart:hover{border-color: var(--color-theme);background-color: transparent;color: var(--color-dark);}
#rdc-mini-cart .price .old{color: var(--color-black);}


/*
 *
 * MyAccount
 *
*/

.account.account-landing h1, .account.account-landing .secondary-title.secondary-title-fixed-fontsize{font-size: 22px;}
body .account.account-landing .list-nav-title.list-nav-title-fixed-fontsize{font-size: 15px;line-height: 160%;font-family: var(--base-fontfamily);font-weight: 600 !important;}

body .account:not(.account-landing) h1, body .account:not(.account-landing) .secondary-title.secondary-title-fixed-fontsize{font-size: 22px;}
body #main.account:not(.account-landing) .list-nav-title.list-nav-title-fixed-fontsize{font-size: 15px;}
body .account, body .account p, body .account .paragraph{font-family: var(--base-fontfamily) !important;font-weight: 300;font-size: 13px;line-height: 154%;color: var(--color-black);}

body .account .bottom-form .required-notice{color: var(--color-gray);}

@media screen and (min-width: 768px){
	.account .ac-lg-list-wrap {border: 1px solid var(--color-background);background-color: var(--color-background);}
	.account .rdc-header-subtitle{padding-top: 4px !important;}
}
@media screen and (max-width: 767px){
	body .account.account-landing .list-nav-title.list-nav-title-fixed-fontsize{font-size: 14px;}
}



.account .form-field input{border-radius: 4px;border: 1px solid var(--color-lines);padding: 8px 14px;min-height: 40px;}
.account .bottom-form .changeSettings button{padding: 11px 41px 12px;background-color: var(--color-dark);border:1px solid var(--color-dark);font-weight: 600;font-family: -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;}
.account .bottom-form .changeSettings button:hover{color:var(--color-dark);border: 1px solid var(--color-dark);}
.account .bottom-form .changeSettings .special-button{text-transform: none;color: var(--color-linkaccount);text-decoration: underline;}
.account .bottom-form .changeSettings .special-button:hover{text-decoration: none;}
body .account .wrapper-account{max-width: calc(1440px + var(--container-padding) * 2);}/*1440px*/


/* --- left menu --- */
.account .account-menu{border-width: 0;}
.account .account-menu li.sel a{background-color: var(--color-white);color: var(--color-dark);}
.account .account-menu li a{border:none;padding: 8px 0 8px;font-weight: 600;font-size: 15px;color: var(--color-gray);text-transform: none;}
.account .account-menu li a:hover{color:var(--color-dark);}

/* --- 		     --- */

@media screen and (max-width: 991px){
	.account .ac-lg-list-wrap{background-color: var(--color-background);border-color: var(--color-background);min-height: 74px;}
	.account .rdc-header-subtitle{padding-top: 0px !important;}
	.account.account-landing h1, .account.account-landing .secondary-title.secondary-title-fixed-fontsize{font-size: 20px !important;line-height: 155%;}
}

/*
 *
 * Product List
 *
*/

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

body .magic-checkbox+label:before, body .magic-checkbox+span,
body .magic-radio+label:before, body .magic-radio+span { border-color: var(--color-lines); }

.magic-checkbox+label:after, .magic-checkbox+span:after {
    box-sizing: unset;
    width: 18px;
    border: unset;
    height: 18px;
    background-size: 18px;
    left: 2px;
    transform: unset;
	top: calc(50% - 9px);
	filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(25%) hue-rotate(66deg) brightness(91%) contrast(105%);
	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 d='M7.3351 11.6308L4.39681 8.64672C4.28694 8.53514 4.15195 8.47536 3.99185 8.46739C3.83175 8.45942 3.68892 8.5192 3.56335 8.64672C3.43778 8.77425 3.375 8.91532 3.375 9.06994C3.375 9.22457 3.43778 9.36564 3.56335 9.49316L6.66998 12.647C6.8599 12.8407 7.08161 12.9375 7.3351 12.9375C7.58859 12.9375 7.81029 12.8407 8.00021 12.647L14.4477 6.09904C14.5576 5.98745 14.6165 5.85037 14.6243 5.68777C14.6322 5.52518 14.5733 5.38052 14.4477 5.25379C14.3222 5.12707 14.1833 5.0633 14.031 5.06251C13.8787 5.06171 13.7402 5.12547 13.6154 5.25379L7.3351 11.6308Z' fill='black'/%3e%3c/svg%3e ");
}
article.product-item .rdc-product-item-variants-layout-1 .rdc-variants-promo .price p{font-size: 9px;font-weight: 400;}
#rdc-list-total-results small{font-size: 13px;color: var(--color-black);}
#rdc-list-title.title-results .secondary-title{font-weight: 600;color: var(--color-theme);font-size: 32px;}
#rdc-list-total-results.title-results-mobile .secondary-title{font-weight: 600;font-size: 22px;text-align: center;margin-bottom: 5px;}

.rdc-product-item-variants .rdc-product-item-actions .btn{padding: 0px 20px 0px;line-height: normal;min-height: 38px;}

p.filterbyexp{font-size: 15px;font-weight: 600;}
.bottom-filters span.link{color: var(--color-link);}

@media screen and (min-width: 1200px){
	#rdc-productlist-area-b,.container-products{padding-top: 41px;}
}
@media screen and (max-width: 1199px){
	#rdc-list-title-mobile .description-content, #rdc-list-title-mobile .description-content-full {line-height: 154% ;}
}

@media screen and (max-width: 767px){
	body .container-products .section-products .column{padding: 20px 4px 0;}
	body .container-products .section-products .column.first-line{padding-top: 0;}
	#rdc-list-title-mobile .filter-title-mobile p{font-size: 22px;line-height: 172%;}
}

/*
 *
 * Filters
 *
*/

.count-filters{color: var(--color-theme);margin-left: 5px;}
.bottom-filters span.link{border: 0;text-decoration: underline !important;padding: 0;}
.bottom-filters span.link:hover{text-decoration: none !important;}

@media screen and (max-width: 1199px){
	.header-popup-mobile-filters .desc span.desc-text{font-size: 14px;color:var(--color-dark);font-weight: 600;}
	.filters-container .header-popup-mobile-filters{box-shadow: unset;border-top: 1px solid var(--color-dark);height: 55px;}
	.filters-container .header-popup-mobile-filters .desc{padding: 0 50px 0 0px;}
	.desc .total-filter-active-top{font-size: 14px;font-weight: 600;color: var(--color-theme);padding-left: 4px;}
	.desc .total-filter-active-top span{display: none;}
	.filters-container .filters .box-filter > p{padding: 10px 30px 10px 0px;}
	.filters .box-filter .title-filter span {font-size: 15px;font-weight: 600;line-height: 160%;}
	.filters .box-filter .title-filter span.order-filter-active{color: var(--color-theme);padding-left: 8px;}
	.filters-container .header-popup-mobile-filters .back-popup-filters .rdc-icon-svg {width: 32px;height: 32px;background-size: 20px;background-color: var(--color-background);border-radius: 30px;}
	.filters .box-filter .title-filter span.total-filter-active span{display: none;}
	.filters .box-filter .title-filter span.total-filter-active{color: var(--color-theme);padding-left: 6px;}
	.filters-container .filters .checkbox .check{width: 22px; height: 22px;min-width: 22px;min-height: 22px;border-radius: 4px;}
	.filters-container .filters .checkbox .check::after{width: 100%;height: 100%;border: 0;background: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5324 5.6713L7.17425 13.3941C7.10958 13.4619 7.02192 13.5 6.93051 13.5C6.83911 13.5 6.75145 13.4619 6.68677 13.3941L3.46757 10.0154C3.40665 9.94677 3.37348 9.856 3.37505 9.76222C3.37663 9.66843 3.41283 9.57895 3.47602 9.51262C3.53922 9.4463 3.62447 9.40831 3.71383 9.40665C3.80319 9.405 3.88967 9.43981 3.95505 9.50375L6.93051 12.6261L14.0449 5.15966C14.1103 5.09571 14.1968 5.0609 14.2862 5.06256C14.3755 5.06421 14.4608 5.1022 14.524 5.16853C14.5872 5.23486 14.6234 5.32434 14.6249 5.41812C14.6265 5.51191 14.5934 5.60267 14.5324 5.6713Z' fill='%23333333'/%3E%3C/svg%3E%0A") center/100% no-repeat;}
	.filters-container .bottom-filters{padding: 14px 20px;display: flex;flex-direction: column-reverse;background-color: var(--color-background);border-top: 1px solid var(--color-background);}
	.filters-container .filters{margin-bottom: 11px;}
	.bottom-filters .cell-clear-filters .link{font-weight: 600;text-transform: uppercase;}
	.bottom-filters .cell-clear-filters{padding-bottom: 14px;}
	/*.bottom-filters .cell-apply-filters-mobile{padding-bottom: 13px;}*/
	.bottom-filters .cell-apply-filters-mobile a.button{padding: 11px 20px 12px;}
	.filters .dis-table.active .check{border: 1px solid var(--color-black);}

	.top-filters .total-filter-active-top.rdc-button-filters-active{color: var(--color-theme);padding-left: 6px;}
	.top-filters .row .column.column-filter-order a{border: 1px solid var(--color-lines);border-radius: 8px;max-width: 233px;font-weight: 600;margin: auto;}

	.wrapper-active-filters .wrapper-active-filters-list .filters-active-item{border-radius: 6px;height: 40px;padding: 11px 40px 10px 15px;border: 1px solid var(--color-lines);}
	.wrapper-active-filters .wrapper-active-filters-list .filters-active-item::before{background-size: 100%;background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.4255 9.13725H20.4043V8.15686C20.4043 7.58483 20.1823 7.03622 19.7873 6.63173C19.3923 6.22724 18.8565 6 18.2979 6H13.7021C13.1435 6 12.6077 6.22724 12.2127 6.63173C11.8177 7.03622 11.5957 7.58483 11.5957 8.15686V9.13725H7.57447C7.42211 9.13725 7.27599 9.19923 7.16826 9.30955C7.06052 9.41986 7 9.56948 7 9.72549C7 9.8815 7.06052 10.0311 7.16826 10.1414C7.27599 10.2518 7.42211 10.3137 7.57447 10.3137H8.53191V24.6275C8.53191 24.9915 8.67314 25.3406 8.92452 25.598C9.1759 25.8554 9.51684 26 9.87234 26H22.1277C22.4832 26 22.8241 25.8554 23.0755 25.598C23.3269 25.3406 23.4681 24.9915 23.4681 24.6275V10.3137H24.4255C24.5779 10.3137 24.724 10.2518 24.8317 10.1414C24.9395 10.0311 25 9.8815 25 9.72549C25 9.56948 24.9395 9.41986 24.8317 9.30955C24.724 9.19923 24.5779 9.13725 24.4255 9.13725ZM12.7447 8.15686C12.7447 7.89685 12.8456 7.64748 13.0251 7.46362C13.2047 7.27976 13.4482 7.17647 13.7021 7.17647H18.2979C18.5518 7.17647 18.7953 7.27976 18.9749 7.46362C19.1544 7.64748 19.2553 7.89685 19.2553 8.15686V9.13725H12.7447V8.15686ZM22.3191 24.6275C22.3191 24.6795 22.299 24.7293 22.2631 24.7661C22.2272 24.8029 22.1784 24.8235 22.1277 24.8235H9.87234C9.82155 24.8235 9.77285 24.8029 9.73694 24.7661C9.70103 24.7293 9.68085 24.6795 9.68085 24.6275V10.3137H22.3191V24.6275ZM14.2766 14.4314V20.7059C14.2766 20.8619 14.2161 21.0115 14.1083 21.1218C14.0006 21.2321 13.8545 21.2941 13.7021 21.2941C13.5498 21.2941 13.4037 21.2321 13.2959 21.1218C13.1882 21.0115 13.1277 20.8619 13.1277 20.7059V14.4314C13.1277 14.2754 13.1882 14.1257 13.2959 14.0154C13.4037 13.9051 13.5498 13.8431 13.7021 13.8431C13.8545 13.8431 14.0006 13.9051 14.1083 14.0154C14.2161 14.1257 14.2766 14.2754 14.2766 14.4314ZM18.8723 14.4314V20.7059C18.8723 20.8619 18.8118 21.0115 18.7041 21.1218C18.5963 21.2321 18.4502 21.2941 18.2979 21.2941C18.1455 21.2941 17.9994 21.2321 17.8917 21.1218C17.7839 21.0115 17.7234 20.8619 17.7234 20.7059V14.4314C17.7234 14.2754 17.7839 14.1257 17.8917 14.0154C17.9994 13.9051 18.1455 13.8431 18.2979 13.8431C18.4502 13.8431 18.5963 13.9051 18.7041 14.0154C18.8118 14.1257 18.8723 14.2754 18.8723 14.4314Z' fill='black'/%3E%3C/svg%3E%0A");}
	.wrapper-active-filters .wrapper-active-filters-list{margin-left: 14px;}
	.wrapper-active-filters{margin-top: 12px !important;}

	.wrapper-pseudo-filters .rdc-wrapper-popup-header{border-bottom: unset !important;border-top: 1px solid var(--color-dark);height: 52px !important; padding-left: 15px !important;}
	.wrapper-pseudo-filters .rdc-wrapper-popup-header .list-nav-title{color: var(--color-dark);}

	.wrapper-pseudo-filters .rdc-wrapper-popup-body{display: flex;flex-direction: column;}
	.wrapper-pseudo-filters .rdc-wrapper-popup-body.slim-scrollbar{overflow-x: hidden !important;}

	#filters-popup .total-filter-active{padding-left: 5px !important}
	#filters-popup.popUp .mfp-close{top: 12px;width: 32px;height: 32px;}
	#filters-popup .wrapper-popup .wrapper-pseudo-filters .box-filter{padding: 10px 20px 10px 0px;}
	#filters-popup .wrapper-popup .wrapper-pseudo-filters .box-filter .rdc-icon-svg{right: -1px;}
	#filters-popup .wrapper-pseudo-filters .box-filter .list-nav-subtitle{font-size: 14px; line-height: 160%;}

	#filters-popup .wrapper-rotation-filters .rdc-wrapper-popup-header .list-nav-title{color: var(--color-dark);}

	#filters-bar .filters-bar-btn{border: 1px solid var(--color-lines);color: var(--color-black);font-family: var(--base-fontfamily);padding: 12px 20px 10px;position: relative;text-transform: none;font-weight: 600;}
	#filters-bar .filters-bar-btn::before{content: '';display: inline-block;vertical-align: middle;margin-right: 10px;width: 18px;height: 18px;background-position: center;background-size: 100%;background-repeat: no-repeat;background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.27142 13.4375C8.1616 13.4375 8.06956 13.3997 7.99531 13.3241C7.92157 13.2485 7.88471 13.1548 7.88471 13.043C7.88471 12.9317 7.92157 12.8382 7.99531 12.7626C8.06904 12.687 8.16108 12.6495 8.27142 12.65H9.71388C9.82371 12.65 9.91549 12.6878 9.98923 12.7634C10.063 12.839 10.1001 12.9327 10.1006 13.0445C10.1011 13.1564 10.064 13.2498 9.98923 13.3249C9.91446 13.4 9.82268 13.4375 9.71388 13.4375H8.27142ZM5.37104 9.89375C5.26121 9.89375 5.16917 9.85595 5.09492 9.78035C5.02118 9.70475 4.98432 9.61104 4.98432 9.49921C4.98432 9.38739 5.02118 9.29394 5.09492 9.21886C5.16865 9.14379 5.26069 9.10625 5.37104 9.10625H12.6143C12.7241 9.10625 12.8159 9.14405 12.8896 9.21965C12.9639 9.29525 13.001 9.38896 13.001 9.50079C13.001 9.61261 12.9639 9.70606 12.8896 9.78114C12.8154 9.85621 12.7236 9.89375 12.6143 9.89375H5.37104ZM3.19922 6.35C3.0894 6.35 2.99761 6.3122 2.92388 6.2366C2.85015 6.161 2.81302 6.06729 2.81251 5.95546C2.81199 5.84364 2.84911 5.75019 2.92388 5.67511C2.99865 5.60004 3.09043 5.5625 3.19922 5.5625H14.8008C14.9106 5.5625 15.0024 5.6003 15.0761 5.6759C15.1504 5.7515 15.1875 5.84521 15.1875 5.95704C15.1875 6.06834 15.1504 6.16179 15.0761 6.23739C15.0019 6.31299 14.9101 6.35053 14.8008 6.35H3.19922Z' fill='black'/%3e%3c/svg%3e ");}
	#filters-bar .filters-bar-btn .total-filter-active{color: var(--color-theme);}
} 

/* TABLET */
@media screen and (min-width:768px) and (max-width: 1199px){
	.wrapper-pseudo-filters .rdc-wrapper-popup-body.slim-scrollbar{max-height: 400px;}
}

@media screen and (max-width: 767px){
	.filters-bar-column.rdc-product-list-view{display: none !important;}
}
/*
 *
 * WhishList
 *
*/
.wishlist article.product-item button.btn2{background-color: var(--color-theme);border: 1px solid var(--color-theme);color: var(--color-white);padding: 9px 20px 10px;}
.wishlist article.product-item button.btn2:hover{background-color: var(--color-white);color: var(--color-theme);}

#share-wish .rdc-icon-social {filter: invert(13%) sepia(84%) saturate(1489%) hue-rotate(259deg) brightness(91%) contrast(91%);}
#main.wishlist .rdc-tooltip-arrow {box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;border: none;}
#main.wishlist .rdc-tooltip{border: none;border-radius: 6px;filter: drop-shadow(0px 4px 12px rgba(51, 51, 51, 0.50));}
#main.wishlist #share-wish .wrapper-form{padding-top: 15px;}
#main.wishlist div.wrapper-form .form-field{margin-bottom: 14px;}
#main.wishlist .label-title{padding-bottom: 4px;}
#main.wishlist .wrapper-form .form-field:not(:first-child) .label-title{padding-left: 5px;}
#main.wishlist #share-wish .share-icons{margin-top: 7px;}


/*
 *
 * Menu Mobile
 *
*/
body.menu-mobile-opened #header-container .rdc-icon-svg.rdc-icon-menu{width: 24px;height: 24px;background-size: 23px;margin-top: 1px;background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.7552 24.668C25.8307 24.7384 25.8914 24.8233 25.9334 24.9177C25.9755 25.0121 25.9981 25.1139 25.9999 25.2172C26.0017 25.3205 25.9827 25.4231 25.944 25.5189C25.9053 25.6146 25.8477 25.7017 25.7747 25.7747C25.7017 25.8477 25.6146 25.9053 25.5189 25.944C25.4231 25.9827 25.3205 26.0017 25.2172 25.9999C25.1139 25.9981 25.0121 25.9755 24.9177 25.9334C24.8233 25.8914 24.7384 25.8307 24.668 25.7552L15.9808 17.0693L7.29363 25.7552C7.14781 25.8911 6.95494 25.965 6.75566 25.9615C6.55638 25.958 6.36624 25.8773 6.2253 25.7363C6.08437 25.5954 6.00364 25.4052 6.00012 25.206C5.9966 25.0067 6.07058 24.8138 6.20645 24.668L14.8924 15.9808L6.20645 7.29363C6.07058 7.14781 5.9966 6.95494 6.00012 6.75566C6.00364 6.55638 6.08437 6.36624 6.2253 6.2253C6.36624 6.08437 6.55638 6.00364 6.75566 6.00012C6.95494 5.9966 7.14781 6.07058 7.29363 6.20645L15.9808 14.8924L24.668 6.20645C24.8138 6.07058 25.0067 5.9966 25.206 6.00012C25.4052 6.00364 25.5954 6.08437 25.7363 6.2253C25.8773 6.36624 25.958 6.55638 25.9615 6.75566C25.965 6.95494 25.8911 7.14781 25.7552 7.29363L17.0693 15.9808L25.7552 24.668Z' fill='black'/%3E%3C/svg%3E%0A");}
#mobile-main-menu .mobile-menu-group.rdc-menu_mobile-level-1 .mobile-nav-wrapper-item a{text-transform: uppercase;color: var(--color-dark);font-size: 15px; font-weight: 600;}
#mobile-main-menu .mobile-menu-group.rdc-menu_mobile-level-1 .mobile-nav-wrapper-item a .rdc-icon-svg.rdc-icon-arrowright{right: 16px;}
#mobile-holder .rdc-icon-svg.rdc-icon-arrowright,
#mobile-holder .rdc-icon-svg.rdc-icon-arrowdown { width: 18px;height: 18px; }
#mobile-main-menu .mobile-menu-group.rdc-menu_mobile-level-1 .mobile-nav-wrapper-item a.featured{color: var(--color-error);}
#mobile-main-menu .mobile-menu-group.rdc-menu_mobile-level-1 .mobile-nav-wrapper-item a.featured .rdc-icon-arrowright{filter: brightness(0) saturate(100%) invert(35%) sepia(79%) saturate(6492%) hue-rotate(344deg) brightness(94%) contrast(81%);}
#menu #mobile-holder .rdc-menu_mobile-level-1 a{padding: 15px 20px 14px 22px;}
#menu #mobile-inst-menu a{padding: 9px 20px;}
#mobile-inst-menu .mobile-inst-menu-exp{margin-bottom: 1px;}
#mobile-inst-menu{padding: 11px 0 !important;}
#mobile-inst-menu.border_color{border-color: var(--color-background);}
#menu #mobile-holder .return a .rdc-icon-svg{width: 32px;height: 32px;background-color: var(--color-background);border-radius: 100%;background-size: 20px;left: 14px;top: calc(50% - 2px);}
#menu #mobile-holder .return a span{text-transform: uppercase;color: var(--color-dark);font-size: 15px;line-height: 160%;font-weight: 600;}
#menu  #mobile-holder .return a{padding-left: 62px;padding-top: 13px;}
#mobile-holder .mobile-menu-sub-scroll a.mobile-nav-item-2{color: var(--color-dark);font-size: 14px;line-height: 166%;padding: 8px 20px;font-weight: 600;}
#mobile-holder .mobile-menu-sub-scroll a.mobile-nav-item-2.featured { color: var( --color-error); }
#mobile-holder .mobile-menu-sub-scroll .mobile-nav-item-4 span{font-size: 13px;line-height: 180%;}
#menu .mobile-nav-item-2 .rdc-icon-svg{right: 17px;filter: invert(19%) sepia(42%) saturate(1408%) hue-rotate(244deg) brightness(92%) contrast(99%);}
#menu #mobile-main-menu-sub .mobile-nav-wrapper-item{padding-left: 46px;}
#menu #mobile-holder a.mobile-nav-item-4 {padding-top: 4px;padding-bottom: 4px;padding-left: 21px;}
#menu .mobile-menu-group.rdc-menu_mobile-level-3{padding-top: 4px;padding-bottom: 3px;}

/*
 *
 * Detalhe
 *
*/

#size-guide-5456 .size-guide-link span{font-weight: 400;line-height: 154%;color: var(--color-link);font-family: var(--base-fontfamily);}
.rdc-product-accordion .accordion-head > .list-nav-title{font-size: 13px;line-height: 154%;font-weight: 500;}



/*
 *
 * bloco blogs
 *
*/
body .container-blocks .blog:not(.reference) .flags .flag {
	background-color: var(--color-theme);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

body .container-blocks .blog:not(.reference) article .desc .item-title { font-weight: 600; }
@media screen and (min-width: 1200px){
	body .container-blocks .blog:not(.reference) .desc { padding-top: 21px;padding-left: 18px; }
	body .container-blocks .blog:not(.reference) article .desc .item-title { padding-bottom: 12px; }
}

@media screen and (max-width: 1199px){
	body .container-blocks .blog:not(.reference) .desc { padding-top: 9px;padding-left: 4px;display: flex;flex-direction: column;justify-content: space-between; }
	body .container-blocks .blog:not(.reference) article .desc .item-title { padding-bottom: 9px;line-height: 154%; }
}

@media screen and (min-width: 768px) and (max-width: 1199px){
	body .container-blocks .blog:not(.reference) .desc { min-height: 85px; }
}

@media screen and (max-width: 767px){
	body .container-blocks .blog:not(.reference) .desc {min-height: 95px; }
}

/*
 *
 * Product item Blocos
 *
*/

.container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos {
    border: 1px solid var(--color-lines);
    border-radius: 2px;
}

.container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos .box-images figure.loader, .container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos .box-images figure.loader .primary_image {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}