.scroll-table {
	margin: 0 auto;
	min-width: 1200px;
	max-width: 1800px;
    background: bisque;
    overflow-y: scroll;
    height: 920px;
}

.scroll-table-body {
	height: 418px;
	overflow-x:auto;
	margin-top: 0px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.scroll-table table {
	width:100%;
	table-layout: fixed;
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}
.scroll-table thead th {
	font-weight: bold;
	text-align: left;
	border: 1px solid aquamarine;
	padding: 10px 15px;
	background: #f9a34b;
	font-size: 14px;
}
.scroll-table tbody td {
	text-align: left;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.scroll-table tbody tr:nth-child(even){
	background: #f3f3f3;
}

/* Стили для скролла */
::-webkit-scrollbar {
	width: 6px;
} 
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}