/* 
Generic Styling, for Desktops/Laptops 
*/
table { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #fff; 
}
th { 
  
  color: #ffffff;
  background: #c90000;
  font-family: 'Rubik', sans-serif;
font-size: 18px;
color: #fff;
line-height: 1.2;
font-weight: unset !important;
padding-top: 19px;
padding-bottom: 19px;
}
td, th { 
  padding: 6px; 
  border: 1px solid #ccc;   
  text-align: left; 
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	.prices { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	.prices:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.prices:nth-of-type(1):before { content: "до 0.5 кг."; }
	.prices:nth-of-type(2):before { content: "до 1 кг."; }
	.prices:nth-of-type(3):before { content: "до 2 кг."; }
	.prices:nth-of-type(4):before { content: "до 3 кг."; }
	.prices:nth-of-type(5):before { content: "до 4 кг."; }
	.prices:nth-of-type(6):before { content: "до 5 кг."; }
	.prices:nth-of-type(7):before { content: "до 6 кг."; }
	.prices:nth-of-type(8):before { content: "до 7 кг."; }
	.prices:nth-of-type(9):before { content: "до 8 кг."; }
	.prices:nth-of-type(10):before { content: "до 9 кг."; }
	.prices:nth-of-type(11):before { content: "до 10 кг."; }
	.prices:nth-of-type(12):before { content: "За всеки доп. кг."; }
	
	
	.docs {
	width: 100% !important;
}
}

.docs {
	width: 50%;
	margin-left:auto; 
    margin-right:auto;
}
.docs td {
	width: 50%;
}