table {
	border: 1px solid #888888;
	text-align: center;
	border-collapse: collapse;
	margin: auto;
	box-shadow: 0px 3px 7px rgba(128, 128, 128, 0.7);
	display: inline-block;
    overflow: auto;
}
table td, table th{
	border: 1px solid #cccccc;
	padding: 10px;
}
table td:nth-child(even) {
	background: #EBEBEB;
}

.table_technical table tr:nth-child(-n + 2) td, .table_technical table tr:nth-child(-n + 2) td:nth-child(even),
.table table tr:nth-child(-n + 1) td, .table table tr:nth-child(-n + 1) td:nth-child(even){
	background: #1953a5;
    color: #fff;
    border-color: #ffffff52;
}

table thead {
  background: #FFFFFF;
  border-bottom: 4px solid #333333;
}
table thead th {
  font-size: 15px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  border-left: 2px solid #333333;
}
table thead th:first-child {
  border-left: none;
}

div.table, div.table_technical{
	display:flex;
	flex-wrap: wrap;
    justify-content: center;
	margin-bottom: 10px;
}
table tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  border-top: 4px solid #333333;
}
table tfoot td {
  font-size: 14px;
}

.disks{
	display:flex;
	flex-wrap: wrap;
    justify-content: center;
}

.disk_1 {
    background-image: url(/s/main/images/disk.1.jpg);
}
.disk_2 {
    background-image: url(/s/main/images/disk.2.jpg);
}
.disk_3 {
    background-image: url(/s/main/images/disk.3.jpg);
}
.disk_4 {
    background-image: url(/s/main/images/disk.4.jpg);
}
.disk_5 {
    background-image: url(/s/main/images/disk.5.jpg);
}
.disk_6 {
    background-image: url(/s/main/images/disk.6.jpg);
}
.disk_7 {
    background-image: url(/s/main/images/disk.7.jpg);
}
.disk_8 {
    background-image: url(/s/main/images/disk.8.jpg);
}
.disk_9 {
    background-image: url(/s/main/images/disk.9.jpg);
}
.disk_1, .disk_2, .disk_3, .disk_4, .disk_5, .disk_6, .disk_7, .disk_8, .disk_9 {
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 300px;
    background-size: contain;
}

a.price {
    position: relative;
    top: 0px;
    display: block;
    width: 100px;
    margin: 20px auto;
    background: #ff9800;
    text-align: center;
    padding: 10px;
    color: #111;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}
a.price:hover{
    background: #ffc800;
	top:-5px;
    box-shadow: 0 10px 10px -10px #00000080;
}

a img{
	transform: scale(1);
	transition: 0.2s;
}
a:hover img{
	transform: scale(1.2);
}