.select-wrapper{
	padding: 25px 0;
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
}
.kits-select {
	height: 44px;
	margin-right: 10px;
	position: relative;
}
.kits-select select {
	display: none;
}
.kits-select.opened {
	
	z-index: 9999;
}
.kits-select__wrapper {
	position: relative;
	width: 200px;
}
.kits-select__list {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 100;
    overflow: auto;
}
.kits-select__list.opened {
	height: 254px;
}
.kits-select__item:first-child {
	position: relative;
	border: 2px solid #979DB1;
	display: block;
}
.kits-select__item:first-child:after {
	content: '';
	display: block;
	width: 11px;
	height: 6px;
	background-image: url(arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}
.kits-select__item {
	background-color: #fff;
	font-size: 15px;
	line-height: 20px;
	color: #545454;
	padding: 10px;
	padding-right: 15px;
	border-left: 2px solid #979DB1;
	border-right: 2px solid #979DB1;
	border-bottom: 2px solid #979DB1;
	display: none;
	cursor: pointer;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}
.kits-select__list.opened .kits-select__item {
	display: block;
}
.kits-select__item:last-child {

}
/* хром, сафари */
.kits-select__list::-webkit-scrollbar { width: 0; }

/* ie 10+ */
.kits-select__list { -ms-overflow-style: none; }

/* фф (свойство больше не работает, других способов тоже нет)*/
.kits-select__list { overflow: -moz-scrollbars-none; }

.kits-select__item:hover:not(:first-child),
.kits-select__item.kits-select__item_selected:not(:first-child) {
	background-color: #3A5BDB;
	color: #fff;
}

.models-alphabet {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}
.models-alphabet__col {
	width: 20%;
}
.models-alphabet__category {
	display: flex;
	
}
.models-alphabet__category-letter {
	font-weight: bold;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	margin-right: 18px;
	padding-top: 2px;
}
.models-alphabet__category-values {
	padding-bottom: 20px;
}
.models-alphabet__category-value {

}
.models-alphabet__category-link {
	font-size: 15px;
	line-height: 20px;
	color: #5F7CED;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	text-decoration: underline;
	text-decoration-color: transparent;
}
.models-alphabet__category-link:hover {
	text-decoration-color: #5F7CED;
}
.models {

}
.models__top {
	display: flex;
	align-items: flex-end;
	font-weight: bold;
	color: #000000;
	line-height: 25px;
	padding-bottom: 5px;
	border-bottom: 2px solid #000;
}
.models__top-name {
	font-size: 18px;
	margin-right: 10px;
}
.models__top-model {
	font-size: 14px;
	
}

.models__table {
	display: table;
	width: 100%;
	margin-bottom: 30px;
}
.models__table-head {
	display: table-header-group;
}
.models__table-head-row {
	display: table-row;
}
.models__table-head-col {
	display: table-cell;
	font-size: 13px;
	line-height: 18px;
	color: #545454;
	vertical-align: middle;
	padding: 6px 10px;
	border-bottom: 1px solid #C8C9CA;
}
.models__table-body {
	display: table-row-group;
}
.models__table-row {
	display: table-row;
}
.models__table-col {
	display: table-cell;
	border-bottom: 1px solid #C8C9CA;
	font-size: 13px;
	line-height: 31px;
	color: #000000;
	padding: 0px 10px;
	vertical-align: middle;
}
.models__table-wrapper {
	overflow-x: auto;
}

@media only screen and (max-width : 1200px) {
	.models-alphabet__col {
		width: 33.33%;
	}
} 
@media only screen and (max-width : 768px) {
	.models-alphabet__col {
		width: 100%;
	}
}