@import url("//fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:wght@300;400;500;700&display=swap");
.header {
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1000;
}
.header.menu-open .header-mobile-menu {
	top: 0;
	opacity: 1;
	pointer-events: auto;
}
.header-inner {
	position: relative;
}
.header-top {
	background-color: #252525;
}
.mobile_title {
	display: none;
}
@media screen and (max-width: 1024px) {
	.header-top {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 2;
	}
}
.header-top .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	position: relative;
	z-index: 3;
}
@media screen and (max-width: 1024px) {
	.header-top .wrap {
		height: 60px;
	}
}
.header-top .logo {
	position: absolute;
	left: 15px;
	top: 10px;
	width: 62px;
}
@media screen and (max-width: 1024px) {
	.header-top .logo {
		position: relative;
		top: initial;
		left: initial;
		width: 45px;
		z-index: 2;
	}
}
.header-top .menu-pages {
	display: flex;
	align-items: center;
	padding-left: 130px;
	color: #fff;
	overflow: auto;
}
@media screen and (max-width: 1200px) {
	.header-top .menu-pages {
		padding-left: 100px;
	}
}
@media screen and (max-width: 1024px) {
	.header-top .menu-pages {
		position: absolute;
		top: -50vh;
		height: calc(50vh - 30px);
		width: 100%;
		left: 0;
		transition: 0.5s;
		pointer-events: none;
		z-index: 1;
		padding-left: 0;
		flex-direction: column;
		justify-content: center;
		background-color: #252525;
		opacity: 0;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 1024px) and (max-height: 640px) {
	.header-top .menu-pages {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 15px;
		justify-items: center;
		padding-left: calc(50vw - 150px);
		padding-right: calc(50vw - 150px);
		padding-top: 10px;
		padding-bottom: 10px;
		grid-auto-rows: 15px;
		align-content: center;
	}
}
@media screen and (max-width: 1024px) and (max-height: 480px) {
	.header-top .menu-pages {
		grid-gap: 10px;
	}
}
.header-top .menu-link {
	font-size: 13px;
	line-height: 15px;
	opacity: 0.6;
	text-transform: uppercase;
	transition: 0.5s;
}
.header-top .menu-link:hover, .header-top .menu-link.active {
	color: #E9542C;
	opacity: 1;
}
.header-top .menu-link:not(:last-child) {
	margin-right: 50px;
}
@media screen and (max-width: 1200px) {
	.header-top .menu-link:not(:last-child) {
		margin-right: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.header-top .menu-link:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 1024px) and (max-height: 640px) {
	.header-top .menu-link:not(:last-child) {
		margin-bottom: 0;
	}
}
.header-top .fav-cart {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1024px) {
	.header-top .fav-cart {
		position: relative;
		z-index: 3;
		flex-grow: 1;
		justify-content: center;
		height: 100%;
		background-color: #252525;
	}
}
.header-top .phone {
	width: 15px;
	height: 26px;
	display: none;
	background: transparent url("../img/icons/phone.svg") center no-repeat;
	background-size: contain;
	margin-right: 23px;
}
@media screen and (max-width: 1024px) {
	.header-top .phone {
		display: block;
	}
}

.header-top .fav {
	width: 19px;
	height: 16px;
	background: transparent url("../img/icons/heart-white.svg") center no-repeat;
	background-size: contain;
	margin-right: 23px;
}
.header-top .fav:hover {
	background-image: url("../img/icons/heart-orange.svg");
}
.header-top .cart-wrap {
	display: flex;
	align-items: center;
}
.header-top .cart {
	position: relative;
	width: 18px;
	height: 21px;
	background: transparent url("../img/icons/bag-white.svg") center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.header-top .cart:hover {
	background-image: url("../img/icons/bag-orange.svg");
}
.header-top .cart:hover .cart-value {
	background-color: #fff;
	color: #E9542C;
}
.header-top .cart-value {
	position: absolute;
	top: -8px;
	right: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	color: #fff;
	background-color: #E9542C;
	font-size: 12px;
	transition: 0.5s;
}
.header-top .cart-empty {
	margin-left: 17px;
	font-size: 12px;
	line-height: 14px;
	opacity: 0.6;
	color: #fff;
}
.header-top .burger {
	background-color: transparent;
	border: 0;
	display: none;
	position: relative;
	z-index: 2;
}
.header-top .burger.open span:nth-child(1) {
	transform: rotate(-45deg);
	top: 8px;
}
.header-top .burger.open span:nth-child(2) {
	opacity: 0;
}
.header-top .burger.open span:nth-child(3) {
	transform: rotate(45deg);
	top: -8px;
}
@media screen and (max-width: 1024px) {
	.header-top .burger {
		display: block;
	}
}
.header-top .burger span {
	display: block;
	background-color: #fff;
	width: 25px;
	height: 2px;
	transition: 0.5s;
	position: relative;
	top: 0;
}
.header-top .burger span:not(:last-child) {
	margin-bottom: 6px;
}
.header-middle {
	background-color: #000;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	.header-middle {
		display: none;
	}
}
.header-middle .wrap {
	display: flex;
	align-items: center;
	min-height: 40px;
}
.header-middle .menu-categories {
	display: flex;
	align-items: center;
	color: #fff;
	padding-left: 130px;
}
@media screen and (max-width: 1200px) {
	.header-middle .menu-categories {
		padding-left: 100px;
	}
}
@media screen and (max-width: 1024px) {
	.header-middle .menu-categories {
		display: none;
	}
}
.header-middle .menu-link {
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	font-family: "Roboto Condensed";
	text-transform: uppercase;
	transition: 0.5s;
}
.header-middle .menu-link:hover, .header-middle .menu-link.active {
	color: #E9542C;
}
.header-middle .menu-link:not(:last-child) {
	margin-right: 50px;
}
@media screen and (max-width: 1200px) {
	.header-middle .menu-link:not(:last-child) {
		margin-right: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.header-middle .menu-link:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 1024px) and (max-height: 640px) {
	.header-middle .menu-link:not(:last-child) {
		margin-bottom: 0;
	}
}
.header-bottom {
	background-color: #fff;
}
@media screen and (max-width: 1024px) {
	.header-bottom {
		padding-top: 60px;
	}
}
.header-bottom .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
}
@media screen and (max-width: 640px) {
	.header-bottom .wrap {
		flex-direction: column;
		padding: 10px;
		align-content: center;
	}
}
.header-bottom .info-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 16px;
}
@media screen and (max-width: 1024px) {
	.header-bottom .info-item {
		font-size: 13px;
	}
}
@media screen and (max-width: 640px) {
	.header-bottom .info-item {
		max-width: 360px;
		width: 100%;
	}
}
.header-bottom .info-item:not(:last-child) {
	margin-right: 40px;
}
@media screen and (max-width: 1024px) {
	.header-bottom .info-item:not(:last-child) {
		margin-right: 30px;
	}
}
@media screen and (max-width: 768px) {
	.header-bottom .info-item:not(:last-child) {
		margin-right: 15px;
	}
}
@media screen and (max-width: 640px) {
	.header-bottom .info-item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 5px;
	}
}
.header-bottom .info-item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-right: 12px;
	font-size: 14px;
	line-height: 16px;
	font-family: "Roboto Condensed";
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
	background-color: #000;
}
.header-mobile-menu {
	display: none;
}
@media screen and (max-width: 1024px) {
	.header-mobile-menu {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		height: 100vh;
		padding-top: 60px;
		background-color: #252525;
		transition: 0.5s;
		z-index: 1;
		opacity: 0;
		pointer-events: none;
		top: -100vh;
	}
}
.header-mobile-menu .menu-inner {
	overflow: auto;
}
.header-mobile-menu .menu-group {
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}
.header-mobile-menu .menu-group.menu-categories {
	background-color: #000;
	font-weight: 700;
	font-family: "Roboto Condensed";
}
.header-mobile-menu .menu-link {
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	transition: 0.5s;
	color: #fff;
}
.header-mobile-menu .menu-link:hover, .header-mobile-menu .menu-link.active {
	color: #E9542C;
}
.header-mobile-menu .menu-link:not(:last-child) {
	margin-bottom: 15px;
}
.block-homescreen {
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 550px;
	overflow: hidden;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.block-homescreen {
		background-position: right center;
	}
}
.block-homescreen .wrap {
	position: relative;
	padding-top: 265px;
	padding-bottom: 54px;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.block-homescreen .wrap {
		flex-direction: column;
		align-items: center;
		padding-top: 200px;
	}
}
.block-homescreen .shoe-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.block-homescreen .shoe-image {
		align-items: flex-start;
	}
}
.block-homescreen .text-content {
	color: #fff;
	position: relative;
	z-index: 2;
	margin-right: 30px;
}
@media screen and (max-width: 640px) {
	.block-homescreen .text-content {
		margin-right: 0;
	}
}
.block-homescreen .block-title {
	font-size: 108px;
	line-height: 0.81;
}
@media screen and (max-width: 1024px) {
	.block-homescreen .block-title {
		font-size: 90px;
	}
}
@media screen and (max-width: 768px) {
	.block-homescreen .block-title {
		font-size: 72px;
	}
}
@media screen and (max-width: 640px) {
	.block-homescreen .block-title {
		text-align: center;
	}
}
@media screen and (max-width: 360px) {
	.block-homescreen .block-title {
		font-size: 64px;
	}
}
.block-homescreen .title-descr {
	margin-top: 10px;
	font-size: 20px;
	line-height: 1.15;
}
@media screen and (max-width: 1024px) {
	.block-homescreen .title-descr {
		font-size: 18px;
	}
}
@media screen and (max-width: 768px) {
	.block-homescreen .title-descr {
		font-size: 16px;
	}
}
@media screen and (max-width: 640px) {
	.block-homescreen .title-descr {
		text-align: center;
	}
}
.block-homescreen .buttons {
	align-self: flex-end;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-right: 70px;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	.block-homescreen .buttons {
		padding-right: 50px;
	}
}
@media screen and (max-width: 768px) {
	.block-homescreen .buttons {
		padding-right: 30px;
	}
}
@media screen and (max-width: 640px) {
	.block-homescreen .buttons {
		align-items: center;
		margin-top: 30px;
	}
}
.block-homescreen .main-btn:not(:last-child) {
	margin-bottom: 13px;
}
.block-homescreen .main-btn:hover span {
	padding-left: 20px;
	min-width: 210px;
}
.block-bottom-gift {
	background-color: #000;
	position: relative;
	z-index: 2;
}
.block-bottom-gift .wrap {
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
}
.block-bottom-gift .gift {
	position: relative;
	font-size: 18px;
	line-height: normal;
	color: #fff;
	font-weight: 700;
	font-family: "Roboto Condensed";
	text-transform: uppercase;
	display: flex;
}
@media screen and (max-width: 640px) {
	.block-bottom-gift .gift {
		align-items: center;
		font-size: 16px;
	}
}
.block-bottom-gift .gift span {
	opacity: 0.6;
}
.block-bottom-gift .gift-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
@media screen and (max-width: 640px) {
	.block-bottom-gift .gift-image {
		justify-content: center;
		margin-right: 10px;
	}
}
.block-bottom-gift .gift-image img {
	position: absolute;
	max-width: 120px;
	transform: translateY(-50%);
	top: -15px;
	right: -15px;
}
@media screen and (max-width: 640px) {
	.block-bottom-gift .gift-image img {
		position: static;
		transform: none;
		max-width: 50px;
	}
}
.block-advantages-icons {
	margin-top: 5px;
	padding: 35px 0;
	position: relative;
	z-index: 1;
}
.block-advantages-icons.white-bg {
	background-color: #fff;
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons.white-bg {
		padding: 15px 0;
	}
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons.white-bg .wrap {
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	.block-advantages-icons.white-bg .wrap {

	}
}
@media screen and (max-width: 480px) {
	.block-advantages-icons.white-bg .wrap {
		grid-template-columns: 1fr;
		justify-items: center;
	}
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons.white-bg .advantage-item {
		width: 33%;
		justify-content: center;
	}
}
.onlymbile {
	display: none;
}
@media screen and (max-width: 768px) {
	.block-advantages-icons.white-bg .advantage-item {
		margin-bottom: 20px;
		flex-wrap: wrap;
	}
	.block-advantages-icons .advantage-item .icon {
		max-width: 100% !important;
		margin-bottom: 10px;
	}
	.block-advantages-icons .advantage-item .icon img {
		max-height: 50px;
	}
	.block-advantages-icons .advantage-item .text {
		text-align: center;
	}
	.onlymbile {
		display: flex;
	}
	.block-product-params .info-column .prices {
		margin-top: 0 !important;
	}
}

}
.block-advantages-icons.black-bg {
	background-color: #000;
	margin-top: 0;
}
.block-advantages-icons.black-bg:last-child {
	border-bottom: 1px solid rgba(196, 196, 196, 0.25);
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons.black-bg .wrap {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.block-advantages-icons.black-bg .wrap {
		grid-template-columns: 1fr 1fr;
		padding-left: 50px;
	}
}
@media screen and (max-width: 640px) {
	.block-advantages-icons.black-bg .wrap {
		padding-left: 10px;
	}
}
@media screen and (max-width: 480px) {
	.block-advantages-icons.black-bg .wrap {
		grid-template-columns: 1fr;
		justify-items: center;
		grid-gap: 30px;
	}
}
@media screen and (max-width: 480px) {
	.block-advantages-icons.black-bg .advantage-item {
		max-width: 240px;
		width: 100%;
	}
}
.block-advantages-icons.black-bg .advantage-item .text {
	color: #fff;
}
.block-advantages-icons .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.block-advantages-icons .advantage-item {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons .advantage-item .icon {
		max-width: 60px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.block-advantages-icons .advantage-item .text {
	margin-left: 20px;
	font-size: 14px;
	line-height: normal;
}
@media screen and (max-width: 1024px) {
	.block-advantages-icons .advantage-item .text {
		font-size: 13px;
		margin-left: 12px;
	}
}
.block-categories-models {
	margin-top: 65px;
}
.block-categories-models .wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 13px;
}
@media screen and (max-width: 768px) {
	.block-categories-models .wrap {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 480px) {
	.block-categories-models .wrap {
		grid-template-columns: 1fr;
	}
}
.block-categories-models .model-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-top: 58px;
	padding-bottom: 28px;
	min-height: 410px;
	position: relative;
}
.block-categories-models .model-item:nth-child(1) {
	background-color: #D0AB50;
}
.block-categories-models .model-item:nth-child(2) {
	background-color: #252525;
}
.block-categories-models .model-item:nth-child(3) {
	background-color: #E9542C;
}
.block-categories-models .model-item:nth-child(4) {
	background-color: #c2c2c2;
}
.block-categories-models .model-item:hover .model-shoe {
	top: -60px;
}
.block-categories-models .model-item .model-number {
	font-size: 200px;
	line-height: 88px;
	font-family: "Roboto Condensed";
	color: #fff;
	opacity: 0.2;
	text-align: center;
	width: 100%;
	font-weight: 700;
	margin-bottom: auto;
}
@media screen and (max-width: 1440px) {
	.block-categories-models .model-item .model-number {
		font-size: 160px;
	}
}
@media screen and (max-width: 1024px) {
	.block-categories-models .model-item .model-number {
		font-size: 120px;
	}
}
@media screen and (max-width: 860px) {
	.block-categories-models .model-item .model-number {
		font-size: 100px;
	}
}
@media screen and (max-width: 768px) {
	.block-categories-models .model-item .model-number {
		font-size: 200px;
	}
}
@media screen and (max-width: 640px) {
	.block-categories-models .model-item .model-number {
		font-size: 160px;
	}
}
@media screen and (max-width: 540px) {
	.block-categories-models .model-item .model-number {
		font-size: 120px;
	}
}
@media screen and (max-width: 480px) {
	.block-categories-models .model-item .model-number {
		font-size: 200px;
	}
}
@media screen and (max-width: 360px) {
	.block-categories-models .model-item .model-number {
		font-size: 160px;
	}
}
.block-categories-models .model-item .model-shoe {
	height: 310px;
	top: -30px;
	left: 0;
	right: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	transition: 0.5s;
}
.block-categories-models .model-item .logo {
	margin-top: auto;
}
.block-categories-models .model-item .main-btn {
	margin-top: 20px;
}
@media screen and (max-width: 1024px) {
	.block-categories-models .model-item .main-btn {
		width: calc(100% - 20px);
		max-width: 200px;
		margin: 20px 10px 0;
	}
}
@media screen and (max-width: 1024px) {
	.block-categories-models .model-item .main-btn span {
		min-width: initial;
		width: 100%;
		max-width: 200px;
	}
}
.block-catalog-models {
	margin-top: 55px;
}
@media screen and (max-width: 1024px) {
	.block-catalog-models {
		margin-top: 50px;
	}
}
.block-catalog-models .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.block-catalog-models .block-title {
	font-size: 26px;
	line-height: 1.62;
	color: #000;
	text-align: center;
}
.block-catalog-models .catalog-models {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 40px;
	background-color: #fff;
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .catalog-models {
		margin-top: 30px;
	}
}
@media screen and (max-width: 860px) {
	.block-catalog-models .catalog-models {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 640px) {
	.block-catalog-models .catalog-models {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 480px) {
	.block-catalog-models .catalog-models {
		grid-template-columns: 1fr;
	}
}
.block-catalog-models .product-link {
	padding: 12px 0 38px;
	border: 1px solid transparent;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: 0.5s;
}
@media screen and (max-width: 1200px) {
	.block-catalog-models .product-link {
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .product-link {
		padding-bottom: 20px;
	}
}
.block-catalog-models .product-link:hover {
	border-color: rgba(177, 177, 177, 0.25);
}
.block-catalog-models .product-link:hover .fav {
	opacity: 1;
	pointer-events: auto;
}
.block-catalog-models .product-link:hover .title {
	text-decoration-color: currentColor;
}
.block-catalog-models .product-link .fav {
	position: absolute;
	top: 20px;
	right: 40px;
	opacity: 0;
	pointer-events: none;
	transition: 0.5s;
	width: 19px;
	height: 16px;
	background: transparent url("../img/icons/heart-black.svg") center no-repeat;
	background-size: contain;
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .product-link .fav {
		opacity: 1;
	}
}
.block-catalog-models .product-link .fav:hover {
	background-image: url("../img/icons/heart-orange.svg");
}
.block-catalog-models .product-link .discount {
	position: absolute;
	top: -1px;
	right: 24px;
	font-size: 18px;
	line-height: 25px;
	height: 25px;
	padding: 0 7px;
	color: #fff;
	font-weight: 700;
	transform: rotate(-90deg);
	background-color: #E9542C;
	transform-origin: top right;
}
.block-catalog-models .product-link .photo {
	padding: 0 38px;
	max-width: 290px;
}
@media screen and (max-width: 1200px) {
	.block-catalog-models .product-link .photo {
		padding: 0 30px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .product-link .photo {
		padding: 0 15px;
	}
}
.block-catalog-models .product-link .photo img {
	max-width: 250px;
	width: 100%;
}
.block-catalog-models .product-link .info {
	padding: 0 60px;
	margin-top: 10px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.block-catalog-models .product-link .info {
		padding: 0 50px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .product-link .info {
		padding: 0 20px;
	}
}
.block-catalog-models .product-link .title {
	font-size: 13px;
	line-height: normal;
	text-decoration: underline;
	transition: 0.5s;
	text-decoration-color: transparent;
}
@media screen and (max-width: 1024px) {
	.block-catalog-models .product-link .title {
		text-decoration-color: currentColor;
	}
}
.block-catalog-models .product-link .prices {
	display: flex;
	align-items: center;
	margin-top: 10px;
	font-size: 16px;
	line-height: normal;
}
.block-catalog-models .product-link .old-price {
	margin-right: 13px;
	color: #b1b1b1;
	text-decoration: line-through;
}
.block-catalog-models .show-more {
	margin-top: 25px;
}
.block-models-updates {
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 65px;
	padding-top: 35px;
	padding-bottom: 20px;
}
.block-models-updates .wrap {
	max-width: 1340px;
	display: flex;
}
@media screen and (max-width: 860px) {
	.block-models-updates .wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.block-models-updates .model-item {
	height: 500px;
}
.block-models-updates .model-item:not(:last-child) {
	margin-right: 13px;
}
@media screen and (max-width: 640px) {
	.block-models-updates .model-item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 30px;
	}
}
.block-models-updates .model-item:nth-child(2) {
	background: #dfdad4;
}
.block-models-updates .model-item:nth-child(3) {
	background: #D0AB50;
}
.block-models-updates .model-item.wide {
	max-width: 506px;
}
.block-models-updates .model-item.wide .photo {
	height: 370px;
	background: transparent url("../img/dummy/gradient-bg.png") center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.block-models-updates .model-item.wide .photo .text-label {
	font-family: "Roboto Condensed";
	font-weight: 700;
	font-size: 180px;
	line-height: 211px;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	opacity: 0.2;
	z-index: 1;
	top: 0;
}
@media screen and (max-width: 1024px) {
	.block-models-updates .model-item.wide .photo .text-label {
		font-size: 150px;
	}
}
@media screen and (max-width: 768px) {
	.block-models-updates .model-item.wide .photo .text-label {
		font-size: 120px;
	}
}
.block-models-updates .model-item.wide .photo .product-image {
	position: relative;
	top: 50px;
	z-index: 2;
	pointer-events: none;
}
.block-models-updates .model-item.wide .photo .main-btn {
	position: absolute;
	z-index: 3;
	bottom: 30px;
	right: 50px;
}
.block-models-updates .model-item.wide .info {
	height: 130px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	padding: 0 30px;
	background-color: #E9542C;
}
@media screen and (max-width: 1024px) {
	.block-models-updates .model-item.wide .info {
		padding: 0 30px 0 0;
	}
}
.block-models-updates .model-item.wide .info .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 135px;
	flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
	.block-models-updates .model-item.wide .info .icon {
		width: 120px;
	}
}
.block-models-updates .model-item.wide .info .text {
	font-family: "Roboto Condensed";
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	color: #fff;
}
.block-models-updates .model-item.normal {
	max-width: 320px;
	width: 100%;
	position: relative;
	padding: 290px 25px 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}
.block-models-updates .model-item.normal .text-label {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.2;
	color: #fff;
	font-size: 140px;
	line-height: 1.1;
	font-family: "Roboto Condensed";
	z-index: 1;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.block-models-updates .model-item.normal .text-label {
		font-size: 120px;
	}
}
@media screen and (max-width: 768px) {
	.block-models-updates .model-item.normal .text-label {
		font-size: 90px;
	}
}
.block-models-updates .model-item.normal .product-image {
	position: absolute;
	top: -30px;
	z-index: 2;
}
.block-models-updates .model-item.normal .main-btn {
	z-index: 3;
}
.block-models-updates .model-item.normal .title-descr {
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	font-family: "Roboto Condensed";
	position: relative;
	z-index: 4;
	font-weight: 400;
	margin-top: auto;
}
.block-models-updates .model-item .after-text {
	align-self: center;
	margin-left: 20px;
}
@media screen and (max-width: 860px) {
	.block-models-updates .after-text {
		display: none;
	}
}
.block-clients-styles {
	margin-top: 65px;
	padding-top: 95px;
	padding-bottom: 130px;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.block-clients-styles {
		margin-top: 50px;
		padding-top: 70px;
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 768px) {
	.block-clients-styles {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.block-clients-styles .gallery-group {
	position: absolute;
	z-index: 1;
}
.block-clients-styles .gallery-group:nth-child(1) {
	top: 35px;
	right: calc(50% + 120px);
}
@media screen and (max-width: 1024px) {
	.block-clients-styles .gallery-group:nth-child(1) {
		right: calc(50% + 180px);
		top: 15px;
	}
}
@media screen and (max-width: 860px) {
	.block-clients-styles .gallery-group:nth-child(1) {
		display: none;
	}
}
.block-clients-styles .gallery-group:nth-child(2) {
	top: 0;
	right: 0;
}
@media screen and (max-width: 1024px) {
	.block-clients-styles .gallery-group:nth-child(2) {
		max-width: 40vw;
	}
}
@media screen and (max-width: 860px) {
	.block-clients-styles .gallery-group:nth-child(2) {
		display: none;
	}
}
.block-clients-styles .text {
	padding-left: calc(50% - 100px);
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 1024px) {
	.block-clients-styles .text {
		padding-left: calc(50% - 150px);
	}
}
@media screen and (max-width: 860px) {
	.block-clients-styles .text {
		padding-left: 0;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.block-clients-styles .block-title {
	font-size: 70px;
	line-height: normal;
}
@media screen and (max-width: 1024px) {
	.block-clients-styles .block-title {
		font-size: 64px;
	}
}
@media screen and (max-width: 768px) {
	.block-clients-styles .block-title {
		font-size: 48px;
	}
}
.block-clients-styles .title-descr {
	margin-top: 25px;
	font-weight: 700;
	font-size: 28px;
}
@media screen and (max-width: 1024px) {
	.block-clients-styles .title-descr {
		font-size: 24px;
	}
}
@media screen and (max-width: 768px) {
	.block-clients-styles .title-descr {
		font-size: 20px;
	}
}
.block-clients-styles .main-btn {
	margin-top: 36px;
}
.block-certificates-incomes {
	padding-top: 55px;
	padding-bottom: 60px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto calc(100% - 60px);
	min-height: 600px;
	position: relative;
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes {
		background-color: #252525;
		background-image: none !important;
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.block-certificates-incomes:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -40px;
	width: 128px;
	pointer-events: none;
	background-color: transparent;
	background-image: url("../img/yeezy-vertical-text-grey.svg");
	background-repeat: no-repeat;
	background-position: center 112px;
	background-size: contain;
	z-index: 1;
}
.block-certificates-incomes .wrap {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes .wrap {
		flex-direction: column;
		align-items: center;
	}
}
.block-certificates-incomes .group-title {
	font-size: 28px;
	font-size: 36px;
	line-height: 42px;
	font-weight: 700;
	font-style: italic;
	font-family: "Roboto Condensed";
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .group-title {
		font-size: 24px;
		line-height: 1.4;
	}
}
.block-certificates-incomes .cert-group {
	margin-right: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	padding-top: 8px;
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes .cert-group {
		margin-right: 0;
		padding-top: 0;
	}
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes .cert-group .group-title {
		color: #fff;
	}
}
.block-certificates-incomes .cert-group .certificate {
	margin-top: -15px;
	max-width: 320px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes .cert-group .certificate {
		margin-top: 10px;
	}
}
.block-certificates-incomes .cert-group .main-btn {
	position: absolute;
	right: 3px;
	top: 230px;
}
.block-certificates-incomes .cert-group .main-btn:hover:before {
	border-color: #000;
}
.block-certificates-incomes .cert-group .main-btn:hover span {
	border-color: #000;
}
.block-certificates-incomes .cert-group .main-btn span {
	min-width: 150px;
}
.block-certificates-incomes .income-group {
	padding: 50px 65px;
	background-color: #D0AB50;
	flex-grow: 1;
	max-width: 790px;
}
@media screen and (max-width: 1024px) {
	.block-certificates-incomes .income-group {
		margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group {
		padding: 30px 20px;
	}
}
.block-certificates-incomes .income-group .group-title {
	color: #fff;
	text-align: center;
}
.block-certificates-incomes .income-group .products {
	display: flex;
	justify-content: space-around;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group .products {
		flex-direction: column;
		align-items: center;
	}
}
.block-certificates-incomes .income-group .product {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 270px;
	width: 100%;
	position: relative;
}
.block-certificates-incomes .income-group .product:not(:last-child) {
	margin-right: 70px;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group .product:not(:last-child) {
		margin-right: 0;
	}
}
.block-certificates-incomes .income-group .product-photo {
	height: 215px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group .product-photo {
		height: 130px;
	}
}
.block-certificates-incomes .income-group .product-photo img {
	position: absolute;
	transform: translateX(20%) translateY(10%);
	max-width: initial;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group .product-photo img {
		max-width: 300px;
		transform: translateX(10%) translateY(15%);
	}
}
.block-certificates-incomes .income-group .product-link {
	z-index: 2;
}
.block-certificates-incomes .income-group .product-title {
	font-size: 28px;
	font-weight: 700;
	font-family: "Roboto Condensed";
	margin-top: 25px;
	color: #fff;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 768px) {
	.block-certificates-incomes .income-group .product-title {
		font-size: 24px;
		text-align: center;
		margin-top: 15px;
	}
}
.block-product-models-categories {
	padding-top: 40px;
}
.block-product-models-categories .title-text {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.block-product-models-categories .title-text {
		flex-direction: column;
	}
}
.block-product-models-categories .title-text .title-column {
	padding-top: 10px;
}
@media screen and (max-width: 1200px) {
	.block-product-models-categories .title-text .title-column {
		padding-top: 0;
		margin-right: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.block-product-models-categories .title-text .title-column {
		flex-shrink: 0;
		max-width: 300px;
	}
}
@media screen and (max-width: 768px) {
	.block-product-models-categories .title-text .title-column {
		max-width: 100%;
		margin-right: 0;
	}
}
.block-product-models-categories .title-text .title {
	font-size: 26px;
	line-height: 1.62;
	text-transform: uppercase;
	font-family: "Roboto Condensed";
	font-weight: 700;
	font-style: italic;
}
.block-product-models-categories .title-text .text-column {
	max-width: 740px;
	font-size: 12px;
	line-height: 1.33;
}
@media screen and (max-width: 1024px) {
	.block-product-models-categories .title-text .text-column {
		max-width: initial;
		flex-shrink: 1;
	}
}
@media screen and (max-width: 768px) {
	.block-product-models-categories .title-text .text-column {
		margin-top: 15px;
		line-height: 1.6;
	}
}
.block-product-models-categories .models-categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	margin-top: 30px;
}
@media screen and (max-width: 1200px) {
	.block-product-models-categories .models-categories {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.block-product-models-categories .models-categories {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 480px) {
	.block-product-models-categories .models-categories {
		grid-template-columns: 1fr 1fr;
	}
	.block-product-models-categories .model-category .category-icon {
		display: none !important;
	}
	.block-product-models-categories .model-category {
		padding-left: 20px;
	}
	.block-catalog-list {
		margin-top: 0 !important;
	}
}
.block-product-models-categories .model-category {
	display: flex;
	align-items: center;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	background-color: #fff;
	position: relative;
	padding-right: 40px;
	min-height: 64px;
	border: 1px solid #fff;
	transition: 0.5s;
}
.block-product-models-categories .model-category.select {
	border-color: #252525;
}
.block-product-models-categories .model-category:after {
	display: block;
	content: '';
	position: absolute;
	right: 15px;
	top: calc(50% - 6.5px);
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-right.svg") center no-repeat;
	background-size: contain;
	width: 10px;
	height: 13px;
}
.block-product-models-categories .model-category:hover, .block-product-models-categories .model-category.active {
	border-color: #252525;
}
@media screen and (max-width: 1024px) {
	.block-product-models-categories .model-category:active {
		background-color: rgba(233, 84, 44, 0.2);
	}
}
.block-product-models-categories .model-category .category-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-shrink: 0;
	width: 120px;
}
@media screen and (max-width: 1024px) {
	.block-product-models-categories .model-category .category-icon {
		width: 100px;
	}
}
.block-product-models-categories .model-category .category-icon img {
	max-width: 95%;
}
@media screen and (max-width: 1024px) {
	.block-product-models-categories .model-category .category-icon img {
		max-width: 80%;
	}
}
.block-product-models-categories .model-category .category-title {
	font-size: 14px;
	line-height: normal;
}
@media screen and (max-width: 640px) {
	.block-product-models-categories .model-category .category-title {
		word-break: break-word;
	}
}
.block-catalog-list {
	margin-top: 20px;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list {
		margin-top: 40px;
	}
}
.block-catalog-list.home-catalog-list {
	margin-top: 55px;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list.home-catalog-list {
		margin-top: 50px;
	}
}
.block-catalog-list.home-catalog-list .wrap {
	align-items: center;
}
.block-catalog-list.home-catalog-list .catalog-items {
	margin-top: 40px;
}
.block-catalog-list .wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.block-catalog-list .sorter {
	padding-right: 16px;
	position: relative;
}
.block-catalog-list .sorter:after {
	width: 12px;
	height: 8px;
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-select.svg") center no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 2px;
	top: calc(50% - 2px);
}
.block-catalog-list .sorter .sort-select {
	padding: 0;
	border: 0;
	background-color: transparent;
	font-size: 16px;
	line-height: 19px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.block-catalog-list .block-title {
	font-size: 26px;
	line-height: 1.62;
	color: #000;
	text-align: center;
}
.block-catalog-list .catalog-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 65px;
	width: 100%;
}
@media screen and (max-width: 860px) {
	.block-catalog-list .catalog-items {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.block-catalog-list .catalog-items {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 540px) {
	.block-catalog-list .catalog-items {
		grid-template-columns: 1fr;
	}
}
.block-catalog-list .catalog-item {
	min-height: 290px;
	position: relative;
	z-index: 1;
}
.block-catalog-list .catalog-item:hover {
	z-index: 2;
}
.block-catalog-list .catalog-item:hover .catalog-item-inner {
	border-color: rgba(177, 177, 177, 0.25);
	background-color: #fff;
}
.block-catalog-list .catalog-item:hover .catalog-item-inner .labels {
	opacity: 1;
}
.block-catalog-list .catalog-item:hover .catalog-item-inner .quick-view {
	opacity: 1;
}
.block-catalog-list .catalog-item:hover .catalog-item-inner .control-buttons {
	opacity: 1;
	pointer-events: auto;
}
.block-catalog-list .catalog-item.banner-item {
	grid-row: 3/5;
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 860px) {
	.block-catalog-list .catalog-item.banner-item {
		display: block;
	}
}
.block-catalog-list .catalog-item.banner-item .banner {
	min-height: 550px;
	color: #fff;
	max-width: 290px;
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 860px) {
	.block-catalog-list .catalog-item.banner-item .banner {
		min-height: initial;
	}
}
@media screen and (max-width: 540px) {
	.block-catalog-list .catalog-item.banner-item .banner {
		margin: 0 auto;
	}
}
.block-catalog-list .catalog-item.banner-item .banner.banner-1 .banner-info {
	padding-top: 100px;
}
@media screen and (max-width: 1200px) {
	.block-catalog-list .catalog-item.banner-item .banner.banner-1 .banner-info {
		padding-top: 80px;
	}
}
.block-catalog-list .catalog-item.banner-item .banner.banner-1 .title {
	font-size: 46px;
	line-height: 1;
}
@media screen and (max-width: 1200px) {
	.block-catalog-list .catalog-item.banner-item .banner.banner-1 .title {
		font-size: 36px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item.banner-item .banner.banner-1 .title {
		font-size: 28px;
	}
}
.block-catalog-list .catalog-item.banner-item .banner.banner-2 .banner-info {
	padding-top: 75px;
}
.block-catalog-list .catalog-item.banner-item .banner.banner-2 .title {
	font-size: 28px;
	line-height: 1.21;
}
.block-catalog-list .catalog-item.banner-item .banner.banner-3 .banner-info {
	padding-top: 70px;
}
.block-catalog-list .catalog-item.banner-item .banner.banner-3 .title {
	font-size: 32px;
	line-height: 1.12;
}
.block-catalog-list .catalog-item.banner-item .banner .banner-photo {
	flex-grow: 0;
}
.block-catalog-list .catalog-item.banner-item .banner .banner-photo img {
	width: 100%;
}
.block-catalog-list .catalog-item.banner-item .banner .banner-info {
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 15px;
	background-color: #E9542C;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-grow: 1;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item.banner-item .banner .banner-info {
		padding-left: 15px;
		padding-right: 15px;
	}
}
.block-catalog-list .catalog-item.banner-item .banner .icon {
	display: block;
	width: 72%;
	position: absolute;
	transform: translateY(-50%);
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}
@media screen and (max-width: 860px) {
	.block-catalog-list .catalog-item.banner-item .banner .icon img {
		max-width: 150px;
	}
}
.block-catalog-list .catalog-item.banner-item .banner .title {
	font-family: "Roboto Condensed";
	line-height: normal;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}
.block-catalog-list .catalog-item.banner-item .banner .descr {
	margin-top: 10px;
	font-size: 13px;
}
.block-catalog-list .catalog-item-inner {
	position: absolute;
	top: -48px;
	left: 0;
	right: 0;
	border: 1px solid transparent;
	transition: 0.5s;
	padding: 60px 0 30px;
}
@media screen and (max-width: 1200px) {
	.block-catalog-list .catalog-item-inner {
		padding: 60px 0 30px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner {
		padding: 60px 0 20px;
		/* position: relative; */
		top: 0;
	}
}
@media screen and (max-width: 768px) {
	.block-catalog-list .catalog-item-inner {
		position: relative;
	}
}
.block-catalog-list .catalog-item-inner .labels {
	width: 100%;
	padding: 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: 20px;
	left: 0;
	opacity: 0;
	transition: 0.5s;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner .labels {
		opacity: 1;
	}
}
.block-catalog-list .catalog-item-inner .label {
	padding: 2px 5px;
	font-size: 12px;
	line-height: normal;
	margin-right: 5px;
	margin-bottom: 5px;
}
.block-catalog-list .catalog-item-inner .label.green {
	background-color: #A9E491;
}
.block-catalog-list .catalog-item-inner .label.blue {
	color: #fff;
	background-color: #2F80ED;
}
.block-catalog-list .catalog-item-inner .discount {
	position: absolute;
	top: 47px;
	right: 24px;
	font-size: 18px;
	line-height: 25px;
	height: 25px;
	padding: 0 7px;
	color: #fff;
	font-weight: 700;
	transform: rotate(-90deg);
	background-color: #E9542C;
	transform-origin: top right;
	z-index: 2;
}
.block-catalog-list .catalog-item-inner .photo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding: 0 40px;
}
@media screen and (max-width: 1440px) {
	.block-catalog-list .catalog-item-inner .photo {
		padding: 0 30px;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner .photo {
		padding: 0 20px;
	}
}
.block-catalog-list .catalog-item-inner .photo img {
	max-width: 250px;
	width: 100%;
}
.block-catalog-list .catalog-item-inner .quick-view {
	background: rgba(255, 255, 255, 0.8);
	padding: 10px 16px;
	border: 0;
	opacity: 0;
	position: absolute;
	margin: 0 auto;
	bottom: 40px;
	font-size: 14px;
	line-height: 16px;
	transition: 0.5s;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner .quick-view {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0;
		color: transparent;
		transition: none;
		background: transparent;
		width: 100%;
		user-select: none;
	}
}
.block-catalog-list .catalog-item-inner .quick-view:hover {
	background-color: rgba(233, 84, 44, 0.8);
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner .quick-view:hover {
		background-color: transparent;
		color: transparent;
	}
}
@media screen and (max-width: 1024px) {
	.block-catalog-list .catalog-item-inner .quick-view:focus {
		opacity: 1;
		background-color: rgba(233, 84, 44, 0.2);
	}
}
.block-catalog-list .catalog-item-inner .info {
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 10px;
	position: relative;
}
.block-catalog-list .catalog-item-inner .title {
	font-size: 13px;
	line-height: normal;
	padding-left: 30px;
	padding-right: 30px;
}
@media screen and (max-width: 1440px) {
	.block-catalog-list .catalog-item-inner .title {
		padding-left: 0;
	}
}
.block-catalog-list .catalog-item-inner .prices {
	display: flex;
	align-items: center;
	margin-top: 10px;
	font-size: 16px;
	line-height: normal;
}
.block-catalog-list .catalog-item-inner .old-price {
	margin-right: 13px;
	color: #b1b1b1;
	text-decoration: line-through;
}
.block-catalog-list .catalog-item-inner .sizes {
	margin-top: 20px;
	display: none;
}
@media screen and (max-width: 768px) {
	.block-catalog-list .catalog-item-inner .sizes {
		display: block;
	}
}
.block-catalog-list .catalog-item-inner:hover .sizes {
	display: block;
}
.block-catalog-list .catalog-item-inner .sizes-title {
	font-size: 10px;
	line-height: 1.2;
	color: #252525;
	opacity: 0.6;
}
.block-catalog-list .catalog-item-inner .sizes-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 5px;
	font-size: 12px;
	line-height: 14px;
}
.block-catalog-list .catalog-item-inner .sizes-items span {
	margin-right: 8px;
}
.block-catalog-list .catalog-item-inner .fav {
	transition: 0.5s;
	width: 19px;
	height: 16px;
	/* background: transparent url("../img/icons/heart-black.svg") center no-repeat; */
	background: transparent url("../img/icons/heart-white.svg") center no-repeat;
	background-size: contain;
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
	position: absolute;
	right: 15px;
	top: 0;
}
.block-catalog-list .catalog-item-inner .fav.added,
.block-catalog-list .catalog-item-inner .fav:hover {
	background-image: url("../img/icons/heart-orange.svg");
}
.block-catalog-list .show-more {
	margin-top: 50px;
	align-self: center;
}


.block-stars-photos {
	margin-top: 50px;
	padding: 85px 0 80px;
	background-color: #F4F5F7;
}
@media screen and (max-width: 1024px) {
	.block-stars-photos {
		padding: 50px 0 50px;
	}
}
.block-stars-photos .wrap {
	max-width: 1330px;
}
.block-stars-photos .block-title {
	font-size: 50px;
	line-height: 0.84;
	color: #000;
}
@media screen and (max-width: 1200px) {
	.block-stars-photos .block-title {
		font-size: 46px;
	}
}
@media screen and (max-width: 1024px) {
	.block-stars-photos .block-title {
		font-size: 42px;
	}
}
@media screen and (max-width: 768px) {
	.block-stars-photos .block-title {
		font-size: 36px;
	}
}
.block-stars-photos .stars-photos {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 16px;
	margin-top: 40px;
}
@media screen and (max-width: 1024px) {
	.block-stars-photos .stars-photos {
		display: block;
	}
}
.block-stars-photos .star-item {
	padding: 14px 18px 30px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1024px) {
	.block-stars-photos .star-item {
		margin: 0 10px;
	}
}
@media screen and (max-width: 860px) {
	.block-stars-photos .star-item {
		margin: 0 8px;
	}
}
.block-stars-photos .star-item .star-photo img {
	width: 100%;
}
.block-stars-photos .star-item .star-title {
	padding: 7px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #E9542C;
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	flex-grow: 1;
}
.block-stars-photos .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.block-stars-photos .slick-dots li {
	list-style: none;
}
.block-stars-photos .slick-dots li:not(:last-child) {
	margin-right: 12px;
}
.block-stars-photos .slick-dots li.slick-active button {
	background-color: #E9542C;
}
.block-stars-photos .slick-dots li button {
	font-size: 0;
	width: 12px;
	height: 12px;
	border: 1px solid #E9542C;
}
.block-managers {
	padding-top: 30px;
}
.block-managers+.block-advantages-icons {
	margin-top: 125px;
}
@media screen and (max-width: 1024px) {
	.block-managers+.block-advantages-icons {
		margin-top: 100px;
	}
}
@media screen and (max-width: 768px) {
	.block-managers+.block-advantages-icons {
		margin-top: 50px;
	}
}
.block-managers .managers {
	margin-top: 25px;
}
.block-managers .manager {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.block-managers .manager {
		flex-direction: column;
	}
}
.block-managers .manager:nth-child(2n+1) .manager-photo {
	margin-right: 55px;
}
@media screen and (max-width: 1024px) {
	.block-managers .manager:nth-child(2n+1) .manager-photo {
		margin-right: 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-managers .manager:nth-child(2n+1) .manager-photo {
		margin-right: 0;
	}
}
.block-managers .manager:nth-child(2n) {
	flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
	.block-managers .manager:nth-child(2n) {
		flex-direction: column;
	}
}
.block-managers .manager:nth-child(2n) .manager-photo {
	margin-left: 55px;
}
@media screen and (max-width: 1024px) {
	.block-managers .manager:nth-child(2n) .manager-photo {
		margin-left: 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-managers .manager:nth-child(2n) .manager-photo {
		margin-left: 0;
	}
}
.block-managers .manager:not(:last-child) {
	margin-bottom: 114px;
}
@media screen and (max-width: 1024px) {
	.block-managers .manager:not(:last-child) {
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 768px) {
	.block-managers .manager:not(:last-child) {
		margin-bottom: 70px;
	}
}
.block-managers .manager-photo {
	flex-shrink: 0;
	max-width: 350px;
	padding: 30px 26px 74px;
	box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.block-managers .manager-photo img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.block-managers .manager-info {
		margin-top: 30px;
	}
}
.block-managers .manager-name {
	font-size: 36px;
	line-height: 1.4;
	font-weight: 700;
	color: #000;
	opacity: 0.8;
}
@media screen and (max-width: 768px) {
	.block-managers .manager-name {
		text-align: center;
	}
}
.block-managers .manager-title {
	margin-top: 8px;
	font-size: 18px;
	line-height: 1.44;
	font-weight: 700;
	color: #000;
	opacity: 0.8;
}
@media screen and (max-width: 768px) {
	.block-managers .manager-title {
		text-align: center;
	}
}
.block-managers .manager-descr {
	margin-top: 30px;
	font-size: 16px;
	line-height: 1.62;
	color: #000;
	opacity: 0.8;
}
.block-managers .manager-descr p:not(:last-child) {
	margin-bottom: 26px;
}
.block-about-shop {
	color: #fff;
	background-color: #000;
}
.block-about-shop .wrap {
	padding-top: 60px;
}
.block-about-shop .block-title {
	font-size: 36px;
	line-height: 1.17;
	text-align: center;
}
.block-about-shop .text {
	margin-top: 50px;
	font-size: 14px;
	line-height: 16px;
	columns: 2;
	column-gap: 40px;
	opacity: 0.8;
}
@media screen and (max-width: 1024px) {
	.block-about-shop .text {
		column-gap: 30px;
		margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-about-shop .text {
		columns: 1;
		line-height: 1.4;
	}
}
.block-about-shop .text p {
	break-inside: avoid;
	display: block;
	margin-bottom: 16px;
}
.block-certificates {
	padding-top: 30px;
	padding-bottom: 60px;
}
.block-certificates .certificates {
	margin-top: 40px;
}
@media screen and (max-width: 1024px) {
	.block-certificates {
		margin-top: 30px;
	}
}
.block-certificates .certificates-slider {
	display: flex;
}
@media screen and (max-width: 1024px) {
	.block-certificates .certificates-slider {
		display: block;
	}
}
.block-certificates .certificates-slider .slide {
	max-width: 240px;
	border: 5px solid #000;
	padding: 10px;
	background: #F0F1EC;
	box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
	.block-certificates .certificates-slider .slide {
		max-width: 100%;
		margin: 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-certificates .certificates-slider .slide {
		margin: 0 20px;
	}
}
@media screen and (max-width: 480px) {
	.block-certificates .certificates-slider .slide {
		margin: 0 15px;
	}
}
.block-certificates .certificates-slider .slide:not(:last-child) {
	margin-right: 70px;
}
@media screen and (max-width: 1024px) {
	.block-certificates .certificates-slider .slide:not(:last-child) {
		margin: 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-certificates .certificates-slider .slide:not(:last-child) {
		margin: 0 20px;
	}
}
@media screen and (max-width: 480px) {
	.block-certificates .certificates-slider .slide:not(:last-child) {
		margin: 0 15px;
	}
}
.block-certificates .certificates-slider .slide-inner {
	border: 1px solid #B1B1B1;
}
@media screen and (max-width: 1024px) {
	.block-certificates .certificates-slider .slide-inner img {
		width: 100%;
	}
}
.block-certificates .certificates-slider .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.block-certificates .certificates-slider .slick-dots li {
	list-style: none;
}
.block-certificates .certificates-slider .slick-dots li:not(:last-child) {
	margin-right: 12px;
}
.block-certificates .certificates-slider .slick-dots li.slick-active button {
	background-color: #E9542C;
}
.block-certificates .certificates-slider .slick-dots li button {
	font-size: 0;
	width: 12px;
	height: 12px;
	border: 1px solid #E9542C;
}
.block-certificates .slider-annotation {
	margin-top: 64px;
	font-size: 18px;
	line-height: 1.44;
	color: #000;
	opacity: 0.8;
	max-width: 740px;
}
@media screen and (max-width: 1024px) {
	.block-certificates .slider-annotation {
		margin-top: 50px;
		font-size: 16px;
	}
}
.block-certificates .certificates-descr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-top: 50px;
	color: #000;
}
@media screen and (max-width: 1024px) {
	.block-certificates .certificates-descr {
		grid-gap: 30px;
	}
}
@media screen and (max-width: 768px) {
	.block-certificates .certificates-descr {
		grid-template-columns: 1fr;
	}
}
.block-certificates .certificates-descr .block-title {
	font-size: 26px;
	line-height: 1.33;
	margin-bottom: 25px;
}
.block-certificates .certificates-descr p {
	opacity: 0.8;
	font-size: 14px;
	line-height: 16px;
}
.block-certificates .certificates-descr p:not(:last-of-type) {
	margin-bottom: 16px;
}
.block-styles {
	padding-top: 30px;
	padding-bottom: 40px;
}
.block-styles .left-column {
	margin-right: 35px;
}
@media screen and (max-width: 1024px) {
	.block-styles .left-column {
		margin-right: 30px;
	}
}
@media screen and (max-width: 860px) {
	.block-styles .left-column {
		margin-right: 0;
		margin-top: 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
}
.block-styles .users-styles {
	margin-top: 50px;
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 860px) {
	.block-styles .users-styles {
		flex-direction: column-reverse;
		align-items: center;
	}
}
@media screen and (max-width: 768px) {
	.block-styles .users-styles {
		margin-top: 30px;
	}
}
.block-styles .upload-style {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 380px;
	flex-shrink: 0;
	padding: 20px 50px;
	background-color: rgba(196, 196, 196, 0.25);
	border-radius: 20px;
	transition: 0.5s;
}
.block-styles .upload-style:hover {
	filter: invert(100%);
}
@media screen and (max-width: 1024px) {
	.block-styles .upload-style {
		padding: 20px 30px;
	}
}
@media screen and (max-width: 860px) {
	.block-styles .upload-style {
		max-width: 100%;
		justify-content: center;
	}
}
.block-styles .upload-style .input-icon {
	width: 78px;
	height: 78px;
	display: block;
	border-radius: 50%;
	border: 2px solid #c4c4c4;
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/shoe-grey.svg") center no-repeat;
	background-size: 50px 26px;
	margin-right: 30px;
	flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
	.block-styles .upload-style .input-icon {
		margin-right: 15px;
	}
}
.block-styles .upload-style .input-text {
	font-size: 16px;
	line-height: 1.62;
	color: #939393;
}
.block-styles .styles {
	margin-top: 60px;
}
@media screen and (max-width: 1024px) {
	.block-styles .styles {
		margin-top: 50px;
	}
}
@media screen and (max-width: 860px) {
	.block-styles .styles {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
@media screen and (max-width: 768px) {
	.block-styles .styles {
		margin-top: 30px;
	}
}
.block-styles .styles-title {
	font-size: 18px;
	line-height: 1.44;
	color: #000;
	opacity: 0.8;
	font-weight: 700;
}
.block-styles .styles-list {
	margin-top: 20px;
}
@media screen and (max-width: 860px) {
	.block-styles .styles-list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
}
.block-styles .style-item {
	display: flex;
	align-items: center;
	cursor: pointer;
}
@media screen and (max-width: 860px) {
	.block-styles .style-item {
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.block-styles .style-item {
		width: 100%;
	}
}
.block-styles .style-item:not(:last-child) {
	margin-bottom: 26px;
}
.block-styles .style-item .style-photo {
	width: 106px;
	height: 106px;
	overflow: hidden;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 18px;
	flex-shrink: 0;
}
.block-styles .style-item .style-photo img {
	margin: auto;
	position: absolute;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	object-fit: contain;
	min-width: 106px;
	min-height: 106px;
	width: auto;
	height: auto;
	max-width: initial;
}
.block-styles .style-item .style-title {
	font-size: 16px;
	line-height: 20px;
	font-family: "Roboto Condensed";
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}
.block-styles .style-item .style-like {
	margin-top: 4px;
	font-size: 12px;
	line-height: normal;
	padding-left: 33px;
	position: relative;
	margin-top: 12px;
}
.block-styles .style-item .style-like:before {
	display: block;
	content: '';
	width: 25px;
	height: 23px;
	position: absolute;
	left: 0;
	top: calc(50% - 11px);
	background: transparent url("../img/icons/heart-red.svg") center no-repeat;
	background-size: contain;
}
.block-styles .more-styles {
	width: 100%;
	max-width: 330px;
	height: 55px;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-top: 24px;
	background-color: #fff;
	transition: 0.5s;
}
.block-styles .more-styles:hover {
	background-color: #E9542C;
}
.block-styles .more-styles:hover span {
	color: #fff;
}
@media screen and (max-width: 480px) {
	.block-styles .more-styles {
		max-width: 100%;
	}
}
.block-styles .more-styles span {
	color: rgba(37, 37, 37, 0.8);
	position: relative;
	padding-right: 34px;
	transition: 0.5s;
}
.block-styles .more-styles span:after {
	display: block;
	content: '';
	background: transparent url("../img/icons/arrow-bottom-big.svg") center no-repeat;
	background-size: contain;
	width: 18px;
	height: 11px;
	position: absolute;
	right: 0;
	top: calc(50% - 5px);
}
.block-styles .right-column {
	display: flex;
}
@media screen and (max-width: 640px) {
	.block-styles .right-column {
		flex-direction: column;
	}
}
.block-styles .selected-style-item {
	max-width: 540px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-right: 45px;
}
@media screen and (max-width: 1024px) {
	.block-styles .selected-style-item {
		margin-right: 30px;
	}
}
@media screen and (max-width: 640px) {
	.block-styles .selected-style-item {
		margin-right: 0;
	}
}
.block-styles .selected-style-item .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(37, 37, 37, 0) 59.9%, #252525 100%);
	display: flex;
	align-items: flex-end;
	padding: 0 50px 55px;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.block-styles .selected-style-item .overlay {
		padding: 0 30px 30px;
	}
}
.block-styles .selected-style-item .style-title {
	font-size: 26px;
	line-height: 1.27;
	font-style: italic;
	margin-right: 30px;
}
.block-styles .selected-style-item .style-like {
	margin-bottom: 10px;
	padding-left: 33px;
	position: relative;
	font-size: 16px;
	line-height: 19px;
}
.block-styles .selected-style-item .style-like:before {
	display: block;
	content: '';
	width: 25px;
	height: 23px;
	position: absolute;
	left: 0;
	top: calc(50% - 11px);
	background: transparent url("../img/icons/heart-red.svg") center no-repeat;
	background-size: contain;
}
.block-styles .controls {
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding-top: 110px;
}
@media screen and (max-width: 1200px) {
	.block-styles .controls {
		padding-top: 100px;
	}
}
@media screen and (max-width: 1024px) {
	.block-styles .controls {
		padding-top: 70px;
	}
}
@media screen and (max-width: 768px) {
	.block-styles .controls {
		padding-top: 50px;
	}
}
@media screen and (max-width: 640px) {
	.block-styles .controls {
		padding-top: 30px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px;
		direction: rtl;
	}
}
.block-styles .vote-button {
	min-width: 200px;
	border: 1px solid #252525;
	height: 68px;
	border-radius: 40px;
	background-color: #fff;
	padding-left: 70px;
	padding-right: 15px;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
}
.block-styles .vote-button:hover {
	background-color: #252525;
	color: #fff;
}
@media screen and (max-width: 640px) {
	.block-styles .vote-button {
		text-align: center;
		justify-content: center;
	}
}
@media screen and (max-width: 480px) {
	.block-styles .vote-button {
		font-size: 16px;
		padding-left: 50px;
		height: 50px;
	}
}
.block-styles .vote-button:before {
	display: block;
	content: '';
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
}
.block-styles .vote-button:not(:last-child) {
	margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
	.block-styles .vote-button:not(:last-child) {
		margin-bottom: initial;
	}
}
.block-styles .vote-button.like:before {
	width: 36px;
	height: 36px;
	background-image: url("../img/icons/heart-red.svg");
	left: 20px;
	top: calc(50% - 18px);
}
@media screen and (max-width: 480px) {
	.block-styles .vote-button.like:before {
		width: 24px;
		height: 24px;
		top: calc(50% - 12px);
		left: 14px;
	}
}
.block-styles .vote-button.dislike:before {
	width: 41px;
	height: 41px;
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/dislike.svg");
	left: 18px;
	top: calc(50% - 20.5px);
}
@media screen and (max-width: 480px) {
	.block-styles .vote-button.dislike:before {
		width: 24px;
		height: 24px;
		top: calc(50% - 12px);
		left: 14px;
	}
}
.block-release-products {
	padding-top: 20px;
	padding-bottom: 95px;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
	.block-release-products {
		padding-bottom: 70px;
	}
}
@media screen and (max-width: 768px) {
	.block-release-products {
		padding-bottom: 50px;
	}
}
.block-release-products .preorder-title-banner {
	margin-top: 15px;
	color: #fff;
	font-style: italic;
	padding: 9px 0;
	background-color: #E9542C;
}
.block-release-products .preorder-title-banner .wrap {
	display: flex;
	align-items: stretch;
}
.block-release-products .preorder-title-banner .block-title {
	font-size: 40px;
	line-height: 1.05;
}
@media screen and (max-width: 1024px) {
	.block-release-products .preorder-title-banner .block-title {
		font-size: 36px;
	}
}
@media screen and (max-width: 768px) {
	.block-release-products .preorder-title-banner .block-title {
		font-size: 32px;
	}
}
@media screen and (max-width: 480px) {
	.block-release-products .preorder-title-banner .block-title {
		font-size: 30px;
	}
}
.block-release-products .preorder-title-banner .model {
	width: 220px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 480px) {
	.block-release-products .preorder-title-banner .model {
		display: none;
	}
}
.block-release-products .preorder-title-banner .model img {
	position: absolute;
	margin: auto;
}
@media screen and (max-width: 1024px) {
	.block-release-products .preorder-title-banner .model img {
		max-width: 220px;
	}
}
.block-release-products .release-products {
	margin-top: 75px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-row-gap: 55px;
	grid-column-gap: 40px;
}
@media screen and (max-width: 1024px) {
	.block-release-products .release-products {
		grid-gap: 30px;
	}
}
@media screen and (max-width: 860px) {
	.block-release-products .release-products {
		grid-gap: 20px;
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.block-release-products .release-products {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 480px) {
	.block-release-products .release-products {
		grid-template-columns: 1fr 1fr;
	}
}
.block-release-products .product {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding: 50px 0 0;
}
@media screen and (max-width: 860px) {
	.block-release-products .product {
		padding: 30px 0 0;
	}
}
.block-release-products .product .date {
	position: absolute;
	top: 0;
	right: 24px;
	min-width: 52px;
	height: 84px;
	padding: 52px 7px 0;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	color: rgba(37, 37, 37, 0.8);
	border-radius: 30px;
	border: 1px solid #252525;
}
@media screen and (max-width: 1024px) {
	.block-release-products .product .date {
		right: 16px;
	}
}
@media screen and (max-width: 860px) {
	.block-release-products .product .date {
		padding: 40px 4px 0;
		min-width: 48px;
		height: 70px;
	}
}
.block-release-products .product .date:before {
	display: block;
	content: '';
	width: 26px;
	height: 28px;
	position: absolute;
	left: calc(50% - 14px);
	top: 15px;
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/clock.svg") center no-repeat;
	background-size: contain;
}
@media screen and (max-width: 860px) {
	.block-release-products .product .date:before {
		width: 20px;
		height: 21px;
		top: 12px;
		left: calc(50% - 10px);
	}
}
.block-release-products .product .photo {
	height: 164px;
	max-width: 246px;
	display: flex;
	align-items: center;
}
.block-release-products .product .title {
	font-size: 13px;
	line-height: 15px;
	min-height: 30px;
	color: rgba(37, 37, 37, 0.8);
	margin-top: 9px;
	margin-bottom: 20px;
	max-width: 200px;
}
.block-release-products .product .order {
	margin-top: auto;
	min-width: 138px;
	height: 44px;
	border: 1px solid #252525;
	color: #fff;
	font-size: 14px;
	line-height: 44px;
	text-align: center;
	background-color: #252525;
	transition: 0.5s;
}
.block-release-products .product .order:hover {
	color: #252525;
	background-color: #fff;
}
.block-release-descr {
	padding-top: 25px;
	padding-bottom: 63px;
}
.block-release-descr .block-title {
	font-size: 36px;
	line-height: 1.17;
	text-align: center;
	color: #000;
}
@media screen and (max-width: 768px) {
	.block-release-descr .block-title {
		font-size: 32px;
	}
}
@media screen and (max-width: 480px) {
	.block-release-descr .block-title {
		font-size: 30px;
	}
}
.block-release-descr .descr {
	font-size: 14px;
	line-height: 16px;
	columns: 2;
	column-gap: 40px;
	margin-top: 50px;
	color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
	.block-release-descr .descr {
		column-gap: 30px;
		margin-top: 30px;
	}
}
@media screen and (max-width: 640px) {
	.block-release-descr .descr {
		columns: 1;
		line-height: 1.4;
	}
}
.block-release-descr .descr p {
	break-inside: avoid;
}
.block-release-descr .descr p:not(:last-child) {
	margin-bottom: 16px;
}
.block-product-params {
	padding-top: 30px;
}
.block-product-params .product-params {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
@media screen and (max-width: 860px) {
	.block-product-params .product-params {
		flex-direction: column;
	}
}
.block-product-params .product-params .column {
	width: calc(50% - 40px);
}
@media screen and (max-width: 1200px) {
	.block-product-params .product-params .column {
		width: calc(50% - 30px);
	}
}
@media screen and (max-width: 1024px) {
	.block-product-params .product-params .column {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 860px) {
	.block-product-params .product-params .column {
		width: 100%;
	}
}
@media screen and (max-width: 860px) {
	.block-product-params .slider-column {
		max-width: 100%;
		margin-right: 0;
	}
}


@media screen and (max-width: 860px) {
	.block-product-params .slider-column .product-slider-photos {
		max-width: 480px;
		margin: 0 auto;
	}
}
.block-product-params .slider-column .product-slider-photos .photo-slide {
	position: relative;
	text-align: center;
}
.block-product-params .slider-column .product-slider-photos .photo-slide img {
	max-width: 90%;
	display: inline-block;
}

/* slider-thumbs */
	.block-product-params .slider-column .product-slider-thumbs {
		margin-top: 85px;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs {
			max-width: 370px;
			margin: 30px auto 0;
		}
	}
	@media screen and (max-width: 768px) {
		.block-product-params .slider-column .product-slider-thumbs {
			max-width: 280px;
		}
	}
	@media screen and (max-width: 360px) {
		.block-product-params .slider-column .product-slider-thumbs {
			max-width: 250px;
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-slide {
		margin: 0 25px;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-slide {
			margin: 0 10px;
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .thumb-slide {
		width: 95px;
		height: 95px;
		position: relative;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs .thumb-slide {
			width: 70px;
			height: 70px;
		}
	}
	@media screen and (max-width: 360px) {
		.block-product-params .slider-column .product-slider-thumbs .thumb-slide {
			width: 60px;
			height: 60px;
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .thumb-slide img {
		position: absolute;
		top: -50%;
		bottom: -50%;
		left: -50%;
		right: -50%;
		margin: auto;
		width: auto;
		min-width: 95px;
		min-height: 95px;
		object-fit: cover;
		border: 1px solid #e5e5e5;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs .thumb-slide img {
			min-width: 70px;
			min-height: 70px;
		}
	}
	@media screen and (max-width: 360px) {
		.block-product-params .slider-column .product-slider-thumbs .thumb-slide img {
			min-width: 60px;
			min-height: 60px;
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-track {
		z-index: 1;
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-arrow {
		width: 15px;
		height: 25px;
		background: #e5e5e5 url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-right.svg") center no-repeat;
		background-size: 6px 9px;
		position: absolute;
		z-index: 2;
		font-size: 0;
		color: transparent;
		border: 0;
		padding: 0;
		top: calc(50% - 12px);
		transition: 0.5s;
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-arrow:hover {
		background-color: #E9542C;
	}
	@media screen and (max-width: 768px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-arrow {
			width: 30px;
			height: 50px;
			background-size: 12px 18px;
			top: calc(50% - 25px);
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
		left: 0px;
		transform: rotate(-180deg);
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
			left: -10px;
		}
	}
	@media screen and (max-width: 768px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
			left: -25px;
		}
	}
	.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-next {
		right: 0px;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-next {
			right: -10px;
		}
	}
	@media screen and (max-width: 768px) {
		.block-product-params .slider-column .product-slider-thumbs .slick-arrow.slick-next {
			right: -25px;
		}
	}

/* slider-info-icons */
	.block-product-params .slider-column .product-info-icons {
		margin-top: 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	@media screen and (max-width: 860px) {
		.block-product-params .slider-column .product-info-icons {
			margin-top: 30px;
			justify-content: space-evenly;
		}
	}
	@media screen and (max-width: 540px) {
		.block-product-params .slider-column .product-info-icons {
			flex-direction: column;
			align-items: center;
			align-content: center;
		}
	}
	.block-product-params .slider-column .info-icon {
		display: flex;
		align-items: center;
		width: calc(100% / 3);
	}
	@media screen and (max-width: 860px) {
		.block-product-params .slider-column .info-icon {
			width: auto;
		}
	}
	@media screen and (max-width: 540px) {
		.block-product-params .slider-column .info-icon {
			min-width: 180px;
		}
	}
	.block-product-params .slider-column .info-icon:not(:last-child) {
		/* margin-bottom: 15px; */
	}
	@media screen and (max-width: 540px) {
		.block-product-params .slider-column .info-icon:not(:last-child) {
			margin-bottom: 10px;
		}
	}
	.block-product-params .slider-column .info-icon .icon {
		width: 50px;
		margin-right: 12px;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .info-icon .icon {
			width: 35px;
			margin-right: 15px;
		}
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .info-icon .icon img {
			max-width: 35px;
			max-height: 35px;
		}
	}
	@media screen and (max-width: 540px) {
		.block-product-params .slider-column .info-icon .icon img {
			max-height: 25px;
		}
	}
	.block-product-params .slider-column .info-icon .text {
		font-size: 14px;
		line-height: normal;
	}
	@media screen and (max-width: 1024px) {
		.block-product-params .slider-column .info-icon .text {
			font-size: 13px;
		}
	}


.block-product-params .info-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 860px) {
	.block-product-params .info-column {
		margin-top: 30px;
	}
}
.block-product-params .info-column .action {
	display: flex;
	align-items: center;
}
.block-product-params .info-column .action-title {
	font-size: 13px;
	line-height: 15px;
	color: rgba(0, 0, 0, 0.8);
}
.block-product-params .info-column .action .discount {
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	padding: 3px 18px;
	border-radius: 5px;
	background-color: #E9542C;
	color: #fff;
	margin-left: 16px;
}
.block-product-params .info-column .block-title {
	margin-top: 15px;
	font-size: 34px;
	line-height: 1.29;
	max-width: 430px;
}
@media screen and (max-width: 860px) {
	.block-product-params .info-column .block-title {
		max-width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.block-product-params .info-column .block-title {
		font-size: 28px;
	}
}
.block-product-params .info-column .available-amount {
	font-size: 15px;
	line-height: 18px;
	margin-top: 11px;
	color: rgba(37, 37, 37, 0.8);
}
.block-product-params .info-column .prices {
	display: flex;
	margin-top: 37px;
}
.block-product-params .info-column .prices .current-price {
	font-size: 34px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	font-weight: 700;
	color: #000;
	margin-right: 20px;
}
.block-product-params .info-column .prices .old-price {
	font-size: 24px;
	line-height: 1.83;
	color: rgba(37, 37, 37, 0.4);
	text-decoration: line-through;
	font-family: "Roboto Condensed";
	font-weight: 400;
	position: relative;
	top: -3px;
}
.block-product-params .info-column .sizes-info-help {
	margin-top: 37px;
	font-size: 13px;
	line-height: 15px;
	text-decoration: underline;
	padding: 0;
	padding-left: 39px;
	background-color: transparent;
	border: 0;
	position: relative;
	transition: 0.5s;
	cursor: pointer;
}
.block-product-params .info-column .sizes-info-help:hover {
	color: #E9542C;
}
.block-product-params .info-column .sizes-info-help:before {
	display: block;
	content: '';
	width: 24px;
	height: 24px;
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/ruler.svg") center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: calc(50% - 12px);
}
.block-product-params .info-column .sizes-selectors {
	margin-top: 40px;
}
@media screen and (max-width: 860px) {
	.block-product-params .info-column .sizes-selectors {
		display: flex;
		flex-wrap: wrap;
	}
}
.block-product-params .info-column .selector-group {
	flex-grow: 1;
}
.block-product-params .info-column .selector-group:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 860px) {
	.block-product-params .info-column .selector-group:not(:last-child) {
		margin-right: 20px;
	}
}
.block-product-params .info-column .selector-group .group-title {
	font-size: 16px;
	line-height: 19px;
}
.block-product-params .info-column .selectors {
	display: flex;
	margin-top: 9px;
}
.block-product-params .info-column .selector {
	width: 100%;
	min-width: 40px;
	max-width: 60px;
}
.block-product-params .info-column .selector:not(:last-child) {
	margin-right: 5px;
}
.block-product-params .info-column .selector .checkbox-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background-color: #F4F5F7;
	font-size: 18px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 300;
	transition: 0.5s;
	user-select: none;
}
.block-product-params .info-column .selector .checkbox-custom:hover {
	background-color: #E9542C;
	color: #fff;
}
.block-product-params .info-column .selector input:checked+.checkbox-custom {
	background-color: #252525;
	color: #fff;
}
.block-product-params .info-column .few-models-option {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 860px) {
	.block-product-params .info-column .few-models-option {
		width: 100%;
	}
}
.block-product-params .info-column .few-models-option .checkbox-custom {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: block;
	border: 1px solid #252525;
	margin-right: 13px;
}
.block-product-params .info-column .few-models-option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 3px;
	transition: 0.5s;
	background-color: transparent;
}
.block-product-params .info-column .few-models-option .checkbox-text {
	font-size: 13px;
}
.block-product-params .info-column .few-models-option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.block-product-params .info-column .delivery {
	display: flex;
	align-items: flex-start;
	padding: 28px 32px;
	border-radius: 5px;
	background-color: #DDE6F2;
	width: 100%;
	max-width: 480px;
	margin-top: 26px;
}
@media screen and (max-width: 640px) {
	.block-product-params .info-column .delivery {
		padding: 28px 16px 32px;
	}
}
@media screen and (max-width: 480px) {
	.block-product-params .info-column .delivery {
		flex-direction: column;
	}
}
.block-product-params .info-column .delivery .title {
	width: 118px;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
}
@media screen and (max-width: 640px) {
	.block-product-params .info-column .delivery .title {
		width: 94px;
	}
}
.block-product-params .info-column .delivery .options {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.block-product-params .info-column .delivery .options {
		margin-top: 15px;
	}
}
.block-product-params .info-column .delivery .option {
	display: flex;
	align-items: flex-start;
}
.block-product-params .info-column .delivery .option:not(:last-child) {
	margin-bottom: 15px;
}
.block-product-params .info-column .delivery .option .checkbox-custom {
	width: 21px;
	height: 21px;
	border: 1px solid #252525;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 9px;
	position: relative;
	display: block;
	transition: 0.5s;
	user-select: none;
}
.block-product-params .info-column .delivery .option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-radius: 50%;
	transition: 0.5s;
	background-color: transparent;
}
.block-product-params .info-column .delivery .option .checkbox-text {
	font-size: 18px;
	line-height: 21px;
}
.block-product-params .info-column .delivery .option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.block-product-params .info-column .order-controls {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.block-product-params .info-column .order-controls {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.block-product-params .info-column .order-controls .main-btn {
		width: 100%;
		max-width: 320px;
	}
}
.block-product-params .info-column .order-controls .main-btn:after {
	width: 37px;
	height: 18px;
	top: calc(50% - 9px);
}
.block-product-params .info-column .order-controls .main-btn span {
	min-width: 310px;
	height: 70px;
	font-size: 16px;
	padding-left: 25px;
}
@media screen and (max-width: 480px) {
	.block-product-params .info-column .order-controls .main-btn span {
		width: 100%;
		min-width: initial;
	}
}
.block-product-params .info-column .order-controls .main-btn.orange:after, .block-product-params .info-column .order-controls .main-btn.black:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}
.block-product-params .info-column .order-controls .main-btn.white:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-black.svg");
}
.block-product-info-tabs {
	padding-top: 75px;
	padding-bottom: 35px;
}
@media screen and (max-width: 1024px) {
	.block-product-info-tabs {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.block-product-info-tabs .info-tabs-links {
	padding-bottom: 18px;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
}
.block-product-info-tabs .info-tabs-links .wrap {
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.block-product-info-tabs .info-tabs-links .wrap {
		flex-direction: column;
		align-items: center;
	}
}
.block-product-info-tabs .info-tab-link {
	font-size: 18px;
	line-height: 21px;
	opacity: 0.4;
	cursor: pointer;
	transition: 0.5s;
	user-select: none;
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .info-tab-link {
		font-size: 16px;
	}
}
.block-product-info-tabs .info-tab-link:hover {
	color: #E9542C;
	opacity: 1;
}
.block-product-info-tabs .info-tab-link.active {
	opacity: 1;
	pointer-events: none;
}
.block-product-info-tabs .info-tab-link:not(:last-child) {
	margin-right: 50px;
}
@media screen and (max-width: 1024px) {
	.block-product-info-tabs .info-tab-link:not(:last-child) {
		margin-right: 40px;
	}
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .info-tab-link:not(:last-child) {
		margin-right: 30px;
	}
}
@media screen and (max-width: 480px) {
	.block-product-info-tabs .info-tab-link:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
}
.block-product-info-tabs .info-tabs {
	padding-top: 40px;
}
.block-product-info-tabs .info-tab {
	display: none;
}
.block-product-info-tabs .info-tab.active {
	display: block;
}
.block-product-info-tabs .tab-content.product-info {
	display: flex;
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .tab-content.product-info {
		flex-direction: column-reverse;
		align-items: center;
	}
}
.block-product-info-tabs .tab-content.product-info .text-column {
	max-width: 680px;
	margin-right: 90px;
	flex-grow: 0;
}
@media screen and (max-width: 1200px) {
	.block-product-info-tabs .tab-content.product-info .text-column {
		margin-right: 60px;
	}
}
@media screen and (max-width: 1024px) {
	.block-product-info-tabs .tab-content.product-info .text-column {
		margin-right: 30px;
		max-width: 500px;
	}
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .tab-content.product-info .text-column {
		margin-right: 0;
		max-width: 100%;
		margin-top: 20px;
	}
}
.block-product-info-tabs .tab-content.product-info .vendor-code {
	font-size: 13px;
	line-height: 15px;
	opacity: 0.8;
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .tab-content.product-info .vendor-code {
		text-align: center;
	}
}
.block-product-info-tabs .tab-content.product-info .block-title {
	font-size: 24px;
	line-height: 1.83;
	color: #000;
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .tab-content.product-info .block-title {
		text-align: center;
	}
}
.block-product-info-tabs .tab-content.product-info .block-title+.descr {
	margin-top: 28px;
}
.block-product-info-tabs .tab-content.product-info .block-title+.params-table {
	margin-top: 14px;
}
.block-product-info-tabs .tab-content.product-info .descr {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.8);
}
.block-product-info-tabs .tab-content.product-info .descr+.block-title {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.block-product-info-tabs .tab-content.product-info .descr+.block-title {
		margin-top: 30px;
	}
}
.block-product-info-tabs .tab-content.product-info .params-table {
	display: flex;
	font-size: 14px;
	line-height: 2.14;
	color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 480px) {
	.block-product-info-tabs .tab-content.product-info .params-table {
		flex-direction: column;
	}
}
.block-product-info-tabs .tab-content.product-info .params-table .column {
	width: 50%;
}
@media screen and (max-width: 480px) {
	.block-product-info-tabs .tab-content.product-info .params-table .column {
		width: 100%;
	}
}
.block-reviews {
	padding-top: 55px;
	padding-bottom: 60px;
	background-color: #F4F5F7;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.block-reviews {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.block-reviews .block-title {
	font-size: 26px;
	line-height: 1.62;
}
.block-reviews .reviews-slider {
	margin-top: 60px;
}
@media screen and (max-width: 1440px) {
	.block-reviews .reviews-slider {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media screen and (max-width: 1024px) {
	.block-reviews .reviews-slider {
		margin-top: 50px;
	}
}
@media screen and (max-width: 768px) {
	.block-reviews .reviews-slider {
		margin-top: 30px;
	}
}
@media screen and (max-width: 480px) {
	.block-reviews .reviews-slider {
		padding-left: 45px;
		padding-right: 45px;
	}
}
.block-reviews .reviews-slider .slick-track {
	z-index: 1;
}
.block-reviews .reviews-slider .slick-arrow, .block-stars-photos .slick-arrow, .certificates-slider .slick-arrow {
	display: block;
	position: absolute;
	width: 55px;
	height: 55px;
	top: calc(50% - 27.5px);
	transition: 0.5s;
	border: 1px solid #252525;
	background: #F4F5F7 url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-right.svg") center no-repeat;
	background-size: 12px;
	z-index: 2;
	font-size: 0;
	color: transparent;
	transition: 0.5s;
}
.block-reviews .reviews-slider .slick-arrow:hover, .block-stars-photos .slick-arrow:hover, .certificates-slider .slick-arrow:hover {
	background-color: #E9542C;
}
@media screen and (max-width: 480px) {
	.block-reviews .reviews-slider .slick-arrow, .block-stars-photos .slick-arrow, .certificates-slider .slick-arrow {
		width: 40px;
		height: 40px;
	}
}
.block-reviews .reviews-slider .slick-arrow.slick-disabled {
	opacity: 0;
	pointer-events: none;
}
.block-reviews .reviews-slider .slick-arrow.slick-prev, .block-stars-photos .slick-arrow.slick-prev, .certificates-slider .slick-arrow.slick-prev {
	left: -35px;
	transform: rotate(-180deg);
}
@media screen and (max-width: 1440px) {
	.block-reviews .reviews-slider .slick-arrow.slick-prev, .block-stars-photos .slick-arrow.slick-prev, .certificates-slider .slick-arrow.slick-prev {
		left: 0;
	}
}
.block-reviews .reviews-slider .slick-arrow.slick-next {
	right: -35px;
}
@media screen and (max-width: 1440px) {
	.block-reviews .reviews-slider .slick-arrow.slick-next, .block-stars-photos .slick-arrow.slick-next, .certificates-slider .slick-arrow.slick-next {
		right: 0;
	}
}
.block-reviews .review-item {
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.block-reviews .review-item {
		flex-direction: column;
		align-items: center;
	}
}
.block-reviews .review-item .photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	flex-shrink: 0;
	margin-right: 26px;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}
@media screen and (max-width: 480px) {
	.block-reviews .review-item .photo {
		margin-right: 0;
	}
}
.block-reviews .review-item .photo img {
	position: absolute;
	margin: auto;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	object-fit: cover;
	min-width: 130px;
	min-height: 130px;
	width: auto;
}
.block-reviews .review-item .info {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.8);
	padding-right: 26px;
	text-align: left;
}
@media screen and (max-width: 480px) {
	.block-reviews .review-item .info {
		padding-right: 0;
		margin-top: 10px;
	}
}
.block-reviews .review-item .author {
	font-weight: 700;
}
@media screen and (max-width: 480px) {
	.block-reviews .review-item .author {
		text-align: center;
	}
}
.block-reviews .review-item .message {
	margin-top: 20px;
}
@media screen and (max-width: 480px) {
	.block-reviews .review-item .message {
		text-align: center;
	}
}
.block-reviews .show-more {
	display: inline-block;
	margin-top: 55px;
}
@media screen and (max-width: 1024px) {
	.block-reviews .show-more {
		margin-top: 50px;
	}
}
@media screen and (max-width: 768px) {
	.block-reviews .show-more {
		margin-top: 30px;
	}
}
.block-recommend-models {
	padding-bottom: 15px;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: inherit;
}
*:focus, *:active {
	outline: 0;
}
html {
	background-color: #e5e5e5;
}
body {
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	max-width: 1440px;
	margin: 0 auto;
	font-weight: 400;
	background-color: #fff;
	color: #252525;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
a:hover {
	cursor: pointer;
}
a:active, a:focus {
	outline: 0;
}
img {
	display: block;
	max-width: 100%;
}
button {
	padding: 0;
	cursor: pointer;
}
button:hover {
	cursor: pointer;
}
button:active, button:focus {
	outline: 0;
}
label {
	cursor: pointer;
}
input, textarea {
	font-family: inherit;
	font-size: inherit;
}
input::placehoder, textarea::placehoder {
	font-family: inherit;
	opacity: 1;
	font-size: inherit;
}
p {
	margin: 0;
}
.wrapper {
	overflow: hidden;
}
/* .wrapper.modal-open {
	height: 100vh;
}
@media screen and (max-width: 1024px) {
	.wrapper.modal-open {
		height: auto;
	}
} */
.wrapper.menu-open {
	height: 100vh;
}
.wrapper:not(.page-home):not(.page-management) .footer .wrap:before {
	border: 0;
	content: none;
}
.wrap {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
}
.main-btn {
	position: relative;
	background-color: transparent;
	border: 0;
}
.main-btn:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 2px;
	left: 2px;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
	transition: border-color 0.5s;
}
.main-btn:after {
	display: block;
	content: '';
	width: 24px;
	height: 12px;
	background-color: transparent;
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-black.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 19px;
	top: calc(50% - 6px);
}
.main-btn:hover {
	color: #fff;
	cursor: pointer;
}
.main-btn.black:before {
	border-color: #000 !important;
}
.main-btn.black:after {
	background-image: url("../img/icons/arrow-right-white.svg");
}
.main-btn.black span {
	background-color: #000;
	color: #fff;
	border-color: #000;
}
.main-btn.orange:before {
	border-color: #E9542C;
}
.main-btn.orange:after {
	background-image: url("../img/icons/arrow-right-white.svg");
}
.main-btn.orange span {
	background-color: #E9542C;
	color: #fff;
	border-color: #E9542C;
}
.main-btn.white:before {
	border-color: #fff;
}
.main-btn.white:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-black.svg");
}
.main-btn.white span {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}
.main-btn.black-hover:hover:before {
	border-color: #000;
}
.main-btn.black-hover:hover:after {
	background-image: url("../img/icons/arrow-right-white.svg");
}
.main-btn.black-hover:hover span {
	background-color: #000;
	color: #fff;
	border-color: #000;
}
.main-btn.white-hover:hover:before {
	border-color: #fff;
}
.main-btn.white-hover:hover:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-black.svg");
}
.main-btn.white-hover:hover span {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}
.main-btn.orange-hover:hover:before {
	border-color: #E9542C;
}
.main-btn.orange-hover:hover:after {
	background-image: url("../img/icons/arrow-right-white.svg");
}
.main-btn.orange-hover:hover span {
	background-color: #E9542C;
	border-color: #E9542C;
	color: #fff;
}
.main-btn span {
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 14px;
	padding-left: 13px;
	padding-right: 45px;
	min-width: 200px;
	position: relative;
	border: 0;
	transition: 0.5s;
	background-color: #fff;
	border-width: 1px;
	border-style: solid;
}
.show-more {
	width: 200px;
	height: 44px;
	border: 0;
	border-radius: 0;
	background-color: #252525;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-family: inherit;
	border: 1px solid #252525;
	transition: 0.5s;
}
.show-more:hover, .show-more:active {
	background-color: #fff;
	color: #252525;
}
.block-title {
	font-family: "Roboto Condensed";
	font-weight: 700;
	text-transform: uppercase;
	font-style: italic;
}
.breadcrumbs {
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	margin-bottom: 13px;
}
.breadcrumbs .parent {
	position: relative;
	margin-right: 12px;
	transition: 0.5s;
	opacity: 0.4;
}
.breadcrumbs .parent:hover {
	color: #E9542C;
	opacity: 1;
}
.breadcrumbs .parent:hover:after {
	color: #252525;
}
.breadcrumbs .parent:after {
	content: ' / ';
	position: absolute;
	left: 100%;
	top: 0;
	width: 14px;
	text-align: center;
	pointer-events: none;
	color: #252525;
}
.breadcrumbs .current {
	opacity: 0.4;
}
.breadcrumbs+.block-title {
	font-size: 26px;
	line-height: 42px;
	color: #000;
	font-style: italic;
}
.footer {
	padding-top: 60px;
	padding-bottom: 35px;
	background-color: #000;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
.footer .wrap {
	position: relative;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	min-height: 320px;
}
@media screen and (max-width: 1024px) {
	.footer .wrap {
		padding-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	.footer .wrap {
		align-items: flex-start;
	}
}
@media screen and (max-width: 480px) {
	.footer .wrap {
		flex-direction: column;
		align-items: center;
	}
}
.footer .wrap::before {
	display: block;
	content: '';
	border-top: 1px solid #c4c4c4;
	opacity: 0.25;
	position: absolute;
	left: 10px;
	right: 10px;
	top: 0;
	display: flex;
}
.footer .logo {
	position: absolute;
	left: 10px;
	bottom: 0;
	width: 80px;
}
@media screen and (max-width: 768px) {
	.footer .logo {
		position: static;
	}
}
@media screen and (max-width: 480px) {
	.footer .logo {
		width: initial;
	}
}
.footer .menu {
	display: flex;
	flex-grow: 1;
}
@media screen and (max-width: 1200px) {
	.footer .menu {
		margin-right: 20px;
	}
}
.footer .menu .menu-group {
	max-width: 170px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 1200px) {
	.footer .menu .menu-group {
		max-width: 200px;
	}
}
@media screen and (max-width: 1024px) {
	.footer .menu .menu-group {
		max-width: 150px;
	}
}
@media screen and (max-width: 768px) {
	.footer .menu .menu-group {
		display: none;
	}
}
.footer .menu .menu-group.double {
	max-width: 370px;
}
@media screen and (max-width: 1200px) {
	.footer .menu .menu-group.double {
		max-width: 200px;
	}
}
@media screen and (max-width: 1024px) {
	.footer .menu .menu-group.double {
		max-width: 170px;
	}
}
.footer .menu .menu-group:not(:last-child) {
	margin-right: 30px;
}
@media screen and (max-width: 1024px) {
	.footer .menu .menu-group:not(:last-child) {
		margin-right: 20px;
	}
}
.footer .menu .menu-group .group-title {
	text-transform: uppercase;
	flex-grow: 0;
	font-size: 20px;
	line-height: 23px;
}
@media screen and (max-width: 1024px) {
	.footer .menu .menu-group .group-title {
		font-size: 18px;
	}
}
.footer .menu .menu-group .group-content {
	margin-top: 20px;
	flex-grow: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-content: start;
}
.footer .menu .menu-group .group-content.double-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-row-gap: 16px;
	grid-column-gap: 30px;
}
@media screen and (max-width: 1200px) {
	.footer .menu .menu-group .group-content.double-column {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}
.footer .menu .menu-group .group-content.double-column .menu-link {
	align-self: start;
}
.footer .menu .menu-group .group-content.double-column .menu-link:not(:last-child) {
	margin-bottom: initial;
}
.footer .menu .menu-group .menu-link {
	color: #fff;
	opacity: 0.6;
	font-size: 14px;
	line-height: 1.5;
	position: relative;
	transition: 0.5s;
	margin-right: auto;
}
.footer .menu .menu-group .menu-link:hover, .footer .menu .menu-group .menu-link.active {
	opacity: 1;
	text-decoration: underline;
}
.footer .menu .menu-group .menu-link:not(:last-child) {
	margin-bottom: 16px;
}
.footer .menu .menu-group .payment-methods {
	display: flex;
	flex-wrap: wrap;
	margin-top: auto;
}
.footer .menu .menu-group .payment-methods .title {
	width: 100%;
	font-size: 14px;
	line-height: normal;
	font-weight: 700;
}
.footer .menu .menu-group .payment-methods .payment-systems {
	display: flex;
	align-items: center;
	margin-top: 17px;
}
.footer .contacts {
	padding-left: 42px;
}
@media screen and (max-width: 1024px) {
	.footer .contacts {
		padding-left: 35px;
	}
}
@media screen and (max-width: 480px) {
	.footer .contacts {
		margin-top: 20px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-left: 0;
	}
}
.footer .contacts .contact-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
}
.footer .contacts .contact-group:before {
	display: block;
	content: '';
	position: absolute;
	left: -42px;
	top: 26px;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 1024px) {
	.footer .contacts .contact-group:before {
		left: -35px;
	}
}
@media screen and (max-width: 480px) {
	.footer .contacts .contact-group:before {
		top: 10px;
	}
}
.footer .contacts .contact-group.phones:before {
	width: 15px;
	height: 26px;
	background-image: url("../img/icons/phone.svg");
}
.footer .contacts .contact-group.location {
	margin-top: 35px;
}
@media screen and (max-width: 480px) {
	.footer .contacts .contact-group.location {
		margin-top: 20px;
	}
}
.footer .contacts .contact-group.location:before {
	width: 18px;
	height: 26px;
	background-image: url("../img/icons/marker.svg");
}
.footer .contacts .contact-group .group-title {
	font-size: 14px;
	line-height: 16px;
	font-weight: 700;
	width: 100%;
}
@media screen and (max-width: 480px) {
	.footer .contacts .contact-group .group-title {
		display: none;
	}
}
.footer .contacts .phone {
	font-size: 26px;
	line-height: 30px;
	transition: 0.5s;
	margin-top: 8px;
}
@media screen and (max-width: 360px) {
	.footer .contacts .phone {
		font-size: 24px;
	}
}
.footer .contacts .phone:hover {
	color: #E9542C;
}
.footer .contacts .address {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 12px;
}
@media screen and (max-width: 360px) {
	.footer .contacts .address {
		font-size: 14px;
	}
}
.footer .contacts .address address {
	font-style: normal;
}
.footer .contacts .copyright {
	font-size: 14px;
	line-height: 1.43;
	opacity: 0.4;
	margin-top: 40px;
	max-width: 270px;
}
@media screen and (max-width: 480px) {
	.footer .contacts .copyright {
		max-width: 100%;
		text-align: center;
		margin-top: 20px;
	}
}
.modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	align-items: center;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	display: none;
}
.modal.open {
	display: block;
}
.modal-overlay {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}
.modal-body {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	padding: 30px 0;
	max-width: 1000px;
	display: flex;
	align-items: center;
	min-height: 100vh;
}
@media screen and (max-width: 1024px) {
	.modal-body {
		padding: 0;
	}
}
.modal-content {
	padding: 100px 15px 30px;
	background-color: #fff;
	position: relative;
	width: 100%;
	margin: 0 auto;
	flex-grow: 1;
}
.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 104px;
	height: 104px;
	background: #F4F5F7 url("../img/icons/close.svg") center no-repeat;
	background-size: 44px 43px;
	border: 0;
	border-radius: 0;
	transition: 0.5s;
}
.modal-close:hover, .modal-close:focus {
	filter: invert(100%);
}
@media screen and (max-width: 1024px) {
	.modal-close {
		width: 80px;
		height: 80px;
		background-size: 32px 32px;
	}
}
@media screen and (max-width: 768px) {
	.modal-close {
		width: 60px;
		height: 60px;
		background-size: 28px 28px;
	}
}
.modal-product .product-params {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
@media screen and (max-width: 860px) {
	.modal-product .product-params {
		flex-direction: column;
	}
}
.modal-product .slider-column {
	max-width: 500px;
	margin-right: 30px;
}
@media screen and (max-width: 1024px) {
	.modal-product .slider-column {
		flex-shrink: 1;
		max-width: 400px;
	}
}
@media screen and (max-width: 860px) {
	.modal-product .slider-column {
		max-width: 100%;
		margin-right: 0;
	}
}
.modal-product .slider-column .block-title {
	font-size: 34px;
	line-height: 1.29;
	padding-left: 50px;
}
@media screen and (max-width: 768px) {
	.modal-product .slider-column .block-title {
		padding-left: 0;
		font-size: 28px;
	}
}
.modal-product .slider-column .discount {
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	padding: 3px 18px;
	border-radius: 5px;
	background-color: #E9542C;
	color: #fff;
	margin-top: 16px;
	position: relative;
	top: 28px;
	z-index: 2;
	display: inline-block;
	margin-left: 50px;
}
@media screen and (max-width: 768px) {
	.modal-product .slider-column .discount {
		margin-left: 0;
		margin-top: 0;
	}
}

/* slider-photos */
	.modal-product .slider-column .product-slider-photos {
		z-index: 1;
		margin-left: 20px;
	}
	@media screen and (max-width: 860px) {
		.modal-product .slider-column .product-slider-photos {
			max-width: 480px;
			margin: 0 auto;
		}
	}
	.modal-product .slider-column .product-slider-photos .photo-slide {
		position: relative;
		text-align: center;
	}
	.modal-product .slider-column .product-slider-photos .photo-slide img {
		display: inline-block;
		max-width: 90%;
	}

/* slider-thumbs */
	.modal-product .slider-column .product-slider-thumbs {
		margin: 15px auto 0;
		max-width: 420px;
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .product-slider-thumbs {
			max-width: 370px;
		}
	}
	@media screen and (max-width: 768px) {
		.modal-product .slider-column .product-slider-thumbs {
			max-width: 280px;
		}
	}
	@media screen and (max-width: 360px) {
		.modal-product .slider-column .product-slider-thumbs {
			max-width: 250px;
		}
	}
	.modal-product .slider-column .product-slider-thumbs .slick-slide {
		margin: 0 15px;
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .product-slider-thumbs .slick-slide {
			margin: 0 10px;
		}
	}
	.modal-product .slider-column .product-slider-thumbs .thumb-slide {
		width: 70px;
		height: 70px;
		position: relative;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	@media screen and (max-width: 360px) {
		.modal-product .slider-column .product-slider-thumbs .thumb-slide {
			width: 60px;
			height: 60px;
		}
	}
	.modal-product .slider-column .product-slider-thumbs .thumb-slide img {
		position: absolute;
		top: -50%;
		bottom: -50%;
		left: -50%;
		right: -50%;
		margin: auto;
		width: auto;
		min-width: 70px;
		min-height: 70px;
		object-fit: cover;
		border: 1px solid #e5e5e5;
	}
	@media screen and (max-width: 360px) {
		.modal-product .slider-column .product-slider-thumbs .thumb-slide img {
			min-width: 60px;
			min-height: 60px;
		}
	}
	.modal-product .slider-column .product-slider-thumbs .slick-track {
		z-index: 1;
	}
	.modal-product .slider-column .product-slider-thumbs .slick-arrow {
		width: 15px;
		height: 25px;
		background: #e5e5e5 url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-right.svg") center no-repeat;
		background-size: 6px 9px;
		position: absolute;
		z-index: 2;
		font-size: 0;
		color: transparent;
		border: 0;
		padding: 0;
		top: calc(50% - 12px);
		transition: 0.5s;
	}
	.modal-product .slider-column .product-slider-thumbs .slick-arrow:hover {
		background-color: #E9542C;
	}
	@media screen and (max-width: 768px) {
		.modal-product .slider-column .product-slider-thumbs .slick-arrow {
			width: 30px;
			height: 50px;
			background-size: 12px 18px;
			top: calc(50% - 25px);
		}
	}
	.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
		left: 0px;
		transform: rotate(-180deg);
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
			left: -10px;
		}
	}
	@media screen and (max-width: 768px) {
		.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-prev {
			left: -25px;
		}
	}
	.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-next {
		right: 0px;
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-next {
			right: -10px;
		}
	}
	@media screen and (max-width: 768px) {
		.modal-product .slider-column .product-slider-thumbs .slick-arrow.slick-next {
			right: -25px;
		}
	}

/* slider-info-icons */
	.modal-product .slider-column .product-info-icons {
		margin-top: 50px;
		display: flex;
		text-align: left;
		align-items: center;
		justify-content: space-between;
		margin-left: 40px;
		width: 100%;
	}
	@media screen and (max-width: 860px) {
		.modal-product .slider-column .product-info-icons {
			margin-top: 30px;
			justify-content: space-evenly;
		}
	}
	@media screen and (max-width: 860px) {
		.modal-product .slider-column .product-info-icons {
			flex-direction: column;
			align-items: center;
			align-content: center;
			display: none;
		}
	}
	.modal-product .slider-column .info-icon {
		display: flex;
		align-items: center;
	}
	@media screen and (max-width: 860px) {
		.modal-product .slider-column .info-icon {
			width: auto;
		}
	}
	@media screen and (max-width: 540px) {
		.modal-product .slider-column .info-icon {
			min-width: 180px;
		}
	}
	.modal-product .slider-column .info-icon:not(:last-child) {
		/* margin-bottom: 15px; */
	}
	@media screen and (max-width: 540px) {
		.modal-product .slider-column .info-icon:not(:last-child) {
			margin-bottom: 10px;
		}
	}
	.modal-product .slider-column .info-icon .icon {
		width: 50px;
		margin-right: 12px;
		flex-shrink: 0;
		display: flex;
		justify-content: center;
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .info-icon .icon {
			width: 35px;
			margin-right: 15px;
		}
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .info-icon .icon img {
			max-width: 35px;
			max-height: 35px;
		}
	}
	@media screen and (max-width: 540px) {
		.modal-product .slider-column .info-icon .icon img {
			max-height: 25px;
		}
	}
	.modal-product .slider-column .info-icon .text {
		font-size: 14px;
		line-height: normal;
	}
	@media screen and (max-width: 1024px) {
		.modal-product .slider-column .info-icon .text {
			font-size: 13px;
		}
	}



.modal-product .info-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 360px;
	padding-top: 70px;
	margin-left: auto;
	flex-shrink: 0;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column {
		max-width: 100%;
		padding-top: 30px;
		margin-left: initial;
	}
}
.modal-product .info-column .prices {
	display: flex;
}
.modal-product .info-column .prices .current-price {
	font-size: 34px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	font-weight: 700;
	color: #000;
	margin-right: 20px;
}
.modal-product .info-column .prices .old-price {
	font-size: 24px;
	line-height: 1.83;
	color: rgba(37, 37, 37, 0.4);
	text-decoration: line-through;
	font-family: "Roboto Condensed";
	font-weight: 400;
	position: relative;
	top: -3px;
}
.modal-product .info-column .available-amount {
	font-size: 15px;
	line-height: 18px;
	margin-top: 11px;
	color: rgba(37, 37, 37, 0.8);
}
.modal-product .info-column .sizes-info-help {
	margin-top: 37px;
	font-size: 13px;
	line-height: 15px;
	text-decoration: underline;
	padding: 0;
	padding-left: 39px;
	background-color: transparent;
	border: 0;
	position: relative;
	transition: 0.5s;
}
.modal-product .info-column .sizes-info-help:hover {
	color: #E9542C;
}
.modal-product .info-column .sizes-info-help:before {
	display: block;
	content: '';
	width: 24px;
	height: 24px;
	background: transparent url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/ruler.svg") center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: calc(50% - 12px);
}
.modal-product .info-column .sizes-selectors {
	margin-top: 40px;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .sizes-selectors {
		display: flex;
		flex-wrap: wrap;
		margin-top: 0;
	}
}
.modal-product .info-column .selector-group {
	flex-grow: 1;
}
.modal-product .info-column .selector-group:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .selector-group:not(:last-child) {
		margin-right: 20px;
	}
}
.modal-product .info-column .selector-group .group-title {
	font-size: 16px;
	line-height: 19px;
}
.modal-product .info-column .selectors {
	display: flex;
	margin-top: 9px;
}
.modal-product .info-column .selector {
	width: 100%;
	min-width: 40px;
	max-width: 60px;
}
.modal-product .info-column .selector:not(:last-child) {
	margin-right: 5px;
}
.modal-product .info-column .selector .checkbox-custom {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	background-color: #F4F5F7;
	font-size: 18px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 300;
	transition: 0.5s;
	user-select: none;
}
.modal-product .info-column .selector .checkbox-custom:hover {
	background-color: #E9542C;
	color: #fff;
}
.modal-product .info-column .selector input:checked+.checkbox-custom {
	background-color: #252525;
	color: #fff;
}
.modal-product .info-column .few-models-option {
	display: flex;
	align-items: center;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .few-models-option {
		width: 100%;
	}
}
.modal-product .info-column .few-models-option .checkbox-custom {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: block;
	border: 1px solid #252525;
	margin-right: 13px;
}
.modal-product .info-column .few-models-option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 3px;
	background-color: transparent;
	transition: 0.5s;
}
.modal-product .info-column .few-models-option .checkbox-text {
	font-size: 13px;
}
.modal-product .info-column .few-models-option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-product .info-column .delivery {
	display: flex;
	align-items: flex-start;
	padding: 28px 16px 32px;
	border-radius: 5px;
	background-color: #DDE6F2;
	width: 100%;
	margin-top: 26px;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .delivery {
		max-width: 480px;
	}
}
@media screen and (max-width: 480px) {
	.modal-product .info-column .delivery {
		flex-direction: column;
	}
}
.modal-product .info-column .delivery .title {
	width: 94px;
	flex-shrink: 0;
	font-size: 18px;
	font-family: "Roboto Condensed";
	font-weight: 700;
	line-height: 21px;
}
.modal-product .info-column .delivery .options {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.modal-product .info-column .delivery .options {
		margin-top: 15px;
	}
}
.modal-product .info-column .delivery .option {
	display: flex;
	align-items: flex-start;
}
.modal-product .info-column .delivery .option:not(:last-child) {
	margin-bottom: 15px;
}
.modal-product .info-column .delivery .option .checkbox-custom {
	width: 21px;
	height: 21px;
	border: 1px solid #252525;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 9px;
	position: relative;
	display: block;
}
.modal-product .info-column .delivery .option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-radius: 50%;
	background-color: transparent;
	transition: 0.5s;
}
.modal-product .info-column .delivery .option .checkbox-text {
	font-size: 18px;
	line-height: 21px;
	font-family: "Roboto Condensed";
	font-weight: 400;
}
.modal-product .info-column .delivery .option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-product .info-column .order-controls {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .order-controls {
		flex-direction: row;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 360px) {
	.modal-product .info-column .order-controls .main-btn {
		width: 100%;
		max-width: 320px;
	}
}
.modal-product .info-column .order-controls .main-btn:after {
	width: 37px;
	height: 18px;
	top: calc(50% - 9px);
}
.modal-product .info-column .order-controls .main-btn:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
	.modal-product .info-column .order-controls .main-btn:not(:last-child) {
		margin-right: 30px;
	}
}
@media screen and (max-width: 480px) {
	.modal-product .info-column .order-controls .main-btn:not(:last-child) {
		margin-right: 0;
	}
}
.modal-product .info-column .order-controls .main-btn span {
	min-width: 310px;
	height: 70px;
	font-size: 16px;
	padding-left: 25px;
}
@media screen and (max-width: 360px) {
	.modal-product .info-column .order-controls .main-btn span {
		min-width: initial;
		max-width: 100%;
	}
}
.modal-product .info-column .order-controls .main-btn.orange:after, .modal-product .info-column .order-controls .main-btn.black:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}
.modal-product .info-column .order-controls .main-btn.white:before {
	border-color: #000;
}
.modal-product .info-column .order-controls .main-btn.white:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-black.svg");
}
.modal-product .info-column .order-controls .main-btn.white span {
	border-color: #000;
}
.modal-product .info-column .order-controls .main-btn.black-hover:hover:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}
.modal-cart .modal-content {
	padding-top: 0px;
}
@media screen and (max-width: 768px) {
	.modal-cart .modal-content {
		padding-top: 70px;
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .modal-content {
		padding-top: 60px;
	}
}
.modal-cart .block-advantages-icons {
	padding: 15px 15px 15px 0;
	height: 104px;
	margin-top: 0;
	margin-right: 89px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.modal-cart .block-advantages-icons {
		display: none;
	}
}
.modal-cart .block-advantages-icons .advantage-item:not(:last-child) {
	margin-right: 10px;
}
.modal-cart .block-advantages-icons .advantage-item .icon img {
	object-fit: contain;
	max-width: 60px;
	max-height: 45px;
}
.modal-cart .block-advantages-icons .advantage-item .text {
	font-size: 12px;
	margin-left: 15px;
}
.modal-cart .few-models-option, .modal-cart .social-contact-option {
	display: flex;
	align-items: center;
}
.modal-cart .few-models-option .checkbox-custom, .modal-cart .social-contact-option .checkbox-custom {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: block;
	border: 1px solid #252525;
	margin-right: 13px;
	flex-shrink: 0;
}
.modal-cart .few-models-option .checkbox-custom:before, .modal-cart .social-contact-option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 3px;
	transition: 0.5s;
	background-color: transparent;
}
.modal-cart .few-models-option .checkbox-text, .modal-cart .social-contact-option .checkbox-text {
	font-size: 13px;
	line-height: 1.1;
}
.modal-cart .few-models-option input:checked+.checkbox-custom:before, .modal-cart .social-contact-option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-cart .cart-items {
	margin-top: 30px;
	width: 100%;
	border-collapse: collapse;
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items {
		margin-top: 0;
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items {
		border-top: 1px solid #e5e5e5;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items tr {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
	}
}
.modal-cart .cart-items th {
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items th {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items th:nth-child(1) {
		width: 130px;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items th:nth-child(1) {
		width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items th:nth-child(2) {
		width: calc(100% - 250px - 130px);
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items th:nth-child(2) {
		width: calc(100% - 200px - 100px);
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items th:nth-child(3) {
		width: 250px;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items th:nth-child(3) {
		width: 200px;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items th:nth-child(4) {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items th:nth-child(5) {
		display: none;
	}
}
.modal-cart .cart-items td {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items td:nth-child(1) {
		width: 130px;
		border-bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items td:nth-child(1) {
		width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items td:nth-child(2) {
		width: calc(100% - 250px - 130px);
		border-bottom: 0;
		max-width: initial;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items td:nth-child(2) {
		width: calc(100% - 200px - 100px);
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items td:nth-child(2) {
		width: calc(100% - 100px);
		align-self: center;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items td:nth-child(3) {
		width: 250px;
		border-bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items td:nth-child(3) {
		width: 200px;
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items td:nth-child(3) {
		width: 100%;
		max-width: 100%;
		display: flex;
		padding-top: 0;
		padding-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items td:nth-child(4) {
		width: 90%;
		border-bottom: 1px solid #e5e5e5;
		padding-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items td:nth-child(5) {
		width: 10%;
		border-bottom: 1px solid #e5e5e5;
		padding-top: 0;
	}
}
.modal-cart .cart-items .photo-col {
	padding-right: 10px;
}
.modal-cart .cart-items .photo-col img {
	max-width: 120px;
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-items .photo-col img {
		width: 100%;
	}
}
.modal-cart .cart-items .title-col {
	padding-right: 10px;
	max-width: 250px;
}
.modal-cart .cart-items .size-col {
	padding-right: 10px;
	max-width: 250px;
}
.modal-cart .cart-items .size-select {
	height: 30px;
	border: 1px solid #e5e5e5;
	width: 70px;
	position: relative;
	flex-shrink: 0;
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items .size-select {
		width: 90px;
	}
}
.modal-cart .cart-items .size-select:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 25px;
	background: #e5e5e5 url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-select.svg") center no-repeat;
	background-size: 12px 8px;
	pointer-events: none;
}
.modal-cart .cart-items .size-select select {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	width: 100%;
	outline: 0;
	outline: none;
	-moz-outline: none;
	-moz-user-focus: none;
	padding-left: 8px;
	padding-right: 33px;
	line-height: 28px;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.modal-cart .cart-items .size-select select:focus {
		outline: none;
		background-color: rgba(233, 84, 44, 0.2);
	}
}
.modal-cart .cart-items .few-models-option {
	margin-top: 10px;
}
@media screen and (max-width: 480px) {
	.modal-cart .cart-items .few-models-option {
		margin-top: 0;
	}
	.mobile_title {
		display: block;
		position: absolute;
		left: 20px;
		top: 20px;
		font-size: 20px;
		font-weight: bold;
	}
}
.modal-cart .cart-items .quantity-col {
	padding-right: 10px;
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items .quantity-col {
		display: flex;
		align-items: center;
	}
}
.modal-cart .cart-items .quantity {
	position: relative;
	width: 100px;
}
.modal-cart .cart-items .quantity-button {
	position: absolute;
	top: 0;
	bottom: 0;
	cursor: pointer;
	width: 35px;
	color: #E9542C;
	font-weight: 400;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	transition: 0.5s;
}
.modal-cart .cart-items .quantity-button:hover, .modal-cart .cart-items .quantity-button:focus {
	background-color: #252525;
	color: #fff;
}
.modal-cart .cart-items .quantity-button.quantity-down {
	left: 0;
	border-right: 1px solid #e5e5e5;
}
.modal-cart .cart-items .quantity-button.quantity-up {
	right: 0;
	border-left: 1px solid #e5e5e5;
}
.modal-cart .cart-items .quantity input[type=number] {
	width: 100%;
	height: 40px;
	line-height: 38px;
	display: block;
	display: block;
	padding: 0;
	margin: 0;
	border: 1px solid #e5e5e5;
	text-align: center;
	-moz-appearance: textfield;
}
.modal-cart .cart-items .quantity input[type=number]::-webkit-inner-spin-button, .modal-cart .cart-items .quantity input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	display: none;
}
.modal-cart .cart-items .price-col {
	width: 120px;
}
.modal-cart .cart-items .prices {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 768px) {
	.modal-cart .cart-items .prices {
		align-items: center;
		flex-direction: row;
	}
	.modal-cart .cart-items .prices .old-price {
		margin-left: 20px;
	}
}
.modal-cart .cart-items .prices .current-price {
	font-size: 26px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	font-weight: 700;
	color: #000;
}
.modal-cart .cart-items .prices .old-price {
	font-size: 22px;
	line-height: 1.44;
	color: rgba(37, 37, 37, 0.4);
	text-decoration: line-through;
	font-family: "Roboto Condensed";
	font-weight: 400;
}
.modal-cart .cart-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 30px;
}
@media screen and (max-width: 640px) {
	.modal-cart .cart-summary {
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.modal-cart .cart-summary {
		margin-top: 0;
	}
	.modal-cart .total-price .value {
		width: auto !important;
	}
}
.modal-cart .delivery {
	display: flex;
	align-items: flex-start;
	padding: 28px 16px 32px;
	border-radius: 5px;
	background-color: #DDE6F2;
	width: 100%;
	max-width: 430px;
}
.modal-cart .cart-items .delete-cart-item {
	background: #fff url('../img/icons/close.svg') center no-repeat;
	background-size: 16px;
	width: 24px;
	height: 24px;
	border: 1px solid #000;
	transition: 0.5s;
	display: block;
	border-radius: 4px;
}
.modal-cart .cart-items .delete-cart-item:hover,
.modal-cart .cart-items .delete-cart-item:focus {
	background-color: #E9542C;
}
@media screen and (max-width: 768px) {
	.modal-cart .delivery {
		margin-right: 30px;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .delivery {
		margin-right: 0;
		align-self: flex-start;
		width: 100%;
		margin-top: 15px;
		max-width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .delivery {
		flex-direction: column;
	}
}
.modal-cart .delivery .title {
	width: 94px;
	flex-shrink: 0;
	font-size: 18px;
	font-family: "Roboto Condensed";
	font-weight: 700;
	line-height: 21px;
}
.modal-cart .delivery .options {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.modal-cart .delivery .options {
		margin-top: 15px;
	}
}
.modal-cart .delivery .option {
	display: flex;
	align-items: flex-start;
}
.modal-cart .delivery .option:not(:last-child) {
	margin-bottom: 15px;
}
.modal-cart .delivery .option .checkbox-custom {
	width: 21px;
	height: 21px;
	border: 1px solid #252525;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 9px;
	position: relative;
	display: block;
}
.modal-cart .delivery .option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-radius: 50%;
	transition: 0.5s;
	background-color: transparent;
}
.modal-cart .delivery .option .checkbox-text {
	font-size: 18px;
	line-height: 21px;
	font-family: "Roboto Condensed";
	font-weight: 400;
}
.modal-cart .delivery .option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-cart .total-price {
	display: flex;
	align-items: baseline;
	user-select: none;
}
.modal-cart .total-price .title {
	font-weight: 300;
	color: #252525;
	font-size: 18px;
	margin-right: 10px;
}
.modal-cart .total-price .value {
	color: #E9542C;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	width: 120px;
}
.modal-cart .order-form {
	display: flex;
	margin-top: 30px;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.modal-cart .order-form {
		flex-direction: column;
	}
}
.modal-cart .order-form .inputs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 600px;
	margin-right: 30px;
}
@media screen and (max-width: 768px) {
	.modal-cart .order-form .inputs {
		margin-right: 20px;
	}
}
@media screen and (max-width: 640px) {
	.modal-cart .order-form .inputs {
		margin-right: 0;
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .order-form .inputs {
		flex-direction: column;
		max-width: 320px;
		width: 100%;
	}
}
.modal-cart .order-form .input-label {
	position: relative;
	width: calc(50% - 15px);
}
@media screen and (max-width: 640px) {
	.modal-cart .order-form .input-label {
		width: calc(50% - 10px);
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .order-form .input-label {
		width: 100%;
	}
}
.modal-cart .order-form .input-label.address-label {
	width: 100%;
	margin-top: 15px;
}
@media screen and (max-width: 640px) {
	.modal-cart .order-form .input-label.address-label {
		margin-top: 10px;
	}
	.block-stars-photos .star-item .star-photo img {
		width: 70%;
		display: inline-block;
	}
	.block-stars-photos .star-item .star-photo {
		text-align: center;
	}
}
.modal-cart .order-form .input-label:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 2px;
	left: 2px;
	border: 1px solid #000;
}
@media screen and (max-width: 480px) {
	.modal-cart .order-form .input-label:first-child {
		margin-bottom: 10px;
	}
}
.modal-cart .order-form .input-label input {
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 16px;
	padding: 0 13px;
	width: 100%;
	position: relative;
	border: 0;
	transition: 0.5s;
	background-color: #fff;
	border: 1px solid #000;
	font-family: "Roboto Condensed";
	font-style: italic;
	font-weight: 300;
	text-transform: uppercase;
	box-shadow: none;
	user-select: none;
}
.modal-cart .order-form .input-label input:invalid {
	border-color: #E9542C;
}
.modal-cart .order-form .social-contact-option {
	margin-top: 20px;
}
.modal-cart .order-form .order {
	flex-shrink: 0;
}
@media screen and (max-width: 640px) {
	.modal-cart .order-form .order {
		margin-left: 0;
		margin-top: 20px;
		min-width: calc(50% - 10px);
	}
}
@media screen and (max-width: 480px) {
	.modal-cart .order-form .order {
		width: 100%;
		max-width: 320px;
		min-width: initial;
	}
}
.modal-cart .order-form .order:after {
	width: 37px;
	height: 18px;
	top: calc(50% - 9px);
}
.modal-cart .order-form .order:not(:last-child) {
	margin-bottom: 30px;
}
.modal-cart .order-form .order.orange:after, .modal-cart .order-form .order.black:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}
.modal-cart .order-form .order.white:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-black.svg");
}
.modal-cart .order-form .order.black-hover:hover:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}


.modal-realese .modal-content {
	padding-top: 0px;
}
@media screen and (max-width: 768px) {
	.modal-realese .modal-content {
		padding-top: 70px;
	}
}
.modal-realese .block-advantages-icons {
	padding: 15px 15px 15px 0;
	height: 104px;
	margin-top: 0;
	margin-right: 89px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.modal-realese .block-advantages-icons {
		display: none;
	}
}
.modal-realese .block-advantages-icons .advantage-item:not(:last-child) {
	margin-right: 10px;
}
.modal-realese .block-advantages-icons .advantage-item .icon img {
	object-fit: contain;
	max-width: 60px;
	max-height: 45px;
}
.modal-realese .block-advantages-icons .advantage-item .text {
	font-size: 12px;
	margin-left: 15px;
}
.modal-realese .few-models-option, .modal-realese .social-contact-option {
	display: flex;
	align-items: center;
}
.modal-realese .few-models-option .checkbox-custom, .modal-realese .social-contact-option .checkbox-custom {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: block;
	border: 1px solid #252525;
	margin-right: 13px;
	flex-shrink: 0;
}
.modal-realese .few-models-option .checkbox-custom:before, .modal-realese .social-contact-option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 3px;
	transition: 0.5s;
	background-color: transparent;
}
.modal-realese .few-models-option .checkbox-text, .modal-realese .social-contact-option .checkbox-text {
	font-size: 13px;
	line-height: 1.1;
}
.modal-realese .few-models-option input:checked+.checkbox-custom:before, .modal-realese .social-contact-option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-realese .cart-items {
	margin-top: 30px;
	width: 100%;
	border-collapse: collapse;
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items {
		margin-top: 0;
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items {
		border-top: 1px solid #e5e5e5;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items tr {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
	}
}
.modal-realese .cart-items th {
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items th {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items th:nth-child(1) {
		width: 130px;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items th:nth-child(1) {
		width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items th:nth-child(2) {
		width: calc(100% - 250px - 130px);
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items th:nth-child(2) {
		width: calc(100% - 200px - 100px);
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items th:nth-child(3) {
		width: 250px;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items th:nth-child(3) {
		width: 200px;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items th:nth-child(4) {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items th:nth-child(5) {
		display: none;
	}
}
.modal-realese .cart-items td {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items td:nth-child(1) {
		width: 130px;
		border-bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items td:nth-child(1) {
		width: 100px;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items td:nth-child(2) {
		width: calc(100% - 250px - 130px);
		border-bottom: 0;
		max-width: initial;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items td:nth-child(2) {
		width: calc(100% - 200px - 100px);
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items td:nth-child(2) {
		width: calc(100% - 100px);
		align-self: center;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items td:nth-child(3) {
		width: 250px;
		border-bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items td:nth-child(3) {
		width: 200px;
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items td:nth-child(3) {
		width: 100%;
		max-width: 100%;
		display: flex;
		padding-top: 0;
		padding-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items td:nth-child(4) {
		width: 50%;
		border-bottom: 1px solid #e5e5e5;
		padding-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items td:nth-child(5) {
		width: 50%;
		border-bottom: 1px solid #e5e5e5;
		padding-top: 0;
	}
}
.modal-realese .cart-items .photo-col {
	padding-right: 10px;
}
.modal-realese .cart-items .photo-col img {
	max-width: 120px;
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-items .photo-col img {
		width: 100%;
	}
}
.modal-realese .cart-items .title-col {
	padding-right: 10px;
	max-width: 250px;
}
.modal-realese .cart-items .size-col {
	padding-right: 10px;
	max-width: 250px;
}
.modal-realese .cart-items .size-select {
	height: 30px;
	border: 1px solid #e5e5e5;
	width: 70px;
	position: relative;
	flex-shrink: 0;
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items .size-select {
		width: 90px;
	}
}
.modal-realese .cart-items .size-select:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 25px;
	background: #e5e5e5 url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/drop-select.svg") center no-repeat;
	background-size: 12px 8px;
	pointer-events: none;
}
.modal-realese .cart-items .size-select select {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	width: 100%;
	outline: 0;
	outline: none;
	-moz-outline: none;
	-moz-user-focus: none;
	padding-left: 8px;
	padding-right: 33px;
	line-height: 28px;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.modal-realese .cart-items .size-select select:focus {
		outline: none;
		background-color: rgba(233, 84, 44, 0.2);
	}
}
.modal-realese .cart-items .few-models-option {
	margin-top: 10px;
}
@media screen and (max-width: 480px) {
	.modal-realese .cart-items .few-models-option {
		margin-top: 0;
		margin-left: 10px;
	}
}
.modal-realese .cart-items .quantity-col {
	padding-right: 10px;
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items .quantity-col {
		display: flex;
		align-items: center;
	}
}
.modal-realese .cart-items .quantity {
	position: relative;
	width: 100px;
}
.modal-realese .cart-items .quantity-button {
	position: absolute;
	top: 0;
	bottom: 0;
	cursor: pointer;
	width: 35px;
	color: #E9542C;
	font-weight: 400;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	transition: 0.5s;
}
.modal-realese .cart-items .quantity-button:hover, .modal-realese .cart-items .quantity-button:focus {
	background-color: #252525;
	color: #fff;
}
.modal-realese .cart-items .quantity-button.quantity-down {
	left: 0;
	border-right: 1px solid #e5e5e5;
}
.modal-realese .cart-items .quantity-button.quantity-up {
	right: 0;
	border-left: 1px solid #e5e5e5;
}
.modal-realese .cart-items .quantity input[type=number] {
	width: 100%;
	height: 40px;
	line-height: 38px;
	display: block;
	display: block;
	padding: 0;
	margin: 0;
	border: 1px solid #e5e5e5;
	text-align: center;
	-moz-appearance: textfield;
}
.modal-realese .cart-items .quantity input[type=number]::-webkit-inner-spin-button, .modal-realese .cart-items .quantity input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	display: none;
}
.modal-realese .cart-items .price-col {
	width: 120px;
}
.modal-realese .cart-items .prices {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 768px) {
	.modal-realese .cart-items .prices {
		align-items: flex-end;
	}
}
.modal-realese .cart-items .prices .current-price {
	font-size: 26px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	font-weight: 700;
	color: #000;
}
.modal-realese .cart-items .prices .old-price {
	font-size: 22px;
	line-height: 1.44;
	color: rgba(37, 37, 37, 0.4);
	text-decoration: line-through;
	font-family: "Roboto Condensed";
	font-weight: 400;
}
.modal-realese .cart-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 30px;
}
@media screen and (max-width: 640px) {
	.modal-realese .cart-summary {
		flex-direction: column-reverse;
		align-items: flex-end;
	}
}
.modal-realese .delivery {
	display: flex;
	align-items: flex-start;
	padding: 28px 16px 32px;
	border-radius: 5px;
	background-color: #DDE6F2;
	width: 100%;
	max-width: 430px;
}
@media screen and (max-width: 768px) {
	.modal-realese .delivery {
		margin-right: 30px;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .delivery {
		margin-right: 0;
		align-self: flex-start;
		width: 100%;
		margin-top: 15px;
		max-width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .delivery {
		flex-direction: column;
	}
}
.modal-realese .delivery .title {
	width: 94px;
	flex-shrink: 0;
	font-size: 18px;
	font-family: "Roboto Condensed";
	font-weight: 700;
	line-height: 21px;
}
.modal-realese .delivery .options {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
@media screen and (max-width: 480px) {
	.modal-realese .delivery .options {
		margin-top: 15px;
	}
}
.modal-realese .delivery .option {
	display: flex;
	align-items: flex-start;
}
.modal-realese .delivery .option:not(:last-child) {
	margin-bottom: 15px;
}
.modal-realese .delivery .option .checkbox-custom {
	width: 21px;
	height: 21px;
	border: 1px solid #252525;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 9px;
	position: relative;
	display: block;
}
.modal-realese .delivery .option .checkbox-custom:before {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-radius: 50%;
	transition: 0.5s;
	background-color: transparent;
}
.modal-realese .delivery .option .checkbox-text {
	font-size: 18px;
	line-height: 21px;
	font-family: "Roboto Condensed";
	font-weight: 400;
}
.modal-realese .delivery .option input:checked+.checkbox-custom:before {
	background-color: #252525;
}
.modal-realese .total-price {
	display: flex;
	align-items: baseline;
	user-select: none;
}
.modal-realese .total-price .title {
	font-weight: 300;
	color: #252525;
	font-size: 18px;
	margin-right: 10px;
}
.modal-realese .total-price .value {
	color: #E9542C;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.29;
	font-family: "Roboto Condensed";
	width: 120px;
}
.modal-realese .order-form {
	display: flex;
	margin-top: 30px;
	align-items: flex-start;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.modal-realese .order-form {
		flex-direction: column;
	}
}
.modal-realese .order-form .inputs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 600px;
	margin-right: 30px;
}
@media screen and (max-width: 768px) {
	.modal-realese .order-form .inputs {
		margin-right: 20px;
	}
}
@media screen and (max-width: 640px) {
	.modal-realese .order-form .inputs {
		margin-right: 0;
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .order-form .inputs {
		flex-direction: column;
		max-width: 320px;
		width: 100%;
	}
}
.modal-realese .order-form .input-label {
	position: relative;
	width: calc(50% - 15px);
}
@media screen and (max-width: 640px) {
	.modal-realese .order-form .input-label {
		width: calc(50% - 10px);
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .order-form .input-label {
		width: 100%;
	}
}
.modal-realese .order-form .input-label.address-label {
	width: 100%;
	display: none;
	margin-top: 15px;
}
@media screen and (max-width: 640px) {
	.modal-realese .order-form .input-label.address-label {
		margin-top: 10px;
	}
}
.modal-realese .order-form .input-label:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 2px;
	left: 2px;
	border: 1px solid #000;
}
@media screen and (max-width: 480px) {
	.modal-realese .order-form .input-label:first-child {
		margin-bottom: 10px;
	}
}
.modal-realese .order-form .input-label input {
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 16px;
	padding: 0 13px;
	width: 100%;
	position: relative;
	border: 0;
	transition: 0.5s;
	background-color: #fff;
	border: 1px solid #000;
	font-family: "Roboto Condensed";
	font-style: italic;
	font-weight: 300;
	text-transform: uppercase;
	box-shadow: none;
	user-select: none;
}
.modal-realese .order-form .input-label input:invalid {
	border-color: #E9542C;
}
.modal-realese .order-form .social-contact-option {
	margin-top: 20px;
}
.modal-realese .order-form .order {
	flex-shrink: 0;
}
@media screen and (max-width: 640px) {
	.modal-realese .order-form .order {
		margin-left: 0;
		margin-top: 20px;
		min-width: calc(50% - 10px);
	}
}
@media screen and (max-width: 480px) {
	.modal-realese .order-form .order {
		width: 100%;
		max-width: 320px;
		min-width: initial;
	}
}
.modal-realese .order-form .order:after {
	width: 37px;
	height: 18px;
	top: calc(50% - 9px);
}
.modal-realese .order-form .order:not(:last-child) {
	margin-bottom: 30px;
}
.modal-realese .order-form .order.orange:after, .modal-realese .order-form .order.black:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}
.modal-realese .order-form .order.white:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-black.svg");
}
.modal-realese .order-form .order.black-hover:hover:after {
	background-image: url("https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg");
}



.modal .thanks {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-top: 0;
}
.modal .thanks .modal-title {
  font-weight: 700;
  font-size: 30px;
}
.modal .thanks .modal-descr {
	margin-top: 30px;
	line-height: 1.6;
}
.modal .thanks .thanks-return {
	display: block;
	margin-top: 30px;
}

.modal-size table {
  width: 100%;
  border: 1px solid #F4F5F7;
  margin-top: 50px;
}
.modal-size table tr td {
  border-bottom: 1px solid #F4F5F7;
  padding: 10px 0;
}
.modal-size table tr:last-child td {
  border-bottom: none;
}

.modal-realese .photo-col {
	width: 130px;
}

#cart {
	position: relative;
	z-index: 3;
}

@media screen and (max-width: 768px) {
	.cart-empty {
		display: none;
	}
}

#map {
	width: 50%;
	min-height: 700px;
	margin-top: -30px;
}
.information p {
	margin-bottom: 10px;
}
.wrap_contanct {
	width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.wrap_contanct .left {
	width: 50%;
}
.wrap_contanct .left form, .modal-director form {
	margin-top: 20px;
}
.wrap_contanct .left form > div, .modal-director form > div {
	margin-bottom: 10px;
	position: relative;
}
.wrap_contanct .left form input, .wrap_contanct .left textarea, .modal-director form input, .modal-director textarea {
	display: flex;
  align-items: center;
  height: 50px;
  font-size: 16px;
  padding: 0 13px;
  width: 70%;
  position: relative;
  border: 0;
  transition: 0.5s;
  background-color: #fff;
  border: 1px solid #000;
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  box-shadow: none;
  user-select: none;
}
.modal-director textarea {
	padding: 20px;
	height: 100px;
}
.wrap_contanct .inp-label:before, .modal-director .inp-label:before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 2px;
    left: 2px;
    border: 1px solid #000;
}
.modal-director form input, .modal-director textarea {
	width: 100%;
}
.wrap_contanct .left .h2 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 26px;
	line-height: 42px;
	text-transform: uppercase;
	font-feature-settings: 'ss06' on;
	color: #000000;
}
.wrap_contanct .agrament input, .modal-director .agrament input {
	display: none !important;
}
.wrap_contanct .agrament label, .modal-director .agrament label {
	display: inline-block;
	padding-left: 30px;
	position: relative;
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 22px;
	color: #1A1941;
}
.wrap_contanct .agrament label:before, .modal-director .agrament label:before {
	background: #FFFFFF;
	border: 1px solid #929292;
	box-sizing: border-box;
	box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.1);
	border-radius: 7px;
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
}
.wrap_contanct .agrament input:checked + label:after, .modal-director .agrament input:checked + label:after {
	position: absolute;
	left: 4px;
	top: 50%;
	margin-top: -6px;
	width: 12px;
	height: 12px;
	content: "";
	display: block;
	background: #252525;
	border-radius: 7px;
}
.block_top {
	margin-top: 0 !important;
}
.about_top {
	background: #E9542C;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 120px;
	padding: 0 80px;
}
.about_top > div {
	display: flex;
	align-items: center;
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	font-feature-settings: 'ss06' on;
}
.about_top > div svg {
	margin-right: 20px;
}
.about_text {
	display: flex;
	justify-content: space-between;
	margin:50px 0;
}
.about_text .left {
	width: 65%;
}
.about_text .right {
	width: 30%;
	text-align: right;
}
.about_text .left .t1 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	font-feature-settings: 'ss06';
	margin-bottom: 30px;
}
.about_text .left .t2 {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: #000000;
}
.about_text p {
	margin-bottom: 10px;
	font-weight: 500;
}
.about_advantages {
	background: #F4F5F7;
	padding: 30px 80px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about_advantages .t1 {
	width: 45%;
	display: flex;
	justify-content: space-between;
}
.about_advantages .t1:first-child, .about_advantages .t1:nth-child(2) {
	margin-bottom: 50px;
}
.about_advantages .t1 .s1 {
	width: 40%;
}
.about_advantages .t1 .s2 {
	width: 55%;
}
.about_advantages .t1 .s3 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 24px;
	line-height: 30px;
	font-feature-settings: 'ss06' on;
	margin-bottom: 20px;
}
.about_advantages .t1 .s4 {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
}

.about_geo {
	padding: 50px 0;
}
.about_geo .t1 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	font-feature-settings: 'ss06' on;
}
.about_geo .t2 {
	text-align: center;
}
.about_geo .t2 img {
	display: inline-block;
}
.about_photo {
	background: url('../img/about6.jpg') no-repeat;
	padding: 30px 0 30px 0;
}
.about_photo .t1 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	font-feature-settings: 'ss06' on;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.about_photo .t2 {
	display: flex;
	justify-content: space-between;
}
.about_photo .t2 .img {
	width: 33%;
}
.about_director {
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
}
.about_director .left {
	width: 50%;
}
.about_director .right {
	width: 40%;
}
.about_director .t1 {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	font-feature-settings: 'ss06' on;
	margin-bottom: 50px;
}
.about_director .t2 {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
}
.about_director .t2 p {
	margin-bottom: 30px;
}
.about_director .t3 {
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 26px;
	margin-top: 30px;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.wrap_contanct > div {
		width: 100% !important;
	}
	.wrap_contanct .left form input, .wrap_contanct .left textarea {
		width: 100%;
	}
	#map {
		margin-top: 30px;
	}
	.about_top {
		flex-wrap: wrap;
		padding: 0 10px;
	}
	.about_top > div {
		width: 50%;
		font-size: 13px;
		font-weight: normal;
		margin-bottom: 20px;
	}
	.about_top > div:last-child {
		width: 100%;
	}
	.about_top > div svg {
		width: 20px;
	}
	.about_text .left {
		width: 100%;
	}
	.about_text .right {
		width: 100%;
	}
	.about_text .left .t1 {
		font-size: 16px;
		line-height: 30px;
	}
	.about_text {
		flex-wrap: wrap;
		margin: 20px 0;
	}
	.about_advantages {
		padding: 20px 10px;
	}
	.about_advantages .t1 {
		width: 100%;
		margin-bottom: 20px;
	}
	.about_advantages .t1 .s3 {
		font-size: 16px;
		line-height: 20px;
	}
	.about_geo .t1 {
		font-size: 25px;
	}
	.about_photo .t1 {
		font-size: 25px;
	}
	.about_director {
		flex-wrap: wrap;
	}
	.about_director .left, .about_director .right {
		width: 100%;
	}
	.about_photo .t2 {
		display: block;
	}
	.about_photo .t2 .img {
		width: 100%;
		margin-bottom: 20px;
	}
	.about_director .t1 {
		font-size: 20px;
		margin-bottom: 0;
	}
	.about_director {
		padding: 0;
	}
	.about_director .right {
		margin-top: 20px;
	}
}

.main_description {
	margin: 20px 0;
}
.main_description h1 {
	margin-bottom: 20px;
}
.main_description p {
	line-height: 150%;
	margin: 10px 0;
}
.main_description img {
	max-height: 300px;
	display: inline;
}
.main_description ul, .main_description ol {
	list-style-position: inside;
}
.main_description .main-btn:hover span {
	border-color: #000;
}
.main_description .main-btn {
	max-width: 200px;
	display: inline-block;
}
.main_description .hide {
	display: none;
}
.main_description .more_content {
	text-align: center;
}
.main_description .wrap .hide {
	columns: 2;
}
.only_mobile {
	display: none;
}
@media screen and (max-width: 768px) {
	.only_mobile {
		display: grid;
	}
}
/* opt page 09.07.20 */
.page-opt .about_top {
	padding-left: 120px;
	padding-right: 120px;
}

.wrap-max-1200 {
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}

.boxes-main {
	min-height: 500px;
	padding: 55px 0;
	background-color: #b9ae92;
	background-image: url('../img/boxes.jpg');
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: cover;
}

.boxes-main p {
	max-width: 500px;
	font-size: 16px;
	line-height: 24px;
}

.boxes-main-title,
.opt-form-tt {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
	font-feature-settings: 'ss06';
	margin-bottom: 30px;
}

.boxes-main-title {
	color: #fff;
	max-width: 620px;
}

.opt-form-tt {
	max-width: 740px;
	margin-bottom: 40px;
	position: relative;
	z-index: 10;
}

.opt-pins {
	display: flex;
	flex-wrap: wrap;
	padding: 80px 0;
	margin-left: -5%;
}

.opt-pins-item {
	width: 20%;
	margin: 20px 0 20px 5%;
}

.opt-pins-icon {
	width: 38px;
	height: 42px;
	margin-bottom: 15px;
	background-image: url('https://adidas-yeezy-official.com/catalog/view/theme/default/img/opt-pin.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;

	text-align: center;
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 16px;
	line-height: 42px;
	font-feature-settings: 'ss06' on;
	color: #252525;
}

.opt-pins-title {
	font-family: Roboto Condensed;
	font-style: italic;
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	font-feature-settings: 'ss06' on;
	color: #000000;
	margin-bottom: 25px;
}

.opt-pins-item p {
	font-size: 14px;
	line-height: 20px;
	color: rgba(0, 0, 0, 0.8);
}

.opt-form-wrapper {
	max-width: 1200px;
	margin: 0 auto 20px;
	padding: 55px 80px;
	position: relative;
	background-color: #F4F5F7;
}

.opt-form-img {
	position: absolute;
	right: -120px;
	top: -240px;
	z-index: 4;
}

.st-form {
	position: relative;
	z-index: 10;
}

.st-form input[type="text"],
.st-form textarea {
	vertical-align: top;
	width: 100%;
	padding: 0 20px;
	height: 70px;
	background: #FFFFFF;
	border: 1px solid #929292;
	box-sizing: border-box;
	box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.1);
	border-radius: 7px;

	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	color: #000;
}

.st-form textarea {
	height: 150px;
	padding: 15px 20px;
	line-height: 20px;
}

.st-form .main-btn {
	width: 100%;
}

.st-form .main-btn span {
	height: 70px;
	font-size: 16px;
	padding-left: 20px;
	font-weight: 700
}

.st-form .main-btn:after {
	width: 34px;
	height: 15px;
	background-image: url(https://adidas-yeezy-official.com/catalog/view/theme/default/img/icons/arrow-right-bigger-white.svg);
}

.st-form .main-btn:before {
	top: 10px;
	left: 10px;
}

.opt-f-grid {
	display: flex;
	flex-wrap: wrap;
}

.opt-f-grid-col-first {
	width: 60%;
	display: flex;
	flex-wrap: wrap;
}

.opt-f-grid-col-second {
	width: 40%;
}

.opt-field-item {
	width: calc(50% - 10px);
	margin-right: 10px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
	.wrap-max-1200 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.opt-form-wrapper {
		padding-left: 10px;
		padding-right: 10px;
	}

	.opt-form-img {
		display: none;
	}

	.opt-f-grid-col-first {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}

	.opt-f-grid-col-second {
		width: 100%;
		padding: 0 10px;
		margin-bottom: 10px;
	}

	.opt-field-item {
		width: 50%;
		margin: 0 0 10px;
		padding: 0 10px;
	}

	.opt-form .main-btn {
		margin-right: 10px;
		width: calc(100% - 10px);
	}
}

@media screen and (max-width: 768px) {
	.page-opt .about_top {
		padding-left: 10px;
		padding-right: 10px;
	}

	.boxes-main {
		background-image: none;
		min-height: 200px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.boxes-main-title,
	.opt-form-tt {
		font-size: 24px;
		line-height: 34px;
		margin-bottom: 20px;
	}

	.opt-pins {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.opt-pins-item {
		width: 45%;
	}

	.opt-pins {
		margin: 0;
	}

	.opt-pins-item {
		width: 100%;
		margin-left: 0;
	}
	.opt-pins-title {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 767px) {
	.opt-field-item {
		width: 100%;
	}
}
.compensate-for-scrollbar {
	margin-right: auto !important;
}
body.compensate-for-scrollbar {
	overflow: unset !important;
}


.citys {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.citys_bg {
	background: #fff;
}

.citys .city {
	width: 25%;
	margin-bottom: 30px;
}

.citys .city .title {
	font-size: 30px;
	font-weight: bold;
	color: #03234c;
	border-bottom: 1px solid #f1f1f1;
}

.citys .city > div {
	padding: 7px 0;
}

.citys .city a {
	font-size: 16px;
	color: #a3a3a3;
	text-transform: uppercase;
	font-weight: 100;
	border-bottom: 1px dashed #a3a3a3;
	text-decoration: none;
	padding-bottom: 3px;
}

.single_city {
	margin-bottom: 30px;
}

.single_city .city_top {
	border: 1px solid #c1c6c9;
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
}

.single_city .city_top .title {
	font-weight: bold;
	font-size: 16px;
	width: 35%;
	text-align: center;
	padding: 0 20px;
}

.single_city .city_top .addr {
	border-left: 1px solid #e0e0e0;
	padding: 0 20px;
	width: 50%;
}

.single_city .more {
	width: 15%;
	text-align: right;
	margin-right: 20px;
}
.city_addr {
	margin: 20px 0 0 0;
}
.single_city .single_city_addr {
	padding: 30px 0;
	border-bottom: 1px solid #e0e0e0;
	display: none;
}
.fila-map {
	width: 100%;
	height: 500px;
}

.blog {
	background: #f8f8f8;
	padding: 30px 0;
}

.blog h1 {
	text-align: center;
	font-size: 26px;
}

.blog .date {
	font-size: 16px;
	color: #03234c;
	margin: 10px 0;
}

.blog .title {
	font-size: 24px;
	color: #03234c;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 30px;
}

.blog_content {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}

.blog_content .single {
	width: 32%;
	display: block;
	margin-right: 1%;
	text-decoration: none;
	margin-bottom: 30px;
}

.blog .view {
	font-size: 12px;
	color: #03234c;
	background: url(https://adidas-yeezy-official.com/catalog/view/theme/default/img/view.png) 0 50% no-repeat;
	padding-left: 25px;
}

.blog_single {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}

.blog_single .desc {
	width: 60%;
	margin-right: 10%;
}

.blog_single .products {
	width: 30%;
}

.blog_single .products .item-catalog-product {
	width: 100%;
}

.blog_two {
	background: #fff;
	padding-top: 30px;
}

.blog_single .date {
	font-size: 14px;
	color: #03234c;
	margin-top: 15px;
}

.blog_single h1 {
	font-size: 30px;
	color: #03234c;
	margin: 10px 0;
}

.blog_single h2 {
	font-size: 24px;
	color: #03234c;
	margin: 10px 0;
}
.blog_single .block-catalog-list {
	width: 30%;
}
.blog_single .block-catalog-list .catalog-items {
	display: block;
}

.banner_discount_bg {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1100;
	display: none;
}
.banner_discount_bg.show {
	display: block;
}
.banner_discount_wrapper {
	display: flex;
	position: fixed;
	justify-content: center;
	top: 50%;
	z-index: 1200;
	background: linear-gradient(270deg, #E92C2C 28.4%, #E9542C 90.9%), #E92C2C;
	padding: 30px 50px;
	overflow: hidden;
	width: 100%;
	margin-top: -80px;
	min-height: 175px;
}
.banner_discount_wrapper > div {
	display: block;
	position: relative;
	color: #fff;
}
.banner_discount_wrapper .t1 {
	margin-right: 30px;
}
.banner_discount_wrapper .t1 .s1 {
	font-style: italic;
	font-weight: bold;
	font-size: 40px;
	line-height: 47px;
	text-transform: uppercase;
}
.banner_discount_wrapper .t1 .s2 {
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-transform: uppercase;
	margin-top: 10px;
}
.banner_discount_wrapper .t2 {
	width: 150px;
	padding: 0 20px;
	text-align: center;
}
.banner_discount_wrapper .t2 .s1 {
	font-style: italic;
	font-weight: bold;
	font-size: 57px;
	line-height: 67px;
	text-transform: uppercase;
	text-align: center;
}
.banner_discount_wrapper .t2 .s2 {
	font-style: italic;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	background: #000000;
	border-radius: 5px;
	padding: 5px 10px;
	margin-left: -10px;
	display: inline-block;
}
.banner_discount_wrapper .t2:after {
	background: #000000;
	opacity: 0.1;
	content: "";
	position: absolute;
	left: 0;;
	top: -100%;;
	width: 100%;
	height: 300%;
	transform: rotate(15deg);
	z-index: 2;
}
.banner_discount_wrapper .t2.t3 .s1 {
	margin-left: 15px;
}
.banner_discount_wrapper .t2.t3:after {
	opacity: 0.2;
	z-index: -1;
	left: 5px;
}
.banner_discount_wrapper .t2.t4 .s1 {
	margin-left: 15px;
}
.banner_discount_wrapper .t2.t4 .s2 {
	position: absolute;
	left: 35px;
}
.banner_discount_wrapper .t2.t4:after {
	opacity: 0.3;
	z-index: -1;
	left: 10px;
}
.banner_discount_wrapper .t2.t5:after {
	opacity: 0.4;
	z-index: -1;
	left: 15px;
}
.banner_discount_wrapper .t2.t5 .s1 {
	margin-left: 25px;
}
.banner_discount_wrapper .t2.t5 .s2 {
	position: absolute;
	left: 35px;
}
.banner_discount_wrapper .t6 {
	margin-left: 50px;
	max-width: 300px;
}

.banner_discount_wrapper .t6 .s1 {
	font-style: italic;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.banner_discount_wrapper .t6 .s2 {
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 16px;
}
.banner_discount_wrapper .t7 {
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	position: absolute;
	bottom: 20px;
}
.banner_discount_wrapper .close {
	width: 50px;
	height: 50px;
	position: absolute;
	top: -20px;
	right: -50px;
	background: url('../img/closew.svg') 50% 50% no-repeat;
	background-size: 50px;
}
@media screen and (max-width: 768px) {
	.banner_discount_wrapper {
		flex-wrap: wrap;
		top: 0;
		height: 100%;
		margin-top:0;
		padding: 50px 20px;
		text-align: center;
	}
	.banner_discount_wrapper .t1 {
		width: 100%;
	}
	.banner_discount_wrapper .t2 {
		width: 50%;
		margin-top: -70px;
	}
	.banner_discount_wrapper .t2:after {
		display: none;
	}
	.banner_discount_wrapper .t1 {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.banner_discount_wrapper .t1 .s1 {
		font-size: 30px;
		line-height: 120%;
	}
	.banner_discount_wrapper .t2.t5 .s1 {
		margin-left: 0;
	}
	.banner_discount_wrapper .t2.t4 .s1 {
		margin-left: 0;
	}
	.banner_discount_wrapper .t2.t3 .s1 {
		margin-left: 0;
	}
	.banner_discount_wrapper .t6 {
		margin-left: 0;
	}
	.banner_discount_wrapper .t7 {
		display: none;
	}
}

.product_attr {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product_attr > div {
	width: 19%;
}
.product_attr .attr {
	display: flex;
	align-items: center;
}
.product_attr .attr .right {
	margin-left: 10px;
}
.product_attr .s1 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}
.product_attr .s2 {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.product_attr > div:first-child {
		width: 100%;
	}
	.product_attr > div {
		width: 45%;
		margin-bottom: 20px;
	}
	.product_attr svg {
		width: 30%;
	}
	.product_attr .right {
		width: 65%;
	}
}

.nostock {
	color: #e9542c;
	font-size: 20px;
	font-weight: bold;
}
.nostockbtn span {
	background-color: #fff !important;
	color: #000 !important;
}
.nostockbtn span:hover {
	background-color: #000 !important;
	color: #fff !important;
}



.bl-review {
	border-top: 25px solid #ebebeb;
	margin-bottom: 25px;
}

.bl-review:last-child {
	margin-bottom: 0;
}

.bl-review--wrapper {
	margin: 0 auto;
	display: table;
	width: 100%;
}

.bl-review--wrapper > div {
	display: inline-block;
	vertical-align: top;
	height: 100%;
}

.bl-review--wrapper_user {
	border-right: 2px solid #ebebeb;
	width: 30%;
	height: 100%;
	text-align: center;
	position: relative;
	box-sizing: border-box;
}

.rw--user_info {
	border-top: 2px solid #ebebeb;
	color: #797979;
	font-size: 14.2px;
	width: 100%;
	padding: 15px 0;
}

.rw--good_name {
	display: table;
	text-align: center;
	width: 100%;
	height: 186px;
}

.rw--good_name > div {
	display: table-cell;
	vertical-align: middle;
}

.dis-table {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
}

.dis-table > div {
	display: table-cell;
	/* vertical-align: middle; */
	/* padding-bottom: 85px; */
	top: 82px;
	position: relative;
}

.rw--user_info p {
	margin: 0;
}

.bl-review--wrapper_rating {
	width: 10%;
}

.bl-review--wrapper_info {
	padding: 35px 0px 15px 40px;
	line-height: 16px;
	font-size: 14.2px;
	color: #141414;
	box-sizing: border-box;
	width: 50%;
}

.bl-review--wrapper_like {
	width: 13%;
	padding: 0 20px 0 0;
	box-sizing: border-box;
}

.rw--photo_wrapper .rw--photo_img {
	width: 158px;

	display: inline-block;
	overflow: hidden;
	background: #ccc;
	margin: 0 8px 8px 0;
}

.rw--photo_wrapper .rw--photo_img img {
	max-width: 100%;
	max-height: 100%;
}

.rw--photo_wrapper {
	margin-bottom: 10px;
}

.rw-desc p {
	margin: 0;
}

.rating {
	display: inline-block;
	vertical-align: middle;

	position: relative;
	overflow: hidden;
	z-index: 2
}

.rating i {
	font-size: 0px;
	font-style: normal;
	float: left;
	display: block;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAeCAMAAAASJ24jAAAB2lBMVEX///+Pj4+Pj4+Pj4+Pj4+Pj4//uQCPj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4//uQD/uQD/uQD/uQD/uQD/uQCPj4+Pj4+Pj4//uQD/uQCPj4+Pj4+Pj4+Pj4//uQD/uQD/uQD/uQD/uQCPj4+Pj4+Pj4+Pj4//uQCPj4//uQD/uQD/uQD/uQD/uQD/uQD/uQD/uQD/uQCPj4//uQD/uQD/uQH/ugT/ugT/uQD/xzz/yD3/xzv/////yDz/yD7/yD//yEC1tbX/yUTj4+Pu7u6srKz/zFDGxsbJycn/ykX/yUL/yUG9vb2+vr7AwMDQ0ND/zVX09PSjo6OxsbGvr6//0mr/ykr/zFH/ykawsLD/yUPq6uqzs7Otra3/zVL/027/1XG0tLTv7+/MzMzCwsL9yEX+xjvf39+7u7v/yEHDw8Ps7Oz/yUb/ykfy8vL/vwD+yD24uLj/zlX/uQDt7e3/zU6pqan/zVHW1tbm5ub/78vp6en7+/vn5+fr6+v/xTL/0GCurq6enp7/1G3/67v/z13/ykS2trbw8PD/133/0mTo6Oj/0F7/zVPR0dH/4qD/xCj/13n/8tj/+eza2trk5OT/z1rIyMgRdtAZAAAAP3RSTlMABAVrfSgekq50DiklPNUBXnNvXwcVreM+BRMDCkg8OUsLH0VdRCgNky7WBsxOwJmFAlEDMFoKgkkhg264zbtjZ2VmAAABO0lEQVR4Xo2RU5MzYRBG47Vt28aHF4PYNpe2bdv4rzvJZLeyF1uVvjunuvrpruZEW0K3fDWSuYKLJRXvGwsKi/xSr7W0jBvC8gr+h1+3i0flyvuJOkbE1usNxnmMzUaD/riRETHrUhyureRmRsRv+vZY3vGlJYQi4mz7QR62CjLZlETba1C8uYXh2CSxDHtvsHmoN4XdKnVSNnLkV13q0htYkWHxTXtnlGILn/f7cVnZObk/xMP7wGBeBOdLKA1R/EWiklO7iyY8VGVVdQ3mcGoVY+OUGkwhjXN2zsQ0LDgXESIgDQgIllcY0aRYAxCQgAZoI9ASTNhGNAQAkIjUtraFMtoPIKBICoHDDjamU+IhENMDT8K5XWfnEEIXJO3drOi5ug44HLda9V0fK/ofTU/PL3/+/vsviuapn/FSTigq4GqKAAAAAElFTkSuQmCC) repeat 0 -1px transparent;
	height: 14px;
	width: 16px
}

.rating i.on {
	background: url(https://adidas-yeezy-official.com/catalog/view/theme/default/img/star.png) no-repeat;
	background-size: 16px;
}

.rw--good_name span {
	color: #131313;
	font-size: 14.2px;
	display: block;
	font-weight: bold;
}

.rw--good_name .good {
	text-transform: uppercase;
	margin-top: 10px;
}

.bl-reviews--header {
	background-color: #141414;
	color: #fff;
	text-align: center;
	padding: 50px 0;
	font-size: 16px;
	line-height: 20px;
}

.bl-reviews--header span {
	color: #d62613;
	font-weight: bold;
}

.rw--good_name img {
	display: inline-block;
}

.reviews_new h1 {
	font-size: 48px;
	padding: 20px 0 20px 50px;
}


@media only screen and (max-width: 768px) {
	.dis-table, .bl-review--wrapper_rating, .review-list .dis-table > div, .bl-review--wrapper_user, .bl-review--wrapper_info {
		display: block !important;
		width: 100% !important;
	}

	.bl-review--wrapper_rating {
		padding-bottom: 10px;
		margin-bottom: 10px;
		border-bottom: 1px solid #fafafa;
	}

	.review-list .bl-review {
		padding: 0 30px;
		margin-bottom: 10px;
		padding-bottom: 20px;
		width: 100%;
		box-sizing: border-box;
	}

	.review-list .bl-review--wrapper {
		display: flex;
		flex-wrap: wrap;
		padding-top: 20px;
	}

	.bl-review--wrapper_user {
		border: none;
	}

	.review-list .bl-review--wrapper_info .rw--photo_wrapper .rw--photo_img {
		-webkit-flex-basis: calc(100% / 3);
		-moz-flex-basis: calc(100% / 3);
		flex-basis: calc(100% / 3);
		-ms-flex-preferred-size: calc(100% / 3);
		max-width: calc(100% / 3);
		margin: 0;
		height: auto;
		border-bottom: 4px solid #ffffff;
		border-right: 4px solid #ffffff;
	}

	.dis-table > div {
		top: 0;
	}

	.rw--good_name > div {
		display: block;
	}

	.rw--good_name {
		display: block;
		height: auto;
		padding: 20px;
	}

	.bl-review--wrapper_info {
		padding: 0;
	}

	.rw-desc {
		text-align: center;
	}

	.rw--photo_wrapper {
		text-align: center;
	}
}