:root {
	--light-grey: #F4F5F5;
	--mid-grey: #5A5A5B;
	--baby-pink: #FABDCB;
	--navy: #12265A;
	--green: #D0F277;
	--white: #FFFFFF;
	--border-radius-s: 10px;
	--border-radius-l: 20px;
	--blur: blur(4px);
}

.product_main_section {
	& .product-media-container {
		& .product__modal-opener {
			padding: 50px 30px;
			background: rgba(255, 255, 255, 0.15);
			border-radius: var(--border-radius-s);
		}
	}

	& .product__info-wrapper {
		text-align: left;
	}

	& .product_top {
		display: grid;
		grid-template-columns: 1fr 500px;
		justify-content: space-between;
		gap: 30px;
	}

	& .product__title h1 {
		color: var(--navy);
		font-family: Beachday;
		letter-spacing: 0.5px;
		font-weight: 400;
		font-size: clamp(24px, 2vw, 32px);
	}

	& .product__info-container {
		background: var(--white);
		border-radius: var(--border-radius-s);
		padding: 20px 40px;
		max-width: 500px;
	}

	& .quantity__label,
	& .product__description,
	& .product__tax,
	& .product_pack_size {
		color: var(--navy);
	}

	& .product_pack_size {
		display: block;
		font-size: 18px;
		font-weight: 700;
		color: var(--navy);
		margin-bottom: 10px;
	}

	& .product__description {
		margin: 0 0 20px;
	}

	& .product_inventory {
		font-size: 15px;
		font-weight: 700;
		line-height: 20px;
		letter-spacing: 0.5px;
		margin-bottom: 20px;

		> span {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 5px;
			padding: 15px;
			border-radius: var(--border-radius-s);

			&:before {
				content: '';
				display: inline-block;
				height: 10px;
				aspect-ratio: 1 / 1;
				background: center / contain no-repeat;
			}
		}

		& .product_in_stock {
			background: #5AC230;
			color: var(--white);

			&:before {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 10'%3E%3Cpath fill='%23FFFFFF' fill-rule='evenodd' d='M8.5.8c.3-.3.8-.4 1.2-.1.3.3.4.8.1 1.1l-6 7.4c-.2.4-.8.4-1.2 0L.2 7a.8.8 0 0 1 0-1.2c.4-.3.9-.3 1.2 0l1.7 1.7L8.5.8Z' clip-rule='evenodd'/%3E%3C/svg%3E");
			}
		}

		& .product_not_in_stock {
			background: var(--Red);
			color: var(--white);

			&:before {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 10'%3E%3Cpath fill='%23FFFFFF' d='M0 9c0-.3.1-.6.4-.8l3-3.3L.6 2C.4 1.7.2 1.4.2 1 .2.5.7 0 1.4 0c.5 0 .8.2 1.2.5L5 3.4 7.5.6C7.8.2 8 0 8.7 0s1.1.4 1.1 1c0 .3 0 .6-.3.8l-3 3 3.1 3.3c.2.2.4.5.4.8 0 .6-.5 1.1-1.2 1.1-.6 0-.9-.2-1.2-.5L5 6.5l-2.7 3c-.3.3-.6.5-1.2.5C.6 10 0 9.6 0 9Z'/%3E%3C/svg%3E");
			}
		}
	}

	& .product_bundle_contents {
		padding: 10px 20px 10px 10px;
		background: var(--light-grey);
		border-radius: var(--border-radius-s);
		margin: 0 0 20px;

		ul {
			li {
				color: var(--mid-grey);

				a {
					color: var(--mid-grey);
					font-weight: 400;
					font-size: 16px;
					line-height: 20px;

					span {
						text-transform: capitalize;
					}
				}

				&:not(:last-of-type) {
					margin-bottom: 5px;
				}
			}
		}
	}

	& .trade_button {
		margin: 20px 0 0;
	}

	& .product_form_container {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-end;
		justify-content: space-between;
		gap: 40px;
		border-top: 1px solid #D9D9D9;
		padding-top: 20px;

		& .variation_form {
			display: none;
		}
	}

	& .product-form__quantity {
		display: flex;
		flex-direction: column;
		justify-content: space-between;

		& .form__label {
			margin-bottom: 5px;
		}

		& .quantity {
			height: 55px;
			font-size: 18px;

			&:after {
				border: 1px solid #D9D9D9;
				box-shadow: none;
			}
		}

		& .quantity__rules {
			display: none;
		}
	}

	& .product_buy_container {
		align-items: flex-end;
		gap: 10px;
		width: 100%;

		& .price__container {
			color: var(--navy);
			font-size: 22px;

			& .price__regular {
				font-weight: 700;
			}
		}

		& .price_wrapper {
			display: flex;
			gap: 5px;
			justify-content: flex-end;

			& .price__regular {
				text-align: right;
				justify-content: flex-end;
			}
		}

		& .product-form__submit {
			margin: 0;
			min-width: 200px;
		}
	}

	& .trade_info_container {
		display: flex;
		align-items: center;
		gap: 5px;
		margin-bottom: 20px;

		&.trade_signup {
			background: #E8F8FF;
			padding: 20px;
			border-radius: var(--border-radius-s);
			color: var(--navy);
			font-size: 16px;
			display: block;
			width: 100%;

			& p {
				margin: 0 0 5px;
			}

			& ul {
				margin: 0;
				padding: 0;

				& li {
					list-style: none;
					display: flex;
					align-items: flex-start;
					gap: 10px;

					& p {
						flex: 1;
					}

					&:before {
						content: '';
						display: block;
						width: 10px;
						top: 7px;
						position: relative;
						aspect-ratio: 1 / 1;
						background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 10'%3E%3Cpath fill='%235ac230' fill-rule='evenodd' d='M8.5.8Q9 .3 9.7.7q.5.5.1 1.1l-6 7.4q-.5.6-1.2 0L.2 7a1 1 0 0 1 0-1.2q.7-.4 1.2 0l1.7 1.7z' clip-rule='evenodd'/%3E%3C/svg%3E");
					}

					&:last-of-type {
						& p {
							margin: 0;
						}
					}
				}
			}
		}

		& > div {
			flex: 1;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 10px 20px;
			border-radius: var(--border-radius-s);
			background: var(--light-grey);
			color: var(--mid-grey)
		}

		& .trade_box_label {
			font-weight: 700;
		}
	}
}

.product_extra_info {
	& .product_header {
		text-transform: uppercase;
	}

	& .product_faqs {
		display: flex;
		flex-direction: column;
		position: relative;

		.faq_item {
			background: var(--light-grey);
			border: none;
			position: relative;
			padding: 0 20px;
			z-index: 2;
			border-radius: var(--border-radius-s);

			.title {
				color: var(--navy);
				cursor: pointer;
				margin: 0;
				background: right center / 15px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 19 11'%3E%3Cpath fill='%23e1251b' fill-rule='evenodd' d='m18.6 2.5-8.2 7.6q-.9.8-1.8 0L.4 2.5Q-.3 1.7.4 1q.9-.7 1.8 0l7.3 6.6L16.8.9q.9-.7 1.8 0 .7.8 0 1.6' clip-rule='evenodd'/%3E%3C/svg%3E");
				padding: 20px 60px 20px 0;
				box-sizing: border-box;
				font-weight: 700;
				text-transform: uppercase;
			}

			.tab_inner {
				box-sizing: border-box;
				display: grid;
				grid-template-rows: 0fr;
				transition: grid-template-rows .4s, padding .4s;
				color: var(--navy);

				> .rte {
					overflow: hidden;
				}
			}

			&.active {
				.tab_inner {
					grid-template-rows: 1fr;
					padding: 0 0 20px;
				}
			}
		}
	}

	& .nutritional_values {
		& ul {
			padding: 0;
			margin: 0;
			list-style: none;
		}

		& li {
			display: flex;
			justify-content: space-between;
			border-bottom: none;
			margin-bottom: 10px;

			&:last-child {
				margin-bottom: 0;
			}
		}
	}

	& .product_usps {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 20px;
		color: var(--navy);

		& .product_usp {
			max-width: 400px;
		}

		& .product_usps_header {
			font-weight: 700;
			text-transform: uppercase;
		}
	}
}

.product__media-wrapper img {
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

@media (width < 1024px) {
	.product_main_section {
		& .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
			margin: 0;
		}

		& .slider.slider--mobile .slider__slide {
			width: 100%;
		}

		& .product__info-container {
			padding: 20px;
		}

		& .product_top {
			gap: 20px;
			grid-template-columns: repeat(2, 1fr);
		}

		& .product_form_container {
			gap: 20px;
		}

		& .product_buy_container {
			& .product-form__submit {
				min-width: 0;
			}
		}
	}

	.product_extra_info {
		& .product_usps {
			flex-wrap: wrap;
		}
	}
}

@media (max-width: 768px) {
	.product_main_section {
		& .product_top {
			grid-template-columns: 1fr;
		}
	}

	.product_main_section {
		& .product__info-container {
			max-width: unset;
		}
	}
}

.catalogue_product {
	position: relative;
	max-height: 750px;
	overflow: hidden;
	background: var(--Pink) bottom center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1166' height='500' fill='none' viewBox='0 0 1166 500'%3E%3Cg fill='%23fff' fill-opacity='.14' clip-path='url(%23a)'%3E%3Cpath d='M358.421-40.58s.185-.014.176-.138c-.005-.062-.014-.186-.2-.172-.061.005-.185.014-.176.138.005.062.014.186.138.176zM416.346-38.984c.556-.042.96-.446.985-.946-.038-.495-.446-.962-.945-.986-.494.037-.961.446-.985.945.042.557.446.962.945.987M474.266-37.45c.993-.013 1.807-.759 1.794-1.753-.013-.995-.758-1.81-1.752-1.797-.993.013-1.807.759-1.794 1.753.013.995.758 1.81 1.752 1.797M532.239-36.044c1.307.025 2.406-1.053 2.432-2.362.025-1.308-1.052-2.409-2.36-2.435-1.307-.025-2.406 1.053-2.432 2.362-.025 1.308 1.053 2.409 2.36 2.435M590.174-35.134a2.575 2.575 0 0 0 2.603-2.56 2.575 2.575 0 0 0-2.558-2.607 2.575 2.575 0 0 0-2.604 2.56 2.576 2.576 0 0 0 2.559 2.607M648.086-34.532c1.307.025 2.407-1.053 2.432-2.362.026-1.308-1.052-2.409-2.359-2.434s-2.407 1.053-2.432 2.361c-.026 1.309 1.052 2.41 2.359 2.435M706.022-34.43c.994-.013 1.808-.759 1.795-1.753-.013-.995-.759-1.81-1.752-1.797-.994.013-1.807.759-1.794 1.753.013.995.758 1.81 1.751 1.797M764.007-34.518c.556-.042.96-.446.985-.946-.038-.495-.446-.962-.945-.986-.556.042-.961.446-.985.945.042.557.445.962.945.986M821.948-34.355s.299-.147.347-.337c-.014-.186-.147-.3-.337-.348-.185.014-.3.147-.348.337.014.186.147.3.338.348M241.739 15.956s.185-.014.176-.137-.014-.186-.138-.177c-.062.005-.185.014-.176.138.005.062.014.186.138.176M299.682 17.8c.685.01 1.265-.531 1.271-1.278.01-.685-.535-1.329-1.282-1.334-.684-.011-1.327.535-1.332 1.282.051.68.53 1.267 1.277 1.273zM357.63 20.514c1.806.05 3.248-1.427 3.241-3.169.05-1.808-1.427-3.252-3.167-3.245-1.744-.055-3.248 1.428-3.241 3.17-.055 1.745 1.427 3.251 3.167 3.244M415.549 22.857c2.676.047 4.875-2.11 4.859-4.784.046-2.68-2.109-4.88-4.78-4.865-2.677-.047-4.814 2.105-4.86 4.784s2.105 4.819 4.781 4.865M473.492 24.7c3.299.062 5.96-2.565 6.021-5.867s-2.564-5.966-5.863-6.028-5.959 2.566-6.021 5.868c-.061 3.302 2.564 5.966 5.863 6.028M531.403 26.111c3.608.038 6.621-2.864 6.659-6.476.033-3.673-2.863-6.628-6.471-6.666a6.596 6.596 0 0 0-6.654 6.538 6.56 6.56 0 0 0 6.533 6.661zM589.353 27.208c3.793.024 6.982-3.017 7.006-6.814s-3.01-6.927-6.808-7.014c-3.793-.024-6.92 3.012-7.006 6.814-.024 3.797 3.01 6.927 6.808 7.014M647.326 27.804c3.732.03 6.802-2.94 6.83-6.675s-2.938-6.809-6.67-6.838-6.801 2.94-6.83 6.676c-.028 3.735 2.939 6.808 6.67 6.837M705.249 27.72c3.299.063 5.959-2.565 6.021-5.867.061-3.302-2.564-5.966-5.863-6.028s-5.96 2.566-6.021 5.868 2.564 5.966 5.863 6.028M763.214 27.385c2.676.047 4.875-2.11 4.86-4.785.046-2.678-2.109-4.88-4.781-4.865-2.676-.046-4.875 2.11-4.859 4.785-.047 2.679 2.104 4.818 4.78 4.865M821.199 26.488c1.807.05 3.249-1.428 3.242-3.17.049-1.807-1.427-3.251-3.167-3.244-1.744-.055-3.248 1.427-3.241 3.169-.055 1.746 1.427 3.252 3.166 3.245M879.113 25.472c.809 0 1.446-.608 1.447-1.416.001-.81-.606-1.448-1.414-1.449s-1.446.607-1.447 1.416.606 1.447 1.414 1.448M937.127 24.946s.185-.015.176-.138-.014-.186-.138-.177c-.062.005-.185.014-.176.138.005.062.014.186.138.177M183.063 73.523s.48-.223.462-.47c-.019-.248-.223-.481-.47-.463-.248.02-.481.223-.462.47.019.248.223.482.475.525zM241.02 76.361a2.575 2.575 0 0 0 2.603-2.56 2.576 2.576 0 0 0-2.559-2.607 2.575 2.575 0 0 0-2.603 2.56 2.576 2.576 0 0 0 2.559 2.607M298.938 79.513c2.738.042 4.994-2.182 5.035-4.922.042-2.741-2.18-5-4.918-5.042s-4.994 2.182-5.035 4.923 2.18 4.999 4.918 5.041M356.833 82.356c3.921.077 7.101-3.088 7.177-7.013.076-3.926-3.086-7.109-7.007-7.186-3.922-.077-7.101 3.088-7.177 7.013-.077 3.926 3.085 7.109 7.007 7.186M414.766 84.884c4.853.07 8.908-3.846 8.972-8.766.068-4.858-3.844-8.917-8.759-8.982-4.854-.068-8.909 3.847-8.977 8.705s3.844 8.917 8.697 8.986zM472.662 86.918a10.095 10.095 0 0 0 10.247-9.982 10.1 10.1 0 0 0-9.974-10.26 10.094 10.094 0 0 0-10.247 9.983 10.1 10.1 0 0 0 9.974 10.259M530.644 88.448c6.037.103 10.953-4.748 11.056-10.79.103-6.043-4.744-10.966-10.781-11.07-6.037-.103-11.015 4.753-11.056 10.79-.103 6.043 4.749 11.028 10.781 11.07M588.531 89.549c6.223.09 11.315-4.9 11.404-11.128s-4.896-11.327-11.118-11.417-11.315 4.9-11.404 11.128 4.896 11.327 11.118 11.417M646.491 89.96c6.037.104 11.015-4.752 11.056-10.79.103-6.043-4.744-10.965-10.781-11.069s-11.015 4.752-11.056 10.79c-.103 6.043 4.749 11.027 10.781 11.069M704.48 89.934a10.094 10.094 0 0 0 10.247-9.983 10.1 10.1 0 0 0-9.974-10.259 10.094 10.094 0 0 0-10.247 9.983 10.1 10.1 0 0 0 9.974 10.258M762.441 89.536c4.977.06 9.027-3.918 9.086-8.9a8.98 8.98 0 0 0-8.892-9.096c-4.977-.059-9.027 3.918-9.086 8.9-.059 4.981 3.915 9.036 8.896 9.158zM820.355 88.52c3.983.072 7.281-3.164 7.353-7.151s-3.161-7.29-7.14-7.3c-3.983-.072-7.282 3.163-7.292 7.146-.071 3.987 3.162 7.29 7.145 7.362zM878.369 87.185c2.862.032 5.175-2.258 5.212-5.06.032-2.865-2.256-5.18-5.056-5.218-2.862-.032-5.175 2.258-5.212 5.06-.032 2.865 2.256 5.18 5.056 5.218M936.36 85.54c1.492.012 2.768-1.204 2.779-2.698s-1.203-2.771-2.696-2.783-2.768 1.205-2.78 2.699c-.011 1.494 1.204 2.77 2.697 2.782M994.298 84.025s.481-.223.462-.47c-.019-.248-.223-.482-.47-.463s-.48.223-.462.47c.019.248.223.481.475.524zM124.359 130.719s.481-.223.462-.471-.223-.481-.47-.462-.48.223-.462.47c.019.248.223.481.47.463M182.282 133.932a2.955 2.955 0 0 0 2.956-2.836 2.957 2.957 0 0 0-2.834-2.959 2.956 2.956 0 0 0-2.956 2.837 2.956 2.956 0 0 0 2.834 2.958M240.185 137.708c3.299.062 5.96-2.566 6.021-5.868s-2.564-5.966-5.863-6.028-5.959 2.566-6.021 5.868c-.061 3.302 2.564 5.966 5.863 6.028M298.117 141.045c4.73.078 8.547-3.694 8.625-8.429.077-4.734-3.692-8.555-8.422-8.633-4.73-.079-8.547 3.694-8.624 8.428-.078 4.735 3.692 8.556 8.421 8.634M356.036 144.197c6.037.104 11.015-4.752 11.056-10.79.103-6.043-4.749-11.027-10.781-11.069-6.037-.104-10.954 4.748-11.057 10.79-.102 6.043 4.749 11.027 10.782 11.069M413.921 146.916c7.092.086 12.942-5.582 13.027-12.681s-5.579-12.955-12.671-13.041-12.941 5.582-13.026 12.681c-.086 7.099 5.578 12.955 12.67 13.041M471.879 148.945c7.776.097 14.202-6.175 14.297-13.959s-6.171-14.217-13.947-14.314c-7.777-.097-14.202 6.175-14.298 13.959-.091 7.847 6.171 14.217 13.948 14.314M529.813 150.665c8.338.116 15.168-6.559 15.283-14.905s-6.555-15.183-14.892-15.3c-8.338-.116-15.168 6.559-15.283 14.905s6.555 15.183 14.892 15.3M587.758 151.699c8.523.103 15.529-6.71 15.63-15.242s-6.706-15.545-15.229-15.647-15.529 6.71-15.631 15.242c-.101 8.531 6.707 15.545 15.23 15.647M645.722 152.173c8.338.116 15.168-6.559 15.283-14.905s-6.555-15.183-14.892-15.3-15.168 6.559-15.283 14.905 6.555 15.183 14.892 15.3M703.645 152.089c7.9.087 14.382-6.251 14.469-14.159s-6.247-14.398-14.086-14.49c-7.9-.087-14.383 6.251-14.473 14.097-.087 7.908 6.246 14.398 14.085 14.49zM761.649 151.439c7.092.087 12.941-5.582 13.026-12.681s-5.578-12.955-12.67-13.041c-7.093-.087-12.942 5.582-13.027 12.681s5.578 12.955 12.671 13.041M819.61 150.233c6.037.104 11.016-4.752 11.057-10.79.102-6.043-4.749-11.027-10.782-11.069-6.036-.104-11.015 4.752-11.056 10.79-.103 6.043 4.749 11.027 10.781 11.069M877.549 148.717c4.791.073 8.727-3.77 8.8-8.567.073-4.796-3.768-8.736-8.559-8.81-4.792-.073-8.728 3.77-8.801 8.567-.072 4.796 3.768 8.736 8.56 8.81M935.526 146.887c3.36.057 6.14-2.641 6.196-6.005s-2.64-6.147-6-6.204c-3.361-.057-6.14 2.641-6.197 6.005s2.64 6.147 6.001 6.204M993.531 144.62c1.679-.003 3.068-1.352 3.066-3.032s-1.351-3.071-3.029-3.068c-1.678.002-3.068 1.351-3.065 3.031.002 1.68 1.35 3.071 3.028 3.069M1051.51 142.79s.48-.223.46-.471-.22-.481-.47-.462a.59.59 0 0 0-.52.475c.02.248.22.481.47.462zM65.699 187.662s.185-.014.176-.138c-.01-.123-.014-.185-.138-.176-.062.005-.185.014-.176.138.005.062.014.185.138.176M123.617 190.814a2.575 2.575 0 0 0 2.603-2.561 2.576 2.576 0 0 0-2.559-2.606 2.574 2.574 0 0 0-2.603 2.561 2.576 2.576 0 0 0 2.559 2.606M181.486 194.965c3.299.062 5.96-2.566 6.021-5.868s-2.564-5.965-5.863-6.027-5.96 2.565-6.021 5.868c-.061 3.302 2.564 5.965 5.863 6.027M239.394 198.802c4.977.06 9.027-3.917 9.086-8.899s-3.915-9.037-8.897-9.158c-4.976-.06-9.027 3.917-9.086 8.899a8.98 8.98 0 0 0 8.892 9.096zM297.35 202.449c6.593.062 11.976-5.198 12.041-11.736.061-6.599-5.194-11.988-11.726-12.055-6.593-.061-11.976 5.198-12.041 11.736-.066 6.538 5.194 11.989 11.726 12.055M355.215 205.729c8.024.079 14.564-6.326 14.645-14.296.077-8.032-6.322-14.579-14.284-14.662-7.963-.082-14.569 6.265-14.645 14.297-.082 7.97 6.322 14.579 14.284 14.661M413.172 208.567c9.146.118 16.671-7.232 16.792-16.325.116-9.155-7.228-16.688-16.374-16.806-9.146-.117-16.609 7.228-16.73 16.321-.116 9.155 7.223 16.626 16.307 16.749zM471.096 210.972c10.016.115 18.235-7.91 18.41-17.94.112-10.026-7.906-18.255-17.926-18.431-10.016-.114-18.236 7.911-18.41 17.941-.113 10.025 7.906 18.254 17.926 18.43M529.03 212.692c10.577.134 19.201-8.295 19.333-18.881.133-10.587-8.294-19.283-18.87-19.417s-19.263 8.299-19.395 18.886c-.133 10.587 8.289 19.221 18.866 19.355zM586.975 213.727c10.762.12 19.562-8.447 19.68-19.219.119-10.773-8.441-19.583-19.202-19.703s-19.563 8.446-19.681 19.219c-.118 10.772 8.441 19.583 19.203 19.703M644.939 214.2c10.577.134 19.263-8.3 19.395-18.886.133-10.587-8.294-19.283-18.87-19.417s-19.201 8.294-19.395 18.886c-.133 10.587 8.289 19.221 18.866 19.355zM702.852 213.992c10.016.115 18.236-7.91 18.41-17.94.113-10.026-7.906-18.255-17.926-18.431-10.016-.114-18.235 7.911-18.41 17.941-.112 10.025 7.906 18.254 17.926 18.43M760.852 213.281c9.207.113 16.794-7.242 16.901-16.52.111-9.217-7.238-16.812-16.507-16.92-9.207-.114-16.789 7.303-16.901 16.52s7.237 16.811 16.507 16.92M818.804 211.951a14.65 14.65 0 0 0 14.821-14.435c.072-8.093-6.332-14.702-14.422-14.837a14.65 14.65 0 0 0-14.821 14.434c-.073 8.093 6.332 14.702 14.422 14.838M876.781 210.121c6.655.057 12.095-5.269 12.217-11.874.056-6.661-5.265-12.107-11.925-12.226-6.655-.057-12.095 5.269-12.213 11.935-.056 6.661 5.266 12.108 11.925 12.227zM934.744 208.105c5.162.046 9.388-4.069 9.438-9.174.044-5.168-4.067-9.399-9.229-9.444s-9.389 4.069-9.434 9.236 4.067 9.399 9.229 9.444zM992.736 205.652c3.36.057 6.14-2.641 6.196-6.005s-2.639-6.147-6-6.204-6.14 2.641-6.197 6.005 2.64 6.147 6.001 6.204M1050.71 203.013c1.5.012 2.77-1.204 2.78-2.698s-1.2-2.771-2.69-2.783c-1.5-.012-2.77 1.205-2.78 2.699s1.2 2.771 2.69 2.782M1108.7 201.245s.18-.014.17-.137c0-.062-.01-.186-.14-.177-.06.005-.18.014-.17.138 0 .062.01.186.14.176M64.948 246.825c.684.01 1.265-.531 1.27-1.278.011-.686-.535-1.329-1.281-1.335-.684-.01-1.327.536-1.333 1.283-.01.685.531 1.267 1.277 1.273zM122.841 251.285c2.738.042 4.994-2.181 5.035-4.922s-2.18-4.999-4.918-5.041-4.994 2.181-5.036 4.922 2.181 4.999 4.919 5.041M180.719 255.56c4.73.078 8.547-3.694 8.625-8.429.077-4.734-3.692-8.556-8.422-8.634s-8.547 3.695-8.624 8.429c-.078 4.734 3.692 8.556 8.421 8.634M238.651 259.706c6.593.062 11.976-5.197 12.041-11.735.061-6.6-5.194-11.989-11.726-12.055-6.593-.062-11.976 5.198-12.041 11.735-.061 6.6 5.194 11.989 11.726 12.055M296.568 263.667c8.337.117 15.167-6.559 15.283-14.904.115-8.346-6.555-15.184-14.893-15.3-8.337-.117-15.167 6.559-15.283 14.904-.115 8.346 6.555 15.184 14.893 15.3M354.448 267.133c9.83.129 17.935-7.763 18.062-17.603s-7.759-17.955-17.589-18.083-17.936 7.764-18.062 17.604 7.758 17.954 17.589 18.082M412.356 270.161c11.076.159 20.224-8.745 20.319-19.827.157-11.086-8.74-20.244-19.811-20.341-11.076-.158-20.223 8.745-20.318 19.827-.157 11.087 8.739 20.245 19.81 20.341M470.299 272.814c12.131.141 22.15-9.575 22.289-21.718s-9.569-22.173-21.7-22.314-22.15 9.575-22.284 21.78c-.139 12.143 9.569 22.173 21.7 22.314zM528.247 274.719c12.754.156 23.291-10.097 23.446-22.863.154-12.766-10.029-23.32-22.845-23.472-12.753-.156-23.291 10.097-23.445 22.863s10.091 23.316 22.844 23.472M586.192 275.754c12.939.142 23.595-10.182 23.731-23.196.14-12.952-10.176-23.62-23.181-23.819-12.939-.143-23.596 10.182-23.731 23.195-.14 12.952 10.175 23.62 23.176 23.758zM644.095 276.232c12.753.156 23.295-10.035 23.445-22.863.154-12.767-10.091-23.316-22.844-23.472s-23.291 10.097-23.446 22.863c-.154 12.766 10.091 23.315 22.845 23.472M702.055 275.834c12.131.141 22.15-9.575 22.289-21.718s-9.569-22.173-21.7-22.314-22.149 9.575-22.284 21.78c-.139 12.143 9.569 22.173 21.762 22.309zM760.031 274.813c11.199.149 20.342-8.816 20.49-20.027s-8.811-20.363-20.01-20.512-20.342 8.816-20.49 20.026 8.811 20.364 20.01 20.513M818.031 273.293c9.954.118 18.117-7.84 18.234-17.803s-7.834-18.136-17.788-18.255-18.117 7.84-18.234 17.803 7.835 18.136 17.788 18.255M875.999 271.339c8.461.107 15.348-6.635 15.459-15.042a15.25 15.25 0 0 0-15.092-15.472c-8.399-.112-15.348 6.635-15.454 15.104-.111 8.408 6.63 15.365 15.092 15.472zM934 269.01c6.722.114 12.276-5.345 12.389-12.073s-5.28-12.294-12.063-12.403c-6.721-.115-12.276 5.345-12.389 12.073S927.217 268.9 934 269.01M991.983 266.433c4.853.069 8.907-3.846 8.977-8.705.06-4.919-3.845-8.917-8.698-8.986s-8.908 3.846-8.972 8.766c-.068 4.858 3.844 8.918 8.759 8.982zM1050 263.48a5.146 5.146 0 0 0 5.21-5.06c.03-2.864-2.26-5.18-5.06-5.218a5.15 5.15 0 0 0-5.21 5.061c-.03 2.864 2.26 5.18 5.06 5.217M1107.96 260.656c.87-.004 1.63-.683 1.63-1.554-.01-.871-.69-1.628-1.62-1.62-.87.004-1.62.683-1.62 1.615.01.871.69 1.629 1.62 1.621zM6.284 302.897s.185-.014.176-.137c-.005-.062-.014-.186-.138-.177-.062.005-.185.014-.176.138.005.062.014.186.138.176M64.192 306.735c1.806.05 3.248-1.428 3.24-3.17a3.125 3.125 0 0 0-3.166-3.244 3.124 3.124 0 0 0-3.241 3.169c-.05 1.808 1.427 3.252 3.167 3.245M122.094 311.319c3.921.077 7.101-3.088 7.177-7.013.076-3.926-3.086-7.109-7.007-7.186-3.922-.077-7.101 3.088-7.182 6.951-.077 3.926 3.085 7.109 6.945 7.191zM179.939 315.969c6.036.104 11.015-4.752 11.056-10.79.103-6.043-4.749-11.027-10.781-11.069-6.037-.103-11.016 4.752-11.057 10.791-.102 6.042 4.749 11.026 10.782 11.068M237.879 320.24c7.962.082 14.564-6.327 14.645-14.297.082-7.97-6.322-14.579-14.285-14.662-7.962-.082-14.563 6.327-14.645 14.297s6.261 14.583 14.285 14.662M295.748 324.391c9.831.128 17.936-7.764 18.063-17.604s-7.759-17.954-17.589-18.082-17.936 7.763-18.062 17.603 7.758 17.954 17.588 18.083M353.652 328.166a20.92 20.92 0 0 0 21.189-20.639c.124-11.52-9.109-21.026-20.618-21.152s-21.003 9.115-21.127 20.635c-.12 11.581 9.109 21.025 20.617 21.151zM411.584 331.504c12.939.142 23.595-10.183 23.793-23.201.14-12.952-10.176-23.62-23.177-23.758-12.939-.142-23.595 10.183-23.731 23.196-.14 12.952 10.176 23.62 23.177 23.758zM469.479 334.346c14.122.177 25.698-11.15 25.877-25.224.175-14.137-11.081-25.73-25.203-25.907s-25.703 11.088-25.878 25.225c-.175 14.136 11.081 25.729 25.204 25.906M527.45 336.561c14.931.178 27.144-11.757 27.32-26.702s-11.749-27.172-26.618-27.355c-14.931-.179-27.144 11.756-27.325 26.64-.176 14.945 11.75 27.172 26.619 27.355zM585.347 337.786c15.183.221 27.624-11.98 27.843-27.178.219-15.197-11.972-27.653-27.154-27.874s-27.624 11.98-27.848 27.115c-.219 15.198 11.972 27.653 27.093 27.879zM643.298 338.073c14.93.179 27.143-11.757 27.319-26.702s-11.749-27.172-26.68-27.35-27.143 11.756-27.324 26.64c-.176 14.945 11.749 27.172 26.618 27.355zM701.311 337.547c14.184.173 25.883-11.164 26.049-25.424.17-14.198-11.157-25.91-25.403-26.078-14.185-.173-25.884 11.164-26.049 25.424-.17 14.198 11.157 25.91 25.403 26.078M759.263 336.217c13.068.195 23.777-10.258 23.907-23.334.193-13.08-10.313-23.796-23.314-23.934-13.067-.194-23.776 10.259-23.907 23.334-.192 13.08 10.252 23.801 23.314 23.934M817.24 334.387c11.637.178 21.189-9.129 21.304-20.772.176-11.648-9.185-21.207-20.755-21.328-11.637-.178-21.189 9.129-21.304 20.773-.177 11.647 9.185 21.206 20.755 21.327M875.242 332.058c9.953.119 18.116-7.84 18.233-17.803s-7.834-18.136-17.788-18.255-18.116 7.84-18.234 17.803c-.117 9.964 7.835 18.136 17.789 18.255M933.219 329.419c8.091.135 14.688-6.336 14.822-14.434.072-8.094-6.332-14.703-14.423-14.838a14.65 14.65 0 0 0-14.821 14.434c-.072 8.094 6.332 14.703 14.422 14.838M991.188 326.656c6.099.1 11.132-4.823 11.232-10.927.1-6.105-4.82-11.146-10.918-11.245-6.099-.1-11.135 4.823-11.233 10.927-.098 6.105 4.82 11.146 10.919 11.245M1049.2 323.704c4.05.067 7.4-3.235 7.47-7.284.06-4.111-3.23-7.408-7.28-7.476-4.1-.063-7.46 3.239-7.46 7.284-.07 4.111 3.23 7.47 7.27 7.476M1107.2 320.442c1.87.045 3.36-1.499 3.41-3.307.05-1.87-1.49-3.371-3.3-3.421-1.87-.046-3.37 1.437-3.42 3.307-.04 1.87 1.44 3.375 3.31 3.421M1165.2 318.112s.3-.147.35-.337c-.02-.186-.15-.3-.34-.348-.19.014-.3.147-.35.338.02.185.15.3.34.347M5.51 361.751c.556-.042.96-.446.985-.946-.042-.556-.446-.961-.945-.986-.556.042-.96.446-.985.945.037.495.445.962.945.987M63.412 366.335c2.676.047 4.813-2.106 4.86-4.785.045-2.678-2.11-4.88-4.782-4.865-2.676-.046-4.875 2.111-4.859 4.785-.046 2.679 2.104 4.818 4.78 4.865M121.328 371.105a8.843 8.843 0 0 0 8.971-8.766 8.847 8.847 0 0 0-8.758-8.982c-4.854-.069-8.909 3.846-8.977 8.704s3.844 8.918 8.697 8.987zM179.182 375.879c7.092.086 12.942-5.582 13.027-12.681s-5.578-12.955-12.671-13.041-12.941 5.582-13.026 12.681c-.086 7.099 5.578 12.955 12.67 13.041M237.075 380.34c9.146.117 16.67-7.233 16.791-16.326.117-9.154-7.227-16.688-16.311-16.81-9.146-.118-16.609 7.228-16.792 16.325-.116 9.155 7.223 16.626 16.312 16.811M295.015 384.61c11.076.158 20.224-8.745 20.319-19.827.157-11.087-8.74-20.245-19.811-20.342-11.075-.158-20.223 8.746-20.318 19.828-.157 11.086 8.739 20.244 19.81 20.341M352.885 388.761c12.939.142 23.595-10.182 23.793-23.2.14-12.952-10.176-23.621-23.182-23.82-12.939-.142-23.59 10.244-23.731 23.196-.14 12.951 10.176 23.62 23.177 23.757zM410.793 392.598c14.621.202 26.663-11.534 26.862-26.17.2-14.636-11.526-26.691-26.148-26.893-14.622-.201-26.663 11.534-26.863 26.17s11.527 26.691 26.149 26.893M468.711 395.75c15.991.223 29.07-12.587 29.29-28.593.22-16.007-12.579-29.1-28.57-29.323s-29.069 12.587-29.29 28.593c-.22 16.006 12.579 29.1 28.57 29.323'/%3E%3Cpath d='M526.63 398.093c16.861.219 30.697-13.27 30.913-30.147s-13.261-30.728-30.122-30.947c-16.86-.22-30.696 13.269-30.913 30.146s13.261 30.729 30.122 30.948'/%3E%3Cpath d='M584.603 399.499c17.236.253 31.357-13.569 31.546-30.817.25-17.253-13.56-31.39-30.791-31.582-17.232-.191-31.358 13.569-31.546 30.817-.251 17.253 13.559 31.391 30.791 31.582'/%3E%3Cpath d='M642.539 399.601c16.861.219 30.697-13.27 30.913-30.147s-13.261-30.729-30.122-30.948c-16.86-.219-30.696 13.27-30.913 30.147s13.261 30.728 30.122 30.948'/%3E%3Cpath d='M700.477 398.894c16.052.218 29.25-12.663 29.466-28.731.215-16.068-12.655-29.281-28.707-29.499-16.053-.218-29.251 12.662-29.466 28.731-.216 16.068 12.654 29.281 28.707 29.499M758.467 397.25c14.746.192 26.844-11.61 27.034-26.37s-11.602-26.872-26.347-27.064-26.844 11.609-27.034 26.369 11.602 26.872 26.347 27.065M816.469 394.92c13.067.195 23.776-10.258 23.907-23.333.192-13.08-10.252-23.801-23.314-23.934-13.068-.195-23.777 10.258-23.907 23.333-.193 13.08 10.251 23.801 23.314 23.934M874.461 392.467c11.261.145 20.523-8.892 20.665-20.164.143-11.272-8.886-20.545-20.147-20.689-11.261-.145-20.523 8.892-20.666 20.164s8.887 20.544 20.148 20.689M932.415 389.519c9.208.113 16.794-7.242 16.901-16.52.112-9.217-7.237-16.812-16.506-16.92-9.208-.113-16.794 7.241-16.901 16.52-.112 9.216 7.237 16.812 16.506 16.92M990.432 386.566c7.215.077 13.058-5.653 13.198-12.88.08-7.223-5.65-13.075-12.87-13.213-7.216-.077-13.123 5.657-13.198 12.88s5.654 13.136 12.87 13.213M1048.44 383.49c5.04.055 9.21-3.993 9.26-9.037s-3.99-9.218-9.03-9.272-9.21 3.993-9.26 9.036c-.05 5.044 3.99 9.218 9.03 9.273M1106.42 380.042c2.74.042 4.99-2.181 5.03-4.922s-2.18-4.999-4.92-5.041c-2.73-.042-4.99 2.181-5.03 4.922s2.18 4.999 4.92 5.041M1164.42 376.966c.62-.047 1.15-.522 1.16-1.145-.05-.619-.52-1.143-1.08-1.163-.62.047-1.15.46-1.16 1.083.04.619.52 1.143 1.08 1.163zM4.793 420.538c.993-.013 1.807-.759 1.794-1.753-.013-.995-.754-1.748-1.752-1.797-.993.013-1.807.759-1.794 1.753.013.995.758 1.81 1.752 1.797M62.66 425.498c3.3.061 5.96-2.566 6.022-5.868.061-3.302-2.564-5.966-5.863-6.028s-5.96 2.566-6.021 5.868 2.564 5.966 5.863 6.028M120.525 430.396a10.095 10.095 0 0 0 10.247-9.983c.074-5.605-4.436-10.179-9.974-10.258a10.093 10.093 0 0 0-10.247 9.982 10.1 10.1 0 0 0 9.974 10.259M178.441 435.166c7.776.096 14.202-6.175 14.297-13.96.096-7.784-6.171-14.216-13.947-14.313-7.839-.092-14.202 6.175-14.298 13.959-.091 7.846 6.171 14.217 13.948 14.314M236.357 439.935c10.016.115 18.235-7.91 18.41-17.94.112-10.026-7.906-18.255-17.926-18.431-10.016-.114-18.236 7.911-18.41 17.941-.113 10.025 7.906 18.254 17.926 18.43M294.202 444.586c12.131.141 22.15-9.575 22.284-21.78.139-12.143-9.569-22.172-21.7-22.314s-22.15 9.576-22.289 21.718c-.139 12.143 9.569 22.173 21.7 22.314zM352.142 448.856c14.123.178 25.698-11.15 25.878-25.224.175-14.137-11.143-25.725-25.204-25.907-14.122-.177-25.698 11.15-25.877 25.225-.175 14.136 11.081 25.729 25.203 25.906M410.012 453.007c15.991.223 29.07-12.586 29.29-28.593s-12.579-29.1-28.57-29.323-29.07 12.587-29.29 28.593c-.22 16.007 12.579 29.101 28.57 29.323'/%3E%3Cpath d='M467.967 456.654c17.546.23 32.019-13.867 32.246-31.429.227-17.563-13.858-32.053-31.403-32.282-17.546-.23-32.019 13.867-32.246 31.429-.227 17.563 13.858 32.052 31.403 32.282'/%3E%3Cpath d='M525.862 459.497c18.729.265 34.126-14.773 34.326-33.516.262-18.747-14.764-34.161-33.488-34.364-18.729-.265-34.126 14.773-34.325 33.516-.262 18.747 14.763 34.161 33.487 34.364'/%3E%3Cpath d='M583.782 461.031c19.162.232 34.911-15.081 35.14-34.261s-15.072-34.947-34.295-35.175c-19.161-.232-34.91 15.082-35.135 34.324-.229 19.18 15.072 34.947 34.233 35.179z'/%3E%3Cpath d='M641.771 461.005c18.729.264 34.126-14.773 34.326-33.516.262-18.747-14.764-34.161-33.488-34.364-18.728-.265-34.125 14.773-34.325 33.515-.262 18.747 14.763 34.162 33.487 34.365'/%3E%3Cpath d='M699.733 459.798c17.669.22 32.138-13.938 32.36-31.563.218-17.686-13.929-32.171-31.536-32.396-17.669-.22-32.138 13.939-32.36 31.563-.218 17.686 13.929 32.171 31.536 32.396'/%3E%3Cpath d='M757.687 457.659c16.052.218 29.25-12.663 29.466-28.731.215-16.068-12.655-29.281-28.707-29.499-16.053-.218-29.251 12.662-29.466 28.731-.216 16.068 12.654 29.281 28.707 29.499M815.679 455.206c14.308.163 26.002-11.235 26.224-25.562.161-14.322-11.228-26.029-25.54-26.254-14.308-.164-26.002 11.235-26.163 25.557s11.228 26.029 25.54 26.254zM873.695 452.253c12.254.132 22.33-9.651 22.46-21.917s-9.64-22.292-21.899-22.486c-12.255-.132-22.269 9.646-22.461 21.918-.129 12.266 9.645 22.353 21.9 22.485M931.702 449.177c10.139.105 18.416-7.987 18.524-18.074.103-10.149-7.981-18.435-18.059-18.545-10.139-.105-18.416 7.986-18.524 18.074-.103 10.149 7.981 18.435 18.063 18.606zM989.642 446.043c7.962.083 14.568-6.327 14.648-14.297.08-7.969-6.325-14.578-14.287-14.661s-14.568 6.265-14.645 14.297c-.082 7.969 6.26 14.583 14.284 14.661M1047.68 442.591c5.66.07 10.36-4.453 10.42-10.182.07-5.667-4.45-10.365-10.17-10.431-5.66-.07-10.36 4.454-10.42 10.182-.07 5.667 4.45 10.365 10.17 10.431M1105.67 439.205c3.36.057 6.14-2.642 6.19-6.006.06-3.364-2.64-6.146-6-6.203s-6.14 2.641-6.19 6.005c-.06 3.364 2.64 6.147 6 6.204M1163.65 435.757c1.06.045 1.92-.83 1.97-1.891.04-1.061-.83-1.928-1.89-1.972s-1.93.83-1.97 1.891a1.98 1.98 0 0 0 1.89 1.972M4.004 479.206c1.308.025 2.407-1.053 2.433-2.362.025-1.308-1.053-2.409-2.36-2.435-1.307-.025-2.406 1.053-2.432 2.362-.025 1.308 1.052 2.409 2.36 2.435M61.93 484.099c3.608.039 6.62-2.864 6.658-6.476s-2.862-6.627-6.47-6.666a6.596 6.596 0 0 0-6.654 6.538 6.56 6.56 0 0 0 6.532 6.661zM119.808 489.183c6.037.104 11.015-4.752 11.056-10.79.103-6.043-4.749-11.027-10.781-11.069-6.037-.104-11.016 4.752-11.057 10.79-.102 6.043 4.749 11.027 10.782 11.069M177.676 494.143c8.338.116 15.168-6.559 15.283-14.905s-6.555-15.183-14.893-15.3c-8.337-.116-15.167 6.559-15.282 14.905s6.554 15.183 14.892 15.3M235.592 498.912c10.577.135 19.263-8.299 19.395-18.886s-8.294-19.282-18.87-19.416-19.263 8.299-19.395 18.886c-.133 10.587 8.289 19.221 18.865 19.355zM293.447 503.687c12.753.156 23.291-10.097 23.445-22.863s-10.091-23.316-22.844-23.472-23.291 10.097-23.446 22.863c-.154 12.766 10.091 23.316 22.845 23.472M351.353 508.333c14.931.178 27.144-11.757 27.325-26.64.176-14.946-11.75-27.172-26.68-27.351s-27.144 11.757-27.32 26.702 11.749 27.172 26.618 27.355zM409.294 512.603c16.86.219 30.696-13.269 30.913-30.147.216-16.877-13.261-30.728-30.122-30.947-16.861-.22-30.697 13.269-30.913 30.146s13.261 30.729 30.122 30.948'/%3E%3Cpath d='M467.163 516.754c18.729.265 34.064-14.768 34.326-33.515.261-18.747-14.764-34.162-33.488-34.364-18.729-.265-34.126 14.773-34.326 33.515-.261 18.747 14.764 34.161 33.488 34.364'/%3E%3Cpath d='M525.105 520.216c20.221.276 36.832-15.974 37.105-36.215s-15.901-36.875-36.184-37.147c-20.222-.276-36.837 15.912-37.105 36.215-.274 20.241 15.962 36.87 36.184 37.147'/%3E%3Cpath d='M583.001 522.249c20.967.282 38.159-16.509 38.376-37.492.278-20.988-16.499-38.199-37.462-38.419-20.905-.287-38.159 16.509-38.376 37.492-.278 20.988 16.499 38.199 37.462 38.419'/%3E%3Cpath d='M640.961 521.852c20.345.267 37.018-15.987 37.282-36.352s-15.977-37.056-36.322-37.323-37.018 15.987-37.281 36.352c-.264 20.364 15.977 37.056 36.321 37.323'/%3E%3Cpath d='M698.929 519.898c18.79.26 34.245-14.844 34.502-33.653s-14.835-34.281-33.626-34.541-34.244 14.845-34.501 33.654c-.257 18.808 14.834 34.28 33.625 34.54'/%3E%3Cpath d='M756.907 517.259c16.922.215 30.877-13.345 31.084-30.346s-13.337-30.909-30.321-31.119c-16.922-.215-30.877 13.345-31.084 30.346-.212 16.939 13.336 30.909 30.321 31.119M814.937 514.492c14.993.174 27.325-11.832 27.496-26.84s-11.825-27.353-26.818-27.526c-14.992-.174-27.324 11.832-27.496 26.84s11.826 27.353 26.818 27.526M872.94 511.354c12.877.147 23.414-10.106 23.621-23.001.145-12.89-10.162-23.434-22.982-23.648-12.877-.147-23.415 10.106-23.621 23.001-.145 12.89 10.1 23.439 22.982 23.648M930.946 508.278c10.762.12 19.563-8.447 19.681-19.219s-8.441-19.583-19.203-19.703-19.562 8.446-19.68 19.219c-.119 10.772 8.441 19.582 19.202 19.703M988.925 504.83c8.4.112 15.345-6.635 15.455-15.104.11-8.47-6.631-15.365-15.092-15.472s-15.348 6.635-15.454 15.104c-.111 8.408 6.63 15.365 15.091 15.472M1046.92 501.568c6.22.09 11.31-4.899 11.4-11.128.09-6.228-4.89-11.326-11.12-11.416-6.22-.09-11.31 4.899-11.4 11.127s4.9 11.327 11.12 11.417M1104.89 497.997c3.79.024 6.98-3.017 7-6.814.03-3.797-3.01-6.989-6.8-7.014-3.8-.024-6.92 3.012-7.01 6.814-.02 3.797 3.01 6.927 6.81 7.014M1162.92 494.42a2.57 2.57 0 0 0 2.6-2.56 2.575 2.575 0 0 0-2.56-2.607 2.576 2.576 0 0 0-2.6 2.561 2.575 2.575 0 0 0 2.56 2.606M3.24 537.374a2.576 2.576 0 0 0 2.604-2.561 2.577 2.577 0 0 0-2.559-2.607 2.576 2.576 0 0 0-2.603 2.561 2.577 2.577 0 0 0 2.559 2.607M61.18 542.453c3.794.024 6.92-3.012 7.006-6.813.024-3.797-3.01-6.928-6.807-7.014-3.794-.025-6.982 3.016-7.006 6.813s3.01 6.928 6.807 7.014M119.058 547.537c6.222.089 11.315-4.899 11.404-11.128.089-6.228-4.896-11.327-11.118-11.417s-11.315 4.9-11.404 11.128 4.896 11.327 11.118 11.417M176.926 552.497c8.523.102 15.529-6.711 15.631-15.242.101-8.532-6.707-15.546-15.23-15.648s-15.529 6.71-15.63 15.242 6.706 15.545 15.229 15.648M234.842 557.266c10.762.12 19.563-8.446 19.681-19.219.123-10.71-8.441-19.582-19.203-19.702s-19.562 8.446-19.68 19.219c-.119 10.772 8.441 19.582 19.202 19.702M292.697 562.041c12.939.142 23.595-10.182 23.731-23.196.14-12.952-10.176-23.62-23.177-23.758-12.939-.142-23.595 10.183-23.731 23.196-.14 12.952 10.176 23.62 23.181 23.82zM350.613 566.811c15.183.221 27.624-11.98 27.843-27.178.219-15.197-11.972-27.653-27.155-27.874-15.182-.222-27.624 11.98-27.847 27.115-.22 15.198 11.972 27.653 27.092 27.879z'/%3E%3Cpath d='M408.506 571.271c17.231.191 31.357-13.568 31.546-30.817.25-17.253-13.56-31.39-30.791-31.581-17.237-.253-31.358 13.568-31.547 30.816-.25 17.253 13.56 31.391 30.792 31.582'/%3E%3Cpath d='M466.446 575.541c19.162.232 34.911-15.081 35.135-34.323.229-19.18-15.072-34.947-34.233-35.179s-34.91 15.081-35.139 34.261 15.071 34.947 34.233 35.179z'/%3E%3Cpath d='M524.302 579.507c20.967.282 38.159-16.509 38.376-37.493.278-20.988-16.499-38.199-37.462-38.419-20.967-.282-38.159 16.509-38.376 37.492-.278 20.989 16.499 38.199 37.466 38.481z'/%3E%3Cpath d='M582.258 582.345c22.085.26 40.266-17.415 40.523-39.521.256-22.107-17.404-40.308-39.489-40.568s-40.266 17.414-40.522 39.521 17.403 40.308 39.488 40.568'/%3E%3Cpath d='M640.22 581.138c21.029.278 38.278-16.58 38.552-37.63s-16.569-38.318-37.599-38.595-38.278 16.58-38.552 37.63 16.57 38.318 37.599 38.595'/%3E%3Cpath d='M698.212 578.685c19.223.227 35.091-15.157 35.311-34.461.224-19.242-15.148-35.128-34.433-35.35-19.223-.228-35.091 15.157-35.31 34.46s15.147 35.128 34.432 35.351'/%3E%3Cpath d='M756.181 575.923c17.297.248 31.538-13.645 31.722-30.955.245-17.315-13.631-31.509-30.929-31.758s-31.539 13.644-31.722 30.955c-.246 17.314 13.635 31.571 30.929 31.758'/%3E%3Cpath d='M814.197 572.97c15.244.217 27.805-12.056 28.019-27.315s-12.048-27.834-27.292-28.051-27.805 12.056-27.958 27.31c-.214 15.26 12.048 27.834 27.293 28.051zM872.137 569.836c13.129.19 23.895-10.329 24.083-23.471s-10.322-23.92-23.451-24.11-23.896 10.329-24.084 23.471 10.323 23.92 23.452 24.11M930.192 566.57c10.89.172 19.862-8.594 20.028-19.557.171-10.901-8.588-19.882-19.54-20.05-10.89-.173-19.862 8.593-20.033 19.494-.17 10.901 8.588 19.883 19.479 20.055zM988.176 563.184c8.584.098 15.644-6.782 15.804-15.38.1-8.593-6.776-15.664-15.365-15.824-8.585-.098-15.648 6.782-15.806 15.38-.097 8.593 6.777 15.664 15.367 15.824M1046.15 559.736c6.29.085 11.5-4.975 11.58-11.265.09-6.29-4.97-11.508-11.25-11.531-6.28-.085-11.49 4.975-11.58 11.265-.08 6.29 4.98 11.508 11.26 11.593zM1104.19 556.16c3.92.077 7.1-3.087 7.17-7.013.08-3.925-3.08-7.108-7-7.185-3.93-.077-7.1 3.087-7.18 7.013s3.08 7.108 6.94 7.19zM1162.16 552.589c1.49.011 2.76-1.205 2.78-2.699.01-1.494-1.21-2.771-2.7-2.783-1.49-.011-2.77 1.205-2.78 2.699s1.2 2.771 2.7 2.783M2.51 595.166c1.308.026 2.407-1.053 2.433-2.361s-1.052-2.409-2.36-2.435-2.406 1.053-2.432 2.361 1.053 2.41 2.36 2.435M60.393 600.312c3.732.029 6.802-2.941 6.83-6.676s-2.938-6.808-6.67-6.837-6.801 2.94-6.83 6.675 2.939 6.809 6.67 6.838M118.319 605.205c6.037.104 11.015-4.752 11.056-10.79.103-6.043-4.744-10.965-10.781-11.069s-11.016 4.752-11.057 10.79c-.102 6.043 4.749 11.027 10.782 11.069M176.187 610.165c8.338.117 15.168-6.559 15.283-14.904.115-8.346-6.555-15.184-14.893-15.3-8.337-.117-15.167 6.559-15.282 14.904-.116 8.346 6.554 15.184 14.892 15.3M234.103 614.935c10.577.134 19.263-8.299 19.395-18.886.133-10.587-8.289-19.221-18.866-19.355s-19.262 8.299-19.395 18.886 8.294 19.283 18.871 19.417zM291.957 619.709c12.754.157 23.292-10.096 23.446-22.863s-10.086-23.253-22.844-23.471c-12.754-.157-23.296 10.035-23.446 22.863-.154 12.766 10.091 23.315 22.844 23.471M349.86 624.294c14.93.178 27.143-11.757 27.319-26.703s-11.749-27.172-26.68-27.35-27.143 11.757-27.324 26.64c-.176 14.946 11.749 27.172 26.618 27.355zM407.805 628.626c16.86.219 30.696-13.27 30.913-30.147s-13.261-30.729-30.122-30.948-30.696 13.27-30.913 30.147 13.261 30.728 30.122 30.948'/%3E%3Cpath d='M465.67 632.715c18.728.265 34.125-14.773 34.325-33.516.262-18.747-14.763-34.161-33.487-34.364-18.729-.265-34.126 14.773-34.326 33.516-.262 18.747 14.764 34.161 33.488 34.364'/%3E%3Cpath d='M523.563 636.367c20.345.267 37.018-15.987 37.282-36.352s-15.977-37.057-36.322-37.324-37.018 15.987-37.281 36.352c-.264 20.365 15.976 37.056 36.321 37.324'/%3E%3Cpath d='M581.521 638.396c21.029.277 38.278-16.581 38.552-37.63s-16.569-38.318-37.599-38.596-38.278 16.58-38.552 37.63 16.57 38.318 37.599 38.596'/%3E%3Cpath d='M639.486 638.06c20.407.262 37.199-16.063 37.458-36.49s-16.053-37.237-36.46-37.499c-20.406-.263-37.198 16.063-37.457 36.489-.259 20.427 16.053 37.237 36.459 37.5'/%3E%3Cpath d='M697.449 636.044c18.914.251 34.426-14.92 34.678-33.791.248-18.932-14.911-34.461-33.763-34.716-18.914-.251-34.425 14.92-34.678 33.791-.247 18.932 14.911 34.461 33.763 34.716'/%3E%3Cpath d='M755.432 633.467c17.046.206 31.058-13.421 31.26-30.484.203-17.062-13.408-31.028-30.459-31.295-17.046-.205-31.058 13.421-31.26 30.484s13.413 31.09 30.459 31.295'/%3E%3Cpath d='M813.458 630.638c15.116.165 27.505-11.908 27.671-26.977s-11.896-27.472-26.955-27.703-27.443 11.904-27.672 26.978c-.162 15.13 11.897 27.472 26.956 27.702M871.403 627.567c12.939.142 23.595-10.182 23.792-23.201.141-12.951-10.175-23.62-23.176-23.757-12.939-.143-23.591 10.244-23.731 23.195s10.176 23.62 23.119 23.825zM929.458 624.3c10.761.12 19.562-8.446 19.68-19.219.123-10.71-8.441-19.583-19.203-19.703s-19.562 8.447-19.68 19.219c-.119 10.773 8.441 19.583 19.203 19.703M987.45 621.038c8.523.103 15.53-6.711 15.63-15.242s-6.706-15.545-15.229-15.648-15.529 6.711-15.63 15.242 6.706 15.545 15.229 15.648M1045.43 617.59c6.22.09 11.31-4.899 11.4-11.127s-4.89-11.327-11.12-11.417c-6.22-.09-11.31 4.899-11.4 11.128-.09 6.228 4.9 11.327 11.12 11.416M1103.4 614.019c3.79.024 6.98-3.016 7.01-6.813.02-3.797-3.01-6.928-6.81-7.014-3.8-.025-6.92 3.011-7.01 6.813-.02 3.797 3.01 6.928 6.81 7.014M1161.43 610.381a2.576 2.576 0 0 0 2.6-2.561 2.575 2.575 0 0 0-2.56-2.606 2.57 2.57 0 0 0-2.6 2.561 2.57 2.57 0 0 0 2.56 2.606M1.81 652.521c.993-.013 1.807-.759 1.794-1.753-.013-.995-.758-1.81-1.751-1.797-.994.013-1.808.759-1.795 1.753.013.995.758 1.81 1.752 1.797M59.678 657.481c3.3.062 5.96-2.566 6.021-5.868s-2.564-5.966-5.863-6.027c-3.299-.062-5.96 2.565-6.02 5.867-.062 3.302 2.563 5.966 5.862 6.028M117.547 662.441a10.094 10.094 0 0 0 10.247-9.982c.074-5.606-4.436-10.18-9.974-10.259a10.093 10.093 0 0 0-10.247 9.982 10.1 10.1 0 0 0 9.974 10.259M175.472 667.334c7.9.088 14.383-6.25 14.474-14.097.086-7.908-6.185-14.402-14.085-14.49-7.901-.087-14.383 6.251-14.474 14.097-.086 7.909 6.247 14.398 14.147 14.486zM233.379 671.98c10.016.115 18.235-7.91 18.41-17.94.112-10.026-7.906-18.255-17.926-18.431-10.016-.114-18.236 7.911-18.41 17.941-.113 10.025 7.906 18.254 17.926 18.43M291.281 676.565c12.131.141 22.15-9.576 22.289-21.718.139-12.143-9.569-22.173-21.7-22.314s-22.15 9.575-22.289 21.718 9.569 22.173 21.7 22.314M349.174 681.025c14.184.173 25.883-11.164 26.049-25.424.17-14.198-11.157-25.91-25.403-26.078-14.185-.173-25.822 11.159-26.049 25.424-.17 14.198 11.157 25.91 25.341 26.083zM407.043 685.176c16.053.218 29.251-12.662 29.466-28.731.216-16.068-12.654-29.281-28.707-29.499-16.052-.218-29.25 12.663-29.466 28.731-.215 16.068 12.655 29.281 28.707 29.499'/%3E%3Cpath d='M464.937 688.828c17.669.22 32.138-13.939 32.36-31.563.217-17.686-13.93-32.171-31.537-32.396-17.668-.221-32.137 13.938-32.359 31.562-.218 17.686 13.929 32.172 31.536 32.397'/%3E%3Cpath d='M522.894 691.666c18.79.26 34.244-14.845 34.501-33.654s-14.834-34.28-33.625-34.54c-18.79-.26-34.245 14.844-34.502 33.653s14.835 34.28 33.626 34.541'/%3E%3Cpath d='M580.814 693.2c19.285.222 35.091-15.157 35.311-34.461.224-19.242-15.148-35.128-34.433-35.351-19.223-.227-35.091 15.157-35.31 34.461-.225 19.242 15.147 35.128 34.432 35.351'/%3E%3Cpath d='M638.75 693.302c18.914.25 34.426-14.92 34.678-33.791.248-18.933-14.911-34.462-33.763-34.717-18.914-.251-34.425 14.92-34.678 33.791-.247 18.933 14.911 34.461 33.763 34.717'/%3E%3Cpath d='M696.765 691.967c17.73.216 32.318-14.014 32.531-31.762s-13.944-32.357-31.736-32.568c-17.731-.216-32.319 14.014-32.531 31.762-.213 17.748 14.005 32.352 31.736 32.568'/%3E%3Cpath d='M754.718 689.828c16.176.208 29.432-12.739 29.642-28.869.206-16.192-12.73-29.462-28.844-29.675-16.177-.209-29.432 12.738-29.643 28.868-.206 16.192 12.731 29.462 28.845 29.676M812.696 687.189c14.308.163 26.002-11.235 26.225-25.562.161-14.322-11.228-26.029-25.541-26.254-14.308-.163-26.002 11.235-26.163 25.557s11.228 26.029 25.541 26.254zM870.726 684.422c12.321.189 22.45-9.722 22.636-22.055.187-12.334-9.716-22.473-22.037-22.662s-22.449 9.722-22.636 22.055 9.716 22.473 22.037 22.662M928.667 681.288c10.205.162 18.596-8.062 18.695-18.273.161-10.216-8.057-18.617-18.258-18.717-10.206-.162-18.597 8.063-18.695 18.274-.161 10.215 8.057 18.616 18.258 18.716M986.722 678.021c7.962.083 14.568-6.326 14.648-14.296s-6.326-14.579-14.288-14.662c-7.962-.082-14.568 6.265-14.645 14.297-.082 7.97 6.261 14.583 14.285 14.661M1044.71 674.76c5.79.06 10.48-4.525 10.6-10.32.06-5.791-4.53-10.546-10.31-10.607-5.79-.06-10.54 4.529-10.6 10.32s4.52 10.484 10.31 10.607M1102.7 671.374a6.276 6.276 0 0 0 6.37-6.206 6.28 6.28 0 0 0-6.2-6.375 6.27 6.27 0 0 0-6.37 6.205 6.267 6.267 0 0 0 6.2 6.376M1160.68 667.926c1.18.035 2.1-.906 2.14-2.09.03-1.185-.91-2.11-2.09-2.145s-2.11.906-2.14 2.091c-.04 1.123.9 2.109 2.09 2.144M1.038 709.756c.556-.042.96-.445.985-.945-.042-.557-.445-.962-.945-.986-.556.042-.96.446-.985.945.038.495.446.962.945.986M58.94 714.341c2.676.046 4.813-2.106 4.86-4.785.046-2.679-2.11-4.88-4.781-4.865-2.676-.047-4.875 2.111-4.86 4.785-.046 2.679 2.105 4.818 4.781 4.865M116.87 719.296c4.977.06 9.027-3.917 9.086-8.899s-3.915-9.037-8.896-9.158c-4.977-.06-9.028 3.917-9.086 8.899a8.98 8.98 0 0 0 8.892 9.096zM174.71 723.885c7.093.086 12.942-5.582 13.027-12.681s-5.578-12.955-12.67-13.042c-7.093-.086-12.942 5.582-13.027 12.681-.085 7.1 5.578 12.956 12.67 13.042M232.617 728.531c9.208.113 16.794-7.242 16.901-16.52.112-9.217-7.237-16.812-16.506-16.92-9.208-.114-16.794 7.241-16.901 16.52-.112 9.216 7.237 16.811 16.506 16.92M290.558 732.801c11.199.149 20.342-8.816 20.49-20.027s-8.811-20.363-20.01-20.512-20.343 8.816-20.49 20.026c-.148 11.21 8.811 20.364 20.01 20.513M348.427 736.952c13.068.195 23.776-10.258 23.907-23.333.193-13.08-10.251-23.801-23.314-23.934-13.067-.195-23.776 10.258-23.907 23.333-.193 13.08 10.252 23.801 23.314 23.934M406.33 740.727c14.746.193 26.844-11.609 27.034-26.369s-11.602-26.872-26.347-27.065c-14.746-.192-26.844 11.61-27.034 26.37s11.602 26.872 26.347 27.064M464.253 743.941c16.053.218 29.251-12.662 29.466-28.731.216-16.068-12.654-29.281-28.707-29.499-16.052-.218-29.25 12.663-29.466 28.731-.215 16.068 12.655 29.281 28.707 29.499'/%3E%3Cpath d='M522.172 746.284c16.923.215 30.878-13.345 31.085-30.346s-13.337-30.909-30.321-31.119c-16.923-.215-30.878 13.345-31.085 30.346-.212 16.939 13.337 30.909 30.321 31.119'/%3E%3Cpath d='M580.145 747.69c17.298.248 31.539-13.644 31.722-30.954.246-17.315-13.635-31.572-30.928-31.758-17.298-.249-31.539 13.644-31.723 30.954-.245 17.315 13.631 31.51 30.929 31.758'/%3E%3Cpath d='M638.091 747.916c17.046.205 31.058-13.422 31.26-30.484s-13.413-31.091-30.459-31.296-31.057 13.421-31.26 30.484c-.202 17.063 13.408 31.029 30.459 31.296'/%3E%3Cpath d='M696.019 747.085c16.176.209 29.431-12.738 29.642-28.868.206-16.192-12.73-29.463-28.845-29.676-16.176-.209-29.431 12.739-29.642 28.869-.206 16.192 12.731 29.462 28.907 29.671zM754.01 745.441c14.807.188 26.963-11.681 27.148-26.503.186-14.821-11.673-26.991-26.485-27.24-14.807-.188-26.963 11.68-27.21 26.507-.186 14.821 11.673 26.991 26.48 27.179zM812.011 743.112c13.129.19 23.895-10.33 24.083-23.472s-10.322-23.92-23.451-24.11-23.896 10.329-24.084 23.471 10.323 23.92 23.452 24.111M869.989 740.473c11.261.144 20.523-8.893 20.666-20.165s-8.887-20.544-20.148-20.689-20.523 8.893-20.666 20.165c-.142 11.272 8.887 20.544 20.148 20.689M927.958 737.71c9.331.104 16.974-7.317 17.077-16.658.102-9.34-7.313-16.992-16.644-17.096s-16.975 7.318-17.078 16.658 7.313 16.993 16.645 17.096M985.96 734.572c7.216.077 13.061-5.653 13.198-12.881.076-7.223-5.654-13.136-12.87-13.213s-13.122 5.658-13.198 12.881c-.081 7.161 5.649 13.074 12.87 13.213M1043.97 731.496c5.04.054 9.2-3.994 9.26-9.037.05-5.044-3.99-9.218-9.03-9.273s-9.21 3.993-9.26 9.037c-.06 5.044 3.99 9.218 9.03 9.273M1101.96 728.233a5.146 5.146 0 0 0 5.21-5.06c.03-2.864-2.25-5.18-5.05-5.217-2.87-.033-5.18 2.257-5.22 5.06-.03 2.864 2.26 5.18 5.06 5.217M1159.95 724.971c.62-.046 1.15-.459 1.16-1.083-.04-.618-.52-1.142-1.08-1.162-.62.046-1.14.46-1.15 1.145.04.618.52 1.142 1.14 1.158zM.337 767.111s.3-.147.348-.337c-.015-.186-.147-.3-.338-.348-.185.014-.3.147-.347.337.014.186.147.3.337.348M58.23 770.763c1.745.055 3.25-1.428 3.242-3.169a3.126 3.126 0 0 0-3.166-3.245 3.124 3.124 0 0 0-3.242 3.169c-.05 1.808 1.427 3.252 3.167 3.245M116.147 775.532c3.983.073 7.282-3.163 7.353-7.15.072-3.987-3.161-7.29-7.14-7.3-3.983-.072-7.281 3.163-7.291 7.146-.072 3.987 3.161 7.289 7.144 7.362zM174.04 779.993c6.037.104 11.015-4.752 11.056-10.79.103-6.043-4.749-11.027-10.781-11.069-6.037-.104-11.015 4.752-11.056 10.79-.103 6.043 4.749 11.027 10.781 11.069M231.932 784.453c8.091.136 14.688-6.336 14.822-14.434.072-8.094-6.332-14.702-14.423-14.838a14.65 14.65 0 0 0-14.821 14.435c-.072 8.093 6.332 14.702 14.422 14.837M289.797 788.542c9.954.119 18.117-7.839 18.234-17.802.117-9.964-7.834-18.136-17.788-18.255s-18.117 7.84-18.234 17.803 7.834 18.136 17.788 18.254M347.705 792.38c11.637.178 21.189-9.13 21.304-20.773.176-11.648-9.186-21.206-20.756-21.327-11.636-.179-21.184 9.191-21.303 20.772-.177 11.648 9.185 21.206 20.755 21.328M405.637 795.717c13.068.195 23.777-10.258 23.907-23.333.193-13.08-10.251-23.801-23.314-23.934-13.067-.195-23.776 10.258-23.907 23.333-.192 13.08 10.252 23.801 23.314 23.934M463.541 798.684c14.309.163 26.003-11.235 26.225-25.562.161-14.322-11.228-26.029-25.54-26.254-14.308-.164-26.002 11.235-26.225 25.561-.161 14.322 11.228 26.03 25.54 26.255M521.499 800.713c14.993.173 27.325-11.833 27.496-26.84s-11.825-27.353-26.818-27.527c-14.992-.174-27.324 11.833-27.495 26.84-.172 15.007 11.825 27.353 26.817 27.527M579.401 802c15.244.216 27.805-12.056 28.019-27.315s-12.048-27.834-27.288-27.989c-15.244-.217-27.805 12.055-27.957 27.31-.215 15.259 12.048 27.834 27.292 28.051zM637.36 802.411c15.059.231 27.444-11.904 27.672-26.978s-11.896-27.472-26.955-27.703c-15.054-.169-27.443 11.904-27.672 26.978s11.896 27.472 26.955 27.703M695.36 801.699c14.308.163 26.002-11.235 26.225-25.562.16-14.322-11.228-26.029-25.541-26.254-14.308-.163-26.002 11.235-26.225 25.562-.161 14.322 11.228 26.029 25.541 26.254M753.312 800.369c13.129.19 23.895-10.329 24.083-23.471s-10.322-23.921-23.452-24.111c-13.129-.19-23.895 10.33-24.083 23.472s10.323 23.92 23.452 24.11M811.289 798.539c11.698.174 21.308-9.2 21.475-20.972.172-11.71-9.195-21.33-20.955-21.499-11.698-.174-21.308 9.2-21.475 20.972-.172 11.71 9.195 21.33 20.955 21.499M869.29 796.21c10.016.114 18.236-7.911 18.41-17.941.113-10.025-7.906-18.254-17.926-18.43-10.015-.115-18.235 7.91-18.41 17.94-.112 10.026 7.906 18.255 17.926 18.431M927.273 793.633c8.152.13 14.868-6.412 14.992-14.634.13-8.16-6.407-14.884-14.621-15.01-8.153-.13-14.868 6.412-14.993 14.634-.129 8.16 6.408 14.884 14.622 15.01M985.237 790.808c6.222.09 11.315-4.899 11.403-11.127s-4.896-11.327-11.118-11.417-11.315 4.899-11.404 11.128c-.088 6.228 4.896 11.327 11.119 11.416M1043.24 787.732c4.05.068 7.4-3.235 7.47-7.284.06-4.111-3.23-7.408-7.28-7.476-4.1-.063-7.46 3.24-7.46 7.284-.07 4.111 3.23 7.47 7.27 7.476M1101.25 784.594c1.93.041 3.55-1.513 3.58-3.507.05-1.932-1.51-3.556-3.5-3.592-1.93-.041-3.55 1.512-3.59 3.506-.04 1.932 1.51 3.557 3.51 3.593M1159.24 782.141s.3-.148.35-.338c-.02-.185-.15-.3-.34-.348-.19.014-.3.147-.35.338.02.185.15.3.34.348M57.508 826.999c.808.001 1.445-.607 1.447-1.416 0-.808-.607-1.447-1.415-1.448s-1.446.607-1.447 1.416.607 1.447 1.415 1.448M115.4 831.46c2.862.032 5.175-2.258 5.212-5.06.032-2.865-2.256-5.181-5.056-5.218-2.861-.033-5.175 2.258-5.211 5.06-.033 2.865 2.256 5.18 5.055 5.218M173.279 835.734c4.792.074 8.728-3.77 8.8-8.566s-3.767-8.737-8.559-8.81-8.728 3.77-8.8 8.566 3.768 8.737 8.559 8.81M231.21 839.881c6.655.057 12.095-5.269 12.218-11.873.056-6.662-5.266-12.108-11.925-12.227-6.655-.057-12.095 5.269-12.213 11.935-.056 6.662 5.265 12.108 11.925 12.227zM289.128 843.842c8.399.112 15.348-6.635 15.454-15.105a15.25 15.25 0 0 0-15.092-15.471c-8.461-.107-15.348 6.635-15.454 15.104a15.25 15.25 0 0 0 15.092 15.472M347.007 847.308c9.954.119 18.117-7.84 18.234-17.803s-7.834-18.136-17.788-18.255-18.117 7.84-18.234 17.803 7.834 18.136 17.788 18.255M404.926 850.46c11.261.144 20.523-8.893 20.665-20.165.143-11.272-8.886-20.544-20.147-20.689s-20.523 8.893-20.666 20.165 8.886 20.544 20.148 20.689M462.859 852.988c12.254.132 22.33-9.651 22.46-21.917s-9.645-22.354-21.9-22.486c-12.254-.131-22.33 9.651-22.46 21.918s9.645 22.354 21.9 22.485M520.807 854.894c12.877.147 23.41-10.169 23.622-23.001.144-12.89-10.1-23.439-22.982-23.648-12.877-.147-23.41 10.168-23.622 23.001-.144 12.889 10.162 23.434 22.982 23.648M578.704 856.119c13.129.19 23.895-10.33 24.083-23.472s-10.323-23.92-23.452-24.11-23.895 10.329-24.083 23.471 10.323 23.921 23.452 24.111M636.664 856.53c12.939.142 23.595-10.182 23.731-23.196.14-12.952-10.176-23.62-23.181-23.819-12.94-.143-23.591 10.244-23.793 23.2-.14 12.952 10.237 23.615 23.176 23.758zM694.629 856.194c12.321.189 22.45-9.722 22.636-22.055.187-12.333-9.716-22.473-22.037-22.662s-22.449 9.722-22.636 22.055 9.716 22.473 22.037 22.662M752.591 854.988c11.261.144 20.523-8.893 20.666-20.165s-8.887-20.544-20.148-20.689-20.523 8.893-20.666 20.165c-.142 11.272 8.887 20.544 20.148 20.689M810.591 853.467c10.016.114 18.236-7.911 18.41-17.941.113-10.025-7.905-18.254-17.926-18.43-10.015-.114-18.235 7.911-18.41 17.941-.112 10.025 7.906 18.254 17.926 18.43M868.559 851.513c8.523.103 15.529-6.71 15.63-15.242s-6.707-15.545-15.23-15.647-15.529 6.71-15.63 15.242 6.707 15.545 15.23 15.647M926.56 849.184c6.845.105 12.461-5.359 12.503-12.206.104-6.852-5.355-12.474-12.196-12.517-6.845-.105-12.461 5.359-12.503 12.206-.104 6.851 5.356 12.474 12.196 12.517M984.543 846.607c4.976.06 9.027-3.917 9.086-8.899a8.98 8.98 0 0 0-8.892-9.096c-4.977-.06-9.028 3.917-9.086 8.899a8.98 8.98 0 0 0 8.892 9.096M1042.56 843.654c2.92.028 5.35-2.333 5.38-5.259s-2.33-5.361-5.25-5.389c-2.93-.028-5.36 2.333-5.39 5.259-.02 2.927 2.34 5.361 5.26 5.389M1100.51 840.706c.87-.003 1.63-.682 1.62-1.615 0-.871-.68-1.628-1.61-1.62-.87.003-1.63.683-1.62 1.615 0 .871.68 1.629 1.61 1.62M56.755 883.673s.186-.014.176-.137c-.004-.062-.014-.186-.137-.177-.062.005-.186.014-.176.138.004.062.014.186.137.176M114.688 887.011c1.492.011 2.768-1.205 2.779-2.699s-1.204-2.771-2.696-2.783c-1.493-.011-2.768 1.205-2.78 2.699-.011 1.494 1.204 2.771 2.697 2.783M172.619 891.157c3.361.058 6.14-2.641 6.197-6.005.056-3.364-2.64-6.147-6.001-6.204s-6.14 2.642-6.197 6.006c-.056 3.364 2.64 6.146 6.001 6.203M230.474 895.123c5.162.045 9.389-4.069 9.434-9.237.044-5.167-4.067-9.398-9.229-9.444-5.163-.045-9.389 4.07-9.434 9.237s4.067 9.399 9.229 9.444M288.43 898.77c6.721.114 12.28-5.283 12.389-12.073.113-6.728-5.28-12.293-12.063-12.403-6.722-.114-12.281 5.283-12.389 12.073-.113 6.728 5.341 12.288 12.063 12.403M346.286 901.926c8.091.136 14.687-6.336 14.821-14.434.072-8.094-6.332-14.702-14.422-14.838a14.65 14.65 0 0 0-14.821 14.435c-.072 8.093 6.332 14.702 14.422 14.837M404.243 904.764c9.207.113 16.794-7.241 16.901-16.52.111-9.216-7.299-16.807-16.507-16.92-9.207-.113-16.789 7.304-16.901 16.52-.111 9.217 7.237 16.812 16.507 16.92M462.167 907.169c10.139.105 18.416-7.986 18.524-18.073.103-10.15-7.982-18.436-18.064-18.607-10.139-.105-18.416 7.986-18.524 18.073-.103 10.15 7.982 18.436 18.059 18.545zM520.11 909.013c10.762.12 19.563-8.447 19.681-19.219s-8.441-19.583-19.203-19.703-19.562 8.447-19.681 19.219c-.123 10.711 8.441 19.583 19.203 19.703M578.06 910.109c10.89.173 19.862-8.593 20.032-19.494s-8.588-19.883-19.54-20.051c-10.89-.172-19.862 8.594-20.028 19.557-.171 10.9 8.588 19.882 19.479 20.055zM635.958 910.525c10.762.12 19.562-8.446 19.68-19.219.119-10.772-8.441-19.582-19.203-19.702s-19.562 8.446-19.68 19.218c-.119 10.773 8.441 19.583 19.203 19.703M693.932 910.313c10.206.162 18.597-8.062 18.696-18.273.16-10.216-8.057-18.617-18.258-18.717-10.206-.162-18.597 8.063-18.696 18.274-.16 10.215 8.057 18.616 18.258 18.716M751.922 909.478c9.331.103 16.975-7.318 17.077-16.658s-7.313-16.993-16.644-17.097c-9.331-.103-16.975 7.318-17.077 16.658s7.313 16.993 16.644 17.097M809.875 908.148c8.152.13 14.868-6.412 14.992-14.634.13-8.161-6.408-14.884-14.622-15.01-8.152-.13-14.867 6.412-14.992 14.634-.129 8.16 6.408 14.884 14.622 15.01M867.861 906.441c6.845.105 12.461-5.359 12.503-12.206.104-6.851-5.355-12.474-12.196-12.517-6.845-.105-12.461 5.359-12.503 12.206-.104 6.852 5.356 12.474 12.196 12.517M925.814 904.302c5.225.041 9.508-4.14 9.61-9.374.04-5.229-4.138-9.518-9.367-9.62-5.224-.041-9.507 4.14-9.609 9.374-.04 5.229 4.138 9.518 9.366 9.62M983.806 901.849a6.27 6.27 0 0 0 6.369-6.205 6.27 6.27 0 0 0-6.2-6.375 6.27 6.27 0 0 0-6.369 6.205 6.27 6.27 0 0 0 6.2 6.375M1041.85 899.206c1.61.002 2.88-1.276 2.95-2.837 0-1.618-1.27-2.89-2.83-2.959a2.96 2.96 0 0 0-2.96 2.837c0 1.618 1.28 2.89 2.84 2.959M1099.76 897.381s.3-.148.35-.338c-.02-.185-.15-.3-.34-.348-.18.014-.3.147-.35.338.02.185.15.3.34.348M113.989 942.748s.48-.223.462-.471c-.019-.247-.223-.481-.471-.462s-.48.223-.461.471.223.48.47.462M171.859 946.09c1.678-.002 3.068-1.352 3.065-3.031-.002-1.68-1.35-3.071-3.028-3.069s-3.068 1.352-3.066 3.031 1.351 3.071 3.029 3.069M229.767 949.927c3.361.057 6.14-2.641 6.197-6.005.056-3.364-2.64-6.147-6.001-6.204-3.36-.057-6.14 2.641-6.197 6.005-.056 3.364 2.64 6.147 6.001 6.204M287.709 953.388c4.853.069 8.908-3.846 8.976-8.704s-3.844-8.917-8.697-8.986-8.908 3.846-8.972 8.766c-.068 4.858 3.844 8.918 8.697 8.986zM345.617 956.417c6.099.099 11.135-4.823 11.233-10.928s-4.82-11.146-10.981-11.241c-6.098-.099-11.134 4.824-11.232 10.928s4.82 11.146 10.919 11.245zM403.56 959.069c7.216.077 13.122-5.658 13.198-12.881s-5.654-13.136-12.87-13.213-13.06 5.654-13.198 12.881c-.08 7.161 5.65 13.074 12.87 13.213M461.47 961.288c7.962.083 14.564-6.326 14.645-14.296.082-7.97-6.261-14.584-14.285-14.662-7.962-.083-14.563 6.327-14.645 14.297s6.261 14.583 14.285 14.661M519.39 962.823c8.4.112 15.348-6.635 15.454-15.105a15.25 15.25 0 0 0-15.091-15.471c-8.462-.108-15.349 6.635-15.455 15.104a15.253 15.253 0 0 0 15.092 15.472M577.34 963.919c8.584.098 15.647-6.782 15.806-15.38.096-8.593-6.778-15.664-15.367-15.824-8.585-.098-15.648 6.782-15.807 15.38-.096 8.593 6.778 15.664 15.368 15.824M635.313 964.516c8.523.102 15.529-6.711 15.631-15.242.101-8.532-6.707-15.545-15.23-15.648s-15.529 6.711-15.63 15.242 6.706 15.545 15.229 15.648M693.226 964.308c7.962.083 14.564-6.326 14.645-14.296.082-7.97-6.26-14.584-14.284-14.662-7.962-.082-14.564 6.327-14.645 14.297-.082 7.97 6.26 14.583 14.284 14.661M751.226 963.597c7.215.077 13.06-5.653 13.198-12.881.076-7.223-5.654-13.136-12.87-13.213s-13.123 5.658-13.198 12.881c-.081 7.161 5.649 13.074 12.87 13.213M809.201 962.576c6.223.09 11.315-4.899 11.404-11.128.089-6.228-4.896-11.326-11.118-11.416s-11.315 4.899-11.404 11.127 4.896 11.327 11.118 11.417M867.14 961.06c4.977.06 9.027-3.917 9.148-8.904a8.98 8.98 0 0 0-8.892-9.096c-4.977-.059-9.027 3.917-9.086 8.899a8.98 8.98 0 0 0 8.892 9.096zM925.107 959.107a6.27 6.27 0 0 0 6.369-6.205 6.27 6.27 0 0 0-6.2-6.376 6.27 6.27 0 0 0-6.369 6.205 6.27 6.27 0 0 0 6.2 6.376M983.123 956.963c1.868.045 3.372-1.437 3.417-3.307s-1.436-3.376-3.304-3.421c-1.868-.046-3.372 1.437-3.418 3.307-.045 1.87 1.498 3.371 3.305 3.421M1041.09 955.009c.37-.028.66-.299.64-.608-.03-.371-.3-.662-.61-.638-.37.028-.66.298-.64.608.03.371.3.661.61.638M171.199 1001.51s.48-.22.462-.47c-.019-.24-.223-.48-.47-.46-.248.02-.481.22-.462.47s.223.48.47.46M229.108 1004.54c1.492.01 2.768-1.2 2.779-2.7.012-1.49-1.204-2.769-2.696-2.78-1.493-.012-2.768 1.2-2.78 2.7-.011 1.49 1.204 2.77 2.697 2.78M287.026 1007.69a5.136 5.136 0 0 0 5.212-5.06c.032-2.861-2.256-5.177-5.056-5.214-2.862-.033-5.175 2.257-5.212 5.064-.032 2.86 2.256 5.18 5.056 5.21M344.935 1010.72c4.107.06 7.462-3.24 7.467-7.28.063-4.113-3.237-7.473-7.277-7.478-4.045-.068-7.401 3.234-7.468 7.288-.062 4.11 3.233 7.4 7.278 7.47M402.868 1013.25c5.039.05 9.208-3.99 9.262-9.04.054-5.041-3.991-9.215-9.029-9.269s-9.208 3.993-9.262 9.039c-.054 5.04 3.99 9.22 9.029 9.27M460.812 1015.09c5.661.07 10.354-4.45 10.418-10.18.069-5.665-4.45-10.363-10.173-10.429-5.662-.07-10.355 4.453-10.419 10.179-.069 5.67 4.45 10.37 10.174 10.43M518.746 1016.81c6.222.09 11.315-4.9 11.404-11.12.089-6.233-4.896-11.331-11.119-11.421s-11.315 4.899-11.403 11.131c-.089 6.22 4.896 11.32 11.118 11.41M576.681 1017.72c6.285.09 11.496-4.97 11.58-11.26s-4.972-11.509-11.256-11.594-11.495 4.975-11.58 11.264c-.084 6.29 4.972 11.51 11.256 11.59M634.593 1018.33c6.223.09 11.315-4.9 11.404-11.13s-4.896-11.329-11.118-11.419-11.315 4.899-11.404 11.129 4.896 11.33 11.118 11.42M692.582 1018.3c5.785.06 10.473-4.53 10.595-10.32.059-5.79-4.526-10.546-10.311-10.607s-10.535 4.527-10.595 10.317 4.526 10.55 10.311 10.61M750.529 1017.72c5.039.05 9.208-4 9.262-9.04s-3.991-9.218-9.03-9.273-9.208 3.993-9.262 9.033c-.054 5.05 3.991 9.22 9.03 9.28M808.505 1016.7c4.107.06 7.4-3.24 7.467-7.29.063-4.11-3.237-7.47-7.277-7.47-4.107-.07-7.463 3.23-7.468 7.28-.062 4.11 3.232 7.41 7.278 7.48M866.457 1015.36c2.924.03 5.356-2.33 5.383-5.25.028-2.93-2.332-5.37-5.255-5.39-2.924-.03-5.356 2.33-5.383 5.26-.028 2.92 2.332 5.36 5.255 5.38M924.448 1013.72a2.96 2.96 0 0 0 2.956-2.84 2.95 2.95 0 0 0-2.834-2.95c-1.617-.01-2.888 1.27-2.956 2.83a2.957 2.957 0 0 0 2.834 2.96M982.387 1012.2c.37-.02.661-.29.637-.6-.028-.37-.298-.67-.607-.64-.371.03-.661.3-.638.61.028.37.299.66.608.63M228.386 1059.97s.185-.02.176-.14c-.005-.06-.014-.18-.138-.18-.062.01-.185.02-.176.14.005.06.014.19.138.18M286.295 1062.19c.87-.01 1.627-.68 1.619-1.62-.004-.87-.683-1.63-1.614-1.62-.87.01-1.627.69-1.619 1.62.004.87.683 1.63 1.614 1.62M344.224 1064.65c1.868.05 3.367-1.49 3.417-3.3.045-1.87-1.436-3.38-3.366-3.42-1.868-.04-3.367 1.5-3.417 3.31-.045 1.87 1.436 3.37 3.304 3.42zM402.148 1067.06c2.738.04 4.994-2.18 5.035-4.92s-2.18-5-4.918-5.04c-2.738-.05-4.994 2.18-5.035 4.92s2.18 5 4.918 5.04M460.092 1068.9c3.36.06 6.14-2.64 6.196-6 .057-3.37-2.64-6.15-6-6.21-3.361-.05-6.14 2.65-6.197 6.01s2.64 6.15 6.001 6.2M518.017 1070.5c3.793.02 6.92-3.01 7.006-6.81.023-3.8-3.01-6.93-6.808-7.02-3.793-.02-6.982 3.02-7.006 6.82-.024 3.79 3.014 6.98 6.808 7.01M575.952 1071.41c3.921.08 7.101-3.09 7.177-7.01.077-3.93-3.085-7.11-7.007-7.19s-7.101 3.09-7.177 7.01c-.077 3.93 3.085 7.11 7.007 7.19M633.926 1072.01c3.793.02 6.982-3.02 7.006-6.82.024-3.79-3.01-6.92-6.808-7.01-3.793-.02-6.92 3.01-7.006 6.81-.024 3.8 3.01 6.93 6.808 7.02M691.862 1072.11a6.27 6.27 0 0 0 6.368-6.21 6.273 6.273 0 0 0-6.2-6.37 6.27 6.27 0 0 0-6.368 6.2 6.276 6.276 0 0 0 6.2 6.38M749.823 1071.71c2.861.03 5.174-2.26 5.211-5.06.033-2.86-2.256-5.18-5.055-5.22-2.862-.03-5.175 2.26-5.212 5.06-.032 2.87 2.256 5.18 5.056 5.22M807.813 1070.88c1.929.04 3.552-1.52 3.588-3.51.041-1.93-1.512-3.56-3.503-3.59-1.93-.04-3.553 1.51-3.589 3.5-.04 1.94 1.512 3.56 3.504 3.6M865.774 1069.67c.87 0 1.627-.68 1.619-1.62-.004-.87-.683-1.62-1.614-1.62-.87.01-1.627.69-1.619 1.62.004.87.683 1.63 1.614 1.62M923.726 1069.15s.3-.15.347-.34c-.014-.18-.147-.3-.337-.35-.185.02-.299.15-.347.34.014.19.147.3.337.35M343.531 1119.64s.3-.14.347-.33c-.014-.19-.147-.3-.337-.35-.185.01-.299.15-.347.34.014.18.147.3.337.34M401.451 1121.18c.618-.05 1.146-.46 1.161-1.08-.046-.62-.459-1.15-1.082-1.17-.618.05-1.141.53-1.161 1.09.047.62.46 1.14 1.082 1.16M459.376 1122.77a1.98 1.98 0 0 0 1.971-1.89 1.99 1.99 0 0 0-1.89-1.97c-1.06-.04-1.926.83-1.97 1.89.017 1.06.829 1.93 1.889 1.97M517.344 1124.12a2.574 2.574 0 0 0 2.604-2.56 2.583 2.583 0 0 0-2.559-2.61 2.58 2.58 0 0 0-2.604 2.56 2.583 2.583 0 0 0 2.559 2.61M575.28 1125.03c1.492.01 2.768-1.2 2.779-2.7.011-1.49-1.204-2.77-2.696-2.78s-2.769 1.2-2.78 2.7c-.011 1.49 1.204 2.77 2.697 2.78M633.253 1125.63a2.58 2.58 0 0 0 2.604-2.56 2.577 2.577 0 0 0-2.559-2.61 2.574 2.574 0 0 0-2.604 2.56 2.583 2.583 0 0 0 2.559 2.61M691.204 1125.91c1.183.04 2.107-.9 2.08-2.08.034-1.19-.906-2.11-2.089-2.15-1.184-.03-2.107.91-2.142 2.09-.039 1.13.905 2.11 2.089 2.15zM749.117 1125.71c.618-.05 1.146-.46 1.161-1.09-.047-.62-.46-1.14-1.082-1.16-.618.05-1.142.52-1.162 1.08.047.62.46 1.15 1.144 1.16zM807.101 1125.62s.299-.15.347-.34c-.014-.18-.147-.3-.337-.35-.185.02-.299.15-.347.34.014.19.147.3.337.35'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0-41h1166v542H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");

	& .product_main_section {
		padding-bottom: 0;
		overflow: hidden;

		& .product_top {
			display: flex;
			justify-content: center;
			position: relative;
			z-index: 2;
		}
	}

	& .product_extra_info_image {
		z-index: 1;

		&.left {
			left: 0;
			top: 50%;
			transform: translateY(-50%);

			& div {
				background-position: right center;
			}
		}

		&.right {
			right: 0;
			top: 50%;
			transform: translateY(-50%) rotate(180deg);

			& div {
				background-position: right center;
			}
		}
	}

	& .catalogue_clouds {
		background: transparent;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 3;
	}

	& .product_extra_info_image {

	}

	& .product__media-wrapper {
		& img {
			aspect-ratio: unset;
			width: 650px;
			max-width: 100%;
		}
	}
}

.trade_product {
	& product-recommendations {
		background-color: var(--Blue-4);
	}
}

@media (800px < width < 1281px) {
	product-recommendations {
		& .grid {
			& .grid__item {
				width: calc(50% - var(--grid-desktop-horizontal-spacing) * 1 / 2);
				max-width: calc(50% - var(--grid-desktop-horizontal-spacing) * 1 / 2);
			}
		}
	}
}


.catalogue {
	& .product_extra_info {
		display: flex;
		flex-flow: column;
		gap: var(--gap-m);
		padding-bottom: var(--gap-m);
	}

	& .catalogue_header {
		& h1 {
			text-align: center;
			margin: 0 0 15px;

			& strong {
				font-weight: 400;
				font-size: clamp(28px, 2.25vw, 42px);
			}
		}

		& .product_tags {
			margin: 0 0 15px;
		}

		& .product_description {
			& * {
				text-align: center;
			}
		}
	}

	& .product_faqs {
		gap: var(--gap-xs);
	}

	& product-recommendations {
		background: center / cover no-repeat;
		margin: var(--padding-s) var(--padding-xs) var(--padding-xs);
		border-radius: 30px;

		& .title_before {
			display: none;
		}

		& .related-products__heading {
			color: #FFFFFF;
		}
	}
}

@media (width < 800px) {
	.catalogue_product {
		height: auto;
		max-height: 100%;

		& .product__media-wrapper {
			& img {
				max-width: 65vw;
			}
		}

		& .product_extra_info_image {
			display: block !important;
		}
	}
}

@media (width < 600px) {
	.product_main_section {
		& .product_form_container {
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}

		& .product_buy_container {
			& .price_wrapper {
				justify-content: center;
				margin-bottom: 10px;
			}
		}

		& .product-form__quantity {
			& .form__label {
				text-align: center;
			}
		}
	}
}
