/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
.top_contacts {
	margin: auto;
	float: none;
	font-size: 18.5px;
	padding: 10px 0;
	text-align: center;
}
.tab_price thead {
	display: none;
}
.tab_price td:before {
	content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
/*    padding: 0 8px;
    background: #eee;*/
}
.tab_price td {
    display: block;
    text-align: right;
    font-size: 13px;
    border: 0;
    border-bottom: 1px dotted #a0a0a0;
    width: 100%;
}
.sertificate img {
	display: none;
}
/*
.top_mnu li {
	display: inline-block;
	max-width: 48%;
	height: auto;
}
*/
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.top_contacts {
		line-height: 2;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}