.rs-17 .product {
	position: relative;
	padding: 90px 0 40px;
}

.rs-17 .product::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 100vw;
	height: 100%;
	transform: translateX(-50%);
	background-image: url(../img/ellipse.png);
	background-size: 50%;
	background-position: left top;
	background-repeat: no-repeat;
	z-index: -1;
}

.rs-17 .product .product__container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.rs-17 .product .photo {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 45.8%;
	margin-right: 90px;
	flex-shrink: 0;
}

.rs-17 .product .mini {
	width: 19.63%;
}

.rs-17 .product .mini__item:not(:last-child) {
	margin-bottom: 30px;
}

.rs-17 .product .main {
	position: relative;
	width: 75.46%;
}

.rs-17 .product .mini__item,
.rs-17 .product .main__item {
	position: relative;
	background-size: cover;
	background-position: center;
	width: 100%;
	padding: 50%;
	cursor: pointer;
}

.rs-17 .product .main__item {
	box-shadow: 2px 2px 20px 0px rgb(0 0 0 / 10%);
}

.rs-17 .product .mini__item::before,
.rs-17 .product .main__item::before {
	content: "";
  	padding-top: 100%;
  	float: left;
}

.rs-17 .product .main__item {
	display: none !important;
}

.rs-17 .product .main__item.active {
	display: block !important;
}

.rs-17 .product .main__sale {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	right: 20px;
	top: 20px;
	width: 100px;
	height: 45px;
	border: 1px solid #000000;
	font-family: AlegreyaSans-Bold;
	font-size: 10px;
	color: #000000;
	z-index: 5;
}

.rs-17 .product .info {
	flex-grow: 1;
}

.rs-17 .product .info__title {
	color: #303030;
	margin-bottom: 30px;
}

.rs-17 .product .info__cost {
	display: flex;
	align-items: center;
	font-family: AlegreyaSans-Medium;
	font-size: 18px;
	margin-bottom: 30px;
}

.rs-17 .product .info__cost .old {
	color: #808080;
	margin-right: 30px;
	text-decoration: line-through;
}

.rs-17 .product .info__cost .new {
	color: #303030;
	margin-right: 65px;
}

.rs-17 .product .info__cost .stock {
	font-family: AlegreyaSans-Medium;
	font-size: 16px;
	color: #303030;
	text-transform: uppercase;
}

.rs-17 .product .info__cost .stock i {
	margin-right: 10px;
	color: #24347a;
}

.rs-17 .product .info__button {
	margin-bottom: 35px;
}

.rs-17 .product .info__button .img {
	display: inline-block;
	width: 14px;
    height: 14px;
    background-color: #000000;
    -webkit-mask-image: url(../img/bag_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    transition: 0.3s background-color;
    margin-right: 10px;
    margin-bottom: 2px;
}

.rs-17 .product .info__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	margin: 0;
	max-width: 700px;
	margin-bottom: 42px;
}

.rs-17 .product .info__list li {
	list-style: none;
	position: relative;
	padding-left: 28px;
	font-family: AlegreyaSans-Regular;
	font-size: 16px;
	color: #303030;
	line-height: 24px;
}

.rs-17 .product .info__list li:not(:last-child) {
	margin-bottom: 15px;
}

.rs-17 .product .info__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	background-image: url(../img/leaf.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.rs-17 .product .specifications__title {
	font-family: AlegreyaSans-Bold;
	font-size: 20px;
	color: #303030;
	margin-bottom: 20px;
}

.rs-17 .product .specifications__container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.rs-17 .product .specifications__item {
	width: calc((100% - 45px) / 2);
	margin-bottom: 20px;
}

.rs-17 .product .specifications__name {
	font-family: AlegreyaSans-Bold;
	font-size: 16px;
	color: #303030;
	margin-bottom: 5px;
}

.rs-17 .product .specifications__value {
	font-family: AlegreyaSans-Regular;
	font-size: 16px;
	color: #303030;
}

@media screen and (max-width: 991px) {
	.rs-17 .product .product {
		padding-top: 50px;
	}
	.rs-17 .product .product__container {
		flex-direction: column;
	}
	.rs-17 .product .photo {
		width: 75%;
		margin: 0 auto 70px;
	}
	.rs-17 .product .main__sale {
		width: 80px;
		height: 30px;
		right: 15px;
		top: 15px;
	}
}

@media screen and (max-width: 576px) {
	.rs-17 .product .photo {
		width: 100%;
	}
	.rs-17 .product .info__cost {
		flex-direction: column;
		align-items: flex-start;
	}
	.rs-17 .product .info__cost .old,
	.rs-17 .product .info__cost .new {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 475px) {
	.rs-17 .product .specifications__item {
		width: 100%;
	}
}