/* Development front-end by pprintdim.com */
/* 404 */
	#error-not-found {
		margin: 80px 0;
	}

	#error-not-found #content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 60vh;
	}

	#error-not-found .text-block {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#error-not-found h1,
	#error-not-found h2 {
		color: #161616;
		font-family: 'Cormorant Garamond', sans-serif;
		text-transform: uppercase;
		text-align: center;
		font-weight: 700;
	}

	#error-not-found h1 {
		font-size: 70px;
		margin-bottom: 40px;
	}

	#error-not-found h2 {font-size: 40px;}

	#error-not-found .btn-continue {
		text-align: center;
		margin-top: 60px;
		color: #FFF;
		text-transform: uppercase;
		padding: 20px 40px;
		background-color: #EF4751;
		font-weight: 500;
		text-decoration: unset!important;
	}

/* Sucess added */
	.alert-success {
	    color: #3c763d;
	    background-color: #dff0d8;
	    border-color: #d6e9c6;
	}
	.alert-dismissable, 
	.alert-dismissible {
    	padding-right: 35px;
	}

	.alert {
    	padding: 15px;
    	margin-bottom: 20px;
    	border: 1px solid transparent;
    	border-radius: 4px;
	}

	.alert-dismissable .close, 
	.alert-dismissible .close {
		position: relative;
    	color: inherit;
    	float: right;
	    font-size: 21px;
	    font-weight: 700;
	    line-height: 1;
	    color: #000;
	    text-shadow: 0 1px 0 #fff;
	    filter: alpha(opacity=20);
	    opacity: .2;
	}


/* All styles */
	html,
	body {
		margin: 0;
		padding: 0;
		scroll-behavior: smooth;
	}

	body {
		font-size: 18px;
		line-height: 1.2;
		font-family: 'Montserrat', sans-serif;
		font-style: normal;
		font-weight: 400;
		color: #161616;
		background-color: #F8F8F8;
	}

	body.active {overflow-y: hidden;}

	ul,li {
		list-style-type: none;
		padding: 0;
		margin: 0;
		display: block;
	}

	p,span {
		margin: 0;
		display: inline-block;
	}

	p {margin-bottom: 15px;}

	a {
		text-decoration: unset;
		color: inherit;
	}

	a:hover {text-decoration: underline;}

	main,
	body,
	footer {position: relative;}

	footer,
	section,
	header {display: block;}

	img {
		width: auto;
		height: auto;
		display: block;
	}

	button,
	input[type=submit] {cursor: pointer;}

	button,
	input, 
	textarea {
		border: unset;
		outline: unset;
		display: block;
		background-color: unset;
	}

	input:focus::placeholder,
	textarea:focus::placeholder {font-size: 0;}

	aside#column-left {width: 260px;}

	main .row.col-left {
		display: grid;
		grid-template-columns: max-content 1fr;
		grid-gap: 30px;
	}

	.container {
		max-width: 1920px;
		padding: 0 100px;
		margin: 0 auto;
		box-sizing: border-box;
	}
	@media(max-width: 1600px){
		.container {
			padding: 0 15px;
		}
		
	}

	h1,h2,h3,h4,h5 {
		font-weight: 600;
		margin: 0;
		display: block;
	}

	:after,
	:before {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		display: block;
	}

	ul,
	ol {padding: 0;}

	main {
		background-color: #FAFAFA;
	}

	main:not([id=common-home]) {
		margin: 80px 0;
	}

	button,
	input,
	textarea {
		padding: 0;
		display: block;
	}

	header,
	section {margin-bottom: 120px;}

/* Breadcrumb */
	ul.breadcrumb {
		display: flex;
		margin-bottom: 40px;
	}

	ul.breadcrumb li {
		color: #161616;
	}

	ul.breadcrumb li a,
	ul.breadcrumb li span {
		font-size: inherit;
		color: inherit;
		line-height: inherit;
		line-height: 1;
    	display: block;

	}

	ul.breadcrumb li:first-child {
		color: #9A9A9A;
	}

	ul.breadcrumb li:not(:last-child) {margin-right: 7px;}

	ul.breadcrumb li:not(:last-child) > * {
		display: grid;
		grid-template-columns: max-content auto;
		align-items: center;
	}

	ul.breadcrumb li:not(:last-child) > *:after {
		color: inherit;
		font-size: inherit;
		content: '>';
		margin-left: 7px;
	}


/* Top Nav */

	#menu-wrap {
		position: fixed;
		width: 100%;
		height: 100vh;
		z-index: 11;
		opacity: 0;
		left: 0;
		top: 0;
	}

	#menu-wrap-block {
		position: relative;
	}

	#menu-wrap-block .menu {right: -200px;}

	#menu-wrap-block .menu,
	#menu-wrap-block .sub-menu,
	#menu-wrap-block .sub-sub-menu {
		display: none;
		width: 280px;
		position: absolute;
		z-index: 111;
    	top: 15px;
	}

	#menu-wrap-block .sub-menu,
	#menu-wrap-block .sub-sub-menu {
		right: -279px;
		top: 0;
	}

	#menu-wrap-block .sub-menu:hover,
	#menu-wrap-block .sub-sub-menu:hover,
	#menu-wrap-block .menu > li:hover > .sub-menu,
	#menu-wrap-block .sub-menu > li:hover > .sub-sub-menu {display: flex;}

	#menu-wrap-block ul {
		flex-direction: column;
		background-color: #F8F8F8;
	}

	#menu-wrap-block ul li {
		padding: 10px;
		font-size: 16px;
		position: relative;
	}

	#menu-wrap-block ul li > ul {
		position: absolute;
	}

	#menu-wrap-block ul li:hover {
		background-color: #EF4751;
	}

	#menu-wrap-block ul li > a {
		font-size: 16px;
		color: #161616;
		text-decoration: unset!important;
	}

	#menu-wrap-block ul li:hover > a {
		color: #F8F8F8;
	}

	#menu-wrap-block ul li > a.sub-true {
		display: grid;
		grid-template-columns: auto max-content;
		justify-content: space-between;
		align-items: center;
	}

	#menu-wrap-block ul li > a.sub-true:after {
		content: '';
		width: 24px;
		height: 24px;
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.3 4.5L16.5 12L9.3 19.5L7.5 17.625L12.9 12L7.5 6.375L9.3 4.5Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#menu-wrap-block ul li:hover > a.sub-true:after {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.3 4.5L16.5 12L9.3 19.5L7.5 17.625L12.9 12L7.5 6.375L9.3 4.5Z' fill='%23F8F8F8'/%3E%3C/svg%3E%0A");
	}
	

	#menu-wrap-block.active .menu {
		display: flex;
	}

	#search-block {display: none;}

	#search-block.active {
		display: block;
	}

	#search-block .search-label {
		display: grid;
		grid-template-columns: max-content 1fr;
		grid-gap: 10px;
		align-items: center;
		height: 100%;
	}

	#search-block .search-label svg {
		display: block;
		width: 32px;
		height: 32px;
	}

	#search-block .search-label input {
		width: 100%;
		box-sizing: border-box;
		padding: 4px 0;
		border-bottom: 1px solid #DCDCDC;
		font-size: 16px;
		color: #161616;
		display: block;
		height: 100%;
	}

	#search-block .search-label input::placeholder {
		color: #9A9A9A;
	}

	#search-block .search-label input:focus::placeholder {font-size: 0;}

	#search-block .search {
		padding: 25px 0;
		max-width: 1306px;
		width: 100%;
		box-sizing: border-box;
		display: grid;
		grid-template-columns: 1fr max-content;
		grid-gap: 20px;
		margin: 0 auto;
	}

	#search-block .search button {
		padding: 10px 20px;
		font-size: 14px;
		color: #FFF;
		text-transform: uppercase;
		text-align: center;
		display: block;
		font-weight: 700;
		background-color: #EF4751;

	}

	#search-block .search button:after {
		content: 'ЗНАЙТИ';
		font-size: inherit;
		text-align: center;
		width: 100%;
		box-sizing: border-box;
		height: 100%;
	}
	

	#top-nav .main-block {
		display: grid;
		grid-template-columns: repeat(3,auto);
		align-items: center;
		justify-content: space-between;
		height: 100px;
	}

	#top-nav .left-column {
		display: grid;
		grid-template-columns: repeat(3,max-content);
		align-items: center;
		grid-gap: 50px;
	}

	#top-nav #logo {
		display: grid;
		grid-template-columns: repeat(2,max-content);
		align-items: center;
		grid-gap: 10px;
		text-decoration: unset;
	}

	#top-nav .logo-img {
		height: 45px;
		transform: rotate(0deg);
		transition: all .4s;
	}

	#top-nav .logo-img:hover {
		transform: rotate(360deg);
		transition: all .4s;
	}

	#top-nav .logo-title {
		font-weight: 700;
		font-size: 24px;
	}

	#top-nav .catalog-btn {
		padding: 10px 30px;
		background: #EF4751;
		display: grid;
		grid-template-columns: max-content auto;
		align-items: center;
		grid-gap: 10px;
		color: #FFF;
		font-size: 16px;
	}

	#top-nav .catalog-btn svg {
		display: block;
		width: 26px;
		height: 26px;
	}

	#top-nav .info-btn {
		padding: 0;
		height: 100%;
		grid-gap: 10px;
		display: grid;
		grid-template-columns: auto max-content;
		align-items: center;
		font-size: 16px;
		color: #161616;
	}

	#top-nav .info-btn:after {
		content: '';
		width: 16px;
		height: 10px;
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 2L8 10L6.99382e-07 2L2 -1.22392e-06L8 6L14 -1.74846e-07L16 2Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .info-list > li.active .info-btn:after {transform: scale(1,-1);}

	#top-nav .info-btn:after

	#top-nav .info-list > li {
		position: relative;
	}

	#top-nav .info-sub-item {
		display: none;
		flex-direction: column;
		min-width: 160px;
		position: absolute;
		background-color: #F8F8F8;
		top: 96px;
	}

	#top-nav .info-list > li.active .info-sub-item {
		display: flex;
		z-index: 11;
	}

	#top-nav .info-sub-item > li {
		color: #000;
		font-size: 16px;
		background-color: #F8F8F8;
	}

	#top-nav .info-sub-item > li:not(:last-child) {margin-bottom: 20px;}

	#top-nav .info-sub-item > li:hover {
		background-color: #C6323B;
		color: #F8F8F8;
	}

	#top-nav .info-sub-item > li a {
		font-size: inherit;
		display: block;
		box-sizing: border-box;
		padding: 10px 20px;
		color: inherit;
		text-decoration: unset!important;
	}

	#top-nav .right-column {
		display: grid;
		grid-template-columns: repeat(2,max-content);
		grid-gap: 50px;
		align-items: center;
	}

	#top-nav .contacts-block {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	#top-nav span.open {text-transform: uppercase;}

	#top-nav span.open,
	#top-nav a.phone {
		font-size: 16px;
		display: grid;
		grid-template-columns: max-content auto;
		grid-gap: 10px;
		align-items: center;
	}

	#top-nav span.open:before,
	#top-nav a.phone:before {
		content: '';
		width: 24px;
		height: 24px;
	}
	#top-nav span.open:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 20C16.4 20 20 16.4 20 12C20 7.6 16.4 4 12 4C7.6 4 4 7.6 4 12C4 16.4 7.6 20 12 20ZM12 2C17.5 2 22 6.5 22 12C22 17.5 17.5 22 12 22C6.5 22 2 17.5 2 12C2 6.5 6.5 2 12 2ZM17 11.5V13H11V7H12.5V11.5H17Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav a.phone:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25903 6.97181C2.28535 7.22146 2.34829 7.46586 2.44582 7.69711H2.42266C2.42564 7.70833 2.44283 7.73229 2.44582 7.74351C3.08537 9.56537 4.68723 13.0534 7.83941 16.2113C11.0148 19.3924 14.5607 20.9269 16.315 21.6147H16.3381C16.7778 21.7603 17.2475 21.7894 17.7017 21.6992C18.1559 21.6089 18.579 21.4024 18.9299 21.0998L18.9531 21.0766H18.9763L21.1945 18.8311L21.2879 18.7375C21.9065 18.1177 21.9065 17.0414 21.2879 16.4216L18.2291 13.3573C17.6105 12.7375 16.5129 12.7375 15.8943 13.3573L14.4239 14.8311C13.8897 14.5736 12.5763 13.9074 11.342 12.7255C10.1152 11.5541 9.49059 10.2091 9.26271 9.68512L10.8041 8.14097L10.8504 8.07136C11.0842 7.72031 11.2157 7.31986 11.2008 6.90145C11.1858 6.50998 10.9938 6.10355 10.6636 5.80265L10.7246 5.86099L10.6173 5.73229L7.62872 2.71433C7.01009 2.09457 5.91254 2.09457 5.29391 2.71433L2.98301 5.03094C2.64623 5.37296 2.41175 5.80259 2.3061 6.27121C2.25383 6.50108 2.23795 6.737 2.25903 6.97181ZM3.75331 6.85504C3.73314 6.57061 3.85268 6.28768 4.03349 6.10654L6.34513 3.76747C6.47364 3.63873 6.42732 3.63873 6.55508 3.76747L9.68484 6.9007C9.68186 6.89771 9.70502 6.9007 9.70801 6.97106C10.5755 6.45862 9.66094 7.11702 9.61461 7.20534L7.83941 9.00698L7.489 9.35728L7.65263 9.80189C7.65263 9.80189 8.51034 12.1028 10.3147 13.8251C12.0832 15.5182 14.2596 16.4448 14.2596 16.4448L14.7273 16.632L15.1009 16.2809L16.9687 14.4097C17.0972 14.2817 17.0509 14.2817 17.1786 14.4097L20.2374 17.474C20.3659 17.6028 20.3659 17.5564 20.2374 17.6844L17.9721 19.977C17.9669 19.983 17.9549 19.971 17.9497 19.977L17.9258 20.0002C17.6015 20.2607 17.2571 20.3393 16.8514 20.2113C16.8432 20.2083 16.8372 20.2135 16.829 20.2113C15.1412 19.5474 11.8351 18.0856 8.88989 15.135C5.93346 12.1731 4.41303 8.81387 3.8467 7.18214L3.82354 7.15893V7.13573C3.78245 7.04516 3.75929 6.9486 3.75331 6.85504Z' fill='%23161616'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.11688 2.5379C5.83277 1.8207 7.088 1.8207 7.80389 2.5379L10.8006 5.56413L10.908 5.69287C11.2365 6.02649 11.4323 6.46076 11.4487 6.8919C11.4658 7.36997 11.3151 7.82176 11.0567 8.20974C11.0566 8.20978 11.0567 8.20971 11.0567 8.20974L10.9967 8.29991L9.55883 9.74037C9.82613 10.3301 10.4278 11.5088 11.5129 12.5449C12.6114 13.5968 13.7762 14.2322 14.3725 14.5287L15.7172 13.1809C16.4331 12.4637 17.6884 12.4636 18.4043 13.1808L21.4631 16.2452C22.179 16.9624 22.179 18.1967 21.4631 18.9139L21.3706 19.0066L21.3697 19.0075L19.0793 21.3261H19.0475C18.6729 21.6366 18.2268 21.849 17.7492 21.9439C17.2663 22.0399 16.7672 22.0124 16.298 21.8642H16.267L16.2233 21.8471C14.4573 21.1546 10.8737 19.6049 7.66238 16.3877C4.48473 13.2043 2.86616 9.69012 2.21483 7.84017C2.21232 7.83576 2.20871 7.82931 2.20527 7.82269C2.20263 7.81762 2.19895 7.81026 2.19514 7.80152C2.19166 7.79352 2.18587 7.77935 2.18109 7.76138L2.12046 7.53362C2.06651 7.35931 2.02961 7.17993 2.01043 6.998L2.01003 6.99415C1.98661 6.73335 2.00428 6.47126 2.0623 6.21601C2.17821 5.70204 2.43541 5.23083 2.80478 4.85571L2.80592 4.85456L5.11688 2.5379ZM2.78322 7.94659C3.47547 9.80739 5.05395 13.0688 8.01459 16.0349C11.1279 19.1539 14.6041 20.6738 16.3611 21.3652H16.3773L16.4153 21.3778C16.8142 21.5099 17.2403 21.5363 17.6523 21.4544C18.0614 21.3732 18.4427 21.1879 18.7596 20.9166L18.849 20.8271H18.8714L21.0166 18.6555L21.0175 18.6546L21.1109 18.5611C21.6323 18.0387 21.6323 17.1204 21.1109 16.5981L18.0521 13.5337C17.5307 13.0114 16.5909 13.0114 16.0695 13.5336C16.0695 13.5337 16.0695 13.5336 16.0695 13.5336L14.4743 15.1326L14.315 15.0559C13.7724 14.7943 12.4313 14.1147 11.169 12.9059C9.90636 11.7002 9.26582 10.319 9.03347 9.78478L8.96568 9.62891L10.6096 7.982L10.6422 7.93295C10.8515 7.61886 10.9638 7.26907 10.951 6.91036C10.9396 6.61249 10.8005 6.29225 10.5496 6.0394L10.4907 5.98311L10.4961 5.97727L10.432 5.90043L7.45169 2.89074C7.45157 2.89063 7.4518 2.89086 7.45169 2.89074C6.93026 2.36878 5.99041 2.36853 5.46914 2.89069C5.46912 2.89071 5.46916 2.89067 5.46914 2.89069L3.15882 5.20671C2.855 5.51548 2.64345 5.90324 2.5481 6.32617C2.50176 6.52995 2.48749 6.73942 2.50598 6.94752C2.52984 7.1721 2.58656 7.39194 2.6743 7.59999L2.82047 7.94659H2.78322ZM6.44956 4.01548L4.20954 6.28207L4.20866 6.28295C4.07547 6.41638 3.98608 6.62977 4.0008 6.83735L4.00092 6.83909C4.00502 6.9032 4.02104 6.9701 4.04933 7.03247L4.04995 7.03383L4.06225 7.04615L4.081 7.10018C4.63901 8.70793 6.14268 12.0308 9.06506 14.9585C11.9513 17.85 15.1911 19.2966 16.8781 19.9629C16.8804 19.9632 16.8827 19.9635 16.885 19.9639C16.8991 19.966 16.9132 19.9693 16.9272 19.9739C17.2437 20.0732 17.4998 20.0185 17.7603 19.8126L17.7736 19.7996C17.7859 19.7874 17.7997 19.7762 17.815 19.7663C17.8251 19.7598 17.8353 19.7542 17.8456 19.7494L19.9896 17.5795L17.0727 14.6573L15.2704 16.463L14.7812 16.9225L14.1612 16.6745L14.257 16.4487C14.1612 16.6745 14.1613 16.6745 14.1612 16.6745L14.159 16.6735L14.1536 16.6712L14.1337 16.6625C14.1164 16.6549 14.0912 16.6437 14.0587 16.6289C13.9938 16.5993 13.8997 16.5555 13.7817 16.4978C13.5456 16.3823 13.2131 16.2109 12.8247 15.9859C12.0493 15.5366 11.045 14.8703 10.1417 14.0055C9.21539 13.1212 8.53573 12.0925 8.08858 11.2891C7.86453 10.8866 7.69773 10.5385 7.58667 10.2904C7.53111 10.1663 7.48944 10.067 7.46147 9.99832C7.44748 9.96395 7.43691 9.9372 7.42974 9.91878L7.42153 9.89747L7.41932 9.89166L7.4187 9.89C7.41867 9.88993 7.41839 9.88917 7.6517 9.80188L7.4187 9.89L7.41803 9.88819L7.1992 9.29358L7.66124 8.8317L7.66257 8.83036L9.42202 7.04469C9.43163 7.03216 9.44053 7.02224 9.44654 7.01577L6.44956 4.01548ZM9.92183 6.97312C9.92297 6.96936 9.92403 6.96558 9.925 6.96176L9.90944 6.96242C9.91344 6.96612 9.91757 6.96969 9.92183 6.97312ZM9.7781 6.64226C9.79958 6.63032 9.81921 6.61961 9.83709 6.61009C9.8894 6.58221 9.95178 6.55031 10.0042 6.53709C10.0168 6.53391 10.0553 6.52447 10.103 6.52986C10.1287 6.53276 10.1728 6.54162 10.218 6.57242C10.2688 6.60706 10.3053 6.6591 10.3205 6.719C10.3445 6.81329 10.3064 6.88687 10.2996 6.90006C10.2873 6.92404 10.2731 6.94299 10.2656 6.95239C10.238 6.987 10.1974 7.02381 10.168 7.04983C10.1217 7.09085 10.0595 7.14257 10.0011 7.19112C9.97616 7.21187 9.95189 7.23204 9.92987 7.25055C9.8909 7.2833 9.85827 7.31133 9.83477 7.33289C9.82946 7.33777 9.82513 7.34184 9.82168 7.34515L9.81693 7.35421L8.0144 9.18359L7.77695 9.42096L7.88497 9.71449L7.88533 9.71545L7.8869 9.7196L7.8938 9.7375C7.90008 9.75362 7.9097 9.77799 7.92269 9.8099C7.94867 9.87373 7.9881 9.9677 8.04115 10.0862C8.14729 10.3233 8.3077 10.6582 8.52362 11.0461C8.95637 11.8237 9.60765 12.8065 10.4855 13.6444C11.3507 14.4727 12.3192 15.1165 13.0741 15.5539C13.4509 15.7722 13.7729 15.9382 14.0002 16.0494C14.1138 16.105 14.2036 16.1468 14.2646 16.1745C14.2951 16.1884 14.3184 16.1988 14.3339 16.2056L14.3511 16.2131L14.3539 16.2143L14.6716 16.3414L14.9266 16.1017L16.7917 14.2332C16.7996 14.2253 16.8073 14.2175 16.814 14.2105C16.8186 14.2057 16.8229 14.2011 16.8272 14.1966C16.8291 14.1945 16.8312 14.1923 16.8335 14.1899C16.8415 14.1813 16.8512 14.1709 16.8594 14.1626C16.8689 14.1529 16.8893 14.1324 16.9159 14.1141C16.9445 14.0944 16.9988 14.0642 17.073 14.0642C17.1474 14.0642 17.2018 14.0945 17.2305 14.1143C17.2572 14.1328 17.2776 14.1534 17.2871 14.1631C17.2952 14.1715 17.3049 14.1819 17.3129 14.1905C17.3151 14.1929 17.3172 14.1951 17.3191 14.1972C17.3294 14.2081 17.3406 14.2199 17.3538 14.2332L20.4126 17.2976C20.426 17.311 20.4379 17.3223 20.4489 17.3327C20.453 17.3365 20.4579 17.3411 20.4631 17.346C20.4699 17.3523 20.477 17.359 20.483 17.3649C20.4927 17.3744 20.5133 17.3948 20.5317 17.4215C20.5514 17.4501 20.5819 17.5047 20.5819 17.5795C20.5819 17.6544 20.5513 17.7091 20.5314 17.7378C20.5129 17.7645 20.4922 17.7849 20.4825 17.7944C20.4741 17.8025 20.4637 17.8122 20.4551 17.8202C20.4527 17.8224 20.4504 17.8246 20.4483 17.8265C20.4375 17.8366 20.4259 17.8476 20.4128 17.8606C20.4126 17.8608 20.4123 17.861 20.4121 17.8613L18.1496 20.1511C18.1366 20.1645 18.1217 20.1769 18.105 20.1877C18.0906 20.1969 18.076 20.2044 18.0613 20.2102C17.6917 20.4992 17.28 20.5964 16.8133 20.4607C16.8126 20.4606 16.8119 20.4606 16.8112 20.4605C16.7957 20.4593 16.7793 20.4566 16.7625 20.452L16.7495 20.4485L16.737 20.4435C15.0366 19.7746 11.6936 18.2975 8.71286 15.3114C5.75467 12.3478 4.21855 8.99305 3.62949 7.31829L3.57356 7.26227V7.18592C3.53366 7.08329 3.51067 6.97642 3.5039 6.87184C3.4786 6.51111 3.628 6.15926 3.85598 5.93059C3.85582 5.93074 3.85614 5.93043 3.85598 5.93059L6.16723 3.59192L6.1681 3.59104C6.18147 3.57764 6.19275 3.56575 6.20309 3.55468C6.20501 3.55263 6.20713 3.55035 6.20938 3.54793C6.21742 3.53929 6.22713 3.52886 6.23529 3.52051C6.24478 3.5108 6.26516 3.49017 6.29175 3.47174C6.3203 3.45196 6.3748 3.4214 6.44946 3.4214C6.52423 3.4214 6.57882 3.45204 6.60751 3.47201C6.63418 3.49056 6.65456 3.51131 6.664 3.52104C6.67213 3.52941 6.68181 3.53987 6.6898 3.54852C6.69203 3.55093 6.69414 3.5532 6.69603 3.55525C6.70624 3.56623 6.71735 3.57803 6.73051 3.5913C6.73043 3.59122 6.7306 3.59138 6.73051 3.5913L9.7781 6.64226Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav a.phone:hover:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.11688 2.5379C5.83277 1.8207 7.088 1.8207 7.80389 2.5379L10.8006 5.56413L10.908 5.69287C11.2365 6.02649 11.4323 6.46076 11.4487 6.8919C11.4658 7.36997 11.3151 7.82176 11.0567 8.20974L10.9967 8.29991L9.55883 9.74037C9.82613 10.3301 10.4278 11.5088 11.5129 12.5449C12.6114 13.5968 13.7762 14.2322 14.3725 14.5287L15.7172 13.1809C16.4331 12.4637 17.6884 12.4636 18.4043 13.1808L21.4631 16.2452C22.179 16.9624 22.179 18.1967 21.4631 18.9139L21.3706 19.0066L21.3697 19.0075L19.0793 21.3261H19.0475C18.6729 21.6366 18.2267 21.849 17.7492 21.9439C17.2663 22.0399 16.7672 22.0124 16.298 21.8642H16.267L16.2233 21.8471C14.4573 21.1546 10.8737 19.6049 7.66238 16.3877C4.48473 13.2043 2.86616 9.69012 2.21483 7.84017C2.21232 7.83576 2.20871 7.82931 2.20527 7.82269C2.20263 7.81762 2.19895 7.81026 2.19514 7.80152C2.19166 7.79352 2.18587 7.77935 2.18109 7.76138L2.12046 7.53362C2.06651 7.35931 2.02961 7.17993 2.01043 6.998L2.01003 6.99415C1.98661 6.73335 2.00428 6.47126 2.0623 6.21601C2.17821 5.70204 2.43541 5.23083 2.80478 4.85571L2.80592 4.85456L5.11688 2.5379ZM2.78322 7.94659C3.47547 9.80739 5.05395 13.0688 8.01458 16.0349C11.1279 19.1539 14.6041 20.6738 16.3611 21.3652H16.3773L16.4153 21.3778C16.8142 21.5099 17.2403 21.5363 17.6523 21.4544C18.0614 21.3732 18.4427 21.1879 18.7596 20.9166L18.849 20.8271H18.8714L21.0166 18.6555L21.0175 18.6546L21.1109 18.5611C21.6322 18.0387 21.6322 17.1204 21.1109 16.5981L18.0521 13.5337C17.5307 13.0114 16.5909 13.0114 16.0695 13.5336L14.4743 15.1326L14.315 15.0559C13.7724 14.7943 12.4313 14.1147 11.169 12.9059C9.90636 11.7002 9.26582 10.319 9.03347 9.78478L8.96568 9.62891L10.6096 7.982L10.6422 7.93295C10.8515 7.61886 10.9638 7.26907 10.951 6.91036C10.9396 6.61249 10.8005 6.29225 10.5496 6.0394L10.4907 5.98311L10.4961 5.97727L10.432 5.90043L7.45169 2.89074C6.93026 2.36878 5.99041 2.36853 5.46914 2.89069L3.15882 5.20671C2.855 5.51548 2.64345 5.90324 2.5481 6.32617C2.50176 6.52995 2.48749 6.73942 2.50598 6.94752C2.52984 7.1721 2.58656 7.39194 2.6743 7.59999L2.82047 7.94659H2.78322ZM9.92182 6.97312C9.92297 6.96936 9.92403 6.96558 9.925 6.96176L9.90944 6.96242C9.91344 6.96612 9.91757 6.96969 9.92182 6.97312ZM9.7781 6.64226C9.79958 6.63032 9.81921 6.61961 9.83709 6.61009C9.8894 6.58221 9.95178 6.55031 10.0042 6.53709C10.0168 6.53391 10.0553 6.52447 10.103 6.52986C10.1287 6.53276 10.1728 6.54162 10.218 6.57242C10.2688 6.60706 10.3053 6.6591 10.3205 6.719C10.3445 6.81329 10.3064 6.88686 10.2996 6.90006C10.2873 6.92404 10.2731 6.94299 10.2656 6.95239C10.238 6.987 10.1974 7.02381 10.168 7.04983C10.1217 7.09085 10.0595 7.14257 10.0011 7.19112C9.97616 7.21187 9.95189 7.23204 9.92987 7.25055C9.8909 7.2833 9.85827 7.31133 9.83477 7.33289C9.82946 7.33777 9.82513 7.34184 9.82168 7.34515L9.81693 7.35421L8.0144 9.18359L7.77695 9.42096L7.88497 9.71449L7.88533 9.71545L7.8869 9.7196L7.8938 9.7375C7.90008 9.75362 7.9097 9.77799 7.92269 9.8099C7.94867 9.87373 7.9881 9.9677 8.04115 10.0862C8.14729 10.3233 8.3077 10.6582 8.52361 11.0461C8.95637 11.8237 9.60764 12.8065 10.4855 13.6444C11.3507 14.4727 12.3192 15.1165 13.0741 15.5539C13.4509 15.7722 13.7729 15.9382 14.0002 16.0494C14.1138 16.105 14.2036 16.1468 14.2646 16.1745C14.2951 16.1884 14.3184 16.1988 14.3339 16.2056L14.3511 16.2131L14.3539 16.2143L14.6716 16.3414L14.9266 16.1017L16.7917 14.2332C16.7996 14.2253 16.8073 14.2175 16.814 14.2105C16.8186 14.2057 16.8229 14.2011 16.8272 14.1966C16.8291 14.1945 16.8312 14.1923 16.8335 14.1899C16.8415 14.1813 16.8512 14.1709 16.8594 14.1626C16.8689 14.1529 16.8893 14.1324 16.9159 14.1141C16.9445 14.0944 16.9988 14.0642 17.073 14.0642C17.1474 14.0642 17.2018 14.0945 17.2305 14.1143C17.2572 14.1328 17.2776 14.1534 17.2871 14.1631C17.2952 14.1715 17.3049 14.1819 17.3129 14.1905C17.3151 14.1929 17.3172 14.1951 17.3191 14.1972C17.3294 14.2081 17.3406 14.2199 17.3538 14.2332L20.4126 17.2976C20.426 17.311 20.4379 17.3223 20.4489 17.3327C20.453 17.3365 20.4579 17.3411 20.4631 17.346C20.4699 17.3523 20.477 17.359 20.483 17.3649C20.4927 17.3744 20.5133 17.3948 20.5317 17.4215C20.5514 17.4501 20.5819 17.5047 20.5819 17.5795C20.5819 17.6544 20.5513 17.7091 20.5314 17.7378C20.5129 17.7645 20.4922 17.7849 20.4825 17.7944C20.4741 17.8025 20.4637 17.8122 20.4551 17.8202C20.4527 17.8224 20.4504 17.8246 20.4483 17.8265C20.4375 17.8366 20.4259 17.8476 20.4128 17.8606L20.4121 17.8613L18.1496 20.1511C18.1366 20.1645 18.1217 20.1769 18.105 20.1877C18.0906 20.1969 18.076 20.2044 18.0613 20.2102C17.6917 20.4992 17.28 20.5964 16.8133 20.4607L16.8112 20.4605C16.7957 20.4593 16.7793 20.4566 16.7625 20.452L16.7495 20.4485L16.737 20.4435C15.0366 19.7746 11.6936 18.2975 8.71286 15.3114C5.75467 12.3478 4.21855 8.99305 3.62949 7.31829L3.57356 7.26227V7.18592C3.53366 7.08329 3.51067 6.97642 3.5039 6.87184C3.4786 6.51111 3.628 6.15926 3.85598 5.93059L6.16723 3.59192L6.1681 3.59104C6.18147 3.57764 6.19275 3.56575 6.20309 3.55468C6.20501 3.55263 6.20713 3.55035 6.20938 3.54793C6.21742 3.53929 6.22713 3.52886 6.23529 3.52051C6.24478 3.5108 6.26515 3.49017 6.29175 3.47174C6.32029 3.45196 6.3748 3.4214 6.44946 3.4214C6.52423 3.4214 6.57882 3.45204 6.60751 3.47201C6.63418 3.49056 6.65456 3.51131 6.664 3.52104C6.67213 3.52941 6.68181 3.53987 6.6898 3.54852C6.69203 3.55093 6.69413 3.5532 6.69603 3.55525C6.70624 3.56623 6.71735 3.57803 6.73051 3.5913L9.7781 6.64226Z' fill='%23161616'/%3E%3Cpath d='M2.25903 6.97181C2.28535 7.22146 2.34829 7.46586 2.44582 7.69711H2.42266C2.42564 7.70833 2.44283 7.73229 2.44582 7.74351C3.08537 9.56537 4.68723 13.0534 7.83941 16.2113C11.0148 19.3924 14.5607 20.9269 16.315 21.6147H16.3381C16.7778 21.7603 17.2475 21.7894 17.7017 21.6992C18.1559 21.6089 18.579 21.4024 18.9299 21.0998L18.9531 21.0766H18.9763L21.1945 18.8311L21.2879 18.7375C21.9065 18.1177 21.9065 17.0414 21.2879 16.4216L18.2291 13.3573C17.6105 12.7375 16.5129 12.7375 15.8943 13.3573L14.4239 14.8311C13.8897 14.5736 12.5763 13.9074 11.342 12.7255C10.1152 11.5541 9.49059 10.2091 9.26271 9.68512L10.8041 8.14097L10.8504 8.07136C11.0842 7.72031 11.2157 7.31986 11.2008 6.90145C11.1858 6.50998 10.9938 6.10355 10.6636 5.80265L10.7246 5.86099L10.6173 5.73229L7.62872 2.71433C7.01009 2.09457 5.91254 2.09457 5.29391 2.71433L2.98301 5.03094C2.64623 5.37296 2.41175 5.80259 2.3061 6.27121C2.25383 6.50108 2.23795 6.737 2.25903 6.97181ZM3.75331 6.85504C3.73314 6.57061 3.85268 6.28768 4.03349 6.10654L6.34513 3.76747C6.47364 3.63873 6.42732 3.63873 6.55508 3.76747L9.68484 6.9007C9.68186 6.89771 9.70502 6.9007 9.70801 6.97106C10.5755 6.45862 9.66094 7.11702 9.61461 7.20534L7.83941 9.00698L7.489 9.35728L7.65263 9.80189C7.65263 9.80189 8.51034 12.1028 10.3147 13.8251C12.0832 15.5182 14.2596 16.4448 14.2596 16.4448L14.7273 16.632L15.1009 16.2809L16.9687 14.4097C17.0972 14.2817 17.0509 14.2817 17.1786 14.4097L20.2374 17.474C20.3659 17.6028 20.3659 17.5564 20.2374 17.6844L17.9721 19.977C17.9669 19.983 17.9549 19.971 17.9497 19.977L17.9258 20.0002C17.6015 20.2607 17.2571 20.3393 16.8514 20.2113C16.8432 20.2083 16.8372 20.2135 16.829 20.2113C15.1412 19.5474 11.8351 18.0856 8.88989 15.135C5.93346 12.1731 4.41303 8.81387 3.8467 7.18214L3.82354 7.15893V7.13573C3.78245 7.04516 3.75929 6.9486 3.75331 6.85504Z' fill='%23161616'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.11688 2.5379C5.83277 1.8207 7.088 1.8207 7.80389 2.5379L10.8006 5.56413L10.908 5.69287C11.2365 6.02649 11.4323 6.46076 11.4487 6.8919C11.4658 7.36997 11.3151 7.82176 11.0567 8.20974C11.0566 8.20978 11.0567 8.20971 11.0567 8.20974L10.9967 8.29991L9.55883 9.74037C9.82613 10.3301 10.4278 11.5088 11.5129 12.5449C12.6114 13.5968 13.7762 14.2322 14.3725 14.5287L15.7172 13.1809C16.4331 12.4637 17.6884 12.4636 18.4043 13.1808L21.4631 16.2452C22.179 16.9624 22.179 18.1967 21.4631 18.9139L21.3706 19.0066L21.3697 19.0075L19.0793 21.3261H19.0475C18.6729 21.6366 18.2268 21.849 17.7492 21.9439C17.2663 22.0399 16.7672 22.0124 16.298 21.8642H16.267L16.2233 21.8471C14.4573 21.1546 10.8737 19.6049 7.66238 16.3877C4.48473 13.2043 2.86616 9.69012 2.21483 7.84017C2.21232 7.83576 2.20871 7.82931 2.20527 7.82269C2.20263 7.81762 2.19895 7.81026 2.19514 7.80152C2.19166 7.79352 2.18587 7.77935 2.18109 7.76138L2.12046 7.53362C2.06651 7.35931 2.02961 7.17993 2.01043 6.998L2.01003 6.99415C1.98661 6.73335 2.00428 6.47126 2.0623 6.21601C2.17821 5.70204 2.43541 5.23083 2.80478 4.85571L2.80592 4.85456L5.11688 2.5379ZM2.78322 7.94659C3.47547 9.80739 5.05395 13.0688 8.01459 16.0349C11.1279 19.1539 14.6041 20.6738 16.3611 21.3652H16.3773L16.4153 21.3778C16.8142 21.5099 17.2403 21.5363 17.6523 21.4544C18.0614 21.3732 18.4427 21.1879 18.7596 20.9166L18.849 20.8271H18.8714L21.0166 18.6555L21.0175 18.6546L21.1109 18.5611C21.6323 18.0387 21.6323 17.1204 21.1109 16.5981L18.0521 13.5337C17.5307 13.0114 16.5909 13.0114 16.0695 13.5336C16.0695 13.5337 16.0695 13.5336 16.0695 13.5336L14.4743 15.1326L14.315 15.0559C13.7724 14.7943 12.4313 14.1147 11.169 12.9059C9.90636 11.7002 9.26582 10.319 9.03347 9.78478L8.96568 9.62891L10.6096 7.982L10.6422 7.93295C10.8515 7.61886 10.9638 7.26907 10.951 6.91036C10.9396 6.61249 10.8005 6.29225 10.5496 6.0394L10.4907 5.98311L10.4961 5.97727L10.432 5.90043L7.45169 2.89074C7.45157 2.89063 7.4518 2.89086 7.45169 2.89074C6.93026 2.36878 5.99041 2.36853 5.46914 2.89069C5.46912 2.89071 5.46916 2.89067 5.46914 2.89069L3.15882 5.20671C2.855 5.51548 2.64345 5.90324 2.5481 6.32617C2.50176 6.52995 2.48749 6.73942 2.50598 6.94752C2.52984 7.1721 2.58656 7.39194 2.6743 7.59999L2.82047 7.94659H2.78322ZM6.44956 4.01548L4.20954 6.28207L4.20866 6.28295C4.07547 6.41638 3.98608 6.62977 4.0008 6.83735L4.00092 6.83909C4.00502 6.9032 4.02104 6.9701 4.04933 7.03247L4.04995 7.03383L4.06225 7.04615L4.081 7.10018C4.63901 8.70793 6.14268 12.0308 9.06506 14.9585C11.9513 17.85 15.1911 19.2966 16.8781 19.9629C16.8804 19.9632 16.8827 19.9635 16.885 19.9639C16.8991 19.966 16.9132 19.9693 16.9272 19.9739C17.2437 20.0732 17.4998 20.0185 17.7603 19.8126L17.7736 19.7996C17.7859 19.7874 17.7997 19.7762 17.815 19.7663C17.8251 19.7598 17.8353 19.7542 17.8456 19.7494L19.9896 17.5795L17.0727 14.6573L15.2704 16.463L14.7812 16.9225L14.1612 16.6745L14.257 16.4487C14.1612 16.6745 14.1613 16.6745 14.1612 16.6745L14.159 16.6735L14.1536 16.6712L14.1337 16.6625C14.1164 16.6549 14.0912 16.6437 14.0587 16.6289C13.9938 16.5993 13.8997 16.5555 13.7817 16.4978C13.5456 16.3823 13.2131 16.2109 12.8247 15.9859C12.0493 15.5366 11.045 14.8703 10.1417 14.0055C9.21539 13.1212 8.53573 12.0925 8.08858 11.2891C7.86453 10.8866 7.69773 10.5385 7.58667 10.2904C7.53111 10.1663 7.48944 10.067 7.46147 9.99832C7.44748 9.96395 7.43691 9.9372 7.42974 9.91878L7.42153 9.89747L7.41932 9.89166L7.4187 9.89C7.41867 9.88993 7.41839 9.88917 7.6517 9.80188L7.4187 9.89L7.41803 9.88819L7.1992 9.29358L7.66124 8.8317L7.66257 8.83036L9.42202 7.04469C9.43163 7.03216 9.44053 7.02224 9.44654 7.01577L6.44956 4.01548ZM9.92183 6.97312C9.92297 6.96936 9.92403 6.96558 9.925 6.96176L9.90944 6.96242C9.91344 6.96612 9.91757 6.96969 9.92183 6.97312ZM9.7781 6.64226C9.79958 6.63032 9.81921 6.61961 9.83709 6.61009C9.8894 6.58221 9.95178 6.55031 10.0042 6.53709C10.0168 6.53391 10.0553 6.52447 10.103 6.52986C10.1287 6.53276 10.1728 6.54162 10.218 6.57242C10.2688 6.60706 10.3053 6.6591 10.3205 6.719C10.3445 6.81329 10.3064 6.88687 10.2996 6.90006C10.2873 6.92404 10.2731 6.94299 10.2656 6.95239C10.238 6.987 10.1974 7.02381 10.168 7.04983C10.1217 7.09085 10.0595 7.14257 10.0011 7.19112C9.97616 7.21187 9.95189 7.23204 9.92987 7.25055C9.8909 7.2833 9.85827 7.31133 9.83477 7.33289C9.82946 7.33777 9.82513 7.34184 9.82168 7.34515L9.81693 7.35421L8.0144 9.18359L7.77695 9.42096L7.88497 9.71449L7.88533 9.71545L7.8869 9.7196L7.8938 9.7375C7.90008 9.75362 7.9097 9.77799 7.92269 9.8099C7.94867 9.87373 7.9881 9.9677 8.04115 10.0862C8.14729 10.3233 8.3077 10.6582 8.52362 11.0461C8.95637 11.8237 9.60765 12.8065 10.4855 13.6444C11.3507 14.4727 12.3192 15.1165 13.0741 15.5539C13.4509 15.7722 13.7729 15.9382 14.0002 16.0494C14.1138 16.105 14.2036 16.1468 14.2646 16.1745C14.2951 16.1884 14.3184 16.1988 14.3339 16.2056L14.3511 16.2131L14.3539 16.2143L14.6716 16.3414L14.9266 16.1017L16.7917 14.2332C16.7996 14.2253 16.8073 14.2175 16.814 14.2105C16.8186 14.2057 16.8229 14.2011 16.8272 14.1966C16.8291 14.1945 16.8312 14.1923 16.8335 14.1899C16.8415 14.1813 16.8512 14.1709 16.8594 14.1626C16.8689 14.1529 16.8893 14.1324 16.9159 14.1141C16.9445 14.0944 16.9988 14.0642 17.073 14.0642C17.1474 14.0642 17.2018 14.0945 17.2305 14.1143C17.2572 14.1328 17.2776 14.1534 17.2871 14.1631C17.2952 14.1715 17.3049 14.1819 17.3129 14.1905C17.3151 14.1929 17.3172 14.1951 17.3191 14.1972C17.3294 14.2081 17.3406 14.2199 17.3538 14.2332L20.4126 17.2976C20.426 17.311 20.4379 17.3223 20.4489 17.3327C20.453 17.3365 20.4579 17.3411 20.4631 17.346C20.4699 17.3523 20.477 17.359 20.483 17.3649C20.4927 17.3744 20.5133 17.3948 20.5317 17.4215C20.5514 17.4501 20.5819 17.5047 20.5819 17.5795C20.5819 17.6544 20.5513 17.7091 20.5314 17.7378C20.5129 17.7645 20.4922 17.7849 20.4825 17.7944C20.4741 17.8025 20.4637 17.8122 20.4551 17.8202C20.4527 17.8224 20.4504 17.8246 20.4483 17.8265C20.4375 17.8366 20.4259 17.8476 20.4128 17.8606C20.4126 17.8608 20.4123 17.861 20.4121 17.8613L18.1496 20.1511C18.1366 20.1645 18.1217 20.1769 18.105 20.1877C18.0906 20.1969 18.076 20.2044 18.0613 20.2102C17.6917 20.4992 17.28 20.5964 16.8133 20.4607C16.8126 20.4606 16.8119 20.4606 16.8112 20.4605C16.7957 20.4593 16.7793 20.4566 16.7625 20.452L16.7495 20.4485L16.737 20.4435C15.0366 19.7746 11.6936 18.2975 8.71286 15.3114C5.75467 12.3478 4.21855 8.99305 3.62949 7.31829L3.57356 7.26227V7.18592C3.53366 7.08329 3.51067 6.97642 3.5039 6.87184C3.4786 6.51111 3.628 6.15926 3.85598 5.93059C3.85582 5.93074 3.85614 5.93043 3.85598 5.93059L6.16723 3.59192L6.1681 3.59104C6.18147 3.57764 6.19275 3.56575 6.20309 3.55468C6.20501 3.55263 6.20713 3.55035 6.20938 3.54793C6.21742 3.53929 6.22713 3.52886 6.23529 3.52051C6.24478 3.5108 6.26516 3.49017 6.29175 3.47174C6.3203 3.45196 6.3748 3.4214 6.44946 3.4214C6.52423 3.4214 6.57882 3.45204 6.60751 3.47201C6.63418 3.49056 6.65456 3.51131 6.664 3.52104C6.67213 3.52941 6.68181 3.53987 6.6898 3.54852C6.69203 3.55093 6.69414 3.5532 6.69603 3.55525C6.70624 3.56623 6.71735 3.57803 6.73051 3.5913C6.73043 3.59122 6.7306 3.59138 6.73051 3.5913L9.7781 6.64226Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}

	#top-nav #compare-total,
	#top-nav #cart-total,
	#top-nav #wishlist-total {
		border-radius: 50%;
		font-size: 10px;
		font-weight: 700;
		color: #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		width: 14px;
		height: 14px;
		top: -4px;
		right: -4px;
		background-color: #EF4751;
	}

	#top-nav .icons-list > li {
		font-size: 0;
		position: relative;
		width: 26px;
		height: 26px;
	}

	#top-nav .icons-list > li[type] {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		cursor: pointer;
		display: block;
	}

	#top-nav .icons-list > li[type] a,
	#top-nav .icons-list > li[type] button {
		display: block;
		width: 100%;
		height: 100%;
		cursor: pointer;
	}

	#top-nav .icons-list > li[type=register] {display: none;}

	#top-nav .icons-list > li[type=account],
	#top-nav .icons-list > li[type=login] {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 3C17.1576 3 18.7473 3.65848 19.9194 4.83058C21.0915 6.00268 21.75 7.5924 21.75 9.25C21.75 10.9076 21.0915 12.4973 19.9194 13.6694C18.7473 14.8415 17.1576 15.5 15.5 15.5C13.8424 15.5 12.2527 14.8415 11.0806 13.6694C9.90848 12.4973 9.25 10.9076 9.25 9.25C9.25 7.5924 9.90848 6.00268 11.0806 4.83058C12.2527 3.65848 13.8424 3 15.5 3ZM15.5 6.125C14.6712 6.125 13.8763 6.45424 13.2903 7.04029C12.7042 7.62634 12.375 8.4212 12.375 9.25C12.375 10.0788 12.7042 10.8737 13.2903 11.4597C13.8763 12.0458 14.6712 12.375 15.5 12.375C16.3288 12.375 17.1237 12.0458 17.7097 11.4597C18.2958 10.8737 18.625 10.0788 18.625 9.25C18.625 8.4212 18.2958 7.62634 17.7097 7.04029C17.1237 6.45424 16.3288 6.125 15.5 6.125ZM15.5 17.0625C19.6719 17.0625 28 19.1406 28 23.3125V28H3V23.3125C3 19.1406 11.3281 17.0625 15.5 17.0625ZM15.5 20.0312C10.8594 20.0312 5.96875 22.3125 5.96875 23.3125V25.0312H25.0312V23.3125C25.0312 22.3125 20.1406 20.0312 15.5 20.0312Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=wishlist] {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.7495 3C20.2383 3 18.0096 3.99123 16.4997 5.69494C14.9897 3.99123 12.761 3 10.2498 3C8.06263 3.00265 5.9658 3.87267 4.41923 5.41923C2.87267 6.9658 2.00265 9.06263 2 11.2498C2 20.2921 15.2259 27.5169 15.7884 27.8207C16.007 27.9384 16.2514 28 16.4997 28C16.7479 28 16.9923 27.9384 17.2109 27.8207C17.7734 27.5169 30.9993 20.2921 30.9993 11.2498C30.9967 9.06263 30.1266 6.9658 28.5801 5.41923C27.0335 3.87267 24.9367 3.00265 22.7495 3ZM22.0633 20.7946C20.3224 22.2718 18.4614 23.6014 16.4997 24.7695C14.5379 23.6014 12.6769 22.2718 10.936 20.7946C8.22735 18.4709 4.99993 14.9272 4.99993 11.2498C4.99993 9.85745 5.55304 8.52212 6.53758 7.53758C7.52212 6.55304 8.85745 5.99993 10.2498 5.99993C12.4747 5.99993 14.3372 7.1749 15.1109 9.06736C15.2236 9.34323 15.4158 9.57932 15.6631 9.7455C15.9105 9.91168 16.2017 10.0004 16.4997 10.0004C16.7976 10.0004 17.0889 9.91168 17.3362 9.7455C17.5835 9.57932 17.7758 9.34323 17.8884 9.06736C18.6621 7.1749 20.5246 5.99993 22.7495 5.99993C24.1419 5.99993 25.4772 6.55304 26.4617 7.53758C27.4463 8.52212 27.9994 9.85745 27.9994 11.2498C27.9994 14.9272 24.772 18.4709 22.0633 20.7946Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}
	
	#top-nav .icons-list > li[type=cart] {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.5 25.5C25.5 26.8875 24.3875 28 23 28C22.337 28 21.7011 27.7366 21.2322 27.2678C20.7634 26.7989 20.5 26.163 20.5 25.5C20.5 24.1125 21.6125 23 23 23C23.663 23 24.2989 23.2634 24.7678 23.7322C25.2366 24.2011 25.5 24.837 25.5 25.5ZM10.5 23C9.1125 23 8 24.1125 8 25.5C8 26.163 8.26339 26.7989 8.73223 27.2678C9.20107 27.7366 9.83696 28 10.5 28C11.8875 28 13 26.8875 13 25.5C13 24.1125 11.8875 23 10.5 23ZM10.75 18.7875L10.7125 18.9375C10.7125 19.1125 10.85 19.25 11.025 19.25H25.5V21.75H10.5C9.83696 21.75 9.20107 21.4866 8.73223 21.0178C8.26339 20.5489 8 19.913 8 19.25C8 18.8125 8.1125 18.4 8.3 18.05L10 14.9875L5.5 5.5H3V3H7.0875L8.2625 5.5H26.75C27.4375 5.5 28 6.0625 28 6.75C28 6.9625 27.9375 7.175 27.85 7.375L23.375 15.4625C22.95 16.225 22.125 16.75 21.1875 16.75H11.875L10.75 18.7875ZM12.375 14.25H14.25V11.75H11.2L12.375 14.25ZM15.5 11.75V14.25H19.25V11.75H15.5ZM19.25 10.5V8H15.5V10.5H19.25ZM23.1375 11.75H20.5V14.25H21.75L23.1375 11.75ZM25.225 8H20.5V10.5H23.8375L25.225 8ZM9.425 8L10.6 10.5H14.25V8H9.425Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=search] {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2857 3C14.7484 3 17.1103 3.97831 18.8517 5.71972C20.5931 7.46113 21.5714 9.82299 21.5714 12.2857C21.5714 14.5857 20.7286 16.7 19.3429 18.3286L19.7286 18.7143H20.8571L28 25.8571L25.8571 28L18.7143 20.8571V19.7286L18.3286 19.3429C16.6436 20.7811 14.501 21.5713 12.2857 21.5714C9.82299 21.5714 7.46113 20.5931 5.71972 18.8517C3.97831 17.1103 3 14.7484 3 12.2857C3 9.82299 3.97831 7.46113 5.71972 5.71972C7.46113 3.97831 9.82299 3 12.2857 3ZM12.2857 5.85714C8.71429 5.85714 5.85714 8.71429 5.85714 12.2857C5.85714 15.8571 8.71429 18.7143 12.2857 18.7143C15.8571 18.7143 18.7143 15.8571 18.7143 12.2857C18.7143 8.71429 15.8571 5.85714 12.2857 5.85714Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=compare] {
		background-image: url("data:image/svg+xml,%3Csvg width='36' height='39' viewBox='0 0 36 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3409 10V11.1364H25.6707V14.7249H17.3409V31.4713H22.2025V35H9.17763V31.4713H13.9623V14.7249H5.58912V11.1364H13.9623V10H17.3409ZM6.78529 16.3313L10.1681 19.7153C10.8372 20.3845 11.2929 21.237 11.4775 22.1652C11.6621 23.0933 11.5673 24.0553 11.2051 24.9296C10.843 25.8039 10.2297 26.5511 9.4429 27.0768C8.65606 27.6026 7.731 27.8832 6.78469 27.8832C5.83838 27.8832 4.91332 27.6026 4.12649 27.0768C3.33965 26.5511 2.72639 25.8039 2.36424 24.9296C2.00209 24.0553 1.90732 23.0933 2.09192 22.1652C2.27652 21.237 2.73219 20.3845 3.40132 19.7153L6.78768 16.3313H6.78529ZM24.6681 16.3313L28.0508 19.7153C28.72 20.3845 29.1756 21.237 29.3602 22.1652C29.5448 23.0933 29.4501 24.0553 29.0879 24.9296C28.7258 25.8039 28.1125 26.5511 27.3257 27.0768C26.5388 27.6026 25.6138 27.8832 24.6675 27.8832C23.7212 27.8832 22.7961 27.6026 22.0093 27.0768C21.2224 26.5511 20.6092 25.8039 20.247 24.9296C19.8849 24.0553 19.7901 23.0933 19.9747 22.1652C20.1593 21.237 20.615 20.3845 21.2841 19.7153L24.6681 16.3313ZM6.78529 19.7153L5.0939 21.4067C4.75925 21.7412 4.53133 22.1675 4.43897 22.6316C4.3466 23.0957 4.39393 23.5768 4.57498 24.0139C4.75603 24.4511 5.06266 24.8248 5.4561 25.0877C5.84953 25.3506 6.3121 25.4909 6.78529 25.4909C7.25848 25.4909 7.72105 25.3506 8.11448 25.0877C8.50792 24.8248 8.81455 24.4511 8.9956 24.0139C9.17665 23.5768 9.22398 23.0957 9.13161 22.6316C9.03925 22.1675 8.81133 21.7412 8.47668 21.4067L6.78529 19.7153ZM24.6681 19.7153L22.9767 21.4067C22.642 21.7412 22.4141 22.1675 22.3217 22.6316C22.2294 23.0957 22.2767 23.5768 22.4578 24.0139C22.6388 24.4511 22.9454 24.8248 23.3389 25.0877C23.7323 25.3506 24.1949 25.4909 24.6681 25.4909C25.1413 25.4909 25.6038 25.3506 25.9973 25.0877C26.3907 24.8248 26.6973 24.4511 26.8784 24.0139C27.0594 23.5768 27.1068 23.0957 27.0144 22.6316C26.922 22.1675 26.6941 21.7412 26.3595 21.4067L24.6681 19.7153Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=search].active,
	#top-nav .icons-list > li[type=search]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2857 3C14.7484 3 17.1103 3.97831 18.8517 5.71972C20.5931 7.46113 21.5714 9.82299 21.5714 12.2857C21.5714 14.5857 20.7286 16.7 19.3429 18.3286L19.7286 18.7143H20.8571L28 25.8571L25.8571 28L18.7143 20.8571V19.7286L18.3286 19.3429C16.6436 20.7811 14.501 21.5713 12.2857 21.5714C9.82299 21.5714 7.46113 20.5931 5.71972 18.8517C3.97831 17.1103 3 14.7484 3 12.2857C3 9.82299 3.97831 7.46113 5.71972 5.71972C7.46113 3.97831 9.82299 3 12.2857 3ZM12.2857 5.85714C8.71429 5.85714 5.85714 8.71429 5.85714 12.2857C5.85714 15.8571 8.71429 18.7143 12.2857 18.7143C15.8571 18.7143 18.7143 15.8571 18.7143 12.2857C18.7143 8.71429 15.8571 5.85714 12.2857 5.85714Z' fill='%23161616'/%3E%3Ccircle cx='12.5' cy='12.5' r='7.5' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=cart]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20C18.6125 20 17.5 21.1125 17.5 22.5C17.5 23.163 17.7634 23.7989 18.2322 24.2678C18.7011 24.7366 19.337 25 20 25C20.663 25 21.2989 24.7366 21.7678 24.2678C22.2366 23.7989 22.5 23.163 22.5 22.5C22.5 21.837 22.2366 21.2011 21.7678 20.7322C21.2989 20.2634 20.663 20 20 20ZM0 0V2.5H2.5L7 11.9875L5.3 15.05C5.1125 15.4 5 15.8125 5 16.25C5 16.913 5.26339 17.5489 5.73223 18.0178C6.20107 18.4866 6.83696 18.75 7.5 18.75H22.5V16.25H8.025C7.9421 16.25 7.8626 16.2171 7.804 16.1585C7.7454 16.0999 7.7125 16.0204 7.7125 15.9375C7.7125 15.875 7.725 15.825 7.75 15.7875L8.875 13.75H18.1875C19.125 13.75 19.95 13.225 20.375 12.4625L24.85 4.375C24.9375 4.175 25 3.9625 25 3.75C25 3.4185 24.8683 3.1005 24.6339 2.8661C24.3995 2.6317 24.0815 2.5 23.75 2.5H5.2625L4.0875 0M7.5 20C6.1125 20 5 21.1125 5 22.5C5 23.163 5.26339 23.7989 5.73223 24.2678C6.20107 24.7366 6.83696 25 7.5 25C8.163 25 8.7989 24.7366 9.2678 24.2678C9.7366 23.7989 10 23.163 10 22.5C10 21.837 9.7366 21.2011 9.2678 20.7322C8.7989 20.2634 8.163 20 7.5 20Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=wishlist]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 11.9196C29 19.7321 17.4163 26.0558 16.923 26.317C16.793 26.3869 16.6476 26.4235 16.5 26.4235C16.3524 26.4235 16.207 26.3869 16.077 26.317C15.5837 26.0558 4 19.7321 4 11.9196C4.00207 10.0851 4.73176 8.32624 6.029 7.029C7.32624 5.73176 9.08507 5.00207 10.9196 5C13.2243 5 15.2422 5.99107 16.5 7.66629C17.7578 5.99107 19.7757 5 22.0804 5C23.9149 5.00207 25.6738 5.73176 26.971 7.029C28.2682 8.32624 28.9979 10.0851 29 11.9196Z' fill='%23161616'/%3E%3Cpath d='M22.7495 3C20.2383 3 18.0096 3.99123 16.4997 5.69494C14.9897 3.99123 12.761 3 10.2498 3C8.06263 3.00265 5.9658 3.87267 4.41923 5.41923C2.87267 6.9658 2.00265 9.06263 2 11.2498C2 20.2921 15.2259 27.5169 15.7884 27.8207C16.007 27.9384 16.2514 28 16.4997 28C16.7479 28 16.9923 27.9384 17.2109 27.8207C17.7734 27.5169 30.9993 20.2921 30.9993 11.2498C30.9967 9.06263 30.1266 6.9658 28.5801 5.41923C27.0335 3.87267 24.9367 3.00265 22.7495 3ZM22.0633 20.7946C20.3224 22.2718 18.4614 23.6014 16.4997 24.7695C14.5379 23.6014 12.6769 22.2718 10.936 20.7946C8.22735 18.4709 4.99993 14.9272 4.99993 11.2498C4.99993 9.85745 5.55304 8.52212 6.53758 7.53758C7.52212 6.55304 8.85745 5.99993 10.2498 5.99993C12.4747 5.99993 14.3372 7.1749 15.1109 9.06736C15.2236 9.34323 15.4158 9.57932 15.6631 9.7455C15.9105 9.91168 16.2017 10.0004 16.4997 10.0004C16.7976 10.0004 17.0889 9.91168 17.3362 9.7455C17.5835 9.57932 17.7758 9.34323 17.8884 9.06736C18.6621 7.1749 20.5246 5.99993 22.7495 5.99993C24.1419 5.99993 25.4772 6.55304 26.4617 7.53758C27.4463 8.52212 27.9994 9.85745 27.9994 11.2498C27.9994 14.9272 24.772 18.4709 22.0633 20.7946Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=account]:hover,
	#top-nav .icons-list > li[type=login]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 3C17.1576 3 18.7473 3.65848 19.9194 4.83058C21.0915 6.00268 21.75 7.5924 21.75 9.25C21.75 10.9076 21.0915 12.4973 19.9194 13.6694C18.7473 14.8415 17.1576 15.5 15.5 15.5C13.8424 15.5 12.2527 14.8415 11.0806 13.6694C9.90848 12.4973 9.25 10.9076 9.25 9.25C9.25 7.5924 9.90848 6.00268 11.0806 4.83058C12.2527 3.65848 13.8424 3 15.5 3ZM15.5 6.125C14.6712 6.125 13.8763 6.45424 13.2903 7.04029C12.7042 7.62634 12.375 8.4212 12.375 9.25C12.375 10.0788 12.7042 10.8737 13.2903 11.4597C13.8763 12.0458 14.6712 12.375 15.5 12.375C16.3288 12.375 17.1237 12.0458 17.7097 11.4597C18.2958 10.8737 18.625 10.0788 18.625 9.25C18.625 8.4212 18.2958 7.62634 17.7097 7.04029C17.1237 6.45424 16.3288 6.125 15.5 6.125ZM15.5 17.0625C19.6719 17.0625 28 19.1406 28 23.3125V28H3V23.3125C3 19.1406 11.3281 17.0625 15.5 17.0625ZM15.5 20.0312C10.8594 20.0312 5.96875 22.3125 5.96875 23.3125V25.0312H25.0312V23.3125C25.0312 22.3125 20.1406 20.0312 15.5 20.0312Z' fill='%23161616'/%3E%3Cpath d='M15.5 3C17.1576 3 18.7473 3.65848 19.9194 4.83058C21.0915 6.00268 21.75 7.5924 21.75 9.25C21.75 10.9076 21.0915 12.4973 19.9194 13.6694C18.7473 14.8415 17.1576 15.5 15.5 15.5C13.8424 15.5 12.2527 14.8415 11.0806 13.6694C9.90848 12.4973 9.25 10.9076 9.25 9.25C9.25 7.5924 9.90848 6.00268 11.0806 4.83058C12.2527 3.65848 13.8424 3 15.5 3ZM15.5 18.625C22.4062 18.625 28 21.4219 28 24.875V28H3V24.875C3 21.4219 8.59375 18.625 15.5 18.625Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=compare]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3409 3V4.13636H25.6707V7.72488H17.3409V24.4713H22.2025V28H9.17763V24.4713H13.9623V7.72488H5.58912V4.13636H13.9623V3H17.3409ZM6.78529 9.33134L10.1681 12.7153C10.8372 13.3845 11.2929 14.237 11.4775 15.1652C11.6621 16.0933 11.5673 17.0553 11.2051 17.9296C10.843 18.8039 10.2297 19.5511 9.4429 20.0768C8.65606 20.6026 7.731 20.8832 6.78469 20.8832C5.83838 20.8832 4.91332 20.6026 4.12649 20.0768C3.33965 19.5511 2.72639 18.8039 2.36424 17.9296C2.00209 17.0553 1.90732 16.0933 2.09192 15.1652C2.27652 14.237 2.73219 13.3845 3.40132 12.7153L6.78768 9.33134H6.78529ZM24.6681 9.33134L28.0508 12.7153C28.72 13.3845 29.1756 14.237 29.3602 15.1652C29.5448 16.0933 29.4501 17.0553 29.0879 17.9296C28.7258 18.8039 28.1125 19.5511 27.3257 20.0768C26.5388 20.6026 25.6138 20.8832 24.6675 20.8832C23.7212 20.8832 22.7961 20.6026 22.0093 20.0768C21.2224 19.5511 20.6092 18.8039 20.247 17.9296C19.8849 17.0553 19.7901 16.0933 19.9747 15.1652C20.1593 14.237 20.615 13.3845 21.2841 12.7153L24.6681 9.33134ZM6.78529 12.7153L5.0939 14.4067C4.75925 14.7412 4.53133 15.1675 4.43897 15.6316C4.3466 16.0957 4.39393 16.5768 4.57498 17.0139C4.75603 17.4511 5.06266 17.8248 5.4561 18.0877C5.84953 18.3506 6.3121 18.4909 6.78529 18.4909C7.25848 18.4909 7.72105 18.3506 8.11448 18.0877C8.50791 17.8248 8.81455 17.4511 8.9956 17.0139C9.17665 16.5768 9.22398 16.0957 9.13161 15.6316C9.03925 15.1675 8.81133 14.7412 8.47668 14.4067L6.78529 12.7153ZM24.6681 12.7153L22.9767 14.4067C22.642 14.7412 22.4141 15.1675 22.3217 15.6316C22.2294 16.0957 22.2767 16.5768 22.4578 17.0139C22.6388 17.4511 22.9454 17.8248 23.3389 18.0877C23.7323 18.3506 24.1949 18.4909 24.6681 18.4909C25.1413 18.4909 25.6038 18.3506 25.9973 18.0877C26.3907 17.8248 26.6973 17.4511 26.8784 17.0139C27.0594 16.5768 27.1068 16.0957 27.0144 15.6316C26.922 15.1675 26.6941 14.7412 26.3595 14.4067L24.6681 12.7153Z' fill='%23161616'/%3E%3Cellipse cx='25' cy='16' rx='3' ry='4' fill='%23161616'/%3E%3Cellipse cx='7' cy='16' rx='3' ry='4' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=logout] {
		width: 22px;
		background-image: url("data:image/svg+xml,%3Csvg width='25' height='29' viewBox='0 0 25 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0096 12.5714H20.238L19.665 11.9838L19.6635 11.9822C19.1887 11.4931 18.8027 11.0816 18.5053 10.7332C18.2163 10.3946 17.9676 10.0663 17.808 9.74721C17.6455 9.42218 17.5092 8.97172 17.6719 8.48026C17.8243 8.02014 18.1697 7.74858 18.3978 7.59652L18.4066 7.59062L18.4156 7.58491C18.7494 7.3725 19.1337 7.26879 19.55 7.29906C19.9412 7.32752 20.3063 7.47005 20.6381 7.65441C21.2836 8.01303 22.0238 8.6574 22.9125 9.54582L23.6667 10.2825V6.54286V1.42857H12.6667H1.66675V14.7143V28H12.6667H23.6667V22.8857V19.146L22.9083 19.8868L22.9067 19.8884C21.904 20.8633 21.141 21.5486 20.5231 21.8718C20.1931 22.0444 19.7686 22.1887 19.2969 22.0981C18.8147 22.0055 18.4947 21.7086 18.2928 21.4618C18.0902 21.2142 17.8978 20.8884 17.8466 20.4745C17.7951 20.058 17.902 19.679 18.0652 19.3528C18.3606 18.7618 18.9604 18.1216 19.7425 17.3674C19.743 17.3669 19.7435 17.3664 19.744 17.3659L20.0681 17.051L15.0879 16.8565C15.0874 16.8565 15.0869 16.8565 15.0864 16.8564C11.9423 16.7431 10.0342 16.6424 8.89372 16.4421C8.33013 16.3431 7.8174 16.1996 7.41932 15.9242C6.94881 15.5988 6.73845 15.1642 6.65645 14.7332C6.59576 14.4262 6.52701 13.7908 7.06876 13.2931C7.28604 13.0934 7.54037 12.9798 7.76417 12.9074C7.99274 12.8334 8.25195 12.7828 8.53227 12.7448C9.61612 12.5977 11.5854 12.5714 15.0096 12.5714Z' fill='white' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
	}

	#top-nav .icons-list > li[type=logout]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='25' height='29' viewBox='0 0 25 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.666748 14.7143V29H12.6667H24.6667V22.8857V16.7714L22.2096 19.1714C20.1525 21.1714 19.581 21.4571 19.0667 20.8286C18.5525 20.2 18.8382 19.6286 20.4382 18.0857L22.4382 16.1429L15.1239 15.8571C8.78103 15.6286 7.80961 15.4571 7.63818 14.5429C7.46675 13.6857 8.09532 13.5714 15.0096 13.5714H22.6096L20.381 11.2857C18.4953 9.34286 18.2667 8.88571 18.9525 8.42857C19.581 8.02857 20.4382 8.48571 22.2096 10.2571L24.6667 12.6571V6.54286V0.428569H12.6667H0.666748V14.7143Z' fill='black'/%3E%3C/svg%3E%0A");
	}

	#top-nav .laungages-bar > li {
		position: relative;
	}

	#top-nav .form-language ul {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 10px;
	}

	#top-nav .form-language ul li button {
		font-size: 16px;
		color: inherit;
		text-transform: uppercase;
	}

	#top-nav .form-language ul li.current {color: #161616;}

	#top-nav .form-language ul li.other {color: #ABABAB;}

	#footer {
		border-top: 1px solid #DCDCDC;
	}

	#footer .container {
		padding-top: 60px;
		padding-bottom: 30px;
	}

	#footer .main-block {
		display: grid;
		grid-template-columns: 1fr max-content;
		grid-gap: 20px;
	}

	#footer .left-column {
		display: grid;
		grid-template-columns: repeat(3,auto);
		grid-gap: 20px;
	}

	#footer .left-column ul li a {
		font-size: 16px;
		color: #161616;
	}

	#footer .left-column ul.first-menu {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: 100%;
		max-width: 260px;
	}

	#footer .left-column ul.last-menu {
		display: grid;
		grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
		grid-gap: 20px;
	}

	#footer .right-column {
		max-width: 400px;
		width: 100%;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}

	#footer .right-column > h3 {
		font-size: 16px!important;
		line-height: 1.4;
		text-transform: unset!important;
		font-weight: 600;
		color: #161616;
		margin-bottom: 20px!important;
		font-family: 'Montserrat', sans-serif;
	}

	#footer .subscribe-form {
		display: flex;
		flex-direction: column;
	}

	#footer .subscribe-form input {
		padding: 10px;
		font-size: 16px;
		color: #161616;
		border: 1px solid #DCDCDC;
		display: block;
		box-sizing: border-box;
	}

	#footer .subscribe-form input:placeholder {
		opacity: 0.2;
	}

	#footer .subscribe-form input:focus::placeholder {font-size: 0;}


	#footer .subscribe-form button {
		box-sizing: border-box;
		padding: 17px 0;
		width: 100%;
		text-transform: uppercase;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		border: 1px solid var(--ef-4751, #EF4751);
		color: var(--161616, #161616);
		margin-top: 10px;
	}

	#footer .contacts-block {
		display: flex;
		flex-direction: column;
	}

	#footer .contacts-block > h3 {
		margin-bottom: 20px;
		font-size: 16px;
		color: #161616;
	}

	#footer .contacts-list {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	#footer .contacts-list li {
		font-size: 16px;
		color: var(--161616, #161616);
		text-transform: uppercase;
	}

	#footer .contacts-list li {
		display: grid;
		grid-template-columns: max-content auto;
		align-items: center;
		grid-gap: 10px;
	}

	#footer .contacts-list li:before {
		content: '';
		width: 24px;
		height: 24px;
	}

	#footer .contacts-list li[type=time]:before {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20C16.4 20 20 16.4 20 12C20 7.6 16.4 4 12 4C7.6 4 4 7.6 4 12C4 16.4 7.6 20 12 20ZM12 2C17.5 2 22 6.5 22 12C22 17.5 17.5 22 12 22C6.5 22 2 17.5 2 12C2 6.5 6.5 2 12 2ZM17 11.5V13H11V7H12.5V11.5H17Z' fill='%23161616'/%3E%3C/svg%3E");
	}

	#footer .contacts-list li[type=phone]:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25903 6.97181C2.28535 7.22146 2.34829 7.46586 2.44582 7.69711H2.42266C2.42564 7.70833 2.44283 7.73229 2.44582 7.74351C3.08537 9.56537 4.68723 13.0534 7.83941 16.2113C11.0148 19.3924 14.5607 20.9269 16.315 21.6147H16.3381C16.7778 21.7603 17.2475 21.7894 17.7017 21.6992C18.1559 21.6089 18.579 21.4024 18.9299 21.0998L18.9531 21.0766H18.9763L21.1945 18.8311L21.2879 18.7375C21.9065 18.1177 21.9065 17.0414 21.2879 16.4216L18.2291 13.3573C17.6105 12.7375 16.5129 12.7375 15.8943 13.3573L14.4239 14.8311C13.8897 14.5736 12.5763 13.9074 11.342 12.7255C10.1152 11.5541 9.49059 10.2091 9.26271 9.68512L10.8041 8.14097L10.8504 8.07136C11.0842 7.72031 11.2157 7.31986 11.2008 6.90145C11.1858 6.50998 10.9938 6.10355 10.6636 5.80265L10.7246 5.86099L10.6173 5.73229L7.62872 2.71433C7.01009 2.09457 5.91254 2.09457 5.29391 2.71433L2.98301 5.03094C2.64623 5.37296 2.41175 5.80259 2.3061 6.27121C2.25383 6.50108 2.23795 6.737 2.25903 6.97181ZM3.75331 6.85504C3.73314 6.57061 3.85268 6.28768 4.03349 6.10654L6.34513 3.76747C6.47364 3.63873 6.42732 3.63873 6.55508 3.76747L9.68484 6.9007C9.68186 6.89771 9.70502 6.9007 9.70801 6.97106C10.5755 6.45862 9.66094 7.11702 9.61461 7.20534L7.83941 9.00698L7.489 9.35728L7.65263 9.80189C7.65263 9.80189 8.51034 12.1028 10.3147 13.8251C12.0832 15.5182 14.2596 16.4448 14.2596 16.4448L14.7273 16.632L15.1009 16.2809L16.9687 14.4097C17.0972 14.2817 17.0509 14.2817 17.1786 14.4097L20.2374 17.474C20.3659 17.6028 20.3659 17.5564 20.2374 17.6844L17.9721 19.977C17.9669 19.983 17.9549 19.971 17.9497 19.977L17.9258 20.0002C17.6015 20.2607 17.2571 20.3393 16.8514 20.2113C16.8432 20.2083 16.8372 20.2135 16.829 20.2113C15.1412 19.5474 11.8351 18.0856 8.88989 15.135C5.93346 12.1731 4.41303 8.81387 3.8467 7.18214L3.82354 7.15893V7.13573C3.78245 7.04516 3.75929 6.9486 3.75331 6.85504Z' fill='%23161616'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.11688 2.5379C5.83277 1.8207 7.088 1.8207 7.80389 2.5379L10.8006 5.56413L10.908 5.69287C11.2365 6.02649 11.4323 6.46076 11.4487 6.8919C11.4658 7.36997 11.3151 7.82176 11.0567 8.20974C11.0566 8.20978 11.0567 8.20971 11.0567 8.20974L10.9967 8.29991L9.55883 9.74037C9.82613 10.3301 10.4278 11.5088 11.5129 12.5449C12.6114 13.5968 13.7762 14.2322 14.3725 14.5287L15.7172 13.1809C16.4331 12.4637 17.6884 12.4636 18.4043 13.1808L21.4631 16.2452C22.179 16.9624 22.179 18.1967 21.4631 18.9139L21.3706 19.0066L21.3697 19.0075L19.0793 21.3261H19.0475C18.6729 21.6366 18.2268 21.849 17.7492 21.9439C17.2663 22.0399 16.7672 22.0124 16.298 21.8642H16.267L16.2233 21.8471C14.4573 21.1546 10.8737 19.6049 7.66238 16.3877C4.48473 13.2043 2.86616 9.69012 2.21483 7.84017C2.21232 7.83576 2.20871 7.82931 2.20527 7.82269C2.20263 7.81762 2.19895 7.81026 2.19514 7.80152C2.19166 7.79352 2.18587 7.77935 2.18109 7.76138L2.12046 7.53362C2.06651 7.35931 2.02961 7.17993 2.01043 6.998L2.01003 6.99415C1.98661 6.73335 2.00428 6.47126 2.0623 6.21601C2.17821 5.70204 2.43541 5.23083 2.80478 4.85571L2.80592 4.85456L5.11688 2.5379ZM2.78322 7.94659C3.47547 9.80739 5.05395 13.0688 8.01459 16.0349C11.1279 19.1539 14.6041 20.6738 16.3611 21.3652H16.3773L16.4153 21.3778C16.8142 21.5099 17.2403 21.5363 17.6523 21.4544C18.0614 21.3732 18.4427 21.1879 18.7596 20.9166L18.849 20.8271H18.8714L21.0166 18.6555L21.0175 18.6546L21.1109 18.5611C21.6323 18.0387 21.6323 17.1204 21.1109 16.5981L18.0521 13.5337C17.5307 13.0114 16.5909 13.0114 16.0695 13.5336C16.0695 13.5337 16.0695 13.5336 16.0695 13.5336L14.4743 15.1326L14.315 15.0559C13.7724 14.7943 12.4313 14.1147 11.169 12.9059C9.90636 11.7002 9.26582 10.319 9.03347 9.78478L8.96568 9.62891L10.6096 7.982L10.6422 7.93295C10.8515 7.61886 10.9638 7.26907 10.951 6.91036C10.9396 6.61249 10.8005 6.29225 10.5496 6.0394L10.4907 5.98311L10.4961 5.97727L10.432 5.90043L7.45169 2.89074C7.45157 2.89063 7.4518 2.89086 7.45169 2.89074C6.93026 2.36878 5.99041 2.36853 5.46914 2.89069C5.46912 2.89071 5.46916 2.89067 5.46914 2.89069L3.15882 5.20671C2.855 5.51548 2.64345 5.90324 2.5481 6.32617C2.50176 6.52995 2.48749 6.73942 2.50598 6.94752C2.52984 7.1721 2.58656 7.39194 2.6743 7.59999L2.82047 7.94659H2.78322ZM6.44956 4.01548L4.20954 6.28207L4.20866 6.28295C4.07547 6.41638 3.98608 6.62977 4.0008 6.83735L4.00092 6.83909C4.00502 6.9032 4.02104 6.9701 4.04933 7.03247L4.04995 7.03383L4.06225 7.04615L4.081 7.10018C4.63901 8.70793 6.14268 12.0308 9.06506 14.9585C11.9513 17.85 15.1911 19.2966 16.8781 19.9629C16.8804 19.9632 16.8827 19.9635 16.885 19.9639C16.8991 19.966 16.9132 19.9693 16.9272 19.9739C17.2437 20.0732 17.4998 20.0185 17.7603 19.8126L17.7736 19.7996C17.7859 19.7874 17.7997 19.7762 17.815 19.7663C17.8251 19.7598 17.8353 19.7542 17.8456 19.7494L19.9896 17.5795L17.0727 14.6573L15.2704 16.463L14.7812 16.9225L14.1612 16.6745L14.257 16.4487C14.1612 16.6745 14.1613 16.6745 14.1612 16.6745L14.159 16.6735L14.1536 16.6712L14.1337 16.6625C14.1164 16.6549 14.0912 16.6437 14.0587 16.6289C13.9938 16.5993 13.8997 16.5555 13.7817 16.4978C13.5456 16.3823 13.2131 16.2109 12.8247 15.9859C12.0493 15.5366 11.045 14.8703 10.1417 14.0055C9.21539 13.1212 8.53573 12.0925 8.08858 11.2891C7.86453 10.8866 7.69773 10.5385 7.58667 10.2904C7.53111 10.1663 7.48944 10.067 7.46147 9.99832C7.44748 9.96395 7.43691 9.9372 7.42974 9.91878L7.42153 9.89747L7.41932 9.89166L7.4187 9.89C7.41867 9.88993 7.41839 9.88917 7.6517 9.80188L7.4187 9.89L7.41803 9.88819L7.1992 9.29358L7.66124 8.8317L7.66257 8.83036L9.42202 7.04469C9.43163 7.03216 9.44053 7.02224 9.44654 7.01577L6.44956 4.01548ZM9.92183 6.97312C9.92297 6.96936 9.92403 6.96558 9.925 6.96176L9.90944 6.96242C9.91344 6.96612 9.91757 6.96969 9.92183 6.97312ZM9.7781 6.64226C9.79958 6.63032 9.81921 6.61961 9.83709 6.61009C9.8894 6.58221 9.95178 6.55031 10.0042 6.53709C10.0168 6.53391 10.0553 6.52447 10.103 6.52986C10.1287 6.53276 10.1728 6.54162 10.218 6.57242C10.2688 6.60706 10.3053 6.6591 10.3205 6.719C10.3445 6.81329 10.3064 6.88687 10.2996 6.90006C10.2873 6.92404 10.2731 6.94299 10.2656 6.95239C10.238 6.987 10.1974 7.02381 10.168 7.04983C10.1217 7.09085 10.0595 7.14257 10.0011 7.19112C9.97616 7.21187 9.95189 7.23204 9.92987 7.25055C9.8909 7.2833 9.85827 7.31133 9.83477 7.33289C9.82946 7.33777 9.82513 7.34184 9.82168 7.34515L9.81693 7.35421L8.0144 9.18359L7.77695 9.42096L7.88497 9.71449L7.88533 9.71545L7.8869 9.7196L7.8938 9.7375C7.90008 9.75362 7.9097 9.77799 7.92269 9.8099C7.94867 9.87373 7.9881 9.9677 8.04115 10.0862C8.14729 10.3233 8.3077 10.6582 8.52362 11.0461C8.95637 11.8237 9.60765 12.8065 10.4855 13.6444C11.3507 14.4727 12.3192 15.1165 13.0741 15.5539C13.4509 15.7722 13.7729 15.9382 14.0002 16.0494C14.1138 16.105 14.2036 16.1468 14.2646 16.1745C14.2951 16.1884 14.3184 16.1988 14.3339 16.2056L14.3511 16.2131L14.3539 16.2143L14.6716 16.3414L14.9266 16.1017L16.7917 14.2332C16.7996 14.2253 16.8073 14.2175 16.814 14.2105C16.8186 14.2057 16.8229 14.2011 16.8272 14.1966C16.8291 14.1945 16.8312 14.1923 16.8335 14.1899C16.8415 14.1813 16.8512 14.1709 16.8594 14.1626C16.8689 14.1529 16.8893 14.1324 16.9159 14.1141C16.9445 14.0944 16.9988 14.0642 17.073 14.0642C17.1474 14.0642 17.2018 14.0945 17.2305 14.1143C17.2572 14.1328 17.2776 14.1534 17.2871 14.1631C17.2952 14.1715 17.3049 14.1819 17.3129 14.1905C17.3151 14.1929 17.3172 14.1951 17.3191 14.1972C17.3294 14.2081 17.3406 14.2199 17.3538 14.2332L20.4126 17.2976C20.426 17.311 20.4379 17.3223 20.4489 17.3327C20.453 17.3365 20.4579 17.3411 20.4631 17.346C20.4699 17.3523 20.477 17.359 20.483 17.3649C20.4927 17.3744 20.5133 17.3948 20.5317 17.4215C20.5514 17.4501 20.5819 17.5047 20.5819 17.5795C20.5819 17.6544 20.5513 17.7091 20.5314 17.7378C20.5129 17.7645 20.4922 17.7849 20.4825 17.7944C20.4741 17.8025 20.4637 17.8122 20.4551 17.8202C20.4527 17.8224 20.4504 17.8246 20.4483 17.8265C20.4375 17.8366 20.4259 17.8476 20.4128 17.8606C20.4126 17.8608 20.4123 17.861 20.4121 17.8613L18.1496 20.1511C18.1366 20.1645 18.1217 20.1769 18.105 20.1877C18.0906 20.1969 18.076 20.2044 18.0613 20.2102C17.6917 20.4992 17.28 20.5964 16.8133 20.4607C16.8126 20.4606 16.8119 20.4606 16.8112 20.4605C16.7957 20.4593 16.7793 20.4566 16.7625 20.452L16.7495 20.4485L16.737 20.4435C15.0366 19.7746 11.6936 18.2975 8.71286 15.3114C5.75467 12.3478 4.21855 8.99305 3.62949 7.31829L3.57356 7.26227V7.18592C3.53366 7.08329 3.51067 6.97642 3.5039 6.87184C3.4786 6.51111 3.628 6.15926 3.85598 5.93059C3.85582 5.93074 3.85614 5.93043 3.85598 5.93059L6.16723 3.59192L6.1681 3.59104C6.18147 3.57764 6.19275 3.56575 6.20309 3.55468C6.20501 3.55263 6.20713 3.55035 6.20938 3.54793C6.21742 3.53929 6.22713 3.52886 6.23529 3.52051C6.24478 3.5108 6.26516 3.49017 6.29175 3.47174C6.3203 3.45196 6.3748 3.4214 6.44946 3.4214C6.52423 3.4214 6.57882 3.45204 6.60751 3.47201C6.63418 3.49056 6.65456 3.51131 6.664 3.52104C6.67213 3.52941 6.68181 3.53987 6.6898 3.54852C6.69203 3.55093 6.69414 3.5532 6.69603 3.55525C6.70624 3.56623 6.71735 3.57803 6.73051 3.5913C6.73043 3.59122 6.7306 3.59138 6.73051 3.5913L9.7781 6.64226Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#footer .contacts-list li[type=address]:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C7.6 2 4 5.6 4 10C4 15.4 11 21.5 11.3 21.8C11.5 21.9 11.8 22 12 22C12.2 22 12.5 21.9 12.7 21.8C13 21.5 20 15.4 20 10C20 5.6 16.4 2 12 2ZM12 19.7C9.9 17.7 6 13.4 6 10C6 6.7 8.7 4 12 4C15.3 4 18 6.7 18 10C18 13.3 14.1 17.7 12 19.7ZM12 6C9.8 6 8 7.8 8 10C8 12.2 9.8 14 12 14C14.2 14 16 12.2 16 10C16 7.8 14.2 6 12 6ZM12 12C10.9 12 10 11.1 10 10C10 8.9 10.9 8 12 8C13.1 8 14 8.9 14 10C14 11.1 13.1 12 12 12Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#footer .contacts-list li a {
		font-size: inherit;
		color: inherit;
		line-height: 1;

	}

	#footer .soc-list {
		display: flex;
		gap: 20px;
		margin-top: 20px;
	}

	#footer .soc-list li {
		width: 36px;
		height: 36px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	#footer .soc-list li a {
		display: block;
		width: 100%;
		height: 100%;
		font-size: 0;
	}

	#footer .soc-list li[type=insta] {
		background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1105_12446)'%3E%3Cpath d='M26.9993 0H8.99978C4.05034 0 0 4.05034 0 8.99978V27.0002C0 31.9483 4.05034 36 8.99978 36H26.9993C31.9488 36 35.9991 31.9483 35.9991 27.0002V8.99978C35.9991 4.05034 31.9488 0 26.9993 0ZM32.999 27.0002C32.999 30.3076 30.3086 32.9999 26.9993 32.9999H8.99978C5.69192 32.9999 3.00007 30.3076 3.00007 27.0002V8.99978C3.00007 5.69148 5.69192 3.00007 8.99978 3.00007H26.9993C30.3086 3.00007 32.999 5.69148 32.999 8.99978V27.0002Z' fill='%23161616'/%3E%3Cpath d='M27.7499 10.4994C28.9926 10.4994 29.9999 9.49207 29.9999 8.24946C29.9999 7.00685 28.9926 5.99951 27.7499 5.99951C26.5073 5.99951 25.5 7.00685 25.5 8.24946C25.5 9.49207 26.5073 10.4994 27.7499 10.4994Z' fill='%23161616'/%3E%3Cpath d='M17.9998 9C13.0283 9 9 13.0287 9 17.9998C9 22.969 13.0283 27.0004 17.9998 27.0004C22.9699 27.0004 26.9996 22.969 26.9996 17.9998C26.9996 13.0287 22.9699 9 17.9998 9ZM17.9998 24.0004C14.6865 24.0004 12.0001 21.314 12.0001 17.9998C12.0001 14.6856 14.6865 12.0001 17.9998 12.0001C21.3131 12.0001 23.9995 14.6856 23.9995 17.9998C23.9995 21.314 21.3131 24.0004 17.9998 24.0004Z' fill='%23161616'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1105_12446'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	}

	#footer .soc-list li[type=insta]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_808_27897)'%3E%3Crect x='1' y='1' width='34' height='34' rx='8' fill='%23C6323B'/%3E%3Cpath d='M26.9993 0H8.99978C4.05034 0 0 4.05034 0 8.99978V27.0002C0 31.9483 4.05034 36 8.99978 36H26.9993C31.9488 36 35.9991 31.9483 35.9991 27.0002V8.99978C35.9991 4.05034 31.9488 0 26.9993 0ZM32.999 27.0002C32.999 30.3076 30.3086 32.9999 26.9993 32.9999H8.99978C5.69192 32.9999 3.00007 30.3076 3.00007 27.0002V8.99978C3.00007 5.69148 5.69192 3.00007 8.99978 3.00007H26.9993C30.3086 3.00007 32.999 5.69148 32.999 8.99978V27.0002Z' fill='%23C6323B'/%3E%3Cpath d='M27.7499 10.4996C28.9926 10.4996 29.9999 9.49225 29.9999 8.24964C29.9999 7.00703 28.9926 5.99969 27.7499 5.99969C26.5073 5.99969 25.5 7.00703 25.5 8.24964C25.5 9.49225 26.5073 10.4996 27.7499 10.4996Z' fill='%23F8F8F8'/%3E%3Cpath d='M17.9998 8.99976C13.0283 8.99976 9 13.0285 9 17.9995C9 22.9688 13.0283 27.0002 17.9998 27.0002C22.9699 27.0002 26.9996 22.9688 26.9996 17.9995C26.9996 13.0285 22.9699 8.99976 17.9998 8.99976ZM17.9998 24.0001C14.6865 24.0001 12.0001 21.3137 12.0001 17.9995C12.0001 14.6853 14.6865 11.9998 17.9998 11.9998C21.3131 11.9998 23.9995 14.6853 23.9995 17.9995C23.9995 21.3137 21.3131 24.0001 17.9998 24.0001Z' fill='%23F8F8F8'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_808_27897'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	}

	#footer .soc-list li[type=facebook] {
		background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1105_12452)'%3E%3Cpath d='M31.7812 0H4.21875C1.89253 0 0 1.89253 0 4.21875V31.7812C0 34.1075 1.89253 36 4.21875 36H31.7812C34.1075 36 36 34.1075 36 31.7812V4.21875C36 1.89253 34.1075 0 31.7812 0ZM33.1875 31.7812C33.1875 32.5567 32.5567 33.1875 31.7812 33.1875H23.7656V21.7266H28.1102L28.8281 17.3672H23.7656V14.3438C23.7656 13.1502 24.6814 12.2344 25.875 12.2344H28.7578V7.875H25.875C22.2945 7.875 19.4078 10.7754 19.4078 14.356V17.3672H15.1875V21.7266H19.4078V33.1875H4.21875C3.44334 33.1875 2.8125 32.5567 2.8125 31.7812V4.21875C2.8125 3.44334 3.44334 2.8125 4.21875 2.8125H31.7812C32.5567 2.8125 33.1875 3.44334 33.1875 4.21875V31.7812Z' fill='%23161616'/%3E%3Cpath d='M23.7656 33.1875H19.4078V36H23.7656V33.1875ZM23.7656 33.1875V21.7266H28.1102L28.8281 17.3672H23.7656V14.3437C23.7656 13.1502 24.6814 12.2344 25.875 12.2344H28.7578V7.875H25.875C22.2945 7.875 19.4078 10.7754 19.4078 14.356V17.3672H15.1875V21.7266H19.4078V33.1875H23.7656Z' fill='%23161616'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1105_12452'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	}

	#footer .soc-list li[type=facebook]:hover {
		background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_808_27926)'%3E%3Crect x='2' y='2' width='32' height='32' rx='2' fill='%23C6323B'/%3E%3Cpath d='M31.7812 0H4.21875C1.89253 0 0 1.89253 0 4.21875V31.7812C0 34.1075 1.89253 36 4.21875 36H31.7812C34.1075 36 36 34.1075 36 31.7812V4.21875C36 1.89253 34.1075 0 31.7812 0ZM33.1875 31.7812C33.1875 32.5567 32.5567 33.1875 31.7812 33.1875H23.7656V21.7266H28.1102L28.8281 17.3672H23.7656V14.3438C23.7656 13.1502 24.6814 12.2344 25.875 12.2344H28.7578V7.875H25.875C22.2945 7.875 19.4078 10.7754 19.4078 14.356V17.3672H15.1875V21.7266H19.4078V33.1875H4.21875C3.44334 33.1875 2.8125 32.5567 2.8125 31.7812V4.21875C2.8125 3.44334 3.44334 2.8125 4.21875 2.8125H31.7812C32.5567 2.8125 33.1875 3.44334 33.1875 4.21875V31.7812Z' fill='%23C6323B'/%3E%3Cpath d='M23.7656 33.1875H19.4078V36H23.7656V33.1875ZM23.7656 33.1875V21.7266H28.1102L28.8281 17.3672H23.7656V14.3437C23.7656 13.1502 24.6814 12.2344 25.875 12.2344H28.7578V7.875H25.875C22.2945 7.875 19.4078 10.7754 19.4078 14.356V17.3672H15.1875V21.7266H19.4078V33.1875H23.7656Z' fill='%23F8F8F8'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_808_27926'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	}

	#footer .bottom-block {
		display: flex;
		justify-content: space-between;
		margin-top: 60px;
	}

	#footer .bottom-menu {
		display: flex;
		gap: 20px;
		align-items: center;
	}

	#footer .bottom-block span,
	#footer .bottom-menu li a {
		font-size: 14px;
		color: #161616;
	}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	select:focus, textarea:focus, input:focus {
	  	font-size: 16px!important;
	}
}

@media only screen and (max-width: 1336.99px) {
	.container {padding: 0 60px;}
	#top-nav .main-block {
		grid-gap: 0 20px;
	}

	#top-nav .logo-img {
		width: 40px;
	}

	#top-nav .logo-title {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1200.99px) {
	.container {
		padding: 0 40px;
	}
}

@media only screen and (max-width: 1020.99px) {
	.container {
		padding: 0 20px;
	}

	section .main-block > .row {display: block;}

	header, section {margin-bottom: 80px;}

	ul.breadcrumb {margin-bottom: 30px;}

	ul.breadcrumb li a, 
	ul.breadcrumb li span {
		font-size: 12px;
	}

	#mobile-contacts-wrap {
		box-sizing: border-box;
		max-width: 280px;
		width: 0%;
		height: 0;
		position: absolute;
		transform: scale(0);
		opacity: 0;
		display: flex;
		flex-direction: column;
		z-index: -111;
		background: #F8F8F8;
		top: 0;
	}

	#mobile-contacts-wrap.active {
		padding: 30px;
		left: 0;
		width: 100%;
		height: 100vh;
		transform: scale(1);
		opacity: 1;
		z-index: 1111;
		transition: width .4s, opacity .3s;
	}

	#mobile-contacts-wrap .form-language {
		order: 5;
	}

	#mobile-contacts-wrap .form-language ul {
		flex-direction: unset;
	}

	#mobile-contacts-wrap .form-language li {
		font-size: 14px;
	}

	#mobile-contacts-wrap .form-language li button {
		color: inherit;
		font-weight: inherit;
		font-size: inherit;
	}

	#mobile-contacts-wrap .form-language li.current {
		color: #161616;
		font-weight: 600;
		order: 1;
	}

	#mobile-contacts-wrap .form-language li.other {
		display: flex;
		align-items: center;
		color: #ABABAB;
		order: 2;

	}

	#mobile-contacts-wrap .form-language li.other:before {
		content: '';
		height: 80%;
		width: 2px;
		background-color: #ABABAB;
		margin: 0 10px;
	}

	#mobile-contacts-wrap .contacts-block {
		display: flex;
		flex-direction: column;
		order: 4;
	}

	#mobile-contacts-wrap .contacts-block > * {
		font-size: 16px;
		display: grid;
		grid-template-columns: max-content auto;
		align-items: center;
		grid-gap: 10px;
	}

	#mobile-contacts-wrap .contacts-block > *:before {
		content: '';
		width: 24px;
		height: 24px;
	}

	#mobile-contacts-wrap .open {
		margin-bottom: 15px;
	}

	#mobile-contacts-wrap .open:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 20C16.4 20 20 16.4 20 12C20 7.6 16.4 4 12 4C7.6 4 4 7.6 4 12C4 16.4 7.6 20 12 20ZM12 2C17.5 2 22 6.5 22 12C22 17.5 17.5 22 12 22C6.5 22 2 17.5 2 12C2 6.5 6.5 2 12 2ZM17 11.5V13H11V7H12.5V11.5H17Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#mobile-contacts-wrap .phone:before {
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25903 6.97181C2.28535 7.22146 2.34829 7.46586 2.44582 7.69711H2.42266C2.42564 7.70833 2.44283 7.73229 2.44582 7.74351C3.08537 9.56537 4.68723 13.0534 7.83941 16.2113C11.0148 19.3924 14.5607 20.9269 16.315 21.6147H16.3381C16.7778 21.7603 17.2475 21.7894 17.7017 21.6992C18.1559 21.6089 18.579 21.4024 18.9299 21.0998L18.9531 21.0766H18.9763L21.1945 18.8311L21.2879 18.7375C21.9065 18.1177 21.9065 17.0414 21.2879 16.4216L18.2291 13.3573C17.6105 12.7375 16.5129 12.7375 15.8943 13.3573L14.4239 14.8311C13.8897 14.5736 12.5763 13.9074 11.342 12.7255C10.1152 11.5541 9.49059 10.2091 9.26271 9.68512L10.8041 8.14097L10.8504 8.07136C11.0842 7.72031 11.2157 7.31986 11.2008 6.90145C11.1858 6.50998 10.9938 6.10355 10.6636 5.80265L10.7246 5.86099L10.6173 5.73229L7.62872 2.71433C7.01009 2.09457 5.91254 2.09457 5.29391 2.71433L2.98301 5.03094C2.64623 5.37296 2.41175 5.80259 2.3061 6.27121C2.25383 6.50108 2.23795 6.737 2.25903 6.97181ZM3.75331 6.85504C3.73314 6.57061 3.85268 6.28768 4.03349 6.10654L6.34513 3.76747C6.47364 3.63873 6.42732 3.63873 6.55508 3.76747L9.68484 6.9007C9.68186 6.89771 9.70502 6.9007 9.70801 6.97106C10.5755 6.45862 9.66094 7.11702 9.61461 7.20534L7.83941 9.00698L7.489 9.35728L7.65263 9.80189C7.65263 9.80189 8.51034 12.1028 10.3147 13.8251C12.0832 15.5182 14.2596 16.4448 14.2596 16.4448L14.7273 16.632L15.1009 16.2809L16.9687 14.4097C17.0972 14.2817 17.0509 14.2817 17.1786 14.4097L20.2374 17.474C20.3659 17.6028 20.3659 17.5564 20.2374 17.6844L17.9721 19.977C17.9669 19.983 17.9549 19.971 17.9497 19.977L17.9258 20.0002C17.6015 20.2607 17.2571 20.3393 16.8514 20.2113C16.8432 20.2083 16.8372 20.2135 16.829 20.2113C15.1412 19.5474 11.8351 18.0856 8.88989 15.135C5.93346 12.1731 4.41303 8.81387 3.8467 7.18214L3.82354 7.15893V7.13573C3.78245 7.04516 3.75929 6.9486 3.75331 6.85504Z' fill='%23161616'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.11688 2.5379C5.83277 1.8207 7.088 1.8207 7.80389 2.5379L10.8006 5.56413L10.908 5.69287C11.2365 6.02649 11.4323 6.46076 11.4487 6.8919C11.4658 7.36997 11.3151 7.82176 11.0567 8.20974C11.0566 8.20978 11.0567 8.20971 11.0567 8.20974L10.9967 8.29991L9.55883 9.74037C9.82613 10.3301 10.4278 11.5088 11.5129 12.5449C12.6114 13.5968 13.7762 14.2322 14.3725 14.5287L15.7172 13.1809C16.4331 12.4637 17.6884 12.4636 18.4043 13.1808L21.4631 16.2452C22.179 16.9624 22.179 18.1967 21.4631 18.9139L21.3706 19.0066L21.3697 19.0075L19.0793 21.3261H19.0475C18.6729 21.6366 18.2268 21.849 17.7492 21.9439C17.2663 22.0399 16.7672 22.0124 16.298 21.8642H16.267L16.2233 21.8471C14.4573 21.1546 10.8737 19.6049 7.66238 16.3877C4.48473 13.2043 2.86616 9.69012 2.21483 7.84017C2.21232 7.83576 2.20871 7.82931 2.20527 7.82269C2.20263 7.81762 2.19895 7.81026 2.19514 7.80152C2.19166 7.79352 2.18587 7.77935 2.18109 7.76138L2.12046 7.53362C2.06651 7.35931 2.02961 7.17993 2.01043 6.998L2.01003 6.99415C1.98661 6.73335 2.00428 6.47126 2.0623 6.21601C2.17821 5.70204 2.43541 5.23083 2.80478 4.85571L2.80592 4.85456L5.11688 2.5379ZM2.78322 7.94659C3.47547 9.80739 5.05395 13.0688 8.01459 16.0349C11.1279 19.1539 14.6041 20.6738 16.3611 21.3652H16.3773L16.4153 21.3778C16.8142 21.5099 17.2403 21.5363 17.6523 21.4544C18.0614 21.3732 18.4427 21.1879 18.7596 20.9166L18.849 20.8271H18.8714L21.0166 18.6555L21.0175 18.6546L21.1109 18.5611C21.6323 18.0387 21.6323 17.1204 21.1109 16.5981L18.0521 13.5337C17.5307 13.0114 16.5909 13.0114 16.0695 13.5336C16.0695 13.5337 16.0695 13.5336 16.0695 13.5336L14.4743 15.1326L14.315 15.0559C13.7724 14.7943 12.4313 14.1147 11.169 12.9059C9.90636 11.7002 9.26582 10.319 9.03347 9.78478L8.96568 9.62891L10.6096 7.982L10.6422 7.93295C10.8515 7.61886 10.9638 7.26907 10.951 6.91036C10.9396 6.61249 10.8005 6.29225 10.5496 6.0394L10.4907 5.98311L10.4961 5.97727L10.432 5.90043L7.45169 2.89074C7.45157 2.89063 7.4518 2.89086 7.45169 2.89074C6.93026 2.36878 5.99041 2.36853 5.46914 2.89069C5.46912 2.89071 5.46916 2.89067 5.46914 2.89069L3.15882 5.20671C2.855 5.51548 2.64345 5.90324 2.5481 6.32617C2.50176 6.52995 2.48749 6.73942 2.50598 6.94752C2.52984 7.1721 2.58656 7.39194 2.6743 7.59999L2.82047 7.94659H2.78322ZM6.44956 4.01548L4.20954 6.28207L4.20866 6.28295C4.07547 6.41638 3.98608 6.62977 4.0008 6.83735L4.00092 6.83909C4.00502 6.9032 4.02104 6.9701 4.04933 7.03247L4.04995 7.03383L4.06225 7.04615L4.081 7.10018C4.63901 8.70793 6.14268 12.0308 9.06506 14.9585C11.9513 17.85 15.1911 19.2966 16.8781 19.9629C16.8804 19.9632 16.8827 19.9635 16.885 19.9639C16.8991 19.966 16.9132 19.9693 16.9272 19.9739C17.2437 20.0732 17.4998 20.0185 17.7603 19.8126L17.7736 19.7996C17.7859 19.7874 17.7997 19.7762 17.815 19.7663C17.8251 19.7598 17.8353 19.7542 17.8456 19.7494L19.9896 17.5795L17.0727 14.6573L15.2704 16.463L14.7812 16.9225L14.1612 16.6745L14.257 16.4487C14.1612 16.6745 14.1613 16.6745 14.1612 16.6745L14.159 16.6735L14.1536 16.6712L14.1337 16.6625C14.1164 16.6549 14.0912 16.6437 14.0587 16.6289C13.9938 16.5993 13.8997 16.5555 13.7817 16.4978C13.5456 16.3823 13.2131 16.2109 12.8247 15.9859C12.0493 15.5366 11.045 14.8703 10.1417 14.0055C9.21539 13.1212 8.53573 12.0925 8.08858 11.2891C7.86453 10.8866 7.69773 10.5385 7.58667 10.2904C7.53111 10.1663 7.48944 10.067 7.46147 9.99832C7.44748 9.96395 7.43691 9.9372 7.42974 9.91878L7.42153 9.89747L7.41932 9.89166L7.4187 9.89C7.41867 9.88993 7.41839 9.88917 7.6517 9.80188L7.4187 9.89L7.41803 9.88819L7.1992 9.29358L7.66124 8.8317L7.66257 8.83036L9.42202 7.04469C9.43163 7.03216 9.44053 7.02224 9.44654 7.01577L6.44956 4.01548ZM9.92183 6.97312C9.92297 6.96936 9.92403 6.96558 9.925 6.96176L9.90944 6.96242C9.91344 6.96612 9.91757 6.96969 9.92183 6.97312ZM9.7781 6.64226C9.79958 6.63032 9.81921 6.61961 9.83709 6.61009C9.8894 6.58221 9.95178 6.55031 10.0042 6.53709C10.0168 6.53391 10.0553 6.52447 10.103 6.52986C10.1287 6.53276 10.1728 6.54162 10.218 6.57242C10.2688 6.60706 10.3053 6.6591 10.3205 6.719C10.3445 6.81329 10.3064 6.88687 10.2996 6.90006C10.2873 6.92404 10.2731 6.94299 10.2656 6.95239C10.238 6.987 10.1974 7.02381 10.168 7.04983C10.1217 7.09085 10.0595 7.14257 10.0011 7.19112C9.97616 7.21187 9.95189 7.23204 9.92987 7.25055C9.8909 7.2833 9.85827 7.31133 9.83477 7.33289C9.82946 7.33777 9.82513 7.34184 9.82168 7.34515L9.81693 7.35421L8.0144 9.18359L7.77695 9.42096L7.88497 9.71449L7.88533 9.71545L7.8869 9.7196L7.8938 9.7375C7.90008 9.75362 7.9097 9.77799 7.92269 9.8099C7.94867 9.87373 7.9881 9.9677 8.04115 10.0862C8.14729 10.3233 8.3077 10.6582 8.52362 11.0461C8.95637 11.8237 9.60765 12.8065 10.4855 13.6444C11.3507 14.4727 12.3192 15.1165 13.0741 15.5539C13.4509 15.7722 13.7729 15.9382 14.0002 16.0494C14.1138 16.105 14.2036 16.1468 14.2646 16.1745C14.2951 16.1884 14.3184 16.1988 14.3339 16.2056L14.3511 16.2131L14.3539 16.2143L14.6716 16.3414L14.9266 16.1017L16.7917 14.2332C16.7996 14.2253 16.8073 14.2175 16.814 14.2105C16.8186 14.2057 16.8229 14.2011 16.8272 14.1966C16.8291 14.1945 16.8312 14.1923 16.8335 14.1899C16.8415 14.1813 16.8512 14.1709 16.8594 14.1626C16.8689 14.1529 16.8893 14.1324 16.9159 14.1141C16.9445 14.0944 16.9988 14.0642 17.073 14.0642C17.1474 14.0642 17.2018 14.0945 17.2305 14.1143C17.2572 14.1328 17.2776 14.1534 17.2871 14.1631C17.2952 14.1715 17.3049 14.1819 17.3129 14.1905C17.3151 14.1929 17.3172 14.1951 17.3191 14.1972C17.3294 14.2081 17.3406 14.2199 17.3538 14.2332L20.4126 17.2976C20.426 17.311 20.4379 17.3223 20.4489 17.3327C20.453 17.3365 20.4579 17.3411 20.4631 17.346C20.4699 17.3523 20.477 17.359 20.483 17.3649C20.4927 17.3744 20.5133 17.3948 20.5317 17.4215C20.5514 17.4501 20.5819 17.5047 20.5819 17.5795C20.5819 17.6544 20.5513 17.7091 20.5314 17.7378C20.5129 17.7645 20.4922 17.7849 20.4825 17.7944C20.4741 17.8025 20.4637 17.8122 20.4551 17.8202C20.4527 17.8224 20.4504 17.8246 20.4483 17.8265C20.4375 17.8366 20.4259 17.8476 20.4128 17.8606C20.4126 17.8608 20.4123 17.861 20.4121 17.8613L18.1496 20.1511C18.1366 20.1645 18.1217 20.1769 18.105 20.1877C18.0906 20.1969 18.076 20.2044 18.0613 20.2102C17.6917 20.4992 17.28 20.5964 16.8133 20.4607C16.8126 20.4606 16.8119 20.4606 16.8112 20.4605C16.7957 20.4593 16.7793 20.4566 16.7625 20.452L16.7495 20.4485L16.737 20.4435C15.0366 19.7746 11.6936 18.2975 8.71286 15.3114C5.75467 12.3478 4.21855 8.99305 3.62949 7.31829L3.57356 7.26227V7.18592C3.53366 7.08329 3.51067 6.97642 3.5039 6.87184C3.4786 6.51111 3.628 6.15926 3.85598 5.93059C3.85582 5.93074 3.85614 5.93043 3.85598 5.93059L6.16723 3.59192L6.1681 3.59104C6.18147 3.57764 6.19275 3.56575 6.20309 3.55468C6.20501 3.55263 6.20713 3.55035 6.20938 3.54793C6.21742 3.53929 6.22713 3.52886 6.23529 3.52051C6.24478 3.5108 6.26516 3.49017 6.29175 3.47174C6.3203 3.45196 6.3748 3.4214 6.44946 3.4214C6.52423 3.4214 6.57882 3.45204 6.60751 3.47201C6.63418 3.49056 6.65456 3.51131 6.664 3.52104C6.67213 3.52941 6.68181 3.53987 6.6898 3.54852C6.69203 3.55093 6.69414 3.5532 6.69603 3.55525C6.70624 3.56623 6.71735 3.57803 6.73051 3.5913C6.73043 3.59122 6.7306 3.59138 6.73051 3.5913L9.7781 6.64226Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#mobile-contacts-wrap .info-list:after,
	#mobile-contacts-wrap .contacts-block:after,
	#mobile-contacts-wrap .account-list:after {
		content: '';
		height: 1px;
		width: 100%;
		margin: 15px 0;
		background-color: #DCDCDC;
	}

	#mobile-contacts-wrap .info-list {
		order: 2;
	}

	#mobile-contacts-wrap ul {
		display: flex;
		flex-direction: column;
	}

	#mobile-contacts-wrap ul li:not(:last-child) {
		margin-bottom: 10px;
	}

	#mobile-contacts-wrap .info-list {order: 2;}

	#mobile-contacts-wrap li {
		font-size: 16px;
		color: #161616;
	}

	#mobile-contacts-wrap li a {font-size: inherit;}

	#mobile-contacts-wrap .info-list button {display: none;}

	#mobile-contacts-wrap #logo {
		display: grid;
		grid-template-columns: repeat(2,max-content);
		align-items: center;
		grid-gap: 6px;
		margin-bottom: 20px;
	}

	#mobile-contacts-wrap .logo-img {
		height: 35px;
		width: auto;
	}

	#mobile-contacts-wrap .logo-title {
		font-size: 18px;
		font-weight: 700;
	}

	#mobile-menu-wrapper {
		z-index: 11;
		background: rgba(22, 22, 22, 0.50);
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		cursor: pointer;
		z-index: 111;
	}

	#top-nav .logo-title {font-size: 18px;}

	#top-nav #logo {grid-gap: 6px;}

	#top-nav #burger-menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 42px;
		height: 34px;
		cursor: pointer;
		position: relative;
	}

	#top-nav #burger-menu span,
	#top-nav #burger-menu:after,
	#top-nav #burger-menu:before {
		display: block;
		width: 100%;
		height: 3px;
		background-color: #161616;

	}

	#top-nav #burger-menu:after,
	#top-nav #burger-menu:before {
		content: '';
		position: absolute;
	}

	#top-nav #burger-menu:after {bottom: 0;}
	#top-nav #burger-menu:before {top: 0;}

	#top-nav .main-block {height: 80px;}

	#top-nav .logo-img {
		height: 34px;
		width: auto;
	}

	#top-nav .left-column {
		grid-template-columns: repeat(2,max-content);
		grid-gap: 20px;
	}

	#top-nav .catalog-btn {font-size: 14px;}

	#footer .right-column {max-width: 230px;}

	#footer .left-column ul.first-menu {
		max-width: 230px;
		gap: 0;
	}

	#footer .right-column > h3,
	#footer .subscribe-form button,
	#footer .subscribe-form input,
	#footer .left-column ul li,
	#footer .contacts-block > h3,
	#footer .left-column ul li a {font-size: 14px;}

	#footer .left-column ul li:not(:last-child) {
		margin-bottom: 15px;
	}

	#footer .contacts-list {gap: 0;}

	#footer .contacts-list li:not(:last-child) {margin-bottom: 10px;}

	#footer .left-column ul.last-menu {
    	display: flex;
    	grid-gap: 0;
    	flex-direction: column;
    }

    #footer .soc-list li {
    	width: 28px;
    	height: 28px;
    }

    #footer .subscribe-form button {
    	padding: 10px 0;
    }

    #footer .right-column > h3 {font-weight: 600;}

    #footer .bottom-block span, #footer .bottom-menu li a {font-size: 12px;}

    /* 404 */
    #error-not-found {margin: 60px 0;}

	#error-not-found h1 {font-size: 46px;}

	#error-not-found h2 {font-size: 28px;}

	#error-not-found .btn-continue {
		font-size: 14px;
	}

	main:not([id=common-home]) {margin: 60px 0;}
}


@media only screen and (max-width: 420.99px) {

	ul.breadcrumb {
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	ul.breadcrumb li {
		margin-top: 7px;
	}

	main:not([id=common-home]) {margin: 40px 0;}

	header, section {margin-bottom: 40px;}

	.container {padding: 0 10px;}

	#mobile-contacts-wrap.active {
		padding: 20px 10px;
	}

	#mobile-contacts-wrap li {font-size: 12px;}

	#mobile-contacts-wrap li:not(:last-child) {
		margin-bottom: 10px;
	}

	#mobile-contacts-wrap ul.account-list li span {display: none;}

	#mob-menu-wrap-block {
		display: flex;
		flex-direction: column;
		color: #161616;
		order: 2;
		overflow-y: auto;
		max-height: 50vh;
	}

	#mobile-contacts-wrap .logo-title {font-size: 16px;}

	#mobile-contacts-wrap .logo-img {
		height: 25px;
	}

	#mob-menu-wrap-block #mob-catalog-btn {
		display: grid;
		grid-template-columns: max-content 1fr;
		text-align: left;
		justify-content: flex-start;
		grid-gap: 4px;
		align-items: center;
		font-size: 12px;
		color: inherit;
		position: relative;
	}

	#mob-menu-wrap-block #mob-catalog-btn:after {
		content: '';
		width: 16px;
		height: 16px;
		position: absolute;
		top: 0;
		right: 0;
		transform: scale(1,-1);
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 10.25L8 5.75L3.5 10.25' stroke='%23161616' stroke-width='2.25' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/svg%3E%0A");
	}

	#mob-menu-wrap-block.active #mob-catalog-btn:after {
		transform: scale(1);
	}

	#mob-menu-wrap-block #mob-catalog-btn svg {
		width: 16px;
		height: 16px;
	}

	#mob-menu-wrap-block #mob-catalog-btn path {fill: #161616;}

	#mob-menu-wrap-block ul[class] {
		display: none;
		flex-direction: column;
		margin-top: 10px;
	}

	#mob-menu-wrap-block ul[class] li {
		font-size: 12px;
	}

	#mob-menu-wrap-block ul[class] a {
		display: block;
	}

	#mob-menu-wrap-block ul[class] a.sub-true {
		display: grid;
		grid-template-columns: auto max-content;
		justify-content: space-between;
		width: 100%;
	}

	#mob-menu-wrap-block ul[class] a.sub-true:after {
		content: '';
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5.75L8 10.25L3.5 5.75' stroke='%23161616' stroke-width='2.25' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/svg%3E%0A");
		width: 16px;
		height: 16px;
	}

	#mob-menu-wrap-block ul[class] a.sub-true.active:after {
		transform: scale(1,-1);
	}

	#mob-menu-wrap-block ul[class] a.sub-true.active + .sub-menu {
		display: flex;
		padding-left: 20px;
		box-sizing: border-box;
	}

	#mob-menu-wrap-block ul[class] li:not(:last-child) {
		margin-bottom: 10px;
	}

	#mob-menu-wrap-block.active > ul.menu {
		display: flex;
	}

	#mobile-contacts-wrap .contacts-block > * {
		font-size: 12px;
		grid-gap: 5px;
	}

	#mobile-contacts-wrap .contacts-block > *:before {
		width: 16px;
		height: 16px;
	}

	#mobile-contacts-wrap .account-list {
		order: 4;
	}

	#mobile-contacts-wrap .account-list li {
		display: grid;
		grid-template-columns: max-content auto;
		grid-gap: 5px;
		align-items: center;
	}

	#mobile-contacts-wrap .account-list li:before {
		content: '';
		width: 16px;
		height: 16px;
	}

	#mobile-contacts-wrap .account-list li[type=login]:before,
	#mobile-contacts-wrap .account-list li[type=account]:before {
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.71415 0.571289C8.66135 0.571289 9.56975 0.947563 10.2395 1.61734C10.9093 2.28711 11.2856 3.19552 11.2856 4.14272C11.2856 5.08992 10.9093 5.99833 10.2395 6.6681C9.56975 7.33787 8.66135 7.71415 7.71415 7.71415C6.76694 7.71415 5.85854 7.33787 5.18876 6.6681C4.51899 5.99833 4.14272 5.08992 4.14272 4.14272C4.14272 3.19552 4.51899 2.28711 5.18876 1.61734C5.85854 0.947563 6.76694 0.571289 7.71415 0.571289ZM7.71415 2.357C7.24054 2.357 6.78634 2.54514 6.45146 2.88003C6.11657 3.21491 5.92843 3.66912 5.92843 4.14272C5.92843 4.61632 6.11657 5.07052 6.45146 5.40541C6.78634 5.74029 7.24054 5.92843 7.71415 5.92843C8.18775 5.92843 8.64195 5.74029 8.97684 5.40541C9.31172 5.07052 9.49986 4.61632 9.49986 4.14272C9.49986 3.66912 9.31172 3.21491 8.97684 2.88003C8.64195 2.54514 8.18775 2.357 7.71415 2.357ZM7.71415 8.607C10.0981 8.607 14.857 9.7945 14.857 12.1784V14.857H0.571289V12.1784C0.571289 9.7945 5.33022 8.607 7.71415 8.607ZM7.71415 10.3034C5.06236 10.3034 2.26772 11.607 2.26772 12.1784V13.1606H13.1606V12.1784C13.1606 11.607 10.3659 10.3034 7.71415 10.3034Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#mobile-contacts-wrap .account-list li[type=wishlist]:before {
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3707 3.5C9.41815 3.5 8.57276 3.87667 8 4.52408C7.42724 3.87667 6.58185 3.5 5.62931 3.5C4.79967 3.50101 4.0043 3.83161 3.41766 4.41931C2.83102 5.007 2.501 5.8038 2.5 6.63493C2.5 10.071 7.51685 12.8164 7.73022 12.9319C7.81313 12.9766 7.90583 13 8 13C8.09417 13 8.18687 12.9766 8.26978 12.9319C8.48315 12.8164 13.5 10.071 13.5 6.63493C13.499 5.8038 13.169 5.007 12.5823 4.41931C11.9957 3.83161 11.2003 3.50101 10.3707 3.5ZM10.1104 10.2619C9.45004 10.8233 8.74413 11.3285 8 11.7724C7.25587 11.3285 6.54996 10.8233 5.88961 10.2619C4.86215 9.37893 3.63793 8.03234 3.63793 6.63493C3.63793 6.10583 3.84774 5.59841 4.22119 5.22428C4.59465 4.85015 5.10116 4.63997 5.62931 4.63997C6.47328 4.63997 7.17974 5.08646 7.47323 5.8056C7.51595 5.91043 7.58887 6.00014 7.68269 6.06329C7.7765 6.12644 7.88697 6.16017 8 6.16017C8.11303 6.16017 8.2235 6.12644 8.31731 6.06329C8.41113 6.00014 8.48405 5.91043 8.52677 5.8056C8.82026 5.08646 9.52672 4.63997 10.3707 4.63997C10.8988 4.63997 11.4054 4.85015 11.7788 5.22428C12.1523 5.59841 12.3621 6.10583 12.3621 6.63493C12.3621 8.03234 11.1378 9.37893 10.1104 10.2619Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#mobile-contacts-wrap .account-list li[type=compare]:before {
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.64706 3V3.45455H11.9848V4.88995H8.64706V11.5885H10.5951V13H5.37606V11.5885H7.29327V4.88995H3.93815V3.45455H7.29327V3H8.64706ZM4.41745 5.53254L5.77292 6.88612C6.04104 7.15379 6.22362 7.49481 6.29759 7.86606C6.37156 8.23731 6.33359 8.62213 6.18847 8.97184C6.04336 9.32154 5.79763 9.62045 5.48235 9.83074C5.16707 10.041 4.7964 10.1533 4.41721 10.1533C4.03803 10.1533 3.66736 10.041 3.35208 9.83074C3.0368 9.62045 2.79106 9.32154 2.64595 8.97184C2.50084 8.62213 2.46286 8.23731 2.53683 7.86606C2.6108 7.49481 2.79339 7.15379 3.0615 6.88612L4.41841 5.53254H4.41745ZM11.583 5.53254L12.9385 6.88612C13.2066 7.15379 13.3892 7.49481 13.4632 7.86606C13.5371 8.23731 13.4992 8.62213 13.3541 8.97184C13.2089 9.32154 12.9632 9.62045 12.6479 9.83074C12.3326 10.041 11.962 10.1533 11.5828 10.1533C11.2036 10.1533 10.8329 10.041 10.5177 9.83074C10.2024 9.62045 9.95664 9.32154 9.81152 8.97184C9.66641 8.62213 9.62844 8.23731 9.70241 7.86606C9.77638 7.49481 9.95896 7.15379 10.2271 6.88612L11.583 5.53254ZM4.41745 6.88612L3.73972 7.56268C3.60563 7.6965 3.5143 7.86701 3.47729 8.05264C3.44028 8.23828 3.45924 8.4307 3.53179 8.60558C3.60433 8.78045 3.7272 8.92992 3.88485 9.03508C4.0425 9.14025 4.22785 9.19638 4.41745 9.19638C4.60706 9.19638 4.79241 9.14025 4.95005 9.03508C5.1077 8.92992 5.23057 8.78045 5.30311 8.60558C5.37566 8.4307 5.39463 8.23828 5.35762 8.05264C5.32061 7.86701 5.22928 7.6965 5.09519 7.56268L4.41745 6.88612ZM11.583 6.88612L10.9053 7.56268C10.7712 7.6965 10.6799 7.86701 10.6429 8.05264C10.6059 8.23828 10.6248 8.4307 10.6974 8.60558C10.7699 8.78045 10.8928 8.92992 11.0504 9.03508C11.2081 9.14025 11.3934 9.19638 11.583 9.19638C11.7726 9.19638 11.958 9.14025 12.1156 9.03508C12.2733 8.92992 12.3961 8.78045 12.4687 8.60558C12.5412 8.4307 12.5602 8.23828 12.5232 8.05264C12.4862 7.86701 12.3949 7.6965 12.2608 7.56268L11.583 6.88612Z' fill='%23161616'/%3E%3C/svg%3E%0A");
	}

	#mobile-contacts-wrap .info-list {
		order: 3;
		margin-top: 15px;
	}

	#mobile-contacts-wrap .contacts-block {
		order: 5;
	}
	#mobile-contacts-wrap .form-language {order: 6;}

	#top-nav .logo-img {
		height: 25px;
	}

	#top-nav .logo-title {font-size: 14px;}

	#top-nav .main-block {
		justify-content: space-between;
		display: flex;
		grid-gap: 0;
		height: 50px;
	}

	#top-nav #burger-menu {
		width: 34px;
		height: 22px;
	}

	#top-nav .left-column {
		grid-gap: 10px;
	}

	#top-nav .right-column {
		display: block;
	}

	#top-nav .icons-list {gap: 10px;}

	#top-nav .icons-list > li {
		width: 30px;
		height: 30px;
	}

	#footer .container {
		border-top: solid 1px #DCDCDC;
		padding-top: 30px;
		padding-bottom: 20px;
	}

	#footer .main-block {
		display: flex;
		flex-direction: column;
		grid-gap: 0;
	}

	#footer .left-column {
		display: block;
		order: 2;
	}

	#footer .left-column > * {
		padding-top: 20px;
		border-top: solid 1px #DCDCDC;
		padding-bottom: 20px;
		border-bottom: solid 1px #DCDCDC;
	}


	#footer .left-column > ul[class] {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 10px 20px;
		max-width: 100%;
		padding-top: 20px;
	}

	#footer .left-column ul li a {
		font-size: 12px;
	}

	#footer .left-column ul li:not(:last-child) {
		margin-bottom: 0;
	}

	#footer .right-column {
		order: 1;
		max-width: 100%;
		margin-bottom: 20px;
	}

	#footer .contacts-block > h3 {margin-bottom: 10px;}

	#footer .contacts-block li {
		grid-gap: 4px;
	}

	#footer .contacts-block li:before {
		width: 16px;
		height: 16px;
	}

	#footer .contacts-block li:not(:last-child) {margin-bottom: 13px!important;}

	#footer .right-column > h3 {margin-bottom: 15px;}
	
	#footer .subscribe-form button, 
	#footer .subscribe-form input, 
	#footer .left-column ul li, #footer .contacts-block > h3, 
	#footer .left-column ul li a {font-size: 12px;}

	#footer .soc-list {
		gap: 15px;
		margin-top: 15px;
	}

	#footer .soc-list li {
		margin: 0;
		width: 20px;
		height: 20px;
	}

	#footer .bottom-block {
		margin-top: 20px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 0;
	}

	#footer .bottom-menu {
		justify-content: space-between;
		width: 100%;
	}

	#footer .bottom-block span {
		display: block;
		text-align: center;
		margin-top: 15px;
	}

	#footer .bottom-block span, 
	#footer .bottom-menu li a {
		font-size: 10px;
	}

    /* 404 */
    #error-not-found {
    	margin: 40px 0;
    }

	#error-not-found h1 {
		font-size: 36px;
		margin-bottom: 30px;
	}

	#error-not-found h2 {font-size: 18px;}

	#error-not-found .btn-continue {
		font-size: 12px;
		margin-top: 30px;
		padding: 12px 40px;
	}

	#error-not-found .text-block {
		box-sizing: border-box;
		padding: 0 40px;
	}

	#error-not-found #content {height: auto;}
}


@media screen and (-webkit-min-device-pixel-ratio: 0) {
	select:focus, textarea:focus, input:focus {
			font-size: 16px!important;
		}
	}