.selectTypeBox
{
	position: relative;
}

.selectTypeBox select
{
	position: absolute;
	top: 0;
	left: 0;

	display: none;

	width: 100%;
	height: 100%;

	opacity: 0;
}

.selectTypeBox .nice-select
{
	position: relative;
	display: block;
}

.selectTypeBox .nice-select.open
{
	z-index: 14;
}

.selectTypeBox .nice-select .current
{
	color: #1F6885;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;

	position: relative;
	z-index: 13;

	max-width: 100%;
	overflow: hidden;

	cursor: pointer;
	transition: .2s linear;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-right: 20px;
}

.selectTypeBox .nice-select .current:after
{
	position: absolute;
	top: 50%;
	right: 2px;
	display: block;
	width: 6px;
	height: 6px;
	margin-top: -6px;
	content: '';
	transform: rotate(-45deg);
	border-bottom: 2px solid #1F6885;
	border-left: 2px solid #1F6885;
}

.selectTypeBox .nice-select .current span{
	display: block;
	border-bottom: 2px dashed #1F6885;
	padding: 2px 0;
}

.selectTypeBox .nice-select .list
{
	position: absolute;
	z-index: 12;
	top: 100%;
	left: 0;

	visibility: hidden;
	overflow: hidden;

	min-width: 100%;

	transition: .2s linear;
	pointer-events: none;

	opacity: 0;
	border: none;
	background: #fff;
	white-space: nowrap;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

.selectTypeBox .nice-select.open .list
{
	visibility: visible;

	pointer-events: all;

	opacity: 1;
}

.selectTypeBox .nice-select .list .scrollbar
{
	overflow-y: auto;

	max-height: 320px;
}

.selectTypeBox .nice-select .list .list_item
{
	color: #1F6885;
	font-size: 16px;
	font-weight: 500;

	position: relative;

	display: flex;

	min-height: 34px;
	padding: 5px 15px;

	cursor: pointer;
	transition: .2s linear;
	white-space: nowrap;
	letter-spacing: -.3px;

	justify-content: flex-start;
	align-items: center;
	align-content: center;
	flex-wrap: nowrap;
}

.selectTypeBox .nice-select .list .list_item:empty
{
	display: none;
}

.selectTypeBox .nice-select .list .list_item:hover,
.selectTypeBox .nice-select .list .list_item.selected
{
	background: #f1f1f1;
	color: #1F6885;
}

.selectTypeBox .nice-select .list .list_item:last-child
{
	margin-bottom: 0;
}


.select_info
{
	position: relative;

	margin: 10px 0;
}

.select_info select
{
	position: absolute;
	top: 0;
	left: 0;

	display: none;

	width: 100%;
	height: 100%;

	opacity: 0;
}

.select_info .nice-select
{
	position: relative;

	display: block;
}

.select_info .nice-select.open
{
	z-index: 14;
}

.select_info .nice-select .current
{
	color: #000;
	font-size: 16px;
	line-height: 48px;
	height: 50px;

	position: relative;
	z-index: 13;

	width: 100%;
	display: block;
	overflow: hidden;

	cursor: pointer;
	transition: .2s linear;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 30px 0 10px;
	border: 1px solid #000;
}

.select_info .nice-select .current:after
{
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	width: 6px;
	height: 6px;
	margin-top: -6px;
	content: '';
	transform: rotate(-45deg);
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
}

.select_info.size_width .nice-select .current{
	padding-left: 40px;
}

.select_info.size_width .nice-select .current:before {
	content: '';
	position: absolute;
	left: 11px;
	top: 50%;
	width: 17px;
	height: 14px;
	margin-top: -7px;
	background: url(/local/templates/amigo_new/assets/images/ic_size.svg) 50% no-repeat;
	pointer-events: none;
}

.select_info.size_height .nice-select .current{
	padding-left: 40px;
}

.select_info.size_height .nice-select .current:before {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	width: 13px;
	height: 18px;
	margin-top: -9px;
	background: url(/local/templates/amigo_new/assets/images/ic_size2.svg) 50% no-repeat;
	pointer-events: none;
}

.select_info .nice-select .list
{
	position: absolute;
	z-index: 12;
	top: 100%;
	left: 0;

	visibility: hidden;
	overflow: hidden;

	min-width: 100%;

	transition: .2s linear;
	pointer-events: none;

	opacity: 0;
	border: none;
	background: #fff;
	white-space: nowrap;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

.select_info .nice-select.open .list
{
	visibility: visible;

	pointer-events: all;

	opacity: 1;
}

.select_info .nice-select .list .scrollbar
{
	overflow-y: auto;

	max-height: 320px;
}

.select_info .nice-select .list .list_item
{
	color: #000;
	font-size: 16px;

	position: relative;

	display: flex;

	min-height: 34px;
	padding: 5px 15px;

	cursor: pointer;
	transition: .2s linear;
	white-space: nowrap;
	letter-spacing: -.3px;

	justify-content: flex-start;
	align-items: center;
	align-content: center;
	flex-wrap: nowrap;
}

.select_info .nice-select .list .list_item:empty
{
	display: none;
}

.select_info .nice-select .list .list_item:hover,
.select_info .nice-select .list .list_item.selected
{
	background: #f1f1f1;
	color: #1F6885;
}

.select_info .nice-select .list .list_item:last-child
{
	margin-bottom: 0;
}









@media (min-width: 1200px){
	/*lg*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 992px) and (max-width:1199px){
	/*md*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 768px) and (max-width: 991px){
	/*sm*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (max-width: 767px){
	/*xs*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}

.catalog-section-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

.row::before {
	display: initial;
}
@media (max-width: 767px){
	.banner {
		display: none;
	}
}