#catalog {

}
.product-card {
	border-radius: 10px;
	border: 1px solid #9BA3BD;
	background: #FFF;
	padding:25px 21px;
	position: relative;
}
.product-card .img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	margin:0 0 22px;
}
.product-title {
	min-height: 62px;
	font-weight: 600;
	display: block;
	color: var(--Text, #292D41);
}
.product-card .bottom {
	align-items: center;
	justify-content: space-between;
}
.product-card .price {
	font-size: 20px;
	font-weight: 700;
	margin:0;
}
.product-card .price span {
	display: inline-block;
	margin-right: 10px;
	color: var(--Text-2, #868F94);
	font-size: 14px;
	font-weight: 500;
	text-decoration: line-through;
}
.product-card .add-to-wishlist {
	position: absolute;
	top:17px;
	left:25px;
	z-index: 3;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-card .add-to-wishlist svg {
	display: block;
	fill:#A5A5A5;
	transition:all linear .25s;
}
.product-card .add-to-wishlist:hover svg {
/*  fill:var(--Wish, #FF0101);*/
}
.product-card .add-to-wishlist.active svg {
	fill:var(--Wish, #FF0101);
}
.product-card .add-to-cart {
	background: var(--Primary, #3D6EED);
	border:1px solid var(--Primary, #3D6EED);
	width: 43px;
	height: 43px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	cursor:pointer;
	transition:background linear .25s;
}
.product-card .add-to-cart svg {
	display: block;
	fill:#fff;
}
.product-card .add-to-cart:hover {
	background: #fff;
}
.product-card .add-to-cart:hover svg {
	fill:var(--Primary, #3D6EED);
}
.product-card .sticker {
	position: absolute;
	top:17px;
	right: 17px;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	font-size: 12px;
	font-weight: 600;
	margin:0;
	min-width: 44px;
	min-height: 44px;
}
.product-card .sticker img {
	display: block;
}
.product-card .sticker.type1,
.product-card .sticker.type2 {
	background: url(../images/sticker2.svg) no-repeat center center;
}
.pag {
	justify-content: space-between;
	align-items: center;
	margin:20px 0 0;
}
.pag .limit {
	color: #8E8EA9;
	font-size: 12px;
	display: flex;
    align-items: center;
}
.limit p {
	margin:0;
}
.limit .select2 {
	margin-right: 8px;
}
.accordion-item {
	padding:0 0 ;
	margin:0;
	border:0;
	box-shadow: none;
}
.accordion-collapse {
	padding:0 0 20px;
}
.accordion-item .accordion-button {
	padding:15px 0;
	display: flex;
	border-top: 1px solid var(--gray-300, #DEE2E7);
	background: none;
	box-shadow: none;
	font-size: 16px;
	line-height: 19px;
	font-weight: 600;
	border-radius: 0 !important;
	color: var(--Text, #292D41);
	cursor:pointer;
}
.accordion-button::after {
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	background-position: center;
}
.option-value {
	display: flex;
	height: 36px;
	align-items: center;
	color: var(--gray-600, #505050);
	font-size: 16px;
	font-weight: 400;
}
.option-value.hidden {
	display: none;
}
.option-value a {
	color: var(--gray-600, #505050);
	font-size: 16px;
	font-weight: 400;
	display: block;
	line-height: 36px;
}
.option-value.active a {
	color: var(--Primary, #3D6EED);
	font-weight: 500;
}
#filter .show-more {
	display: block;
	color: var(--Primary, #3D6EED);
	line-height: 36px;
	cursor: pointer;
}
#filter .input-checkbox label {
	min-height: 36px;
}
#filter .buttons {
	margin-top: 10px;
}
#filter .btn-secondary {
	width: calc(50% - 3px);
	border-radius: 5px;
	border: 1px solid var(--Primary, #3D6EED);
	background: #F9FAFF;
	color: var(--Text, #292D41);
	font-size: 14px;
	font-weight: 600;
	padding:20px 0;
}
#filter .btn-secondary:hover, #filter .btn-secondary:focus {
	background: var(--Primary, #3D6EED);
	color:#fff;
}
#filter .btn-primary {
	padding:20px 0;
	width: calc(50% - 3px);
}
.thumbs {
	width: 100%;
	max-width: 120px;
	margin-right: 20px;
}
.images {
	width: 100%;
	max-width: calc(100% - 140px);
}
.images .img {
	height: 485px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.images .slick-slide {
	border-radius: 10px;
	border: 1px solid #DADADA;
	background: #FFF;
	padding:10px;
	margin-right: 1px;
}
.thumbs img {
	max-width: 100%;
	height: 100px;
	max-height: 100%;
	margin:0 auto;
}
.thumbs .slick-slide {
	border-radius: 10px;
	border: 1px solid #DADADA;
	background: #FFF;
	margin:5px 0;
	padding:10px;
}
.thumbs .slick-list {
	margin:0 -5px;
}
.thumbs {
	padding:52px 0;
}
.slick-vertical .slick-arrow {
	width: 42px;
	height: 42px;
	position: absolute;
	z-index: 3;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
	left:calc(50% - 21px);
	cursor:pointer;
}
.slick-vertical  .slick-prev {
	top:0;
}
.slick-vertical  .slick-next {
	bottom: 0;
}
.images .slick-arrow {
	width: 42px;
	height: 42px;
	position: absolute;
	z-index: 3;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
	cursor:pointer;
	bottom:10px;
	right:0;
}
.images  .slick-prev {
	left:calc(50% - 52px);
}
.images  .slick-next {
	left:calc(50% + 10px);
}
#product h1 {
	text-align:left;
	margin:0 0 12px;
}
#product .size {
	margin:0 0 20px;
	font-size: 18px;
	font-weight: 600;
}
#product .price {
	display: flex;
	align-items: flex-end;
	line-height: 1;
}
#product .price-old {
	text-decoration: line-through;
	color: var(--Text-2, #868F94);
	font-size: 24px;
	font-weight: 500;
	display: block;
	margin-bottom:-2px;
	margin-left: 5px;
}
#product .price-new {
	font-size: 32px;
	font-weight: 600;
	display: block;
	margin-bottom:-3px;
	margin-left: 5px;
}
#product .availability {
	padding-left: 25px;
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	margin:0 0 34px;
}
#product .availability.status1 {
	background: url(../images/icons/icon-status1.svg) no-repeat left center;
	color: #00C820;
}
#product .attribute {
	margin:0 0 25px;
}
#product .attribute span {
	display: block;
	font-weight: 600;
}
#product-info {
	padding:0 0 90px;
}
#product .product-info {
	position: relative;
	padding-bottom: 85px;
	height: 100%;
}
#product .buttons {
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	z-index: 2;
}
#product .buttons .btn-primary {
	padding:0 40px;
	height: 65px;
	display: inline-flex;
	align-items: center;
	color:#fff;
	font-size: 14px;
	font-weight: 600;
}
#product .buttons .btn-primary:hover {
	color: var(--Primary, #3D6EED);
}
#product .buttons .btn-primary:hover svg {
	fill: var(--Primary, #3D6EED);
}
#product .buttons .btn-primary svg {
	display: inline-block;
	margin-right: 10px;
	fill:#fff;
	margin-top: -2px;
}
#product .buttons .btn-secondary {
	padding:0 25px;
	color: var(--Primary, #3D6EED);
	height: 65px;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	border-radius: 5px;
	border: 1px solid var(--Primary, #3D6EED);
	background: #FFF;
}
#product .buttons .btn-secondary:hover {
	background: var(--Primary, #3D6EED);
	color:#fff;
}
#product .buttons .btn-secondary svg {
	display: inline-block;
	margin-right: 10px;
	fill:var(--Primary, #3D6EED);
	margin-top: -2px;
}
#product .buttons .btn-secondary:hover svg {
	fill:#fff;
}
#product .buttons .to-wish svg {
	margin:0;
	display: block;
}
.head {
	align-items: center;
	justify-content: center;
	margin:0 0 30px;
	position: relative;
}
.head .section-title {
	margin:0;
}
.head .arrows {
	position: absolute;
	top:calc(50% - 20px);
	right: 0;
	z-index: 3;
}
.arrows > div {
	background: #fff;
	width: 44px;
	min-width: 44px;
	margin-left: 5px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border:1px solid var(--gray-300, #DEE2E7);
	cursor:pointer;
}
.arrows svg {
	fill:#1C1C1C;
}
.analogues {
	padding:65px 0 90px;
	background: #EDF1FB;
}
.product-carousel .slick-list {
	margin:0 -10px;
}
.product-carousel .slick-slide {
	margin:0 10px;
}
.product-carousel .product-card {
	border: 1px solid #DADFEE;
}
.related {
	padding:90px 0 50px;
}
#info {
	padding:65px 0 40px;
	background: #EDF1FB;
}
#info .attributes {
	max-width: 720px;
	margin:0 auto;
}
#info .attributes p {
	justify-content: space-between;
	color: var(--Text-2, #868F94);
	margin: 0 0 25px;
	display: flex;
	position: relative;
}
#info .attributes span {
	display: block;
	padding-right: 15px;
	background: #EDF1FB;
	position: relative;
	z-index: 2;
}
#info .attributes p:before {
	content:' ';
	display: block;
	position: absolute;
	top:15px;
	width: 100%;
	border-bottom: 1px dotted #868F94;
	z-index: 1;
}
#info .attributes p span:last-child {
	color: var(--Text, #292D41);
	font-weight: 600;
	max-width: 200px;
	width: 100%;
	display: block;
	white-space: nowrap;
	padding:0 0 0 15px;
}
#instructions {
	padding:90px 0;
}
#instructions .nav-pills {
	display: block;
}
#instructions .nav-pills li {
	width: 100%;
	display: block;
}
#instructions .nav-pills .nav-link {
	padding:0 16px;
	line-height: 42px;
	color: var(--Text, #292D41);
	width: 100%;
	text-align: left;
	border-left:5px solid transparent;
	border-radius: 0;
}
#instructions .nav-pills .nav-link.active {
	border-color:var(--Primary, #3D6EED);
	background: rgba(61, 110, 237, 0.08);
	color: var(--Primary, #3D6EED);
	font-weight: 600;
}
#instructions .tab-content {
	font-weight: 16px;
	line-height: 2;
}
.review-card {
	padding:40px 40px 45px;
	border-radius: 20px;
	color:#fff;
	text-align: center;
	background: var(--Primary, #3D6EED);
}
.review-titlte {
	margin:0 0 30px;
}
.review-text {
	max-width: 685px;
	font-family: Playfair Display;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.8;
	margin:0 auto 30px;
}
.review-text svg {
	fill:#fff;
	display: inline-block;
}
.review-text svg:first-child {
	margin:-5px 5px 0 0;
}
.review-text svg:last-child {
	margin:-5px 0 0 5px;
}
.review-image img {
	display: block;
	margin:0 auto 10px;
	border-radius: 100%;
}
.review-author {
	font-size: 20px;
	font-weight: 600;
	margin:0;
}