.container-ws .collections{
	display: flex;
	flex-wrap: wrap;
}

.container-ws .collections:before,
.container-ws .collections:after{
	content: none;
}

.container-ws .collections [class*="col-"]{
	width: 25%; /***4 columns***/
}

.collections-item{	
	height: 200px;
	display: block;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

.container-ws .collections-item{	
	height: -moz-calc((100vw - 64px) / 4 * 0.72);
	height: -webkit-calc((100vw - 64px) / 4 * 0.72);
	height: calc((100vw - 64px) / 4 * 0.72);
	margin: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
}

.collections-item-pic,
.collections-item-block-container,
.collections-item-block-container:before,
.collections-item-block-container:after,
.collections-item-block{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.collections-item-pic{
	background: #566b75;
	z-index: 198;
}

.collections-item-pic > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
	-webkit-transition: -webkit-transform 0.45s ease 0s;
	-moz-transition: -moz-transform 0.45s ease 0s;
	-o-transition: -o-transform 0.45s ease 0s;
	transition: transform 0.45s ease 0s;
}

.collections-item-pic > img[data-lazyload-src]{
	-webkit-transition: -webkit-transform 0.45s ease 0s, opacity 0.3s ease 0s;
	-moz-transition: -moz-transform 0.45s ease 0s, opacity 0.3s ease 0s;
	-o-transition: -o-transform 0.45s ease 0s, opacity 0.3s ease 0s;
	transition: transform 0.45s ease 0s, opacity 0.3s ease 0s;
}

.bx-no-touch .collections-item:hover .collections-item-pic > img,
.bx-touch .collections-item:active .collections-item-pic > img{
	-moz-transform: translate(-50%, -50%) scale(1.1) rotate(0.02deg);
	-o-transform: translate(-50%, -50%) scale(1.1);
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

.collections-item-block-container{	
	z-index: 199;
}

.collections-item-block-container:before{
	content: "";
	background: -moz-linear-gradient(top, rgba(38, 50, 56, 0) 0%, #263238 100%);
	background: -webkit-linear-gradient(top, rgba(38, 50, 56, 0) 0%, #263238 100%);
	background: linear-gradient(to bottom, rgba(38, 50, 56, 0) 0%, #263238 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#263238", endColorstr="#263238", GradientType=0);
}

.collections-item-block-container:after{
	opacity: 0;
	content: "";
	background: -moz-linear-gradient(top, rgba(38, 50, 56, 0.5) 0%, #6639b6 100%);
	background: -webkit-linear-gradient(top, rgba(38, 50, 56, 0.5) 0%, #6639b6 100%);
	background: linear-gradient(to bottom, rgba(38, 50, 56, 0.5) 50%, #6639b6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80263238", endColorstr="#6639b6", GradientType=0);
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

.bx-no-touch .collections-item:hover .collections-item-block-container:after,
.bx-touch .collections-item:active .collections-item-block-container:after{
	opacity: 1;
}

.collections-item-block{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 24px;
	z-index: 200;
}

.collections-item-title{
	font-family: "Museo Sans Cyrl 500", sans-serif;
	font-size: 24px;	
	color: #fff;
	text-align: center;
	line-height: 29px;
}

.collections-item-price{	
	margin-top: 6px;
	color: #fff;
	text-align: center;
}

.collections-item-brand{
	margin-top: 6px;
	font-size: 14px;
	color: #78909c;
	line-height: 17px;
}

/***ICONS***/
.collections-item-icons{
	display: flex;
	justify-content: space-between;
	position: absolute;
	left: 12px;
	right: 12px;
	top: 12px;
	z-index: 200;
}

.collections-item-icons-left{
	justify-content: flex-start;
}

.collections-item-icons-right{
	justify-content: flex-end;
}

.collections-item-icon{
	overflow: hidden;
}

.collections-item-icon + .collections-item-icon{	
	max-width: 120px;	
	margin-left: 12px;
	overflow: visible;
}

/***MARKERS***/
.collections-item-marker-container{
	max-width: 100%;
	float: left;
	clear: left;
}

.collections-item-marker-container + .collections-item-marker-container{
	margin-top: 4px;
}

.collections-item-marker{	
	display: flex;
	align-items: center;	
	padding: 9px 12px 8px;	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;	
}

.collections-item-marker-14px{
	padding-top: 6px;
	padding-bottom: 5px;
}

.collections-item-marker-24px{
	padding-top: 7px;
	padding-bottom: 6px;
}

.collections-item-marker > i{
	margin-right: 7px;
	font-size: 18px;
	color: #fff;
}

.collections-item-marker-14px > i{
	font-size: 14px;
}

.collections-item-marker-24px > i{
	font-size: 24px;
}

.collections-item-marker > span{
	overflow: hidden;	
	color: #fff;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.collections-item-marker-14px > span{
	font-size: 14px;
	line-height: 17px;
}

.collections-item-marker-24px > span{
	font-size: 24px;
	line-height: 29px;
}

/***COLORS***/
.collections-item-colors{
	display: flex;	
	margin-left: -6px;
	margin-top: -6px;
}

.collections-item-color{
	width: 36px;
	min-width: 36px;
	height: 36px;	
	margin-left: 6px;
	margin-top: 6px;
	border: 2px solid #e3ecef;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.collections-item-colors-add{	
	display: flex;
	justify-content: flex-end;
	margin-top: 6px;
	font-size: 14px;
	color: #fff;	
	line-height: 17px;	
}

/***MORE***/
.collections-more .btn{
	width: 100%;
	height: 48px;
}

/***PHONES***/
@media(max-width: 1042px){
	.container-ws .collections{
		display: block;
	}

	.container-ws .collections [class*="col-"]{
		width: 100%;
	}
	
	.collections-item,
	.container-ws .collections-item{
		height: 185px;
		margin: 0 -18px;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
	}

	.collections-item-block{
		padding: 18px;
	}

	.collections-item-title{
		font-size: 20px;
		line-height: 24px;
	}

	/***MORE***/
	.collections-more{
		margin: 0 -18px;
	}

	.collections-more .btn{
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
	}
}

/***DESKTOPS_LARGE_DESKTOPS***/
@media(min-width: 1043px) and (max-width: 1103px){
	.container-ws .collections [class*="col-"]{
		width: 50%; /***2 columns***/
	}

	.container-ws .collections-item{	
		height: -moz-calc((100vw - 64px) / 2 * 0.72);
		height: -webkit-calc((100vw - 64px) / 2 * 0.72);
		height: calc((100vw - 64px) / 2 * 0.72);
	}

	.slide-menu-interface-2-0-1-inner .container-ws .collections-item,
	.slide-menu-option-2 .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 64px) / 2 * 0.72);
		height: -webkit-calc((100vw - 72px - 64px) / 2 * 0.72);
		height: calc((100vw - 72px - 64px) / 2 * 0.72);
	}
}

@media(min-width: 1104px) and (max-width: 1271px){
	.container-ws .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}
	
	.container-ws .collections-item{	
		height: -moz-calc((100vw - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 64px) / 3 * 0.72);
		height: calc((100vw - 64px) / 3 * 0.72);
	}

	.slide-menu-interface-2-0-1-inner .container-ws .collections-item,
	.slide-menu-option-2 .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 72px - 64px) / 3 * 0.72);
		height: calc((100vw - 72px - 64px) / 3 * 0.72);
	}
}

@media(min-width: 1272px){
	.smart-filter-view-left-active .container .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}
}

@media(min-width: 1272px) and (max-width: 1379px){
	.container-ws .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}

	.smart-filter-view-left-active .container-ws .collections [class*="col-"]{
		width: 50%; /***2 columns***/
	}
	
	.container-ws .collections-item{	
		height: -moz-calc((100vw - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 64px) / 3 * 0.72);
		height: calc((100vw - 64px) / 3 * 0.72);
	}

	.slide-menu-interface-2-0-1-inner .container-ws .collections-item,
	.slide-menu-option-2 .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 72px - 64px) / 3 * 0.72);
		height: calc((100vw - 72px - 64px) / 3 * 0.72);
	}

	.smart-filter-view-left-active .container-ws .collections-item{	
		height: -moz-calc((100vw - 324px - 64px) / 2 * 0.72);
		height: -webkit-calc((100vw - 324px - 64px) / 2 * 0.72);
		height: calc((100vw - 324px - 64px) / 2 * 0.72);
	}

	.slide-menu-interface-2-0-1-inner.smart-filter-view-left-active .container-ws .collections-item,
	.slide-menu-option-2.smart-filter-view-left-active .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 324px - 64px) / 2 * 0.72);
		height: -webkit-calc((100vw - 72px - 324px - 64px) / 2 * 0.72);
		height: calc((100vw - 72px - 324px - 64px) / 2 * 0.72);
	}
}

@media(min-width: 1380px){
	.smart-filter-view-left-active .container-ws .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}

	.slide-menu-interface-2-0-1-inner .container-ws .collections-item,
	.slide-menu-option-2 .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 64px) / 4 * 0.72);
		height: -webkit-calc((100vw - 72px - 64px) / 4 * 0.72);
		height: calc((100vw - 72px - 64px) / 4 * 0.72);
	}

	.smart-filter-view-left-active .container-ws .collections-item{	
		height: -moz-calc((100vw - 324px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 324px - 64px) / 3 * 0.72);
		height: calc((100vw - 324px - 64px) / 3 * 0.72);
	}

	.slide-menu-interface-2-0-1-inner.smart-filter-view-left-active .container-ws .collections-item,
	.slide-menu-option-2.smart-filter-view-left-active .container-ws .collections-item{
		height: -moz-calc((100vw - 72px - 324px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 72px - 324px - 64px) / 3 * 0.72);
		height: calc((100vw - 72px - 324px - 64px) / 3 * 0.72);
	}
}

@media(min-width: 1546px){
	.slide-menu-option-1-active .container-ws .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}

	.slide-menu-option-1-active .container-ws .collections-item{	
		height: -moz-calc((100vw - 324px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 324px - 64px) / 3 * 0.72);
		height: calc((100vw - 324px - 64px) / 3 * 0.72);
	}
}

@media(min-width: 1546px) and (max-width: 1739px){
	.slide-menu-option-1-active.smart-filter-view-left-active .container-ws .collections [class*="col-"]{
		width: 50%; /***2 columns***/
	}
	
	.slide-menu-option-1-active.smart-filter-view-left-active .container-ws .collections-item{
		height: -moz-calc((100vw - 324px - 324px - 64px) / 2 * 0.72);
		height: -webkit-calc((100vw - 324px - 324px - 64px) / 2 * 0.72);
		height: calc((100vw - 324px - 324px - 64px) / 2 * 0.72);
	}
}

@media(min-width: 1740px){
	.slide-menu-option-1-active.smart-filter-view-left-active .container-ws .collections [class*="col-"]{
		width: 33.33333333%; /***3 columns***/
	}

	.slide-menu-option-1-active.smart-filter-view-left-active .container-ws .collections-item{
		height: -moz-calc((100vw - 324px - 324px - 64px) / 3 * 0.72);
		height: -webkit-calc((100vw - 324px - 324px - 64px) / 3 * 0.72);
		height: calc((100vw - 324px - 324px - 64px) / 3 * 0.72);
	}
}